:root {
    --primary-black: #2B2B2B;
}

@font-face {
    font-family: Mona Sans;
    src: url(font/Mona-Sans-Bold.woff);
    font-weight: 700;
}

@font-face {
    font-family: Mona Sans;
    src: url(font/Mona-Sans-Light.woff);
    font-weight: 300;
}

@font-face {
    font-family: Mona Sans;
    src: url(font/Mona-Sans-Regular.woff);
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--primary-black);
}

:focus-visible {
    outline: none;
}

:focus {
    outline: 0;
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

body {
    font-family: Mona Sans, sans-serif;
}

.section {
    position: relative;
    height: max-content;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 80px 0px;
}

.eyebrow-header {
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.section-headline {
    color: var(--primary-black);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-description {
    color: var(--primary-black);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}



/* navbar start  */

.navbar {
    background: #ffffff;
}

.navbar-brand .logo {
    max-height: 44px;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 2px solid rgba(255, 0, 0, 0);
    transition: all .5s;
    color: var(--primary-black);
}

.navbar .navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--primary-black);
    color: black;
    background: #f5f5f5;
}

.navbar .contact-btn {
    background: var(--primary-black);
    display: flex;
    color: #ffffff;
    align-items: center;
    border-radius: 50px;
    padding: 10px 20px;
}

.navbar .contact-btn .text {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
}

/* navbar end  */



/* home section start */


.home-section .section-headline {
    font-size: 56px;
    font-weight: 700;
}



.home-section .section-description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}



.home-section .right-side-image img {
    width: 100%;
}

.home-section .service-btn {
    background: var(--primary-black);
    display: flex;
    color: #ffffff;
    align-items: center;
    border-radius: 50px;
    padding: 10px 20px;
}

.home-section .service-btn .text {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
}

/* home section end */

/* insight section start  */
.insight-section {
    background: url(images/insight-section-bg.png), #f6f6f6;
}



.insight-section .section-headline {
    font-size: 52px;
}


.insight-section .right-side-image {
    text-align: right;
}

.insight-section .right-side-image img {
    width: 100%;
    max-height: 500px;
}



/* insight section end  */

/* about section start  */

.about-section .about-mid-image-wrapper {
    background: url(images/about-img.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 600px;
    position: relative;
}

.about-section .about-content-wrapper {
    position: absolute;
    height: max-content;
    width: max-content;
    max-width: 640px;
    padding: 60px;
    background: #ffffff;
    top: 100px;
    right: -100px;
    box-shadow: -31px 30px 40px 0px rgba(0, 0, 0, 0.20);
}



.about-section .section-headline {
    font-size: 32px;
}

.about-section .section-description {
    font-size: 16px;
}

@media (max-width:991px) {
    .about-section .about-mid-image-wrapper {
        height: 400px;
        margin-bottom: 500px;
    }

    .about-section .about-content-wrapper {
        max-width: 90%;
        top: 350px;
        right: 0px;
    }
}

@media (max-width:500px) {
    .about-section .about-mid-image-wrapper {
        height: 400px;
        margin-bottom: 500px;
    }

    .about-section .about-content-wrapper {
        padding: 25px;
    }

    .about-section .section-headline {
        font-size: 22px;
    }
}

/* about section end  */

/* video section start  */

.video-section {
    width: 100%;
    height: 575px;
    background: url(images/video-section-img.jpg) no-repeat center;
    background-size: cover;
}

.video-section .play-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 140px;
    height: 140px;
    background: url(images/play-icon.svg) no-repeat center;
    background-size: cover;
    border: none;
}

/* video section end  */

/* service section start  */

.service-section .service-title {
    background: var(--primary-black);
    padding: 45px;
    color: #ffffff;
    text-align: center;
    font-size: 56px;
    font-weight: 600;
    margin: 0;
}

.service-section .service {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service-section .service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-section .service .image {
    width: 50%;
    height: 100%;
    min-height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-section .service .description {
    width: 50%;
    padding: 60px;
    max-width: 660px;
}

.service-section .description .title {
    color: var(--primary-black);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-section .description .desc-points {
    color: var(--primary-black);
    font-size: 22px;
    font-weight: 500;
}

@media (max-width:1200px) {
    .service-section .service .description {
        padding: 10px;
    }

    .service-section .description .title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .service-section .description .desc-points {
        font-size: 15px;
    }

    .service-section .service-title {
        font-size: 35px;
    }
}

@media (max-width:600px) {
    .service-section .service-title {
        font-size: 30px;
    }

    .service-section .service .description {
        padding: 5px;
        width: 100%;
    }

    .service-section .service .image {
        width: 100%;
        min-height: unset;
        height: 250px;
    }

    .service-section .description .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .service-section .description .desc-points {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .service-section .description .desc-points ul {
        padding-left: 20px;
    }

}

/* service section end  */

/* project section start  */
.project-section {
    background: #f6f6f6;
}

.project-section .project {
    width: 375px;
    height: 525px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.project-section .project {
    width: 100%;
    height: 525px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.project-section .project .bg-grediant {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 93%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-section .project .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 0px 24px 10px 24px;
}

.project-section .project .info .type,
.project-section .project .info .location {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.project-section .project .info .title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.project-carousel {
    position: relative;
}

.swiper {
    width: 100%;
    height: max-content;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -24px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -40px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -40px;

}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: none;
}

.swiper-pagination-bullet-active {
    background: #000000;
}

/* project section end  */

/* testimonial start  */

.testimonial-carousel {
    position: relative;
    width: 100%;
}

.testimonial-section .testimonial {
    background-color: #f6f6f6;
    padding: 23px;
    width: 100%;
    height: max-content;
}

.testimonial-section .text {
    color: var(--primary-black);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.testimonial-section .client-info {
    display: flex;
}

.testimonial-section .client-info .image {
    width: 44px;
    height: 44px;
    background-position: center;
    background-size: cover;
    margin-right: 20px;
}

.testimonial-section .client-info .name {
    color: var(--primary-black);

    font-size: 16px;

    font-weight: 700;

}

.testimonial-section .client-info .company {
    color: var(--primary-black);

    font-size: 14px;

    font-weight: 300;

}


/* testimonial end  */

/* kitchen section start  */

.kitchen-section {
    background: url(images/kitchen-img.jpg) no-repeat center;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 160px;
}

.kitchen-section .content {
    padding: 60px;
    background: rgba(255, 255, 255, 0.70);
    text-align: center;
}

@media (max-width:500px) {
    .kitchen-section .content {     
        padding: 20px;
    }
}
.kitchen-section .call-btn {
    background: var(--primary-black);
    border-radius: 50px;
    color: #ffffff;
    padding: 10px 20px;
}

/* kitchen section end  */

/* contact section start  */

.contact-section {
    background: url(images/insight-section-bg.png), #f6f6f6;
}

.contact-section .content {
    background: #ffffff;
    padding: 60px;
}

@media (max-width:500px) {
    .contact-section .content {     
        padding: 20px;
    }
}

.contact-section .content .title {
    color: var(--primary-black);
    font-size: 40px;
    font-weight: 400;
}

.contact-section .content .location-info-text {
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 300;
}

.contact-section .content input,
.contact-section .content textarea {
    border: none;
    border-bottom: 1px solid var(--primary-black);
    padding-bottom: 10px;
    padding-top: 15px;
    padding-left: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    width: 100%;
}

.contact-section .content textarea {
    height: 100px;
}


.contact-section .content .contact-btn {
    background: var(--primary-black);
    padding: 10px 20px;
    color: #ffffff;
}


/* contact section end  */

/* footer section start  */

.footer-section {
    background: var(--primary-black);
    color: #ffffff;
    padding-bottom: 0px;
}

.footer-section .conclusion-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.footer-section .column-headline {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-section .footer-links a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.footer-section .location-info-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.footer-section .location-part .icon.map {
    width: 50px;
}

.footer-section .divider {
    width: 100%;
    background: #3A3A3A;
    height: 2px;
    margin-top: 25px;
}

.footer-section .copyright-text {
    color: #ffffff;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
}


/* footer section end  */


/* common media qry start */
@media (max-width:500px) {
    .section-headline {
        font-size: 35px !important;
    }

    .section-description {
        font-size: 16px !important;
    }
}
/* common media qry end */