/* Global Css goes here */
:root {
  --primary: #66b538;
  --sec: #161b1f;
  --text: #4d4d4d;
  --off-white: #f5f5f5;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--text);
}
.text-small * {
  font-size: 14px;
}
a {
  text-decoration: none;
  line-height: 1.4;
  color: var(--sec);
  display: inline-block;
}
a.white,
a.white:hover {
  color: #fff;
}
a:hover {
  color: var(--primary);
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.btn {
  border-radius: 30px;
  background-color: var(--primary);
  padding: 12px 30px;
  color: #fff;
  display: inline-block;
}
.link {
  color: var(--primary);
  font-weight: 500;
}
.btn:hover {
  background-color: var(--sec);
  color: #fff;
}
.btn.hover-white:hover {
  background-color: #fff;
  color: var(--sec);
}
.dark {
  background-color: var(--sec);
}
.dark :where(h1, h2, h3, h4, h5, h6, p, li, a) {
  color: #fff;
}
.text-small {
  font-size: 14px;
  line-height: 1.6em;
}
section {
  padding: 100px 20px;
}
img {
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 800 !important;
  color: var(--sec);
}
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--sec);
}
h1,
.h1 {
  font-size: 50px;
}
h2,
.h2 {
  font-size: 42px;
}
h3,
.h3 {
  font-size: 36px;
}
.d-color span {
  color: var(--primary);
}
.mw-700 {
  max-width: 700px;
  margin: 0 auto;
}
.mw-600 {
  max-width: 600px;
  margin: 0 auto;
}
p:last-child {
  margin: 0;
}
.wave-top {
  --wave-height: 80px;
  clip-path: shape(
    from 0 var(--wave-height),
    curve to 100% var(--wave-height) with 50% -40px / 50% calc(var(
            --wave-height
          ) * 2.5),
    vline to calc(100% - var(--wave-height)),
    curve to 0 calc(121% - var(--wave-height)) with 117% 116% / 100%
      calc(99% - 110px * 0),
    close
  );
}
.wave-bottom {
  --wave-height: 80px; /* or 58px, adjust as you need */
  clip-path: shape(
    from 0 0,
    /* Start at top left */ hline to 100%,
    /* Draw a straight line to top right */ vline to
      calc(100% - var(--wave-height)),
    /* Move vertically down */ curve to 0 calc(100% - var(--wave-height)) with
      50% 100% / 50% calc(100% - var(--wave-height) * 2.5),
    close
  );
}
.wave-top-bottom {
  --wave-height: 80px;
  clip-path: shape(
    from 0 var(--wave-height),
    curve to 100% var(--wave-height) with 50% -40px / 50% calc(var(
            --wave-height
          ) * 2.5),
    vline to calc(100% - var(--wave-height)),
    curve to 0 calc(100% - var(--wave-height)) with 50% 100% / 50%
      calc(100% - var(--wave-height) * 2.5),
    close
  );
}
.wave-top-green {
  --wave-height: 41px;
  clip-path: shape(
    from 0 var(--wave-height),
    curve to 100% var(--wave-height) with 49% -49px / 36% calc(49% * 3),
    vline to calc(100% - var(--wave-height)),
    curve to 0 calc(121% - var(--wave-height)) with 117% 116% / 100%
      calc(99% - 110px * 0),
    close
  );
  background: var(--primary);
  width: 95%;
  height: 147px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  bottom: -142px;
}
.wave-bottom-green {
  --wave-height: 41px;
  clip-path: shape(
    from 0px 0,
    curve to 100% 0 with 25% 0px / 75% 0,
    vline to calc(100% - var(--wave-height)),
    curve to 0 calc(100% - var(--wave-height)) with 50% 100% / 63%
      calc(33% - var(--wave-height) * 3),
    close
  );
  background: var(--primary);
  width: 95%;
  height: 135px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  bottom: -6px;
}
.vertical-divider {
  border-left: 1px solid #161b1f6e;
  width: 2px;
  height: 90%;
}
.divider {
  background-color: #fff;
  width: 50px;
  height: 1px;
}
.container-small {
  max-width: 1000px;
  margin: 0 auto;
}
input {
  width: 100%;
  background-color: #fff;
  border: 1px solid #bebebe;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}
input:focus {
  outline: none;
  border: 1px solid var(--primary);
}
.input-icon {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

/* Global css ends here */

/* Offcanvas Menu goes here */
/* Offcanvas Menu goes here */

.offcanvas_backdrop {
  position: fixed;
  top: 0;
  transition: 1s ease all;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
  background-color: #0000007d;
}
.menu-open .offcanvas_backdrop.offcanvas_menu {
  visibility: visible;
  opacity: 1;
  transition: 0.1s all;
}
.offcanvas_panel {
  max-width: 21em;
  left: 0;
  position: absolute;
  padding: 40px 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: clip;
  width: 100%;
  transform: translateX(-100%);
  transition: 0.3s all;
  background-color: #fff;
}
.menu-open .offcanvas_backdrop.offcanvas_menu .offcanvas_panel {
  transform: translateX(0);
}
.offcanvas_panel a.custom-logo-link {
  display: inline-block;
}
#off-canvas-menu {
  margin-top: 16px;
}
#off-canvas-menu ul {
  padding: 0;
  list-style: none;
}
#off-canvas-menu ul li a {
  padding: 10px 20px;
  display: inline-block;
  background-color: transparent;
  font-size: 16px;
  width: 100%;
}
#off-canvas-menu ul li a.active,
#off-canvas-menu ul li a:hover,
#off-canvas-menu ul li.current_page_item a {
  background: var(--primary);
  color: #fff;
}
.social_links.offcanvas {
  display: none;
  padding-inline: 20px;
  margin-top: 10px;
}
.offcanvas_panel .close ul {
  list-style: none;
  width: 20px;
  height: 20px;
  padding: 0;
}
.offcanvas_panel .close {
  opacity: 1;
  position: absolute;
  top: 30px;
  right: 20px;
  text-shadow: none;
  cursor: pointer;
}
.offcanvas_panel .close ul li {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
}
.offcanvas_panel .close ul li:first-child {
  transform: rotate(45deg);
}
.offcanvas_panel .close ul li:last-child {
  transform: rotate(-45deg);
  margin-top: -2px;
}
.toggle.close {
  position: absolute;
  right: 15px;
  top: 40px;
}
.toggle.close li:first-child {
  transform: rotate(45deg);
  width: 20px;
  height: 2px;
  background-color: var(--sec);
}
.toggle.close li:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -2px;
  height: 2px;
  width: 20px;
  background-color: var(--sec);
}

/* Offcanvas menu ends here */

/* Header goes here */
#topbar {
  background-color: var(--primary);
  padding: 8px 20px;
}
.icon-list-item :where(a, i) {
  color: #fff;
}
.icon-list-icon-stacked {
  padding: 8px 13px;
  background: #ffffff33;
  border-radius: 50%;
  font-size: 14px;
}
.icon-list-item-center {
  border-left: 2px solid #ffffff70;
  border-right: 2px solid #ffffff70;
  margin-inline: 10px;
  padding-inline: 30px;
}
.toggle-line {
  width: 27px;
  height: 3px;
  margin-bottom: 5px;
  background: #000;
  border-radius: 11px;
}
.white .toggle-line {
  width: 27px;
  height: 3px;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 11px;
}
#mainheader {
  padding: 15px 20px 0;
  background-color: #fff;
}
.menu-item .menu-item-link {
  font-weight: 500;
  display: inline-block;
}
.primary-menu > .menu-item > .menu-item-link {
  margin-bottom: -20px;
  padding: 10px 0px 30px;
}
.primary-menu > .menu-item > .menu-item-link.active {
  color: var(--primary);
  position: relative;
}
.primary-menu > .menu-item > .menu-item-link.active:before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  position: absolute;
  bottom: 8px;
}
.primary-menu > .menu-item > .menu-item-link.active:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--primary);
  transform: rotate(45deg) translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 6px;
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children::after {
  content: "+";
  right: -18px;
  top: 9px;
  position: absolute;
  font-weight: 500;
  font-size: 17px;
}
.menu-item-has-children:hover:after {
  color: var(--primary);
}
.primary-menu .sub-menu {
  position: absolute;
  top: 140%;
  min-width: 250px;
  transform: translateY(-20px);
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s linear;
  z-index: 9;
}
.primary-menu .sub-menu .menu-item-link {
  padding: 15px;
  transition: 0.2s ease;
  width: 100%;
}
.primary-menu .sub-menu .menu-item-link:hover,
.primary-menu .sub-menu .menu-item-link.active {
  background-color: var(--primary);
  color: #fff;
}
.primary-menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.logo-col {
  padding: 30px 20px 30px;
  border-radius: 0 0 15px 15px;
  background: #fff;
  margin-top: -84px;
  margin-bottom: -30px;
  z-index: 9;
}
/* Header ends here */

/* Banner goes here */
#banner {
  padding-bottom: 270px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/banner.jpg");
  background-size: cover;
  background-position: center center;
}
.banner-social-media .social-link {
  z-index: 3;
  position: relative;
}
.banner-social-media .social-link:nth-child(2) {
  z-index: 2;
  margin-left: -8px;
}
.banner-social-media .social-link:nth-child(3) {
  z-index: 1;
  margin-left: -11px;
}
.reviews-wrapper {
  padding: 15px 20px;
  background: #ffffff61;
  border-radius: 17px;
  max-width: 280px;
  border: 1px solid #b5b5b5;
  backdrop-filter: blur(5px);
}
.banner-image {
  position: absolute;
  bottom: 25px;
  right: 48px;
  max-width: 570px;
  z-index: 7;
}
.banner-leafs {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 670px;
  z-index: 6;
}
.banner-ellipse {
  position: absolute;
  bottom: 70px;
  left: 0;
}
.scroll-bottom-link {
  background-color: var(--primary);
  padding: 12px 20px 12px;
  border-radius: 50%;
  position: absolute;
  bottom: 66px;
  left: 50%;
  z-index: 99;
  color: #fff;
  font-size: 30px;
  transform: translateX(-50%);
}
.scroll-bottom-link:hover {
  color: #fff;
}
/* Banner ends here */

/* Brands goes here */

/* Brands ends here */

/* Form goes here */
.form-wrap {
  background-image: linear-gradient(#f9fef7, #f9fef7), url("../images/leaf.png");
  padding: 60px;
  border: 1px solid #66b5387e;
  border-radius: 20px;
}
.form-leaf {
  right: 0;
  z-index: 0;
}
/* Form ends here */

/* Aboutus goes here */
.award-widget {
  background-color: #f4fcff;
}
.award-widget {
  max-width: 270px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 17px 0 rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  z-index: 1;
  position: relative;
}
.award-widget .icon-box-left-desc {
  line-height: 1.1;
}
.award-widget .icon-box-left-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 20px;
}
/* Aboutus ends here */

/* Services goes here */
#services {
  background-image: url("../images/texture.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 200px;
}
.services-wrap {
  gap: 20px 0px;
}
.service-wrap {
  border: 1px solid #4d4d4d4a;
  border-radius: 15px;
  background-color: #fff;
  padding: 15px;
}
.service-image {
  width: 38%;
}
.service-content {
  width: 58%;
}
/* Services  ends here */

/* Why Choose Us goes here */
#whychooseus {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/why-choose-us.jpg");
  padding-block: 200px;
}
.whychooseus-wave {
  margin-top: -110px;
}
.icon-box-desc {
  color: #f5f5f5 !important;
}
.icon-box-container:first-child,
.icon-box-container:nth-child(2),
.icon-box-container:nth-child(3) {
  border-bottom: 1px solid;
}
.icon-box-container:first-child,
.icon-box-container:nth-child(2),
.icon-box-container:nth-child(4),
.icon-box-container:nth-child(5) {
  border-right: 1px solid;
}
.ellipse-2 {
  position: absolute;
  bottom: 60px;
  right: -20px;
}
/* Why choose us ends here */

/* Testimonial goes here */
.testimonial-body {
  padding: 30px;
  background-color: #f4fcff;
  box-shadow: 0 0 10.6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.testimonial-body::after {
  width: 25px;
  height: 25px;
  background: #f4fcff;
  content: "";
  position: absolute;
  bottom: -13px;
  left: 26px;
  transform: rotate(45deg);
}
.slick-list.draggable {
  overflow-x: clip !important;
  overflow-y: visible !important;
}
.slick-slide {
  margin-inline: 10px;
}
.slick-arrow {
  border-radius: 7px;
  border: 2px solid var(--primary);
  position: absolute;
  top: -120px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slick-arrow-prev.slick-arrow {
  right: 45px;
}
.slick-arrow-next.slick-arrow {
  background: var(--primary);
  color: #fff;
}
/* Testimonial ends here */

/* CTA goes here */
#cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* CTA ends here */

/* Contact Info goes here */
#contactinfo .icon-box-wrap {
  width: 31%;
}
.icon-box-icon-stacked {
  border: 1px solid var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--primary);
  background-color: #66b5380f;
}
.google-map {
  border: 3px solid var(--primary);
}
/* Contact info ends here */

/* Footer goes here */
#mainfooter {
  padding: 200px 20px 80px;
  color: #ffffffb2;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/footer.jpg");
}
.ftr-widget-2 {
  font-weight: 400;
}
.ftr-widget-4 .icon-list-icon-stacked,
.ftr-widget-1 .icon-list-icon-stacked {
  padding: 6px 12px;
  background: transparent;
  border-radius: 8px;
  border: 1px solid #fff;
  font-size: 14px;
}
.ftr-widget-1 .icon-list-icon-stacked {
  padding: 5px 10px;
  border-radius: 6px;
}
.ftr-widget-4 .icon-list-item-center,
.ftr-widget-1 .icon-list-item-center {
  border: none;
  margin-inline: 0px;
  padding-inline: 0px;
}
#footerbottom {
  background-color: var(--primary);
  padding: 10px 20px;
  color: #fff;
}
.ftr-bottom-items .ftr-bottom-item:nth-child(2) {
  border-left: 1px solid #efefefb8;
  border-right: 1px solid #efefefb8;
  padding-inline: 20px;
}
/* footer ends here */
