/*----------------- universal --------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
/*-------------------- body --------------------*/
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/*--------------- root colors ------------------*/
:root {
    --maincolor: #008fb0;
    --primary-color: #fff;
    --secondary-color: #000;
    --background-color: #343a40;
    --box-color: rgb(230, 225, 225);
}

/*---------------- span-colors ----------------*/
span {
    color: var(--maincolor);
}


/*-------------- header-section ------------------*/
.logo {
    width: 160px;
    height: 150px;
}

.header-navbar-section {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 100;
}

/*---------------- navbar-section ---------------*/
.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    animation: navslide .5s linear;
}

@keyframes navslide {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 10px;
    transition: .3s;
    font-weight: bold;
}

.nav-links a:hover {
    cursor: pointer;
    transform: translateY(-10px);
    color: var(--maincolor);
}

#listbar {
    cursor: pointer;
    font-size: 22px;
    display: none;
    color: var(--primary-color);
}

/*-------------------- side-navbar -------------------*/
.side-navigation {
    width: 300px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    transition: .5s;
    z-index: 111;
}

.side-nav-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: var(--secondary-color);
    margin-top: 12px;
    font-size: 22px;
}

.side-nav-links a:hover {
    color: var(--maincolor);
}

#xmark {
    display: flex;
    justify-content: end;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
}

/* --------------------------------------------- */
/*-------------Index page style----------------*/
/* --------------------------------------------- */
.main-section {
    height: 90vh;
    background: url(image/home/home.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: img linear .7s;
    position: relative;
}

.main-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    z-index: 20;
}

.main-section-content {
    font-weight: bold;
    z-index: 50;
    overflow: hidden;
}

.main-section-content h1 {
    color: var(--primary-color);
    font-weight: bold;
    animation: up 1.5s ease;
}

.main-section-content p {
    color: var(--primary-color);
    font-size: 16px;
    animation: up 1.5s ease;
}

/*----------------- main-section key animation ----------------*/
@keyframes img {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes up {
    0% {
        transform: translateY(200px);
    }

    100% {
        transform: translateY(0);
    }
}

.more-btn {
    width: 150px;
    padding: 5px;
    color: var(--primary-color);
    font-weight: bold;
    border: none;
    border: 1px solid var(--primary-color);
    transition: .3s;
    position: relative;
    z-index: 10;
    background-color: transparent;
    animation: up 1.5s ease;
}

.more-btn:hover {
    color: var(--primary-color);
}

.more-btn::before {
    position: absolute;
    content: '';
    width: 0px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--maincolor);
    transition: .3S;
    z-index: -1;
}

.more-btn:hover::before {
    width: 100%;
}

/*------------- sub-main-section ------------*/
.sub-main-section {
    display: flex;
    justify-content: center;
    margin-top: 5%;
    flex-wrap: wrap;
}

.sub-main-section-content {
    width: 350px;
    padding: 10px;
}

.sub-main-section-content h2 {
    color: var(--maincolor);

}

.sub-main-deails i {
    margin: 0 10px;
    margin-top: 5px;

}

/* --------------------------------------------- */
/*-------------About page style------------------*/
/* /* ------------------------------------------- */

.about-section {
    padding: 30px;
}
/*--------------- about- main-section -------------*/
.about-main-section {
    height: 90vh;
    background: url(image/about/about-home.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    animation: img linear .7s;
}

.about-main-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    z-index: 20;
}

.about-main-section-content {
    animation-delay: .5s;
    color: var(--primary-color);
    font-weight: bold;
    z-index: 50;
    overflow: hidden;
}

.about-main-section-content h1 {
    font-weight: bold;
    animation: slideleft .7s linear;
}

.about-main-section-content p {
    animation: slideright .7s linear;
}

@keyframes slideright {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes slideleft {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.container-fluid {
    display: flex;
    padding: 105px;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.about-image img {
    width: 450px;
    height: 400px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.about1 {
    width: 100%;
}

.about1 p {
    font-size: 16px;
    font-weight: solid;
}

.about2 {
    display: flex;
    width: 100%;
    gap: 20px;
}

.about2 p {
    font-size: 16px;
}

.content1 {
    width: 50%;
}

.content1:hover h4 {
    color: var(--maincolor);
}

.content2:hover h4 {
    color: var(--maincolor);
}

.content1 i {
    color: var(--maincolor);
}

.content2 i {
    color: var(--maincolor);
}

.content1 a {
    text-decoration: none;
    color: var(--maincolor);
    padding: 5px;
    border: 1px solid var(--maincolor);
    transition: .3s;
}

.content1 a:hover {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

.content2 {
    width: 50%;
}

.content2 a {
    text-decoration: none;
    color: var(--maincolor);
    padding: 5px;
    border: 1px solid var(--maincolor);
    transition: .3s;
}

.content2 a:hover {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

.content1 i,
.content2 i {
    font-size: 3rem
}

/*---------------- CEO-SECTION --------------*/
.ceo-section {
    margin-top: 5%;
    padding: 20px;
}

.ceo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    margin-top: 5%;
}

.ceo-content {
    width: 50%;
}

.ceo-img {
    text-align: center;
}

.ceo-img img {
    width: 200px;
    height: 300px;
    border-radius:10px;
    border: 1px solid var(--maincolor);
}

/*--------------- team Content --------------*/
.team-section {
    margin-top: 5%;
}

.team-heading {
    font-size: 50px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 20px;
}

.team-content {
    overflow: hidden;
    padding: 10px;
}

.team-content img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    align-items: center;
    border: 2px solid var(--maincolor);
    transition: .4s;
}
.team-content:hover img {
    transform: scale(1.1);
}

.team-content {
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 350px;
    text-align: center;
}

.name-1 {
    font-size: 25px;

}

.position-1 {
    font-size: 18px;

}

.team-content i {
    font-size: 25px;

}

.team-content i:hover {
    color: rgb(160, 156, 156);
}

.team-text {
    font-size: 16px;
}

.team-icon i {
    font-size: 20px;
    margin: 0 8px;
    padding: 8px;
    border: 1px solid var(--maincolor);
    border-radius: 100px;
    background-color: var(--maincolor);
    transition: .3s;
    color: var(--primary-color);
}

.team-icon i:hover {
    cursor: pointer;
    transform: translateY(-10px);
    background-color: transparent;
    color: var(--maincolor);
}

/* --------------------------------------------- */
/*-------------work page style------------------*/
/* --------------------------------------------- */
.work-main-section {
    height: 90vh;
    background: url(image/work/work-home.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: img linear .7s;
    position: relative;
}

.work-main-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    z-index: 20;
}

.work-main-section-content {
    overflow: hidden;
    z-index: 50;
}

.work-main-section-content h1 {
    color: var(--primary-color);
    font-weight: bold;
    animation: .6s linear;
    animation: topslide 1.5s linear;

}

.work-main-section-content p {
    color: var(--primary-color);
    font-weight: bold;
    animation: topslide 1s linear;
}

@keyframes topslide {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.works {
    margin-top: 5%;
}

#works-h {
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px;
}

.card-1 {
    overflow: hidden;
    position: relative;
    flex-basis: calc(33.33% - 15px);
    max-width: 300px;
}

.card-1 img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 300px;
    height: 300px;
    transition: transform 0.3s ease-in-out;
    padding: 5px;
}

.card-1:hover img {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.5);
}

.card-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s ease-in-out;
    z-index: 2;
}

.card-1:hover::after {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
}

.overlay-text {
    width: 150px;
    border: 1px solid var(--maincolor);
    position: absolute;
    background-color: var(--maincolor);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    color: var(--primary-color);
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: .3s;
    text-align: center;
}

.card-1:hover .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: fadeZoomIn 1s ease forwards;
}

.short-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin: 30px;
    z-index: 3;
    background-color: black;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.box-1 {
    display: flex;
    padding: 15px;
    flex-basis: auto;
    max-width: 100%;
}

.box-1 img {
    max-width: 100%;
    height: auto;
}

.box-2 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin: auto;
    flex-basis: auto;
    max-width: 100%;
}

.box-2>div {
    display: flex;
    gap: 15px;
    padding-top: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sub-1 {
    width: 300px;
    text-align: start;
    color: var(--primary-color);
}

.sub-1 h3 {
    color: var(--maincolor);
    gap: 10px;
    font-size: 16px;
}

.sub-1 i {
    color: var(--maincolor);
    gap: 10px;
    font-size: 26px;
}

.sub-1 a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 5px;
    border: 1px solid var(--maincolor);
    transition: .3s;
}

.sub-1 a:hover {
    background-color: var(--maincolor);
    color: var(--primary-color);

}

/*------------------- tesimonial-section ---------------*/
.testimonial-container {
    width: 80%;
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.testimonial h4 {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.testimonial h5 {
    font-size: 1em;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.testimonial h5 span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.testimonial h5 img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    vertical-align: middle;
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #555;
}

/* --------------------------------------------- */
/*-------------Service page style----------------*/
/* --------------------------------------------- */
.service-main-section {
    height: 90vh;
    background: url(image/service/service-home.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    animation: img linear .7s;
    position: relative;
}

.service-main-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    z-index: 20;
}

.service-main-content {
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 50;
    overflow: hidden;
}

.service-main-content h1 {
    font-weight: bold;
    animation: slidetop 1s linear;
}

.service-main-content p {
    animation: slidebottom 1.5s linear;
}

@keyframes slidetop {
    0% {
        transform: translateY(200px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slidebottom {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.service-sub-main-section {
    margin-top: 5%;
}

.service-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 20px;
}

.service-box {
    display: flex;
    justify-content: space-around;
    width: 380px;
    cursor: pointer;
    padding: 5px;
}

.service-box:hover>.service-icon i {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

.service-box h3 {
    font-size: 20px;
}

.service-icon i {
    padding: 20px;
    font-size: 40px;
    color: var(--maincolor);
    border: 1px solid var(--maincolor);
    border-radius: 100%;
    transition: .5s;
}

.service-content {
    margin-left: 20px;
}

.service-box a {
    text-decoration: none;
    color: var(--maincolor);
    border: 1px solid var(--maincolor);
    padding: 5px;
    transition: .3s;
    font-size: 16px;
}

.service-box a:hover {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

/* --------------------------------------------- */
/*-------------Career page style----------------*/
/* --------------------------------------------- */
.career-section {
    height: 90vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("image/career/career.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    animation: img linear .7s;
    position: relative;

}
.career-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    z-index: 20;
}

/*---------------- career-content ----------------*/
.intro {
    color: var(--primary-color);
    text-align: center;
    overflow: hidden;
    z-index: 50;
}

.intro h1 {
    animation: left 1.5s ease;
}

.intro p {
    font-weight: bold;
    animation: right 1.5s ease;
}

@keyframes left {
    0% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes right {
    0% {
        transform: translateX(500px);
    }

    100% {
        transform: translateX(0px);
    }
}

.intro button {
    width: 100px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/*------------- career-main-section --------------*/
.career-main-section {
    margin-top: 5%;
}

.career-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.career-para {
    width: 50%;

}

.career-img img {
    border-radius: 20px;
}

/*-------------  Benefits&Perks-section ------------------*/
.Benefits-section {
    margin-top: 5%;
    padding: 15px;
}

.Benefits-container {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.benifits-box {
    width: 350px;
    height: 250px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0px 0px 2px #111;
}

.benifits-box:hover i {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

.benifits-box:hover {
    color: var(--primary-color);
    background-color: var(--maincolor);
}

.benifits-box i {
    transition: .4s;
    font-size: 30px;
    color: var(--maincolor);
}

/*----------------- enquiry-section" ----------------*/
.enquiry-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 5%;
}

/*--------------------- career-form-----------------*/
.Enquiry-form {
    width: 50%;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px #222;
    text-align: center;
}

.Enquiry-box1 {
    border: none;
    border-bottom: 1px solid var(--maincolor);
    padding: 5px;
    color: var(--secondary-color);
    width: 49.5%;
    margin-top: 30px;
    outline: none;
}

.Enquiry-box2 {
    border: none;
    border-bottom: 1px solid var(--maincolor);
    padding: 5px;
    color: var(--secondary-color);
    width: 100%;
    margin-top: 30px;
    outline: none;
}

.Enquiry-box3 {
    border: none;
    padding: 5px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--maincolor);
    width: 100%;
    height: 100px;
    margin-top: 30px;
    outline: none;
}

.Enquiry-btn {
    width:150px;
    padding: 10px;
    border: none;
    background: transparent;
    border: 1px solid var(--maincolor);
    transition: .3s;
    font-weight: 500;
    margin-top: 8px;
}

.Enquiry-btn:hover {
    border-radius:29px;
    color: var(--primary-color);
    background-color: var(--maincolor);
}

/* --------------------------------------------- */
/*-------------Contact page style----------------*/
/* --------------------------------------------- */
.contact-main-section {
    height: 90vh;
    background: url(image/contact/contact-home.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: img linear .7s;
    position: relative;
}

.contact-main-content {
    z-index: 50;
    overflow: hidden;
}

.contact-main-content h1 {
    color: var(--primary-color);
    animation: up 1s ease;

}

.contact-main-content p {
    color: var(--primary-color);
    animation: up 1s ease;
    font-weight: bold;

}

.contact-main-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    z-index: 20;
}

/*---------------- address-container -----------------*/
.address-container {
    width: 350px;
    margin-top: 5%;
    margin-left: -20px;
}

.add-icon {
    display: flex;
}

.add-icon h5 {
    color: var(--maincolor);
    font-weight: 500;
}

.add-icon p {
    color: var(--secondary-color);
    font-weight: 600;
}

.add-icon i {
    margin: 0 20px;
    border: 1px solid var(--maincolor);
    padding: 15px;
    font-size: 20px;
    border-radius: 100px;
    background-color: var(--maincolor);
    color: var(--primary-color);

}

/*---------------- contact-form container -------------------*/

.contact-container {
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    margin-top: 5%;
}

.form {
    width: 50%;
    padding: 20px;
    z-index: 50;
    margin-top: 10%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    border-radius: 10px;
    text-align: center;
}

.box1 {
    width: 49.5%;
    border: none;
    padding: 5px;
    background-color: transparent;
    border: 1px solid gray;
    margin-top: 10px;
    outline: none;
    color: #111;
    border-radius: 5px;
}

.box2 {
    width: 100%;
    border: none;
    padding: 5px;
    background-color: transparent;
    border: 0.1px solid gray;
    margin-top: 10px;
    outline: none;
    color: #111;
    border-radius: 5px;
}

.box3 {
    width: 100%;
    height: 150px;
    border: none;
    padding: 5px;
    background-color: transparent;
    border: 0.1px solid gray;
    margin-top: 10px;
    outline: none;
    color: #111;
    border-radius: 5px;
}

.send-btn {
    width: 150px;
    padding: 5px;
    border: none;
    border: 1px solid var(--maincolor);
    color: var(--maincolor);
    background-color: transparent;
    transition: .3s;
}

.send-btn:hover {
    border-radius: 20px;
    background-color: var(--maincolor);
    color: var(--primary-color);
}

/*--------------- contact-address section ---------------*/
.address-main-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px;
}

.address-box {
    width: 300px;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 50;
}

.address-box h2 {
    color: var(--maincolor);
    font-size: 18px;
    font-weight: bold;
}

.address-box p {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}

.address-map {
    width: 50%;
    z-index: 50;
}

.address-map iframe {
    width: 100%;
    height: 250px;
}

/* --------------------------------------------- */
/*-------------footer page page style----------------*/
/* --------------------------------------------- */
.footer-container {
    background-color: var(--maincolor);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 5%;
}

.footer {
    width: 100%;
    height: max-content;
    background-color: #333333;
    padding: 50px;
    color: var(--primary-color);
}

.footer-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5%;
}

.footer-about {
    width: 250px;
}

.footer-about p {
    color: gray;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    text-decoration: none;
    color: gray;
    transition: .3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
    cursor: pointer;
    transform: translateX(10px);
}

.footer-nav h5 {
    color: var(--maincolor);
}

.footer-social-link a {
    margin: 0 10px;
    cursor: pointer;
    transition: .3s;
    border-radius: 100px;
    padding: 10px;
    margin-left: -5px;
    background-color: var(--maincolor);
    color: var(--primary-color);
    border: 1px solid var(--maincolor);
}

.footer-social-link a:hover {
    color: var(--maincolor);
    background-color: transparent;
}

.footer-address input {
    width: 300px;
    background: transparent;
    border: none;
    border: 1px solid gray;
    padding: 5px;
    outline: none;
    color: var(--primary-color);
}

.footer-address i {
    margin: 0 15px;
    color: var(--maincolor);
}

.footer-finish {
    text-align: center;
    margin-top: 10%;
    color: gray;
}
/* -------------- xxxx ------------------ */
/* -------------- xxxx ------------------ */
/* -------------- xxxx ------------------ */
/* -------------- xxxx ------------------ */