* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: "Montserrat", serif;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

.btn-fill {
    min-width: 109px;
    width: fit-content;
    height: 44px;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #A5664E;
    border: none;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    position: relative;
    outline: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-fill:hover {
        background-color: #A5664E;
    }

    .btn-fill:focus {
        background-color: #000;
        color: #fff;
    }

    .btn-fill:after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: #000;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .btn-fill:hover {
        color: #fff;
    }

        .btn-fill:hover:after {
            width: 100%;
        }

.btn-white {
    min-width: 109px;
    width: fit-content;
    height: 44px;
    color: #A5664E;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    border: none;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    position: relative;
    outline: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-white:hover {
        background-color: #fff;
    }

    .btn-white:focus {
        background-color: #000;
        color: #fff;
    }

    .btn-white:after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: #000;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .btn-white:hover {
        color: #fff;
    }

        .btn-white:hover:after {
            width: 100%;
        }

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border-bottom: 1px solid #A5664E30;
}

    header.fixed {
        background-color: rgba(255,255,255,0.8);
        backdrop-filter: blur(15px);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        padding: 20px 0;
        transition: all 0.3s ease-in-out;
    }

.header-inner .logo {
    transition: all 0.3s ease-in-out;
}

    .header-inner .logo img {
        transition: all 0.3s ease-in-out;
    }

header.fixed .header-inner .logo img {
    max-width: 160px;
    transition: all 0.3s ease-in-out;
}

.header-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navbar {
    padding: 0;
}

    .navbar li:not(:last-child) {
        margin-right: 35px;
    }

    .navbar li a {
        font-size: 16px;
        font-weight: 500;
        color: #242424;
        transition: all 0.3s ease-in-out;
        position: relative;
        padding-bottom: 4px;
    }

        .navbar li a:hover {
            color: #A5664E;
        }

        .navbar li a::before {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            background-color: #A5664E;
            content: "";
            height: 2px;
            border-radius: 15px;
            transition: all 0.3s ease-in-out;
        }

        .navbar li a:hover::before {
            width: 100%;
        }

.header-right .btn-fill {
    min-width: 162px;
    padding: 5px 15px;
}

.heading {
    font-size: 45px;
    line-height: 65px;
    font-weight: 700;
    color: #242424;
    font-family: "Noto Serif JP", serif;
}

    .heading span {
        color: #A5664E;
    }
/* banner section */
.banner-slider {
    margin-bottom: 70px;
}

    .banner-slider .banner-img {
        width: 70%;
        margin-left: auto;
    }

        .banner-slider .banner-img img {
            width: 100%;
        }

    .banner-slider .banner-inner-section {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .banner-slider .content-box {
        max-width: 535px;
        background-color: rgba(255, 255, 255, 0.65);
        flex: 0 0 676px;
        padding: 70px 28px 35px 0;
        backdrop-filter: blur(50px);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

        .banner-slider .content-box::before {
            position: absolute;
            left: 40px;
            top: -80px;
            content: "";
            background-image: url(../images/dots-vector.svg);
            width: 100px;
            height: 116px;
            background-size: 100%;
            background-position: center;
        }

        .banner-slider .content-box h1 {
            font-size: 45px;
            line-height: 60px;
            font-weight: 700;
            color: #242424;
            font-family: "Noto Serif JP", serif;
            margin-bottom: 19px;
        }

        .banner-slider .content-box h4 {
            font-size: 24px;
            font-weight: 600;
            color: #333335;
            margin-bottom: 25px;
        }

        .banner-slider .content-box p {
            font-size: 20px;
            font-weight: 500;
            color: #333335;
            margin-bottom: 35px;
        }

.banner-arrows button:not(:last-child) {
    margin-right: 10px;
}

.banner-arrows .swiper-button-next {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    opacity: 1;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

    .banner-arrows .swiper-button-next:hover {
        border-color: #A5664E;
        background-color: #A5664E;
    }

        .banner-arrows .swiper-button-next:hover img {
            filter: invert(1) brightness(5);
        }

    .banner-arrows .swiper-button-next::after {
        display: none;
    }

.banner-arrows .swiper-button-prev {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    opacity: 1;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

    .banner-arrows .swiper-button-prev:hover {
        border-color: #A5664E;
        background-color: #A5664E;
    }

        .banner-arrows .swiper-button-prev:hover img {
            filter: invert(1) brightness(5);
        }

    .banner-arrows .swiper-button-prev::after {
        display: none;
    }
/* banner section */
/* about-section */

.about-section {
    background-color: #F4F6F6;
    position: relative;
}

    .about-section .section-img {
        width: 55%;
    }

        .about-section .section-img img {
            width: 100%;
        }

    .about-section .about-right-section {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
    }

    .about-section .content-box {
        max-width: 676px;
        background-color: rgba(255,255,255,0.65);
        flex: 0 0 676px;
        padding: 45px;
        backdrop-filter: blur(50px);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

        .about-section .content-box p {
            margin: 25px 0 22px;
            font-size: 20px;
            line-height: 30px;
            font-weight: 500;
            color: #333335;
        }

        .about-section .content-box ul li {
            padding-left: 35px;
            position: relative;
            font-size: 20px;
            line-height: 30px;
            font-weight: 500;
            color: #333335;
        }

        .about-section .content-box ul {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

            .about-section .content-box ul li {
                width: 50%;
                padding-bottom: 20px;
            }

                .about-section .content-box ul li::before {
                    position: absolute;
                    top: 8px;
                    left: 0;
                    content: "";
                    background-image: url(../images/check-colored-icon.svg);
                    background-repeat: no-repeat;
                    background-position: top center;
                    width: 20px;
                    height: 20px;
                    background-size: 100%;
                }

/* about-section */
.service-section {
    margin: 80px 0 77px;
}

.service-listing {
    display: flex;
    flex-wrap: wrap;
    margin: 35px -8px 0;
}

    .service-listing li {
        width: 50%;
        padding: 0 8px 17px;
    }

        .service-listing li .inner-box {
            display: block;
            position: relative;
        }

            .service-listing li .inner-box figure {
                overflow: hidden;
            }

                .service-listing li .inner-box figure img {
                    width: 100%;
                    transform: scale(1.07);
                    transition: all 0.9s ease-in-out;
                }

            .service-listing li .inner-box:hover figure img {
                transform: scale(1);
            }

            .service-listing li .inner-box .box-content {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                background-color: rgba(0,0,0,0.68);
                padding: 22px 0;
                backdrop-filter: blur(10px);
                text-align: center;
                transition: all 0.5s ease-in-out;
            }

            .service-listing li .inner-box:hover .box-content {
                background-color: rgba(0,0,0,0.50);
                backdrop-filter: blur(15px);
            }

            .service-listing li .inner-box .box-content h3 {
                font-size: 30px;
                font-weight: 400;
                color: #FFFFFF;
                transition: all 0.5s ease-in-out;
            }

            .service-listing li .inner-box:hover h3 {
                opacity: 0.7;
            }

            .service-listing li .inner-box .box-content h4 {
                font-size: 26px;
                font-weight: 400;
                color: #FFFFFF;
                transition: all 0.5s ease-in-out;
            }

            .service-listing li .inner-box:hover h4 {
                opacity: 0.7;
            }
/* gallary-section */

.gallary-section {
    background-color: #F4F6F6;
    padding: 45px 0 65px;
}

.gallary-tabs-section {
    margin-top: 30px;
}

    .gallary-tabs-section .nav-tabs {
        border: none;
        box-shadow: none;
        justify-content: center;
    }

        .gallary-tabs-section .nav-tabs li:not(:last-child) {
            margin-right: 25px;
        }

        .gallary-tabs-section .nav-tabs li button {
            border: none;
            box-shadow: none;
            background-color: transparent;
            font-size: 22px;
            font-weight: 400;
            color: #242424;
            transition: all 0.3s ease-in-out;
            position: relative;
            padding: 0;
            padding-bottom: 4px;
        }

            .gallary-tabs-section .nav-tabs li button::before {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                background-color: #A5664E;
                content: "";
                height: 3px;
                border-radius: 15px;
                transition: all 0.3s ease-in-out;
            }

            .gallary-tabs-section .nav-tabs li button.active::before {
                width: 100%;
            }

            .gallary-tabs-section .nav-tabs li button:hover::before {
                width: 100%;
            }

            .gallary-tabs-section .nav-tabs li button.active {
                background-color: transparent;
                font-weight: 600;
            }

    .gallary-tabs-section .tab-content {
        margin-top: 40px;
    }

.gallary-listing {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 35px;
}

    .gallary-listing li {
        width: 33.33%;
        padding: 0 5px 10px;
    }

        .gallary-listing li figure {
            overflow: hidden;
        }

            .gallary-listing li figure img {
                transform: scale(1.07);
                transition: all 0.7s ease-in-out;
            }

        .gallary-listing li:hover figure img {
            transform: scale(1);
        }

/* gallary-section */
.footer-top {
    background-color: #A5664E;
    padding: 34px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
}

    .footer-inner .footer-left {
        width: 38.7%;
        padding-right: 50px;
    }

    .footer-inner .footer-logo {
        display: block;
        margin-bottom: 13px;
    }

    .footer-inner .footer-left p {
        font-size: 15px;
        line-height: 23px;
        font-weight: 500;
        color: #FFFFFF;
        max-width: 336px;
    }

    .footer-inner .footer-middle {
        width: 37.7%;
        display: flex;
    }

    .footer-inner h3 {
        font-size: 20px;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 11px;
    }

.footer-listing {
    width: 50%;
}

    .footer-listing ul li:not(:last-child) {
        margin-bottom: 9px;
        padding-right: 10px;
    }

    .footer-listing ul {
        padding-top: 10px;
    }

        .footer-listing ul li a {
            font-size: 16px;
            font-weight: 500;
            color: #FFFFFF;
            transition: all 0.3s ease-in-out;
            position: relative;
            padding-bottom: 4px;
        }

            .footer-listing ul li a::before {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                background-color: #fff;
                content: "";
                height: 2px;
                border-radius: 15px;
                transition: all 0.3s ease-in-out;
            }

            .footer-listing ul li a:hover::before {
                width: 100%;
            }

.footer-inner .footer-right {
    width: 23.6%;
}

    .footer-inner .footer-right .btn-white {
        margin-bottom: 35px;
        width: 100%;
    }

.social-links {
    display: flex;
    align-items: center;
}

    .social-links li:not(:last-child) {
        margin-right: 9px;
    }

    .social-links li a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

        .social-links li a:hover {
            background-color: #000;
        }

            .social-links li a:hover img {
                filter: invert(1) brightness(5);
            }

.footer-bottom {
    padding: 15px 0;
    background-color: #fff;
}

    .footer-bottom ul li:not(:last-child) {
        padding-right: 20px;
        margin-right: 20px;
        border-right: 2px solid rgb(36 36 36 / 70%);
    }

    .footer-bottom ul li a {
        font-size: 15px;
        line-height: 18px;
        font-weight: 500;
        color: #242424;
        transition: all 0.2s ease-in-out;
        display: block;
    }

        .footer-bottom ul li a:hover {
            color: #A5664E;
        }

    .footer-bottom p {
        font-size: 15px;
        font-weight: 500;
        color: #242424;
    }

.footer-top::before {
    position: absolute;
    left: 15px;
    top: 12px;
    content: "";
    background-image: url(../images/dots-vector-white.svg);
    width: 100px;
    height: 116px;
    background-size: 100%;
    background-position: center;
}

.footer-top::after {
    position: absolute;
    right: 15px;
    bottom: 12px;
    content: "";
    background-image: url(../images/dots-vector-white.svg);
    width: 100px;
    height: 116px;
    background-size: 100%;
    background-position: center;
}

.inner-banner-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .inner-banner-section::before {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #000;
        width: 100%;
        height: 100%;
        z-index: -1;
        content: "";
        opacity: 0.5;
    }

    .inner-banner-section h1 {
        font-size: 60px;
        color: #fff;
        font-weight: 700;
        font-family: "Noto Serif JP", serif;
    }

.journey-section {
    background-color: #F4F6F6;
    padding: 45px 0 70px;
}

.why-choose-section {
    padding: 53px 0 79px;
    background-color: #F4F6F6;
}

.choose-listing {
    margin: 50px -30px 0;
    display: flex;
    flex-wrap: wrap;
}

    .choose-listing li {
        padding: 0 30px;
        width: 33.33%;
    }

        .choose-listing li .inner-wrap {
            background-color: #fff;
            box-shadow: 0px 0px 15px 0px #00000033;
            padding: 32px 28px 50px;
            text-align: center;
            transition: all 0.3s ease-in-out;
        }

            .choose-listing li .inner-wrap:hover {
                box-shadow: 0px 0px 15px 0px rgb(165 102 78 / 60%);
            }

            .choose-listing li .inner-wrap figure {
                margin-bottom: 12px;
            }

            .choose-listing li .inner-wrap h3 {
                font-size: 30px;
                font-weight: 700;
                color: #242424;
                font-family: "Noto Serif JP", serif;
                margin-bottom: 15px;
            }

.our-vission-section {
    margin: 50px -16px 70px;
}

    .our-vission-section li {
        width: 50%;
        padding: 0 16px;
    }

        .our-vission-section li .inner-wrap {
            padding: 50px;
            background-color: #A5664E;
            height: 100%;
            position: relative;
        }

            .our-vission-section li .inner-wrap::before {
                position: absolute;
                right: 30px;
                top: 30px;
                opacity: 0.4;
                content: "";
                background-image: url(../images/dots-vector-white.svg);
                width: 100px;
                height: 116px;
                background-size: 100%;
                background-position: center;
            }

            .our-vission-section li .inner-wrap figure {
                margin: 0 0 30px;
            }

            .our-vission-section li .inner-wrap h3 {
                font-size: 40px;
                font-weight: 700;
                color: #fff;
                margin-bottom: 12px;
            }

            .our-vission-section li .inner-wrap p {
                font-size: 18px;
                font-weight: 500;
                color: #fff;
            }

.out-team-section {
    margin-bottom: 56px;
}

.teams-slider {
    margin-top: 30px;
}

    .teams-slider .swiper-slide {
        text-align: center;
    }

        .teams-slider .swiper-slide figure {
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }

            .teams-slider .swiper-slide figure img {
                transition: all 0.3s ease-in-out;
                width: 100%;
            }

        .teams-slider .swiper-slide:hover figure img {
            transform: scale(1.05);
        }

        .teams-slider .swiper-slide h3 {
            font-size: 20px;
            font-weight: 600;
            color: #242424;
            margin: 15px 0 5px;
        }

        .teams-slider .swiper-slide p {
            font-size: 16px;
            font-weight: 500;
            color: #333335;
            margin-bottom: 0;
        }

.swiper-button-prev {
    left: 0 !important;
}

    .swiper-button-prev::after {
        filter: invert(1) brightness(0.4) grayscale(5);
    }

.swiper-button-next {
    right: 0 !important;
}

    .swiper-button-next::after {
        filter: invert(1) brightness(0.4) grayscale(5);
    }
/* .journey-section .container{
    max-width: calc(1265px + 120px);
  }
  .slider-section{
    padding: 0 60px;
  } */
.journey-slider {
    margin-top: 63px;
}

    .journey-slider span {
        font-size: 20px;
        font-weight: 700;
        color: #242424;
        padding-bottom: 15px;
        margin-bottom: 24px;
        display: block;
        position: relative;
        /* border-bottom: 1px solid #00000030; */
    }

        .journey-slider span::before {
            position: absolute;
            left: 25px;
            bottom: 0;
            width: 0;
            height: 1px;
            border: none;
            content: "";
            background: #00000030;
            transition: all 2s ease-in-out;
        }

.journey-section.animated .journey-slider .swiper-slide:nth-child(2) span::before {
    transition-delay: 2.1s;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(3) span::before {
    transition-delay: 4.2s;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(4) span::before {
    transition-delay: 6.3s;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(5) span::before {
    transition-delay: 8.4s;
}

.journey-section.animated .journey-slider span::before {
    width: 100%;
}

.journey-slider span::after {
    position: absolute;
    left: 15px;
    bottom: -8px;
    width: 17px;
    height: 17px;
    background-color: #fff;
    border: 2px solid #F58363;
    content: "";
    border-radius: 50%;
    transition: all 1s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(1) span::after {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(2) span::after {
    transition-delay: 2.0s;
    opacity: 1;
    visibility: visible;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(3) span::after {
    transition-delay: 4.1s;
    opacity: 1;
    visibility: visible;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(4) span::after {
    transition-delay: 6.2s;
    opacity: 1;
    visibility: visible;
}

.journey-section.animated .journey-slider .swiper-slide:nth-child(5) span::after {
    transition-delay: 8.3s;
    opacity: 1;
    visibility: visible;
}

.journey-slider h3 {
    font-size: 20px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 11px;
    padding-right: 30px;
}

.journey-slider p {
    font-size: 18px;
    font-weight: 500;
    color: #333335;
    margin-bottom: 0px;
    padding-right: 30px;
}

.slider-section {
    position: relative;
}

    .slider-section .swiper-nav {
        position: absolute;
        top: 50%;
        /* left: 0; */
        transform: translateY(-50%);
        margin: 0 !important;
    }

        .slider-section .swiper-nav.swiper-button-prev, .slider-section .swiper-nav.swiper-button-prev1 {
            left: -60px !important;
        }

        .slider-section .swiper-nav.swiper-button-next, .slider-section .swiper-nav.swiper-button-next1 {
            right: -60px !important;
        }

    .slider-section .swiper-pagination {
        display: none;
    }

.detail-main-section {
    padding: 30px 0 40px;
    border-bottom: 1px solid #0000003D;
}

.service-header-section ul {
    display: flex;
    flex-wrap: wrap;
}

    .service-header-section ul li {
        width: 98%;
        padding-bottom: 15px;
        padding-left: 35px;
        position: relative;
        font-size: 16px;
        line-height: 15px;
        font-weight: 500;
        color: #333335;
    }

        .service-header-section ul li::before {
            position: absolute;
            top: 2px;
            left: 0;
            content: "";
            background-image: url(../images/check-colored-icon.svg);
            background-repeat: no-repeat;
            background-position: top center;
            width: 20px;
            height: 15px;
            background-size: 100%;
        }
/* - - */
.detail-wrap {
    display: flex;
    flex-wrap: wrap;
}

    .detail-wrap .detail-img {
        width: 600px;
    }

    .detail-wrap .detail-content {
        width: calc(100% - 600px);
        padding-left: 70px;
    }

.detail-content h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    margin-top: 20px;
    margin-bottom: 27px;
}

.detail-content p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 19px;
}

.detail-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 21px;
    margin-top: 20px;
}

    .detail-btn .btn.btn-white {
        border: 1px solid #A5664E;
    }

        .detail-btn .btn.btn-white:hover {
            border-color: #000;
        }

            .detail-btn .btn.btn-white:hover img {
                filter: invert(1) brightness(5);
            }

    .detail-btn .btn {
        width: 100%;
        height: 65px;
    }

        .detail-btn .btn img {
            margin-right: 10px;
        }

.description-section {
    padding: 24px 0 45px;
    border-bottom: 1px solid rgb(0, 0, 0,0.24);
}

    .description-section .section-heading {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 10px;
    }

.description-tabs {
    margin-top: 20px;
}

    .description-tabs .nav-tabs {
        border: none;
        margin-bottom: 34px;
    }

        .description-tabs .nav-tabs .nav-item:not(:last-child) {
            margin-right: 5px;
        }

        .description-tabs .nav-tabs .nav-item .nav-link {
            border: none;
            border-bottom: 3px solid transparent;
            padding: 0 23px 10px;
            outline: none;
            box-shadow: none;
            font-size: 22px;
            font-weight: 400;
            color: #242424;
            transition: all 0.3s ease-in-out;
        }

            .description-tabs .nav-tabs .nav-item .nav-link.active {
                border-bottom: 3px solid #A5664E;
                font-weight: 600;
            }

            .description-tabs .nav-tabs .nav-item .nav-link:hover {
                border-bottom: 3px solid #A5664E;
                font-weight: 600;
            }

    .description-tabs .tab-pane p {
        font-size: 18px;
        font-weight: 500;
        color: #333335;
        line-height: 30px;
    }

.similar-design-section {
    margin: 44px 0 50px;
}

.slider-section .inner-box {
    display: block;
    position: relative;
}

    .slider-section .inner-box figure {
        overflow: hidden;
    }

        .slider-section .inner-box figure img {
            width: 100%;
            transform: scale(1.07);
            transition: all 0.9s ease-in-out;
        }

    .slider-section .inner-box:hover figure img {
        transform: scale(1);
    }

    .slider-section .inner-box .box-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0,0,0,0.68);
        padding: 22px 10px;
        backdrop-filter: blur(10px);
        text-align: center;
        transition: all 0.5s ease-in-out;
    }

    .slider-section .inner-box:hover .box-content {
        background-color: rgba(0,0,0,0.50);
        backdrop-filter: blur(15px);
    }

    .slider-section .inner-box .box-content h3 {
        font-size: 22px;
        font-weight: 500;
        color: #FFFFFF;
        transition: all 0.5s ease-in-out;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin-bottom: 0;
    }

    .slider-section .inner-box:hover h3 {
        opacity: 0.7;
    }

.similar-slider {
    margin-top: 22px;
}

.contact-banner-section {
    min-height: 575px;
    align-items: start;
    padding-top: 155px;
}

.contact-form-section {
    margin: -200px auto 0;
    max-width: 1042px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 15px 0px #00000040;
    background-color: #fff;
    padding: 34px 34px 55px;
}

    .contact-form-section .heading {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 34px;
    }

.form-start {
    max-width: 840px;
    margin: 0 auto;
}

    .form-start .row {
        margin: 0 -20px;
    }

        .form-start .row > * {
            padding: 0 20px;
        }

    .form-start .form-group {
        margin-bottom: 45px;
    }

.form-group .form-label {
    display: block;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 1px;
}

    .form-group .form-label span {
        color: #EB1515;
    }

.form-group .form-control {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border: none;
    border-bottom: 2px solid #D9D9D9;
    border-radius: 0;
    padding: 0;
    height: 30px;
    outline: none;
    box-shadow: none;
}

    .form-group .form-control:focus {
        border-color: #A5664E;
    }

.form-group textarea.form-control {
    height: 90px;
    resize: none;
}

.recaptcha-section .btn-fill {
    height: 59px;
    min-width: 146px;
}

.address-section {
    background-color: #F4F6F6;
    padding: 32px 17px 16px 49px;
    margin: 56px auto 49px;
    max-width: 1042px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .address-section .left-box {
        width: calc(100% - 573px);
        padding-right: 49px;
    }

        .address-section .left-box .btn-fill {
            height: 65px;
        }

        .address-section .left-box ul li {
            display: flex;
            align-items: start;
            margin-bottom: 40px;
        }

            .address-section .left-box ul li figure {
                margin-right: 18px;
                margin-top: 8px;
                flex: 0 0 auto;
            }

            .address-section .left-box ul li p {
                font-size: 24px;
                font-weight: 700;
                color: #242424;
            }

            .address-section .left-box ul li span, .address-section .left-box ul li a {
                font-size: 18px;
                font-weight: 500;
                color: #242424;
                display: block;
                transition: all 0.2s ease-in-out;
            }

                .address-section .left-box ul li a:hover {
                    color: #A5664E;
                }

    .address-section .right-box {
        width: 573px;
    }

.contact-info, .contact-info a {
    color: #A5664E !important;
}

.contact-info a:hover {
    color: #000;
}


@media(min-width:1300px) {
    .container {
        max-width: 1265px;
        margin: 0 auto;
    }
}

@media(max-width:1380px) {
    .slider-section {
        padding: 0 50px;
    }

        .slider-section .swiper-nav.swiper-button-prev {
            left: 0 !important;
        }

        .slider-section .swiper-nav.swiper-button-next {
            right: 0 !important;
        }
}

@media(max-width:1499px) {
    .footer-top::before, .footer-top::after {
        width: 50px;
        height: 59px;
    }
}

@media(max-width:1399px) {
    .banner-slider .banner-img {
        width: 75%;
    }

    .about-section .section-img {
        width: 60%;
    }

    .footer-top::before, .footer-top::after {
        display: none;
    }
}

@media(max-width:1299px) {
    .footer-inner .footer-right .btn-white {
        font-size: 14px;
    }

    .banner-slider .content-box h1 {
        font-size: 40px;
        line-height: 55px;
    }

    .banner-slider .content-box::before {
        width: 100px;
        height: 95px;
        top: -40px;
    }

    .detail-wrap .detail-content {
        padding-left: 30px;
    }

    .detail-content h1 {
        font-size: 33px;
        line-height: 45px;
    }
}

@media(max-width:1199px) {
    .banner-slider .banner-img {
        width: 81%;
    }

    .banner-slider .content-box {
        padding: 40px 28px 35px 0;
    }

        .banner-slider .content-box::before {
            width: 80px;
            height: 85px;
        }

    .about-section .section-img {
        width: 70%;
    }

    .service-listing li .inner-box .box-content h3 {
        font-size: 23px;
    }

    .service-listing li .inner-box .box-content h4 {
        font-size: 20px;
    }

    .footer-inner .footer-left {
        width: 34.7%;
    }

    .footer-inner .footer-right {
        width: 27.6%;
    }

    .footer-inner .footer-middle {
        padding-right: 10px;
    }

    .choose-listing {
        margin: 50px -10px 0;
    }

        .choose-listing li {
            padding: 0 10px;
        }

    .detail-wrap .detail-img {
        width: 450px;
    }

    .detail-wrap .detail-content {
        width: calc(100% - 450px);
    }

    .detail-btn {
        gap: 0 14px;
        margin-top: 20px;
    }

    .detail-content h1 {
        font-size: 30px;
        line-height: 42px;
        margin-top: 0;
    }

    .detail-content p {
        font-size: 16px;
    }

    .address-section .left-box {
        width: calc(100% - 430px);
    }

        .address-section .left-box ul li {
            margin-bottom: 25px;
        }

    .address-section .right-box {
        width: 430px;
    }
}

@media(max-width:991px) {
    .banner-slider .banner-img {
        width: 100%;
    }

    .banner-slider .content-box {
        position: relative;
        top: 0;
        margin-top: -120px;
        margin-bottom: 30px;
        transform: none;
        padding: 25px 25px 35px 25px;
        max-width: 100%;
        flex: 0 0 100%;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .banner-slider .content-box::before {
            display: none;
        }

        .banner-slider .content-box h1 {
            font-size: 36px;
            line-height: 50px;
        }

    .about-section .section-img {
        width: 100%;
    }

    .about-section .content-box {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 25px;
        position: relative;
        top: 0;
        margin-top: -140px;
        margin-bottom: 35px;
        transform: none;
    }

    .heading {
        font-size: 37px;
        line-height: 55px;
    }

    .footer-inner .footer-left {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

        .footer-inner .footer-left p {
            max-width: 100%;
            margin: 0 auto;
        }

    .footer-inner .footer-middle {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-inner .footer-right {
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .btn-fill {
        font-size: 15px;
    }

    .gallary-tabs-section .nav-tabs li button {
        font-size: 18px;
    }

    .service-listing li .inner-box .box-content {
        padding: 15px 0;
    }

        .service-listing li .inner-box .box-content h3 {
            font-size: 20px;
            margin-bottom: 0;
        }

        .service-listing li .inner-box .box-content h4 {
            font-size: 16px;
            margin-bottom: 0;
        }

    .navbar li:not(:last-child) {
        margin-right: 15px;
    }

    .header-inner .logo img {
        width: 120px;
    }

    .navbar li a {
        font-size: 14px;
    }

    .header-right .btn-fill {
        min-width: 127px;
        padding: 5px 11px;
        font-size: 13px;
    }

    header.fixed {
        padding: 13px 0;
    }

    .our-vission-section li .inner-wrap {
        padding: 30px 20px;
    }

    .inner-banner-section {
        height: 260px;
    }

        .inner-banner-section h1 {
            font-size: 50px;
        }

    .journey-slider p {
        font-size: 16px;
    }

    .journey-slider h3 {
        font-size: 17px;
    }

    .our-vission-section li .inner-wrap h3 {
        font-size: 30px;
    }

    .our-vission-section li .inner-wrap p {
        font-size: 16px;
    }

    .our-vission-section li .inner-wrap figure {
        margin: 0 0 20px;
    }

        .our-vission-section li .inner-wrap figure img {
            width: 80px;
        }

    .our-vission-section li .inner-wrap::before {
        width: 80px;
        height: 93px;
    }

    .our-vission-section {
        margin: 40px -12px 40px;
    }

        .our-vission-section li {
            width: 100%;
            padding: 0 12px 25px;
        }

    .choose-listing li {
        padding: 0 10px 30px;
        width: 100%;
    }

    .teams-slider {
        padding: 0 !important;
    }

    .swiper-pagination {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative !important;
        margin-top: 30px;
    }

        .swiper-pagination .swiper-pagination-bullet::before, .swiper-pagination .swiper-pagination-bullet::after {
            display: none;
        }

        .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            margin: 0 !important;
            display: block;
            padding: 0 !important;
        }

            .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
                margin-right: 7px !important;
            }

            .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: #A5664E;
            }

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }

    .slider-section {
        padding: 0;
    }

    .detail-wrap .detail-img {
        width: 100%;
    }

    .detail-wrap .detail-content {
        width: 100%;
        padding-top: 20px;
        padding-left: 0;
    }

    .detail-content h1 {
        margin-bottom: 15px;
    }

    .similar-design-section {
        margin: 15px 0 40px;
    }

    .description-tabs .nav-tabs {
        margin-bottom: 24px;
    }

    .description-tabs .tab-pane p {
        font-size: 16px;
        line-height: 27px;
    }

    .contact-banner-section {
        min-height: 475px;
        padding-top: 95px;
    }

    .address-section {
        padding: 30px 15px;
    }

        .address-section .left-box {
            width: 100%;
            padding-right: 0;
            padding-bottom: 40px;
        }

        .address-section .right-box {
            width: 100%;
        }

            .address-section .right-box figure img {
                width: 100%;
            }
}

@media(max-width:767px) {
    .container {
        max-width: 100%;
    }

    .banner-slider {
        margin-bottom: 10px;
    }

    header {
        padding: 15px 0;
    }

    .header-right {
        display: flex;
        align-items: center;
    }

    .navbar {
        position: fixed;
        left: -100%;
        top: 74px;
        border-top: 1px solid #ddd;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 74px);
        display: block;
        padding: 20px 12px;
        text-align: center;
        overflow-y: auto;
        transition: all 0.5s ease-in-out;
    }

        .navbar.show {
            left: 0;
        }

        .navbar li {
            margin-right: 0 !important;
            margin-bottom: 15px;
        }

    /* menu  */

    .menubar {
        position: relative;
        width: 1em;
        height: 1em;
        font-size: inherit;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-size: 1.5rem;
        margin-left: 15px;
        background-color: transparent;
    }

        .menubar .hamburger-line {
            position: absolute;
            right: 0;
            width: 100%;
            height: 0.125em;
            border-radius: 0.125em;
            background: currentColor;
            transition: inherit;
        }

            .menubar .hamburger-line:nth-child(1) {
                top: 0.125em;
            }

        .menubar.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotateZ(-135deg);
        }

    .hamburger-line:nth-child(2) {
        top: 0.438em;
    }

    .menubar.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
        right: 50%;
        width: 0;
    }

    .hamburger-line:nth-child(3) {
        top: 0.75em;
        width: 0.625em;
    }

    .menubar.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
        top: 50%;
        width: 100%;
        transform: translateY(-50%) rotateZ(135deg);
    }

    /* menu */
    .stop-scroll {
        overflow: hidden;
    }

    header.fixed .navbar {
        top: 70px;
        height: calc(100vh - 70px);
    }

    body:has(.menubar.is-active) header {
        background-color: #fff;
    }

    .banner-slider .content-box h1 {
        font-size: 26px;
        line-height: normal;
        margin-bottom: 13px;
    }

    .banner-slider .content-box h4 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .banner-slider .content-box p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .banner-slider .content-box {
        padding: 25px 15px 25px 15px;
    }

    .banner-slider .content-box {
        margin-top: -60px;
    }

    .about-section .content-box {
        padding: 25px 15px 25px 15px;
        margin-top: -60px;
    }

    .heading {
        font-size: 26px;
        line-height: 37px;
        margin-bottom: 0;
    }

    .about-section .content-box p {
        font-size: 15px;
        line-height: 22px;
    }

    .about-section .content-box ul li {
        font-size: 14px;
        padding-left: 30px;
    }

    .about-section .content-box ul li {
        width: 100%;
        padding-bottom: 10px;
    }

    .service-listing li {
        width: 100%;
    }

        .service-listing li .inner-box .box-content h3 {
            font-size: 17px;
        }

        .service-listing li .inner-box .box-content h4 {
            font-size: 13px;
        }

    .service-section {
        margin: 30px 0 40px;
    }

    .section-head {
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-inner .footer-logo img {
        max-width: 160px;
        margin: 0 auto;
    }

    .footer-bottom div.d-flex {
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-bottom ul.left-head {
        margin-bottom: 20px;
    }

    .gallary-listing li {
        width: 50%;
    }

    .footer-listing ul li a {
        font-size: 14px;
    }

    .footer-inner h3 {
        font-size: 17px;
    }

    .footer-listing ul {
        padding-top: 0;
    }

    .gallary-section {
        padding: 30px 0 40px;
    }

    .gallary-tabs-section .nav-tabs li {
        margin-bottom: 10px;
    }

        .gallary-tabs-section .nav-tabs li:not(:last-child) {
            margin-right: 20px;
        }

        .gallary-tabs-section .nav-tabs li button {
            font-size: 15px;
        }

    .header-inner .logo img {
        width: 110px;
    }

    .header-right .btn-fill {
        font-size: 12px;
        height: 40px;
    }

    .navbar {
        top: 70px;
        height: calc(100vh - 70px);
    }

    header.fixed .navbar {
        top: 66px;
        height: calc(100vh - 66px);
    }

    .gallary-tabs-section .tab-content {
        margin-top: 20px;
    }

    .choose-listing li .inner-wrap {
        padding: 30px 16px 30px;
    }

        .choose-listing li .inner-wrap h3 {
            font-size: 22px;
        }

    .why-choose-section {
        padding: 40px 0 40px;
    }

    .choose-listing {
        margin: 30px -10px 0;
    }

    .journey-section {
        padding: 35px 0 40px;
    }

    .our-vission-section li .inner-wrap h3 {
        font-size: 27px;
    }

    .our-vission-section li .inner-wrap figure img {
        width: 70px;
    }

    .our-vission-section li .inner-wrap::before {
        width: 60px;
        height: 70px;
        right: 20px;
        top: 20px;
    }

    .our-vission-section li .inner-wrap p {
        font-size: 15px;
    }

    .inner-banner-section h1 {
        font-size: 29px;
    }

    .inner-banner-section {
        height: 210px;
    }

    .out-team-section {
        margin-bottom: 35px;
    }

    .journey-slider {
        margin-top: 35px;
    }

    .detail-content h1 {
        font-size: 25px;
        line-height: normal;
    }

    .detail-content p {
        font-size: 15px;
        line-height: 25px;
    }

    .detail-btn {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 0;
    }

        .detail-btn .btn {
            height: 50px;
        }

    .description-section .section-heading {
        font-size: 26px;
        line-height: 35px;
    }

    .description-tabs .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

        .description-tabs .nav-tabs .nav-item .nav-link {
            padding: 0px 13px 7px;
            font-size: 17px;
        }

    .description-tabs .nav-tabs {
        margin-bottom: 12px;
    }

    .description-tabs .tab-pane p {
        font-size: 14px;
        line-height: 25px;
    }

    .description-section {
        padding: 25px 0 25px;
    }

    .slider-section .inner-box .box-content h3 {
        font-size: 15px;
    }

    .contact-banner-section {
        min-height: 395px;
        padding-top: 65px;
    }

    .contact-form-section {
        padding: 34px 15px 55px;
    }

    .form-start .form-group {
        margin-bottom: 25px;
    }

    .form-group .form-label {
        font-size: 16px;
    }

    .form-group .form-control {
        font-size: 15px;
    }

    .recaptcha-section .btn-fill {
        margin-top: 20px;
        width: 100%;
    }

    .address-section .left-box ul li figure {
        margin-top: 2px;
    }

    .contact-form-section .heading {
        font-size: 27px;
    }

    .address-section .left-box ul li p {
        font-size: 20px;
    }

    .address-section .left-box ul li span, .address-section .left-box ul li a {
        font-size: 15px;
    }

    .address-section .left-box .btn-fill {
        height: 50px;
        font-size: 14px;
    }
}
