@import url("./variable.css");
@font-face {
    font-family: 'GTUltra';
    src: url('../fonts/GT-Ultra-Median-Light.woff2') format('woff2'),
         url('../fonts/GT-Ultra-Median-Light.woff') format('woff'),
         url('../fonts/GT-Ultra-Median-Light.ttf') format('truetype'),
         url('../fonts/GT-Ultra-Median-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-white);
    color: var(--text-dark-green);
    font-family: 'GTUltra', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    height: 100%;
}

#smooth-wrapper {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
#smooth-content {
    will-change: transform;
}

body.menu-open {
    overflow: hidden;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.container-90{
    width: var(--container-90);
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container-90{
        width: var(--container-100);
        margin: 0 auto;
        padding: 0 15px;
    }
}

.scrollBar {
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  
    &::-webkit-scrollbar {
      width: 0;
      height: 0;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    transition-timing-function: linear;
 }



/* css for banner slider */
.banner-slider{
    height: 100dvh;
    width: 100%;
    position: relative;

    .swiper,.swiper-wrapper {
        width: 100%;
        height: 100% !important;
    }

    .swiper-slide {
        width: 100%;
        height: 100%;
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        position: relative;

        &::after{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000000c2;
            opacity: 0.5;
            z-index: 1;
        }
    }
    
    .image-container img {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: -1;
        object-fit: cover;
        object-position: top;
        /* object-fit: cover;
        object-position: center; */
    }

    .text-container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        color: var(--text-white);
        width: 60%;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;

        .slide-text{
            font-size: 54px;
            font-style: normal;
            font-weight: 400;
            line-height: 136%; /* 73.44px */
            letter-spacing: 1.08px;
            color: var(--text-white);
            overflow: hidden;
        }
        .slide-text > div {
            position: relative;
        }
        .banner-split-parent {
            overflow: hidden;
        }
        .banner-split-child {
            display: inline-block;
        }
    }
    

    .progressBarContainer {
        position: absolute;
        bottom: 10%;
        width: 35%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        z-index:2;
        gap:15px;
        .item {
            text-align: center;
            cursor: pointer;
            width: 40%;

            .thumbnail-img{
                width: 100%;
                height: 95px;
                border-radius: 10px;
                transition: all 0.3s ease-in-out;
                margin-bottom: 15px;

                img{
                    width: 100%;
                    height: 100%;
                    border-radius: 10px;
                    object-fit: cover;
                    object-position: center;
                }
            }
        }

        .progressBar {
            width: 100%;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.4);
            position: relative;
          z-index:2;
            display:flex;
        }
        .inProgress {
            width: 0%;
            height: 4px;
            background-color: white;
            position: absolute;
            top: 0;
            left: 0;
        }
    }  
}

/* Css For About GZRRC Section */
.about-RKTEWT{
    color: var(--text-white);
    padding: var(--spacer-tb-100);
    text-align: left;
    background-image: url(../images/kitchen.jpg);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 2;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--section-bg-color-1);
        opacity: 0.85;
        z-index: -1;
    }

    .tag{
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;

        .marker{
            background-color: var(--li-marker1);
            border-radius: 2px;
            width: 8px;
            height: 8px;
        }

        p{
            margin: 0;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 160%;
            letter-spacing: 1.96px;
            text-transform: uppercase;
            overflow: hidden;
        }
        .about-title-ptag > div {
            position: relative;
        }
        .about-title-split-parent {
            overflow: hidden;
        }
        .about-title-split-child {
            display: inline-block;
        }

    }

    .short-info{
        color: var(--text-light-green);
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%; /* 40.8px */
        letter-spacing: 0.48px;
        margin: var(--spacer-tb-40);
        overflow: hidden;
    }

    .short-info > div {
        position: relative;
    }
    .about-short-split-parent {
        overflow: hidden;
    }
    .about-short-split-child {
        display: inline-block;
    }

    .custom-about-main-container{
        position: relative;
        height: 450px;
        padding-top: 1.5rem;

        .about-info-container{
            height: 100%;
            display: flex;
            align-items: end;

            .about-info1{
                padding-left: 15px;
                border-left: 1px solid #d9d9d947;
            }
        }
        .about-info-container2{
            display: flex;
            flex-direction: column;
            height: 100%;
            gap: 10px;

            .empty{
                height: 20%;
            }
            .about-info2{
                height: 80%;
                padding-left: 15px;
                border-left: 1px solid #d9d9d947;
            }
        }

        .about-info3{
            height: 100%;
            padding-left: 15px;
            border-left: 1px solid #d9d9d947;
        }

        .number{
            font-size: 54px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%; 
            letter-spacing: 1.08px;
            color: var(--text-grey);
        }
        .text{
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 180%; 
            color: var(--text-light-green);
        }
    }
}


/* Mission and Vision CSS */
.mission-vision{
    background-color: var(--section-bg-color-2);
    padding: var(--spacer-tb-100);
    color: var(--color2);
    position: relative;

    .tag{
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;

        .marker{
            background-color: var(--li-marker2);
            border-radius: 2px;
            width: 8px;
            height: 8px;
        }

        p{
            margin: 0;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 160%;
            letter-spacing: 1.96px;
            text-transform: uppercase;
            overflow: hidden;
        }
        p > div {
            position: relative;
        }
        .split-parent {
            overflow: hidden;
        }
        .split-child {
            display: inline-block;
        }

    }

    .main-slider-container{
        display:flex;
        align-items: center;
        gap: 30px;
        width: 100%;
        min-height: 350px;
    }

    .slider {
        position: relative;
        width: 100%;
        min-height: 350px;
    }
    
    .slide {
        position: absolute;
        top: 0%;
        left: 0%;
        right:0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 0.7s ease-out;
        cursor: pointer;
    }
    
    .slide--active {
        opacity: 1;
        z-index: 9;
    }
    
    .prev, .next {
        opacity: .3;
    }
    
    .prev {
        transform: translate(0, -13%) scale(0.95);
    }
    
    .next {
        transform: translate(0, 13%) scale(0.95);
    }
    
    .pagination {
        width: 8%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .dot {
        width: 5px;
        height: 11px;
        margin: 0 5px;
        background-color: var(--bullets1);
        border-radius: 5px;
        cursor: pointer;
        opacity: 0.3;
        transition: background-color 0.3s, height 0.3s ease-in-out;
    }
    
    .dot.active {
        opacity: 1;
        background-color: var(--bullets1);
        height: 40px;
    }

    .mission-vision-container{
        display: flex;
        align-items: center;
        gap: 30px;
        width: 100%;
        min-height: 330px;

        /* .pagination{
            width: 6%;
            min-height: 330px;
            height: 100%;
        } */
        .mision-main-container,.vision-main-container{
            background-color: var(--card-bg);
            padding: 1.5rem 3.5rem;
            display: flex;
            align-items: center;
            width: 88%;
            min-height: 350px;
            border-radius: 10px;
            gap: 30px;
            justify-content: space-between;

            .title{
                font-size: 48px;
                font-style: normal;
                font-weight: 400;
                line-height: 140%; /* 67.2px */
                letter-spacing: 0.96px;
                color: var(--color3);
            }
            .desc{
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 180%; /* 32.4px */
                color: var(--color4);
                max-width: 50%;
            }
        }
    }
}


/* Css For Highlight Section*/
.highlights{
    background-color: var(--section-bg-color-3);
    padding: var(--spacer-tb-100);
    color: var(--text-white);

    .tag{
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;

        .marker{
            background-color: var(--li-marker1);
            border-radius: 2px;
            width: 8px;
            height: 8px;
        }

        p{
            margin: 0;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 160%;
            letter-spacing: 1.96px;
            text-transform: uppercase;
            overflow: hidden;
        }

        .highlights-title-tag > div {
            position: relative;
        }
        .highlights-title-tag-split-parent {
            overflow: hidden;
        }
        .highlights-title-tag-split-child {
            display: inline-block;
        }

    }
    .title{
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 67.2px */
        letter-spacing: 0.96px;
        color: var(--text-light-cream1);
        overflow: hidden;
    }
    .highlights-title > div {
        position: relative;
    }
    .highlights-title-split-parent {
        overflow: hidden;
    }
    .highlights-title-split-child {
        display: inline-block;
    }

    .custom-tabs .tab-indicator {
        position: absolute;
        bottom: 0;
        height: 100%;
        background-color: var(--tab-active);
        border-radius: 10px;
        transition: all 0.3s ease;
        z-index: 1;
    }
    .custom-tabs .nav-link {
        position: relative;
        background: none;
        border: none;
        padding: 12px 20px;
        font-weight: 600;
        cursor: pointer;
        z-index: 2; /* Above the indicator */
    }

    .custom-tabs{
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: var(--tab-bg);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%; /* 22.4px */
        border: none;
        width: fit-content;

        .nav-link{
            color: var(--text-light-cream1);
            text-decoration: none;
            border-radius: 10px;
            padding: 15px;
        }

        .active{
            &.nav-link{
                color: var(--color3);
            }
            /* background-color: var(--tab-active); */
        }
    }

    .card-container{
        display: flex;
        align-items: center;
        gap: 30px;
        width: 100%;
        height: 100%;
        padding: 20px 30px;
        border-radius: 10px;
        background-color: var(--card-bg1);
        min-height: 350px;
    
        .card-info{
            display: flex;
            flex-direction: column;
            width: 70%;
            height: max-content;
            min-height: 270px;
            gap: 4rem;
            
            .card-title{
                font-size: 30px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%; /* 45px */
                letter-spacing: 0.6px;
                color: var(--color3);
            }
            .card-desc{
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 180%; /* 32.4px */
                color: var(--color4);
            }
        }
        .image-contain{
            border-radius: 10px;
            position: relative;
            height: 300px;
            width: 42%;
            /* height: 300px; */
    
            img{
                width: 100%;
                height: 100%;
                border-radius: 10px;
                object-fit: cover;
                object-position: center;
            }
    
            /* &::before{
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--grey-bg);
                opacity: 0.1;
                z-index: -1;
            } */
            
        }
        
    }
}

/* Css For Team RKTEWT Section*/
.team-RKTEWT{
    background-color: var(--section-bg-color-2);
    padding: var(--spacer-tb-100);
    color: var(--color3);

    .tag{
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;
        justify-content: center;

        .marker{
            background-color: var(--li-marker2);
            border-radius: 2px;
            width: 8px;
            height: 8px;
        }

        p{
            margin: 0;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 160%;
            letter-spacing: 1.96px;
            text-transform: uppercase;
            color: var(--color2);
            overflow: hidden;
        }
        .team-p-tag > div {
            position: relative;
        }
        .team-tag-split-parent {
            overflow: hidden;
        }
        .team-tag-split-child {
            display: inline-block;
        }

    }

    .team-info{
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%; /* 40.8px */
        letter-spacing: 0.48px;
        margin-top: 25px;
    }

    .team-info > div {
        position: relative;
    }
    .team-info-split-parent {
        overflow: hidden;
    }
    .team-info-split-child {
        display: inline-block;
    }

    .custom-team-slider-conatiner{
        .swiper-slide{
            width: fit-content !important;
        }
        .main-container{
            min-height: 390px;
            width: 400px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #D9D9D9;
            border-radius: 10px;
            /* padding: 20px; */

            img{
                width: 100%;
                min-height: 390px;
                border-radius: 10px;
                object-fit: cover;
                object-position: center;
            }
        }

        .names{
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            height: auto;
            justify-content: start;
            margin-top: 8px;

            .marker{
                background-color: var(--li-marker2);
                border-radius: 2px;
                width: 8px;
                height: 8px;
            }

            p{
                margin: 0;
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: 160%;
                letter-spacing: 1.96px;
                text-transform: uppercase;
                color: var(--color4);
            }
            
        }

    }
}


/* Contact us */
.contact-us{
    position: relative;
    width: 100%;
    height: 100%;
    padding: var(--spacer-tb-120);
    display: flex;
    align-items: center;

    .background-image{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;

        img{
            height: 100%;
            width: 100%;
        }
    }

    .custom-contact-form-container{
        @media screen and (min-width: 1024px) {
            margin-top: 6rem; 
        }
    }

    .get-in-touch{
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 67.2px */
        letter-spacing: 0.96px;
        color: var(--text-white);
    }

    .contact-info-container{
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        color: var(--text-white);

        .contact-details{
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
        }

        .text{
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: 160%; /* 22.4px */
            letter-spacing: 1.96px;
            text-transform: uppercase;
            margin-bottom: 0px;
        }

        .number,.email,.address{
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 170%; /* 40.8px */
            letter-spacing: 0.48px;
            margin-bottom: 0;
        }
    }

    .contact-form{
        padding: 80px 48px;
        border-radius: 16px;
        background: var(--bg-white);

        .form-control{
            border: none;
            border-bottom: 1px solid var(--color4);
            border-radius: 0;
        }

        .send-btn{
            display: flex;
            gap: 10px;
            background-color: var(--color3);
            padding: 10px 20px;
            /* justify-content: center; */
            align-items: center;
            width: fit-content;
            border-radius: 6px;

            .btn{
                border: none;
                background-color: transparent;
                padding: 0;
                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: 24px; /* 171.429% */
                letter-spacing: 1.4px;
                text-transform: uppercase;
            }
        }
    }

    .form-control:focus{
        box-shadow: none;
    }
}

/* Privacy Policy */
.privacy-policy {
    position: relative;
    padding: var(--spacer-tb-120);
    width: 100%;
    height: 100%;
    background-color: var(--section-bg-color-2);
}

.privacy-title{
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 75.6px */
    letter-spacing: 1.08px;
    margin-top: 60px;
    margin-bottom: 60px;
    color: var(--color3);
}
  
  .scrollspy-nav {
    width: 250px;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: transparent;
    border-radius: 8px;
    padding: 1rem;
  }
  
  .scrollspy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .scrollspy-nav li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  
  .scrollspy-nav li.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color2);
    border-radius: 2px;
  }
  
  .scrollspy-nav li a {
    text-decoration: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--color5);
    padding: 20px 0;
    display: block;
    transition: color 0.3s ease;
    border-bottom: 1px solid #9d644857;
  }
  
  .scrollspy-nav li.active a {
    /* font-weight: bold; */
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
    color: var(--color2);
  }
  
  .policy-content {
    flex: 1;
  }

  .title{
    color: var(--color3);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 45px */
    letter-spacing: 0.6px;
    margin-bottom: 20px;
  }

  .info{
    color: var(--color4);
    font-size: var(--font-size-body-m, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.32px;
    margin-bottom: 8px;
  }
  
  .policy-section {
    margin-bottom: 60px;
  }

.privac-li{
    color: var(--color4);
    font-size: var(--font-size-body-m, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.32px;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {

     .tag {
        p {
            font-size: 14px !important;
        }
    }

    .banner-slider{
        height: 100dvh;

        .swiper-slide {
            width: 100%;
            height: inherit;

        }


        .swiper-wrapper {
            height: inherit !important;
        }

        .image-container {
            img{
                object-position: center; 
            }
        }

        .text-container{
            width: 100%;
            .slide-text{
                font-size: 36px;
                font-style: normal;
                font-weight: 400;
                line-height: 136%; /* 49.44px */
                letter-spacing: 1.08px;
            }
        }

        .progressBarContainer{
            width: 90%;
            gap: 10px;

            .item{
                width: 30%;
                .thumbnail-img{
                    height: 70px;
                }
            }
        }
    }

    .about-RKTEWT{
        padding: var(--spacer-tb-40);
        .short-info{
            font-size: 18px;
            line-height: 170%; /* 30.6px */
        }

        .custom-about-main-container{
            height: 100%;
            .row{
                margin: 0 auto;
                row-gap: 15px;
            }
            .about-info-container{
                /* margin-bottom: 20px; */
                .about-info1{
                    border-bottom: 1px solid #d9d9d947;
                    border-left: 0;
                    padding-left: 0;
                    width: 100%;
                    height: 100%;

                    .text{
                        margin-bottom: 15px;
                    }
                }
            }
            .about-info-container2{
                margin-bottom: 15px;
                flex-direction: row;
                .empty{
                    height: 100%;
                    width: 15%;
                }
                .about-info2{
                    border-bottom: 1px solid #d9d9d947;
                    border-left: 0;
                    padding-left: 0;
                    /* padding-bottom: 25px; */
                    width: 100%;
                    height: 100%;
                }
            }
            .about-info-container3{
                display: flex;
                height: 100%;
                width:100%;

                .empty{
                    height: 100%;
                    width: 30%;
                }
            }
            .about-info3{
                border-bottom: 1px solid #d9d9d947;
                border-left: 0;
                padding-left: 0;
                width: 86%;
                height: 100%;
            }

            .number{
                font-size: 36px;
                line-height: 140%; /* 50.4px */
            }
            .text{
                font-size: 16px;
                line-height: 26px; /* 32.4px */
            }   
        }
    }

    .mission-vision{
        padding: var(--spacer-tb-40);
        .container-90{
            .row{
                margin-bottom: 20px !important;
            }
        }
        .container{
            .row{
                width: 100%;
                margin: 0 auto;
                margin-top: 15px !important;
            }
        }
        .custom-tabs{
            button{
                padding: 10px 20px;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 140%; /* 19.6px */
                letter-spacing: 0.4px;
                color: #746623;
            }
            button.active{
                background-color: #746623;
                color: #F8F2E7;
                border-radius: 8px;
            }
        }

        .mission-vision-container{
            .mision-main-container, .vision-main-container{
                flex-direction: column;
                width: 100%;
                padding: 35px 25px;
                min-height: 310px;
                justify-content: unset;
                gap: 20px;

                .title{
                    width: 100%;
                    font-size: 34px;
                    line-height: 140%; /* 50.4px */
                }

                .vision-text{
                    max-width: 100%;
                    padding-top: 0px;
                    height: 315px;
                }
                .mission-text{
                    max-width: 100%;
                    height: 100%;
                }

                .desc{
                    font-size: 16px;
                    width: 100%;
                    max-width: 100%;
                    line-height: 26px; /* 32.4px */
                }
            }
        }

    }

    .highlights{
        padding: var(--spacer-tb-40);
        .title{
            font-size: 28px;
            line-height: 140%; /* 47.6px */
        }
        .custom-tabs{
            button{
                padding: 10px 20px;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 140%; /* 19.6px */
                letter-spacing: 0.4px;
                color: var(--text-light-cream1);
            }
            button.active{
                background-color: #714833;
                color: #D9C4AC;
                border-radius: 8px;
            }
        }

        .swiper-main-container{
            padding: 0 15px;
        }

        .card-container{
            flex-direction: column-reverse;
            width: 100%;
            height: auto;
            padding: 20px 15px;
            gap: 20px;
            min-height: 300px;

            .image-contain{
                height: 250px;
                width: 100%;
            }


            .card-info{
                width: 100%;
                gap:1rem;

                .card-title{
                    font-size: 24px;
                    line-height: 150%; /* 36px */
                }
                .card-desc{
                    font-size: 16px;
                    line-height: 26px; /* 32.4px */
                }
            }
        }

        .form-select{
            color: #023A2C;
            background-color: #F8F2E7;
            width: 100%;
            padding-top: 10px;
            padding-bottom: 12px;

            option {
                background-color: #F8F2E7; 
                color: #023A2C;
            }
            
        }
        .form-select:focus{
            box-shadow: none;
            border-color:#023A2C;
            border: none;
        }
    }

    .team-RKTEWT{
        padding: var(--spacer-tb-40);
        .tag{
            justify-content: flex-start;
        }

        .team-info{
            font-size: 16px;
            font-weight: 400;
            margin-top: 15px;
            text-align: left;
        }

        .custom-team-slider-conatiner{
            .main-container{
                width: 100%;
            }
        }

        
    }

    .contact-us{
        .background-image{
            height: 290px;
        }
        .get-in-touch{
            font-size: 36px;
            line-height: 110%;
            width: 80%;
        }
        .contact-info-container{
            margin-bottom: 1.5rem;
        }
        .contact-form{
            padding: 25px 20px 35px;
            background: #FCF7E9;
            margin-bottom: 3rem;

            .form-control{
                background: transparent;
                
            }
        }
        .contact-details{
            display: flex;
            flex-direction: column;
            gap: 22px;

            .text{
                color: #746623;
                font-size: 20px;
                width: 85%;
                text-transform: uppercase;
                margin-bottom: 0px;
            }
            .number,.email,.address{
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 170%; /* 30.6px */
                letter-spacing: 0.32px;
                margin-bottom: 0;
            }
        }
    }

    .privacy-policy{
        padding: 120px 0 30px;
        .container{
            .row{
                width: 100%;
                margin: 0 auto;
            }
        }
        .privacy-title{
            font-size: 40px;
            line-height: 140%; /* 50.4px */
            margin-bottom: 20px;
            margin-top: 20px;
        }

        .title{
            font-size: 24px;
            line-height: 110%; /* 33.6px */
            margin-bottom: 10px;
        }
    }
}


  