@font-face {
  font-family: Open Sans Local;
  src: url('../fonts/OpenSans-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Open Sans Local;
  src: url('../fonts/OpenSans-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Open Sans Local;
  src: url('../fonts/OpenSans-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat Local;
  src: url('../fonts/Montserrat-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat Local;
  src: url('../fonts/Montserrat-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --body-white: #e7e7e7;
  --dark: #122a38;
  --light-green: #3d8f5b;
  --primary-green: #177f3e;
  --light: #d4d4d4;
  --button-radius: 5px;
  --yellow: #b89500;
  --blue: #258ecd;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--body-white);
  color: var(--dark);
  font-family: Open Sans Local, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 163%;
}

h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat Local, Arial, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 53px;
}

h2 {
  letter-spacing: -.16px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat Local, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 175.7%;
}

h3 {
  letter-spacing: -.44px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Montserrat Local, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 175.7%;
}

p {
  margin-bottom: 10px;
  font-family: Open Sans Local, Arial, sans-serif;
}

a {
  color: var(--light-green);
  text-decoration: none;
}

img {
  border-radius: 10px;
  max-width: 100%;
  display: inline-block;
}

.section {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.section.green-bg {
  background-color: var(--primary-green);
  color: #fafafa;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.hero {
  min-height: 100vh;
}

.section.footer {
  background-image: linear-gradient(0deg, #1c1c1c, #171717);
}

.section.article {
  margin-top: 60px;
}

.section.trust {
  background-color: var(--primary-green);
  color: #fafafa;
  margin-top: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.gradient-green {
  color: #fafafa;
  background-image: linear-gradient(171deg, #1a9147, #0b2211);
  margin-top: 50px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.navbar {
  background-color: #0000;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.container.flex-col-center {
  margin-bottom: 170px;
}

.nav-link {
  letter-spacing: -.32px;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
  font-size: 15px;
  line-height: 175.7%;
}

.nav-link.white {
  color: var(--light);
  font-size: 16px;
  transition: background-color .2s;
}

.nav-link.white:hover {
  color: #f8f8f8;
}

.nav-link.black {
  color: var(--dark);
  font-size: 16px;
  transition: background-color .2s;
}

.nav-link.black:hover {
  color: var(--light-green);
}

.flex-baseline {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand {
  width: 18%;
  margin-bottom: 13px;
}

.brand.footer {
  width: 194px;
  margin-bottom: 55px;
}

.h1-hero {
  color: var(--light);
  max-width: 793px;
  font-size: 44px;
  line-height: 60px;
}

.hero-paragraph {
  color: var(--light);
  max-width: 673px;
  margin-top: 20px;
  margin-bottom: 83px;
  font-size: 18px;
  line-height: 170%;
}

.cta {
  border-radius: var(--button-radius);
  background-color: var(--primary-green);
  color: var(--light);
  text-align: center;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color .2s;
}

.cta:hover {
  background-color: #126632;
}

.cta.nav {
  color: var(--body-white);
  margin-left: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
}

.cta.ghost-yellow {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background-color: #0000;
  padding: 14px 20px;
}

.cta.ghost-yellow:hover {
  background-color: var(--yellow);
  color: var(--light);
}

.cta.large {
  text-align: center;
  padding: 16px 57px;
}

.cta.large.contact-form {
  margin-top: 62px;
  margin-bottom: 60px;
}

.cta.large.gradient-green {
  will-change: transform;
  background-image: linear-gradient(114deg, #177f3e 19%, #3d8f5b 75%);
}

.cta.large.yellow {
  background-color: var(--yellow);
  color: var(--body-white);
  text-align: center;
  max-width: 285px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.cta.large.yellow:hover {
  background-color: #a68600;
}

.cta.ghost-green {
  border: 2px solid var(--light-green);
  color: var(--light-green);
  text-align: center;
  background-color: #0000;
  padding: 14px 40px;
}

.cta.ghost-green:hover {
  background-color: var(--light-green);
  color: var(--light);
}

.cta.small {
  color: var(--body-white);
  margin-top: 50px;
  padding: 14px 21px;
}

.cta.medium {
  color: var(--body-white);
  text-align: center;
  padding: 16px 35px;
}

.cta.contact-size {
  color: var(--light);
  text-align: center;
  padding: 16px 57px;
}

.cta.contact-size.yellow {
  background-color: var(--yellow);
  color: var(--body-white);
  text-align: center;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.cta.contact-size.yellow:hover {
  background-color: #a68600;
}

.hero-content {
  background-image: linear-gradient(111deg, #0e4d25e6, #0a0a0a80);
  border-radius: 750px 150px 1500px;
  flex-flow: column;
  max-width: 900px;
  margin-top: 85px;
  padding-top: 85px;
  padding-left: 60px;
}

.hero-btns {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding-bottom: 63px;
  display: flex;
}

.hero-img-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.hero-img {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.flex-col-center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-col-center.testimonials {
  margin-top: 200px;
  margin-bottom: 270px;
}

.testimonial-cards {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 55px;
  display: grid;
}

.testimonial-card {
  background-color: #f1f1f1;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  max-width: 249px;
  min-height: 230px;
  padding: 36px 20px 25px;
  font-size: 14px;
  line-height: 150.6%;
  display: flex;
  box-shadow: 0 7px 29px #64646f33;
}

.testimonial-card.mock {
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.opinion {
  border-left-style: none;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 150.6%;
}

.testimonial-name {
  color: #122a38d9;
  font-size: 14px;
  font-weight: 600;
  display: inline;
}

.avatar {
  float: left;
  margin-right: 10px;
  display: inline-block;
}

.testimonial-source {
  color: #6d7d8b;
  font-size: 12px;
}

.txt-placeholder-ml {
  background-color: #dedede;
  border-radius: 8px;
  width: 82%;
  height: 12px;
  margin-bottom: 16px;
}

.txt-placeholder-m {
  background-color: #dedede;
  border-radius: 8px;
  width: 65%;
  height: 12px;
  margin-bottom: 16px;
}

.txt-placeholder-l {
  background-color: #dedede;
  border-radius: 8px;
  width: 100%;
  height: 12px;
  margin-bottom: 16px;
}

.name-placeholder {
  background-color: #dedede;
  border-radius: 8px;
  width: 50%;
  height: 12px;
  margin-bottom: 10px;
  margin-left: 41px;
}

.source-placeholder {
  background-color: #dedede;
  border-radius: 8px;
  width: 28%;
  height: 12px;
  margin-bottom: 10px;
  margin-left: 41px;
}

.opinion-btn {
  color: var(--light);
  text-align: center;
  background-image: linear-gradient(141deg, #1f78ad, #96bbe0);
  border-radius: 5px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  position: absolute;
  inset: auto 0% -45%;
  box-shadow: 0 7px 29px #0003;
}

.offer-cards {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
}

.offer {
  color: var(--dark);
  will-change: transform;
  background-color: #fafafa;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 360px;
  min-height: 364px;
  padding: 30px;
  text-decoration: none;
  transition-property: box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: flex;
  position: relative;
}

.offer:hover {
  box-shadow: 0 5px 32px #00000040;
}

.offer-header {
  text-align: center;
  height: 55px;
  margin-top: 25px;
  margin-bottom: 10px;
  line-height: 132%;
}

.offer-description {
  font-size: 14px;
  line-height: 168%;
}

.circle-box {
  color: var(--primary-green);
  background-color: #fafafa;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: absolute;
  inset: auto 5% 3% auto;
}

.link-arrow {
  padding-top: 3px;
}

.highlight {
  color: var(--primary-green);
}

.two-col {
  justify-content: flex-start;
  align-items: center;
  margin-top: 190px;
  margin-bottom: 135px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.two-col.reverse {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: row-reverse;
  margin-top: 100px;
  margin-bottom: 200px;
}

.two-col-content {
  min-width: 482px;
  max-width: 567px;
  padding-bottom: 0;
}

.two-col-content.reverse {
  width: 50%;
  min-width: 0;
  max-width: none;
}

.two-col-content.reverse.larger {
  width: 62%;
}

.two-col-content.why-us {
  min-width: 0;
  max-width: 50%;
}

.two-col-imgs {
  min-width: 567px;
  margin-left: 30px;
  display: flex;
}

.home-img {
  object-fit: cover;
  border-radius: 10px;
  width: 247px;
  height: 392px;
  position: relative;
  box-shadow: 0 5px 32px #00000040;
}

.home-img.up {
  margin-bottom: 90px;
}

.home-img.down {
  margin-top: 90px;
  right: -30px;
  overflow: hidden;
}

.btns {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 50px;
  display: flex;
}

.number-wrapper {
  justify-content: space-between;
  display: flex;
}

.number-box {
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  display: flex;
}

.number {
  margin-bottom: 3px;
  font-family: Montserrat Local, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.img-wrapper {
  border-radius: 10px;
  box-shadow: 0 5px 32px #00000040;
}

.img-wrapper.why-us {
  margin-left: 70px;
}

.img-wrapper.coop {
  min-height: 120px;
}

.footer-main {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 70px;
  display: flex;
}

.footer-col {
  flex-flow: column;
  display: flex;
}

.footer-col.center {
  margin-right: 100px;
}

.footer-header {
  margin-top: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 175.7%;
}

.footer-header.blue {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.footer-header.green {
  color: var(--primary-green);
}

.footer-header.yellow {
  color: var(--yellow);
}

.footer-link {
  color: var(--light);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: #fff;
}

.flex-space-btw {
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.facebook {
  width: 24px;
  margin-top: 20px;
}

.line-h {
  background-color: var(--light);
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
}

.caption {
  color: var(--light);
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.caption:hover {
  color: #fff;
}

.captions {
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.center {
  text-align: center;
}

.center._881max-w {
  color: var(--light);
  max-width: 881px;
  margin-top: 6px;
  margin-bottom: 50px;
}

.breadcrumbs {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--light-green);
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 15px;
  display: flex;
}

.bread-link {
  font-size: 15px;
  line-height: 175.7%;
  text-decoration: underline;
}

.lightbox-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-top {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template: "Large-left-top . Large-right-top" 257px
                 "Large-left-top . Large-right-top" 383px
                 / minmax(183px, 367px) minmax(132px, 265px) minmax(234px, 468px);
  grid-auto-flow: row;
  place-items: stretch stretch;
  margin-top: 80px;
}

.gallery-bottom {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "Large-left-top . Large-right-top" 325px
                 "Large-left-top . Large-right-top" 345px
                 / minmax(183.5px, 367px) minmax(184px, 368px) minmax(184px, 368px);
  grid-auto-flow: row;
  place-items: stretch stretch;
  margin-top: 23px;
  margin-bottom: 200px;
}

.columns {
  grid-column-gap: 123px;
  grid-row-gap: 123px;
  display: flex;
}

.col {
  width: 50%;
}

.form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 565px;
  margin-top: 15px;
  display: flex;
}

.contact-field {
  color: var(--dark);
  border: 2px solid #bbc8d4;
  border-radius: 5px;
  max-width: 565px;
  min-height: 61px;
}

.contact-field::placeholder {
  color: #bbc8d4;
  font-size: 14px;
  font-weight: 400;
  line-height: 168%;
}

.contact-field.textfield {
  max-width: 565px;
  margin-top: 15px;
  display: block;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.checkbox {
  background-color: #f2f2f2;
  border: 2px solid #1e2d3266;
  border-radius: 5px;
  min-width: 24px;
  min-height: 24px;
  margin-right: 11px;
}

.checkbox.w--redirected-checked {
  background-color: var(--primary-green);
  border-color: #f2f2f2;
}

.checkbox-txt {
  max-width: 565px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.contact-link {
  color: var(--dark);
  transition: color .2s;
}

.contact-link:hover {
  color: var(--light-green);
}

.contact-grid {
  grid-column-gap: 17%;
  grid-row-gap: 40px;
}

.map {
  margin-top: 65px;
  margin-bottom: 65px;
}

.know-us {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 200px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.why-us-img {
  object-fit: cover;
  width: 100%;
}

.coop-icon {
  margin-right: 25px;
}

.flex-left-center {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.coop-headline {
  margin-bottom: 5px;
}

.coop-img {
  object-fit: cover;
  object-position: 100% 50%;
  min-height: 452px;
}

.margin-left-105 {
  margin-left: 105px;
}

.pros-cards {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
}

.card {
  background-color: #fafafa;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 269px;
  min-height: 380px;
  padding: 20px 15px 15px;
  display: flex;
  box-shadow: 0 5px 32px #00000040;
}

.card-headline {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 163%;
}

.card-description {
  min-height: 188px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 168%;
}

.coop-point-desc {
  text-align: left;
}

.our-offer {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 53px;
}

.service-links {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: wrap;
  margin-top: 50px;
  margin-bottom: 150px;
  display: flex;
}

.service {
  color: var(--light-green);
  border-radius: 20px;
  min-width: 179px;
  min-height: 351px;
  position: relative;
}

.service-bg {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.service-link-header {
  color: var(--body-white);
  max-width: 126px;
  font-family: Open Sans Local, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  position: absolute;
  inset: auto 0% 0% 8%;
}

.circle {
  color: var(--primary-green);
  width: 32px;
  height: 32px;
  position: absolute;
  inset: auto .5% .5% auto;
}

.arrow {
  color: var(--body-white);
  width: 32px;
  height: 32px;
  position: absolute;
  inset: auto .5% .5% auto;
}

.trust-pill {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-image: linear-gradient(184deg, #177f3e, #0a0a0a80);
  border-radius: 70px;
  justify-content: flex-start;
  align-items: center;
  min-height: 118px;
  padding: 20px 30px;
  display: flex;
}

.trust-pills {
  margin-top: 50px;
  margin-bottom: 60px;
}

.pill-item {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pill-text {
  margin-top: 10px;
}

.service-nav {
  background-color: var(--primary-green);
  border-radius: 10px;
  max-width: 401px;
  min-height: 383px;
  margin-right: 65px;
}

.service-link {
  box-sizing: content-box;
  background-color: var(--light-green);
  color: var(--body-white);
  border-radius: 5px;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2px 10px;
  transition: background-color .2s;
  display: flex;
}

.service-link:hover {
  background-color: #267041;
}

.service-link.w--current {
  background-color: #176233;
}

.service-nav-item {
  padding: 15px 24px 0;
}

.service-nav-header {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1px;
  padding-bottom: 2px;
  padding-right: 30px;
}

.article-nav {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
}

.article-services-item {
  min-height: 60px;
  display: flex;
}

.serice-item-p {
  margin-bottom: 0;
  margin-left: 15px;
}

.service-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.list-icon {
  width: 32px;
  height: 32px;
}

.article-h3 {
  margin-bottom: 20px;
}

.article-h3.service-article {
  margin-top: 50px;
}

.article-h3.second {
  margin-top: 45px;
}

.why-h3 {
  margin-top: 75px;
  margin-bottom: 32px;
}

.why-service-list {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-bottom: 70px;
  display: grid;
}

.article-photo {
  object-fit: cover;
  min-width: 50%;
}

.number-item {
  list-style-type: decimal;
}

.nested-item {
  list-style-type: lower-alpha;
}

.paragraph-3 {
  font-weight: 400;
}

.h2-rodo-2 {
  margin-bottom: 20px;
}

.rodo-link {
  text-decoration: underline;
}

.mb-50 {
  margin-bottom: 50px;
}

.why-us-p {
  margin-bottom: 20px;
}

.success-message {
  background-color: var(--primary-green);
  border-radius: 10px;
  margin-top: 70px;
}

.text-block {
  color: var(--body-white);
}

.error-message {
  color: var(--body-white);
  background-color: #d34242;
  border-radius: 10px;
  margin-top: -20px;
  padding: 15px 12px;
}

.heading {
  font-family: Montserrat Local, Arial, sans-serif;
}

.display-none {
  display: none;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .section.hero, .section.nav {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-link.white {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
  }

  .nav-link.black {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 15px;
  }

  .brand {
    margin-bottom: 10px;
    margin-right: 9px;
  }

  .brand.w--current {
    margin-bottom: 9px;
  }

  .h1-hero {
    font-size: 34px;
  }

  .cta.nav {
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta.ghost-yellow {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta.large {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cta.large.contact-form {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .cta.medium, .cta.contact-size {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content {
    border-top-right-radius: 300px;
    padding-left: 40px;
    padding-right: 5px;
  }

  .hero-btns {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .flex-col-center.testimonials {
    margin-top: 100px;
    margin-bottom: 170px;
  }

  .testimonial-cards {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card.mock {
    margin-bottom: 100px;
  }

  .offer-header {
    font-size: 20px;
  }

  .offer-description {
    font-size: 14px;
  }

  .two-col {
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
  }

  .two-col.reverse {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 100px;
  }

  .two-col.reverse.coop {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .two-col-content {
    width: 50%;
    min-width: 0;
    max-width: none;
  }

  .two-col-content.reverse.larger {
    width: 100%;
  }

  .two-col-content.why-us {
    width: auto;
    max-width: none;
  }

  .two-col-imgs {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-width: 0;
    margin-left: 30px;
  }

  .home-img.up {
    margin-bottom: 0;
    margin-left: 0;
  }

  .home-img.down {
    padding-top: 0;
    display: none;
  }

  .btns {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .number-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    flex-flow: column;
  }

  .img-wrapper {
    margin-right: 20px;
  }

  .img-wrapper.why-us {
    width: 60%;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .col {
    width: 100%;
  }

  .form, .contact-field {
    max-width: none;
  }

  .contact-field.textfield {
    max-width: 100%;
  }

  .know-us {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 100px;
  }

  .margin-left-105 {
    text-align: center;
    margin-left: 0;
  }

  .card-description {
    font-size: 14px;
  }

  .coop-point-desc {
    text-align: left;
  }

  .service-links {
    justify-content: center;
    align-items: center;
  }

  .service-nav {
    width: 100%;
    max-width: none;
    margin-top: 60px;
    margin-right: 0;
  }

  .article-nav {
    flex-flow: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .navbar {
    padding-bottom: 0;
  }

  .nav-link.white {
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-link.black {
    color: var(--light);
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
  }

  .flex-baseline {
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    width: 160px;
  }

  .brand.footer {
    margin-bottom: 35px;
  }

  .h1-hero {
    font-size: 28px;
    line-height: 47px;
  }

  .hero-paragraph {
    min-width: 200px;
  }

  .cta.nav {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .cta.ghost-yellow {
    min-width: 300px;
    font-size: 16px;
  }

  .cta.large {
    min-width: 300px;
  }

  .cta.large.contact-form {
    width: 100%;
    min-width: 0;
  }

  .cta.ghost-green {
    min-width: 300px;
  }

  .cta.small {
    width: 100%;
  }

  .cta.medium, .cta.contact-size {
    min-width: 300px;
  }

  .hero-content {
    background-image: linear-gradient(111deg, #0e4d25, #0a0a0a80);
    border-radius: 50px;
    margin-bottom: 100px;
    padding-bottom: 40px;
    padding-right: 50px;
  }

  .hero-btns {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .flex-col-center.testimonials {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .offer-cards {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .two-col {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .two-col.reverse {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .two-col-content, .two-col-content.reverse {
    width: 100%;
  }

  .two-col-imgs {
    width: 100%;
    margin-left: 0;
  }

  .home-img.up {
    margin-top: 40px;
  }

  .btns {
    justify-content: center;
    align-items: center;
  }

  .img-wrapper {
    width: 100%;
    display: none;
  }

  .footer-header {
    font-size: 18px;
  }

  .footer-header.blue {
    margin-top: 30px;
    font-size: 16px;
  }

  .footer-link {
    font-size: 14px;
  }

  .flex-space-btw {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: wrap;
  }

  .caption {
    font-size: 12px;
  }

  .menu-button {
    color: var(--primary-green);
    font-size: 38px;
  }

  .menu-button.w--open {
    background-color: var(--primary-green);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .captions {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: row;
  }

  .nav-menu {
    background-color: #0c4b24;
    border-radius: 10px 0 10px 10px;
    min-height: 360px;
    font-family: Montserrat Local, Arial, sans-serif;
  }

  .gallery-top {
    grid-template: "." 1fr
    / 1fr 1fr;
    grid-auto-flow: row;
    place-items: stretch stretch;
    margin-top: 50px;
  }

  .gallery-bottom {
    grid-template: "." 1fr
                   "." 1fr
                   / 1fr 1fr;
    margin-bottom: 100px;
  }

  .checkbox-txt {
    max-width: 100%;
  }

  .know-us {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    margin-bottom: 50px;
  }

  .service-list {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .why-service-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .section.green-bg, .section.trust, .section.gradient-green {
    padding: 30px 30px 30px 39px;
  }

  .nav-link.white, .nav-link.black {
    font-size: 18px;
  }

  .hero-paragraph {
    min-width: 197px;
  }

  .cta.ghost-yellow, .cta.large {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  .cta.ghost-green {
    min-width: 0;
  }

  .cta.medium, .cta.contact-size {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 40px;
    padding: 20px;
  }

  .testimonial-cards {
    margin-top: 10px;
  }

  .number-box {
    text-align: center;
  }

  .gallery-top, .gallery-bottom {
    grid-template-columns: 1fr;
  }

  .contact-link {
    font-size: 16px;
  }

  .contact-grid {
    grid-column-gap: 0%;
    grid-row-gap: 20px;
    text-align: center;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
  }

  .know-us {
    margin-top: 40px;
  }

  .coop-icon {
    margin-right: 0;
  }

  .flex-left-center {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .coop-headline {
    text-align: center;
  }

  .list-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .coop-point-desc {
    text-align: center;
  }

  .trust-pill {
    flex-flow: column;
  }

  .pill-text {
    text-align: center;
    font-size: 14px;
  }

  .service-link {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .service-nav-header {
    text-align: center;
    margin-bottom: 5px;
    padding-right: 0;
  }

  .article-nav {
    margin-bottom: 40px;
  }

  .list {
    margin-bottom: 15px;
  }
}

#w-node-ce899a0b-a6b3-066e-6b66-96ceced7adf5-5faf146c {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-_9796119b-0116-48c0-e7a0-ea4e79c25174-5faf146c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_4fb47499-1bc4-8000-22b0-94c137a47301-5faf146c {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-_2b05c775-273b-04ce-7e41-4d96a01a549d-5faf146c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_3ff7daaa-95d4-a6cc-c76f-e39df5f5f8fe-5faf146c {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-b11334d0-84ef-884a-b64c-9d08fa1843aa-5faf146c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-edb962a1-41b4-ca46-9fa5-2bf93fad4025-5faf146c {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-_54efbf7d-7e75-b4d3-9b96-2afa4d689433-5faf146c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

@media screen and (max-width: 767px) {
  #w-node-_1731ea38-819e-fde7-6cfd-a879c71f6f5e-4d3965fa {
    order: 9999;
  }

  #w-node-ce899a0b-a6b3-066e-6b66-96ceced7adf5-5faf146c, #w-node-_4fb47499-1bc4-8000-22b0-94c137a47301-5faf146c, #w-node-_3ff7daaa-95d4-a6cc-c76f-e39df5f5f8fe-5faf146c, #w-node-edb962a1-41b4-ca46-9fa5-2bf93fad4025-5faf146c {
    grid-row: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_27cb6b70-8be8-25c7-3bf7-33c778d48389-1b9d5566 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Open Sans Local';
  src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans Local';
  src: url('../fonts/OpenSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans Local';
  src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Local';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Local';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}