@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&display=swap");
:root {
  --global-font-family: "Manrope", sans-serif;
  --global-font-family-2: "Fraunces", serif;
  --global-font-size: 1rem;
  --global-font-size-html: 16px;
  --global-font-weight: 400;
  --global-font-color: #4e594f;
  --global-background-color: #FBFDF7;
}

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

::-webkit-scrollbar-track {
  background: #FBFDF7;
}

::-webkit-scrollbar-thumb {
  background: #0B140D;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #3abd2f;
}

@-webkit-keyframes neechejaa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes neechejaa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes paintFill {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 1;
  }
}

@keyframes paintFill {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 0.95;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    opacity: 1;
  }
}

@-webkit-keyframes paintShine {
  0% {
    left: -100%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0.4;
  }
}

@keyframes paintShine {
  0% {
    left: -100%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    left: 100%;
    opacity: 0.4;
  }
}

@-webkit-keyframes brushSweep {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 0.8;
  }
}

@keyframes brushSweep {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 0.8;
  }
}

@-webkit-keyframes colorWash {
  0% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
  50% {
    -webkit-filter: brightness(1.08) saturate(1.1);
            filter: brightness(1.08) saturate(1.1);
  }
  100% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
}

@keyframes colorWash {
  0% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
  50% {
    -webkit-filter: brightness(1.08) saturate(1.1);
            filter: brightness(1.08) saturate(1.1);
  }
  100% {
    -webkit-filter: brightness(1) saturate(1);
            filter: brightness(1) saturate(1);
  }
}

@-webkit-keyframes paintFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes paintFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size-html);
  font-weight: var(--global-font-weight);
  color: var(--global-font-color);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--global-background-color);
  overflow-x: hidden;
}

body ::-moz-selection {
  background-color: #0B140D;
  color: #FBFDF7;
}

body ::selection {
  background-color: #0B140D;
  color: #FBFDF7;
}

body .container {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0.938rem;
}

body .center {
  text-align: center;
}

body .wpb_raw_code.wpb_raw_html {
  margin-bottom: 0;
}

body .wpb_single_image {
  margin-bottom: 0;
}

body .wpb_text_column {
  margin-bottom: 0;
}

body .vc_icon_element {
  margin-bottom: 0;
}

body .hidden {
  display: none !important;
}

body .desk-hide {
  display: none !important;
}

body p {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size);
  font-weight: var(--global-font-weight);
  margin: 0 0 1em;
}

body a {
  color: var(--global-font-color);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body a:hover {
  color: #3abd2f;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body .m-auto {
  margin-left: auto;
  margin-right: auto;
}

body .mg-none {
  margin: 0 !important;
}

body .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body .flex-row .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.34%;
          flex: 0 0 8.34%;
  width: 8.34%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.67%;
          flex: 0 0 16.67%;
  width: 16.67%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  width: 33.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66%;
          flex: 0 0 41.66%;
  width: 41.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33%;
          flex: 0 0 58.33%;
  width: 58.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66%;
          flex: 0 0 66.66%;
  width: 66.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  width: 75%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33%;
          flex: 0 0 83.33%;
  width: 83.33%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66%;
          flex: 0 0 91.66%;
  width: 91.66%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .flex-row .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: 0 0.938rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .vc_gitem-zone-a .vc_gitem-row-position-top, body .vc_gitem-zone-b .vc_gitem-row-position-top, body .vc_gitem-zone-a .vc_gitem-row-position-middle, body .vc_gitem-zone-b .vc_gitem-row-position-middle {
  position: relative;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

body .vc-gitem-zone-height-mode-auto:before {
  padding: 0;
}

body .vc_gitem_row .vc_gitem-col {
  padding: 0;
}

body .vc_grid-item-zone-c-left .vc_gitem-animated-block {
  width: 100%;
  float: none;
}

body .no-pad {
  padding: 0 !important;
}

body .no-pad > .vc_column-inner {
  padding: 0 !important;
}

body header#masthead {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
  border-bottom: none;
  padding: 1.25rem 0;
}

body header#masthead.sticky {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: rgba(248, 247, 244, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 0.75rem 0;
}

body header#masthead.sticky .top-bar {
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 0;
  overflow: hidden;
}

body header#masthead.sticky .header-main .header-inner {
  padding: 0.625rem 1.25rem 0.625rem 1.5rem;
}

body header#masthead.sticky .header-main .logo img {
  max-height: 2.5rem;
  width: auto;
}

body header#masthead.sticky .header-main ul.menu-wrapper li.menu-item a {
  font-size: 0.9375rem;
}

body header#masthead.sticky .header-main .header-cta a, body header#masthead.sticky .header-main a.phone-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

body header#masthead .mobile-menu-link {
  display: none;
}

body header#masthead .header-main {
  padding: 0;
}

body header#masthead .header-main .header-inner {
  background: #FBFDF7;
  border: 1px solid #E3E3E3;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem 0.75rem 1.75rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body header#masthead .header-main .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

body header#masthead .header-main .flex-row > div {
  padding: 0;
}

body header#masthead .header-main .logo-head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

body header#masthead .header-main .main-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
}

body header#masthead .header-main .header-cta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: auto;
}

body header#masthead .header-main .header-cta .widget {
  margin: 0;
}

body header#masthead .header-main .header-cta a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background: #0B140D;
  color: #FBFDF7;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.2;
}

body header#masthead .header-main .header-cta a:hover {
  color: #FBFDF7;
  background: #3abd2f;
}

body header#masthead .header-main .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 150px;
}

body header#masthead .header-main .logo img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: auto;
  max-height: 2.75rem;
  width: auto;
  display: block;
}

body header#masthead .header-main a.phone-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background: #0B140D;
  color: #FBFDF7;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.2;
}

body header#masthead .header-main a.phone-btn i {
  font-size: 0.9em;
}

body header#masthead .header-main a.phone-btn:hover {
  color: #FBFDF7;
  background: #3abd2f;
}

body header#masthead .header-main ul.menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.5rem;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item {
  list-style: none;
  position: relative;
  text-transform: capitalize;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a {
  padding-right: 1rem;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'FontAwesome';
  position: absolute;
  top: 30%;
  right: 0;
  font-size: 0.8em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0b140db3;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.menu-item-has-children > a:hover::after {
  rotate: 180deg;
  color: #3abd2f;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a {
  color: #005217;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item.current-menu-item > a:before {
  left: 0;
  width: 100%;
  right: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a {
  font-family: var(--global-font-family);
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b140db3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  padding: 0.2rem 0;
  font-weight: 500;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  bottom: -0.125rem;
  background: #3abd2f;
  height: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover {
  color: #005217;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item a:hover:before {
  left: 0;
  right: 0;
  width: 100%;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu {
  position: absolute;
  top: 125%;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  height: 0;
  background: #FBFDF7;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.18);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.18);
  border-top: 2px solid #0b140db3;
  display: block;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  background: #FBFDF7;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a {
  width: 100%;
  padding: 0.5rem 1rem;
  color: #0B140D;
  letter-spacing: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  display: block;
  position: relative;
  font-size: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
  text-transform: capitalize;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:before {
  display: none;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item a:hover {
  background: #3abd2f;
  color: #FBFDF7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item ul.sub-menu li.menu-item:last-child {
  border-bottom: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item button.sub-menu-toggle {
  display: none;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

body header#masthead .header-main ul.menu-wrapper li.menu-item:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body nav#mm-menu .mm-navbar .mm-navbar__title {
  background: #3abd2f;
  color: #FBFDF7;
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}

body nav#mm-menu .mm-navbar .mm-btn::before {
  border-color: #FBFDF7;
}

body nav#mm-menu .mm-panels .mm-panel .mm-navbar {
  background: #3abd2f;
}

body nav#mm-menu .mm-panels .mm-panel .mm-navbar a.mm-navbar__title {
  font-size: 1.2rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  color: #FBFDF7;
}

body nav#mm-menu .mm-panels .mm-panel ul#primary-menu-list li {
  font-size: 1.1rem;
  font-family: var(--global-font-family);
  font-weight: 400;
}

body #content .vc_row {
  margin: 0;
}

body #content .vc_row > .wpb_column > .vc_column-inner {
  padding-top: 0;
}

body #content .vc_section {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 3.75rem 0;
}

body #content .vc_section[data-vc-full-width].vc_hidden {
  opacity: 1;
}

body #content .vc_section .vc_row[data-vc-full-width].vc_hidden {
  opacity: 1;
}

body #content .max-50 {
  max-width: 50%;
}

body #content .max-70 {
  max-width: 70%;
}

body #content .max-80 {
  max-width: 80%;
}

body #content .max-90 {
  max-width: 90%;
}

body #content .m-auto {
  margin: 0 auto;
}

body #content .mg-bottom {
  margin-bottom: 2rem;
}

body #content .full-img > .vc_figure {
  display: block !important;
}

body #content .full-img > .vc_figure > .vc_single_image-wrapper {
  display: block !important;
}

body #content .full-img > .vc_figure > .vc_single_image-wrapper img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  height: auto;
  width: 100%;
  max-width: initial !important;
}

body #content .border-img img {
  border-radius: 2.5rem;
}

body #content .vc-no-pad-left > .wpb_column > .vc_column-inner {
  padding-left: 0 !important;
}

body #content .vc-no-pad-left > .vc_column-inner {
  padding-left: 0 !important;
}

body #content .vc-no-pad-right > .wpb_column > .vc_column-inner {
  padding-right: 0 !important;
}

body #content .vc-no-pad-right > .vc_column-inner {
  padding-right: 0 !important;
}

body #content .desk-hidden {
  display: none;
}

body #content .wht-head {
  color: #FBFDF7 !important;
}

body #content .wht-txt p {
  color: #CFD6DF !important;
}

body #content .wpb_column {
  padding-left: 0;
  padding-right: 0;
}

body #content .main-head {
  font-size: 3.25rem;
  font-family: var(--global-font-family-2);
  font-weight: 500;
  color: #3abd2f;
  margin-bottom: 1.167rem;
}

body #content .main-head b {
  font-weight: 500;
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, #B7F44D 0%, #43B443 55%, #2A5735 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body #content .sub-head {
  font-size: 0.85rem;
  font-family: var(--global-font-family);
  font-weight: 700;
  text-transform: uppercase;
  color: #0B140D;
  margin-bottom: 0.62rem;
}

body #content .txt ul {
  padding-left: 1.5rem;
}

body #content .txt ul li {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.2rem;
  font-weight: 400;
}

body #content .txt p {
  color: var(--global-font-color);
  font-family: var(--global-font-family);
  font-size: 1.2rem;
  font-weight: 400;
}

body #content .txt p strong {
  color: #3abd2f;
  font-weight: 500;
}

body #content .txt a {
  color: var(--global-font-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: inherit;
  text-decoration: underline;
}

body #content .txt a:hover {
  opacity: 0.8;
}

body #content .justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #content .btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

body #content .btn a {
  background: #3abd2f;
  color: #FBFDF7;
  padding: 0.87rem 1.56rem;
  border-radius: 1.875rem;
  font-family: var(--global-font-family);
  font-size: 1.5625rem;
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body #content .btn a:hover {
  color: #FBFDF7;
  background: transparent !important;
}

body #content .btn a:hover::after {
  -webkit-transform: skewX(-30deg) scale(1, 1);
          transform: skewX(-30deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .btn a:before {
  display: none;
}

body #content .btn a::after {
  content: '';
  background: #0B140D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-30deg) scale(0, 1);
          transform: skewX(-30deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body #content .btn-arrow {
  margin-bottom: 0;
}

body #content .btn-arrow a {
  display: block;
  position: relative;
  background: #3abd2f;
  color: #FBFDF7;
  padding: 0.88rem 3.31rem 0.88rem 1.56rem;
  border-radius: 1.875rem;
  font-size: 1.5625rem;
  font-weight: 500;
  text-transform: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .btn-arrow a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.58rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/arrow.png) no-repeat center center;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .btn-arrow a:hover {
  color: #FBFDF7;
  background: #0B140D;
  opacity: 1;
}

body #content .btn-2 {
  margin-bottom: 0;
}

body #content .btn-2 a {
  background: transparent;
  color: #3abd2f;
  border: 1px solid #3768B0;
  border-radius: 1.875rem;
  padding: 0.87rem 1.56rem;
  font-size: 1.5625rem;
  font-weight: 500;
}

body #content .btn-2 a::before {
  display: none;
}

body #content .btn-2 a:hover {
  color: #FBFDF7;
  background: #3768B0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body #content .hero-sec {
  padding: 5rem 0;
  background: radial-gradient(circle at 20% 10%, rgba(185, 255, 102, 0.25), transparent 55%), radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.18), transparent 60%);
}

body #content .hero-sec .hero-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #content .hero-sec .hero-sub {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 0.875rem;
  font-family: var(--global-font-family);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #005217 !important;
  margin: 0 0 1.5rem;
}

body #content .hero-sec .hero-sub::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.5rem;
          flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3abd2f;
}

body #content .hero-sec .main-head {
  font-size: 4.8rem;
}

body #content .hero-sec .main-head b {
  font-style: italic;
  background: linear-gradient(135deg, #B7F44D 0%, #43B443 55%, #2A5735 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body #content .hero-sec .txt {
  margin-bottom: 2rem;
}

body #content .hero-sec .btn-flex {
  margin-bottom: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.875rem;
  width: 100%;
  max-width: 28rem;
}

body #content .hero-sec .btn-flex .btn-arrow, body #content .hero-sec .btn-flex .btn-2 {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

body #content .hero-sec .btn-flex .btn-arrow a, body #content .hero-sec .btn-flex .btn-2 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .hero-sec .btn-flex .btn-arrow a {
  position: relative;
  background: #0B140D;
  color: #fff;
  padding-right: 2.75rem;
}

body #content .hero-sec .btn-flex .btn-arrow a::after {
  background: none;
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  font-size: 1.125rem;
  line-height: 1;
}

body #content .hero-sec .btn-flex .btn-arrow a:hover {
  background: #3abd2f;
  color: #fff;
}

body #content .hero-sec .btn-flex .btn-2 a {
  background: #fff;
  color: #0B140D;
  border: 1px solid #D9D9D9;
}

body #content .hero-sec .btn-flex .btn-2 a:hover {
  background: #0B140D;
  color: #fff;
  border-color: #0B140D;
}

body #content .hero-sec .hero-list {
  margin-bottom: 0 !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 20, 13, 0.1);
}

body #content .hero-sec .hero-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

body #content .hero-sec .hero-list ul li {
  font-family: var(--global-font-family);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C7C7C;
  line-height: 1.5;
}

body #content .hero-sec .hero-list ul li strong {
  display: block;
  font-family: var(--global-font-family-2);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #005217;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

body #content .hero-sec .hero-img {
  position: relative;
}

body #content .hero-sec .hero-img .vc_figure, body #content .hero-sec .hero-img .vc_single_image-wrapper {
  display: block;
  width: 100%;
}

body #content .hero-sec .hero-img .vc_single_image-wrapper {
  border-radius: 1.75rem;
  overflow: hidden;
}

body #content .hero-sec .hero-img .vc_single_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .hero-sec .hero-slot {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: #0B140D;
  border-radius: 36px;
  padding: 0.625rem 1.125rem;
}

body #content .hero-sec .hero-slot small {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3abd2f;
  line-height: 1.2;
}

body #content .hero-sec .hero-slot span {
  display: block;
  font-family: var(--global-font-family-2);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

body #content .hero-sec .hero-review {
  position: absolute;
  left: 1rem;
  bottom: 1.5rem;
  z-index: 2;
  width: 100%;
  max-width: 17.5rem;
  background: #fff;
  border-radius: 36px;
  padding: 1.125rem 1.25rem;
  -webkit-box-shadow: 0 12px 32px rgba(11, 20, 13, 0.12);
          box-shadow: 0 12px 32px rgba(11, 20, 13, 0.12);
}

body #content .hero-sec .hero-review .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.625rem;
  color: #3abd2f;
  font-size: 1.4rem;
  line-height: 1;
}

body #content .hero-sec .hero-review p {
  font-family: var(--global-font-family);
  font-size: 1.1rem;
  font-weight: 500;
  color: #0B140D;
  line-height: 1.45;
  margin: 0 0 0.5rem;
}

body #content .hero-sec .hero-review cite {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  color: #7C7C7C;
}

body #content .why-hk-row > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .why-hk-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .why-hk-row > .wpb_column > .vc_column-inner > .wpb_wrapper::after {
  content: '';
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .why-hk-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover {
  border-color: rgba(58, 189, 47, 0.35);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
          box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
  overflow: hidden;
}

body #content .why-hk-row > .wpb_column > .vc_column-inner > .wpb_wrapper:hover::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #E6F4D9;
  pointer-events: none;
}

body #content .why-hk-row .vc_icon_element {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body #content .why-hk-row .vc_icon_element .vc_icon_element-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 50%;
  background: #0B140D !important;
  margin: 0 !important;
}

body #content .why-hk-row .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
  font-size: 1.125rem !important;
  color: #3abd2f !important;
  line-height: 1;
}

body #content .why-hk-row .why-hk-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #0B140D;
  color: #3abd2f;
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

body #content .why-hk-row h2, body #content .why-hk-row h3, body #content .why-hk-row h4, body #content .why-hk-row .why-hk-title {
  font-family: var(--global-font-family-2);
  font-size: 1.625rem;
  font-weight: 500;
  color: #0B140D !important;
  line-height: 1.25;
  margin: 0 !important;
}

body #content .why-hk-row .txt, body #content .why-hk-row .why-hk-txt {
  margin: 0;
}

body #content .why-hk-row .txt p, body #content .why-hk-row .why-hk-txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  margin: 0;
}

body #content .pricing-sec .pricing-row {
  background: linear-gradient(135deg, #0B140D 0%, #102818 50%, #0B140D 100%);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body #content .pricing-sec .pricing-row > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .pricing-sec .pricing-row > .wpb_column:first-child > .vc_column-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

body #content .pricing-sec .pricing-row .sub-head {
  color: #3ABD2F !important;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

body #content .pricing-sec .pricing-row .main-head {
  color: #FBFDF7 !important;
  margin-bottom: 1rem;
  line-height: 1.12;
}

body #content .pricing-sec .pricing-row .main-head b {
  font-style: italic;
  color: #3ABD2F !important;
}

body #content .pricing-sec .pricing-row .wht-txt p {
  margin-bottom: 2rem;
  max-width: 22rem;
  font-size: 1rem;
  line-height: 1.65;
}

body #content .pricing-sec .pricing-row .btn-flex {
  margin: 0;
}

body #content .pricing-sec .pricing-row .btn-arrow a {
  background: #3ABD2F;
  color: #0B140D;
  padding: 0.875rem 3rem 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

body #content .pricing-sec .pricing-row .btn-arrow a::after {
  background: none;
  content: "\2192";
  width: auto;
  height: auto;
  font-size: 1.125rem;
  line-height: 1;
  right: 1.5rem;
  color: #0B140D;
}

body #content .pricing-sec .pricing-row .btn-arrow a:hover {
  background: #B7F44D;
  color: #0B140D;
}

body #content .pricing-sec .pricing-row > .wpb_column.pricing-card > .vc_column-inner {
  height: 100%;
}

body #content .pricing-sec .pricing-row > .wpb_column.pricing-card > .vc_column-inner > .wpb_wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

body #content .pricing-sec .pricing-row > .wpb_column.pricing-featured > .vc_column-inner > .wpb_wrapper {
  background: linear-gradient(145deg, #B7F44D 0%, #3ABD2F 55%, #5bc43f 100%);
  border: none;
  -webkit-box-shadow: 0 0 0 1px rgba(183, 244, 77, 0.35), 0 20px 40px rgba(122, 223, 95, 0.22);
          box-shadow: 0 0 0 1px rgba(183, 244, 77, 0.35), 0 20px 40px rgba(122, 223, 95, 0.22);
  position: relative;
}

body #content .pricing-sec .pricing-row .pricing-badge {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.5rem auto !important;
}

body #content .pricing-sec .pricing-row .pricing-badge span, body #content .pricing-sec .pricing-row .pricing-badge p {
  display: inline-block;
  background: #0B140D;
  color: #3ABD2F;
  font-family: var(--global-font-family);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  margin: 0;
}

body #content .pricing-sec .pricing-row .pricing-featured .pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  margin: 0 !important;
}

body #content .pricing-sec .pricing-row .pricing-label {
  font-family: var(--global-font-family);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.65) !important;
  margin: 0 !important;
  line-height: 1.4;
}

body #content .pricing-sec .pricing-row .pricing-price {
  font-family: var(--global-font-family-2);
  font-size: 3.5rem;
  font-weight: 500;
  color: #FBFDF7 !important;
  margin: 0.35rem 0 !important;
  line-height: 1;
}

body #content .pricing-sec .pricing-row .pricing-unit {
  font-family: var(--global-font-family);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.55) !important;
  margin: 0 0 1.5rem !important;
  line-height: 1.4;
}

body #content .pricing-sec .pricing-row .pricing-list {
  margin-top: auto;
  margin-bottom: 0;
}

body #content .pricing-sec .pricing-row .pricing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

body #content .pricing-sec .pricing-row .pricing-list ul li {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.75);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

body #content .pricing-sec .pricing-row .pricing-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
}

body #content .pricing-sec .pricing-row .pricing-featured .pricing-label {
  color: rgba(11, 20, 13, 0.65) !important;
}

body #content .pricing-sec .pricing-row .pricing-featured .pricing-price {
  color: #0B140D !important;
}

body #content .pricing-sec .pricing-row .pricing-featured .pricing-unit {
  color: rgba(11, 20, 13, 0.6) !important;
}

body #content .pricing-sec .pricing-row .pricing-featured .pricing-list ul li {
  color: rgba(11, 20, 13, 0.8);
}

body #content .pricing-page-sec .pricing-page-head {
  margin-bottom: 2.5rem;
}

body #content .pricing-page-sec .pricing-page-head .main-head {
  font-size: 4.5rem;
}

body #content .pricing-page-sec .pricing-page-row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 2rem;
}

body #content .pricing-page-sec .pricing-page-row > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .pricing-page-sec .pricing-page-row > .wpb_column > .vc_column-inner {
  height: 100%;
}

body #content .pricing-page-sec .pricing-page-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 2rem;
  padding: 2.25rem 2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

body #content .pricing-page-sec .pricing-page-row > .wpb_column.pricing-plan-featured > .vc_column-inner > .wpb_wrapper {
  background: #0B140D;
  border-color: #0B140D;
  -webkit-box-shadow: 0 20px 48px rgba(11, 20, 13, 0.18);
          box-shadow: 0 20px 48px rgba(11, 20, 13, 0.18);
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #7FE954;
  color: #0B140D;
  font-family: var(--global-font-family);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-badge p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-label, body #content .pricing-page-sec .pricing-page-row h4.pricing-plan-label {
  font-family: var(--global-font-family);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3ABD2F !important;
  margin: 0 !important;
  line-height: 1.3;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.25rem 0 0;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-price .pricing-plan-amount {
  font-family: var(--global-font-family-2);
  font-size: 4rem;
  font-weight: 500;
  color: #0B140D;
  line-height: 1;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-price .pricing-plan-unit {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #7C7C7C;
  line-height: 1.4;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-price .pricing-plan-was {
  font-family: var(--global-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.45);
  text-decoration: line-through;
  line-height: 1.4;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-save {
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: #3ABD2F;
  margin: 0;
  line-height: 1.4;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-desc, body #content .pricing-page-sec .pricing-page-row .txt.pricing-plan-desc {
  margin: 0;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-desc p, body #content .pricing-page-sec .pricing-page-row .txt.pricing-plan-desc p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-list {
  margin: 0.5rem 0 0;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-list ul li {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #0B140D;
  padding-left: 2rem;
  position: relative;
  line-height: 1.45;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-list ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #E6F4D9;
  color: #3ABD2F;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.25rem;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .pricing-btn-outline a, body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .btn-2 a, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .pricing-btn-outline a, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .btn-2 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #0B140D;
  background: #fff;
  color: #0B140D;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .pricing-btn-outline a:hover, body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .btn-2 a:hover, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .pricing-btn-outline a:hover, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .btn-2 a:hover {
  background: #0B140D;
  color: #fff;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .pricing-btn-primary a, body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .btn-arrow a, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .pricing-btn-primary a, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .btn-arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 2.75rem 0.875rem 1.5rem;
  border-radius: 9999px;
  background: #B7F44D;
  color: #0B140D;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .pricing-btn-primary a::after, body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .btn-arrow a::after, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .pricing-btn-primary a::after, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .btn-arrow a::after {
  background: none;
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  font-size: 1.125rem;
  line-height: 1;
  color: #0B140D;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .pricing-btn-primary a:hover, body #content .pricing-page-sec .pricing-page-row .pricing-plan-btn .btn-arrow a:hover, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .pricing-btn-primary a:hover, body #content .pricing-page-sec .pricing-page-row .btn-flex.pricing-plan-btn .btn-arrow a:hover {
  background: #3ABD2F;
  color: #0B140D;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .pricing-plan-label {
  color: #7adf5f !important;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .pricing-plan-price .pricing-plan-amount {
  color: #FBFDF7;
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .pricing-plan-desc p, body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .txt.pricing-plan-desc p {
  color: rgba(251, 253, 247, 0.72);
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .pricing-plan-list ul li {
  color: rgba(251, 253, 247, 0.9);
}

body #content .pricing-page-sec .pricing-page-row .pricing-plan-featured .pricing-plan-list ul li::before {
  background: rgba(183, 244, 77, 0.18);
  color: #B7F44D;
}

body #content .pricing-page-sec .pricing-note {
  margin: 0;
}

body #content .pricing-page-sec .pricing-note p {
  display: block;
  background: #E6F4D9;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #005217;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

body #content .pricing-page-sec .pricing-note p strong {
  font-weight: 700;
  color: #3ABD2F;
}

body #content .areas-sec .areas-head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 2.5rem;
}

body #content .areas-sec .areas-head > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .areas-sec .areas-head > .wpb_column:last-child .txt p {
  text-align: right;
  margin-left: auto;
  max-width: 26rem;
}

body #content .areas-sec .areas-head .sub-head {
  color: #3ABD2F !important;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

body #content .areas-sec .areas-head .main-head {
  font-size: 3.25rem;
  color: #0B140D !important;
  margin-bottom: 0;
  line-height: 1.12;
}

body #content .areas-sec .areas-row > .wpb_column.area-card {
  margin-bottom: 1rem;
}

body #content .areas-sec .areas-row > .wpb_column.area-card > .vc_column-inner > .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  border: 1px solid #E3E3E3;
  border-radius: 9999px;
  padding: 1.5rem;
  min-height: 5.5rem;
  overflow: hidden;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body #content .areas-sec .areas-row > .wpb_column.area-card > .vc_column-inner > .wpb_wrapper::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #EDF9EB;
  pointer-events: none;
}

body #content .areas-sec .areas-row > .wpb_column.area-card > .vc_column-inner > .wpb_wrapper:hover {
  border-color: rgba(58, 189, 47, 0.35);
  -webkit-box-shadow: 0 10px 24px rgba(11, 20, 13, 0.06);
          box-shadow: 0 10px 24px rgba(11, 20, 13, 0.06);
}

body #content .areas-sec .areas-row > .wpb_column.area-card > .vc_column-inner > .wpb_wrapper:hover::after {
  width: 12rem;
  height: 12rem;
}

body #content .areas-sec .areas-row .area-copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

body #content .areas-sec .areas-row .area-copy .area-tag, body #content .areas-sec .areas-row .area-copy p.area-tag {
  font-family: var(--global-font-family);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C7C7C;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

body #content .areas-sec .areas-row .area-copy .area-name, body #content .areas-sec .areas-row .area-copy h3.area-name {
  font-family: var(--global-font-family-2);
  font-size: 1.5rem;
  font-weight: 500;
  color: #005217 !important;
  margin: 0;
  line-height: 1.2;
}

body #content .areas-sec .areas-row .vc_icon_element {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  width: auto;
}

body #content .areas-sec .areas-row .vc_icon_element .vc_icon_element-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  min-height: 2rem !important;
  border-radius: 50%;
  background: #e6f4d9 !important;
}

body #content .areas-sec .areas-row .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
  font-size: 0.8rem !important;
  color: #005217 !important;
  line-height: 1;
}

body #content .services-sec .services-head {
  margin-bottom: 2.5rem;
}

body #content .services-sec .services-head .main-head {
  font-size: 4.5rem;
}

body #content .services-sec .services-row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body #content .services-sec .services-row > .wpb_column.service-card {
  margin-bottom: 1.5rem;
}

body #content .services-sec .services-row > .wpb_column.service-card > .vc_column-inner {
  height: 100%;
}

body #content .services-sec .services-row > .wpb_column.service-card > .vc_column-inner > .wpb_wrapper {
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 2rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body #content .services-sec .services-row > .wpb_column.service-card > .vc_column-inner > .wpb_wrapper:hover {
  border-color: rgba(58, 189, 47, 0.35);
  -webkit-box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
          box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
}

body #content .services-sec .services-row .service-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

body #content .services-sec .services-row .service-top .service-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  background: #0B140D;
  color: #3abd2f;
  font-size: 1.125rem;
  line-height: 1;
}

body #content .services-sec .services-row .service-top .service-tag {
  display: inline-block;
  margin: 0 0 0 auto;
  background: #E6F4D9;
  color: #005217;
  font-family: var(--global-font-family);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  line-height: 1.3;
  text-align: right;
}

body #content .services-sec .services-row h2, body #content .services-sec .services-row h3, body #content .services-sec .services-row h4, body #content .services-sec .services-row .service-title {
  font-family: var(--global-font-family-2);
  font-size: 1.75rem;
  font-weight: 500;
  color: #005217 !important;
  line-height: 1.25;
  margin: 0 !important;
}

body #content .services-sec .services-row .txt, body #content .services-sec .services-row .service-txt {
  margin: 0;
}

body #content .services-sec .services-row .txt p, body #content .services-sec .services-row .service-txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  margin: 0;
}

body #content .services-sec .services-row .service-benefits {
  background: #F0F8E7;
  border-radius: 1rem;
  padding: 1.25rem;
  margin: 0;
}

body #content .services-sec .services-row .service-benefits .service-benefits-label, body #content .services-sec .services-row .service-benefits > p:first-child {
  font-family: var(--global-font-family);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3ABD2F;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

body #content .services-sec .services-row .service-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

body #content .services-sec .services-row .service-benefits ul li {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #0B140D;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
}

body #content .services-sec .services-row .service-benefits ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #3ABD2F;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

body #content .services-sec .services-row .service-suitable {
  margin: 0;
}

body #content .services-sec .services-row .service-suitable .service-suitable-label, body #content .services-sec .services-row .service-suitable > p:first-child {
  font-family: var(--global-font-family);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C7C7C;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

body #content .services-sec .services-row .service-suitable p:last-child, body #content .services-sec .services-row .service-suitable .service-suitable-txt {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.5;
  margin: 0;
}

body #content .services-sec .services-row .service-btn, body #content .services-sec .services-row .btn-flex.service-btn {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

body #content .services-sec .services-row .service-btn .btn-arrow, body #content .services-sec .services-row .btn-flex.service-btn .btn-arrow {
  margin: 0;
}

body #content .services-sec .services-row .service-btn .btn-arrow a, body #content .services-sec .services-row .btn-flex.service-btn .btn-arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background: #0B140D;
  color: #fff;
  padding: 0.875rem 2.75rem 0.875rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .services-sec .services-row .service-btn .btn-arrow a::after, body #content .services-sec .services-row .btn-flex.service-btn .btn-arrow a::after {
  background: none;
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
}

body #content .services-sec .services-row .service-btn .btn-arrow a:hover, body #content .services-sec .services-row .btn-flex.service-btn .btn-arrow a:hover {
  background: #3abd2f;
  color: #fff;
}

body #content .services-cta-sec .services-cta-row {
  background: linear-gradient(135deg, #B7F44D 0%, #43B443 55%, #2A5735 100%);
  border-radius: 2rem;
  padding: 2.75rem 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #content .services-cta-sec .services-cta-row > .wpb_column {
  margin-bottom: 0;
}

body #content .services-cta-sec .services-cta-row > .wpb_column:first-child > .vc_column-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

body #content .services-cta-sec .services-cta-row > .wpb_column:last-child > .vc_column-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

body #content .services-cta-sec .services-cta-row .main-head {
  color: #0B140D !important;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

body #content .services-cta-sec .services-cta-row .txt {
  margin: 0;
}

body #content .services-cta-sec .services-cta-row .txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(11, 20, 13, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 38rem;
}

body #content .services-cta-sec .services-cta-row .services-cta-btn, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn {
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body #content .services-cta-sec .services-cta-row .services-cta-btn .cta-btn, body #content .services-cta-sec .services-cta-row .services-cta-btn .btn-arrow, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .cta-btn, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .btn-arrow {
  margin: 0;
}

body #content .services-cta-sec .services-cta-row .services-cta-btn .cta-btn a, body #content .services-cta-sec .services-cta-row .services-cta-btn .btn-arrow a, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .cta-btn a, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .btn-arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0B140D;
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .services-cta-sec .services-cta-row .services-cta-btn .cta-btn a::after, body #content .services-cta-sec .services-cta-row .services-cta-btn .btn-arrow a::after, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .cta-btn a::after, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .btn-arrow a::after {
  display: none;
}

body #content .services-cta-sec .services-cta-row .services-cta-btn .cta-btn a:hover, body #content .services-cta-sec .services-cta-row .services-cta-btn .btn-arrow a:hover, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .cta-btn a:hover, body #content .services-cta-sec .services-cta-row .btn-flex.services-cta-btn .btn-arrow a:hover {
  background: #1a261c;
  color: #fff;
}

body #content .contact-sec .contact-head {
  margin-bottom: 2.75rem;
}

body #content .contact-sec .contact-head .main-head {
  font-size: 4.5rem;
}

body #content .contact-sec .contact-row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body #content .contact-sec .contact-row > .wpb_column {
  margin-bottom: 0;
}

body #content .contact-sec .contact-row > .wpb_column:first-child > .vc_column-inner {
  padding-right: 0.875rem;
}

body #content .contact-sec .contact-row > .wpb_column:last-child > .vc_column-inner {
  padding-left: 0.875rem;
}

body #content .contact-sec .contact-form-card > .vc_column-inner {
  height: 100%;
}

body #content .contact-sec .contact-form-card > .vc_column-inner > .wpb_wrapper {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 2rem;
  padding: 2.5rem 2.25rem;
  height: 100%;
  -webkit-box-shadow: 0 1px 0 rgba(11, 20, 13, 0.02);
          box-shadow: 0 1px 0 rgba(11, 20, 13, 0.02);
  margin-bottom: 1.5rem;
}

body #content .contact-sec .contact-form-card .contact-form-title, body #content .contact-sec .contact-form-card h3.contact-form-title {
  font-family: var(--global-font-family-2);
  font-size: 1.875rem;
  font-weight: 500;
  color: #0B140D !important;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

body #content .contact-sec .contact-form-card .contact-form-sub {
  margin: 0 0 1.875rem;
}

body #content .contact-sec .contact-form-card .contact-form-sub p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #7C7C7C;
  line-height: 1.5;
  margin: 0;
}

body #content .contact-sec .contact-form-card .contact-form-foot {
  margin: 1.125rem 0 0;
}

body #content .contact-sec .contact-form-card .contact-form-foot p {
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: #9A9A9A;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

body #content .contact-sec .contact-sidebar {
  margin-bottom: 1.5rem;
}

body #content .contact-sec .contact-sidebar > .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  height: 100%;
  margin-bottom: 1.5rem;
}

body #content .contact-sec .contact-direct-card {
  background: #0B140D;
  border-radius: 2rem;
  padding: 2rem 1.75rem;
  margin: 0;
  margin-bottom: 1.5rem;
}

body #content .contact-sec .contact-direct-card .contact-direct-title, body #content .contact-sec .contact-direct-card h3.contact-direct-title {
  font-family: var(--global-font-family-2);
  font-size: 1.5rem;
  font-weight: 500;
  color: #FBFDF7 !important;
  margin: 0 0 1.125rem;
  line-height: 1.2;
}

body #content .contact-sec .contact-direct-card .contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.375rem;
}

body #content .contact-sec .contact-direct-card .contact-details li {
  margin: 0;
}

body #content .contact-sec .contact-direct-card .contact-details li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.88);
  line-height: 1.45;
  text-decoration: none;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

body #content .contact-sec .contact-direct-card .contact-details li a i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #7adf5f;
  font-size: 1rem;
  line-height: 1;
}

body #content .contact-sec .contact-direct-card .contact-details li a:hover {
  color: #B7F44D;
}

body #content .contact-sec .contact-direct-card .contact-social-label {
  font-family: var(--global-font-family);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3ABD2F;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

body #content .contact-sec .contact-direct-card .contact-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

body #content .contact-sec .contact-direct-card .contact-social li {
  margin: 0;
}

body #content .contact-sec .contact-direct-card .contact-social li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(251, 253, 247, 0.28);
  background: transparent;
  color: #FBFDF7;
  font-size: 1rem;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .contact-sec .contact-direct-card .contact-social li a:hover {
  border-color: #3ABD2F;
  background: #3ABD2F;
  color: #0B140D;
}

body #content .contact-sec .contact-areas-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 2rem;
  padding: 1.625rem 1.5rem;
  margin: 0;
  margin-bottom: 1.5rem;
}

body #content .contact-sec .contact-areas-card .contact-areas-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-family: var(--global-font-family-2);
  font-size: 1.25rem;
  font-weight: 500;
  color: #0B140D !important;
  margin: 0 0 0.875rem;
  line-height: 1.2;
}

body #content .contact-sec .contact-areas-card .contact-areas-title i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #3ABD2F;
  font-size: 1rem;
  line-height: 1;
}

body #content .contact-sec .contact-areas-card .contact-areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

body #content .contact-sec .contact-areas-card .contact-areas-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: #EDF9EB;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: #005217;
  line-height: 1.25;
  text-align: center;
}

body #content .contact-sec .contact-map-card {
  margin: 0;
}

body #content .contact-sec .contact-map-card .contact-map-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #EAF6E2 0%, #D9EFCF 52%, #C8E6B8 100%);
  min-height: 13.5rem;
  aspect-ratio: 4 / 3;
}

body #content .contact-sec .contact-map-card .contact-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

body #content .contact-sec .contact-map-card .contact-map-svg .map-path-1 {
  stroke: rgba(58, 189, 47, 0.4);
}

body #content .contact-sec .contact-map-card .contact-map-svg .map-path-2 {
  stroke: rgba(58, 189, 47, 0.28);
}

body #content .contact-sec .contact-map-card .contact-map-svg .map-dot-halo {
  fill: rgba(183, 244, 77, 0.38);
}

body #content .contact-sec .contact-map-card .contact-map-svg .map-dot-core {
  fill: #0B140D;
}

body #content .contact-sec .contact-map-card .contact-map-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: #fff;
  border-radius: 9999px;
  padding: 0.875rem 1.25rem;
  -webkit-box-shadow: 0 8px 24px rgba(11, 20, 13, 0.08);
          box-shadow: 0 8px 24px rgba(11, 20, 13, 0.08);
}

body #content .contact-sec .contact-map-card .contact-map-caption strong {
  display: block;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 700;
  color: #005217;
  line-height: 1.3;
  margin: 0 0 0.15rem;
}

body #content .contact-sec .contact-map-card .contact-map-caption span {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: #7C7C7C;
  line-height: 1.45;
  margin: 0;
}

body #content .contact-sec .contact-map-card .vc_figure, body #content .contact-sec .contact-map-card .vc_single_image-wrapper {
  display: block;
  width: 100%;
}

body #content .contact-sec .contact-map-card .vc_single_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 11.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .about-sec {
  padding: 4rem 0;
  background: #FBFDF7;
}

body #content .about-sec .main-head {
  color: #0B140D !important;
  font-size: 4.5rem;
}

body #content .about-sec .main-head b {
  color: #005217 !important;
}

body #content .about-sec .about-img .vc_figure, body #content .about-sec .about-img .vc_single_image-wrapper {
  display: block;
  width: 100%;
}

body #content .about-sec .about-img .vc_single_image-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 40px rgba(11, 20, 13, 0.1);
          box-shadow: 0 16px 40px rgba(11, 20, 13, 0.1);
}

body #content .about-sec .about-img .vc_single_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .mission-sec .mission-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  background: #F0F8E7;
  border-radius: 2rem;
  padding: 3rem 2.75rem;
}

body #content .mission-sec .mission-quote, body #content .mission-sec .main-head.mission-quote {
  font-family: var(--global-font-family-2);
  font-size: 2.75rem;
  font-weight: 500;
  color: #005217 !important;
  line-height: 1.35;
  margin: 0;
  max-width: 56rem;
}

body #content .mission-sec .mission-quote p, body #content .mission-sec .main-head.mission-quote p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
}

body #content .story-sec .story-head {
  margin-bottom: 2.5rem;
}

body #content .story-sec .story-head .sub-head {
  color: #7adf5f !important;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

body #content .story-sec .story-head .main-head {
  font-size: 3.25rem;
  color: #0B140D !important;
  margin-bottom: 0;
  line-height: 1.12;
  max-width: 34rem;
}

body #content .story-sec .story-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body #content .story-sec .story-row > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .story-sec .story-row > .wpb_column:last-child {
  margin-bottom: 0;
}

body #content .story-sec .story-row .txt {
  margin: 0;
}

body #content .story-sec .story-row .txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.7;
  margin: 0;
}

body #content .values-sec .values-head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 2.5rem;
}

body #content .values-sec .values-head > .wpb_column {
  margin-bottom: 1.5rem;
}

body #content .values-sec .values-head > .wpb_column:last-child .txt p {
  text-align: right;
  margin-left: auto;
  max-width: 26rem;
}

body #content .values-sec .values-row > .wpb_column.value-card {
  margin-bottom: 1.5rem;
}

body #content .values-sec .values-row > .wpb_column.value-card > .vc_column-inner > .wpb_wrapper {
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 3rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body #content .values-sec .values-row > .wpb_column.value-card > .vc_column-inner > .wpb_wrapper:hover {
  border-color: rgba(58, 189, 47, 0.35);
  -webkit-box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
          box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
}

body #content .values-sec .values-row .vc_icon_element {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body #content .values-sec .values-row .vc_icon_element .vc_icon_element-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 50%;
  background: #E6F4D9 !important;
  margin: 0 !important;
}

body #content .values-sec .values-row .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
  font-size: 1.125rem !important;
  color: #005217 !important;
  line-height: 1;
}

body #content .values-sec .values-row h2, body #content .values-sec .values-row h3, body #content .values-sec .values-row h4, body #content .values-sec .values-row .value-title {
  font-family: var(--global-font-family-2);
  font-size: 1.5rem;
  font-weight: 500;
  color: #0B140D !important;
  line-height: 1.25;
  margin: 0 !important;
}

body #content .values-sec .values-row .txt, body #content .values-sec .values-row .value-txt {
  margin: 0;
}

body #content .values-sec .values-row .txt p, body #content .values-sec .values-row .value-txt p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  margin: 0;
}

body #content .why-choose-sec .why-choose-row {
  margin: 0 !important;
  border-radius: 2.5rem;
  overflow: hidden;
  background: #0B140D;
}

body #content .why-choose-sec .why-choose-row::before, body #content .why-choose-sec .why-choose-row::after {
  display: none;
}

body #content .why-choose-sec .why-choose-row > .wpb_column {
  margin: 0 !important;
  padding: 0 !important;
  width: 50% !important;
  max-width: 50% !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 50% !important;
          flex: 0 0 50% !important;
}

body #content .why-choose-sec .why-choose-row > .wpb_column > .vc_column-inner {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 26rem;
  border: none;
  background: transparent;
}

body #content .why-choose-sec .why-choose-row > .wpb_column:first-child > .vc_column-inner {
  background: #0B140D;
  padding: 3.5rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #content .why-choose-sec .why-choose-row > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper {
  width: 100%;
}

body #content .why-choose-sec .why-choose-row > .wpb_column:last-child > .vc_column-inner {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 26rem;
}

body #content .why-choose-sec .why-choose-row > .wpb_column:last-child > .vc_column-inner > .wpb_wrapper {
  width: 100%;
  height: 100%;
  min-height: 26rem;
}

body #content .why-choose-sec .why-choose-row .btn-flex {
  margin: 0;
}

body #content .why-choose-sec .why-choose-row .btn-arrow {
  margin: 0;
}

body #content .why-choose-sec .why-choose-row .btn-arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background: #7adf5f;
  color: #0B140D;
  padding: 0.9rem 3.1rem 0.9rem 1.85rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .why-choose-sec .why-choose-row .btn-arrow a::after {
  background: none;
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  font-size: 1.125rem;
  line-height: 1;
  color: #0B140D;
}

body #content .why-choose-sec .why-choose-row .btn-arrow a:hover {
  background: #B7F44D;
  color: #0B140D;
}

body #content .why-choose-sec .why-choose-row .why-choose-img .wpb_wrapper, body #content .why-choose-sec .why-choose-row .why-choose-img .vc_figure, body #content .why-choose-sec .why-choose-row .why-choose-img .vc_single_image-wrapper {
  display: block !important;
  width: 100% !important;
}

body #content .why-choose-sec .why-choose-row .why-choose-img .vc_single_image-wrapper {
  display: block !important;
  width: 100% !important;
}

body #content .why-choose-sec .why-choose-row .why-choose-img .vc_single_image-wrapper img {
  height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .journey-sec {
  padding: 4rem 0;
  background: #F4FAF2;
}

body #content .journey-sec .journey-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #content .journey-sec .journey-img .vc_figure, body #content .journey-sec .journey-img .vc_single_image-wrapper {
  display: block;
  width: 100%;
}

body #content .journey-sec .journey-img .vc_single_image-wrapper {
  border-radius: 1.75rem;
  overflow: hidden;
}

body #content .journey-sec .journey-img .vc_single_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
}

body #content .journey-sec .journey-steps {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 0;
}

body #content .journey-sec .journey-steps::before {
  content: "";
  position: absolute;
  left: 1.5625rem;
  top: 1.5625rem;
  bottom: 1.5625rem;
  width: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #3abd2f4d;
  border-radius: 2px;
}

body #content .journey-sec .journey-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.25rem;
}

body #content .journey-sec .journey-step:last-child {
  padding-bottom: 0;
}

body #content .journey-sec .journey-step .step-num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.125rem;
          flex: 0 0 3.125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #3ABD2F;
  color: #0B140D;
  font-family: var(--global-font-family);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 0 3px #F4FAF2;
          box-shadow: 0 0 0 3px #F4FAF2;
}

body #content .journey-sec .journey-step .step-copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding-top: 0.45rem;
}

body #content .journey-sec .journey-step .step-copy h4, body #content .journey-sec .journey-step .step-copy .step-title {
  font-family: var(--global-font-family-2);
  font-size: 1.25rem;
  font-weight: 600;
  color: #005217 !important;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

body #content .journey-sec .journey-step .step-copy p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  margin: 0;
  max-width: 30rem;
}

body #content .faq-sec .faq-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body #content .faq-sec .faq-link {
  margin: 0;
}

body #content .faq-sec .faq-link p {
  margin: 0;
}

body #content .faq-sec .faq-link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  color: #005217;
  text-decoration: none;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

body #content .faq-sec .faq-link a:hover {
  color: #3abd2f;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panels-container, body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panels {
  background: transparent !important;
  border: none !important;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel {
  margin: 0 0 0.875rem;
  border: 1px solid #E3E3E3;
  border-radius: 3rem;
  background: #fff;
  overflow: hidden;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active {
  border-color: #3abd2f;
  -webkit-box-shadow: 0 0 0 1px rgba(58, 189, 47, 0.15);
          box-shadow: 0 0 0 1px rgba(58, 189, 47, 0.15);
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading {
  border: none !important;
  background: transparent !important;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title {
  margin: 0;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--global-font-family-2);
  font-size: 1.125rem;
  font-weight: 500;
  color: #005217 !important;
  background: transparent !important;
  border: none !important;
  line-height: 1.35;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title > a:hover, body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title > a:focus {
  color: #005217 !important;
  background: transparent !important;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-title-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 0.5rem;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #EDF9EB;
  font-size: 0 !important;
  line-height: 1;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon::before, body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #005217;
  border: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon::before {
  width: 0.75rem;
  height: 2px;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon::after {
  width: 2px;
  height: 0.75rem;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-controls-icon.vc_tta-controls-icon-minus::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-body {
  border: none !important;
  background: transparent !important;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-body .vc_tta-panel-body-inner {
  padding: 0 1.5rem 1.35rem;
}

body #content .faq-sec .faq-accordion.vc_tta.vc_tta-accordion .vc_tta-panel-body .vc_tta-panel-body-inner p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  margin: 0;
}

body #content .cta-sec .txt p {
  color: #0b140dcc;
}

body #content .cta-sec .cta-banner-row {
  background: linear-gradient(135deg, #B7F44D 0%, #43B443 55%, #2A5735 100%);
  border-radius: 2rem;
  padding: 3rem 2.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #content .cta-sec .cta-btns, body #content .cta-sec .btn-flex.cta-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.75rem;
  margin: 0;
  width: 100%;
  margin-left: auto;
}

body #content .cta-sec .cta-btn {
  margin: 0;
}

body #content .cta-sec .cta-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.9rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content .cta-sec .cta-btn a i {
  font-size: 0.95em;
  line-height: 1;
}

body #content .cta-sec .cta-btn-dark a {
  background: #0B140D;
  color: #fff;
}

body #content .cta-sec .cta-btn-dark a:hover {
  background: #1a261c;
  color: #fff;
}

body #content .cta-sec .cta-btn-light a {
  background: rgba(255, 255, 255, 0.38);
  color: #0B140D;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

body #content .cta-sec .cta-btn-light a:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #0B140D;
}

body #content .testimonials-sec .testimonials-row > .wpb_column.testimonial-card {
  margin-bottom: 1.5rem;
}

body #content .testimonials-sec .testimonials-row > .wpb_column.testimonial-card > .vc_column-inner {
  height: 100%;
}

body #content .testimonials-sec .testimonials-row > .wpb_column.testimonial-card > .vc_column-inner > .wpb_wrapper {
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body #content .testimonials-sec .testimonials-row > .wpb_column.testimonial-card > .vc_column-inner > .wpb_wrapper br {
  display: none;
}

body #content .testimonials-sec .testimonials-row > .wpb_column.testimonial-card > .vc_column-inner > .wpb_wrapper:hover {
  border-color: rgba(58, 189, 47, 0.35);
  -webkit-box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
          box-shadow: 0 12px 28px rgba(11, 20, 13, 0.06);
}

body #content .testimonials-sec .testimonials-row .vc_icon_element {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body #content .testimonials-sec .testimonials-row .vc_icon_element .vc_icon_element-inner {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  margin: 0 !important;
}

body #content .testimonials-sec .testimonials-row .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon {
  font-size: 1.75rem !important;
  color: #3abd2f !important;
  line-height: 1;
}

body #content .testimonials-sec .testimonials-row .testimonial-quote {
  margin: 0;
}

body #content .testimonials-sec .testimonials-row .testimonial-quote p {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.7;
  margin: 0;
}

body #content .testimonials-sec .testimonials-row .testimonial-author {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #E3E3E3;
}

body #content .testimonials-sec .testimonials-row .testimonial-author strong {
  display: block;
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 700;
  color: #0B140D;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

body #content .testimonials-sec .testimonials-row .testimonial-author span {
  display: block;
  font-family: var(--global-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: #7C7C7C;
  line-height: 1.4;
}

body #content ul.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 2em;
}

body #content ul.slick-dots li {
  margin: 0;
}

body #content ul.slick-dots li button {
  outline: none;
  font-size: 0;
  padding: 0;
  width: 3rem;
  height: 0.125rem;
  border: none;
  border-radius: 0px;
  background: #3768B0;
  cursor: pointer;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #content ul.slick-dots li.slick-active button {
  height: 0.125rem;
  background: #3abd2f;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body form .form-group.col-6, body form .form-group.col-12 {
  padding: 0 0.5rem;
}

body form label {
  font-size: 1.125rem;
  font-weight: 400;
  color: #0B140D;
  font-family: var(--global-font-family);
  line-height: 2rem;
}

body form label span {
  color: #3abd2f;
}

body form input[type="text"], body form input[type="email"], body form input[type="tel"], body form input[type="date"], body form input[type="number"] {
  width: 100%;
  background: #FBFDF7;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0B140D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body form input[type="text"]:focus, body form input[type="email"]:focus, body form input[type="tel"]:focus, body form input[type="date"]:focus, body form input[type="number"]:focus {
  outline: none;
  border-color: #3abd2f;
  -webkit-transition: .4s;
  transition: .4s;
}

body form input[type="radio"] {
  accent-color: #3abd2f;
  height: 2rem;
  width: 2rem;
}

body form select {
  width: 100%;
  background: #FBFDF7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0B140D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path d='M1.5 1.5l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
}

body form select:focus {
  outline: none;
  border-color: #3abd2f;
  -webkit-transition: .4s;
  transition: .4s;
}

body form .wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

body form textarea {
  width: 100%;
  background: #FBFDF7;
  padding: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E0E0E0;
  outline: none;
  font-size: 1.125rem;
  color: #0B140D;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  resize: none;
  height: 10rem;
  width: 100%;
}

body form textarea:focus {
  outline: none;
  border-color: #3abd2f;
  -webkit-transition: .4s;
  transition: .4s;
}

body form input[type="submit"] {
  background: #3abd2f !important;
  font-size: 1.125rem;
  color: #FBFDF7 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 0.469rem 2.5rem;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400 !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body form input[type="submit"]:hover {
  color: #FBFDF7;
  background: #0B140D !important;
}

body form input[type="submit"]:hover::after {
  -webkit-transform: skewX(-45deg) scale(1, 1);
          transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form input[type="submit"]::after {
  content: '';
  background: #0B140D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn {
  text-align: center;
}

body form .submit-btn input {
  background: #3abd2f;
  font-size: 1.125rem;
  color: #FBFDF7;
  width: 100%;
  border: none;
  padding: 0.469rem 2.5rem;
  border-radius: 20px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body form .submit-btn input:hover {
  color: #FBFDF7;
  background: #0B140D !important;
}

body form .submit-btn input:hover::after {
  -webkit-transform: skewX(-45deg) scale(1, 1);
          transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn input::after {
  content: '';
  background: #0B140D;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  -webkit-transform: skewX(-45deg) scale(0, 1);
          transform: skewX(-45deg) scale(0, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body form .submit-btn .wpcf7-spinner {
  display: none;
}

body .contact-sec .wpcf7 {
  margin: 0;
}

body .contact-sec form .flex-row, body .contact-sec .wpcf7 form .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.4375rem;
}

body .contact-sec form .form-group, body .contact-sec .wpcf7 form .form-group {
  margin: 0 0 1.125rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .contact-sec form .form-group.col-6, body .contact-sec .wpcf7 form .form-group.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.4375rem;
}

body .contact-sec form .form-group.col-12, body .contact-sec .wpcf7 form .form-group.col-12 {
  padding: 0 0.4375rem;
}

body .contact-sec form p, body .contact-sec .wpcf7 form p {
  margin: 0;
}

body .contact-sec form label, body .contact-sec .wpcf7 form label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #005217;
  font-family: var(--global-font-family);
  line-height: 1.3;
  margin-bottom: 0.4375rem;
  display: block;
}

body .contact-sec form label span, body .contact-sec .wpcf7 form label span {
  color: #3abd2f;
}

body .contact-sec form .wpcf7-form-control-wrap, body .contact-sec .wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0;
}

body .contact-sec form br, body .contact-sec .wpcf7 form br {
  display: none;
}

body .contact-sec form input[type="text"], body .contact-sec form input[type="email"], body .contact-sec form input[type="tel"], body .contact-sec form input[type="date"], body .contact-sec form input[type="number"], body .contact-sec .wpcf7 form input[type="text"], body .contact-sec .wpcf7 form input[type="email"], body .contact-sec .wpcf7 form input[type="tel"], body .contact-sec .wpcf7 form input[type="date"], body .contact-sec .wpcf7 form input[type="number"] {
  width: 100%;
  height: 3.125rem;
  background: #F0F8E7;
  padding: 0 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E8EEE3;
  outline: none;
  font-size: 1rem;
  color: #0B140D;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  font-weight: 400;
  -webkit-transition: border-color 0.4s, background 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body .contact-sec form input[type="text"]:focus, body .contact-sec form input[type="email"]:focus, body .contact-sec form input[type="tel"]:focus, body .contact-sec form input[type="date"]:focus, body .contact-sec form input[type="number"]:focus, body .contact-sec .wpcf7 form input[type="text"]:focus, body .contact-sec .wpcf7 form input[type="email"]:focus, body .contact-sec .wpcf7 form input[type="tel"]:focus, body .contact-sec .wpcf7 form input[type="date"]:focus, body .contact-sec .wpcf7 form input[type="number"]:focus {
  outline: none;
  border-color: #3abd2f;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(58, 189, 47, 0.12);
          box-shadow: 0 0 0 3px rgba(58, 189, 47, 0.12);
}

body .contact-sec form input[type="text"]::-webkit-input-placeholder, body .contact-sec form input[type="email"]::-webkit-input-placeholder, body .contact-sec form input[type="tel"]::-webkit-input-placeholder, body .contact-sec form input[type="date"]::-webkit-input-placeholder, body .contact-sec form input[type="number"]::-webkit-input-placeholder, body .contact-sec .wpcf7 form input[type="text"]::-webkit-input-placeholder, body .contact-sec .wpcf7 form input[type="email"]::-webkit-input-placeholder, body .contact-sec .wpcf7 form input[type="tel"]::-webkit-input-placeholder, body .contact-sec .wpcf7 form input[type="date"]::-webkit-input-placeholder, body .contact-sec .wpcf7 form input[type="number"]::-webkit-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form input[type="text"]:-ms-input-placeholder, body .contact-sec form input[type="email"]:-ms-input-placeholder, body .contact-sec form input[type="tel"]:-ms-input-placeholder, body .contact-sec form input[type="date"]:-ms-input-placeholder, body .contact-sec form input[type="number"]:-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="text"]:-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="email"]:-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="tel"]:-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="date"]:-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="number"]:-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form input[type="text"]::-ms-input-placeholder, body .contact-sec form input[type="email"]::-ms-input-placeholder, body .contact-sec form input[type="tel"]::-ms-input-placeholder, body .contact-sec form input[type="date"]::-ms-input-placeholder, body .contact-sec form input[type="number"]::-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="text"]::-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="email"]::-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="tel"]::-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="date"]::-ms-input-placeholder, body .contact-sec .wpcf7 form input[type="number"]::-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form input[type="text"]::placeholder, body .contact-sec form input[type="email"]::placeholder, body .contact-sec form input[type="tel"]::placeholder, body .contact-sec form input[type="date"]::placeholder, body .contact-sec form input[type="number"]::placeholder, body .contact-sec .wpcf7 form input[type="text"]::placeholder, body .contact-sec .wpcf7 form input[type="email"]::placeholder, body .contact-sec .wpcf7 form input[type="tel"]::placeholder, body .contact-sec .wpcf7 form input[type="date"]::placeholder, body .contact-sec .wpcf7 form input[type="number"]::placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form textarea, body .contact-sec .wpcf7 form textarea {
  width: 100%;
  background: #F0F8E7;
  padding: 1.125rem 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E8EEE3;
  outline: none;
  font-size: 1rem;
  color: #0B140D;
  border-radius: 1.375rem;
  font-family: var(--global-font-family);
  font-weight: 400;
  resize: vertical;
  min-height: 10rem;
  width: 100%;
  line-height: 1.55;
  -webkit-transition: border-color 0.4s, background 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, -webkit-box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

body .contact-sec form textarea:focus, body .contact-sec .wpcf7 form textarea:focus {
  outline: none;
  border-color: #3abd2f;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(58, 189, 47, 0.12);
          box-shadow: 0 0 0 3px rgba(58, 189, 47, 0.12);
}

body .contact-sec form textarea::-webkit-input-placeholder, body .contact-sec .wpcf7 form textarea::-webkit-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form textarea:-ms-input-placeholder, body .contact-sec .wpcf7 form textarea:-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form textarea::-ms-input-placeholder, body .contact-sec .wpcf7 form textarea::-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form textarea::placeholder, body .contact-sec .wpcf7 form textarea::placeholder {
  color: #A3A3A3;
  opacity: 1;
}

body .contact-sec form input[type="submit"], body .contact-sec .wpcf7 form input[type="submit"] {
  background: #0B140D !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  width: 100%;
  min-height: 3.125rem;
  border: none;
  padding: 0.9375rem 1.5rem 0.9375rem 2.75rem !important;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  display: block;
  text-align: center;
  position: relative;
  overflow: visible;
  cursor: pointer;
  letter-spacing: 0.01em;
}

body .contact-sec form input[type="submit"]:hover, body .contact-sec .wpcf7 form input[type="submit"]:hover {
  color: #fff !important;
  background: #1a261c !important;
}

body .contact-sec form input[type="submit"]:hover::after, body .contact-sec .wpcf7 form input[type="submit"]:hover::after {
  display: none;
}

body .contact-sec form input[type="submit"]::after, body .contact-sec .wpcf7 form input[type="submit"]::after {
  display: none;
}

body .contact-sec form .submit-btn, body .contact-sec .wpcf7 form .submit-btn {
  text-align: center;
  position: relative;
  margin: 0.25rem 0 0;
  padding: 0 0.4375rem;
}

body .contact-sec form .submit-btn::before, body .contact-sec .wpcf7 form .submit-btn::before {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: calc(50% - 4.6rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

body .contact-sec form .submit-btn input, body .contact-sec .wpcf7 form .submit-btn input {
  background: #0B140D !important;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  width: 100%;
  min-height: 3.125rem;
  border: none;
  padding: 0.9375rem 1.5rem 0.9375rem 2.75rem;
  border-radius: 9999px;
  font-family: var(--global-font-family);
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  display: block;
  text-align: center;
  position: relative;
  overflow: visible;
  cursor: pointer;
  letter-spacing: 0.01em;
}

body .contact-sec form .submit-btn input:hover, body .contact-sec .wpcf7 form .submit-btn input:hover {
  color: #fff;
  background: #1a261c !important;
}

body .contact-sec form .submit-btn input:hover::after, body .contact-sec .wpcf7 form .submit-btn input:hover::after {
  display: none;
}

body .contact-sec form .submit-btn input::after, body .contact-sec .wpcf7 form .submit-btn input::after {
  display: none;
}

body .contact-sec form .submit-btn .wpcf7-spinner, body .contact-sec .wpcf7 form .submit-btn .wpcf7-spinner {
  display: none;
}

body .contact-sec form .wpcf7-not-valid-tip, body .contact-sec .wpcf7 form .wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.35rem;
  line-height: 1.35;
}

body .contact-sec form .wpcf7-response-output, body .contact-sec .wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  border-radius: 1rem;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border-width: 1px;
}

body footer#colophon {
  background: #0B140D;
  color: #FBFDF7;
}

body footer#colophon .footer-main {
  padding: 4rem 0 3rem;
}

body footer#colophon .footer-grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body footer#colophon .footer-brand .footer-logo {
  margin: 0 0 1.5rem;
}

body footer#colophon .footer-brand .footer-logo a {
  display: inline-block;
  background: #fff;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  line-height: 0;
}

body footer#colophon .footer-brand .footer-logo a img {
  max-height: 2.5rem;
  width: auto;
  display: block;
}

body footer#colophon .footer-brand .widget {
  margin: 0 0 1.5rem;
}

body footer#colophon .footer-brand .widget p {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.72);
  line-height: 1.7;
  margin: 0;
}

body footer#colophon .footer-heading, body footer#colophon .widget-title.footer-heading, body footer#colophon h2.footer-heading {
  font-family: var(--global-font-family);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7adf5f !important;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

body footer#colophon .footer-menu, body footer#colophon .footer-links, body footer#colophon .widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body footer#colophon .footer-menu li, body footer#colophon .footer-links li, body footer#colophon .widget_nav_menu ul li {
  margin: 0 0 0.75rem;
}

body footer#colophon .footer-menu li:last-child, body footer#colophon .footer-links li:last-child, body footer#colophon .widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}

body footer#colophon .footer-menu li a, body footer#colophon .footer-links li a, body footer#colophon .widget_nav_menu ul li a {
  font-family: var(--global-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: #FBFDF7;
  line-height: 1.4;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

body footer#colophon .footer-menu li a:hover, body footer#colophon .footer-links li a:hover, body footer#colophon .widget_nav_menu ul li a:hover {
  color: #7adf5f;
}

body footer#colophon .footer-social {
  margin-top: 0.25rem;
}

body footer#colophon .footer-social .widget {
  margin: 0;
}

body footer#colophon .footer-social .textwidget, body footer#colophon .footer-social p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
}

body footer#colophon .footer-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(251, 253, 247, 0.22);
  border-radius: 50%;
  color: #FBFDF7;
  font-size: 1rem;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body footer#colophon .footer-social a:hover {
  border-color: #7adf5f;
  color: #7adf5f;
  background: rgba(122, 223, 95, 0.08);
}

body footer#colophon .footer-contact .footer-contact-item, body footer#colophon .footer-contact li, body footer#colophon .footer-contact .widget .footer-contact-item, body footer#colophon .footer-contact .widget li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

body footer#colophon .footer-contact .footer-contact-item:last-child, body footer#colophon .footer-contact li:last-child, body footer#colophon .footer-contact .widget .footer-contact-item:last-child, body footer#colophon .footer-contact .widget li:last-child {
  margin-bottom: 0;
}

body footer#colophon .footer-contact .footer-contact-item > i, body footer#colophon .footer-contact .footer-contact-item .icon, body footer#colophon .footer-contact li > i, body footer#colophon .footer-contact li .icon, body footer#colophon .footer-contact .widget .footer-contact-item > i, body footer#colophon .footer-contact .widget .footer-contact-item .icon, body footer#colophon .footer-contact .widget li > i, body footer#colophon .footer-contact .widget li .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.125rem;
          flex: 0 0 1.125rem;
  width: 1.125rem;
  margin-top: 0.2rem;
  font-size: 1rem;
  color: #7adf5f;
  line-height: 1.4;
  text-align: center;
}

body footer#colophon .footer-contact p, body footer#colophon .footer-contact a, body footer#colophon .footer-contact span, body footer#colophon .footer-contact .widget p, body footer#colophon .footer-contact .widget a, body footer#colophon .footer-contact .widget span {
  font-family: var(--global-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(251, 253, 247, 0.82);
  line-height: 1.65;
  margin: 0;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

body footer#colophon .footer-contact a:hover, body footer#colophon .footer-contact .widget a:hover {
  color: #7adf5f;
}

body footer#colophon .footer-contact strong, body footer#colophon .footer-contact .widget strong {
  display: block;
  font-weight: 600;
  color: #FBFDF7;
  margin-bottom: 0.15rem;
}

body footer#colophon .footer-contact ul, body footer#colophon .footer-contact .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body footer#colophon .copyright {
  padding: 1.5rem 0 2rem;
  background: #0B140D;
  border-top: 1px solid rgba(251, 253, 247, 0.1);
}

body footer#colophon .copyright .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

body footer#colophon .copyright p {
  font-size: 0.875rem;
  font-family: var(--global-font-family);
  color: rgba(251, 253, 247, 0.45);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}

body footer#colophon .copyright p a {
  color: rgba(251, 253, 247, 0.55);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

body footer#colophon .copyright p a:hover {
  color: #7adf5f;
}
/*# sourceMappingURL=template.css.map */