@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
   --maincolor: #E6AF46;
   --green_color: #306385;
   /*--text_black: #373435;   */
    --text_black: #000;   
   --gradient: linear-gradient(to bottom right, #3D89AB, #A6A670);   /*linear-gradient(83deg, rgba(61,137,171,1) 0%, rgba(61,137,171,1) 21%, rgba(166,166,112,1) 66%);*/
}


::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: 0 0
}

::-webkit-scrollbar-thumb {
    background: var(--maincolor);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
     font-size: 100%;
     width: 100%;
     overflow-x: hidden;
     font-family: "Poppins", serif;
}

.tab-pane {
    display: none; /* Hide all tab panes by default */
}

.tab-pane.show {
    display: block; /* Show the active tab pane */
}

/*universal classes*/
.col-20{
    flex: 0 0 auto;
    width:20%;
}
.ng-mb-65{
    margin-bottom:65px;
}

p {
font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 400;
}

/*h1 {*/
/*    font-size: 54px;*/
/*    font-family: 'Prompt', sans-serif;*/
/*}*/
/*h2 {*/
/*    font-size: 32px;*/
/*    font-family: 'Prompt', sans-serif;*/
/*    font-weight: 400;*/
/*}*/
/*h3{*/
/*    font-size: 20px;*/
/*    font-family: 'Prompt', sans-serif; */
/*}*/
/*h4{*/
/*    font-size: 18px;*/
/*    font-family: 'Prompt', sans-serif; */
/*}*/
/*h5{*/
/*    font-size: 16px;*/
/*}*/
/*h6{*/
/*    font-size: 14px;*/
/*}*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 6rem auto!important;
    }
}
#enquiryModal .btn-close{
        float: inline-end;
}
.my_btn {
    color: var(--green_color);
    position: relative;
    text-decoration: none;
    /*text-transform: uppercase;*/
    font-size: 18px;
    z-index: 9999;
    padding: 3px 0;
    font-weight: 400;
}
.my_btn:hover{
    color: var(--green_color);
}
.my_btn.white:hover{
    color: #fff;
}
.my_btn img {
    position: absolute;
    width: 27px;
    /* margin-left: 0px; */
    top: 3px;
    right: -32px;
}

.my_btn.white:after {
    content: '';
    position: absolute;
    width: 63px;
    height: 63px;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%; /* Circle shape */
    top: -53%;
    right: -50px;
    z-index: -1;
    border-color: #fff; /* Light green (transparent) */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.4s ease, border-color 0.4s ease; /* Smooth fade and color transition */
        mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
    -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
}

.my_btn.white:hover:after {
    opacity: 1; /* Fully visible on hover */
    border-color: #fff; /* Dark green (solid) */
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
    -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
}

.my_btn.white{
    color: #fff;
        transition: 0.4s;
}


.my_btn:after {
    content: '';
    position: absolute;
    width: 63px;
    height: 63px;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%; /* Circle shape */
    top: -51%;
    right: -50px;
    z-index: -1;
    border-color: var(--green_color); /* Light green (transparent) */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.4s ease, border-color 0.4s ease; /* Smooth fade and color transition */
        mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
    -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
}

.my_btn:hover:after {
    opacity: 1; /* Fully visible on hover */
    border-color: var(--green_color); /* Dark green (solid) */
    mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
    -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 10%);
}

@keyframes circleExpand {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeEffect {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*@keyframes circleExpand {*/
/*    0% {*/
/*        height: 0;*/
/*        width: 0;*/
/*        border-width: 0px;*/

/*        top: 11px; */
/*        right: 11px;*/
/*    }*/
/*    50% {*/
/*        height: 20px;*/
/*        width: 20px;*/
/*        border-width: 1px;*/
/*        top: 1px; */
/*        right: 1px;*/
/*    }*/
/*    100% {*/
/*        height: 65px;*/
/*        width: 65px;*/
/*        border-width: 2px;*/
/*        top: -61%;*/
/*         right: -27px;*/
/*    }*/
/*}*/
/* end universal classes*/



/*top_menu*/
.search-box {
    display: flex;
    align-items: center;
    background: var(--gradient);
    padding: 10px 15px;
    border-radius: 30px;
    width: 270px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    float: inline-end;
}

.search-box i {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.search-box input {
  border: none;
  outline: none;
  background: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

.search-box input::placeholder {
  color: #e0e0e0;
}

.top_menu_logo img{
    width: 160px;
}
.top_menu_logo img:focus{
    outline: none;
}
.search-container {
    display: none; /* Default hidden */
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}


/*top_menu*/


/*banner*/

/*.banner {*/
/*    background-image: url("../images/banner.jpg");*/
/*    position: relative;*/
/*    height: 630px;*/
/*    background-size: cover;*/
/*    background-position: bottom center;*/
    
/*}*/


.banner.home_banner {
  position: relative;
  height: 74vh;
  overflow: hidden;
}

.banner_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner_video video {
  width: 100%;
  height: fit-content;
  object-fit: cover; /* ✅ video ko container ke hisaab se crop karega */
  object-position: center;
}
.banner_content h1{
        font-weight: 400;
    color: #fff;
}
.banner_content h2 {
    font-size: 19px;
    color: #fff;
}

.banner_content{
    margin-bottom: 78px;
    padding-top: 140px;
}
.banner.inner_banner{
    position: relative;
    height: 545px;
        background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.banner.inner_banner.sub_product_banner {
    height: 100px;
    background-size: cover;
}

.banner_content.inner_banner_content{
    padding-top: 0;
    margin-bottom: 0;
    height: 438px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner_content.inner_banner_content h1{
    margin-bottom: 20px;
}

.banner_content.inner_banner_content p{
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.inner_banner_content h1 {
        font-size: 35px;
    }

/*banner*/


/**/

.nav_1 .navbar-nav {
    width: 80%;
}
.custom-line {
    width: calc(100% - 1.5rem);
    margin-left: 0.8rem;
    height: 2px;
    background-color: #ffffff;
}
.nav_1 .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-right: 40px;
        padding-right: 0!important;
    padding-left: 0!important;
        position: relative;
}
.nav_1 .nav-link.active:before {
    content: "";
    position: absolute;
    height: 7px;
    width: 100%;
    background-color: var(--maincolor);
    bottom: -4px;
}


.nav_1 .nav-link img{
    width: 9px;
    margin-left: 6px;
}
.menu_social_list{
    width: 20%;
    display: flex;
    justify-content: end;
}
.menu_social_list a {
    /* background: white; */
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: 15px;
}
.menu_social_list a i{
    color: #859378;
    font-size: 13px;
}
.footer_text.menu_social_list{
    width: 100%;
}



/* dropdown menu css */



.dropdown-menu {
    position: absolute;
    z-index: 1000;
    left: 0;
     display: none; 
    min-width: 10rem;
    padding: .5rem 0;
    margin: 13px;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

/* Dropdown Layout */
.dropdown {
    position: absolute;
    top: 100%;
    left: 12px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
    width: 800px;
    z-index: 99;
    padding: 20px;
    display: flex;
}
.dropdown.sustain_dropdown{
  width: 940px;  
}
.sticky .dropdown {
    position: absolute;
    top: 100%;
    left: 17%;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
    width: 800px;
    padding: 20px;
    display: flex
;
}
.sticky .dropdown.sustain_dropdown{
    width: 940px; 
}
.nav-item:hover .dropdown {
    display: flex; /* Show dropdown on hover */
}

/* Columns inside dropdown */
.dropdown .column {
    flex: 1;
    margin-right: 20px;
}

.dropdown .column h4 {
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--green_color);
    display: block;
    padding: 5px 0;
    font-weight: 400;
    font-size: 14px;
}

.dropdown .column ul {
    list-style: none;
    padding: 0;
}
.dropdown .column ul li a {
    text-decoration: none;
    color: #000;
    display: flex;
    padding: 5px 0;
    font-weight: 400;
    font-size: 14px;
    /*text-transform: uppercase;*/
}
.dropdown .column ul li a img{
    width: 12px;
    margin-left: 6px;
    margin-top: 2px;
}
.dropdown .column ul li a:hover {
    color: var(--green_color);
}
.dropdown .column ul li a.active{
    color: var(--green_color);
}
/* Image Section */
.dropdown .image-column {
    /*flex: 1;*/
    text-align: center;
    width: 200px;
    object-fit: contain;
}

.dropdown .image-column img {
    width: 100%;
    height: auto;
    display: none;
    object-fit: contain;
}

.dropdown .image-column img.active {
    display: block;
    object-fit: contain;
}



.dropdown .column.subproduct ul li a {
    font-size: 13px;
}
.main_product a.active {
    font-weight: bold;
    color: #007bff;
}

.subproduct ul {
    display: none!important; /* All subproducts are hidden by default */
}
.subproduct ul.active{
    display: block!important;
}
.subproduct ul:first-child {
    display: block; /* Default to the first subproduct list */
}
.main_product a img{
    display: none;
}
.main_product a.active img{
    display: block;
}

.image-column img {
    display: none!important; /* Hide all images by default */
}

.image-column img.active {
    display: block!important; /* Show only the active image */
}


/* Hide the dropdown by default */
.nav-item .dropdown {
    display: none;
}

/* Show the dropdown when hovering over the nav-item */
.nav-item:hover .dropdown {
    display: flex; /* Use flex or block based on your layout */
}

/* Optional: Styling for the dropdown */

.home_about_img video{
    width: 100%;
}


.main_about a.active {
    font-weight: bold;
    color: #007bff;
}

.main_about a img{
    display: none;
}
.main_about a.active img{
    display: block;
}

.about-image-column img {
    display: none!important; /* Hide all images by default */
}

.about-image-column img.active {
    display: block!important; /* Show only the active image */
}


/*.main_sustains a.active {*/
/*    font-weight: bold;*/
/*    color: #007bff;*/
/*}*/

/*.main_sustains a img{*/
/*    display: none;*/
/*}*/
/*.main_sustains a.active img{*/
/*    display: block;*/
/*}*/

/*.sustain-image-column img {*/
/*    display: none!important;*/
/*}*/

/*.sustain-image-column img.active {*/
/*    display: block!important; */
/*}*/

/*.dropdown .column.subsustain ul li a {*/
/*    font-size: 13px;*/
/*}*/
/*.main_sustains a.active {*/
/*    font-weight: bold;*/
/*    color: #007bff;*/
/*}*/

/*.subsustain ul {*/
/*    display: none!important;*/
/*}*/
/*.subsustain ul.active{*/
/*    display: block!important;*/
/*}*/
/*.subsustain ul:first-child {*/
/*    display: block;*/
/*}*/
/*.main_sustains a img{*/
/*    display: none;*/
/*}*/
/*.main_sustains a.active img{*/
/*    display: block;*/
/*}*/


/*.main_media a.active {*/
/*    font-weight: bold;*/
/*    color: #007bff;*/
/*}*/

/*.main_media a img{*/
/*    display: none;*/
/*}*/
/*.main_media a.active img{*/
/*    display: block;*/
/*}*/

/*.media-image-column img {*/
/*    display: none!important; */
/*}*/

/*.media-image-column img.active {*/
/*    display: block!important; */
/*}*/

/*@media (max-width: 768px) {*/
/*    .dropdown {*/
/*        flex-direction: column;*/
/*        width: 100%;*/
/*    }*/
/*}*/

.sub_sustain_div{
    display: flex;
}
.sub_sustain{
     width: 65%;
}
.sub_sustain_child{
   width: 50%; 
}
.sustain_dropdown .column.first {
    width: 68%;
}
.dropdown .column.sustain_second {
    flex: inherit;
    margin-right: 20px;
    width: 32%;
}
/**/


/*sticky nav*/

.nav_2_main {
    position: fixed;
    top: -60px; /* Initially off-screen */
    left: 0;
    width: 100%;
    z-index: 99999; /* Ensure it stays on top */
    background: #fff; /* Background color for sticky menu */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
    opacity: 0; /* Initially hidden */
    transform: translateY(-100%); /* Start with the menu off-screen */
    transition: top 0.9s ease, opacity 0.9s ease, transform 0.9s ease; /* Smooth transition */
}

/* Sticky nav_2_main style */
.nav_2_main.sticky {
    top: 0; /* Move to the top of the screen */
    opacity: 1; /* Make it visible */
    transform: translateY(0); /* Move the menu into view */
}

.nav_2 .navbar-brand img{
    width: 150px;
}
.nav_2 .nav-link {
    color: var(--text_color);
    font-size: 16px;
    font-weight: 400;
    margin-right: 40px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    position: relative;
}
.nav_2 .nav-link.active:before {
    content: "";
    position: absolute;
    height: 7px;
    width: 100%;
    background-color: var(--maincolor);
    bottom: 0px;
}
.nav_2 .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}
.nav_2 .nav-link img {
    width: 14px;
    margin-left: 5px;
}
.search_icon{
    color: #fff;
    background: var(--gradient);
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.nav_2_main .menu_social_list {
    width: 5%;
    display: flex;
    justify-content: end;
     margin-right: 0rem; 
}
.nav_1 .navbar-nav .nav-item{
    line-height: 34px;
}
.nav_2 .navbar-nav .nav-item{
    line-height: 70px;
}
.nav_1 .navbar-nav .dropdown ul li{
    line-height: 20px;
}

.nav_2 .navbar-nav .dropdown ul li {
    line-height: 20px;
}

/*sticky nav*/

/*home about section*/
.title {
    position: relative;
    width: 60%;
    margin: 0 auto;
}
.new_title h2 {
    color: var(--green_color);
    line-height: 44px;
    /*text-transform: uppercase;*/
    margin-bottom: 16px;
    font-size: 28px;
}
.new_title p {
    font-size: 16px;
    line-height: 30px;
    /* margin-bottom: 20px; */
    font-weight: 300;
    color: var(--text_black);
}
.new_title b{
    font-weight: 500;
}
.new_title ul{
    padding-left: 20px;
}
.new_title ul li {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 300;
    color: var(--text_black);
}

.title h2 {
    color: var(--green_color);
    line-height: 44px;
    /*text-transform: uppercase;*/
    font-size: 28px;
}
.title.title_left{
    width: 100%;
}
.title.title_left:after {
    content: '';
    position: absolute;
    height: 1.2px;
    width: 13%;
    background: var(--green_color);
    left: 0;
        bottom: -17px;
}

.title:after {
    content: '';
    position: absolute;
    height: 1.5px;
    width: 14%;
    background: var(--green_color);
    left: 43%;
    bottom: -17px;
    
}
.title p{
    color: var(--text_black);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 300;
}
.about_content{
    margin: 40px 0;
}
.about_content p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--text_black);
    line-height: 30px;
    font-weight: 300;
}

.help_img_bg video{
    width: 100%;
}

/*home about section*/

/*home counter section */
.row.counter_row {
    background: var(--gradient);
    padding: 50px 15px;
    border-radius: 15px;
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.counter_div {
    color: #fff;
    border-right: 1.5px solid #fff;
}
.main_counter{
    display: flex;
    justify-content: center;
}
.counter {
    font-size: 27px;
    line-height: 27px;
    height: 25px;
    margin-bottom: 3px;
}
.main_counter h4.text {
    font-size: 24px;
    line-height: 28px;
    font-weight: 200;
    margin-left: 0px;
    height: 23px;
    margin-bottom: 0;
}
.main_counter h4 {
    font-size: 28px;
    font-weight: 300;
    line-height: 27px;
    margin-left: 5px;
    height: 23px;
    margin-bottom: 0;
}
.counter_div p{
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 300;
}

/*home counter section */

/*home icon products */
.icon_image_div {
width: 46%;
    margin: 0 auto 12px;
    /* height: 78px; */
    margin-bottom: 12px;
    position: relative;
    transition: .3s;
}

.sub_product {
    margin-bottom: 17px;
    padding-top: 17px;
    transition: all .3s ease;
}
.sub_product img {
    width: 42% !important;
    height: 74px;
    object-fit: contain;
    margin-bottom: 13px;
    transition: all .5s ease;
    margin: 0 auto 13px;
}
.sub_product a.hover_image{
   display: none;
    opacity: 0; 
    transition: opacity .5s ease; 
}
.sub_product:hover a.simple_image{
   display:none; 
    transition: all .5s ease;
}
.sub_product:hover a.hover_image{
   display:block; 
    opacity: 1; /* Set opacity to 1 on hover */
    animation: fadeIn .5s ease; /* Apply fadeIn animation */
}
/*home icon products */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.sub_product p{
    font-size: 1.125em;
    font-weight: 300;
     color: var(--text_black);
}
.sub_product:hover p{
   color: red;
}
.sub_product a{
    text-decoration: none;
    color: var(--text_black);
}

.owl-nav {
    display: block !important;
    position: absolute;
    top: 26%;
    width: 100%;
}
.without_content .owl-nav{
    top: 44%;
}
.owl-nav button{
    width: 18px;
}
.owl-nav button img{
    width: 100%;
}
.owl-nav button.owl-prev{
    position: absolute;
    left: 0;
}
.owl-nav button.owl-next{
    position: absolute;
    right: 0px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
     background: transparent!important; 
     color: #FFF; 
     text-decoration: none; 
}

#subproduct .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
}

/*icon products*/

/*products section home page */
    /* Card styles */
    .card {
      border: none;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
    }
    .card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }
    .card h5 {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 255, 255, 0.8);
      padding: 5px 10px;
      font-size: 14px;
      font-weight: bold;
      /*text-transform: uppercase;*/
      border-radius: 5px;
    }

/*products section home page */



/*help_img*/
.white_title {
    position: absolute;
    width: 40%;
    top: 27%;
    left: 7%;
}
.white_title h2{
    color: #fff;
}

.help_img .white_title p {
    color: #fff;
    width: 70%;
    margin: 13px auto;
    font-weight: 300;
}

.succes_story .help_img .white_title p {
    color: #fff;
    width: 100%;
    margin: 13px 0 100px;
}
/*help_img*/


/**/

.product_cat_card {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cat_tag{
    position: absolute;
    top: 24px;
    color: var(--green_color);
    left: 32px;
    width: 100%;
}
.cat_tag h4{
    font-size: 18px;
    font-weight: 600;
}
.cat_tag h4 img {
    width: 12px;
}

.product_cat_card.small .pro_cat_img {
    height: 291px;
    overflow: hidden;
}

/**/

/*team_card*/
.team_card{
    width: 80%;
    margin: 0 auto;
}
.team_card .team_img {
    width: 86%;
    margin: 0 auto 18px;
}
.team_content{
    text-align: center;
}
.team_content h3{
font-size: 22px;
    font-weight: 300;
    color: var(--green_color);
    margin-bottom: 7px;
}
.team_content p{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--text_black);
}
/*team_card*/

/*blog cards*/
.blog_card{
    width: 80%;
    margin: 0 auto;
}
.blog_content{
    margin-top: 20px;
    text-align: center;
}
.blog_content h3 {
    color: var(--text_black);
    font-weight: 300;
    margin-bottom: 21px;
    font-size: 18px;
    text-decoration: none;
    line-height: 30px;
}
.blog_content h3 a {
    /*text-transform: uppercase;*/
    color: var(--text_black);
    font-weight: 300;
    margin-bottom: 21px;
    font-size: 18px;
    line-height: 32px;
    text-decoration: none;
}
.blog_content p{
    margin-bottom: 0;
    color: var(--text_black);
    line-height: 25px;
    width: 78%;
    margin: 0 auto;
    font-weight: 300;
}
.my-nav-tabs{
    margin-bottom: 40px;
}
.my-nav-tabs a {
    border: 2px solid var(--green_color);
    border-radius: 30px;
    color: var(--green_color);
    font-weight: 400;
    padding: 0.5rem 3rem;
    margin: 0 20px;
    transition: 0.3s;
    /*text-transform: uppercase;*/
}
.my-nav-tabs a:hover {
    /* text-shadow: 0px 4px 4px rgb(0 0 0 / 35%); */
    color: var(--green_color);
    text-shadow: 1px 4px 2px #5b5b5b66;
}
.my-nav-tabs a.active {
    background: var(--gradient);
    color: #fff;
    border: 2px solid #8e9f7d;
    transition: 0.3s;
}
/*blog cards*/


/*home form*/
.home_form .form-control {
    border: none;
    border-bottom: 2px solid #a6a6a6;
    padding: 10px 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    color: #96989a;
}
.home_form .form-control:focus {
    box-shadow: none;
}
.submit_btn {
    background-color: #fff;
    border: 2px solid var(--green_color);
    border-radius: 30px;
    color: var(--green_color);
    font-weight: 400;
    padding: 0.7rem 3rem;
    margin: 0 20px;
    transition: 0.3s;
    /*text-transform: uppercase;*/
}
.submit_btn:hover{
    background: var(--gradient);
    color: #fff;
    border: 2px solid #8e9f7d;
    transition: 0.3s;
}



/*home form*/

/*footer css*/

.footer_main {
    background: var(--gradient);
    padding: 20px 0 1px;
}

.footer_main .footer_text p{
  margin-bottom: 7px;  
}

.footer_main a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.footer_border {
    border-bottom: 2px solid #fff;
    padding: 0;
    margin-bottom: 9px;
}
.footer-copy{
    background: #306385;
}
.footer-copy p {
    color: #fff;
    font-weight: 400;
    margin-top: 6px;
    font-size: 13px;
    margin-bottom: 4px;
}
/*footer css*/



/*//////////////////////// Product pages css //////////////////////////*/
.product_tabs
{
    margin-bottom: 98px;
}


.read_btn {
    border: 1.5px solid var(--green_color);
    border-radius: 24px;
    color: var(--green_color);
    font-weight: 400;
    padding: 0.4rem 1.8rem;
    transition: 0.3s;
    /*text-transform: uppercase;*/
    background-color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.read_btn:hover{
    background: var(--gradient);
    color: #fff;
    border: 1.5px solid transparent;
    transition: 0.3s;
}
.read_left_btn{
  margin: inherit;  
}
.product_card{
    margin-bottom: 30px;
}
.product_img{
    /*border-radius: 21px;*/
    overflow: hidden;
}
.product_content{
    text-align: center;
    margin-top: 30px;
}
.product_content a{
    text-decoration: none;
}
.product_content h3{
    font-size: 22px;
    color: var(--green_color);
    font-weight: 400;
    margin-bottom: 19px;
}
.product_about_content p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 300;
    color: var(--text_black);
}
.product_about_content strong{
    font-weight: 500!important;
}
.product_about_content.text-left p {
    text-align: left;
}

.product_about_content.text-left br{
    display: none;
}

.product_content p{
    font-size: 16px;
    padding: 0 14px;
    margin-bottom: 32px;
}
.product_tabs .nav-pills{
    border-top: 1.4px solid #d2d3d5;
    border-left: 1.4px solid #d2d3d5;
}
.product_tabs .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0;
    /*text-transform: uppercase;*/
    text-align: left;
    background: linear-gradient(83deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgb(225 225 225) 100%);
    /* background: linear-gradient(83deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 21%, rgb(238 238 238) 100%); */
    border-bottom: 1.4px solid #d2d3d5;
    color: var(--text_black);
    font-weight: 400;
    font-size: 17px;
    padding: 13.24px 16px;
}

.product_tabs .nav-pills .nav-link.active {
    background-color: #fff !important;
    background: #fff !important;
    font-weight: 500;
    color: var(--green_color)!important;
}

.product_tab_img{
    position: relative;
}
.product_tab_content {
    position: absolute;
    background-color: #306385;
    right: -79px;
    left: 29px;
    bottom: -40px;
    color: #fff;
    font-weight: 400;
    padding: 27px 80px 27px 27px;
    font-size: 18px;
}
.product_tab_content a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}
.product_tab_img img{
    width: 100%;
}
.white_title.sustain{
    position: absolute;
    width: 100%;
    top: 32%;
    left: 0;
}
.white_title.sustain p{
    font-size: 17px;
}
.black_heading h2{
    font-weight: 300;
    font-size: 25px;
    color: var(--text_black);
    line-height: 37px;
}

.splide__arrow {
    top: -220px!important;
}
.splide__track--fade>.splide__list>.splide__slide.is-active {
    opacity: 1;
    z-index: 1;
}
.splide__slide img {
  width: 100%;
  border-radius: 5px;
}
#image-slider-list li.splide__slide{
    height: 400px!important;
}
#thumbnail-slider .splide__slide img {
  cursor: pointer;
  border: 2px solid transparent;
}

#thumbnail-slider .splide__slide.is-active img {
  border-color: #007bff;
}
.splide__track {
    margin-top: 20px;
}
.splide__arrow svg {
    fill: #ffffff!important;
}
.splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
    opacity: 0.4;
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid #efefef96 !important;
    opacity: 1;
}

.product_child_main{
    display: flex;
    justify-content: space-between;
}
.product_child_title {
    width: 80%;
    border-bottom: 1.5px solid var(--green_color);
    margin-bottom: 40px;
}
.product_child_title h5{
    font-size: 20px;
    color: var(--green_color);
}
.child_banner{
    background: #E6E7E8;
    padding: 30px;
    margin-bottom: 40px;
}
.child_banner_content h1 {
    color: var(--green_color);
    line-height: 44px;
    /*text-transform: uppercase;*/
    margin-bottom: 16px;
    font-size: 28px;
}

.child_banner_content p {
    font-size: 16px;
    line-height: 30px;
    /* margin-bottom: 20px; */
    font-weight: 300;
    color: var(--text_black);
}
.product-box {
    padding: 0;
    margin-bottom: 30px;
    border-radius: 0;
    background: #fff;
    border-bottom: 2px solid var(--green_color);
}
.product-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-link {
    text-decoration: none;
    font-weight: bold;
}

.child_banner_image{
    width: 80%;
}
.product-box ul {
    width: 100%;
    margin-bottom: 31px;
}
.product-box ul li strong{
    font-weight: 600;
    display: inline-block;
    width: 20%;
}
.product-box ul li span{
    width: 80%;
}
.product-box ul li {
    display: flex;
    margin-bottom: 9px;
    font-size: 15px;
    color: var(--text_black);
}
.product_child_cards .product-box:first-of-type{
 border-bottom: 2px solid var(--green_color)!important;
}
.product_child_cards .product-box:last-of-type{
    border: none;
}
.product_child_enquiry {
    width: 100%;
    display: flex
;
    margin-bottom: 23px;
}
.blank_div_20{
    width: 20%;
}
.download_pdf_btn{
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    color: var(--green_color);
    font-size: 15px;
    transition: 0.3s;
}
.download_pdf_btn:hover{
    color: var(--maincolor);
    transition: 0.3s;
}
.download_pdf_btn img{
    width: 36px;
    margin-left: 8px;
    transition: 0.3s;
}
.product_child_enquire_btn{
    margin-left: 50px;
    text-decoration: none;
    background: var(--green_color);
    color: #fff;
    padding: 7px 14px;
    display: inline-block;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.3s;
}
.product_child_enquire_btn:hover{
    background: var(--maincolor);
    transition: 0.3s;
    color: #fff;
}


/*////////////////////////// end product pages css ///////////////////////////*/

/*////////////////////////// start sustainability all pages css ///////////////////////////*/

.upcoming_history img{
    width: 100%;
}

.white_title_abi.sustain p{
    width: 80%;
    margin: 0 auto;
}

.white_title_abi{
    position: absolute;
    top: 9%;
    left: 5%;
    color: #fff;
    width: 90%;
}
.white-title-abi-tab{
    margin-top:50px;
}
.new_read_btn {
    border: 1.5px solid #ffffff;
    border-radius: 24px;
    color: #ffffff;
    font-weight: 400;
    padding: 0.4rem 1.8rem;
    transition: 0.3s;
    /*text-transform: uppercase;*/
    background-color: #ffffff00;
    text-decoration: none;
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.new_read_btn:hover {
    background: var(--gradient);
    color: #fff;
    border: 1.5px solid transparent;
    transition: 0.3s;
}
.product_about_content ul li{
    font-size: 16px;
    margin-bottom: 10px;
}

.product_about_content.margin {
    margin: 40px 0;
}
.product_about_content p strong{
    font-weight: 600;
}
.product_about_content li strong{
    font-weight: 600;
}
.margin{
    margin: 40px 0;
}

.scrollable-wrapper {
    display: flex;
    position: relative;
    height: 673px; /* Fixed scrollable area height */
    overflow: hidden;
       gap: 10px; /* Space between columns */
}

/* Left and Right Columns */
.scroll-column {
    flex: 1;
    padding: 10px;
    overflow: hidden; /* Hide native scrollbars */
        scroll-behavior: smooth;
}

/* Center Scrollbar */
.center-scrollbar {
    width: 24px;
    background: #ffffff;
    position: absolute;
    left: calc(50% - 12px);
    transform: translateX(0);
    height: 100%;
    cursor: pointer;
    border: 1.5px solid var(--green_color);
    border-radius: 20px;
}


/* Card Styling */
.solution-card {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    height: 280px;
}
#right-column .solution-card {
    align-items: end;
} 
.solution-img {
    width: 130px;
    height: auto;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 11px;
}
.read-more-btn {
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    padding: 6px 17px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: none;
}
.read-more-btn:hover {
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    padding: 6px 17px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}
        
#custom-thumb {
    position: absolute;
    width: 23px;
    height: 121px;
    background: var(--gradient);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    left: -1px;
    /* top: -65px; */
}
.solution_top_card{
    width: 90%;
    display: flex;

}

.solution_content h4{
    font-weight: 400;
    color: var(--green_color);
    text-transform: capitalize;
}
.solution_content {
    text-align: end;
    width: 100%;
}
.solution_content p{
    font-size: 15px;
    line-height: 27px;
    text-align: end;
    color: var(--text_black);
}

.solution_heading_p{
    font-weight: 600;
}
.solution_new_content_ p{
    margin-bottom: 0;
}
.solution_new_content_ p strong{
   font-weight: 500;
}
.solution_new_content_ ul li strong{
    font-weight: 600;
}

.upcoming_solution_heading{
    color: var(--maincolor);
}
.upcoming_solution_heading strong{
    font-weight: 600;
}
.upcoming_slt{
    display: flex;
    flex-wrap: wrap;
}
.upcoming_slt .upcoming_slt_1{
    width: 50%;
}
.plants_information h4{
    text-align: center;
    margin: 20px;
    color: var(--green_color);
    font-size: 28px;
    /*text-transform: uppercase;*/
}

.plants_information ul{
    display: flex;
    justify-content: space-between;
    padding-left: 0;
}

.plant_boxes{
    display: flex;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto;
}
.plant-box ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.plant-box{
    padding: 24px 39px;
    border: 1px solid #000;
}
.plant-box strong{
    display: inline-block;
    margin-bottom: 10px;
}


#right-column .solution_content {
    text-align: start;
}
#right-column .solution_content p {
    text-align: start;
}
#right-column .solution-img {
    margin-left: 1rem;
}
#right-column .solution_top_card {
    margin-left: 10%;
}

.climate_card{
    width: 85%;
    margin: 0 auto;
}

.climate_card .climate_img{
    margin-bottom: 20px;
}
.climate_content p{
    color: var(--text_black);
    line-height: 25px;
}

.climate_content.report p{
    text-align: center;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    left: 1%;
}
.owl-carousel.blog_carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    left: 0%;
}

.new_title p{
    /*margin-bottom: 40px;*/
}
.new_title.mb-0 p{
    margin-bottom: 0;
}
.black_heading p{
    margin-bottom: 40px;
}


/* mobile scrooll card */
.new_solution_top_card {
    padding: 10px 5px;
    background: #efefef;
    border-radius: 8px;
    margin: 0 0px 10px;
}
.new_solution_img img{
    display: none!important;
}
.new_solution_img img{
        width: 80px !important;
    height: 80px;
    object-fit: cover;
    margin-right: -5px;
    border-radius: 11px;
}

.new_solution_content{
    padding: 0 8px 0 20px;
}

.new_solution_content h4{
    font-weight: 400;
    color: var(--green_color);
    text-transform: capitalize;
    font-size: 17px;
}
.new_solution_content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 3px;
    font-weight: 500;
}
.new_solution_img{
    padding: 0 8px 10px 20px;
}
.new_solution_content ul{
    padding-left: 18px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}
.new_solution_content p strong{
    font-weight: 600;
}
.new_solution_img.dflex{
    display: flex;
}
.new_solution_img.dflex img {
    margin-right: 22px;
}

/*////////////////////////// end sustainability pages css ///////////////////////////*/

/*////////////////////////// about page pages css ///////////////////////////*/

.global_img {
    position: relative;
    display: inline-block;
}

/* Base styles for the map container */
.global_img {
    position: relative;
}

/* Styles for the country pointers */
.country-pointer {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #eb0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #fff;
    padding: 1px;
    z-index: 0;
}

.country-pointer:hover {
    cursor: pointer;
}

/* Tooltip Styling */
.country-tooltip {
    position: absolute;
    background: rgb(220 174 58);
    color: white;
    padding: 3px 8px;
    font-size: 13px;
    border-radius: 5px;
    white-space: nowrap;
    display: none;
    transform: translate(-50%, -150%);
    pointer-events: none;
    z-index: 999999;
}

.country-pointer:hover .country-tooltip {
    display: block;
}




.core_value_card{
    text-align: center;
}

.new_ul ul li.list-group-item {
    padding: 0;
    border: 0;
    margin-bottom: 10px;
}
.new_ul ul li.list-group-item strong{
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
}
.new_ul ul li.list-group-item .list-group{
    font-size: 14px;
    /* list-style-type: circle; */
}
.new_ul ul li.list-group-item .list-group li{
    position: relatiive;
}
.new_ul ul li.list-group-item .list-group li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid #2b2b2b;
    left: -13px;
    top: 6px;
    border-radius: 50%;
}
.core_img {
    margin: 0 auto 32px;
    width: 43px;
        height: 50px;
      
}
.core_content h5 {
    color: var(--text-color);
    font-size: 16px;
    /* height: 70px; */
    font-weight: 500;
    position: relative;
    margin-bottom: 18px;
    padding: 0 12px;
    line-height: 25px;
}
.core_content p{
    /* font-size: 16px; */
    margin-bottom: 0;
    padding: 0 14px;
}

.csr_title h3{
  font-weight:300;
}

.cac_ccards-content h4 {
    font-size: 26px;
    margin-bottom: 5px;
    color: var(--green_color);
}
.cac_ccards-content span{
    font-size: 19px;
}

.cac_ccards-content{
  position:relative;    
}

.cac_ccards-content p {
    margin: 15px 0px;
    font-size: 18px;
    height: 48px;
}
.cac_ccards-content p:after {
    content: '';
    position: absolute;
    height: 1.2px;
    width: 10%;
    background: var(--green_color);
    left: 0%;
    bottom: 0;
}

.cac_ccards-pera{
  margin-top:25px;    
}

.cac_ccards-pera p {
    width: 100%;
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 10px;
}

.select h3{
    color: var(--green_color);
    font-size: 30px;
    font-weight: 400;
}

.radio_item {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: left;
    border: 1.5px solid #a6a6a6;
    background-color: white;
    transition: background-color 0.3s;
    font-size: 16px;
}
.radio_item.selected {
background: var(--gradient);
color: white;
}

.radio_item input{
width: 40px;
height: 20px;
margin-right:10px;
}

.location h4{
    font-size: 25px;
    color: var(--green_color);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.location p{
    font-size: 20px;
    line-height: 30px;
    color: var(--text_black);
}

.location_hr{
    position:relative;
    margin: 85px 0px;
}

.location_hr:after {
    content: '';
    position: absolute;
    height: 1.5px;
    width: 8%;
    background: var(--green_color);
    left: 46%;
    bottom: 45px;
}

.solution_content.gradient_text_h4 h4{
    font-weight: 400;
    background-image: var(--gradient);
    color: transparent;
    background-clip: text;
}
.new_solution_img.gradient_text_h4 h4 {
    font-weight: 500;
    background-image: var(--gradient);
    color: transparent;
    background-clip: text;
    font-size: 27px;
    margin-bottom: 0;
}
.certification .core_value_card{
    margin-bottom: 50px;
}
.certification .core_img {
    margin: 0 auto 10px;
    width: 145px;
    height: 145px;
}

/*cta */
.cta_div{
    background: #175c82;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 15px 25px;
}
.cta_div .mobile a{
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 400;
}
.cta_div .mobile{
    position: relative;
}
.cta_div .mobile::after {
    position: absolute;
    content: '';
    width: 1.5px;
    background: #fff;
    right: -22%;
    height: 16px;
    bottom: 5px;
}

.form-select option{
      padding: 8px 14px;
}

.cta_div .mobile:last-of-type::after{
    display: none;
}

.blog-grid-bio{
  margin-top:10px;    
}

.blog-grid-bio-heading span{
    font-size: 13px;
    font-weight: 400;
}

.blog-grid-bio-heading h4 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 0px;
    color: var(--green_color);
    line-height: 31px;
}

.blog-grid-bio-content{
  display: flex;
  justify-content: space-between;
  place-items: baseline;
  flex-wrap: wrap;
}

.blog-grid-bio-content p{
   font-size: 15px;
   margin-bottom: 0;
}

.blog-grid-bio-content a{
    color: #373435;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.products_search li a {
    text-decoration: none;
    color: var(--green_color);
    padding: 7px 17px;
    display: inline-block;
    font-weight: 400;
}

.press{
  display: grid;
}

.blog-grid-bio-content h4 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 0px;
    color: var(--green_color);
}

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

.plant_img {
    position: relative;
    margin-bottom: 24px;
}

.blog_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ddd;
    color: var(--green_color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.plant_card:hover .blog_overlay {
    opacity: 1;
}

/* Positioning for each country */
.gpi-australia {
    bottom: 118px;
    right: 206px;
}
.gpi-srilanka {
    bottom: 227px;
    right: 369px;
}
.gpi-india {
    right: 370px;
    bottom: 274px;
}
.gpi-argentina {
    bottom: 109px;
    left: 459px;
}
.gpi-chile {
    bottom: 122px;
    left: 422px;
}
.gpi-brazil {
    bottom: 199px;
    left: 522px;
}
.gpi-colombia {
    bottom: 218px;
    left: 392px;
}
.gpi-usa {
    left: 311px;
    top: 209px;
}

.gpi-mexico {
    left: 285px;
    top: 297px;
}
.gpi-guatenala {
    left: 328px;
    top: 313px;
}
.gpi-honduras {
    left: 347px;
    top: 318px;
}
.gpi-salvador {
    left: 351px;
    top: 333px;
}
.gpi-bangladesh {
    bottom: 283px;
    right: 319px;
}
.gpi-nepal {
    bottom: 307px;
    right: 334px;
}
.gpi-southafrica {
    bottom: 135px;
    right: 576px;
}
.gpi-tanzania {
    bottom: 185px;
    right: 527px;
}
.gpi-kenya {
    bottom: 208px;
    right: 524px;
}
.gpi-nigeria {
    bottom: 238px;
    left: 688px;
}

.gpi-togo {
    bottom: 244px;
    left: 667px;
}
.gpi-ivorycoast {
    bottom: 238px;
    left: 647px;
}
.gpi-senegal {
    bottom: 247px;
    left: 618px;
}
.gpi-spain {
    left: 629px;
    top: 221px;
}
.gpi-uae {
    bottom: 276px;
    right: 455px;
}
.gpi-bahrain {
  bottom: 247px;
  right: 421px;
}
.gpi-jordan {
    bottom: 295px;
    right: 523px;
}
.gpi-italy {
    left: 699px;
    top: 216px;
}
.gpi-slovenia {
    left: 709px;
    top: 205px;
}
.gpi-netherland {
    left: 663px;
    top: 190px;
}
.gpi-iran {
    bottom: 300px;
    right: 466px;
}
.gpi-belgium {
    left: 649px;
    top: 202px;
}
.gpi-turkey {
    left: 768px;
    top: 225px;
}
.gpi-germany {
    left: 676px;
    top: 195px;
}
.gpi-poland {
    left: 708px;
    top: 181px;
}
.gpi-france {
    left: 647px;
    top: 218px;
}
.gpi-ukraine {
    left: 760px;
    top: 197px;
}
.gpi-tunisia {
    left: 678px;
    top: 243px;
}
.gpi-saudi-arabia {
    bottom: 272px;
    right: 505px;
}
.gpi-russia {
    right: 360px;
    top: 132px;
}
.gpi-newzealand {
    bottom: 25px;
    right: 103px;
}
.gpi-korea {
    bottom: 299px;
    right: 203px;
}
.gpi-malaysia {
    bottom: 213px;
    right: 294px;
}
.gpi-mauritius {
    bottom: 167px;
    right: 474px;
}
.gpi-zimbabwe {
    bottom: 146px;
    right: 558px;
}
.gpi-namibia {
    bottom: 151px;
    right: 598px;
}
.gpi-malawi {
    bottom: 176px;
    right: 543px;
}
.gpi-uganda {
    bottom: 212px;
    right: 534px;
}
.gpi-oman {
    bottom: 265px;
    right: 463px;
}
.gpi-yemen {
    bottom: 260px;
    right: 494px;
}
.gpi-peru {
    bottom: 170px;
    left: 386px;
}
.gpi-canada {
    left: 290px;
    top: 153px;
}
.gpi-costarica {
    left: 360px;
    top: 327px;
}
.gpi-egypt {
    bottom: 294px;
    right: 548px;
}
.gpi-sudan {
    bottom: 277px;
    right: 543px;
}
.gpi-algeria {
    left: 665px;
    top: 255px;
}
.gpi-uk {
    left: 652px;
    top: 190px;
}




/*////////////////////////// end about page pages css ///////////////////////////*/

/*////////////////////////////////////// Industry Pages  ////////////////////////////////////////////////*/

.recycable .white_title {
    position: absolute;
    width: 60%;
    top: 32%;
    left: 20%;
    text-align: center;
    /*text-transform: uppercase;*/
}

.examples h4{
    font-size: 24px;
    text-transform: capitalize;
}
.examples ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.examples ul li {
    width: 50%;
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 5px;
    color: var(--text_black);
    position: relative;
}

.examples ul li:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #2b2b2b;
    left: -15px;
    border-radius: 50%;
    top: 49%;
}




/*////////////////////////////////////////// Industry Pages ////////////////////////////////////////*/

/* sustainability */

.pro_info_img{
    /*border-radius: 60px;*/
    overflow: hidden;
}

/* search page css */

/*search system*/
.products_search li {
    list-style-type: none;
    background: #ececec;
    width: fit-content;
    margin-right: 14px;
    margin-bottom: 15px;
}
.products_search li a {
    text-decoration: none;
    color: var(--green_color);
    padding: 7px 17px;
    display: inline-block;
}
.products_search h4{
    margin-bottom: 18px;
}
.searc_btn{
    border-radius: 0 4px 4px 0;
}

/* offcanvas menu css */
.paren_mobile_menu{
    display: flex;
    justify-content: space-between;
}
.paren_mobile_menu div{
    width: 49%;
    text-align: center;
}

.paren_mobile_menu h3 {
    background: var(--gradient);
    color: #fff;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 3px;
    margin-bottom: 0px;
}
.paren_mobile_menu h3 a{
    text-decoration: none;
    color: #fff;
}

.mobile_menu .offcanvas-title {
    width: 103px;
    border-radius: 8px;
}
.mobile_menu .offcanvas-body {
    padding-top: 0 !important;
    margin-top: 11px;
}
.n-menu{
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.n-menu .nav-item .nav-link::before{
  display: none;
}
.mobile_menu .offcanvas.show, .offcanvas.offcanvas-start {
    width: 280px !important;
    background: #fff;
    z-index: 99999;
    /* color: #fff; */
}
.n-menu .navbar-nav a.nav-link {
  background: #f2000000;
  padding: 9px 12px 10px !important;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  color: #393939 !important;
  line-height: normal;
  margin: 0!important;
}
.n-menu .navbar-nav a.nav-link.active{
  background: #f2f2f2;

}
.n-menu .navbar-nav a.nav-link i{
  margin-right: 11px;
  color: #b4b4b4;
}

.n-menu .navbar-nav a.nav-link.active i{
  margin-right: 11px;
  color: #000;
}

.side-canvas {
    border: none;
    background: #ffffff;
    border: 1.4px solid #ffffff;
    padding: 1px 5px;
    border-radius: 1px;
}
.mobile_menu{
  display: flex;
  align-items: center;
}
.mobile_connect a {
  font-size: 15px;
  padding: 4px 8px 4px;
  margin-right: 12px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #ffffff9c;
}
.n-menu .navbar-nav .dropdown-menu {
  padding: 0 12px;
  box-shadow: none;
}
.n-menu .menu_icons {
  width: 20px;
  margin-right: 6px;
}
.n-menu .navbar-nav .dropdown-item {
  font-size: 0.8500em;
  padding: 8px 8px;
}
.mobile_menu .acn_office ul li a {
  font-size: 1.1em;
  margin-right: 17px;
}
.mobile_acno_info ul li a {
  font-size: 0.7500em;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 400;
}
.mobile_acno_info ul li a i{
  font-size: 1.2em;
  margin-right: 10px;
}
.mobile_acno_info ul li{
  margin-bottom: 10px;
}

.mobile_menu .n-menu.services_menus .accordion-item {
    border: 0
}

.mobile_menu .n-menu.services_menus .accordion-item button {
    border: 0;
    background: var(--gradient);
    padding: 4px 10px !important;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff !important;
    line-height: 25px;
    margin: 0 !important;
    box-shadow: none;
    display: flex
;
    justify-content: space-between;
}

.mobile_menu .n-menu.services_menus .accordion-item a {
    border: 0;
    background: var(--gradient);
    padding: 4px 10px !important;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 !important;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px !important;
    text-decoration: none;
}
.mobile_menu .n-menu.services_menus .accordion-item a.accordion-button {
    color: #ffffff !important;
}
.mobile_menu .n-menu.services_menus .accordion-item button i{
    width: 9%;
}
.mobile_menu .n-menu.services_menus .accordion-item a i{
    width: 9%;
}
.mobile_menu .n-menu.services_menus .accordion-item button span{
    width: 84%;
}
.mobile_menu .n-menu.services_menus .accordion-item button:focus {
    box-shadow: none
}

.mobile_menu .n-menu.services_menus .accordion-item button:after {
    display: none
}

.mobile_menu .n-menu.services_menus .accordion-item button {
    margin-bottom: 5px!important
}

.mobile_menu .n-menu.services_menus .accordion-item {
    padding: 0px 0 3px!important;
    border-radius: 3px;
    font-weight: 500;
    color: #393939!important;
    line-height: normal;
    margin: 0!important
}

.mobile_menu .n-menu.services_menus .accordion-item .accordion-body {
    padding: 0px
}

.mobile_menu .n-menu.services_menus .accordion-item .accordion-body ul li a {
    background: #fffbeec9;
    padding: 9px 12px !important;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green_color);
    line-height: normal;
    margin: 0 !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}
.mobile_menu .n-menu.services_menus .accordion-item a.accordion-button:after {
    visibility: hidden;
}
.mobile_menu .n-menu.services_menus .accordion-item .accordion-body ul li {
    margin-bottom: 4px
}

.mobile_menu .n-menu.services_menus .accordion-item .accordion-body ul {
    margin-bottom: 0
}
.btn-close {
    background-size: 12px;
}
.btn-close:focus{
    box-shadow: none;
}
.acn_office p strong{
    background: #f1f1f1;
    padding: 4px 10px;
    font-size: 11px;
}
.acn_office p{
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
}



@media only screen and (min-width: 991px)  {
.mobile_menu{
  display: none;
}

}

/*end offcanvas menu*/


.form-radio-box {
  text-align: center;
}

.radio_item {
    padding-right: 10px;
    display: inline-flex;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    height: 50px;
    border: 1.5px solid #757575;
    border-radius: 0;
    text-align: center;
    font-size: 15px;
    color: #211e1f;
    padding-left: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    font-weight: 300;
}

.radio_item input {
  display: none;
}

.radio_custom {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 2px solid #d1d3d4;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #d1d3d4;
    transition: all 0.3s ease;
}
.radio_item:hover {
    border-color: var(--green_color);
}
.radio_item input:checked + .radio_custom {
    background-color: var(--green_color);
    border-color: var(--green_color);
}

.radio_item input:checked + .radio_custom ~ span {
  font-weight: bold;
}

.thanks_div{
    background: #eaeceb;
    margin: 50px;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
}

.know_more{
    display: none;
}

/*career page css*/

.form-container-new .submit_btn:hover{
    border: 2px solid #fff;
}

.form-container-new label.upload-box {
    border: 1.5px solid #ffffff;
    padding: 10px 34px;
    margin-bottom: 20px;
    width: 100%;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border-radius: 9px;
}
.form-container-new{
    background: var(--gradient);
    padding: 27px;
    border-radius: 18px;
}

.form-container-new label input{
    width: 228px;
}

.why_join_us ul li{
    margin-bottom: 20px;
    font-size: 16px;
}
.job_card ul{
    list-style-type: none;
    padding-left: 0;
    line-height: 49px;
    font-weight: 500;
}
.job_card h5{
    font-weight: 500;
    font-size: 18px;
}
.job_card a{
    display: block;
    width: fit-content;
    margin: 0;
    text-decoration: none;
}
.join_image {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 30px 23px;
    width: 56%;
}
.join_image p{
    font-size: 17px;
    font-weight: 400;
}
.join_image a{
    color: var(--green_color);
    font-size: 22px;
    text-decoration: none;
}

.resume_form legend{
    font-size: 20px;
    font-weight: 500;
    color: var(--green_color);
}

.resume_form label{
    font-size: 14px;
    margin-bottom: 4px;
}
.resume_form input{
    border: none;
    border-bottom: 1.4px solid #a6a6a6;
    padding: 10px 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #96989a;
}
.resume_form select{
    border: none;
    border-bottom: 1.4px solid #a6a6a6;
    padding: 10px 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #96989a;
}
.resume_form input:focus{
    box-shadow: none;
}
.resume_form select:focus{
    box-shadow: none;
}
.w_50{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.w_50 div{
    width: 48%;
}

.w_30{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.w_30 div{
    width: 30%;
}

.job_card{
    margin-bottom: 20px;
}




/* end career page*/

/*sustain policy page */
.sustain_policy_section h4{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}
.sustain_policy_section ul{
    list-style-type: circle;
    line-height: 28px;
}
.sustain_policy_section ul li{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 300;
}
.sustain_content br{
    display: none;
}

.sustain_policy_section ul li strong{
    font-weight: 500;
}
/*sustain policy page */


/* blog detail page */
.blog_main_data h1{
    font-size: 33px;
    line-height: 45px;
    font-weight: 500;
}


/* end blog detail page */

/*////////////////////////////////////////  MEDIA QUERY   ////////////////////////////////////////////////*/
@media(min-width: 1399px ){
.banner.home_banner {
    position: relative;
    height: 80vh;
}
}
@media(max-width: 1399px ){
.cta_div .mobile::after {
    right: -25%;
}

/* Positioning for each country */
.gpi-australia {bottom: 100px; right: 178px;} .gpi-srilanka {bottom: 193px; right: 318px;} .gpi-india {right: 323px; bottom: 236px;} .gpi-argentina {bottom: 93px; left: 398px;} .gpi-chile {bottom: 105px; left: 365px;} .gpi-brazil {bottom: 171px; left: 450px;} .gpi-colombia {bottom: 187px; left: 337px;} .gpi-usa {left: 271px; top: 181px;} .gpi-mexico {left: 246px; top: 253px;} .gpi-guatenala {left: 285px; top: 270px;} .gpi-honduras {left: 300px; top: 273px;} .gpi-salvador {left: 301px; top: 285px;} .gpi-bangladesh {bottom: 244px; right: 273px;} .gpi-nepal {bottom: 265px; right: 288px;} .gpi-southafrica {bottom: 115px; right: 500px;} .gpi-tanzania {bottom: 160px; right: 456px;} .gpi-kenya {bottom: 177px; right: 451px;} .gpi-nigeria {bottom: 204px; left: 592px;} .gpi-togo {bottom: 209px; left: 577px;} .gpi-ivorycoast {bottom: 205px; left: 557px;} .gpi-senegal {bottom: 212px; left: 532px;} .gpi-spain {left: 543px; top: 190px;} .gpi-uae {bottom: 238px; right: 393px;} .gpi-bahrain {bottom: 247px; right: 421px;} .gpi-jordan {bottom: 254px; right: 452px;} .gpi-italy {left: 604px; top: 187px;} .gpi-slovenia {left: 612px; top: 175px;} .gpi-netherland {left: 572px; top: 163px;} .gpi-iran {bottom: 258px; right: 399px;} .gpi-belgium {left: 560px; top: 176px;} .gpi-turkey {left: 663px; top: 194px;} .gpi-germany {left: 585px; top: 168px;} .gpi-poland {left: 612px; top: 155px;} .gpi-france {left: 558px; top: 187px;} .gpi-ukraine {left: 658px; top: 169px;} .gpi-tunisia {left: 586px; top: 209px;} .gpi-saudi-arabia {bottom: 235px; right: 435px;} .gpi-russia {right: 310px; top: 115px;} .gpi-newzealand {bottom: 20px; right: 90px;} .gpi-korea {bottom: 256px; right: 176px;} .gpi-malaysia {bottom: 181px; right: 252px;} .gpi-mauritius {bottom: 142px; right: 406px;} .gpi-zimbabwe {bottom: 128px; right: 481px;} .gpi-namibia {bottom: 130px; right: 517px;} .gpi-malawi {bottom: 153px; right: 470px;} .gpi-uganda {bottom: 181px; right: 460px;} .gpi-oman {bottom: 228px; right: 399px;} .gpi-yemen {bottom: 223px; right: 425px;} .gpi-peru {bottom: 145px; left: 334px;} .gpi-canada {left: 254px; top: 132px;} .gpi-costarica {left: 311px; top: 281px;} .gpi-egypt {bottom: 253px; right: 474px;} .gpi-sudan {bottom: 236px; right: 467px;} .gpi-algeria {left: 574px; top: 223px;} .gpi-uk {left: 562px; top: 163px;}

}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
h1{
    font-size: 35px;
}

.nav_1 .nav-link {
    font-size: 15px;
    margin-right: 38px;
}

.banner.home_banner {
    height: 80vh;
    overflow: hidden;
}

.top_menu_logo img {
    width: 140px;
}
.search-box {
    width: 250px;
}
.nav_2 .navbar-brand img {
    width: 130px;
}
.nav_2 .nav-link {
    color: var(--text_color);
    font-size: 15px;
    font-weight: 400;
    margin-right: 34px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    position: relative;
}
.nav_2 .nav-link img {
    width: 11px;
    margin-left: 3px;
}

.home_form .form-control {
    border: none;
    border-bottom: 1.4px solid #a6a6a6;
    padding: 10px 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #96989a;
}
.product_cat_card.small .pro_cat_img {
    height: 248px;
}
.about_content p {
    font-size: 18px;
}
.banner.inner_banner{
    position: relative;
    height: 491px;
    background-size: contain;
    background-repeat: no-repeat;
}

.inner_banner_content     h1 {
        font-size: 35px;

    }


}


@media(max-width: 1200px){

.nav_2_main.sticky{
    display: none;
}
.sus_cat_recy .help_img_bg{
    display: none;
}
.sus_cat_recy .white_title_abi {
    position: static; 
     width: 100%; 
    background: var(--gradient);
    padding: 23px 10px;
}

}


@media screen and (max-width: 1200px) and (min-width: 992px) {
.nav_1 .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-right: 30px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    position: relative;
}
}

@media(max-width: 992px){
    .footer_main .a_none a {
        font-size: 0.95em;
        font-weight: 400 !important;
        display: block;
        justify-content: space-between;
  
    }

    .footer_acn_about h6 {
    font-size: 0.9em;
    margin-bottom: 10px;
    width: fit-content;
    float: inline-start;
    margin-right: 24px;
    }
    
    .footer_main a {
    font-size: 13px;
    margin-top: 9px;
    display: inline-block;
    }
    
    .footer-logo {
    margin-bottom: 10px
    }
    
    .footer_acn_about p {
    font-size: 0.9em;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 26px;
    }
    
    .footer_logo .navbar-brand img {
    width: 116px;
    padding: 0 0 14px;
    margin-left: 0;
    filter: brightness(0) invert(1);
    }
    
    .mobile_footer_card .footer_text h4 {
    font-size: 0.95em;
    font-weight: 400 !important;
    padding-bottom: 7px;
    border-bottom: 1px solid #ffffff45;
    margin-bottom: 19px;
    display: flex;
    justify-content: space-between;
    }
    
    .mobile_footer_card .collapse.show {
    margin-bottom: 10px;
    }
    
    .footer_text ul {
    padding-left: 0;
    list-style: none;
    font-size: 1.0625em;
    font-weight: 400;
    padding-bottom: 10px;
    }
    
    .footer_text ul li {
    margin-bottom: 2px;
    font-size: 14px;
    background: #f4f4f40f;
    padding: 0 10px;
    }
    
    .footer_text ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    overflow: hidden;
    font-weight: 400;
    transition: all .4s ease;
    font-size: .9em
    }
    
    .footer_text ul li a:before {
    left: 0
    }
    
    .footer_text ul li a:after,.footer_text ul li a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--blue);
    border: 1px solid #fff;
    top: 8.4px;
    opacity: 0;
    transition: all .4s ease
    }
    
    .footer_text ul li a:after {
    left: 11px
    }
    
    .footer_text ul li a:hover {
    padding-left: 22px;
    color: #fff;
    transition: all .4s ease
    }
    
    .footer_text ul li a:hover:after,.footer_text ul li a:hover:before {
    opacity: 1;
    transition: all .4s ease
    }
    
    .footer-copy p {
    margin-top: 0.5rem;
    font-size: 11px;
    margin-bottom: 0.5rem;
    }
    
    .acn_office img{
    width: 22px;
    margin-right: 10px;
    }
    
    .acn_office ul li{
    width: 22px;
    margin-right: 10px;
    }
.banner.inner_banner {
    position: relative;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}    
    
    .custom-line {
    display: none;
    }
    .top_menu_logo img {
    width: 120px;
}
.mobile_menus{
    display: flex;
    justify-content: end;
}

.offcanvas-top {
    height: fit-content;
}
.mobile_menus .btn-primary {
    color: #fff;
    border: none;
    background: var(--gradient)!important;
    box-shadow: none;
}
.white_title {
    position: absolute;
    width: 93%;
    top: 12%;
    left: 12px;
    /* background: #58585852; */
    padding: 18px;
    bottom: 0;
}

.white_title h2 {
    color: #fff;
    font-size: 20px;
}
.succes_story .help_img .white_title p {
    margin: 0;
    font-size: 15px;
}
.white_title_abi h2{
    font-size: 19px;
}
.white_title_abi.sustain p {
    width: 90%;
    margin: 0 auto;
    font-size: 15px;
}
.white-title-abi-tab {
    margin-top: 25px;
}
}


@media(max-width: 768px) {
p{
    font-size: 15px;
}
.main_counter h4 {
    font-size: 21px;
}
.new_solution_content p {
    font-size: 14px;
}
.new_solution_content p strong {
    font-weight: 400;
}

.new_solution_content .read-more-btn{
        margin-bottom: 8px;
}
.new_solution_img.gradient_text_h4 h4 {
    font-size: 21px;
}
.why_join_us_img{
    margin-bottom: 20px;
}
.why_join_us ul li {
    margin-bottom: 20px;
    font-size: 14px;
}
    .job_card ul li {
        font-size: 14px;
        line-height: 39px;
    }
.product_about_content ul li{
    font-size: 14px;
    margin-bottom: 10px;
}
.sustain_policy_section h4 {
    font-size: 16px;
    margin-bottom: 18px;
}
.sustain_policy_section ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

.form-container-new label.upload-box {
    flex-wrap: wrap;
}
.upload-box span{
    margin-bottom: 10px;
}
    .nav_2_main.sticky{
    display: none;
    }
    
.banner_video {
    position: static;
}    
.banner.home_banner{
    height: auto;
}

.banner {
    height: auto;
}

.banner_content {
    margin-bottom: 33px;
    padding-top: 40px;
}
.banner_content h1 {
    font-size: 19px;
}


.banner .shop_now{
    margin-bottom: 40px;
}
.my_btn {
    font-size: 15px;
}
.my_btn img {
    width: 19px;
    /* margin-left: 0px; */
    top: 6px;
    right: -24px;
}
.my_btn.white:after {
    width: 47px;
    height: 47px;
    border-width: 1.5px;
    top: -36%;
    right: -37px;
}
.title h2 {
    line-height: 29px;
    font-size: 20px;
}
.title.title_left:after {
    bottom: -12px;
}
.title:after {
    bottom: -12px;
}
.about_content {
    margin: 21px 0;
}
.home_about_img {
    width: 85%;
    margin: 21px auto 0;
}

.title {
    width: 100%;
}
.title p {
    font-size: 15px;
}
.cat_tag h4{
    font-size: 16px;
}
.product_cat_card.small .pro_cat_img {
    height: auto;
}
.owl-nav button img {
    width: 76%;
}
.sub_product p {
    font-size: 0.9em;
    font-weight: 300;
}
.sub_product p {
    font-size: 0.9em;
}
.counter_div {
    color: #fff;
    border-right: 0;
    margin-top: 21px;
}
.counter {
    font-size: 19px;
}
.main_counter h4.text {
    font-size: 24px;
}
.counter_div p {
    font-size: 14px;
    text-align: center;
}
.row.counter_row {
    padding: 2px 15px 25px;
}
.about_content p {
    font-size: 15px;
}
/*.help_img .white_title{*/
/*    display: none;*/
/*}*/
.team_content h3 {
    font-size: 15px;
    height: 31px;
}
.team_content p {
    font-size: 13px;
}
.home_form .form-control {
    border-bottom: 1.5px solid #a6a6a6;
    font-size: 14px;
    background: #f6f6f6;
}


.ng-mb-65 {
    margin-bottom: 38px;
}

.home_form {
    background: #f6f6f6;
    padding: 27px 21px;
    border-radius: 29px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.submit_btn {
    padding: 0.5rem 2rem;
}
.our_team  .owl-nav {
    left: 2px;
}
.blog_content h3 {
    margin-bottom: 13px;
    font-size: 16px;
}
.blog_content h3 a {
    margin-bottom: 13px;
    font-size: 16px;
}
    .my-nav-tabs {
        margin-bottom: 22px;
        padding-right: 0;
        width: auto;
        margin: 0 auto 20px;
        display: flex;
        overflow: auto;
        height: fit-content;
        flex-wrap: nowrap;
        justify-content: start!important;
    }
    .my-nav-tabs a {
        border: 1px solid var(--green_color);
        border-radius: 25px;
        padding: 0.5rem 0.6rem;
        margin: 0 4px;
        font-size: 12px;
        text-align: center;
        display: inline-block;
        width: max-content;
    }
.my-nav-tabs a.active {
    border: 1px solid #8e9f7d;
}
.cat_tag {
    position: initial;
}
.product_cat_card .cat_tag h4 {
        font-size: 14px;
        margin-top: 9px;
}
    .banner.inner_banner {
        height: 225px;
        background-size: cover;
    }
    .banner_content.inner_banner_content {
        height: auto;
        /* display: none; */
        padding-top: 45px;
    }

.banner_content.inner_banner_content p {
    font-size: 14px;
    line-height: 23px;
}

    .product_about .home_about_img {
        width: 100%;
        margin: 0px auto 20px;
    }
    
.new_title h2{
    line-height: 29px;
    font-size: 20px;
}
.product_tab_content {
    position: static;
    padding: 16px 16px 16px 15px;
    font-size: 16px;
}
.product_tab_content p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
}

.product_tabs .nav-pills {
    display: inline-flex;
    /* overflow: scroll; */
    height: fit-content;
    flex-wrap: nowrap;
    justify-content: start !important;
    flex-direction: row !important;
    margin-bottom: 10px;
    border: none;
    width: auto;
}

    .product_tabs .nav-pills .nav-link {
        font-size: 14px;
        padding: 6.24px 9px;
        margin-right: 5px;
        display: inline-block;
        width: max-content;
        border: 1px solid #e8e8e8;
    }
.overflow_div{
    overflow: auto;
    margin-bottom: 10px;
}
.product_tabs .nav-pills .nav-link.active {
    color: var(--green_color) !important;
    background: linear-gradient(83deg, rgb(255 255 255) 0%, rgb(255 255 255) 50%, rgb(61 137 171 / 9%) 100%);
    border: 1px solid #3d89ab85;
}
.product_tabs {
    margin-bottom: 30px;
}
.banner.inner_banner.sub_product_banner {
    height: 1px;
    background-size: cover;
}
#image-slider-list li.splide__slide {
    height: 118px !important;
}
.splide__arrow {
    top: -77px !important;
}

.product_about_content.margin {
    margin: 40px 0 0;
}

.black_heading h2 {
    font-size: 18px;
    line-height: 32px;
}
.black_heading p {
    margin-bottom: 0px;
}
.core_value_card {
    text-align: center;
    margin-bottom: 20px !important;
    /* border: 1px solid #ccc; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 12px 4px;
    border-radius: 4px;
}
.certification .core_img {
    margin: 0 auto 15px;
    width: 106px;
    height: auto;
}
.core_content h5 {
    font-size: 15px;
    height: auto;
    margin-bottom: 17px;
    padding: 0 2px;
    line-height: 23px;
}
.core_content p {
    padding: 0 6px;
    font-size: 14px;
}
.cac_ccards-content h4 {
    font-size: 19px;
}
.cac_ccards-content span {
    font-size: 15px;
}
.cac_ccards-content p {
    margin: 4px 0px;
    font-size: 14px;
    height: 33px;
}
.cac_ccards-pera p {
    width: 100%;
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 0px;
}
.select h3 {
    font-size: 20px;
}
.location h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.location p {
    font-size: 16px;
    line-height: 26px;
}
.location_hr {
    margin: 50px 0px;
}
.location_hr:after {
    bottom: 27px;
}
.cta_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 10px 14px;
    width: 100%;
}
.cta_div .mobile::after{
    display: none;
}
.cta_div .mobile a {
    font-size: 16px;
}
.cta_div .mobile {
    position: relative;
    margin-bottom: 8px;
}
.blog-grid-bio-heading h4 {
    font-size: 18px;
}

.blog-grid-bio-content h4 {
    font-size: 18px;
}
.owl-nav button.owl-next {
    right: -9px;
}

.new_ul ul li.list-group-item {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}
.read_btn {
    border: 1.5px solid var(--green_color);
    border-radius: 15px;
    padding: 0.4rem 1rem;
    font-size: 13px;
}
.product_card_detail{
    width: 18%;
    text-align: center;
}
.product_child_title h5 {
    font-size: 16px;
}
.product_child_title {
    width: 78%;
    border-bottom: 1px solid var(--green_color);
    margin-bottom: 40px;
}

.child_banner {
    padding: 0.75rem 0.75rem;
}
.child_banner_image {
    width: 100%;
    margin-bottom: 12px;
}
.child_banner_content h1 {
    color: var(--green_color);
    line-height: 28px;
    /*text-transform: uppercase;*/
    margin-bottom: 6px;
    font-size: 18px;
}
.child_banner_content p {
    font-size: 15px;
}
.product-box ul {
    width: 100%;
    margin-bottom: 15px;
}
.product-box ul li strong{
    width: 100%;
}
.product-box ul li span {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
}
.product-box ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 9px;
    font-size: 15px;
}
.blank_div_20 {
    display: none;
}
.download_pdf_btn img {
    width: 18px;
    margin-left: 5px;
    transition: 0.3s;
}
.product_child_enquire_btn {
    margin-left: 10px;
    padding: 7px 7px;
    font-size: 13px;
}
.download_pdf_btn {
    font-weight: 500;
    font-size: 13px;
}
.product_about_content p{
    font-size: 15px;
}
.new_title ul li {
    font-size: 15px;
    line-height: 23px;
}

.new_title p{
    font-size: 15px;
}

.sus_cat_recy .help_img_bg{
    display: none;
}
.sus_cat_recy .help_img_bg .white_title_abi {
    position: static; 
     width: 100%; 
    background: var(--gradient);
    padding: 23px 10px;
}

}

h3.wp-block-heading strong a{
    color: #000000;
    text-decoration: none;
}

@media screen and (max-width: 1200px) and (min-width: 998px) {
    .banner.inner_banner {
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.text-left.new_title ol{
    padding-left: 22px!important;
}


#debugProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: gray;
    z-index: 999999;
    transition: background 0.3s;
}



.banner.inner_banner{
    margin-top: -1px;
}













