@import url(https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css);
@import url(slick.theme.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css);
:root {
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: #578d41;
  --white: hsl(0, 0%, 100%); /** * gradient color */
  --gradient: linear-gradient(
    -90deg,
    hsl(0, 0%, 100%) 0%,
    hsl(0, 0%, 100%) 100%
  );
  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1); /** * radius */
  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px; /** * transition */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}
/*-----------------------------------*\ #RESET \*-----------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a,
img,
data,
input,
button,
ion-icon {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  height: auto;
}
p {
  text-align: justify;
}
input,
button {
  background: none;
  border: none;
  font: inherit;
}
input {
  width: 100%;
}
button {
  cursor: pointer;
}
ion-icon {
  pointer-events: none;
}
address {
  font-style: normal;
}
html {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
:focus-visible {
  outline-offset: 4px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}
::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
} /*-----------------------------------*\ #REUSED STYLE \*-----------------------------------*/
.container {
  padding-inline: 15px;
}
.section {
  padding-block: 50px;
}
.shape {
  position: absolute;
  display: none;
}
.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.h1,
.h2,
.h3 {
  color: #000;
  line-height: 1;
}
.section-title {
  color: #0d4725;
  text-align: center;
  font-family: Poppins;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 62.5px */
  letter-spacing: 1px;
}
.section-title .span {
  display: inline-block;
  color: var(--color);
}
.btn {
  background-color: var(--kappel);
  color: #fff;
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: 10px;
  overflow: hidden;
}
.has-before,
.has-after {
  position: relative;
  z-index: 1;
}
.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}
.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-103%);
  transition: var(--transition-2);
}
.btn:is(:hover, :focus)::before {
  transform: translateX(0);
}
.img-holder {
  overflow: hidden;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}
.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}
.grid-list {
  display: grid;
  gap: 30px;
}
.category-card,
.stats-card {
  background-color: hsla(var(--color), 0.1);
}
:is(.news, .blog) .section-title {
  margin-block-end: 40px;
} /* ----------------hover----------------- */ /* Underline From Center */
.hvr-underline-from-center {
  display: block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #578d41;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
} /*-----------------------------------*\ #HEADER \*-----------------------------------*/
.header .btn {
  display: none;
}
.header {
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 4;
  position: fixed;
}
.header.active {
  position: fixed;
  background: #fff;
}
.header.active .navbar-link {
  color: #000;
}
.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 24px;
  transition: var(--transition-1);
}
.header-action-btn:is(:hover, :focus) {
  color: var(--kappel);
}
.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}
.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
  display: block;
}
.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}
.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}
.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}
.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}
.navbar-list {
  padding: 15px 20px;
}
.navbar-item:not(:last-child) {
  border-block-end: 1px solid #ccc;
}
.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}
.nav-close-btn {
  background-color: hsl(186.94deg 91.53% 37.06%);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
  color: #fff;
}
.navbar-link:is(:hover, :focus) {
  color: #fff;
}
.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
} /*-----------------------------------*\ #banner \*-----------------------------------*/
.banner {
  height: 100vh;
}
.banner .btn {
  background: #fff;
  color: #134b28;
}
.carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}
.carousel-caption {
  bottom: 40%;
  left: 8%;
  text-align: left;
} /*-----------------------------------*\ #FOOTER \*-----------------------------------*/
.footer {
  background-repeat: no-repeat;
  background: linear-gradient(
    90deg,
    rgb(165, 222, 244),
    rgb(227, 245, 252) 99.99%,
    rgb(255, 255, 255) 100%
  ) !important;
}
.footer-top {
  display: grid;
  gap: 30px;
}
.footer-brand {
  padding-right: 10px;
}
.footer-brand p {
  font-size: 14px;
  text-align: left;
  margin: 15px 0px;
}
.footer-brand h6 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: left;
}
.footer-brand-text {
  margin-block: 20px;
}
.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}
.footer-brand .wrapper .span {
  font-weight: var(--fw-500);
}
.footer-link {
  transition: var(--transition-1);
}
.footer-link:is(:hover, :focus) {
  color: #000;
}
.footer-list-title {
  color: #000;
  font-weight: 600;
  margin-block-end: 10px;
}
.footer-list .footer-link {
  padding-block: 5px;
  color: #000;
  font-weight: 300;
}
.foot.d-flex {
  justify-content: space-between;
} /* .foot.d-flex div{ flex: 1; } */
.footer-list p.address {
  font-size: 14px;
  color: #000;
}
.social-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 20px 0px;
}
.social-link {
  font-size: 20px;
  color: #000;
}
.footer-bottom {
  padding-block: 10px;
  color: #000;
}
.d-flex.download {
  align-items: center;
  gap: 5px;
  margin: 10px 0px;
}
.d-flex.download img {
  width: 100%;
}
.copyright {
  text-align: center;
}
.copyright-link {
  color: var(--kappel);
  display: inline-block;
} /*-----------------------------------*\ #BACK TO TOP
  \*-----------------------------------*/
.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}
.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
} /*-----------------------------------*\ #MEDIA QUERIES
  \*-----------------------------------*/ /** * responsive for large than 575px screen */
@media (min-width: 575px) {
  /* .container { max-width: 520px; width: 100%; margin-inline: auto; } */
  .grid-list {
    grid-template-columns: 1fr 1fr;
  }
  :is(.news, .blog) .grid-list {
    grid-template-columns: 1fr;
  } /** * HEADER */
  .header-actions {
    gap: 30px;
  } /** * HERO */
  .hero-banner {
    grid-template-columns: 1fr 0.9fr;
  } /** * FOOTER */
  .footer-brand,
  .footer-list:last-child {
    grid-column: 1 / 3;
  }
}
@media (min-width: 768px) {
}
.btn {
  padding: 10px 15px;
} /** * ABOUT */
.about {
  padding-block-start: 90px;
}
.about-banner {
  padding: 60px;
  padding-inline-end: 0;
}
.about-banner .img-holder {
  max-width: max-content;
  margin-inline: auto;
}
.about-shape-1 {
  display: block;
  top: -40px;
  right: -70px;
} /** * FOOTER */
.footer-brand,
.footer-list:last-child {
  grid-column: auto;
}
.newsletter-form .btn {
  padding-block: 10px;
} /** * responsive
  for large than 992px screen */
@media (min-width: 992px) {
  /** * CUSTOM PROPERTY */
  :root {
    /** * typography */
    --fs-1: 5.5rem;
    --fs-2: 4.5rem;
  } /* .container { max-width: 960px; } */
  .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }
  :is(.news, .blog) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .grid-list {
    grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 95%;
  }
}
@media (min-width: 992px) {
  :root {
    /** * typography */
    --fs-1: 6.5rem; /** * spacing */
    --section-padding: 90px;
  } /** * REUSED STYLE */
  .shape {
    display: block;
  } /** * HEADER */
  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay {
    display: none;
  }
  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }
  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  .navbar,
  .navbar.active {
    all: unset;
  }
  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }
  .navbar-item:not(:last-child) {
    border-block-end: none;
  }
  .navbar-link {
    color: #fff;
  }
  .header .btn {
    margin-inline-end: 0;
  }
  .header-actions {
    display: none;
  }
  @media (max-width: 991px) {
    .row.mb.rve {
      flex-direction: column-reverse;
    }
    .header-actions {
      display: block;
    }
  }
}
.header.active {
  position: fixed;
} /* ---------------------responsive----------------- */
@media screen and (max-width: 800px) {
  br {
    display: none;
  }
  .header-action-btn ion-icon {
    font-size: 20px !important;
  }
  .hero-content h1 {
    line-height: normal;
    font-size: 24px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .about h4 {
    font-size: 26px;
  }
  .banner {
    height: 85vh;
  }
  .main-flex {
    gap: 10px;
    margin: 20px 0px;
    justify-content: space-between;
  }
  .details h5 {
    font-size: 16px;
  }
  a,
  img,
  data,
  input,
  button,
  ion-icon {
    font-size: 14px;
  }
  .details p {
    font-size: 12px;
  }
  .d-flex.first img {
    width: 40px !important;
  }
  .about {
    padding-bottom: 90px;
  }
  .section-title {
    font-size: 22px;
  }
  section.section.man_container {
    padding: 60px 0px 0px 0px;
  }
  .man_behaind {
    padding: 30px 15px;
  }
  ul.footer-list {
    padding: 0;
  }
  .quote h4 {
    font-size: 18px;
  }
  .quote p {
    font-size: 14px;
  }
  .quote {
    padding: 30px 0px;
  }
  .image_container img {
    width: 100%;
  }
  p {
    font-size: 16px;
  }
  .about_content {
    padding: 30px 0px;
  }
  .foot.d-flex {
    flex-direction: column;
  }
  .about {
    padding-block-start: 42px;
    padding-bottom: 40px;
  }
  :is(.news, .blog) .section-title {
    margin-block-end: 20px;
  }
  .grid-list {
    padding: 0;
  }
  .card-content p {
    text-align: left;
  }
  .news p {
    margin: 10px 0px;
  }
  .news_button {
    margin: 10px 0px 0px 0px;
  }
  section.section.news {
    padding-bottom: 40px;
  }
  .news .btn {
    margin-block-start: 0px;
  }
  .testimonial_content {
    margin: 0px;
    padding: 15px;
  }
}
@media (min-width: 800px) and (max-width: 992px) {
  .foot.d-flex {
    flex-direction: column;
  }
}
@media (min-width: 801px) and (max-width: 1300px) {
  .section {
    padding-block: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .d-flex.download.d-download1 {
    display: flex;
  }
  .footer-list.d-display {
    display: none;
  }
  .d-flex.download.d-download1 img {
    display: block;
  }
}
.banner_head {
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px 0px 0px 200px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 90px;
}
@media (min-width: 600px) and (max-width: 800px) {
  .product_fl_container {
    flex-direction: row;
  }
}
.image_container img {
  width: 90%;
  margin: inherit;
}
.image_container {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}
.slick-dots li button:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #0d4725;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  .image_container img {
    width: 100%;
  }
  .banner_head .hero-content h1 {
    font-size: 24px;
  }
}
.social-link {
  font-size: 23px;
  color: #000;
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
p.text_f {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: left;
}
