/* Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&display=swap);

*{ margin: 0; padding: 0; box-sizing: border-box;}
:root{
    --cream-dark-color:  #f5ead4;
    --cream-color:  #fbf6e8;
    --white-color:  #ffffff;
    --black-color:  #212529;
    --green-dark-color:  #046d51;
    --green-color:  #86BC42;
    --yellow-dark-color:  #FD6C00;
    --primary-font: 'Open Sans', sans-serif;
    --secondary-font: "Open Sans Condensed", sans-serif;
}
a, a:hover { text-decoration: none; }
ul, ol { margin: 0;  padding: 0; }
ul { list-style: none; }
html { scroll-behavior: smooth; } 
body{
    font-size: 16px; 
    font-family: var(--primary-font);
    font-weight: 400; line-height: 28px;
    color: var(--black-color);
    background: var(--white-color);
}
h1 { font-size: 32px; font-weight: 700!important; text-transform: uppercase!important; color: var(--white-color);}
h1, h2, h3, h4, h5 {font-family: var(--secondary-font);}

/* CUSTOME CLASSS  */

/* .VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
} */
.goog-te-gadget-simple {
    background-color: #FFF;
    border: unset !important;
    font-size: 12px;
    display: inline-block;
    padding: unset !important;
    cursor: pointer;
}

.mb-48{ margin-bottom: 18px;}
.cream-bg{background-color: var(--cream-color);}
.green-bg{background-color: var(--green-color);}
.yellow-dark-bg{background-color: var(--yellow-dark-color);}
.section-padding{ padding: 50px 0; }

@media (min-width:992px){ 
    .section-padding{ padding: 100px 0; }
    .mb-48{ margin-bottom: 48px;}
}

.section-heading{ font-size: 18px; font-weight: 600; letter-spacing: 0.7px!important; color: var(--green-color); text-transform: uppercase !important; }
.section-title{ font-size: calc(1.5rem + 1vw); font-weight: 600; text-transform: uppercase !important; }

@media (min-width:768px){
    h1 { font-size: 52px;}
}
.image-scale-animation img{ overflow: hidden; transition: all 500ms ease; }
.image-scale-animation:hover img{ transform: scale(1.05); }
.btn{
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: unset;
    border-radius: 35px;
    display: inline-block;
    box-sizing: border-box;
}
.btn-yellowdark{
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--yellow-dark-color);
    --bs-btn-border-color: var(--yellow-dark-color);
    --bs-btn-hover-color: var(--white-color);
    --bs-btn-hover-bg: var(--green-color);
    --bs-btn-hover-border-color: var(--green-color);
    --bs-btn-focus-shadow-rgb: 60,153,110;
    --bs-btn-active-color: var(--white-color);
    --bs-btn-active-bg: var(--green-color);
    --bs-btn-active-border-color: var(--green-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);    
}
.btn-yellowdark:disabled{ background-color: var(--yellow-dark-color) ; color: var(--white-color);}
/* SWIPER LOADER  */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .loader {
    border: 8px solid #f3f3f3; /* Light gray border */
    border-top: 8px solid var(--yellow-dark-color); /* Yellow border */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* HEADER SECTION START  */
header{ width: 100%; background-color: var(--cream-color);  position: fixed; top: 0; z-index: 999; }
header.scroll{ animation: fadeInDown 450ms ease-in-out; }
@keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      transform: translateY(-100%);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
header::after {content: ''; position: absolute; bottom: 0; left: 0; right: 0; background: url(../images/icon/triagle-down.svg); width: 100%; height: 10px; z-index: -1;margin-bottom: -10px; z-index: -1;}
.header-top{ background-color: var(--green-color); padding: 0 24px;}
.header-top .header-top-link > a{ margin-right: 20px; font-size: 16px; font-weight: 600; color: var(--white-color); font-family: var(--secondary-font); }
.navbar-toggler-icon{ width: 35px; height: 35px; }
.navbar{ padding: 0px 24px;}
.navbar-brand{ margin-right: 30px;}
.navbar .nav-item .nav-link{ 
    font-size: 16px; font-weight: 700;
    color: var(--black-color); font-family: var(--secondary-font);
    letter-spacing: 1px; margin-right: 10px;  
}
.navbar .nav-item .nav-link:hover{ color: var(--green-color); }
.social-icon{ margin: 0; }
header .social-icon li{ padding: 8px 0; border-bottom: 1px solid #434950; }
.social-icon li a{ color: var(--white-color); font-family: var(--secondary-font); font-weight: 600;}
.social-icon li a:hover{ color: var(--green-color);}
.social-icon li a i{ color: var(--white-color); font-size: 18px; }
.social-icon li a i:hover{ color: var(--green-color); }
.dropdown-menu { top: 100% !important; border-radius: 0px; border: unset !important; margin: unset !important;}
.dropdown .mega-menu { max-width: 800px; padding: 15px; background-color: var(--cream-color);}
.dropdown .mega-menu h2{ font-size: 16px; font-weight: 600; font-family: var(--secondary-font); }
.slideIn {
    animation-name: slideIn;
    animation-duration: 500ms;
  }
  @keyframes slideIn {
    0% {
      clip-path: inset(0 0 100% 0);
    }
    100% {
      clip-path: inset(0 0 0 0);
    }
    0% {
      clip-path: inset(0 0 100% 0);
    }
  }
.dropdown .mega-menu .header-image{ margin-bottom: 25px; overflow: hidden; }
.header-dropdown-link li{ padding: 5px 0; border-bottom: 1px solid #000; }
.header-dropdown-link li a{ font-size: 16px; color: var(--black-color); font-weight: 600; font-family: var(--secondary-font); }
.header-dropdown-link li a:hover{ color: var(--green-color); }
@media (max-width:991px){
    .offcanvas.offcanvas-end{ max-width: 300px; height: 100vh; background-color: var(--black-color);}
    .navbar .nav-item .nav-link{ color: var(--white-color);}
    .navbar .nav-item{ border-bottom: 1px solid #434950;}
    .nav-item:first-child{ border-top: 1px solid #434950;}
    .dropdown .mega-menu{ padding: 15px 0; background-color: var(--black-color); padding: 0;}
    .header-dropdown-link li a{ color: var(--white-color);}
    .header-dropdown-link li{ border-bottom: 1px solid #434950;}
    .header-dropdown-link li:last-child{ border: none;}
    .navbar-brand .logo{ width: 90px !important; padding: 8px 0;}
    header{ border-top: 10px solid var(--green-color);}
}

@media (max-width:575px){
    .navbar{ padding: 0px 30px; }
}
@media(min-width:992px){
    .navbar{--bs-nav-link-padding-y: 0rem !important;}
    .navbar .nav-item .nav-link{
        padding: 2rem 0 !important;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
@media (min-width:1052px) {
    .navbar{ padding: 0px 50px;}
    .navbar-brand{ margin-right: 40px;}
}
@media (min-width:1200px){
    .navbar .nav-item .nav-link{ margin-right: 30px;}
}  
/* HEADER SECTION END  */

/* BANNER SECTION START  */

.banner{ width: 100%; height: 550px; margin-top: 50px;}
.banner .swiper { width: 100%; height: 100%; }
.banner .swiper-slide { position: relative;}
.banner .banner-inner{ position: relative; width: 100%; height: 100%; overflow: hidden;}
.banner-inner img{
    width: 100%; height: 100%;
    position: absolute;
    object-fit: cover;
}
.banner .slider-content{ color: var(--white-color); position: relative; z-index: 10;}
.banner .swiper-button-prev, .banner .swiper-button-next {
    position: absolute; width: 60px; height: 60px; 
    color: var(--white-color); background-color: var(--yellow-dark-color);
    border-radius: 50px; top: var(--swiper-navigation-top-offset, 45%);
}
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover{ background-color: var(--green-color); }
.banner .swiper-button-prev:after, .banner .swiper-button-next:after{ font-size: 16px; }
.banner .swiper-button-next, .banner .swiper-rtl .swiper-button-prev { right: var(--swiper-navigation-sides-offset,50px); left: auto; }
.banner .swiper-button-prev, .banner .swiper-rtl .swiper-button-next { left: var(--swiper-navigation-sides-offset,50px); right: auto; }
.banner .slider-content h3{ font-size: 25px; font-weight: 600;}
.banner .slider-content p{ font-size: 14px;}
@media (max-width:767px){
    .banner .swiper-button-next, .banner .swiper-rtl .swiper-button-prev { right: var(--swiper-navigation-sides-offset,20px); left: auto; }
    .banner .swiper-button-prev, .banner .swiper-rtl .swiper-button-next { left: var(--swiper-navigation-sides-offset,20px); right: auto; }
    .banner .swiper-button-prev, .banner .swiper-button-next{ width: 40px; height: 40px;}
    .banner .swiper-button-prev:after, .banner .swiper-button-next:after{ font-size: 14px;}
}
@media (min-width:768px){
    .banner .slider-content h3{ 
        font-size: calc(2vw + 1.5rem);
        font-weight: 600;
    }
    .banner .slider-content p{
        font-size: 16px;
    }
}
@media (min-width:992px){
    .banner{ width: 100%; height: calc(95vh - 120px); margin-top: 80px; }
}
/* BANNER SECTION END  */

/* PRODUCT SECTION START  */
    .product{ position: relative; }
    .product-box{ overflow: hidden; border: 2px solid var(--cream-color); padding: 15px 0 0 0; margin-bottom: 25px; background-color: #fff; border-radius: 10px;}
    .product-box .product-content{ background-color: var(--cream-color); padding: 20px;}
    .product-content h2{ font-size: 22px; font-weight: 600; transition: all 500ms ease; cursor: pointer; }
    .product-box:hover .product-content h2{ color: var(--green-color); }
    .product::after{
        position: absolute; content: '';
        width: 100%; height: 10px;
        margin-top: -10px; z-index: 99;
        left: 0; top: 0; right: 0;
        background-image: url(../images/icon/triagle-green.svg);
    }    
    @media (min-width: 1200px){
        .product-box{ margin-bottom: 0; }
    }
/* PRODUCT SECTION END  */

/* why section start  */

.why{ position: relative; }
.image_block_1 .image-box{
    position: relative; display: inline-block; 
    width: 450px; height: 450px; border-radius: 50%;
    overflow: hidden; text-align: center;
    background-position: center; 
    background-size: cover;
    background-repeat: no-repeat;
}
@media(min-width: 1246px){ .image_block_1 .image-box{width: 550px; height: 550px;} } 
@media (max-width:767px){ .image_block_1 .image-box{width: 400px; height: 400px;} }
@media (max-width:575px){ .image_block_1 .image-box{width: 325px; height: 325px;} }
.about-img{ width: 100%; height: 446px;}

/* WHY SECTION END  */

/* PRODUCT-RANGE SECTION START   */

.product-range .swiper { width: 100%; height: 100%; position: unset; }
.product-range  .swiper-slide { text-align: center; display: flex; justify-content: center; align-items: center;  padding: 30px 30px 100px 30px; }
.product-range  .swiper-slide img { display: block; width: 100%; }
.product-range-content{ position: relative;}
.product_img_bg_2 {position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: all 0.4s ease}
.product-range-content:hover .product-range-img{ opacity: 0;}
.product-range-content:hover .product_img_bg_2{ opacity: 1;}
.product-range .swiper-button-prev, .product-range .swiper-button-next {
    position: absolute; width: 30px; height: 30px;
    color: var(--white-color); background-color: var(--yellow-dark-color); border-radius: 50px;
    top: var(--swiper-navigation-top-offset, 35%);
}
.product-range .swiper-button-prev:hover, .product-range .swiper-button-next:hover{ background-color: var(--green-color); }
.product-range .swiper-button-prev:after, .product-range .swiper-button-next:after{ font-size: 16px; }
.product-range .swiper-container{ position: relative; }
.product-range .product-range-content h4 a{ font-size: 22px; font-weight: 600; color: var(--black-color); transition: all 500ms ease; }
.product-range .product-range-content h4 a:hover{ color: var(--green-color); }
.product-range .swiper-pagination-bullet{  
    width: 10px; height: 10px;  
    background-color: var(--white-color); opacity: 0.3;
    border: 3px solid var(--green-color); border-radius: 10px; 
}
.product-range .swiper-pagination-bullet-active{ opacity: 1; }
.mb-30{ margin-bottom: 30px; }
@media (max-width:767px){ 
    .product-range .swiper-pagination-bullet{ width: 8px; height: 8px;}
    .product-range  .swiper-slide{ padding:30px 0 70px 0px; } 
    .product-range .swiper-button-prev, .product-range .swiper-button-next{ top: var(--swiper-navigation-top-offset, 40%); }
}
@media (max-width:575px){
    .product-range  .swiper-slide{ padding:30px 0 40px 0px; }
}   
@media (min-width:576px){
    .product-range .swiper-button-next, .product-range .swiper-rtl .swiper-button-prev { right: -50px; }
    .product-range .swiper-button-prev, .product-range .swiper-rtl .swiper-button-next { left: -50px; }
}
@media (min-width:768px){
    .product-range .swiper-button-prev, .product-range .swiper-button-next{ width:50px; height: 50px;}
    .product-range .swiper-button-next, .product-range .swiper-rtl .swiper-button-prev { right: -30px; }
    .product-range .swiper-button-prev, .product-range .swiper-rtl .swiper-button-next { left: -30px; }
}
/* PRODUCT RANGE SECTION END */

/* ABOUT SECTION START  */
.chooseus-section .image-box:before {height: 560px; display: none; }
.chooseus-section .image-box .images {position: relative; }
.chooseus-section .image-box .images .box {position: absolute; top: 0; left: -30%;}
.chooseus-section .image-box .images .box img {width: 370px; z-index: 996;}
.chooseus-section .image-box .images .main-img {width: 300px; position: relative; z-index: 10;}
.chooseus-section .image-box .box {position: absolute; top: 25%; left: -60%; width: 60%; height: auto; z-index: 0; transform: rotate(-20deg); display: none}
.chooseus-section .image-box .round {position: absolute; bottom: 0%; right: 0%; width: 60%; height: auto; z-index: 0; transform: rotate(20deg);display: none}
.chooseus-section .image-box .image img {width: 100px;}
.chooseus-section .sec-title {width: 100%; margin-top: 0;}
.chooseus-section .text {width: 100%;}
@media(min-width: 992px){
  .chooseus-section .image-box .box {display: inline-block;}
  .chooseus-section .image-box .round {display: inline-block;}
  .chooseus-section .text {width: 75%;}
  .chooseus-section .sec-title {width: 75%; margin-top: 100px;}
}
@media(min-width: 1200px){
  .chooseus-section .image-box .images .main-img {width: 350px}
}
@media(min-width: 1660px){
  .chooseus-section .image-box .images .main-img {width: 380px}
}
/* ABOUT SECTION START  */

/* GALLERY SECTION HOME PAGE  START*/
.project-section{ position: relative; }
.project-section .outer-container{ position: relative; padding: 0px 15px; }
.project-block-one .inner-box{ position: relative; display: block; overflow: hidden; margin-bottom: 30px; }
.project-block-one .inner-box .image-box{ position: relative; display: block; overflow: hidden; }
.project-block-one .inner-box .image-box img{ width: 100%; transition: all 500ms ease; }
.project-block-one .inner-box .image-box { background: -webkit-linear-gradient(-45deg, var(--green-color), var(--green-color) 100%); }
.project-block-one .inner-box:hover .image-box img{ opacity: 0.1; transform: scale(1.1); }
.project-block-one .inner-box .content-box{
    position: absolute;
    left: 0px; top: 0px; right: 0px; width: 100%;
    height: 100%; display: flex; align-items: center; 
    justify-content: center; text-align: center;
}
.project-block-one .inner-box .content-box .text{
    position: relative;
    padding: 15px 15px;
    top: 15px;
    opacity: 0;
    transition: all 500ms ease; 
}
.project-block-one .inner-box:hover .content-box .text{ top: 0px; opacity: 1; }
.project-block-one .inner-box .content-box .text p{ font-size: 14px; color: #faf1ed; font-weight: 600; }
.project-block-one .inner-box .content-box .text h4 a{ font-size: 22px; color: #faf1ed; font-weight: 700; }  
.project-block-one.small-block .inner-box{ max-width: 281px; }  
.project-block-one .inner-box .link{
    position: absolute;
    right: 45px;
    bottom: 15px;
    opacity: 0;
    transition: all 500ms ease;
}  
.project-block-one .inner-box:hover .link{
    right: 30px;
    opacity: 1;
}
.project-block-one .inner-box .link a{
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    z-index: 1;
}
.project-block-one .inner-box .link a i { font-size: 20px; color: #fff; }
.pt-90{ padding-top: 90px; }
.mr-100{ margin-right: 100px; }
.ml-100{ margin-left: 100px; }
.pull-right { float: right; }
@media (min-width:576px){
    .project-section .outer-container{ position: relative; padding: 0px 70px; }
}
@media (max-width:767px){
    .project-block-one {
        max-width: 420px;
        margin: 0 auto;
        float: none;
    }
}
@media (max-width:991px){ .pt-90{  padding-top: 0px; } }

/* GALLERY SECTION HOME PAGE END */

/* TESTIMONIAL SECTION START  */

.testimonial .swiper { width: 100%; height: 100%; }
.testimonial .swiper-slide { padding: 0px 0 50px 0; display: flex; justify-content: center; align-items: center; } 
.testimonial .swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.testimonial-content{ 
    padding: 50px 20px;
    background-color: var(--white-color);
    position: relative;
    text-align: center;
    margin-top: -30px;
    z-index: -1;
    border-radius: 10px;
}
.testimonial-inner{ text-align: center; }
.bi-quote:before {
    display: inline-block;
    background-color: var(--green-color); 
    color: #fff; 
    padding: 15px;
    font-size: 30px;
    border-radius: 50%;
}
.testimonial-content p{ font-size: 15px;}
.testimonial-content h4{ font-size: 22px; font-weight: 700; color: #333!important; }
.testimonial-content h5{ font-size: 16px; font-weight: 700; color: var(--yellow-dark-color);   }
.testimonial .swiper-pagination-bullet{ width: 10px; height: 10px; background-color: var(--white-color); opacity: 0.3; border: 3px solid var(--green-color); border-radius: 10px;  } 
.testimonial .swiper-pagination-bullet-active{ opacity: 1; }  
  /* @media (min-width:576px){
      .testimonial-next-btn, .testimonial-prev-btn{
        width: 50px; height: 50px;
        color: var(--white-color); background-color: var(--yellow-dark-color);
        border-radius: 50px;
        display: flex; justify-content: center; align-items: center;
      }
      .testimonial-next-btn:hover, .testimonial-prev-btn:hover{ background-color: var(--green-color); }
  } */
@media (min-width:768px){ 
    .testimonial .swiper-pagination-bullet{ width: 20px; height: 20px;}
}


/* TESTIMONIAL SECTION END  */

/* NEWS BLOG SECTION START  */

.cta-our-section {background-position: center; background-size: cover; width: 100%; height: 450px; position: relative; z-index: 100; text-align: center; display: flex; align-items: center;}
.cta-our-section:after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5);  z-index: -1;}
.cta-our-section  h2{ color: #fff!important; font-weight: 700; }

@media (min-width:992px){ 
    .cta-our-section{ width: 100%; height: 700px;}
}
/* NEWS BLOG SECTION END  */

/* FOOTER SECTION START  */
    footer{ position: relative; color: #bdbdbd; font-family: var(--secondary-font); }
    footer::after{
        position: absolute; content: '';
        width: 100%; height: 10px;
        margin-top: -10px; z-index: 100;
        left: 0; top: 0; right: 0;
        background-image: url(../images/icon/triangle.svg);
    }
    footer h3{ font-size: 16px !important; font-weight: 600 !important; margin-bottom: 20px; text-transform: uppercase; }
    footer p{ font-weight: 600; }
    footer a, footer .social-icon a i{ color: #bdbdbd; font-weight: 600; }
    footer a:hover, footer .social-icon a i:hover{ color: #FFFFFF; }
    .footer-link li{ margin-bottom: 10px; }
    .footer-link li:last-child{ margin-bottom: 0;}
    footer .social-icon li{ display: inline-block; margin-right: 16px; }
    .footer-link li i{  margin-right: 5px;}
    .footer-menu-link li{ display: inline-block;  margin-right: 20px;}
    .footer-connect{ border-bottom: 1px solid #6c636361; border-top: 1px solid #6c636361; padding: 20px 0; }
    @media (max-width:767px){
        footer{ padding-top: 50px; } 
        .footer-menu-link li{display: block; margin: 10px 0;}
    }
    @media (min-width:768px) and (max-width:991px){
        .footer-menu-link{ margin-bottom: 10px;}
    }
    @media (min-width:1200px){
        .footer-menu-link li{ margin-right: 30px;}
    }
/* FOOTER SECTION END  */


  /* ================================ About Page Start ============================== */

    .inner-banner{ width: 100%; height: 500px; position: relative; z-index: 1; margin-top: 50px; }
    .inner-banner img{ position: absolute; object-fit: cover;}
    .inner-banner::before{ position: absolute; content: ''; top: 0; left: 0; bottom: 0; right: 0; background-color: rgba(0, 0, 0, 0.5); z-index: 2; }
    .inner-banner-content .breadcrumb .breadcrumb-item,
    .inner-banner-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: '\f105'; font-family: "FontAwesome"; color: #ffffff; }
    .about-page-img{ width: 100%; overflow: hidden; position: relative; object-fit: cover; margin-bottom: 20px;}
    .vision-values h4{ font-size: 20px; font-weight: 600; color: var(--black-color); text-transform: capitalize;}
    .about-certificate .certificate{ display: flex;  align-items: center; flex-wrap: wrap; flex-direction: column; }
    @media (min-width:575px) and (max-width:991px){
        .about-certificate .certificate{ display: flex;  justify-content: center; align-items: center; flex-wrap: wrap; flex-direction: row; }
        .certificate .certificate-image{ margin: 0 40px;}
    }
    @media (min-width:992px){ 
        .inner-banner{margin-top: 80px;}
        .about-page-img{ text-align: center; }
        .vision-values .left-right-border{ border-left: 1px solid var(--yellow-dark-color); border-right: 1px solid var(--yellow-dark-color);} 
        .about-certificate .certificate{ display: flex;  align-items: center; flex-wrap: wrap; flex-direction: row;  justify-content: space-between;}
    }
  /* ================================ About Page End ============================== */

  /* ================================ Product Page Start ============================== */

    .product-item .product-item-box{ margin: 25px 0; background-color: #fffbef;}
    .product-item .product-item-box .product-item-image{ width: 100%; height: 100%; padding: 0 0; text-align: center; background-color: #fffbef; border-radius: 15px 15px 0 0; position: relative; transition: all 1000ms ease-in-out; cursor: pointer;}
    .product-item .product-item-box .product-item-image .product_item_bg_1{ transition: all 0.5s ease-in-out;}
    .product-item-image img {height: 100%;}
    .product-item-image .product_img_bg {position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: all 0.4s ease}
    .product-item-image:hover .product_img_bg_1  {opacity: 0;}
    .product-item-image:hover .product_img_bg {opacity: 1!important;}
    .product-item .product-item-box .product-item-content {padding: 15px 15px; background-color:var(--green-color)!important ; text-align: center; border-radius: 0 0 15px 15px;}
    .product-item .product-item-box .product-item-content h4{ font-size: 20px; font-weight: 600; font-family: var(--primary-font); text-transform: capitalize !important; margin-bottom:0; color: var(--white-color);}
    .product-item .product-item-box .product-item-content p{ color: var(--white-color); margin-bottom: 0;}
    .product-item .product-item-box .product-item-image {position: relative; border: 1px solid #dcdcdc; overflow: hidden;}
    .product-item .product-item-box {transition: all 0.6s ease; border-radius: 15px; }
    .product-specification .product-specification-content h3{ font-family: var(--primary-font); font-size: 20px; font-weight: 600;}
    .product-specification .product-specification-content .product-heading{ font-size: 22px; font-family: var(--primary-font); font-weight: 700; margin-bottom: 10px;}
    .product-description h4{
        font-size: 20px;
        font-weight: 600;     
    }
    @media (max-width:767px){ 
        .product-specification .product-specification-content h3{ font-size: 18px;}
    }
  /* ================================   End ============================== */

  /* ================================ News & Events Page Start ============================== */
  
    .event-gallery h4{ font-size: 20px; font-weight: 600;}
  /* ================================ News & Events Page End ============================== */

  /* ================================ Process Chart Page Start ============================== */

    .process-chart-inner{
        position: relative;
        display: block;
        text-align: center;
        align-items: center;
    }
    .process-number{
        color: #fff;
        font-size: 25px;
        padding: 5px 10px;
        content: "";
        background-color: var(--green-color);
        text-align: center;
    }
    .process-chart-content{ padding: 20PX;}
    .process-chart-inner h5{ margin-top: 10px; font-size: 20px; font-weight: 600; }
    @media (min-width:576px){
        .process-chart-inner{
            display: flex;
            text-align: left;
        }
    }
    @media (min-width:768px){
        .process-chart-inner{ margin-bottom: 0; }
    }

  /* ================================ Process Chart Page End ============================== */

  /* ================================ Contact Us Page Start ============================== */

.contact-page-info i{ color: var(--yellow-dark-color); margin-right: 5px; }
.contact-page-info h3{ font-size: 16px; font-weight: 600; color: #333333; margin-bottom: 10px; }
.contact-page-info h4{ font-size: 16px !important; font-weight: 600 !important;}
.contact-page-link li{ margin-bottom: 7px; }
.contact-page-link a{ font-size: 16px; font-family: var(--primary-font); font-weight: 400; color: var(--black-color); }
.contact-page-link a:hover{color: var(--green-color);}
.contact-section .form-inner .default-form .form-group input[type='text'],
.contact-section .form-inner .default-form .form-group input[type='number'],
.contact-section .form-inner .default-form .form-group input[type='email'],
.contact-section .form-inner .default-form .form-group textarea{
  position: relative;
  width: 100%; height: 50px;
  border: 1px solid #dbdbdb;
  font-size: 15px; font-weight: 600;
  color: #5b5858; padding: 10px 20px;
  transition: all 500ms ease;
}
.contact-section .form-inner .default-form .form-group textarea{ resize: none; height: 150px; display: block;  }
.contact-section .form-inner .default-form .form-group{ position: relative; margin-bottom: 34px; }
.contact-section .form-inner .default-form .form-group:last-child{ margin-bottom: 0px;}
.contact-section .form-inner .default-form .form-group label{ position: relative; display: block; line-height: 24px; font-weight: 700; margin-bottom: 8px; }
.contact-section .form-inner{ position: relative; }
.contact-section .form-inner .sec-title{ margin-bottom: 28px;}
.contact-box{
    width: 100%; height: 260px;
    padding: 55px 10px 40px 10px;
    background-color: var(--cream-color);
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative; 
    text-align: start;
}
.contact-box-main{ text-align: center;}
.contact-box-main img{
    position: relative;
    background-color: var(--green-color);
    border-radius: 50px;
    margin-bottom: -40px;
    z-index: 10;
    text-align: center;
}
@media (min-width:992px){
    .contact-box{ margin-bottom: 0;}
}
@media (min-width:1200px){ 
    .contact-box{ padding: 60px 40px 40px 40px;}
}
/* ================================ Contact Us Page End ============================== */