body {
    font-family: "Poppins", sans-serif;
    color: #000;
    background-color: #f9f6f2;
}

h1,
p,
ul {
    margin-bottom: 0;
}

header {
    border-bottom: 1px solid #dddada;
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

nav {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    justify-content: center;
}

.menu a {
    text-decoration: none;
    color: #979693;
    font-size: 18px;
    font-weight: 500;
}

.menu a:hover {
    color: #000;
}

.contact-btn {
    display: flex;
    align-self: center;
    justify-content: flex-end;
}

.contact-btn a {
    border-bottom: 1px solid #000;
    text-decoration: none;
    line-height: 22px;
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

#logo {
    width: 80px;
}

#burger-icon {
    display: none;
}

#burger-icon i {
    font-size: 24px;
    background-color: #cedb38;
    padding: 13px 15px;
    border-radius: 1000px;
    margin-right: 10px;
}

/* mobile nav */

#mobile-nav {
    z-index: 100;
    padding-top: 3vh;
    background-color: #cedb38;
    color: #fff;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    opacity: 0;
    transform: translateY(-150%);
    transition: transform 0.8s ease-in-out, opacity 0.1s ease-in-out;
}

#mobile-nav.active {
    opacity: 1;
    transform: translateY(0%);
}

#mobile-nav a {
    color: #3b3b3b;
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
}

#mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 50px;
}

.mobile-footer {
    background-color: #f9f6f2;
    color: #000;
    min-height: 20vh;
    padding-left: 50px;
    position: relative;
}

.mobile-footer a {
    display: block;
    padding-top: 20px;
    width: fit-content;
}

#mobile-nav .mobile-footer a {
    color: #3b3b3b;
}

#mobile-footer-logo {
    position: absolute;
    right: -80px;
    top: 50px;
}

.nav-close {
    font-size: 31px;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

.fa-close {
    color: #3b3b3b;
    font-size: 42px;
    background: #8ec53f;
    border-radius: 1000px;
    padding: 10px 15px;
}

.hero {
    position: relative;
}

.hero-wrapper {
    min-height: 90vh;
}

.hero-text {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 70px;
    padding-top: 100px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 500;
}

.subtitle {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 500px;
}

.subtitle p {
    color: #979693;
    font-size: 18px;
    line-height: 32px;
}

.subtitle a {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    width: fit-content;
    border-bottom: 1px solid #000;
    text-decoration: none;
    line-height: 22px;
}

.design {
    display: flex;
    gap: 20px;
    align-self: flex-start;
    align-items: center;
}

.design i {
    border: 1px solid #dddada;
    border-radius: 5px;
    padding: 10px;
    color: #000;
}

.design i:hover {
    background-color: #cedb38;
}

.line {
    height: 2px;
    width: 400px;
    background-color: #979693;
}

#hero-img {
    background-image: url(/assets/img/hero.webp);
    height: 90vh;
    width: 40%;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.services {
    padding-top: 150px;
    padding-bottom: 150px;
}

.services-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.services-text h1 {
    font-size: 72px;
    font-weight: 500;
    max-width: 590px;
}

.services-text p {
    font-size: 18px;
    color: #979693;
    font-weight: 400;
    max-width: 590px;
    line-height: 32px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-img {
    background-image: url(/assets/img/service.jpeg);
    background-size: cover;
    background-position: center;
    min-width: 500px;
    min-height: 350px;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid #979693;
    padding-top: 30px;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 550px;
}

.service-text p {
    color: #979693;
    font-size: 18px;
    line-height: 32px;
}

.service-text a {
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    width: fit-content;
    font-size: 22px;
    line-height: 22px;
}

.service:last-of-type {
    border-bottom: 3px solid #979693;
    padding-bottom: 30px;
}

.services-list > a {
    align-self: center;
    width: fit-content;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    font-size: 22px;
    line-height: 22px;
    margin-top: 50px;
}

.about-top {
    text-align: center;
}

.about-top h1 {
    font-size: 72px;
    font-weight: 500px;
}

.about-top p {
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
    font-size: 18px;
    color: #979693;
    font-weight: 400;
}

.about-bottom {
    margin-top: 100px;
    display: flex;
    justify-content: flex-end;
}

.about-img {
    background-image: url(/assets/img/service.jpeg);
    background-size: cover;
    background-position: center;
    width: 40%;
    min-height: 80vh;
    position: absolute;
    left: 0;
}

.about-right-top-img {
    background-image: url(/assets/img/about.jpg);
    background-size: cover;
    background-position: center;
    width: 350px;
    min-height: 250px;
}

#service-1 {
    background-image: url(/assets/img/service-1.jpg);
}
#service-2 {
    background-image: url(/assets/img/service-2.jpg);
}
#service-3 {
    background-image: url(/assets/img/service-3.jpg);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 70px;
    max-width: 850px;
    min-height: 80vh;
    justify-content: center;
}

.about-right-top {
    display: flex;
    gap: 30px;
    align-items: center;
    align-self: flex-end;
}

.about-right-top p {
    max-width: 280px;
    text-decoration: underline;
    font-size: 18px;
}

.about-right-bottom p {
    max-width: 660px;
    color: #979693;
    font-size: 18px;
    line-height: 32px;
}

.about-right-bottom a {
    display: block;
    width: fit-content;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    font-size: 22px;
    line-height: 22px;
    margin-top: 50px;
}

.footer-wrapper {
    padding-top: 150px;
    padding-bottom: 70px;
}

.footer-top h1 {
    font-size: 72px;
}

.footer-top-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.footer-top-text a {
    display: flex;
    align-self: center;
    justify-content: center;

    width: fit-content;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    font-size: 22px;
    line-height: 22px;
    margin-top: 50px;
    margin: auto;
}

.footer-top-text p {
    font-size: 18px;
    color: #979693;
    font-weight: 400;
    line-height: 32px;
}

.footer-bottom {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid #acaaaa;
    padding-bottom: 70px;
}

.footer-bottom .logo img {
    width: 200px;
}

.socials {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

footer .socials i {
    font-size: 32px;
}

address {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

address h1 {
    font-size: 22px;
    font-weight: 600;
    color: #979693;
}

address a {
    color: #000;
    text-decoration: none;
}

address div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    color: #979693;
    font-size: 16px;
}

.credit {
    color: #979693;
}

.credit a {
    font-weight: 600;
    font-size: 18px;
    color: #979693;
    text-decoration: none;
}

.footer-credit {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
}

.testimonial {
    /* background-color: #efeae3; */
    padding-top: 200px;
    padding-bottom: 200px;
}
.swiper-wrapper {
    margin: unset !important;
}

.swiper {
    width: 100%;
    max-width: 1200px;
}

.testimonial-wraper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.swiper-slide > p {
    font-size: 32px;
}

.people {
    margin-top: 50px;
}

.people-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.people-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.people-info h1 {
    font-size: 22px;
}

.people-info h2 {
    font-size: 18px;
    color: #979693;
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 20px;
    width: fit-content;
    height: fit-content;
    align-self: flex-end;
}

.navigation i {
    font-size: 24px;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 15px;
}

.people-img {
    background-size: cover;
    height: 100px;
    width: 100px;
    border-radius: 1000px;
    border: 1px solid #000;
}

#person-1 {
    background-image: url(/assets/img/person-1.png);
}
#person-2 {
    background-image: url(/assets/img/person-2.png);
}
#person-3 {
    background-image: url(/assets/img/person-3.png);
}
#person-4 {
    background-image: url(/assets/img/person-4.png);
}
#person-5 {
    background-image: url(/assets/img/person-5.png);
}

.location {
    text-align: center;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.location-wrapper > h1 {
    font-size: 72px;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.location-img {
    /* width: 350px; */
    height: 450px;
    background-size: cover;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#location-1 {
    background-image: url(/assets/img/location-1.jpg);
}
#location-2 {
    background-image: url(/assets/img/location-2.jpg);
}
#location-3 {
    background-image: url(/assets/img/location-3.jpg);
}

.location-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    border-bottom: 1px solid #fff;
    line-height: 22px;
    width: fit-content;
    margin: auto;
}

.metrics {
    background-color: #cedb38;
    color: #3b3b3b;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.metrics-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metrics-list h1 {
    font-size: 72px;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
}
.metrics-list p {
    font-size: 18px;
    font-weight: 500;
}

.metric {
    text-align: center;
}

.query {
    background-color: #efeae3;
    padding-top: 100px;
    padding-bottom: 100px;
}

.query-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.query-right h5 {
    font-size: 40px;
    font-weight: 500;
}

.query-right p {
    color: #979693;
}

.query-left-title {
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 50px;
}

.query-left {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
}

.query-left p {
    color: #979693;
    font-size: 18px;
    line-height: 32px;
}
.query-left a {
    color: #979693;
    margin-top: 10px;
    display: block;
}

.query-left-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.query-text h1 {
    font-size: 18px;
    margin-bottom: 10px;
}

.query-text p {
    line-height: unset;
    font-size: 14px;
}

.query-right button {
    background-color: #8ec53f;
    border: none;
    /* color: #000; */
}

.query-right button:hover {
    background-color: #3b3b3b;
}

#message {
    resize: none;
}

.countries {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.countries span {
    background: #3b3b3b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

@media only screen and (max-width: 1800px) {
    .hero-text {
        gap: 50px;
        padding-top: 50px;
    }
}

@media only screen and (max-width: 900px) {
    #burger-icon {
        display: block;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #mobile-nav {
        display: flex;
        /* transform: translateX(100%); */
    }

    .menu,
    .contact-btn {
        display: none;
    }

    nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #logo {
        width: 62px;
    }

    #hero-img {
        position: unset;
        width: 100%;
        display: block;
        height: 40vh;
        margin-top: 20px;
    }

    .hero-wrapper {
        min-height: unset;
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text {
        gap: 20px;
        padding-top: 30px;
    }

    .subtitle {
        gap: 20px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .line {
        width: 100px;
    }

    .services {
        padding-top: 100px;
    }

    .services-text {
        flex-direction: column;
        gap: 20px;
    }

    .services-text h1 {
        font-size: 32px;
    }

    .service {
        flex-direction: column;
    }

    .service-img {
        margin-top: 20px;
        min-width: unset;
        min-height: 230px;
        width: 100%;
    }

    p {
        line-height: unset !important;
        font-size: 14px !important;
    }

    .about-top h1 {
        font-size: 32px;
    }

    .about-img {
        position: unset;
        width: 100%;
        min-height: 30vh;
    }

    .about-bottom {
        flex-direction: column;
    }

    .about-right-top {
        flex-direction: column;
        align-self: unset;
    }

    .about-right-top-img {
        width: 100%;
    }

    .about-right {
        max-width: unset;
    }

    .footer-top-text {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 20px;
    }

    .footer-top-text a {
        align-self: unset;
        justify-content: unset;
    }
    .footer-top h1 {
        font-size: 32px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        margin-top: 50px;
        gap: 30px;
    }

    .company {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-right-top p {
        margin-top: 30px;
    }

    .testimonial {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .testimonial-wraper {
        flex-direction: column;
        gap: 50px;
    }
    .navigation {
        align-self: unset;
    }

    .swiper-slide > p {
        font-size: 16px !important;
    }

    .people-img {
        height: 80px;
        width: 80px;
    }

    .people-info h1 {
        font-size: 18px;
    }

    .people-info h2 {
        font-size: 16px;
    }

    .navigation i {
        font-size: 22px;
    }

    .location-wrapper {
        gap: 80px;
    }

    .location-wrapper > h1 {
        font-size: 32px;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .metrics {
        min-height: 20vh;
        margin-top: 50px;
    }

    .metrics-list {
        gap: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
        grid-template-columns: 1fr 1fr;
    }

    .metrics-list h1 {
        font-size: 40px;
        font-weight: 800;
    }
    .metrics-list p {
        font-size: 14px;
        font-weight: 500;
    }

    .query-container {
        grid-template-columns: 1fr;
    }

    .query-left-title {
        font-size: 32px;
    }

    .query-left-bottom {
        grid-template-columns: 1fr;
    }

    .query-left {
        gap: 50px;
    }

    .query-right h5 {
        font-size: 32px;
    }

    .countries span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 380px) {
    .line {
        width: 45px;
    }

    .design {
        gap: 12px;
    }
}
