html {
    scroll-behavior: smooth;
  }
  body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #242424;
  }
  
  a,
  a:hover {
    text-decoration: none !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  
  ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
  }
  img {
    display: block;
    max-width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }
  .posrel{
    position: relative;
  }

  @media (min-width: 1366px) {
    .cmpad{
      max-width: 1920px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  @media (max-width: 1366px) {
    .cmpad {
      padding-left: 60px;
      padding-right: 60px;
    }
  }
  @media (max-width: 991px) {
    .cmpad {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media (max-width: 767px) {
    .cmpad {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  @media (max-width: 575px) {
    html {
      font-size: 90%;
    }
  }
  
  @media (min-width: 768px) {
    ::-webkit-scrollbar {
      width: 10px;
      height: 6px;
    }
    ::-webkit-scrollbar-track {
      background-color: #eee;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #00622c;
    }
    ::-webkit-scrollbar-thumb:hover {
      background-color: #00622c;
    }
  
    .custscroll::-webkit-scrollbar,
    .custscroll::-webkit-scrollbar-thumb {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscroll::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscroll:hover::-webkit-scrollbar-thumb {
      background-color: #ccc;
    }
    .custscroll::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  
    .custscrollA::-webkit-scrollbar {
      border-radius: 13px;
      width: 6px;
      height: 6px;
      background-clip: padding-box;
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-track {
      background: transparent;
    }
    .custscrollA::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 6px;
    }
    .custscrollA::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }
  }
  .para{
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: .8;
    line-height: 25px;
  }

/* header */
header{
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: 0.3s;
}
.main-header{
    background: white;
    margin-top: 45px;
    border-radius: 15px;
    display: flex;
    padding-left: 30px;
    padding-right: 30px; 
    align-items: center;
    position: relative;
    transition: 0.3s;
}
.logocol img{
    width: 175px;
    position: relative;
    z-index: 13;
    transition: 0.3s;
}
.menucol li, .iconcol{
    gap: 20px;
    display: flex;
    align-items: center;
}
.menucol, .iconcol{
    width: 40%;
}
.logocol{
    width: 20%;
    display: flex;
    justify-content: center;
    margin: auto;
}
.iconcol{
    justify-content: end;
    align-items: center;
}
.menucol li a{
    color: #333;
    font-size: 0.875rem;
}
.iconcol i{
    color: #333;
}

.logocol{
    position: relative;
}
.logocol::before{
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    height: 50px;
    width: 100%;
    background-color: #ffffff;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
.logocol::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 50px;
    width: 100%;
    background-color: #ffffff;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.flexicon{
    display: flex;
    gap: 20px;
    align-items: center;
    border-right: 1px solid #33333347;
    padding-right: 15px;
}
.callflex{
    display: flex;
    gap: 10px;
}
.callflex img{
  width: 16px;
  filter: brightness(0);
}
.callflex a{
    color: #333;
    font-size: 0.875rem;
}
.menucol li a:hover, .callflex a:hover{
  color: #00622c;
}
.flexicon a:hover i{
  /* transform: translateY(-10px); */
  transition: all .3s;
  color: #00622c;
}
header.active{
  box-shadow: 0px -5px 20px #00000043;
  transition: 0.3s;
  background-color: #fff;
}
header.active .logocol::after{
  box-shadow: 0px 1px 0px #00000017;
}
header.active .main-header{
  margin-top: 0;
  transition: 0.3s;
}
header.active .logocol img{
  width: 150px;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 8px;
  z-index: 1;
  right: -170px;
  transition: 0.3s;
  animation-name: zoomIn;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  border-radius: 8px;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.3s;
}

.dropdown-content a {
  font-size: 0.85rem;
  color: #333 !important;
  padding: 8px 15px;
  display: flex;
  transition: 0.3s;
  border-radius: 0.1rem;
  width: 100%;
}

.dropdown-content a:hover {
  background-color: #00622c;
  color: #fff !important;
  border-radius: 5px;
}



/*mobile css*/

.sideBtn{
  cursor: pointer !important;
  background: transparent;
  border: none;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #f8f8f8;
  box-shadow: -20px 0 20px rgb(0 0 0 / 10%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.sidebar.show {
  width: 350px;
  opacity: 1;
}

.sidebar .sidehead {
  padding: 15px 15px;
  border-bottom: 1px solid #e9efec;
}

.sidebar .sidehead .logo {
  width: 140px;
  display: flex;
  justify-content: center;
}

.sidebar .sidehead .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #00622c;
  position: absolute;
  top: 7px;
  right: 0.5rem;
  color: white !important;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.sidebar .sidehead .closebtn:hover {
  color: #00622c;
}

.sidebar .sidemenu {
  padding: 15px;
  overflow-y: auto;
  height: calc(100vh - 117px);
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
}

.sidebar .sidemenu ul.menulist li {
  margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist li a {
  color: #00622c;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 0.5rem;
  cursor: pointer;
  background: #00622c0f;
  font-weight: 400;
  font-size: 0.95rem;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.sidebar .dropdown.show .dropdown-toggle {
  color: #3498db;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 30px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: none;
}

.sidebar .dropdown.show .dropdown-toggle:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.875rem;
}

.sidebar .dropdown-menu a:hover {
  background-color: transparent !important;
}

.sidebar .seperate {
  font-size: 0.875rem;
  color: #9e9e9e;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

.sidebar ul.social {
  padding: 0 15px;
  display: flex;
}

.sidebar ul.social li a i {
  color: #00622c;
  padding-right: 20px;
}







  /* slider */
.slider{
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 9;
    background: transparent;
}
.sliderbox{
    height: 100vh;
    position: relative;
}
.sliderbox h1{
    color: white;
    position: absolute;
    top: 50%;
    line-height: 70px;
    font-size: 3.8rem;
}
.slider-box{
    position: relative;
}
.slider-box img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.slider-box::before{
    position: absolute;
    content: '';
    background-color: #fff;
    width: 90px;
    height: 25px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}
.mainpagination{
    margin-bottom: -10px !important;
}
.swiper-pagination-bullet-active {
    background: #00622c !important;
}

/* about */
.subhead{
    text-transform: uppercase;
    font-size: 1rem;
    color: #00622c;
    border: 1px solid #00622c;
    border-radius: 20px;
    width: max-content;
    padding: 6px 20px 6px 20px;
}
.mainhead{
  padding-top: 10px;
  line-height: 45px;
  font-weight: 700;
  color: #00622c;
  font-size: 2.3rem;
}
.bttn{
  background: #00622c;
  border: 1px solid #00622c;
  color: #fff;
  padding: 10px 25px 10px 25px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  gap: 5px;
}
.btns{
  margin-top: 25px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.bttn:hover{
  background-color: #fff;
  border: 1px solid #00622c;
  color: #00622c;
}
.color{
  color: #00622c;
}
.btns .color{
  display: flex;
  gap: 5px;
  font-size: 0.9rem;
}
.color img{
  width: 13px;
}
.btns .color:hover, .products .color:hover, .gallery .color:hover{
  color: #333;
}
.btns .color:hover img, .products .color:hover img, .gallery .color:hover .galright{
  filter: brightness(0);
}
.right-arrow{
  width: 16px;
  filter: brightness(0) invert(1);
}
.bttn:hover .right-arrow{
  filter: none;
}
 .line{
  width: 100%;
  height: 1px;
  margin-bottom: 35px;
  background-color: #33333330;
  margin-top: 35px;
 }
 .counter-value, .plus{
  font-weight: 600;
  color: #00622c;
  font-size: 2.5rem;
  margin: 0;
 }
 .counter-flex{
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
 }
 .flexVcenter{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
 }
 /* features */
 .products, .gallery{
  background-color: #dcdcdc36;
 }
 .why-img{
  overflow: hidden;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
 }
 .why-img img{
  border-radius: 10px;
  height: 300px;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
 }
 .why-cont .para{
  overflow: hidden;
  max-height: 55px;
  margin: 0;
 }
 .why-cont{
  background: #fff;
  padding: 20px;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
 }
 .why-cont h5{
  color: #00622c;
  font-weight: 600;
 }
 .why-img svg{
  position: absolute;
  bottom: -2px;
  background-size: cover;
  width: auto;
  left: 0;
  right: 0;
  height: 40px;
 }
 .whyicn{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #00622c;
  position: absolute;
  top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .whyicn i{
  color: #fff;
  font-size: 20px;
 }
 .posrel{
  position: relative;
 }
 .whybox:hover .why-img img{
  transform: scale(1.1);
  overflow: hidden;
 }
 .ovhidden{
  overflow: hidden;
 }
/* products */
.products .color:hover{
  color: #333;
}
.hero {
  display: flex;
  position: relative;
  width: 18%;
  height: 100%;
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 6px 12px 20px rgb(173 173 173 / 10%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-profile-img {
  width: 220px;
    position: relative;
    max-width: 220px;
    top: -4px;
    margin-bottom: 20px;
}

 .hero:before{
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background-color: #3333331c;
  bottom: 53px;
 }
.hero-description p{
  text-align: center;
  color: #333;
  font-weight: 600;
}
.hero-description p, .hero-date p{
  margin: 0;
}

.hero-btn {
  color: #ffffff;
  padding: 4px 13px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 0.75rem;
  position: relative;
  width: max-content;
  opacity: .8;
}

.hero-btn a {
  color: #fff;
}

.hero-date {
  color : #fff;
  position: relative;
  display: none;
}
/* END CARD DESIGN */

.prodflex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-sec{
  display: flex;
  gap: 25px;
  flex-flow: wrap;
}

.productflex{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px;
  flex-flow: column;
  position: relative;
  padding-bottom: 0;
}
.flex-date{
  display: flex;
  gap: 0;
  align-items: center;
}
.mergebtn{
  display: flex;
  gap: 7px;
}
.product-sec .hero:hover .hero-profile-img{
  transform: translateY(-10px);
}
.product-sec .hero:hover .hero-description p{
  color: #00622c;
}
/* gallery */
.gallerybox{
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.gallerybox img{
  min-height: 200px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.gallerybox::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000008c;
  inset: 0;
  opacity: 0;
  transition: 0.3s;
}
.gallerybox:hover::after, .gallerybox:hover i{
  opacity: 1;
}
.gallerybox i{
  position: absolute;
  z-index: 1;
  color: #00622c;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  opacity: 0;
  transition: 0.3s;
  background: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
/* footer */
footer{
  /* background: linear-gradient(0deg, #000000, #00622c); */
  background-color: #00622c;
  position: relative;
}
footer::before{
  position: absolute;
  content: '';
  background-image: url(../img/images/footer-bg.svg);
  height: 350px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  opacity: .6;
  bottom: 0;
}
.circlefoot{
  height: 85px;
  width: 85px;
  /* background: linear-gradient(0deg, #000000, #00622c); */
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.circlefoot img{
  width: 50px;
}
.circle-foot{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.circle-foot a, .circle-foot p, footer p, footer a{
  color: #fff;
  opacity: .8;
  font-size: 0.875rem;
}
.line2{
  height: 1px;
  width: 100%;
  background-color: #ffffff2e;
  margin-bottom: 35px;
  margin-top: 35px;
}
.logofoot img{
  filter: brightness(0) invert(1);
  width: 160px;
}
.footcol h5{
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}
.footcol h5::before{
  position: absolute;
  bottom: -10px;
  background-color: #fff;
  height: 2px;
  width: 20px;
  content: '';
}
.footcol ul{
  line-height: 30px;
}
footer .flexicon a:hover i{
  color: #fff;
}
.bottom-right a{
  opacity: 1;
}
.bottom-foot{
  display: flex;
  justify-content: space-between;
}
.footcol a:hover{
  opacity: 1;
}
footer .flexicon a{
  font-size: 1rem;
}
.mob{
  display: none;
}
.footconticn li a{
  display: flex;
  gap: 10px;
}
.footconticn img{
  filter: brightness(0) invert(1);
  width: 20px;
}

/* RESPONSIVE */
@media(max-width: 1199px){
  .logocol img{
    width: 140px;
  }
  .menucol li, .iconcol {
    gap: 15px;
}
.counter .para{
  font-size: 0.8rem;
}
.counter-value, .plus {
  font-size: 2.3rem;
}
.hero{
  width: 22%;
}

}

@media(max-width: 991px){
  .menucol, .logocol, .iconcol, .logocol::after, .logocol::before{
    display: none;
  }
  .hero-description p, .hero-date p {
    margin: 0;
    font-size: 0.8rem;
}
.hero-profile-img {
  margin-bottom: 0px;
}
.hero:before {
  bottom: 35px;
}
.hero {
  width: 30%;
}
.footnone{
  display: none;
}
.mob{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.moblogo img{
  width: 150px;
  padding: 5px;
}
.mobbtn img{
  width: 23px;
}
.main-header{
  margin-top: 20px;
}
}

@media(max-width: 767px){
  .slider, .sliderbox{
    height: 80vh;
  }
  .mainhead{
    font-size: 2rem;
    line-height: 38px;
  }
  .prodbtn{
    width: 200px;
  }
  .prodflex{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width: 575px){
  .hero {
    width: 100%;
}
.btns{
  gap: 15px;
}
.bttn{
  padding: 10px 15px 10px 15px;
}
.footm{
  margin-top: 20px;
}
.bottom-foot {
  flex-direction: column;
  gap: 5px;
}
.circle-foot {
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
}
.circlefoot{
  margin: 0;
  height: 50px;
  width: 50px;
}
.circle-foot p{
  margin: 0;
  width: calc(100% - 50px);
}
.circlefoot img {
  width: 20px;
}
.slider, .sliderbox{
  height: calc(100vh - 67px);
}
}

@media(max-width: 480px){
  #counter .column{
    width: 50% !important;
  }

}

.sliderbox .mob{
    display: none;
}

@media(max-width: 575px){
    .sliderbox .mob{
        display: block;
    }
    .sliderbox .desk{
        display: none;
    }
}


