@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(fonts/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXME.ttf) format('truetype');
}

@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/josefinsans/v34/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXME.ttf) format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNig.ttf) format('truetype');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(fonts/worksans/v24/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNig.ttf) format('truetype');
}


/********** Template CSS **********/

body {
    background: #FDF9F0 !important;
    color: #000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}



.container {
    max-width: 1500px;
    width: 100%;
}

/*** Navbar ***/
.navbar {
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
    background: #052B20E8;
}

    .navbar .navbar-nav .nav-link {
        margin-right: 25px;
        padding: 40px 0;
        color: var(--bs-white);
        font-size: 17px;
        text-transform: uppercase;
        outline: none;
        transition: .5s;
        font-family: "Righteous", sans-serif;
    }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            color: var(--bs-primary);
        }

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        /*display: block;*/
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        font-family: "Righteous", sans-serif;
    }


    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgb(1 42 31 / 81%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }

        /*#header-carousel .carousel-item img {
            position: absolute;*/
            /*top: -20px;*/
            /*width: 42%;
            height: 100%;
            object-fit: contain;
        }*/

        #header-carousel .carousel-item .img-size {
            object-fit: cover !important;
            width: 100% !important;
        }

    .product-sec .card img {
        height: 150px!important;
    }
    .product-sec .card .card-body {
        padding: 0;
    }
    .product-sec .card h6 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pro-heading {
        font-size: 28px!important;
    }
}
@media (max-width: 991px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }

        /*#header-carousel .carousel-item img {
            position: absolute;*/
            /*top: -20px;*/
            /*width: 32%;
            height: 100%;
            object-fit: contain;
        }*/

        #header-carousel .carousel-item .img-size {
            object-fit: cover !important;
            width: 100% !important;
        }

    .product-sec .card img {
        height: 150px !important;
    }

    .product-sec .card .card-body {
        padding: 0;
    }

    .product-sec .card h6 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pro-heading {
        font-size: 28px !important;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--bs-white);
    }


/*** Title ***/
.title {
    /* margin-bottom: -4rem; */
    z-index: -1;
}

    .title .title-left,
    .title .title-center,
    .title .title-right {
        display: inline-block;
        text-transform: uppercase;
        overflow: hidden;
    }

    .title .title-center {
        text-align: center;
    }

    .title .title-right {
        text-align: right;
    }

        .title .title-left h5,
        .title .title-center h5,
        .title .title-right h5 {
            position: relative;
            display: inline-block;
            font-size: 18px;
            font-weight: 300;
        }

            /* .title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
} */

            .title .title-left h5::after,
            .title .title-center h5::after {
                left: calc(100% + 15px);
            }

            .title .title-right h5::before,
            .title .title-center h5::before {
                right: calc(100% + 15px);
            }

/* .title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
} */


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

    .service-item .service-img {
        position: relative;
        display: inline-block;
    }

        .service-item .service-img::before {
            position: absolute;
            content: "";
            width: calc(100% - 12rem);
            height: calc(100% - 12rem);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 3rem solid rgba(0, 0, 0, .5);
            border-radius: 300px;
            z-index: 1;
        }

    .service-item.service-item-left {
        border-radius: 500px 0 0 500px;
        background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
    }

    .service-item.service-item-right {
        border-radius: 0 500px 500px 0;
        background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
    }

@media (max-width: 767.98px) {

    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

    .team-item .team-name {
        position: absolute;
        width: 100%;
        height: 60px;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .7);
    }

    .team-item .team-body {
        position: relative;
        overflow: hidden;
    }

        .team-item .team-body .team-before,
        .team-item .team-body .team-after {
            position: absolute;
            content: "";
            width: 0;
            height: calc(100% - 60px);
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, .7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: .5s;
        }

        .team-item .team-body .team-after {
            left: auto;
            right: 0;
        }

        .team-item .team-body .team-before {
            text-align: right;
        }

    .team-item:hover .team-body .team-before,
    .team-item:hover .team-body .team-after {
        width: 50%;
    }

    .team-item .team-body .team-before span,
    .team-item .team-body .team-after span {
        margin: 5px;
        color: var(--bs-white);
        opacity: 0;
        transition: .5s;
    }

    .team-item:hover .team-body .team-before span,
    .team-item:hover .team-body .team-after span {
        opacity: 1;
        transition-delay: .2s;
    }


/*** Testimonial ***/
.testimonial-carousel {
    width: 100%;
    margin: 0 auto;
    text-align: start;
}

    .testimonial-carousel .owl-dots {
        margin-top: 35px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .testimonial-carousel .owl-dots .owl-dot {
            width: 60px;
            height: 60px;
            margin: 0 5px;
            padding: 10px;
            background: var(--bs-dark);
            border-radius: 100px;
            transition: .5s;
        }

            .testimonial-carousel .owl-dots .owl-dot.active {
                width: 100px;
                height: 100px;
            }

            .testimonial-carousel .owl-dots .owl-dot img {
                opacity: .1;
                transition: .5s;
                border-radius: 100px;
            }

            .testimonial-carousel .owl-dots .owl-dot.active img {
                opacity: 1;
            }


/*** Footer ***/
@keyframes footerAnimatedBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1000px 0;
    }
}

.footer {
    background-image: url(../img/footer-bg.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
    animation: footerAnimatedBg 50s linear infinite;
}


.display-1 {
    font-size: 7rem;
    font-family: "Montserrat", sans-serif !important;
}

.title-center h5 {
    font-family: "Montserrat", sans-serif !important;
    text-transform: capitalize;
    font-size: 40px !important;
}

.search-btn {
    padding: 15px 19px;
}


.categor span {
    font-family: "Montserrat", sans-serif !important;
    text-transform: capitalize;
    color: #052B20;
}

.categor h2 {
    font-family: "Montserrat", sans-serif !important;
    text-transform: capitalize;
    font-size: 30px !important;
    color: #052B20;
}


.categor a {
    font-family: "Montserrat", sans-serif !important;
    background: #052B20 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    padding: 6px 33px;
}

.cate-sec .card {
    background: #F0C79170;
    font-family: "Montserrat", sans-serif !important;
}

    .cate-sec .card img {
        width: 100%;
        height: 335px;
        object-fit: cover;
    }

    .cate-sec .card h4 {
        color: #000;
        font-family: "Montserrat", sans-serif !important;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 15px;
    }

    .cate-sec .card h6 {
        color: #000;
        font-weight: 400;
        font-size: 13px;
        font-family: "Montserrat", sans-serif !important;
    }

.handi-gift h4 {
    color: #fff;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 21px;
}

.handi-gift h2 {
    color: #F0C791;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 35px;
}

.handi-gift .btn-shop {
    font-family: "Montserrat", sans-serif !important;
    background: #F0C791 !important;
    text-transform: uppercase !important;
    color: #052B20 !important;
    padding: 6px 33px;
}


.trand-sale h4 {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 21px;
}

.trand-sale h2 {
    color: #052B20;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 35px;
}

.trand-sale .btn-shop {
    font-family: "Montserrat", sans-serif !important;
    background: #052B20 !important;
    text-transform: uppercase !important;
    color: #F0C791 !important;
    padding: 6px 33px;
}

.for-border-radious {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    z-index: 100;
    position: relative;
    background: #FDF9F0;
    padding: 0 0 50px 0;
    overflow: hidden;
}

.categor p {
    font-family: "Montserrat", sans-serif !important;
    color: #505050;
    font-size: 18px;
    margin: 20px 0 30px 0;
    line-height: 30px;
}

.about-sec {
    background: #F2E5D6;
    padding: 100px 0 30px 0;
    /*margin: -80px 0 0 0;*/
    overflow: hidden;
}

.flter-btn a {
    border: 1px solid #052B20 !important;
    color: #052B20 !important;
    padding: 10px 20px;
}

    .flter-btn a:hover {
        border: 1px solid #052B20 !important;
        background: #052B20;
        color: #fff !important;
        padding: 10px 20px;
    }

.shake-vertical {
    -webkit-animation: shake-vertical 10s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
    animation: shake-vertical 10s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-1-31 12:26:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shake-vertical
 * ----------------------------------------
 */
@-webkit-keyframes shake-vertical {

    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    80% {
        -webkit-transform: translateY(6.4px);
        transform: translateY(6.4px);
    }

    90% {
        -webkit-transform: translateY(-6.4px);
        transform: translateY(-6.4px);
    }
}

@keyframes shake-vertical {

    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    10%, 30%, 50%, 70% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    20%, 40%, 60% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    80% {
        -webkit-transform: translateY(6.4px);
        transform: translateY(6.4px);
    }

    90% {
        -webkit-transform: translateY(-6.4px);
        transform: translateY(-6.4px);
    }
}

.product-sec {
    margin: 40px 0 0px 0;
    display: flex;
    justify-content: space-between;
}

.cate-page .product-sec {
    margin: 40px 0 0px 0;
    display:;
    justify-content: start;
}

.product-sec .card {
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
    border: none;
    padding: 10px;
    margin-bottom:20px;
}

    .product-sec .card img {
        border-radius: 16px !important;
        width: 100%;
        height: 297px;
        object-fit: cover;
    }

    .product-sec .card .card-body {
        background: none !important;
    }

    .product-sec .card h6 {
        font-weight: 500;
        font-family: "Montserrat", sans-serif !important;
        color: #052B20;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 14px;
    }

.about-sec {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}

.testimonial-sec {
    background: #FDF9F0;
    padding: 80px 0 120px 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid #e9e3d7;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

.quote-icon {
    width: 55px;
    height: 55px;
    background: #052B20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.stars-ratings {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

    .stars-ratings i {
        color: #f4c542;
        font-size: 15px;
    }

.review-text {
    font-size: 15px;
    line-height: 30px;
    color: #555;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 30px;
}

.review-user h6 {
    font-size: 20px;
    font-weight: 700;
    color: #052B20;
    margin-bottom: 5px;
}

.review-user span {
    color: #777;
    font-size: 14px;
}

    .stars-ratings {
        display: flex;
        justify-content: start;
        gap: 5px;
    }

    .stars-ratings i {
        color: #f9dc00;
    }

.logo-item .card {
    background: #fff;
    padding: 10px;
}

    .logo-item .card .card-body {
        display: flex;
        justify-content: space-between;
        color: #000;
    }

        .logo-item .card .card-body h6 {
            color: #000;
            font-weight: 500;
            line-height: 25px;
        }


.offer-sec {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 100px;
    z-index: 0;
    position: relative;
    background: #052B20 url(../img/palm.png);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 10%;
    padding: 180px 0 0px 0;
    margin: -150px 0 0 0;
    overflow: hidden;
}

#countdown ul {
    padding: 0;
}

#countdown li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 0 17px 0 0;
    text-transform: uppercase;
    text-align: center;
    align-self: center;
}

    #countdown li span {
        display: block;
        font-size: 45px;
        color: #fff;
        font-family: "Montserrat", sans-serif !important;
        font-weight: 700;
    }

.stats-shapr {
    position: relative;
    top: -28px;
    align-self: center;
    color: #fff;
    font-size: 30px !important;
}

.stats {
    font-size: 15px !important;
    font-weight: 400 !important;
}

#countdown .emoji {
    display: none;
    padding: 1rem;
}

    #countdown .emoji span {
        font-size: 4rem;
        padding: 0 .5rem;
    }

@media all and (max-width: 768px) {
    #countdown h1 {
        font-size: calc(1.5rem * var(--smaller));
    }

    #countdown li {
        font-size: calc(1.125rem * var(--smaller));
    }

        #countdown li span {
            font-size: 45px;
        }
}


.offer-sec a {
    font-family: "Montserrat", sans-serif !important;
    background: #fff !important;
    text-transform: uppercase !important;
    color: #052B20 !important;
    padding: 6px 33px;
    font-weight: 600;
    margin: 50px 0 0 0;
}

.blog-sec {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    z-index: 100;
    position: relative;
    /*background: #FDF9F0 url(../img/bot-line.png);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0 0 0 0;
    overflow: hidden;
}

    .blog-sec .card {
        position: relative;
        display: block !important;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border: 1px solid rgba(0, 0, 0, .125);
        border-radius: 10px;
    }

        .blog-sec .card img {
            margin: 0 0 20px 0;
        }

.blog-cate {
    color: #6941C6;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    text-align: start;
}

.blog-sec .card h3 {
    color: #052B20;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    margin: 20px 0;
}


.blog-sec .card p {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    font-size: 18px;
}

.author img {
    width: 50px !important;
}

.footer-bg {
    background: #052B20;
    padding: 120px 0 0 0;
    margin: -70px 0 0 0;
    font-family: "Montserrat", sans-serif !important;
    position: relative;
    z-index: 1;
}

    .footer-bg h2 {
        font-size: 40px;
        font-family: "Montserrat", sans-serif !important;
    }

    .footer-bg h5 {
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif !important;
        font-size: 18px !important;
        color: #fff;
    }

.news-letter {
    border-radius: 100px;
    overflow: hidden;
    margin: 20px 0 0 0;
    font-family: "Montserrat", sans-serif !important;
}

    .news-letter button {
        background: #F0C791;
        color: #052B20;
    }

.footer-ul li {
    padding: 8px 0;
}
.footer-ul li::marker{
    color:#fff;
}

    .footer-ul li a {
        color: #fff;
    }

        .footer-ul li a:hover {
            color: #F0C791;
        }

.social-icon {
    background: #F0C791;
    border-radius: 15px;
    padding: 20px 30px;
}



/* Hide element if the viewport width is 600px or less */
@media screen and (max-width: 600px) {
    .display-1 {
        font-size: 46px;
        font-family: "Montserrat", sans-serif !important;
    }

    .title-center h5 {
        font-family: "Montserrat", sans-serif !important;
        text-transform: capitalize;
        font-size: 25px !important;
    }

    .carousel-caption .title-center {
        position: relative;
        top: -227px;
    }

    .categor h2 {
        font-family: "Montserrat", sans-serif !important;
        text-transform: capitalize;
        font-size: 22px !important;
        color: #052B20;
    }

    .handi-gift h2 {
        color: #F0C791;
        font-family: "Montserrat", sans-serif !important;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 29px;
    }

    .handi-gift h2 {
        color: #F0C791;
        font-family: "Montserrat", sans-serif !important;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 28px;
    }

    .for-border-radious {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 100;
        position: static;
        background: #FDF9F0;
        padding: 0 0 50px 0;
    }

    .about-sec {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        background: #F2E5D6;
        padding: 0px 0 30px 0;
        margin: 0px 0 0 0;
        overflow: hidden;
    }


    .product-sec {
        margin: 0;
        /*display: grid;
        grid-template-columns: repeat(2, 1fr);*/
    }

    .flter-btn {
        margin: 0 0 33px 0;
    }

    .testimonial-sec .owl-carousel .owl-item img {
        display: block;
        width: 100%;
        height: 179px;
        object-fit: contain;
    }

    .testimonial-sec {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 100;
        position: relative;
        background: #FDF9F0;
        padding: 0 0 0px 0;
    }

    .testimonial-carousel .owl-dots {
        margin-top: 35px;
        height: 46px;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .owl-nav {
        display: none;
    }

    #countdown li {
        display: inline-block;
        font-size: 1.5em;
        list-style-type: none;
        padding: 0 11px 0 0;
        text-transform: uppercase;
        text-align: center;
        align-self: center;
    }

    .offer-sec {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 50px;
        z-index: 0;
        position: relative;
        background: #052B20 url(../img/palm.png);
        background-position: 0% 100%;
        background-repeat: no-repeat;
        background-size: 10%;
        padding: 180px 0 0px 0;
        margin: -150px 0 0 0;
        overflow: hidden;
    }

    .author img {
        height: 50px !important;
    }

    .blog-sec {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 100;
        position: relative;
        /*background: #FDF9F0 url(../img/bot-line.png);*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        padding: 0 0 80px 0;
        overflow: hidden;
    }

    .product-sec .card h6 {
        font-family: "Montserrat", sans-serif !important;
        color: #052B20;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 12px;
    }
}

.top-var-ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: start;
    gap: 50px;
    align-self: center;
    margin: 0 0 0 0;
    padding: 10px 0;
    font-family: "Montserrat", sans-serif !important;
    color: #052B20;
}

    .top-var-ul li a {
        color: #000;
    }

.social-icons {
    text-align: end;
    display: flex;
    justify-content: end;
    gap: 20px;
}

    .social-icons a {
        color: #000;
    }

.page-header-inner {
    /*background: #052B2080 url(../img/carousel-1-old3.png);*/
    background: #092c22 url(../img/carousel-1-old3.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #000;
    display: block;
    padding: 15px 0;
    z-index: 0;
    position: relative;
    /*border-radius: 0 0 100px 100px;*/
}

    .page-header-inner h1 {
        font-family: "Montserrat", sans-serif !important;
        font-size: 35px;
        text-align: center;
        font-weight: 600;
        color:#fff;
    }

    .page-header-inner nav {
        background: transparent !important;
    }

.breadcrumb {
    justify-content: center;
}

    .breadcrumb li a {
        font-family: "Montserrat", sans-serif !important;
        color: #fff;
    }

    .breadcrumb li {
        font-family: "Montserrat", sans-serif !important;
        color: #fff !important;
        text-align: center;
    }
.breadcrumb-item + .breadcrumb-item::before {
    float: none !important;
}


.product-dat-page .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 100%;
}

.product-dat-page .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    list-style: none;
}


.purchase-info {
    margin: 1.5rem 0;
}

.purchase-info input {
    width: 60px;
}

.purchase-info .btn:first-of-type {
    background: #256eff;
}

.purchase-info .btn {
    cursor: pointer;
    color: #fff;
}

.purchase-info .btn:last-of-type {
    background: #f6474900;
    border: 2px solid #000;
    border-radius: 0;
    width: 200px;
    padding: 12px 0;
    color: #000;
}

    .purchase-info .btn:last-of-type:hover {
        background: #000;
        border: 2px solid #000;
        border-radius: 0;
        width: 200px;
        padding: 12px 0;
        color: #fff;
    }

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}

/* .product-detail h2 {
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
} */

h2.product-title {
    text-transform: uppercase !important;
    color: #12263a !important;
    padding-bottom: 0.6rem;
    font-family: "Montserrat", sans-serif !important;
    font-size: 20px;
}

.price {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    margin: 20px 0 0 0;
}

.sale-price {
    color: #888888 !important;
    text-decoration: line-through;
}

.product-rating h2 {
    color: #0b523f !important;
    font-size: 25px;
}

.product-content table {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    width: 100% !important;
    text-align: justify;
}

.product-detail h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    font-size: 18px;
    color: #000 !important;
}

.discription {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    line-height: 25px;
}

.product-content table p {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    line-height: 25px;
}

.product-content table ul li {
    color: #000;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px;
    line-height: 25px;
}



.color-box {
    width: 20px;
    height: 20px;
    background: #ffffff;
    display: none;
}

.variabels {
    list-style-type: none;
    padding: 0;
}

    .variabels li {
        color: #000;
        font-family: "Montserrat", sans-serif !important;
    }

.product-dat-page .carousel-indicators button.thumbnail {
    width: 100px;
}

    .product-dat-page .carousel-indicators button.thumbnail:not(.active) {
        opacity: 0.7;
    }

.product-dat-page .carousel-indicators {
    position: static;
}

.for-contact-back {
    background: #4E3629;
    color: #fff;
    font-family: "Montserrat", sans-serif !important;
    padding: 80px;
}

    .for-contact-back .card {
        display: flex;
        justify-content: start;
        gap: 10px;
        background: none;
        border: none;
        flex-direction: row;
        border-radius: 0;
        border-bottom: 1px dashed #ffffff29;
        border-top: 1px dashed #ffffff21;
        margin: -1px 0 0 0;
    }

a.ic-follow {
    color: #F0C791;
    border: 1px solid #F0C791;
    width: 32px;
    height: 32px;
}

    a.ic-follow i {
        position: relative;
        top: 2px;
    }

.for-contact-back .card i {
    font-size: 35px;
    margin: 5px 0 0 0;
    color: #F0C791;
}


.form input {
    border-radius: 0px;
    height: 55px;
    font-family: "Montserrat", sans-serif !important;
}

.form textarea {
    border-radius: 0px;
    height: 120px;
    font-family: "Montserrat", sans-serif !important;
}

.btn-submit {
    font-family: "Montserrat", sans-serif !important;
    background: #052B20 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    padding: 6px 33px;
}

.form h3 {
    font-family: "Montserrat", sans-serif !important;
    color: #052B20 !important;
}

.tagline-form {
    font-family: "Montserrat", sans-serif !important;
    color: #052B20 !important;
}



@media screen and (max-width: 600px) {
    .for-contact-back {
        background: #4E3629;
        color: #fff;
        font-family: "Montserrat", sans-serif !important;
        padding: 20px;
    }
}


.desktop-menu .dropdown-menu li {
    position: relative;
}

.desktop-menu .dropdown-submenu .dropdown-menu {
    top: 0px;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: relative;
}

.desktop-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
    top: -0px !important;
    position: absolute;
}

/* arrow indicator */
.desktop-menu .dropdown-submenu > a::after {
    content: "▸";
    float: right;
    top: 0;
}




.mobile-menu .dropdown-menu li {
    position: relative;
}

.mobile-menu .dropdown-submenu .dropdown-menu {
    top: 0px;
    left: 0;
    margin-top: -1px;
    display: none;
    position: relative;
}

.mobile-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
    top: -0px !important;
    position: relative;
    left: 0 !important;
}

/* arrow indicator */
.mobile-menu .dropdown-submenu > a::after {
    content: "▸";
    float: right;
    top: 0;
}

/* MOBILE STYLE */
@media (max-width:991px) {

    .mobile-menu .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-left: 15px;
    }
}

@media (max-width:768px) {
    .heading-mt {
        margin-top: 40px;
    }

    .for-border-radious {
        padding: 0;
    }

    .box-mb {
        margin-bottom: 20px;
    }

    .offer-sec {
        border-bottom-right-radius: 0;
    }

    .footer-bg h2 {
        font-size: 19px;
    }

        .footer-bg .pt-5 {
            padding-top: 1rem !important;
        }

        .footer-bg .pb-5 {
            padding-bottom: 1rem !important;
        }

    .page-header-inner {
        border-radius: 0;
        padding: 30px 0 10px;
    }

    .back-to-top {
        display: none;
    }

    .page-header-inner h1 {
        font-family: "Montserrat", sans-serif !important;
        font-size: 35px;
        text-align: center;
    }

}





.group-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
}



.zoom-wrapper {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    width: 100%;
    display: block;
}

    .zoom-wrapper img {
        display: block;
        width: 100%;
        height: auto!important;
        transform-origin: 0 0;
        transition: transform 0.1s ease;
        pointer-events: none;
    }


.req-form h2 {
    font-family: "Montserrat", sans-serif !important;
    color: #000;
    margin:0 0 50px 0;
}

.req-form label {
    font-family: "Montserrat", sans-serif !important;
    color: #000;
}
.req-form input {
    border-radius: 0px;
    padding: 15px 10px;
    font-family: "Montserrat", sans-serif !important;
    color: #000;
}

.req-form select {
    border-radius: 0px;
    padding: 15px 10px;
    font-family: "Montserrat", sans-serif !important;
    color:#000;
}

.req-form .btn-submit {
    background: #000 !important;
    color: #fff !important;
    font-family: "Montserrat", sans-serif !important;
    border: 2px solid #000 !important;
    border-radius: 0px !important;
    width: 100%;
    padding: 15px 0;
}

    .req-form .btn-submit:hover {
        background: #00000000 !important;
        color: #000 !important;
        font-family: "Montserrat", sans-serif !important;
        border: 2px solid #000 !important;
        border-radius: 0px !important;
        width: 100%;
        padding: 15px 0;
    }












:root {
    --bg-dark: #0f2218;
    --bg-mid: #142b1f;
    --bg-card: #1a3328;
    --gold: #c9a96e;
    --gold-light: #e2c99a;
    --cream: #f5efe6;
    --white: #ffffff;
    --muted: #8aaa95;
    --border: rgba(201,169,110,0.25);
    --radius: 4px;
}

/* ── FORM SECTION ── */
.enq-form .section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/*.enq-form .form-wrapper {
    width: 100%;
    max-width: 780px;
}*/

.enq-form .form-header {
    text-align: center;
    margin-bottom: 25px;
}

    .enq-form .form-header .eyebrow {
        font-size: 11px;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
    }

    .enq-form .form-header h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        font-weight: 400;
        color: #000;
        line-height: 1.2;
    }

    .enq-form .form-header p {
        margin-top: 12px;
        font-size: 14px;
        color: #005e21;
        line-height: 1.7;
        max-width: 500px;
        margin-inline: auto;
    }

.enq-form .gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
}

/* CARD */
.enq-form .form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}

    .enq-form .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    }

/* GRID */
.enq-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

    .enq-form .form-grid .full {
        grid-column: 1 / -1;
    }

/* FIELD */
.enq-form .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .enq-form .field label {
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
    }

        .enq-form .field label .req {
            color: #e57a5a;
            margin-left: 2px;
        }

    .enq-form .field input,
    .enq-form .field textarea,
    .enq-form .field select {
        background: rgba(255,255,255,.04);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        color: var(--cream);
        font-family: 'Jost', sans-serif;
        font-size: 14px;
        padding: 14px 16px;
        outline: none;
        transition: border-color .25s, box-shadow .25s, background .25s;
        width: 100%;
    }

        .enq-form .field input::placeholder,
        .field textarea::placeholder {
            color: rgba(138,170,149,.5);
        }

    .enq-form .field textarea {
        resize: vertical;
        min-height: 120px;
    }

        .enq-form .field input:focus,
        .enq-form .field textarea:focus,
        .enq-form .field select:focus {
            border-color: var(--gold);
            background: rgba(201,169,110,.06);
            box-shadow: 0 0 0 3px rgba(201,169,110,.1);
        }

/* Phone prefix */
.enq-form .phone-wrap {
    position: relative;
}

.enq-form .phone-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--muted);
    pointer-events: none;
}

.enq-form .phone-wrap input {
    padding-left: 44px;
}

/* SUBMIT */
.enq-form .submit-row {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.enq-form .submit-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 340px;
}

    .enq-form .submit-note a {
        color: var(--gold);
        text-decoration: none;
    }

.enq-form .btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #a8823c 100%);
    color: #0a1a10;
    border: none;
    border-radius: var(--radius);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

    .enq-form .btn-submit:hover {
        opacity: .92;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(201,169,110,.35);
    }

    .enq-form .btn-submit:active {
        transform: translateY(0);
    }

    .enq-form .btn-submit svg {
        width: 14px;
        height: 14px;
    }

/* SUCCESS */
.enq-form .success-msg {
    display: none;
    text-align: center;
    padding: 48px 20px;
    animation: fadeIn .4s ease;
}

    .enq-form .success-msg.show {
        display: block;
    }

.enq-form .success-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.enq-form .success-msg h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.enq-form .success-msg p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.product-content {
    background: #eff9f5;
    padding: 40px;
    border-radius: 10px;
}



/* RESPONSIVE */
@media (max-width: 640px) {
    .enq-form .form-card {
        padding: 32px 24px;
    }
    .product-content {
        background: #eff9f5;
        padding: 20px;
        border-radius: 10px;
    }
    .enq-form .form-grid {
        grid-template-columns: 1fr;
    }

        .enq-form .form-grid .full {
            grid-column: 1;
        }


    .enq-form .submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .enq-form .btn-submit {
        justify-content: center;
    }
}

section.enq-form {
    background: #FDF9F0;
    z-index: 99999;
    position: relative;
}

.za-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    padding: 24px 0;
    font-family: 'Jost',sans-serif;
}

.za-card {
    background: #1a3328;
    border: 1px solid rgba(201,169,110,.28);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .2s,border-color .2s;
}

    .za-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,transparent,#c9a96e,transparent);
    }

    .za-card:hover {
        transform: translateY(-3px);
        border-color: rgba(201,169,110,.55);
    }

.za-icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,169,110,.4);
    background: rgba(201,169,110,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .za-icon-ring svg {
        width: 22px;
        height: 22px;
        stroke: #c9a96e;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.za-label {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 7px;
    font-weight: 500;
}

.za-title {
    
    font-size: 19px;
    font-weight: 600;
    color: #f5efe6;
    margin-bottom: 12px;
    line-height: 1.2;
}

.za-divider {
    width: 32px;
    height: 1px;
    background: rgba(201,169,110,.35);
    margin-bottom: 14px;
}

.za-line {
    font-size: 13px;
    color: #8aaa95;
    line-height: 1.75;
    font-weight: 300;
}

    .za-line strong {
        color: #e2c99a;
        font-weight: 400;
    }

.za-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9a96e;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,.3);
    padding-bottom: 2px;
    transition: border-color .2s;
}

    .za-link:hover {
        border-color: #c9a96e;
    }

    .za-link svg {
        width: 10px;
        height: 10px;
        stroke: #c9a96e;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.leather-pro h4{
    color:#000;
    font-size:16px;
    text-align:center;

}


.ac-container label {
    line-height: 30px !important;
    font-size: 18px !important;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    z-index: 20;
    display: block;
    cursor: pointer;
    color: #fff;
    background: #052b20;
    border-radius:10px;
    margin-bottom:5px;
}

.ac-container {
    width: 100%;
    margin: 10px auto 30px auto;
    text-align: left;
}

    .ac-container label:hover {
        background: #f0c791;
        color:#000;
    }

    .ac-container input:checked + label, .ac-container input:checked + label:hover {
        background: #f0c791;
        color: #000;
        line-height: 21px;
    }

        .ac-container label:hover:after, .ac-container input:checked + label:hover:after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            right: 13px;
            top: 7px;
            background: transparent url(../images/arrow_down.png) no-repeat center center;
        }

        .ac-container input:checked + label:hover:after {
            background-image: url(../images/arrow_up.png);
        }

    .ac-container input {
        display: none;
    }

    .ac-container article {
        background: rgba(255,255,255,0.5);
        margin-top: -1px;
        overflow: hidden;
        height: 0;
        position: relative;
        z-index: 10;
        -webkit-transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
        -moz-transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
        -o-transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
        -ms-transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
        transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
    }



    .ac-container input:checked ~ article.ac-small {
        height: auto;
        padding: 10px 10px 0;
        color: #000;
    }

    .ac-container input:checked ~ article.ac-medium {
        height: auto;
        padding: 10px 10px 0;
        color: #000;
    }

    .ac-container input:checked ~ article.ac-large {
        height: auto;
        padding: 10px 10px 0;
        color: #000;
    }


details {
    border: 1px solid rgba(112,112,112,0.1);
    border-radius: 4px;
    padding: 0.5em 0.5em 0;
    margin-bottom: 10px;
    cursor: pointer;
    overflow: hidden;
    color:#000;
    background: #ffffff;
}

summary {
    font-weight: 600;
    margin: -0.5em -0.5em 0;
    padding: 0.5em;
    list-style-type: "+";
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

details[open] {
    border: 1px solid transparent;
    background-color: #fff;
}

summary::marker {
    color: #0000ff;
    font-size: 1.2em;
    margin-right: 20px;
}

details:hover {
    background-color: #ededed;
}

details summary::after {
    content: "+";
    float: right;
    font-size: 1.2em;
    color: green;
}

details[open] summary::after {
    content: "-";
    float: right;
    font-size: 1.5em;
}

details::details-content {
    block-size: 0;
    transition: all 0.4s ease-in-out;
    transition-behavior: allow-discrete;
}

details[open]::details-content {
    block-size: auto;
}


.carousel-item {
    height: 85vh;
}

.banner-img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

/* DARK OVERLAY */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* TEXT CONTENT */
.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

    .banner-content h5 {
        color: #F0C791;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .banner-content h1, .banner-content h2 {
        font-size: 65px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }

.banner-btn {
    background: #F0C791;
    color: #052B20;
    padding: 14px 35px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
}

    .banner-btn:hover {
        background: #fff;
        color: #052B20;
    }

/* MOBILE */
@media(max-width:768px) {

    #carouselExampleControls,
    #carouselExampleControls .carousel-inner,
    #carouselExampleControls .carousel-item,
    .banner-img {
        height: 80vh;
    }

    .banner-content {
        left: 5%;
        right: 5%;
    }

        .banner-content h1, .banner-content h2{
            font-size: 32px;
        }

        .banner-content p {
            font-size: 14px;
            line-height: 24px;
        }
}
@media (max-width:768px) {

    .testimonial-sec {
        padding-bottom: 40px !important;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .footer-bg {
        margin: 0 !important;
        padding: 40px 0 0 0 !important;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

        .footer-bg img {
            height: 85px !important;
            object-fit: contain;
        }
}




