.mobile_slider{
    display: none;
}

.desktop_slider > .swiper > .swiper-wrapper > .swiper-slide{
    width: 100%;
    /* height: 430px; */
    object-fit: cover;
    object-position: center top;
}

.desktop_slider > .swiper > .swiper-wrapper > .swiper-slide > img{
    width: 100%;
      /* height: 430px; */
    object-fit: cover;
    object-position: center top;


}

/* 
.mobile_slider > .swiper > .swiper-wrapper > .swiper-slide{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;

}

.mobile_slider > .swiper > .swiper-wrapper > .swiper-slide > img{
    width: 100%;
      height: 500px;
    object-fit: cover;
    object-position: center top;


} */


/* Pagination */

.main-banner .swiper-pagination {
    bottom: 20px !important;
    background-color: rgba(11, 11, 11, 0.438);
    left: 0px !important;
    right: 0px !important;
    text-align: center !important;
    width: 130px !important;
    margin: auto;
    border-radius: 100px;
    
}

.main-banner .swiper-pagination-bullet {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: var(--color-white);
    opacity: 0.5;
    border-radius: 50px;
    overflow: hidden;
    transition: width 0.3s ease;
    margin: 0px 8px 0px 0px !important; 
}

.main-banner .swiper-pagination-bullet-active {
    width: 45px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.733);
}

.main-banner .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    animation: bannerProgress 5s linear forwards;
}

@keyframes bannerProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


.main-banner .swiper-button-prev,
.main-banner .swiper-button-next {
    width: 50px;
    height: 50px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.671);
    color: var(--color-white);
    transition: 0.3s ease;
}

.main-banner .swiper-button-prev::after,
.main-banner .swiper-button-next::after {
    display: none;
}

.main-banner .swiper-button-prev i,
.main-banner .swiper-button-next i {
    font-size: 16px;
}

.main-banner .swiper-button-prev:hover,
.main-banner .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.842);
    color: var(--color-dark);
}

.main-banner .swiper-button-prev {
    left: 30px;
}

.main-banner .swiper-button-next {
    right: 30px;
}
/* end css slider */


/* css start */
.build_better_section{
     padding-block-start: 70px;
    padding-block-end: 40px;
}

.build_data_div > h1{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 20px;
}

.build_data_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    max-width: 660px;
}

.explore_btn_div{
    margin-top: 30px;
}

.explore_btn_div > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.explore_btn_div > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.explore_btn_div > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}

/* css end */


/* css start */
.products_section{
    padding-block-start: 20px;
    padding-block-end: 50px;
}

.products_section > .container {
    position: relative;
    background: radial-gradient(91% 45% at 6% 0, var(--color-white) 0%, #ebf1ff 100%);
    border-radius: 8px;
   padding: 50px 0px 20px 0px;
    overflow: hidden;
    border: 2px solid var(--border-color3);
}

.products_section > .container > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.products_section > .container > *:not(svg) {
    position: relative;
    z-index: 1;
}

.products_title_div{
    text-align: center;
    margin-bottom: 50px;
}

.products_title_div > h2{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.products_title_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 300;
    max-width: 500px;
    margin: auto;
}

.proslider_main_div{
    background-color: var(--color-white);
    border: 1px solid var(--border-color4);
    border-radius: 6px;
    padding: 2px;
}

.proslider_img_div{
    border-radius: 6px;
    width: 100%;
}

.proslider_img_div > img{
   border: 1px solid var(--border-color3);
    border-radius: 6px;  
}

.proslider_content_data{
    padding: 12px;
}

.proslider_content_data > h3{
    font-size: 19px;
    text-transform: capitalize;
    color: var(--color-dark2);
    font-weight: 800;
    margin-bottom: 5px;
}

.proslider_content_data > p{
        color: var(--body-text-color);
    font-size: 10px;
    letter-spacing: .4px;
    font-weight: 400;
    margin-bottom: 0px !important;
}


.proslider_btn{
    margin-top: 20px;
}

.proslider_btn > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.proslider_btn > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 5px;
}

.proslider_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}

.products_section .swiper{
    padding-bottom: 130px;
}

.mySwiper {
    width: 100%;
    overflow: visible;
}

.mySwiper .swiper-wrapper {
    align-items: center;
}

.mySwiper .swiper-slide {
    height: auto;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.mySwiper .swiper-slide-active {
    opacity: 1;
    z-index: 5;
}


/* Pagination */
.products_section .swiper-button-prev,
.products_section .swiper-button-next {
    position: absolute;
    top: auto;
    bottom: 40px;
    width: 50px;
    height: 50px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    transition: 0.3s ease;
}

.products_section .swiper-button-prev::after,
.products_section .swiper-button-next::after {
    display: none;
}

.products_section .swiper-button-prev i,
.products_section .swiper-button-next i {
    font-size: 16px;
}

.products_section .swiper-button-prev:hover,
.products_section .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.842);
    color: var(--color-dark);
}

.products_section .swiper-button-prev {
    left: 50%;
    transform: translateX(-55px);
}

.products_section .swiper-button-next {
    right: auto;
    left: 50%;
    transform: translateX(5px);
}
    /* css end */

    /* css start */
    .content_counter_section{
        padding: 30px 0px 50px 0px;
    }

    .content_counter_main_div{
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
.content_counter_main_div {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
}

.experience_div {
    height: fit-content;
    justify-self: start;
    align-self: start;
    background: var(--gradient-color);
    padding: 23px 65px 23px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
}

.experience_div > h3{
    color: var(--color-white);
    font-size: 55px;
    font-weight: 800;
}

.experience_div > p{
    color: var(--color-white);
    font-size: 11px;
    line-height: 20px;
}

.experience_div > p > span{
    display: block;
}

.content_div_box > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .8px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

.counter_box_main_div{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; 
    margin-top: 35px;
}


.counter_box_main_div2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; 
    margin-top: 35px;
}

.counter_item_div > .number_count_div{
    color:var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px !important;
    line-height: 36px;
    letter-spacing: .5px;
    
}

.counter_item_div > .number_count_div > span{
    color: var(--color-dark);
    display: inline-block;
}

.counter_item_div > p{
   color:var(--body-text-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px !important; 
}


/* css start */
.aboutus_page_section{
    padding-block-start: 20px;
    padding-block-end: 50px;
}

.aboutus_page_section > .container {
    position: relative;
    background: radial-gradient(91% 45% at 6% 0, var(--color-white) 0%, var(--color-white) 100%);
    border-radius: 8px;
   padding: 40px 30px 10px 30px;
    overflow: hidden;
    border: 2px solid var(--border-color3);
}

.aboutus_page_section > .container > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.aboutus_page_section > .container > *:not(svg) {
    position: relative;
    z-index: 1;
}

.about_data_pg_div{
    margin-bottom: 50px;
    max-width: 800px;
}

.about_data_pg_div > h2{
    color: var(--theme-color6);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about_data_pg_div > h3{
    color: var(--theme-color6);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about_data_pg_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 300;
    margin-bottom: 25px;
  
}

    /* css end */

    /* start */
    .bhag_section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bhag_main {
    position: relative;
    overflow: hidden;
    background: var(--theme-color66);
    border: 4px solid var(--border-color-white2);
    border-radius: 12px;
    padding: 70px 20px
}

/* LEFT CONTENT */
.bhag_content {
    position: relative;
    z-index: 3;
    width: 55%;
}

/* Highlight Box */
.bhag_highlight_box {
    width: 100%;
    max-width: 980px;
    padding: 25px 22px 24px;
    border: 1px solid var(--border-color-white2);
    border-radius: 6px;
    background: #c4c4c440;
    color: var(--color-white);
}

/* Small Heading */
.bhag_highlight_box > p {
    margin: 0 0 5px;
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.3;
    font-weight: var(--body-font-weight);

    color: var(--color-white);
}

/* Main Number */
.bhag_highlight_box > h2 {
    margin: 20px 0px;
    font-family: var(--body-font);
    font-size: 65px;
    line-height: 65px;
    font-weight: 700;
    letter-spacing: .9px;
    color: var(--theme-color8);
}

.bhag_highlight_box > h2 > span{
    display: block;
}

/* Bottom Text */
.bhag_bottom_text {
    margin: 30px 0 0;

    font-family: var(--body-font);
    font-size: 25px;
    line-height: 1.3;

    color: var(--color-white);
}

/* B.H.A.G */
.bhag_goal {
    margin-top: 30px;
}

.bhag_goal h3 {
    margin: 0 0 3px;
    font-family: var(--body-font);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--theme-color8);
}

.bhag_goal p {
    margin: 0;

    font-family: var(--body-font);
    font-size: 14px;

    color: var(--theme-color8);
}

/* GLOBE */
.bhag_globe {
    position: absolute;
    right: -10px;
    bottom: -200px;
    width: 42%;
    max-width: 700px;

    z-index: 1;
}
.bhag_globe img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    display: block;

    background: transparent;

    user-select: none;
    -webkit-user-drag: none;

    /* Infinite 360Â° rotation */
    animation: globeRotate 218s linear infinite;
}


/* 360 Degree Rotation */
@keyframes globeRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

    /* end */


    /* start */
    .mission_vision_section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mission_vision_card {
    position: relative;
    height: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(225, 118, 57, 0.10),
            transparent 35%
        ),
        var(--color-white);
    overflow: hidden;
    transition: var(--transition2);
}


/* Title */
.mission_vision_title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

/* Icon */
.mission_vision_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme-color);
    font-size: 48px;
}

.mission_vision_icon i {
    line-height: 1;
}

/* Heading */
.mission_vision_title h3 {
    
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

/* Content */
.mission_vision_card p {
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.65;
    font-weight: var(--body-font-weight);
}


    /* end */


    /* start */
    .core_values_section {
    padding-top: 30px;
    padding-bottom: 60px;
}

.core_values_intro {
    position: relative;
    z-index: 10;
    padding-right: 5px;
    margin-bottom: 30px;
}

.core_values_intro > h2 {
    margin: 0 0 15px;
    color: var(--color-dark2);
    font-family: var(--body-font);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.core_values_intro p {
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.55;
}


.core_values_marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.core_values_marquee::before,
.core_values_marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.core_values_marquee::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}

.core_values_marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}


.core_values_box_div_dt {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: max-content;
    animation: coreValuesScroll 28s linear infinite;
}

.core_value_item_div {
    flex: 0 0 200px;
    width: 200px;
    padding: 0 15px;
}


.core_value_icon {
    height: 45px;
    display: flex;
    align-items: center;
    color: var(--theme-color6);
    font-size: 40px;
}


.core_value_item_div > h3 {
    margin: 15px 0px 15px 0px;
    color: var(--theme-color6);
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: .7px;
}


.core_value_line {
    width: 100%;
    height: 1px;
    margin-bottom: 7px;
    background: var(--theme-color6);
}



.core_value_item_div > p {
    margin: 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.55;
}

.core_values_marquee:hover .core_values_box_div_dt {
    animation-duration: 60s;
}



/* Animation */

@keyframes coreValuesScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


    /* end */

    
    /* css start */
    .qtyfeels_finish_section{
        width: 100%;
        position: relative;
        overflow: hidden;
       
    }

.qtyfeels_finish_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;

    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
        to right,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

    .qtyfeels_finish_image_div{
       width: 100%;
        position: relative;
        overflow: hidden;        
    }

    .qtyfeels_finish_image_div > img{
        width: 100%;
        display: block;
    }

    .qtyfeels_content_div_overlay{
        position: absolute;
        top: 100px;
        max-width: 500px;
        left: 0px;
        z-index: 1;
    }

     .qtyfeels_content_div_overlay > .qtyfeels_content_data_div{
        margin-bottom: 30px;
         max-width: 560px;
     }

        .qtyfeels_content_div_overlay > .qtyfeels_content_data_div > h3{
     color: var(--color-dark2);
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 18px;
    line-height: 45px;
        } 

        .qtyfeels_content_div_overlay > .qtyfeels_content_data_div > p{
            color: var(--body-text-color);
    font-size: 15px;
    letter-spacing: .4px;
    font-weight: 400;   
    line-height: 25px;
        }

        .divider_bottom{
            width: 50%;
    height: 6px;
    position: relative;
    overflow: visible;
    background-color: var(--theme-color);
    margin-top: 10px;
        }

        
.qtyfeels_explore_btn_div{
    margin-top: 10px;
}

.qtyfeels_explore_btn_div > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.qtyfeels_explore_btn_div > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.qtyfeels_explore_btn_div > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}

    /* css end */


    /* css start */
    .wall_finish_section{
        width: 100%;
        position: relative;
        overflow: hidden;
           }

    .wall_finish_image_div{
       width: 100%;
        position: relative;
        overflow: hidden;        
    }

    .wall_finish_image_div > img{
        width: 100%;
        display: block;
    }

    .content_div_overlay{
        position: absolute;
        top: 100px;
    }

     .content_div_overlay > .content_data_div{
        margin-bottom: 56px;
         max-width: 560px;
     }

        .content_div_overlay > .content_data_div > h3{
color: var(--color-dark2);
    font-weight: 900;
    font-size: 35px;
    margin-bottom: 18px;
        } 

        .content_div_overlay > .content_data_div > p{
            color: var(--body-text-color);
    font-size: 23px;
    letter-spacing: .4px;
    font-weight: 400;
   
    line-height: 35px;
        }

        .divider_bottom{
            width: 50%;
    height: 6px;
    position: relative;
    overflow: visible;
    background-color: var(--theme-color);
    margin-top: 10px;
        }

    /* css end */

/* start */   
.product_slider_section {
    padding-top: 55px;
    padding-bottom: 55px;
    background-color: var(--theme-color8);
    border-bottom: 1px solid var(--border-color);
}

.product_slide_title_div{
    margin-bottom: 27px;
}

.product_slide_title_div > h3{
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .7px;
}

.product_slider_section .productSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color4);
    border-radius: 10px;
    background: var(--color-white);
}

.product_slider_section .swiper-slide {
    height: 100%;
}

.product_slide_main_box {
    height: 100%;
    display: grid;
    grid-template-columns: 52% 48%;
}


.product_slide_content {
    padding: 25px 20px;
    background: var(--color-white);
}

.product_slide_content > h4 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-dark2);
    letter-spacing: .7px;
}

.product_slide_content > p {
    max-width: 400px;
    margin-bottom: 0px !important;
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text-color);
    letter-spacing: .5px;
}




.product_slide_buttons{
    margin-top: 15px;
}

.product_slide_buttons > a{
    display: inline-block;
}

.product_slide_buttons > a:nth-child(1){
    background-color: var(--color-white);
    padding: 0px 0px 0px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: .4px;
}


.product_slide_buttons > a:nth-child(2){
    background-color: var(--color-white);
    padding: 5px 10px 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: .4px;
}


.product_slide_buttons > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 9px 12px 9px 12px;
    margin: 0px 0px 0px 10px;
}

.product_slide_buttons > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}


/* =========================================
   FEATURES
========================================= */

.products_slide_features {
    max-width: 700px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.products_feature_box {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color3);
    border-radius: 5px;
    background:var(--color-gray3);
}

.products_feature_box > .feature_icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
}

.products_feature_box > .feature_icon > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products_feature_box h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: .7px;
}


/* image css */
.product_image_area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-left: 1px solid var(--border-color3);
    background: var(--color-gray4);
}

.product_image_area > img {
    width: 100%;
    height:100%;
    object-fit: contain;
}


/* =========================================
   WEIGHT BOX
========================================= */

.product_weight_box {
    position: absolute;
    left: 10px;
    bottom: 10px;
    min-width: 200px;
    padding: 5px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color3);
    border-radius: 5px;
    background-color: var(--color-white);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-dark2);
}

.product_weight_box > .weight-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 20px;
    border-radius: 5px;
}

.product_weight_box > .weight_data{
    font-size: 12px;
    font-weight: 400;
}


/*  pagination*/
.slider-navigation {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 20px;
    width: 72px;
    transform: translateY(-50%);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color4);
    border-radius: 40px;
    background-color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


.slider-arrow {
    width: 45px;
    height: 42px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-dark);
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    
}

.slider-arrow:hover {
    color: var(--theme-color6);
}

.slider-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 10px 0;
    height: 200px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 5px;
}

/* Chrome / Edge scrollbar */
.slider-numbers::-webkit-scrollbar {
    width: 0px;
}

.slider-numbers::-webkit-scrollbar-track {
    background: transparent;
}

.slider-numbers::-webkit-scrollbar-thumb {
    background: var(--border-color4);
    border-radius: 0px;
}


/* Number */
.slider-number {
    position: relative;
    width: 45px;
    height: 45px;
    min-height: 45px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-white);
    border-radius: 10px;
    background-color: var(--color-gray3);
    color: var(--border-color4);

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
    overflow: visible;
    flex-shrink: 0;
}

.slider-number span {
    position: relative;
    z-index: 3;
}


/* Border progress */
@property --progress {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.slider-number i {
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-radius: 12px;

    background:
        linear-gradient(var(--color-gray3), var(--color-gray3)) padding-box,
        conic-gradient(
            from 3600deg,
            var(--theme-color6) var(--progress),
            transparent 0
        ) border-box;

    pointer-events: none;
    z-index: 1;

    --progress: 0deg;
}

.slider-number.active i {
    animation: productSliderProgress 5s linear forwards;
}

.slider-number.active span{
    color: var(--color-dark);

}

@keyframes productSliderProgress {
    from {
        --progress: 0deg;
    }

    to {
        --progress: 360deg;
    }
}


.productSwiper .swiper-slide-active .product_slide_main_box {
    animation: productZoomIn 800ms ease-out;
}

@keyframes productZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
    /* end */


    /* css start */
.surface_solution_section {
    padding: 70px 0;
    background-color: var(--color-white);
}

.why_choose_title{
    margin-bottom: 30px;
    text-align: center;
}

.why_choose_title > h4{
    color: var(--color-dark);
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: center;
}

.why_choose_title > p{
    color: var(--body-text-color);
    font-size: 15px;
    letter-spacing: .7px;
    font-weight: 300;
    margin: auto;
    max-width: 400px;
}

.surface_solution_image {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid var(--border-color3);
    border-radius: 16px;
    background-color: var(--color-gray3);
    margin-bottom: 20px;
}

.solution_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.surface_solution_section .img_1 {
    opacity: 1;
    transform: scale(1);
}

.surface_solution_section:has(#solution1:checked) .img_1 {
    opacity: 1;
    transform: scale(1);
}

.surface_solution_section:has(#solution1:checked) .img_2,
.surface_solution_section:has(#solution1:checked) .img_3 {
    opacity: 0;
}


.surface_solution_section:has(#solution2:checked) .img_1,
.surface_solution_section:has(#solution2:checked) .img_3 {
    opacity: 0;
}

.surface_solution_section:has(#solution2:checked) .img_2{
    opacity: 1;
    transform: scale(1);
}


.surface_solution_section:has(#solution3:checked) .img_1,
.surface_solution_section:has(#solution3:checked) .img_2 {
    opacity: 0;
}

.surface_solution_section:has(#solution3:checked) .img_3 {
    opacity: 1;
    transform: scale(1);
}


.solution_item {
    border-bottom: 1px solid var(--border-color3);
    padding: 10px 20px;
}


.solution_item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.solution_title {
    width: 100%;
    padding: 25px 0px 14px 0px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease, padding 0.3s ease;
}



.solution_title i {
    flex-shrink: 0;
     font-size: 20px;
    color: var(--color-dark);
    transition: 0.3s ease;
}

.solution_title span{
    color: var(--color-dark);
    font-size: 22px !important;
    font-weight: 500;
    letter-spacing: .8px;
}

.surface_solution_section:has(#solution1:checked)
.solution_item:nth-child(1)
.solution_title span,

.surface_solution_section:has(#solution2:checked)
.solution_item:nth-child(2)
.solution_title span,

.surface_solution_section:has(#solution3:checked)
.solution_item:nth-child(3)
.solution_title span{
     color: var(--theme-color6) !important;
     font-size: 20px;
}

.surface_solution_section:has(#solution1:checked)
.solution_item:nth-child(1)
.solution_title i,

.surface_solution_section:has(#solution2:checked)
.solution_item:nth-child(2)
.solution_title i,

.surface_solution_section:has(#solution3:checked)
.solution_item:nth-child(3)
.solution_title i {
    color: var(--theme-color6);
     font-size: 20px;
}

.solution_content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

.solution_content > p {
    margin-bottom: 0px !important;
    padding: 0 0 15px;
    font-size: 15px;
    line-height: 27px;
    color: var(--body-text-color);
}

#solution1:checked ~ .solution_content,
#solution2:checked ~ .solution_content,
#solution3:checked ~ .solution_content {
    max-height: 300px;
    opacity: 1;
}

.surface_solution_section:has(#solution1:checked)
.solution_item:nth-child(1) {
    background-color: #f3f8fc;
    border: 1px solid var(--border-color3);
    border-radius: 5px;
    padding: 10px 20px;
    
    
}

.surface_solution_section:has(#solution2:checked)
.solution_item:nth-child(2) {
    background-color: #f3f8fc;
    border: 1px solid var(--border-color3);
    border-radius: 5px;
    padding: 10px 20px;
}

.surface_solution_section:has(#solution3:checked)
.solution_item:nth-child(3) {
   background-color: #f3f8fc;
    border: 1px solid var(--border-color3);
    border-radius: 5px;
    padding: 10px 20px;
}


.solution_title:hover {
    color: var(--color-dark);
}

.solution_title:hover i {
    color: var(--color-dark);
}


    /* css end */


    /* start */
    .videos_section{
        padding: 30px 0px 80px 0px;
    }


.video_title_div{
    max-width: 500px;
    margin-bottom: 35px;
}
   
.video_title_div > h4{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 40px;
}

.video_title_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    max-width: 660px;
}


    /* end */
.video_box_item_main {
    width: 100%;
}

.video-card {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--color-dark);
}

.video-card iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 0;
    transform: translate(-50%, -50%) scale(1.60);
    z-index: 0;
    object-position: top;
}


.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.08) 35%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.92) 100%
    );
}


/* Navigation buttons */
.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px !important;
    background: rgba(40, 40, 40, 0.55);
    color: var(--color-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-nav:hover {
    background: rgba(30, 30, 30, 0.85);
}

.video-prev {
    left: 35%;
}

.video-next {
    right: 35%;
}


/* Bottom Content */
.video-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;
}

.video-content > h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .8px;
    text-transform: capitalize;
}

.video-content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: capitalize;
}
/* end */



    /* css start */
    .join_finish_section{
        width: 100%;
        position: relative;
        overflow: hidden;
       
        /* padding: 300px 0px;
        background-repeat: no-repeat;
        background-position: right center; */
    }

    .join_finish_image_div{
       width: 100%;
        position: relative;
        overflow: hidden;        
    }

    .join_finish_image_div > img{
        width: 100%;
        display: block;
    }

    .join_content_div_overlay{
        position: absolute;
        top: 100px;
    }

     .join_content_div_overlay > .join_content_data_div{
        margin-bottom: 56px;
         max-width: 440px;
     }

       
        .join_content_div_overlay > .join_content_data_div > h4{
color: var(--color-dark2);
    font-weight: 900;
    font-size: 35px;
    margin-bottom: 18px;
    line-height: 48px;
    text-transform: capitalize;
        } 

        .join_content_div_overlay > .join_content_data_div > p{
            color: var(--body-text-color);
    font-size: 23px;
    letter-spacing: .4px;
    font-weight: 400;
   
    line-height: 35px;
        }

        .join_divider_bottom{
            width: 50%;
    height: 6px;
    position: relative;
    overflow: visible;
    background-color: var(--theme-color);
    margin-top: 10px;
        }

    /* css end */


    /* css start */

    .articals_section{
        padding: 70px 0px 70px 0px;
    }
    
.articals_title_div{
    max-width: 650px;
    margin-bottom: 35px;
}
   
.articals_title_div > h4{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 20px;
    line-height: 40px;
}

.articals_title_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    max-width: 500px;
}


.blog_card {
    width: 100%;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.blog_card_image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog_card_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog_date {
    position: absolute;
    left: 15px;
    bottom: 13px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    z-index: 2;
}


.blog_category {
    position: absolute;
    right: 15px;
    bottom: 6px;
    display: flex;
    align-items: center;
    padding: 3px 5px 3px 5px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    background: rgba(40, 40, 40, 0.82);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    /* z-index: 2; */
}

.blog_category_icon {
    width: 19px;
    height: 19px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 10px;
}

.blog_card_content {
    padding: 18px;
}

.blog_card_content h3 {
   font-size: 23px;
   color: var(--theme-color6);
   margin-bottom: 8px;
   font-weight: 500;
   line-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_card_content > p {
   font-size: 12px;
   line-height: 23px;
   margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_read_btn{
    margin-top: 12px;
}

.blog_read_btn > a{
    background-color: var(--color-white);
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: .4px;
}


.blog_read_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}


    /* css end */

    /* css start */

    .faq_section{
        padding: 50px 0px 80px 0px;
    }

    .title_faq{
        margin-bottom: 30px;
    }

    .title_faq > h4{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 40px;
}

    .faq_accordion {
    width: 100%;
}

.faq_accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border-color3);
    border-radius: 0;
    background: transparent;
}

.faq_accordion .accordion-button {
    position: relative;
    padding: 25px 15px;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    padding-right: 80px;
}

.faq_number {
    margin-right: 8px;
}


/* Bootstrap default arrow remove */
.faq_accordion .accordion-button::after {
    display: none;
}


/* Custom + / X */

.faq_custom_icon {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    background-color: var(--color-gray);
}


/* Horizontal */

.faq_custom_icon::before,
.faq_custom_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}


/* Vertical */

.faq_custom_icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* Open = X */

.faq_accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color6);
}

.faq_accordion .accordion-button:not(.collapsed)
.faq_custom_icon::before {
    background: var(--theme-color);

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.faq_accordion .accordion-button:not(.collapsed)
.faq_custom_icon::after {
    background: var(--theme-color);

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* Answer */

.faq_accordion .accordion-body {
    padding: 0 60px 30px 15px;
    color: var(--body-text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .5px;
}


.faq_accordion .accordion-button:hover {
    color: var(--theme-color6);
}
 /* css end */


       /* breadcrubm css start */

    .breadcrumb_section{
        margin-bottom: 10px;
        width: 100%;
    }

      .breadcrumb_section > img{
        width: 100%;
        height: 240px;
        object-fit: cover;       
      }

      .breadcrumb_data_list{
        padding-top: 60px;
        padding-bottom: 10px;
      }

       .breadcrumb_data_list > ul{
        list-style: none !important;
        padding: 0px !important;
        display: flex;
        align-items: center;
        gap: 10px;
       }

       .breadcrumb_data_list > ul > li{
        font-size: 12px;
        font-weight: 500;
        text-transform: capitalize;
        cursor: default;
       }

         .breadcrumb_data_list > ul > i{
        font-size: 12px;
        font-weight: 500; 
         }

         .breadcrumb_data_list > ul > li > a{
            color: var(--color-dark);
         }

        .breadcrumb_data_list > ul > li:nth-last-child(1) > a{
            color: var(--theme-color);
        }
       /* breadcrubm css end */


         /* breadcrubm css start */

    .breadcrumb_section2{
        margin-bottom: 10px;
        width: 100%;
    }

      .breadcrumb_data_list2{
        padding-top: 20px;
        padding-bottom: 20px;
      }

       .breadcrumb_data_list2 > ul{
        list-style: none !important;
        padding: 0px !important;
        display: flex;
        align-items: center;
        gap: 10px;
       }

       .breadcrumb_data_list2 > ul > li{
        font-size: 12px;
        font-weight: 500;
        text-transform: capitalize;
        cursor: default;
       }

         .breadcrumb_data_list2 > ul > i{
        font-size: 12px;
        font-weight: 500; 
         }

         .breadcrumb_data_list2 > ul > li > a{
            color: var(--color-dark);
         }

        .breadcrumb_data_list2 > ul > li:nth-last-child(1) > a{
            color: var(--theme-color);
        }
       /* breadcrubm css end */


    /* product dt css start */

    .products_dt_section{
        padding: 0px 0px 50px 0px;
    }

    .products_dt_image_box{
        height: 430px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background-color: var(--color-gray);
        margin-bottom: 20px;
    }

    
    .products_dt_image_box > img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }

    .products_dt_content_box > h1{
     color: var(--color-dark2);
    font-weight: 800;
    font-size: 33px;
    margin-bottom: 17px;
    }

      .products_dt_content_box > p{
        color: var(--body-text-color);
      font-size: 16px;
    letter-spacing: .6px;
    font-weight: 400;
    line-height: 30px;
      }


.certificates_marquee {
    position: relative;
    overflow: hidden;
}

.certificates_marquee::before,
.certificates_marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.certificates_marquee::before {
        left: 0;
    background: linear-gradient(
        to right,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}


.certificates_marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--color-white) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(255, 255, 255, 0) 100%
    );
}

      .certificates_box_div_dt{
        margin-top: 20px;
      }

      .certificates_box_div_dt {
    display: flex;
    align-items: center;
    gap: 45px;
    width: max-content;
    animation: certificatesScroll 22s linear infinite;
   transition: animation-duration 0.5s ease;
}

.certificates_item_div {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.certificates_item_div > strong {
    font-size: 27px;
    font-weight: 600;
    color: var(--theme-color6);
}

.certificates_item_div > p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-dark);
}
.certificates_marquee:hover .certificates_box_div_dt {
    animation-duration: 60s;
}


/* Continuous movement */

@keyframes certificatesScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

       
.pro_dt_btn_div{
    margin-top: 30px;
}

.pro_dt_btn_div > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.pro_dt_btn_div > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.pro_dt_btn_div > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}


    /* product dt css end */


    /* protect css start */
    .protect_section{
        background-color: var(--theme-color8);
        border-top:1px solid var(--border-color);
        border-bottom:1px solid var(--border-color);
        padding: 50px 0px 50px 0px;
        margin-bottom: 30px;
    }

    .protect_title_div{
        margin-bottom: 35px;
    }


      .protect_title_div > h2{
        font-weight: 500;
        line-height: 40px;
        font-size: 25px;
        letter-spacing: .6px;
        max-width: 580px;
      }

      .protect_data_main_div{
        margin-bottom: 20px;
      }

      .protect_data_img_div{
        height: 200px;
        width: fit-content;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
      }

      
      .protect_data_img_div > img{
        height: 100%;        
        border-radius: 12px;
      }

      .protect_overlay_icon{
        position: absolute;
        top: 10px;
        left: 20px;
      }

      
      .protect_overlay_icon > i{
        background-color: var(--color-gray5);
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 28px;
        border-radius: 100px;
        text-align: center;
        border: 2px solid var(--border-color);
        color: var(--color-dark2);
      }

      
      .protect_overlay_icon2{
        position: absolute;
        top: 10px;
        left: 20px;
      }

      
      .protect_overlay_icon2 > i{
        background-color: #bff2c6;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 28px;
        border-radius: 100px;
        text-align: center;
        border: 2px solid #08a115;
        color: #08a115;
      }

      .protect_data_main_div > h2{
        color: var(--color-dark);
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 14px;
      }
      
      .protect_data_main_div2 > h2{
        color: #224c9c;
      }

      .protect_data_main_div2 > .protect_data_img_div > img{
        border: 1px solid #224c9c;
      }

        .protect_data_main_div > p{
            margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-dark);
        }

         .protect_data_main_div > ul{
            list-style: square !important;
            padding: 10px 0px 0px 18px;
         }
        
        .protect_data_main_div > ul > li{
        margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-dark);
        }

    /* protect css end */


    /* key css  */

    .key_benifit_section{
        padding: 70px 0px 50px 0px;
    }

    .key_benifit_section > .container{
        background-color: var(--theme-color6);
        padding: 30px 20px;
        border-radius: 15px;
        border-radius: 10px;
        border: 3px solid var(--border-color);
    }

    .title_key_benifit{
        margin-bottom: 25px;
    }

    .title_key_benifit > h4{
        color: var(--color-white);
        font-size: 25px;
        letter-spacing: .3px;
    }
    
.key_benifit_marquee {
    position: relative;
    overflow: hidden;
}

.key_benifit_marquee::before,
.key_benifit_marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.key_benifit_marquee::before {
        left: 0;
    background: linear-gradient(
        to right,
        var(--theme-color6) 0%,
        var(--theme-color6) 30%,
        rgba(61, 53, 223, 0) 100%
    );
}


.key_benifit_marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--theme-color6) 0%,
        var(--theme-color6) 30%,
        rgba(61, 53, 223, 0) 100%
    );
}

      .key_benifits_data_div{
        margin-top: 20px;
      }

      .key_benifits_data_div {
    display: flex;
    align-items: center;
    gap: 45px;
    width: max-content;
    animation: certificatesScroll 22s linear infinite;
   transition: animation-duration 0.5s ease;
}

.key_benifit_marquee:hover .key_benifits_data_div {
    animation-duration: 60s;
}


/* Continuous movement */

@keyframes certificatesScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.key_benifits_item_div{
    border: 1px solid var(--border-color3);
    padding: 10px 30px;
    border-radius: 5px;
}

.key_icon_div{
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-bottom: 14px;
}


.key_icon_div > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0%) invert(1);
}

.key_benifits_item_div > h4{
    color: var(--color-gray);
    font-size: 13px;
    font-weight: 400;
    max-width: 150px;
    line-height: 20px;

}

    /* key css end */

    /* start */

    .where_use_section{
        padding: 50px 0px 70px 0px;
    }

    .title_where_use{
        margin-bottom: 40px;
    }

    .title_where_use > h4{
        text-transform: capitalize;
        font-size: 27px;
        font-weight: 500;
    }

    .where_data_main_div{
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        height: 100%;
    }

    .where_img_box{
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .where_img_box > img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 10px 10px 0px 0px;
    }

    .where_data_div_ct{
        padding: 20px 24px;
    }

    .where_data_div_ct > h4{
        color: var(--color-dark);
        font-weight: 500;
        font-size: 22px;
        letter-spacing: .4px;
        margin-bottom: 16px;
    }

     .where_data_div_ct > ul{
        list-style: square;
        padding: 0px 0px 0px 20px;
     }

          .where_data_div_ct > ul > li{
            font-size: 16px;
            line-height: 24px;
            color: var(--color-dark);
            margin-bottom: 5px;
            letter-spacing: .4px;
          }

    /* end */


    /* start */
  

.application_process_section {
    position: relative;
    padding: 70px 0;
    background: var(--theme-color8);
    overflow: hidden;
        border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}


.application_process_heading {
    margin-bottom: 32px;
}

.application_process_heading h2 {
    margin: 0;
    color: var(--color-dark);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .3px;
}



.application_process_card {
    height: 100%;
    padding: 25px 20px 20px;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
}



.application_process_icon {
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.application_process_icon i {
    color: var(--theme-color6);
    font-size: 31px;
}



.application_process_card h3 {
    margin: 0 0 18px;
    color: var(--theme-color6);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
}


.application_process_card > ul {
    margin: 0;
    padding-left: 18px;
}

.application_process_card > ul > li {
    color: var(--body-text-color);
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    padding-left: 2px;
    margin-bottom: 6px;
}

.application_process_card > ul > li:last-child {
    margin-bottom: 0;
}


.application_important_note {
    margin-top: 34px;
    padding: 20px;
    background: rgba(255, 255, 255, .85);
    border: 1px dashed var(--border-color);
}


.application_important_note h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--theme-color);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
}


.application_important_note h4 i {
    font-size: 16px;
}


.application_important_note p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}


    /* end */

    /* start */
   

.technical_properties_section {
    padding: 80px 0 70px;
    background: var(--color-white);
}



.technical_properties_heading {
    margin-bottom: 20px;
}

.technical_properties_heading h2 {
    margin: 0;
    color: var(--theme-color6);
    font-size: 33px;
    font-weight: 700;
    letter-spacing: .5px;
}


.technical_properties_table {
    padding: 5px;
    border: 1px solid var(--border-color2);
    border-radius: 9px;
    background: var(--color-white);
}


.technical_properties_table > table{
    width: 100%;
    padding: 10px;
}


.technical_properties_table > table > tbody > tr > th{
    font-weight: 600;
    color: var(--color-white);
    font-size: 20px;
    text-transform: capitalize;
    background-color: var(--theme-color6);
    padding: 15px 20px;
    border-radius: 3px;
}



.technical_properties_table > table > tbody > tr > th:nth-last-child(1){
    background-color: var(--color-dark);
}

.technical_properties_table > table > tbody > tr > th strong{
  color:white;
}

.technical_properties_table > table {
    border-collapse: separate;
    border-spacing: 5px;
}

.technical_properties_table > table > tbody > tr > td {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px 20px;
    border-radius: 3px;
    background-color: #f2f6ff;
    border: 1px solid var(--color-white);
}


.technical_properties_table > table > tbody > tr > td:nth-last-child(1){
    
    border: 1px solid var(--color-white);
    background-color: var(--border-color2);
}


.technical_properties_header {
    margin-bottom: 5px;
}


.technical_property_head,
.technical_description_head {
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
}


.technical_property_head {
    color: var(--color-white);
    background: var(--theme-color6);
}


.technical_description_head {
    color: var(--color-white);
    background: var(--theme-color9);
}


.technical_property_row {
    margin-bottom: 5px;
}

.technical_property_row:last-child {
    margin-bottom: 0;
}


.technical_property_name {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--color-dark);
    background: var(--theme-color8);
    border: 1px solid var(--border-color2);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .7px;
}

.technical_property_value {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--color-dark);
    background: var(--color-gray3);
    border: 1px solid var(--border-color2);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .6px;
}



.technical_property_row:hover
.technical_property_name {
    background: var(--theme-color8);
}

.technical_property_row:hover
.technical_property_value {
    background: var(--color-white);
}

    /* end */
    
    
    
    /* start */
 
.colour_explorer_section {
    width: 100%;
    padding: 35px 0;
    overflow: hidden;
}

.colour_explorer_box {
    width: 100%;
}

.colour_hero_image {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: visible;
    border-radius: 14px;
    background: var(--color-gray4);
}

.colour_hero_image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    opacity: 1;
    transform: scale(1);
    transition: opacity .45s ease, transform .7s ease;
}

.colour_hero_image.image_changing > img {
    opacity: 0;
    transform: scale(1.025);
}


.colour_category_wrap {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 200px;
    z-index: 999;
}



.colour_category {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--box-shadow3);
    cursor: pointer;
    outline: none;
    transition: var(--transition2);
}

.colour_category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.colour_category span {
    color: var(--color-dark);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
}

.colour_category i {
    color: var(--theme-color);
    font-size: 15px;
    transition: transform .3s ease;
}

.colour_category.open i {
    transform: rotate(180deg);
}


.colour_category_dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    padding: 5px 0;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
    overflow: hidden;
    display: none;
    z-index: 9999;
}

.colour_category_dropdown.show {
    display: block;
}

.category_option {
    position: relative;
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border: 0;
    outline: none;
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: var(--transition2);
}

.category_option:hover {
    background: var(--theme-bg-light);
    color: var(--theme-color);
}

.category_option.active {
    background: var(--theme-bg-light);
    color: var(--theme-color);
    font-weight: 500;
}

.category_option.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--theme-color);
}


.colour_selector {
    position: relative;
    width: 100%;
    height: 64px;
    margin-top: 24px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    background: var(--color-gray);
    border-radius: 10px;
    box-shadow: var(--box-shadow3);
    overflow: hidden;
}


.colour_items {
    width: 100%;
    min-width: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    overflow: hidden;
}

.colour_items.active {
    display: flex;
}


.colour_item {
    position: relative;
    flex: 0 0 auto;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 4px 10px;
    border: 0;
    border-radius: 40px;
    background: transparent;
    color: var(--body-text-color);
    font-family: var(--body-font);
    cursor: pointer;
    white-space: nowrap;
    outline: none;
    transition: background .35s ease, color .35s ease, box-shadow .35s ease, transform .25s ease;
}

.colour_item:hover {
    background: rgba(255, 255, 255, .65);
    transform: translateY(-1px);
}

.colour_item.active {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}


.colour_circle {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: block;
    border-radius: 50%;
    background: var(--circle-color);
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}



.colour_circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    transform: rotate(-45deg);
    pointer-events: none;
}

.colour_item.active .colour_circle::before {
    opacity: 1;
    border-top-color: var(--theme-color);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: shadeProgress 4s linear forwards;
}

@keyframes shadeProgress {

    0% {
        border-top-color: var(--theme-color);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        transform: rotate(-45deg);
    }

    25% {
        border-top-color: var(--theme-color);
        border-right-color: var(--theme-color);
        border-bottom-color: transparent;
        border-left-color: transparent;
        transform: rotate(45deg);
    }

    50% {
        border-top-color: var(--theme-color);
        border-right-color: var(--theme-color);
        border-bottom-color: var(--theme-color);
        border-left-color: transparent;
        transform: rotate(135deg);
    }

    75% {
        border-top-color: #8c8c8c;
        border-right-color: #8c8c8c;
        border-bottom-color: #8c8c8c;
        border-left-color: #8c8c8c;
        transform: rotate(225deg);
    }

    100% {
        border-top-color: #8c8c8c;
        border-right-color: #8c8c8c;
        border-bottom-color: #8c8c8c;
        border-left-color: #8c8c8c;
        transform: rotate(315deg);
    }

}


.colour_name {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: inherit;
    text-transform: capitalize;
}


.colour_arrow {
    position: relative;
    z-index: 10;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    cursor: pointer;
    outline: none;
    box-shadow: var(--box-shadow3);
    transition: var(--transition2);
}

.colour_arrow:hover {
    background: var(--theme-color6);
    color: var(--color-white);
    transform: scale(1.05);
}

.colour_prev {
    margin-right: 12px;
}

.colour_next {
    margin-left: 12px;
}

    /* end */



    /* start */  
.catalogue_section {
    padding: 24px 0;
}



.catalogue_main {
    position: relative;
    border: 3px solid var(--border-color3);
    border-radius: 10px;
    overflow: hidden;
    background: var(--theme-color8);
}


.catalogue_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 58px 35px 40px 50px;
    position: relative;
    z-index: 2;
}


.catalogue_content > h4 {
    margin: 0 0 13px;
    color: var(--color-dark2);
    font-size: 25px;
    line-height: 1.32;
    font-weight: 500;
    letter-spacing: .6px;
}


.catalogue_btn > a {
    display: inline-flex;
    align-items: center;
    padding: 0 0 0 20px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: .4px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition2);
}


.catalogue_btn > a > i {
    width: 45px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    background-color: var(--theme-color);
    color: var(--color-white);
    font-size: 14px;
}


.catalogue_btn > a:hover {
    color: var(--theme-color);
    background-color: var(--theme-bg-light);
}



.catalogue_slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 50px 0px 50px 0px;
}



.catalogueSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.catalogueSwiper .swiper-wrapper {
    align-items: stretch;
}


.catalogueSwiper .swiper-slide {
    height: auto;
    display: flex;
    min-width: 0;
}


.catalogue_product_card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--border-color3);
    border-radius: 7px;
    overflow: hidden;
}



.catalogue_product_image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-gray3);
    border-bottom: 1px solid var(--border-color3);
}


.catalogue_product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}


.catalogue_product_card:hover
.catalogue_product_image img {
    transform: scale(1.04);
}


.catalogue_product_content {
    padding: 20px 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.catalogue_product_content h3 {
    margin: 0 0 5px;
    color: var(--theme-color9);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .4px;
    line-height: 33px;
}


.catalogue_product_content p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.55;
}



.catalogue_explore_btn{
    margin-top: 15px;
}

.catalogue_explore_btn > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.catalogue_explore_btn > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
    font-size: 13px;
}

.catalogue_explore_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}

.catalogue_prev,
.catalogue_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(0, 0, 0, .18);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition2);
}


.catalogue_prev {
    left: 26px;
}


.catalogue_next {
    right: 26px;
}


.catalogue_prev:hover,
.catalogue_next:hover {
    background: var(--theme-color6);
    transform:
        translateY(-50%)
        scale(1.05);
}

    /* end */

    /* start */
.hero_wall_section {
    position: relative;
    display: flex;
    align-items: center;
   
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 100px 0px 100px 0px;
}

.hero_blogs_section {
    position: relative;
    display: flex;
    align-items: center;
   
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 80px 0px 300px 0px;
}


.hero_wall_content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero_wall_text {
    padding-top: 10px;
}

.hero_wall_text > h1 {
    margin: 0 0 22px;
    color: var(--color-white);
    font-size: 36px;
    line-height: 1.24;
    font-weight: 700;
    letter-spacing: .4px;
}


.blogs_breadcrumb_text > h1 {
    margin: 0 0 22px;
    color: var(--color-dark);
    font-size: 34px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: .2px;
}



.hero_wall_text > p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 22px;
    line-height: 35px;
    font-weight: 400;
    letter-spacing: .4px;
}


.hero_wall_line {
    width: 285px;
    height: 5px;
    margin: 25px 0 10px;
    background: var(--theme-color);
}


.hero_wall_btn{
    margin-top: 30px;
}

.hero_wall_btn > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.hero_wall_btn > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.hero_wall_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}



    /* end */


    /* start */ 

.emulsion_section {
    padding: 30px 0 50px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 60px;
}



.emulsion_section2 {
    padding: 100px 0px 50px 0px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 60px;
}

.category_description_section{
    padding-bottom: 50px;
}

.emulsion_heading {
    margin-bottom: 125px;
}

.emulsion_heading > h2 {
    margin: 0 0 6px;
    color: var(--color-dark2);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: .6px;
}

.emulsion_heading > p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: .5px;
}

.emulsion_main_box {
    position: relative;
    border: 1px solid var(--border-color3);
    border-radius: 8px;
    background: var(--color-white);
    overflow: visible;
}


.emulsion_product_box {
    height: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 8px;
    overflow: visible;
    
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow3);
    z-index: 2;
}


.emulsion_product_image {
    position: absolute;
    top: -95px;
    left: 55px;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}


.emulsion_product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(
        8px 14px 12px rgba(0,0,0,.20)
    );
}

.emulsion_product_content {
    position: relative;
    z-index: 6;
    padding: 0 50px 45px;
}

.emulsion_product_content > h3 {
    margin: 0 0 6px;
    color: var(--color-white);
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: .6px;
}

.emulsion_product_content > p {
    margin: 0 0 28px;
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: .6px;
}



.emulsion_product_btn{
    margin-top: 30px;
}

.emulsion_product_btn > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.emulsion_product_btn > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.emulsion_product_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}


.emulsion_guarantee {    
   padding: 22px 30px 20px 30px;
    height: 100%;
    border-radius: 0 8px 8px 0;
}


.emulsion_guarantee > h3 {
    margin: 0 0 34px;
    color: var(--theme-color6);
    font-size: 23px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1px;
}


.guarantee_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}


.guarantee_icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-text-color);
    font-size: 39px;
}

.guarantee_icon > img{
    width: 58px;
    height: 58px;
    object-fit: contain; 
}


.guarantee_item  > p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
}


/* start */
.products_available_main {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-top: 40px;
}


.products_available_scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0px 15px;
}

.products_available_scroll::-webkit-scrollbar {
    height: 8px;
}

.products_available_scroll::-webkit-scrollbar-track {
    background: var(--color-gray3);
    border-radius: 8px;
}

.products_available_scroll::-webkit-scrollbar-thumb {
    background: var(--border-color5);
    border-radius: 8px;
}

.products_available_scroll::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color6);
}

.products_available_track {
    width: max-content;
    display: flex;
    align-items: stretch;
    gap: 10px;
}


.product_available_card {    
    display: flex;
    flex-direction: column;
    background: var(--color-gray2);
    border: 1px solid var(--border-color3);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}


.product_available_image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    object-fit: cover;
}


.product_available_image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.product_available_name {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    color: var(--theme-color9);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

.products_available_fixed {
    flex: 0 0 140px;
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    background: var(--color-gray3);
    position: relative;
    z-index: 5;
    border-radius: 0px 10px 10px 0px;
}


.products_available_fixed strong {
    display: block;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
}


.products_available_fixed span {
    color: var(--body-text-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}



    /* end */

    /* about css start */
    .about_us_video-card {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--color-white);
}

.about_us_video-card iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 0;
    transform: translate(-50%, -50%) scale(1.38);
    transform-origin: center center;
    z-index: 1;
}

.about_us_video_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.08) 70%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.about_us_video_play_btn {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 62px;
    padding: 5px 22px 5px 6px;
    border-radius: 17px;
    background: rgba(45, 45, 45, 0.82);
    color: var(--color-white);
    text-decoration: none;
    font-size: 15px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.about_us_video_play_btn:hover {
    color: var(--color-white);
    transform: translateX(-50%) scale(1.04);
    background: rgba(30, 30, 30, 0.95);
}

.about_us_play_icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.12);
}

.about_us_play_icon i {
    margin-left: 3px;
    font-size: 18px;
}



/* css start */
.delivering_quality_section{
    padding: 50px 0px 80px 0px;
}

.delivering_quality_data_div > h1{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.delivering_quality_data_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 400;
}


/* css end */
    /* about css end */


    /* css start */
    .contact-section{
    padding: 60px 0px;
}

.contact-section h2{
    font-size: 30px;
    font-weight: 800;
    color: var(--theme-color9);
    margin-bottom: 15px;
}


.contact-section p{
    font-size: 15px;
    font-weight: 400;
    color: var(--body-text-color);
    max-width: 700px;
}


/*  */
/* contact details */

.contact-details {
    width: 100%;
    padding: 10px 0px 80px 0px;
    background: var(--color-white);
}

.contact-main-row {
    align-items: stretch;
}

/* left */

.contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;

}

.contact-info-col {
    padding: 0 10px;
    margin-bottom: 28px;
}

.contact-info-item {
    align-items: flex-start;
    gap: 8px;
}


/* icon */

.contact-info-icon {
    width: 125px;
    min-width: 125px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--theme-color6);
    font-size: 13px;
    line-height: 1;
    margin-top: 3px;
}

/* content */

.contact-info-content {
    min-width: 0;
}

.contact-info-content .contact-info-p{
    display: flex;
    gap: 7px;
}

.contact-info-content > span {
    display: block;
    margin-bottom: 10px;
    color: var(--theme-color6);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.contact-info-content a,
.contact-info-content p {
    display: block;
    color: var(--body-text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
}

.contact-info-content a:last-child,
.contact-info-content p:last-child {
    margin-bottom: 0;
}

/* social */

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-dark);
    font-size: 12px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-socials a i {
    width: 13px;
    text-align: center;
    font-size: 14px;
}

.contact-socials a:hover {
    color: var(--theme-color6);
}


/* social icons color */

.contact-socials a:nth-child(1) i {
    color: #e4405f;
}

.contact-socials a:nth-child(2) i {
    color: #1877f2;
}

.contact-socials a:nth-child(3) i {
    color: #0a66c2;
}

.contact-socials a:nth-child(4) i {
    color: #ff0000;
}


/*map*/

.contact-map-col {
    width: 100%;
    padding: 0 10px;
    margin-top: 0;
}

.contact-map {
    width: 100%;
    height: 260px;

    overflow: hidden;

    border-radius: 4px;
    border: 1px solid #e2e2e2;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* right form */

.contact-right {
    width: 100%;
    height: 100%;
}

.contact-form-card {
    width: 100%;
    height: 100%;
    padding: 28px 24px;
    background: var(--color-white);
    border: 1px solid var(--border-color3);
    border-radius: 6px;
    box-sizing: border-box;
}


/* form group */

.contact-form-card .row {
    row-gap: 0;
}

.contact-form-card .form-group {
    margin-bottom: 17px;
}

.contact-form-card label {
    display: block;
    margin-bottom: 7px;
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-form-card .form-control {
    width: 100%;
    height: 30px;
    padding: 5px 8px;
    border: 1px solid var(--border-color2);
    border-radius: 3px;
    background-color: var(--border-color3);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease;
}

.contact-form-card input.form-control {
    height: 45px;
}

.contact-form-card select.form-control {
    height: 45px;
    padding-right: 30px;    
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    cursor: pointer;
}

.contact-form-card textarea.form-control {
    height: 75px;
    min-height: 75px;
    resize: vertical;
    padding: 8px;
}


.contact-form-card .form-control::placeholder {
    color: var(--body-text-color);
    opacity: 1;
}

.contact-form-card .form-control:focus {
    border-color: var(--body-text-color);
    background-color: var(--color-gray2);
    box-shadow: none;
}

.contact-theme-btn {
    display: inline-flex;
    align-items: center;
    height: 31px;
    padding: 0;
    border: 1px solid var(--border-color2);
    border-radius: 3px;
    background: var(--color-white);
    color: var(--theme-color6);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s ease;
}

.contact-theme-btn span {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

.contact-theme-btn i {
    width: 31px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 13px;
}

.contact-theme-btn:hover {
    border-color: var(--theme-color6);
}

.contact-theme-btn:hover i {
    background: var(--theme-color6);
}

    /* css end */

    /* css start */
    
    /* css start */
    .investor_section{
        width: 100%;
        position: relative;
        overflow: hidden;
           }

        .investor_section:before{
       content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 600px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, var(--color-white) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
    }


    .investor_image_div{
       width: 100%;
        position: relative;
        overflow: hidden;        
    }

    .investor_image_div > img{
        width: 100%;
        display: block;
    }

    .investor_content_div_overlay{
        position: absolute;
        top: 100px;
        z-index: 1;
    }

     .investor_content_div_overlay > .investor_content_data_div{
        margin-bottom: 56px;
         max-width: 550px;
     }

        .investor_content_div_overlay > .investor_content_data_div > h3{
color: var(--color-dark2);
    font-weight: 900;
    font-size: 35px;
    margin-bottom: 18px;
    letter-spacing: .5px;
        } 

        .investor_content_div_overlay > .investor_content_data_div > p{
            color: var(--color-dark);
    font-size: 23px;
    letter-spacing: .7px;
    font-weight: 400;   
    line-height: 35px;
        }

        .investor_divider_bottom{
            width: 60%;
    height: 6px;
    position: relative;
    overflow: visible;
    background-color: var(--theme-color);
    margin-top: 20px;
        }

    /* css end */
   
    
/* css start */
.investor_relation_section{
     padding-block-start: 70px;
    padding-block-end: 40px;
}

.investor_data_div > h2{
    color: var(--color-dark2);
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 15px;
}

.investor_data_div > p{
    color: var(--body-text-color);
    font-size: 17px;
    letter-spacing: .7px;
    font-weight: 400;
    max-width: 640px;
}

/* css end */



/* css start */
.annual_return_section{
    padding: 30px 0px 20px 0px;
}

.annual_return_data_div > h2{
    color: var(--theme-color6);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.annual_return_data_div > h2 > i{
    background-color: var(--theme-color8);
    padding: 4px 7px;
    border-radius: 5px;
    border: 2px solid var(--theme-color6);
    font-size: 13px;
}

.annual_return_data_div > p{
    color: var(--body-text-color);
  font-size: 17px;
    letter-spacing: .7px;
    font-weight: 400;
    max-width: 690px;
}

/* css end */

/* start */
.mgt_swiper_section {
    width: 100%;
    padding: 10px 0 70px;
    overflow: hidden;
}

.mgt_swiper_section > .swiper{
    padding: 10px 0px 20px 0px;

}

.mgtSwiper {
    width: 100%;
    overflow: visible;
}


.mgtSwiper .swiper-slide {
    height: auto;
    transition: all 0.4s ease;
}

/* CARD */
.mgt_card {
    height: 100%;
    background: var(--color-white);
    border: 1px solid var(--border-color2);
    border-radius: 7px;
    overflow: hidden;
}

/* IMAGE */
.mgt_card_image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--color-dark2);
}

.mgt_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(170%);
   
}

/* YEAR */
.mgt_card_image span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    font-weight: 800;
    color: var(--theme-color6);
    white-space: nowrap;
}

/* CONTENT */
.mgt_card_content {
    padding: 30px 30px 30px;
}

.mgt_card_content h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--theme-color6);
}


.mgt_card_content p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--body-text-color);
}

.mgt_download_btn{
    margin-top: 15px;
}

.mgt_download_btn > a{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.mgt_download_btn > a > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.mgt_download_btn > a:hover{
     color: var(--theme-color);
    background-color: var(--theme-bg-light);
}

/* ARROWS */
.mgt_swiper_prev,
.mgt_swiper_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mgt_swiper_prev {
    left: 0px;
}

.mgt_swiper_next {
    right: 0px;
}

.mgt_swiper_prev i,
.mgt_swiper_next i {
    font-size: 15px;
}

/* PAGINATION */
.mgt_swiper_pagination {
    position: absolute;
    bottom: -52px !important;
    left: 50% !important;
    transform: translateX(-50%);

    width: auto !important;

    padding: 6px 8px;

    display: flex;
    gap: 6px;

    background: var(--theme-color6);
    border-radius: 20px;
}

.mgt_swiper_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;

    background: var(--color-white);
    opacity: 0.55;
}

.mgt_swiper_pagination .swiper-pagination-bullet-active {
    opacity: 1;
}


/* end */

/* start */
.csr_policy_section {
    padding: 50px 0;
    background: var(--theme-color8);
    overflow-x: hidden;
}

.csr_policy_content {
    margin-bottom: 55px;
}

.csr_policy_title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.csr_policy_title i {
    font-size: 22px;
    color: var(--green-color);
}

.csr_policy_title > h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--green-color);
}

.csr_policy_content p {
    max-width: 600px;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--body-text-color);
    letter-spacing: .5px;
}

.csr_document_card {
    width: 100%;
    max-width: 385px;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.csr_document_image {
    height: 325px;
    padding: 35px 33px 0;
    background: linear-gradient(
        110deg,
        #285aa9 0%,
        #173c78 45%,
        #061d46 100%
    );
    overflow: hidden;
}

.csr_document_image img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0px 0px;
    display: block;
    object-fit: cover;
    object-position: top center;
}


.csr_document_content {
    padding: 28px 26px 25px;
}

.csr_document_content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--theme-color6);
}

.csr_document_content p {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--body-text-color);
}


.csr_download_btn {
    display: inline-flex;
    align-items: stretch;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    transition: 0.3s ease;
}

.csr_download_btn span {
    display: flex;
    align-items: center;
    padding: 0 13px;
}

.csr_download_btn i {
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--color-white);}

.csr_download_btn:hover {
    color: var(--color-dark);
}


/* end */


/* start */
.what_we_offer_section {
    background: var(--theme-color8);
    padding: 50px 0px 50px 0px;
}

.what_offer_heading > h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark2);
    text-transform: capitalize;
    letter-spacing: .5px;
}

.what_offer_heading > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .5px;
    color: var(--body-text-color);
}




.offer_card {
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--border-color3);    
    border-radius: 7px;
    overflow: hidden;
    transition: var(--transition2);
}




.offer_image {
    height:var(--color-dark)px;
    padding: 4px;
}

.offer_image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}



.offer_content {
    padding: 25px 28px;
}

.offer_content > h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--theme-color9);
}

.offer_content > p {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--body-text-color);
}

.offer_btn {
    display: inline-flex;
    align-items: stretch;
    height: 40px;
    border: 1px solid var(--border-color4);
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color9);
    transition: var(--transition2);
}

.offer_btn > span {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.offer_btn > i {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--color-white);
}

.offer_btn:hover {
    color: var(--theme-color9);
}

.offer_btn:hover i {
    background: var(--theme-color2);
}


/* end */

/* start */
.why_choose_section {
    background: var(--color-white);
    padding: 20px 0px 20px 0px;
    margin: 30px 0px;
}

.why_choose_box {
    padding: 45px 50px 55px;
    border: 3px solid var(--theme-color66);
    border-radius: 8px;
    background: var(--theme-color66);
    background-image:
        radial-gradient(
            circle at 8% 20%,
            rgba(3, 78, 162, 0.45),
            transparent 35%
        );
}


.why_choose_title_page {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-white);
}

.why_choose_title_page > h4{
    color: var(--color-white);
}

.why_choose_card {
    height: 100%;
    min-height: 280px;
    padding: 25px 17px;
    border: 1px solid var(--border-color-white2);
    border-radius: 5px;
    background: rgba(34, 76, 156, 0.35);
    transition: var(--transition2);
}

.why_choose_card:hover {
    background: rgba(34, 76, 156, 0.55);
}


.why_choose_icon {
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
}

.why_choose_icon img {
   filter: brightness(0%) invert(1);
 height: 60px;
    width: 60px;
    color: var(--color-white);
    object-fit: contain;
}


.why_choose_card h3 {
    margin: 22px 0 12px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: .4px;
}

.why_choose_card > p {
    margin: 0;
    max-width: 470px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

/* end */


/* start */
.our_team_section {
    background: var(--color-white);
    padding: 30px 0px 50px 0px;
}

.our_team_heading > h4 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: .9px;
    font-weight: 700;
    color: var(--color-dark2);
}

.our_team_heading > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--body-text-color);
    letter-spacing: .6px;
}



.team_chairman_card {
    overflow: hidden;
    border: 1px solid var(--border-color3);
    border-radius: 6px;
    background: var(--color-white);
}

.team_chairman_image {
    height: 600px;
    overflow: hidden;
}

.team_chairman_image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.team_chairman_content {
    position: relative;
    height: 100%;
    padding: 25px 38px;
    background-color: var(--color-white);
    background-image:
        linear-gradient(
            rgba(34, 76, 156, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34, 76, 156, 0.07) 1px,
            transparent 1px
        );
    background-size: 24px 24px;
}

.team_chairman_content > h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .6px;
    color: var(--theme-color66);
}

.team_chairman_content > p {
    position: relative;
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 30px;
    color: var(--body-text-color);
    letter-spacing: .6px;
}

.team_chairman_content > strong {
    position: relative;
    display: block;
    margin-top: 25px;
    font-size: 13px;
    color: var(--theme-color9);
    font-weight: 500;
    letter-spacing: .6px;
}


.team_quote {
    position: absolute;
    top: 0;
    right: 25px;
    color: var(--theme-color);
    opacity: 0.7;
}

.team_quote i {
    font-size: 55px;
}



.team_card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color3);
    border-radius: 6px;
    background: var(--color-white);
}

.team_card_image {
    height: 300px;
    overflow: hidden;
    background: #d5c3bb;
}

.team_card_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.team_card_content {
    min-height: 180px;
    padding: 20px;
    background-color: var(--color-white);
    background-image:
        linear-gradient(
            rgba(34, 76, 156, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34, 76, 156, 0.06) 1px,
            transparent 1px
        );
    background-size: 24px 24px;
}

.team_card_content > p {
    margin: 0 0 16px;
   font-size: 16px;
    line-height: 30px;
    color: var(--body-text-color);
    letter-spacing: .6px;
}

.team_card_content > p > br{
    display: none;
}

.team_card_content strong {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-dark);
    letter-spacing: .7px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team_card_content span {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-dark);
    letter-spacing: .7px;
}

/* end */


/* start */
.category_features_section{
    padding: 30px 0px 50px 0px;
}

.category_features_content > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    line-height: 30px;

}

.category_description_content> p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    line-height: 33px;

}


.category_description_content> p> strong{
    font-weight: 700;
    font-size: 14px;
}


.category_features_content > h2{
        color: var(--color-dark2);
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 10px !important;

}


.category_features_content > ul{
    list-style: none !important;
    padding: 0px 0px 0px 20px !important;

}

.category_features_content > ul > li{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    position: relative;
    line-height: 30px;
    position: relative;
}

.category_features_content > ul > li::before{
    position: absolute;
    content: "\2713";
    top: 0px;
    left: -20px;
}


.category_features_content > ul > li > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .4px;
    font-weight: 400;
    position: relative;
    line-height: 30px;
}

/* end */

/* start */


/* css start */
.blogs_title_pg_section{
     padding: 40px 0px 50px 0px;
}

.blogs_title_pg_data_div{
    margin-bottom: 25px;
}

.blogs_title_pg_data_div > h1{
    color: var(--color-dark2);
    font-weight: 600;
    font-size: 29px;
    margin-bottom: 10px;
    letter-spacing: .6px;
}

.blogs_title_pg_data_div > p{
    color: var(--body-text-color);
    font-size: 16px;
    letter-spacing: .6px;
    font-weight: 400;
    max-width: 660px;
}

/* css end */


/* blog dt css start */

.blog_breadcrumb_section{
    margin-bottom: 30px;
}

.bread_crumb_img_div_blogpg{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}


.bread_crumb_img_div_blogpg > img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.blog_dt_bread_list{
    margin-bottom: 30px;
}

.blog_dt_bread_list > ul{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none !important;
    padding: 0px !important;
}

.blog_dt_bread_list > ul > li{
    color: var(--color-dark);
    font-size: 13px;
}

.blog_dt_bread_list > ul > i{
    font-size: 13px;
}

.blog_dt_bread_list > ul > li{
    color: var(--theme-color);
}


.blog_dt_bread_list > ul > span{
    color: var(--color-dark);
    font-size: 13px;
}


.blog_detail_content > h1 {
    margin: 0 0 25px;  
    font-size: 30px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: .7px;
    color: var(--color-dark2);
}



.blog_detail_content > h3 {
    margin: 0 0 25px;  
    font-size: 30px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: .7px;
    color: var(--theme-color6);
}

.blog_article_block > h3 {
    margin: 0 0 25px;  
    font-size: 24px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: .7px;
    color: var(--theme-color6);
}

.blog_article_block > h4 {
    margin: 0 0 25px;  
    font-size: 24px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: .7px;
    color: var(--theme-color6);
}

.blog_article_block table{
    border: 1px solid var(--border-color) !important;
    margin-bottom: 20px;
   
}


.blog_article_block table  tr  th{
    border: 1px solid var(--border-color) !important;
    vertical-align: middle;
    padding: 10px;
    font-size: 14px;
    text-transform: capitalize;
   
}




.blog_article_block table  tr  td{
    border: 1px solid var(--border-color) !important;
    vertical-align: middle;
    padding: 10px;
     font-size: 14px;
    text-transform: capitalize;

   
}



.blog_article_block table  tr  td p{
    margin-bottom: 0px !important;
     font-size: 14px;
    text-transform: capitalize;
}


.blog_detail_content {
    max-width: 1800px;
}

.blog_detail_content > p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.1px;
    color: var(--body-text-color);
}

.blog_detail_content p:last-child {
    margin-bottom: 0;
}

.blog_article_section {
    background: var(--color-white);
    padding-bottom: 50px;
}


/* LEFT SIDE */
.blog_toc_wrap {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 15px;
}

.blog_toc {
    padding-left: 14px;
    border-left: 1px solid var(--border-color3);
}

.blog_toc a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 27px;
    text-decoration: none;
    color: var(--body-text-color);

    transition: var(--transition2);
}

.blog_toc a:hover {
    color: var(--theme-color66);
}

.blog_toc a.active {
    color: var(--theme-color66);
    font-weight: 600;
}


/* RIGHT CONTENT */

.blog_article_content {
    max-width: 900px;
}

.blog_article_block {
    scroll-margin-top: 100px;

    margin-bottom: 10px;
}

.blog_article_block h2 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--theme-color66);
}

.blog_article_block p,
.blog_article_block li {
    font-size: 16px;
    line-height: 28px;
    color: var(--theme-color9);
}

.blog_article_block p {
    margin-bottom: 22px;
}

.blog_article_block ul,
.blog_article_block ol {
    padding-left: 18px;
    margin-bottom: 22px;
    list-style: square;
}

.blog_article_block li {
    margin-bottom: 10px;
}


/* TOC SCROLLBAR */

.blog_toc_wrap::-webkit-scrollbar {
    width: 3px;
}

.blog_toc_wrap::-webkit-scrollbar-thumb {
    background: var(--border-color4);
}

.comparison_table_wrap h2 {
    color: #28549a;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
}

.comparison_table {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.comparison_table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: var(--color-white);
}

.comparison_table th,
.comparison_table td {
    padding: 17px 15px;
    text-align: left;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #344052;
    font-size: 19px;
    line-height: 1.5;
    vertical-align: middle;
}

.comparison_table th {
    font-size: 22px;
    font-weight: 700;
    color: #343434;
    background: var(--color-white);
}

.comparison_table th:last-child,
.comparison_table td:last-child {
    border-right: 0;
}

.comparison_table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison_table td:first-child,
.comparison_table th:first-child {
    width: 19%;
}

.comparison_table td:nth-child(2),
.comparison_table th:nth-child(2) {
    width: 43%;
}

.comparison_table td:nth-child(3),
.comparison_table th:nth-child(3) {
    width: 38%;
}

/* start */
.next_article_section {
    padding: 60px 0;
}

.next_article_card {
    border: 1px solid var(--border-color2);
    border-radius: 18px;
    padding: 8px;
    background: var(--color-white);
    overflow: hidden;
}

.next_article_image {
    border-radius: 12px;
    overflow: hidden;
}

.next_article_image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.next_article_content {
    padding: 10px 10px;
    text-align: right;
}

.next_article_content > h2 {
    color: var(--color-dark);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.next_article_content > p {
    color: var(--body-text-color);
    font-size: 12px;
    line-height: 23px;
    margin-bottom: 0;
}

.next_article_btn_wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.next_article_btn {
    display: flex;
    align-items: center;
   padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color2);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.next_article_btn > span:first-child {
    flex: 1;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.next_article_arrow {
    width: 75px;
    height: 100%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 0px 20px;
    padding: 15px 5px;

}

.next_article_arrow > i {
    color: var(--color-white);
    font-size: 15px;
}


.next_article_btn_wrap2 {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.next_article_btn2 {
    display: flex;
    align-items: center;
   padding: 0px 20px 0px 0px;
    border: 1px solid var(--border-color2);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.next_article_btn2 > span:first-child {
    flex: 1;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.next_article_arrow2 {
    width: 75px;
    height: 100%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    padding: 15px 5px;

}

.next_article_arrow2 > i {
    color: var(--color-white);
    font-size: 15px;
}

/* end */


/* MOBILE */

@media (max-width: 767px) {

    .blog_toc_wrap {
        position: relative;
        top: auto;

        max-height: 280px;

        margin-bottom: 35px;
    }

    .blog_article_content {
        max-width: 100%;
    }

    .blog_article_block h2 {
        font-size: 21px;
    }

    .blog_article_block p,
    .blog_article_block li {
        font-size: 14px;
    }

}
/* blog dt css start */


/* start */
/* ===============================
   BRAND STORE SECTION
================================ */

.brand-store-section {
    padding: 80px 0;
    background: var(--color-white);
}

.store_block {
    background: var(--color-white);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

/* Heading */

.store_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color2);
}

.store_label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--theme-color6);
    margin-bottom: 7px;
}

.store_heading h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-dark);
}

.store_location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 17px;
    background: #f5f7fa;
    border-radius: 30px;
    font-size: 14px;
    color: var(--body-text-color);
}

.store_location i {
    color: var(--theme-color6);
}


/* ===============================
   GALLERY
================================ */

.gallery-card {
    position: relative;
    height: 245px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-gray);
}

.gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}


/* Overlay */

.gallery_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: all 0.35s ease;
}

.gallery_overlay i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--theme-color6);
    font-size: 17px;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.gallery-card:hover .gallery_overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
}

.gallery-card:hover .gallery_overlay i {
    transform: translateY(0);
}

/* =========================================
   BRAND STORE SWIPER NAVIGATION
========================================= */

.brandStoreSwiper {
    position: relative;
    padding-bottom: 55px;
}

.brandStoreSwiper .swiper-button-prev,
.brandStoreSwiper .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    top: 50%;
    margin-top: -22px;

    transition: all 0.3s ease;
    z-index: 5;
}

.brandStoreSwiper .swiper-button-prev {
    left: 12px;
}

.brandStoreSwiper .swiper-button-next {
    right: 12px;
}

.brandStoreSwiper .swiper-button-prev::after,
.brandStoreSwiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: #1649a5;
    transition: all 0.3s ease;
}

.brandStoreSwiper .swiper-button-prev:hover,
.brandStoreSwiper .swiper-button-next:hover {
    background: #1649a5;
    border-color: #1649a5;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(22, 73, 165, 0.25);
}

.brandStoreSwiper .swiper-button-prev:hover::after,
.brandStoreSwiper .swiper-button-next:hover::after {
    color: #fff;
}


/* =========================================
   BRAND STORE PAGINATION
========================================= */

.brandStoreSwiper .swiper-pagination {
    bottom: 8px;
    left: 0;
    width: 100%;
    display:none;
}

.brandStoreSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #d6dce5;
    margin: 0 5px !important;

    transition: all 0.35s ease;
}

.brandStoreSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: #1649a5;
}


/* =========================================
   DISABLE ARROWS WHEN NOT AVAILABLE
========================================= */

.brandStoreSwiper .swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .brandStoreSwiper {
        padding-bottom: 45px;
    }

    .brandStoreSwiper .swiper-button-prev,
    .brandStoreSwiper .swiper-button-next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .brandStoreSwiper .swiper-button-prev {
        left: 8px;
    }

    .brandStoreSwiper .swiper-button-next {
        right: 8px;
    }

    .brandStoreSwiper .swiper-button-prev::after,
    .brandStoreSwiper .swiper-button-next::after {
        font-size: 13px;
    }

  

}

/* end */

/* start */

.privacy_section {
    padding: 20px 0px 80px 0px;
}

.privacy_content_main_div {
    text-align: justify;
}

.privacy_content_main_div>h1 {
    color: var(--color-dark);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px !important;
}


.privacy_content_main_div>h2 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}



.privacy_content_main_div>h3 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}



.privacy_content_main_div>h4 {
    color: var(--color-dark);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>p {
    font-weight: 400;
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 25px;
    transition: 0.2s ease-in-out;
    margin-bottom: 18px !important;
    margin-top: 10px;
}

.privacy_content_main_div>p>strong {
    color: var(--black-color3);
    font-size: 14px;

}

.privacy_content_main_div>p>a {
    color: var(--black-color);
    font-weight: 700;
    text-decoration: underline !important;
}


.privacy_content_main_div>ul {
    list-style: square;
    padding: 0px 20px !important;
    margin-bottom: 0px !important;
}

.privacy_content_main_div>ul>li {
   font-weight: 400;
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 25px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;

}

/* end */


/* start */

.conatct_us_input_div {
    margin-bottom: 5px;
    position: relative;
}

.conatct_us_input_div>label {
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
}

.conatct_us_input_div>input {
    border-radius: 5px !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 14px;
    border: none !important;
    font-weight: 400;
     padding: 8px 10px;
    background-color: var(--border-color3)!important;
    border-bottom: 1px solid var(--border-color) !important;
}


.conatct_us_input_div > select {
    border-radius: 5px !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 13px;
    border: none !important;
    font-weight: 400;
     padding: 8px 10px;
    background-color: var(--border-color3)!important;
    border-bottom: 1px solid var(--border-color) !important;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 35px;
    text-transform: capitalize;
    color: var(--color-dark) !important;
    position: relative;
}

.conatct_us_input_div select + i.fa-chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-dark) !important;
    font-size: 14px;
}

.conatct_us_input_div select option {
    color: var(--color-dark) !important;
    font-weight: 500;
}


.conatct_us_input_div>textarea {
     border-radius: 5px !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 14px;
    border: none !important;
    font-weight: 400;
     padding: 8px 10px;
    background-color: var(--border-color3)!important;
    border-bottom: 1px solid var(--border-color) !important;
}

.conatct_us_input_div> ::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #c2c2c2;
}




.conatct_us_btn_div2{
    margin-top: 10px;
}

.conatct_us_btn_div2 > button{
    background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.conatct_us_btn_div2 > button > i{
    background-color: var(--theme-color);
    color: var(--color-white);
    display: inline-block;
    padding: 12px 12px 12px 12px;
    margin: 0px 0px 0px 20px;
}

.conatct_us_btn_div2 > button:hover{
     background-color: var(--color-white);
    padding: 0px 0px 0px 20px;
    border: 1px solid var(--border-color);
    color: var(--color-dark);

}


textarea{
    resize: none;
}

.enquiry_form_main_div .modal{
z-index:99999 !important;
}

.enquiry_form_main_div .modal-body{
    padding: 0px 20px 10px 20px!important;
}

.enquiry_form_main_div  .modal-header{
    padding: 20px 0px 15px 0px!important;
    border: none !important;
    outline: none !important;
    
}

.enquiry_form_main_div  .modal-header > h5{
    color: var(--black-color3);
    font-family: var(--heading-font2);
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .5px;
}

.enquiry_form_main_div  .modal-header > button{
    background-color: var(--white-color) !important;
    border: none !important;
    outline: none !important;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: var(--black-color3);
    border-radius: 3px;
}


/* end */


 /* footer css  */
  
.footer {
    position: relative;
    background: var(--color-white);
    overflow: hidden;
}


.wave-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(248, 250, 255, 0),
            rgba(244, 247, 252, 0.35)
        );
    }


#waveCanvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}


.footer_content {
    position: relative;
    z-index: 2;
}


.footer_main_row {
    margin-bottom: 45px;
}

.footer_link_main_div h6 {
   color: var(--color-dark);
   font-weight: 500;
   font-size: 18px;
   text-transform: capitalize;
   letter-spacing: .6px;
   margin-bottom: 20px;
}

.footer_link_main_div > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


.footer_link_main_div ul li a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 15px;
    line-height: 33px;
    font-weight: 400;
    letter-spacing: .5px;
    transition: all 0.3s ease;
}

.footer_link_main_div ul li a:hover {
    color: var(--theme-color6);
}

.footer_contact_item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 7px;
}

.footer_icon {
    flex: 0 0 8px;
    color: var(--theme-color6);
    font-size: 17px;
    padding-top: 2px;
}

.footer_contact_content {
    flex: 1;
}

.footer_contact_content a {
    display: block;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
}

.footer_contact_content a:hover {
    color: var(--theme-color6);
}


/* =========================
   BOTTOM SECTION
========================= */

.footer_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 35px;
    padding-top: 10px;
}

.footer_apps h4,
.footer_social h4 {
    margin-bottom: 14px;
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
}

.apps_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.app_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app_item span {
    color: var(--body-text-color);
    font-size: 9px;
    line-height: 1.2;
}

.app_item img {
    width: 120px;
    height: auto;
    display: block;
}


/* =========================
   SOCIAL
========================= */

.footer_social {
    text-align: right;
}

.social_links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.social_links a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.social_links a:hover {
    transform: translateY(-3px);
}

.social_links .fa-instagram {
    color: #e1306c;
}

.social_links .fa-facebook {
    color: #1877f2;
}

.social_links .fa-linkedin {
    color: #0a66c2;
}

.social_links .fa-youtube {
    color: #ff0000;
}


/* =========================
   COPYRIGHT
========================= */

.footer_copyright {
   padding: 20px 0px;
}

.footer_copyright p {
    margin: 0;
    color: var(--color-dark);
    font-size: 13px;
    line-height: 1.4;
}

.footer_copyright a {
    color: var(--color-dark);
    text-decoration: none;
}

.footer_copyright a:hover {
    color: var(--theme-color6);
}


    /* footer css end */



.wave-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    pointer-events: none;


    background:
        linear-gradient(
            to bottom,
            rgba(248,250,255,0),
            rgba(248,250,255,.25)
        );
}

#waveCanvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/*  */

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 70px;
    right: 18px;
    z-index: 1000;
}

.mobile_whatsapp {
    display: none;
}


.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: var(--theme-color6);
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 100px;
    position: relative;  
    display: inline-block;
   

}

.call_icon_div>a>img {
    width: 25px !important;
    filter: brightness(0%) invert(1);
    height: 25px;
    line-height: 25px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}


.whatsapp_icon_div>a {
    background-color: #25d467;
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 100px;
    position: relative;  
    display: inline-block;
     margin-bottom: 10px;

}


.whatsapp_icon_div>a>img {
    width: 25px !important;
    filter: brightness(0%) invert(1);
    height: 25px;
    line-height: 25px;
    object-fit: contain;
}

.mail_icon_div{
    width: 40px !important;
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
    position: relative;
    top: 10px;
}


.mail_icon_div>a {
    background-color: var(--theme-color6);
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 100px;
    position: relative;  
    display: inline-block;

}


.mail_icon_div>a>img {
     width: 25px !important;
    filter: brightness(0%) invert(1);
    height: 25px;
    line-height: 25px;
    object-fit: contain;
}

