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

body {
  font-family: Arvo, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 6vw;
  line-height: 6.5vw;
  font-weight: 700;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 3.5vw;
  line-height: 4vw;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 3vw;
  line-height: 3.5vw;
  font-weight: 700;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 2.5vw;
  line-height: 3vw;
  font-weight: 700;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 2vw;
  line-height: 2.3vw;
  font-weight: 700;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 1.5vw;
  line-height: 2vw;
  font-weight: 600;
}

p {
  margin-bottom: 10px;
  color: #020733;
  font-size: 18px;
  line-height: 28px;
}

a {
  font-family: Sourcesanspro, sans-serif;
  color: #ea4e6e;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

ul {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-left: 5px solid #e9edf0;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 130px 6%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.hero {
  overflow: hidden;
  height: 100vh;
  max-height: none;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: transparent;
}

.section.light-grey-bg {
  background-color: #fafbfc;
}

.section.full-width-image {
  overflow: hidden;
  height: 800px;
  min-height: 110vh;
}

.section.min-100vh {
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.whitepaper {
  overflow: hidden;
  padding-bottom: 0px;
  background-color: #fafbfc;
}

.section.footer {
  border-top: 2px solid #fafbfc;
}

.section.light-grey-bg-copy1 {
  background-color: #fafbfc;
}

.container {
  width: 100%;
  max-width: 1440px;
}

.container.relative {
  position: relative;
  z-index: 2;
  width: auto;
}

.container.navbar-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-content {
  position: static;
  width: 60%;
  margin-bottom: -30px;
}

.button {
  padding: 12px 40px;
  border-radius: 100px;
  background-color: #ea4e6e;
  color: #fff;
}

.button.nav-btn {
  margin-left: 24px;
  padding-right: 40px;
  padding-left: 40px;
  border-style: solid;
  border-width: 2px;
  border-color: #fafbfc;
  border-radius: 100px;
  background-color: transparent;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  font-family: Lato, sans-serif;
  color: #fff;
}

.button.nav-btn:hover {
  background-color: #fff;
  color: #3dcacf;
}

.button.nav-btn.dark {
  border-color: #020733;
  color: #020733;
}

._40px-height-div {
  height: 40px;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex.start-to-end {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.logo-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-wrap {
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

._50-percent-block {
  position: relative;
  width: 50%;
}

._50-percent-block.written-content {
  margin-top: -16px;
  padding-top: 0px;
}

.video-highlight-image {
  position: relative;
  width: 80%;
  height: 450px;
  min-height: 55vh;
  border-radius: 1px;
  background-image: url('../images/480908708-2.jpeg');
  background-position: 100% 50%;
  background-size: cover;
  box-shadow: 6px 6px 18px 6px rgba(0, 0, 0, 0.04);
}

.absolute-top-background-color {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: auto;
  min-height: 68%;
  background-color: #e9edf0;
}

.hero-text {
  max-height: 100%;
  max-width: 100%;
  color: #fff;
  font-size: 6vw;
  line-height: 7.5vw;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.lightbox-link {
  position: absolute;
  left: auto;
  top: -44px;
  right: -27.6px;
  bottom: auto;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #020733;
}

.play-icon {
  margin-top: -2px;
  margin-right: -8px;
}

.large-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: url('../images/AdobeStock_424409084-2.jpeg');
  background-position: 50% 90%;
  background-size: cover;
}

.large-image._2 {
  background-image: url('../images/AdobeStock_383266451-2.jpeg');
  background-position: 50% 50%;
}

.max-500-width {
  max-width: 500px;
  font-family: Lato, sans-serif;
}

.absolute-bottom-bg-color {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  min-height: 32%;
  background-color: #fafbfc;
}

.the-white-paper-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 7%;
}

.whitepaper-visual-wrap {
  position: relative;
  width: 50%;
}

.top-white-paper {
  position: relative;
  z-index: 3;
  height: auto;
  min-height: 80vh;
  padding: 50px 50px 80px;
  background-color: #fff;
}

.navbar {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 3%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.navbar.fixed {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-transform: translate(0px, -100%);
  -ms-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
}

.navbar.fixed.inital-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.nav-link {
  margin-right: 14px;
  margin-left: 14px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  font-family: Lato, sans-serif;
  color: #fafbfc;
  font-size: 18px;
  font-weight: 600;
}

.nav-link:hover {
  color: #3dcacf;
}

.nav-link.dark {
  font-family: Lato, sans-serif;
  color: #020733;
}

.nav-link.dark:hover {
  color: #3dcacf;
}

.whitepaper-lines-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.whitepaper-line {
  height: 13px;
  margin-top: 13px;
  margin-bottom: 13px;
  background-color: #e9edf0;
}

.whitepaper-line._1 {
  max-width: 60%;
  margin-bottom: 0px;
}

.whitepaper-line._2 {
  max-width: 75%;
}

.whitepaper-line._3 {
  max-width: 95%;
}

.whitepaper-line._4 {
  width: 50%;
  margin-bottom: 0px;
}

.whitepaper-line._5 {
  width: 45%;
  margin-bottom: 0px;
  margin-left: 5%;
}

.whitepaper-line._6 {
  max-width: 35%;
}

.whitepaper-line._7 {
  max-width: 75%;
}

.whitepaper-line._8 {
  width: 35%;
}

.whitepaper-line._9 {
  width: 60%;
  margin-left: 5%;
}

.whitepaper-line._10 {
  max-width: 65%;
}

.whitepaper-line._11 {
  max-width: 75%;
}

.double-line-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 85%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.double-line-wrap._2 {
  max-width: 100%;
}

.bottom-whitepapers {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  width: 60%;
  height: 500px;
  min-height: 55vh;
  background-color: #1b4c67;
  -webkit-transform: rotate(-8deg) translate(-43px, 52px);
  -ms-transform: rotate(-8deg) translate(-43px, 52px);
  transform: rotate(-8deg) translate(-43px, 52px);
}

.bottom-whitepapers._2 {
  z-index: 1;
  background-color: #27898d;
  -webkit-transform: rotate(-14deg) translate(-81px, 95px);
  -ms-transform: rotate(-14deg) translate(-81px, 95px);
  transform: rotate(-14deg) translate(-81px, 95px);
}

.white-paper-cta {
  padding-top: 5%;
  padding-left: 90px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ea4e6e;
}

.link-block.hero {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.link-block.hero:hover {
  color: #fff;
}

.link-circle {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #3dcacf;
  border-radius: 50%;
  background-color: #3dcacf;
}

.arrow-leg {
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #fff;
}

.arrow-wing {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 15px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate(3px, -5px) rotate(43deg);
  -ms-transform: translate(3px, -5px) rotate(43deg);
  transform: translate(3px, -5px) rotate(43deg);
}

.arrow-wing._2 {
  -webkit-transform: translate(3px, 4px) rotate(-43deg);
  -ms-transform: translate(3px, 4px) rotate(-43deg);
  transform: translate(3px, 4px) rotate(-43deg);
}

._55-percent-w {
  width: 100%;
}

.double-images-contain {
  position: relative;
  display: none;
  height: 600px;
  min-height: 70vh;
  margin-top: 180px;
  padding-top: 0px;
}

.image-1-wrap {
  position: absolute;
  left: auto;
  top: -62px;
  right: 0%;
  bottom: auto;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 40%;
  height: 90%;
  margin-top: 83px;
  margin-left: -1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  box-shadow: -3px 10px 20px 5px rgba(0, 0, 0, 0.05);
}

.image-2-wrap {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 1;
  display: none;
  overflow: hidden;
  width: 60%;
  height: 90%;
}

.image-1 {
  height: 100%;
  padding-top: 0px;
  background-image: url('../images/wonderlane-boiz-wQG66E-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.image-2 {
  display: none;
  height: 100%;
  background-image: url('../images/christina-wocintechchat-com-dFCOgR91H5M-unsplash-1.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.solutions-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.solution-block-wrap {
  width: 33.33%;
  height: 575px;
  min-height: 60vh;
  padding: 18px 18px 18px 0px;
}

.solutions-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 2px;
  background-color: #1b4c67;
}

.solutions-block._2 {
  background-color: #020733;
}

.solutions-block._3 {
  background-color: #3dcacf;
}

.solutions-block._2-copy1 {
  background-color: #27898d;
}

.soultions-block-text {
  position: relative;
  font-family: Lato, sans-serif;
  color: #fff;
  font-weight: 400;
}

.solutions-css-icon-wrap {
  position: absolute;
  left: auto;
  top: auto;
  right: 25%;
  bottom: 35%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-top: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.circle {
  position: relative;
  left: 49px;
  top: 100px;
  display: none;
  width: 120px;
  height: 120px;
  border-style: solid;
  border-width: 10px;
  border-color: #fff;
  border-radius: 50%;
}

.circle._2 {
  position: absolute;
  left: -68px;
  top: auto;
  right: auto;
  bottom: 0px;
  display: none;
  border-color: #e9edf0;
}

.circle._4 {
  position: absolute;
  left: 35px;
  top: 37px;
}

.circle._3 {
  position: absolute;
  left: -32px;
  top: 96px;
}

.circle._5 {
  position: absolute;
  left: 52px;
  top: -59px;
  width: 100px;
  height: 100px;
  border-color: #e9edf0;
}

.square {
  width: 70px;
  height: 70px;
  border-style: solid;
  border-width: 10px;
  border-color: #246f7e;
  border-radius: 3px;
}

.square._1 {
  position: absolute;
  left: auto;
  top: 0px;
  right: -51px;
  bottom: auto;
  display: none;
  width: 120px;
  height: 100px;
}

.square._3 {
  position: relative;
  left: 15px;
  top: -29px;
  display: none;
  width: 100px;
  height: 60px;
  border-color: #1b4c67;
}

.square._4 {
  position: relative;
  left: 13px;
  top: -34px;
  display: none;
  width: 80px;
  height: 80px;
  border-color: #e9edf0;
}

.square._2 {
  display: none;
  width: 150px;
  height: 100px;
}

.read-more-text {
  display: none;
  font-family: Sourcesanspro, sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

._50-percent-w {
  width: 50%;
}

.how-it-works-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.how-it-works-grid {
  padding-top: 120px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.how-it-works-image-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e9edf0;
}

.how-it-works-image-wrap.last {
  border-bottom-style: solid;
}

.how-to-step-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e9edf0;
}

.how-to-step-wrap.last {
  border-bottom-style: solid;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin-bottom: 0px;
}

.submit-button {
  width: auto;
  height: 60px;
  padding-right: 46px;
  padding-left: 46px;
  border: 3px none #000;
  border-radius: 2px;
  background-color: #3dcacf;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-family: Sourcesanspro, sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.submit-button:hover {
  background-color: #246f7e;
  color: #fff;
}

.footer-social-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
  padding-bottom: 10px;
  color: #2f3033;
}

.copyrights {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 6%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #020733;
  text-align: left;
}

.copyrights-text {
  padding-right: 0%;
  padding-left: 0%;
  font-family: Sourcesanspro, sans-serif;
  color: #fff;
  font-size: 16px;
}

.copyrights-link {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
  font-size: 16px;
}

.copyrights-link:hover {
  color: #ea4e6e;
  text-decoration: none;
}

.footer-grid {
  width: 100%;
  -ms-grid-columns: 0.75fr 0.5fr 0.5fr 0.5fr;
  grid-template-columns: 0.75fr 0.5fr 0.5fr 0.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.social_media_link {
  padding-right: 25px;
}

.social_media_link.first {
  display: none;
}

.error-message {
  font-size: 16px;
}

.footer-paragrph {
  font-family: Lato, sans-serif;
}

.footer-info {
  padding-right: 40px;
}

.footer-link {
  display: block;
  margin-bottom: 8px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  font-family: Lato, sans-serif;
  color: #020733;
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  text-transform: none;
}

.footer-link:hover {
  color: #3dcacf;
  text-decoration: none;
  text-transform: none;
}

.newsletter-form-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.success-message {
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 4px;
  background-color: #e9edf0;
  color: #232222;
  font-size: 18px;
  line-height: 24px;
}

.footer-home-link {
  margin-bottom: 30px;
}

.text-field {
  height: 60px;
  margin-bottom: 20px;
  border-style: none;
  border-width: 3px;
  border-color: #246f7e;
  border-radius: 1px;
  background-color: #fafbfc;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-family: Sourcesanspro, sans-serif;
  color: #22201d;
  font-size: 16px;
}

.text-field:hover {
  border-style: none;
  border-color: #1b4c67;
  background-color: #e9edf0;
}

.text-field:focus {
  border-color: #1b4c67;
  background-color: #e9edf0;
}

.faq-q-text {
  margin-top: 0px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 600;
  text-align: left;
}

.faq-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  padding-top: 12px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq-plus {
  width: 30px;
  height: 5px;
  border-radius: 0px;
  background-color: #3dcacf;
}

.faq-plus-l {
  position: absolute;
  width: 5px;
  height: 20px;
  border-radius: 0px;
  background-color: #3dcacf;
}

.faq-plus-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-answer-text {
  width: 100%;
  margin-bottom: 40px;
  color: #020733;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}

.faq-answer {
  overflow: hidden;
  margin-bottom: 12px;
  padding-left: 0px;
  border-bottom: 1px none rgba(193, 191, 189, 0.4);
  color: #221f1f;
}

.faq-question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.faq-wrap {
  max-width: 50%;
  padding-right: 60px;
}

.faq-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-video-quote-wrap {
  padding-top: 10px;
}

.heading-wrap {
  margin-right: 0vw;
  margin-left: 0vw;
}

._20px-div {
  width: 100%;
  height: 20px;
}

.color-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 33.33%;
  margin: 20px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.colors-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-right: 1px none hsla(0, 0%, 60.8%, 0.3);
  border-bottom: 1px none hsla(0, 0%, 60.8%, 0.3);
}

.color-hex {
  font-family: Montserrat, sans-serif;
  color: #020733;
  font-weight: 400;
}

.div-block-style-guide {
  position: relative;
  padding-top: 20px;
}

.color-heading {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  color: #020733;
  font-size: 16px;
  font-weight: 500;
}

.buttons-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button-wrap {
  width: auto;
  padding: 10px 10px 10px 0px;
}

.button-wrap.dark {
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 2px;
  background-color: #020733;
}

.color {
  width: 80px;
  height: 80px;
  border-style: none;
  border-width: 1px;
  border-color: rgba(127, 150, 145, 0.24);
  border-radius: 50%;
  background-color: #f2f4f4;
}

.color._4056a1 {
  background-color: #e9edf0;
}

.color.f13c20 {
  background-color: #1b4c67;
}

.color.d79922 {
  border-style: none;
  background-color: #246f7e;
  color: #22201d;
}

.color.efe2ba {
  border-style: solid;
  border-width: 1px;
  border-color: #f7f0dc;
  background-color: #ea4e6e;
}

.color._22201d {
  border-color: rgba(241, 241, 243, 0.2);
  background-color: #020733;
}

.color.c5cbe3 {
  border-style: solid;
  border-width: 2px;
  border-color: #e9edf0;
  background-color: #fafbfc;
}

._20px-height-div {
  height: 20px;
}

.style-block {
  width: auto;
  min-width: 80%;
  margin: 24px 0vw;
  padding: 36px 45px;
  border-style: none;
  border-width: 3px;
  border-color: #22201d;
  border-radius: 0px;
  background-color: #fafbfc;
  box-shadow: none;
}

.change-log {
  padding-top: 37px;
  font-size: 18px;
}

.max-700-w {
  max-width: 700px;
}

.maxx-700-w {
  max-width: 700px;
}

.instruction-wrapper {
  margin-top: 42px;
  margin-bottom: 42px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.field-label {
  margin-bottom: 15px;
  font-family: Sourcesanspro, sans-serif;
  color: #020733;
  font-size: 16px;
}

._404 {
  font-size: 20vw;
  line-height: 15vw;
}

._404-message {
  margin-bottom: 35px;
}

.white-h3 {
  color: #fff;
}

.newsletter-heading {
  color: #3dcacf;
}

.mobile-navbar-content {
  display: none;
}

.partners-heading {
  max-width: 50%;
  margin-top: 0px;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  line-height: 4.5vw;
}

.mobile-menu {
  display: none;
}

.hero-bg-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: url('../images/brooke-cagle-cx-cNkx7f6Y-unsplash-1.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.div-block-9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text_link {
  padding-top: 14px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #15113b;
  font-weight: 700;
  text-decoration: none;
}

.text_link:hover {
  padding-left: 5px;
  color: #15113b;
  font-weight: 700;
}

.illustrations-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.image-licensing-grid {
  width: 100%;
  padding-top: 24px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto 30px auto 30px auto 30px auto;
  grid-template-rows: auto auto auto auto;
}

.image-licensing-grid.logos {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.hero-text-copy111 {
  display: none;
  color: #fff;
}

.hero-text-copy555 {
  display: block;
  color: #fff;
}

.hero-bg-image-copy111 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: url('../images/AdobeStock_425210703-2.jpeg');
  background-position: 50% 50%;
  background-size: cover;
}

.hero-bg-image-ccopy {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: #000;
  opacity: 0.45;
}

.textb {
  font-family: Lato, sans-serif;
  color: #fff;
}

.text-block {
  font-family: Lato, sans-serif;
  color: #3dcacf;
}

.text-block-2 {
  font-family: Lato, sans-serif;
  color: #3dcacf;
}

.text-block-3 {
  color: #3dcacf;
}

.text-block-4 {
  font-family: Lato, sans-serif;
  color: #3dcacf;
}

.text-block-5 {
  font-family: Lato, sans-serif;
  color: #3dcacf;
}

.logo-wrap-copy1 {
  display: none;
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

.logo-wrap-copy2 {
  display: none;
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

.logo-wrap-copy3 {
  display: none;
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

.logo-wrap-copy4 {
  display: none;
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

.logo-wrap-copy5 {
  display: none;
  width: 33.33%;
  margin-bottom: 32px;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
}

.image-1-copy22 {
  height: 100%;
  padding-top: 0px;
  background-image: url('../images/AdobeStock_447681072-2.jpeg');
  background-position: 50% 50%;
  background-size: cover;
}

.image-1-wrap-copy22 {
  position: absolute;
  left: auto;
  top: -62px;
  right: 0%;
  bottom: auto;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 40%;
  height: 90%;
  margin-top: 88px;
  margin-right: 145px;
  margin-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  box-shadow: -3px 10px 20px 5px rgba(0, 0, 0, 0.05);
}

.max-500-width-copy1 {
  display: block;
  max-width: 550px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  font-family: Lato, sans-serif;
  text-align: left;
}

.flex-copy1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-copy1.start-to-end {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-span {
  overflow: visible;
  width: 10%;
  height: 50%;
  max-height: 50px;
  max-width: 50%;
  min-height: 50%;
  min-width: 50%;
  border-radius: 0px;
  background-color: #3dcacf;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
  -o-object-fit: fill;
  object-fit: fill;
}

.text-span-2 {
  position: static;
  background-color: transparent;
}

.text-span-3 {
  background-color: #3dcacf;
}

.text-span-4 {
  background-color: #3dcacf;
  color: #fff;
}

.text-span-5 {
  background-color: #3dcacf;
  color: #fff;
}

.heading {
  position: relative;
  max-width: 100%;
  line-height: 4.5vw;
}

.container-copy1 {
  width: 100%;
  padding-left: 0px;
}

.container-copy1.relative {
  position: relative;
  z-index: 2;
}

.container-copy1.navbar-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-span-5-copy1 {
  background-color: #3dcacf;
  color: #fff;
}

.image-3 {
  position: relative;
  left: auto;
  display: block;
  margin-top: 35px;
  margin-bottom: -35px;
  margin-left: 31px;
  padding-bottom: 0px;
  box-shadow: 0 -7px 20px -15px #000;
}

.paragraph {
  display: block;
  max-width: 90%;
  margin-top: 31px;
  font-family: Lato, sans-serif;
}

.solutions-block-copy1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 2px;
  background-color: #31afb4;
}

.solutions-block-copy1._2 {
  background-color: #020733;
}

.solutions-block-copy1._3 {
  background-color: #246f7e;
}

.link {
  color: #27898d;
}

.image-4 {
  margin-top: -29px;
  margin-left: 121px;
  padding-bottom: 28px;
}

.paragraph-2 {
  font-family: Lato, sans-serif;
}

.paragraph-3 {
  font-family: Lato, sans-serif;
}

.paragraph-4 {
  margin-top: 24px;
  font-family: Lato, sans-serif;
}

.paragraph-5 {
  font-family: Lato, sans-serif;
}

.columns {
  padding-left: 0px;
}

.heading-2 {
  display: none;
}

.heading-3 {
  display: none;
}

.image-6 {
  margin-top: 13px;
  margin-left: 36px;
  box-shadow: 0 0 12px -11px #000;
}

.image-6-copy1 {
  margin-top: 34px;
  margin-bottom: 10px;
  margin-left: 60px;
  box-shadow: 0 0 12px -11px #000;
}

.image-6-copy2 {
  margin-top: 34px;
  margin-left: 61px;
  box-shadow: 0 0 12px -11px #000;
}

.image-6-copy2-copy1 {
  margin-top: 34px;
  margin-left: 73px;
  box-shadow: 0 0 12px -11px #000;
}

.paragraph-6 {
  font-family: Lato, sans-serif;
}

.paragraph-7 {
  font-family: Lato, sans-serif;
}

.paragraph-8 {
  font-family: Lato, sans-serif;
}

.text-span-6 {
  background-color: #3dcacf;
  color: #fff;
}

.section-copy1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 6% 130px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-copy1.hero {
  overflow: hidden;
  height: 100vh;
  max-height: none;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: transparent;
}

.section-copy1.light-grey-bg {
  background-color: #fafbfc;
}

.section-copy1.full-width-image {
  overflow: hidden;
  height: 800px;
  min-height: 110vh;
}

.section-copy1.min-100vh {
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-copy1.whitepaper {
  overflow: hidden;
  padding-bottom: 0px;
  background-color: #fafbfc;
}

.section-copy1.footer {
  border-top: 2px solid #fafbfc;
}

.faq-contain-copy1 {
  display: none;
  width: 85%;
  padding-top: 12px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.image-7 {
  display: none;
}

.social_media_link-copy1 {
  display: none;
  padding-right: 25px;
}

.social_media_link-copy1.first {
  display: none;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
  color: transparent;
}

.hero-other-pages {
  display: block;
  padding-top: 40px;
  padding-bottom: 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/trees-compress.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/trees-compress.jpg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  background-repeat: repeat, repeat;
  background-attachment: scroll, scroll;
  -o-object-fit: fill;
  object-fit: fill;
}

.nav-link-2 {
  color: #fff;
}

.nav-link-2:hover {
  opacity: 0.72;
  font-size: 14px;
}

.navbar-2 {
  position: -webkit-sticky;
  position: sticky;
  margin-top: 0px;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.descript {
  min-width: 0px;
  margin-top: 0px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}

.container-3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-4 {
  position: static;
  background-color: transparent;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.image-8 {
  padding-top: 20px;
  padding-bottom: 16px;
  padding-left: 0px;
}

.image-8:hover {
  opacity: 0.69;
}

.heading-8 {
  min-width: 0px;
  margin-top: 0px;
  padding-top: 10px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 48px;
  text-align: center;
}

.paragraph-copy1 {
  display: block;
  max-width: 90%;
  margin-top: 31px;
  font-family: Lato, sans-serif;
}

.heading-copy11 {
  position: relative;
  max-width: 100%;
  line-height: 4.5vw;
}

.link-block-copy1 {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ea4e6e;
}

.link-block-copy1.hero {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.link-block-copy1.hero:hover {
  color: #fff;
}

.link-block-copy2 {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ea4e6e;
}

.link-block-copy2.hero {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.link-block-copy2.hero:hover {
  color: #fff;
}

.heading-11 {
  font-size: 3.5vw;
  line-height: 4.5vw;
}

.link-circle-copy3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #3dcacf;
  border-radius: 50%;
  background-color: #3dcacf;
}

.text-span-7 {
  background-color: #3dcacf;
  line-height: 6.5vw;
}

.button-icon {
  position: relative;
  z-index: 5;
  display: -ms-grid;
  display: grid;
  min-height: 50px;
  padding: 15px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 4px;
  background-color: #37b877;
  -webkit-transition: background-color 600ms ease;
  transition: background-color 600ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.button-icon:hover {
  background-color: #304351;
  color: #fff;
}

.gradient-bottom {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(75%, transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 75%);
}

.button-grid {
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.section-fullscreen {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 160px 80px 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-arrow {
  width: 18px;
  height: 18px;
}

.text-lead {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
  font-size: 130%;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.container-5 {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.title-1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.button-white-outlined {
  position: relative;
  z-index: 5;
  display: -ms-grid;
  display: grid;
  min-height: 50px;
  padding: 15px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 4px;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.3);
  -webkit-transition: box-shadow 600ms ease;
  transition: box-shadow 600ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.button-white-outlined:hover {
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
}

.image-wrapper-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.image-hero-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.image-hero-wrapper-full {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 20px;
}

.hero-text-copy1 {
  color: #fff;
  font-size: 6vw;
  line-height: 7vw;
}

.lnd_image {
  width: 100%;
}

.lnd_checks {
  margin-top: 25px;
  margin-bottom: 25px;
}

.lnd_content_block {
  width: 50%;
  min-height: 200px;
  padding-left: 15px;
}

.main_img_wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 550px;
  min-width: 500px;
  padding-right: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.lnd_paragraph {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 25px;
}

.lnd_content {
  padding: 100px 5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
}

.check-icon {
  width: 20px;
  margin-right: 12px;
}

.lnd_h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #0a1f44;
  line-height: 45px;
  font-weight: 700;
}

.lnd_check_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.lnd_paragraph_02 {
  max-width: 560px;
  margin-bottom: 0px;
  color: #4e5d78;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}

.lnd_icon {
  margin-bottom: 15px;
}

.lnd_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1140px;
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.lnd_container_reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1140px;
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.lnd_img_block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-block-copy22 {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ea4e6e;
}

.link-block-copy22.hero {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.link-block-copy22.hero:hover {
  color: #fff;
}

.link-block-copy9 {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ea4e6e;
}

.link-block-copy9.hero {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.link-block-copy9.hero:hover {
  color: #fff;
}

@media screen and (min-width: 1920px) {
  .hero-text {
    font-size: 4.5vw;
    line-height: 5.5vw;
  }

  .max-500-width {
    max-width: 800px;
    margin-top: 34px;
  }

  .navbar.fixed.inital-show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .read-more-text {
    display: none;
  }

  .white-h3 {
    font-size: 2vw;
    line-height: 3vw;
  }

  .mobile-navbar-content {
    display: none;
  }

  .partners-heading {
    max-width: 50%;
    font-size: 3vw;
    line-height: 4vw;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.fixed {
    display: none;
  }

  .max-500-width-copy1 {
    margin-top: 12px;
  }

  .paragraph-8 {
    margin-top: 35px;
  }

  .link-block-copy1 {
    display: none;
  }

  .link-block-copy2 {
    display: none;
  }

  .heading-9-copy1 {
    width: 100%;
    min-width: 130%;
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .link-block-copy22 {
    display: none;
  }

  .link-block-copy9 {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
    line-height: 64px;
  }

  h2 {
    font-size: 42px;
    line-height: 54px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.hero {
    max-height: 720px;
  }

  .section.light-grey-bg {
    padding: 70px 4%;
  }

  .section.full-width-image {
    height: 500px;
    min-height: 60vh;
  }

  .section.min-100vh {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.other-pages {
    padding-top: 95px;
  }

  .section.light-grey-bg-copy1 {
    padding: 70px 4%;
  }

  .button.nav-btn {
    margin-right: 30px;
    margin-left: 0px;
    padding-right: 26px;
    padding-left: 26px;
  }

  .button.nav-btn.mobile {
    display: none;
    margin-top: 24px;
    border-color: #020733;
    color: #020733;
    text-align: center;
  }

  ._40px-height-div {
    height: 30px;
  }

  .logo-contain {
    width: 50%;
    margin-top: 40px;
  }

  .logo-wrap {
    padding-right: 15px;
    padding-left: 15px;
  }

  ._50-percent-block.written-content {
    margin-top: 0px;
    padding-top: 18px;
  }

  .video-highlight-image {
    width: 90%;
    min-height: auto;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .hero-text {
    font-size: 9vw;
    line-height: 10vw;
  }

  .lightbox-link {
    left: auto;
    top: auto;
    right: 9%;
    bottom: 6%;
    width: 70px;
    height: 70px;
  }

  .max-500-width {
    max-width: 400px;
  }

  .absolute-bottom-bg-color {
    display: none;
    min-height: 0%;
  }

  .the-white-paper-contain {
    padding-left: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .whitepaper-visual-wrap {
    left: 43px;
    width: 70%;
    margin-top: 60px;
  }

  .top-white-paper {
    min-height: auto;
  }

  .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar.fixed {
    -webkit-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate(0px, -100%);
  }

  .nav-links-wrap {
    display: none;
  }

  .nav-link.mobile {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy1 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy2 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy3 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy4 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy1 {
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy1-copy2 {
    display: none;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy2-copy2 {
    display: none;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy3-copy1 {
    display: none;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .nav-link.mobile-copy4-copy2 {
    display: none;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    color: #020733;
    font-size: 24px;
  }

  .white-paper-cta {
    padding-left: 0px;
  }

  .link-circle {
    width: 70px;
    height: 70px;
  }

  ._55-percent-w {
    width: 75%;
  }

  .double-images-contain {
    height: 450px;
    min-height: 40vh;
    margin-top: 120px;
  }

  .solutions-contain {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .solution-block-wrap {
    width: 100%;
    height: 500px;
    min-height: auto;
    padding-top: 0px;
    padding-bottom: 24px;
  }

  .solutions-block {
    padding: 50px;
  }

  .solutions-css-icon-wrap {
    bottom: 32%;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle._5 {
    width: 80px;
    height: 80px;
  }

  ._50-percent-w {
    width: 75%;
  }

  .how-it-works-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .how-it-works-grid {
    padding-top: 40px;
  }

  .how-it-works-image-wrap {
    padding-right: 36px;
  }

  .newsletter-form {
    z-index: 3;
    max-width: none;
    margin-top: 24px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .submit-button {
    background-color: #3dcacf;
    color: #fff;
    font-size: 20px;
  }

  .footer-social-wrap {
    padding-top: 26px;
    padding-bottom: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .footer-grid {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .social_media_link {
    padding-right: 15px;
    padding-left: 15px;
  }

  .social_media_link.first {
    padding-left: 0px;
  }

  .faq-q-text {
    font-size: 18px;
  }

  .faq-contain {
    width: 100%;
    padding-top: 0px;
  }

  .faq-answer-text {
    width: 100%;
  }

  .faq-answer {
    margin-bottom: 0px;
    padding-left: 0px;
  }

  .faq-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .heading-wrap {
    margin-right: 0vw;
    margin-left: 0vw;
  }

  .style-block {
    margin-right: 0vw;
    margin-left: 0vw;
    padding: 20px;
  }

  ._404 {
    font-size: 25vw;
  }

  .mobile-navbar-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hamburger-wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
  }

  .hamburger-line {
    width: 40px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px;
    background-color: #fff;
  }

  .hamburger-line._1.dark {
    background-color: #020733;
  }

  .hamburger-line._2.dark {
    background-color: #020733;
  }

  .hamburger-line._3.dark {
    background-color: #020733;
  }

  .partners-heading {
    max-width: 45%;
    line-height: 6.5vw;
  }

  .mobile-menu {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 45%;
    padding: 72px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  .mobile-menu.fixed {
    height: 100vh;
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  .mobile-menu-logo {
    margin-bottom: 36px;
  }

  .logo-wrap-copy1 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-wrap-copy2 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-wrap-copy3 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-wrap-copy4 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-wrap-copy5 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .image-1-wrap-copy22 {
    margin-right: 22px;
  }

  .max-500-width-copy1 {
    max-width: 400px;
  }

  .image-3 {
    min-width: 120%;
    margin-top: 85px;
    margin-left: -17px;
  }

  .solutions-block-copy1 {
    padding: 50px;
  }

  .image-6 {
    margin-left: 12px;
  }

  .image-6-copy1 {
    margin-left: 9px;
  }

  .image-6-copy2 {
    margin-left: 6px;
  }

  .image-6-copy2-copy1 {
    margin-left: -6px;
  }

  .section-copy1 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-copy1.hero {
    max-height: 720px;
  }

  .section-copy1.light-grey-bg {
    padding: 70px 4%;
  }

  .section-copy1.full-width-image {
    height: 500px;
    min-height: 60vh;
  }

  .section-copy1.min-100vh {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-copy1.other-pages {
    padding-top: 95px;
  }

  .faq-contain-copy1 {
    width: 100%;
    padding-top: 0px;
  }

  .social_media_link-copy1 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .social_media_link-copy1.first {
    padding-left: 0px;
  }

  .hero-other-pages {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url('../images/trees-compress.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/trees-compress.jpg');
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
  }

  .paragraph-copy1 {
    min-width: 100%;
    margin-left: -28px;
  }

  .heading-copy11 {
    margin-left: -25px;
    line-height: 7.5vw;
  }

  .link-block-copy2 {
    margin-left: -29px;
  }

  .heading-11 {
    font-size: 4.5vw;
    line-height: 5vw;
  }

  .link-circle-copy3 {
    width: 70px;
    height: 70px;
  }

  .button-icon:hover {
    background-color: #37b877;
  }

  .section-fullscreen {
    padding-right: 40px;
    padding-left: 40px;
  }

  .button-white-outlined:hover {
    box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.3);
  }

  .image-wrapper-hero {
    border-radius: 0px;
  }

  .image-hero-wrapper-full {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-text-copy1 {
    font-size: 9vw;
    line-height: 10vw;
  }

  .lnd_image {
    width: auto;
  }

  .lnd_content_block {
    width: 100%;
  }

  .lnd_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .lnd_container_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .lnd_img_block {
    overflow: hidden;
    width: 100%;
  }
}

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

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero {
    max-height: none;
  }

  .section.light-grey-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.full-width-image {
    height: 400px;
    min-height: auto;
  }

  .section.footer {
    padding-bottom: 110px;
  }

  .section.other-pages {
    padding-top: 80px;
  }

  .section.light-grey-bg-copy1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    width: 70%;
  }

  ._40px-height-div {
    height: 20px;
  }

  .flex.start-to-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .logo-contain {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  ._50-percent-block {
    width: 100%;
  }

  .video-highlight-image {
    width: 100%;
    height: 320px;
    min-height: auto;
    background-position: 50% 0%;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .hero-text {
    font-size: 11vw;
    line-height: 10vw;
  }

  .lightbox-link {
    left: auto;
    top: auto;
    right: 5%;
    bottom: 6%;
  }

  .max-500-width {
    max-width: none;
  }

  .absolute-bottom-bg-color {
    min-height: 0%;
  }

  .whitepaper-visual-wrap {
    left: 52px;
    width: 80%;
  }

  .top-white-paper {
    height: 390px;
    min-height: auto;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link.mobile-copy1-copy2 {
    display: none;
  }

  .nav-link.mobile-copy2-copy2 {
    display: none;
  }

  .nav-link.mobile-copy3-copy1 {
    display: none;
  }

  .nav-link.mobile-copy4-copy2 {
    display: none;
  }

  .whitepaper-lines-wrap {
    padding-top: 30px;
  }

  .whitepaper-line {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .bottom-whitepapers._2 {
    -webkit-transform: rotate(-14deg) translate(-81px, 95px);
    -ms-transform: rotate(-14deg) translate(-81px, 95px);
    transform: rotate(-14deg) translate(-81px, 95px);
  }

  ._55-percent-w {
    width: 100%;
  }

  .double-images-contain {
    height: 300px;
  }

  .solution-block-wrap {
    height: auto;
    padding-right: 0px;
  }

  .solutions-block {
    padding: 30px;
  }

  .solutions-block._2 {
    padding: 30px;
  }

  .solutions-block._3 {
    padding: 29px;
  }

  .solutions-block._2-copy1 {
    padding: 30px;
  }

  .solutions-css-icon-wrap {
    bottom: 30%;
  }

  .circle {
    top: 77px;
    width: 80px;
    height: 80px;
  }

  .circle._2 {
    left: -48px;
  }

  .circle._3 {
    top: 86px;
  }

  .square._1 {
    width: 100px;
    height: 80px;
  }

  .square._2 {
    width: 140px;
    height: 90px;
  }

  .read-more-text {
    padding-top: 25px;
  }

  ._50-percent-w {
    width: 100%;
  }

  .how-it-works-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .how-it-works-image-wrap {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .newsletter-form {
    margin-top: 0px;
  }

  .submit-button {
    background-color: #3dcacf;
    color: #fff;
  }

  .copyrights-text {
    font-size: 14px;
    line-height: 24px;
  }

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

  .footer-grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 0.5fr 0.5fr 0.5fr;
    grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

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

  .faq-plus-l {
    background-color: #ea4e6e;
  }

  .faq-answer {
    padding-left: 0px;
  }

  .faq-wrap {
    max-width: 100%;
    padding-right: 0px;
  }

  .about-video-quote-wrap {
    margin-bottom: 50px;
  }

  .color-wrapper {
    width: 50%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .colors-contain {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .div-block-style-guide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: center;
  }

  .buttons-contain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .button-wrap {
    width: 100%;
  }

  ._20px-height-div {
    height: 20px;
  }

  .style-block {
    padding: 20px;
  }

  .instruction-wrapper {
    text-align: left;
  }

  .utility-page-wrap {
    padding-right: 30px;
    padding-left: 30px;
  }

  ._404 {
    font-size: 30vw;
    line-height: 25vw;
  }

  .logo {
    max-width: 90%;
  }

  .partners-heading {
    max-width: 55%;
    line-height: 9vw;
  }

  .mobile-menu {
    width: 75%;
  }

  .div-block-9 {
    margin-bottom: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .image-licensing-grid.logos {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }

  .max-500-width-copy1 {
    max-width: 55%;
  }

  .flex-copy1.start-to-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .image-3 {
    min-width: 110%;
    margin-left: -32px;
  }

  .solutions-block-copy1 {
    padding: 30px;
  }

  .solutions-block-copy1._2 {
    padding: 30px;
  }

  .solutions-block-copy1._3 {
    padding: 29px;
  }

  .image-6 {
    margin-bottom: 18px;
    margin-left: 51px;
  }

  .image-6-copy1 {
    margin-left: 81px;
  }

  .image-6-copy2 {
    margin-bottom: 20px;
    margin-left: 88px;
  }

  .image-6-copy2-copy1 {
    margin-bottom: 18px;
    margin-left: 108px;
  }

  .section-copy1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-copy1.hero {
    max-height: none;
  }

  .section-copy1.light-grey-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-copy1.full-width-image {
    height: 400px;
    min-height: auto;
  }

  .section-copy1.footer {
    padding-bottom: 110px;
  }

  .section-copy1.other-pages {
    padding-top: 80px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-image-mask {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .hero-other-pages {
    padding: 40px 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/trees-compress.jpg');
    background-image: linear-gradient(180deg, transparent, transparent), url('../images/trees-compress.jpg');
  }

  .icon {
    background-color: #fff;
  }

  .heading-copy11 {
    line-height: 9vw;
  }

  .heading-11 {
    font-size: 6.5vw;
    line-height: 7vw;
  }

  .text-span-7 {
    line-height: 15vw;
  }

  .section-fullscreen {
    height: auto;
    padding: 300px 20px 40px;
  }

  .text-lead {
    width: 100%;
    margin-bottom: 20px;
    font-size: 120%;
  }

  .title-1 {
    max-width: none;
    font-size: 30px;
  }

  .image-wrapper-hero {
    background-color: #000;
  }

  .image-hero-cover {
    opacity: 0.5;
  }

  .hero-text-copy1 {
    font-size: 11vw;
    line-height: 10vw;
  }

  .lnd_img_block {
    padding: 10px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 48px;
    line-height: 52px;
    text-align: center;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }

  h4 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }

  h5 {
    text-align: center;
  }

  h6 {
    text-align: center;
  }

  p {
    text-align: center;
  }

  ul {
    padding-left: 20px;
    text-align: center;
  }

  ol {
    padding-left: 20px;
  }

  blockquote {
    text-align: center;
  }

  .section.hero {
    background-position: 50% 100%;
  }

  .section.light-grey-bg {
    margin-bottom: -2px;
    padding-top: 0px;
    padding-bottom: 252px;
  }

  .section.min-100vh {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.light-grey-bg-copy1 {
    margin-bottom: -2px;
    padding-top: 0px;
    padding-bottom: 39px;
  }

  .container.relative {
    margin-left: -23px;
  }

  .hero-content {
    width: 100%;
    max-width: 300px;
  }

  .button.nav-btn {
    margin-right: 18px;
    margin-left: 0px;
    padding: 9px 11px 9px 15px;
    font-size: 16px;
  }

  .button.nav-btn.mobile {
    font-size: 20px;
  }

  .button.nav-btn.dark {
    padding-right: 11px;
    padding-left: 15px;
  }

  ._40px-height-div {
    height: 20px;
  }

  .flex.start-to-end {
    margin-top: 9px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo-contain {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .logo-wrap {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  ._50-percent-block {
    width: 100%;
  }

  .video-highlight-image {
    width: 100%;
    background-position: 100% 50%;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .hero-text {
    margin-top: 88px;
    font-size: 18vw;
    line-height: 18vw;
    text-align: left;
  }

  .lightbox-link {
    left: auto;
    top: auto;
    right: 6%;
    bottom: 8%;
    margin-top: 0px;
  }

  .max-500-width {
    text-align: left;
  }

  .absolute-bottom-bg-color {
    min-height: 0%;
  }

  .whitepaper-visual-wrap {
    left: 35px;
    width: 75%;
    margin-top: 40px;
  }

  .top-white-paper {
    height: 310px;
    padding: 24px 30px 40px;
  }

  .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-link.mobile {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy1 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy2 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy3 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy4 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy1 {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy1-copy2 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy2-copy2 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy3-copy1 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .nav-link.mobile-copy4-copy2 {
    display: none;
    margin-bottom: 26px;
    font-size: 20px;
  }

  .whitepaper-lines-wrap {
    padding-top: 24px;
  }

  .whitepaper-line {
    margin-top: 7px;
    margin-bottom: 7px;
  }

  .bottom-whitepapers {
    -webkit-transform: rotate(-8deg) translate(-19px, 52px);
    -ms-transform: rotate(-8deg) translate(-19px, 52px);
    transform: rotate(-8deg) translate(-19px, 52px);
  }

  .bottom-whitepapers._2 {
    -webkit-transform: rotate(-14deg) translate(-43px, 95px);
    -ms-transform: rotate(-14deg) translate(-43px, 95px);
    transform: rotate(-14deg) translate(-43px, 95px);
  }

  .link-block {
    margin-left: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .link-block.hero {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .link-circle {
    margin-top: 13px;
    margin-left: 0px;
  }

  .double-images-contain {
    height: 250px;
    min-height: auto;
    margin-top: 80px;
  }

  .image-1-wrap {
    top: -31px;
  }

  .image-2 {
    background-position: 35% 50%;
  }

  .solution-block-wrap {
    height: auto;
    min-height: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 24px;
  }

  .solutions-block {
    padding: 24px;
  }

  .soultions-block-text {
    text-align: left;
  }

  .solutions-css-icon-wrap {
    bottom: 35%;
  }

  .circle._3 {
    top: 75px;
  }

  .circle._5 {
    top: -30px;
  }

  .square._2 {
    height: 80px;
  }

  .read-more-text {
    padding-top: 30px;
    text-align: center;
  }

  .how-it-works-image-wrap {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .newsletter-form {
    margin-top: 0px;
  }

  .submit-button {
    background-color: #3dcacf;
  }

  .footer-social-wrap {
    padding-top: 6px;
    padding-bottom: 14px;
  }

  .copyrights-link {
    display: inline-block;
    text-align: left;
  }

  .footer-grid {
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .footer-paragrph {
    text-align: left;
  }

  .footer-link {
    font-size: 18px;
    text-align: left;
  }

  .footer-link.w--current {
    font-size: 18px;
  }

  .newsletter-form-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-home-link.w--current {
    margin-bottom: 10px;
  }

  .text-field {
    border-right-style: none;
  }

  .text-field:hover {
    border-right-style: none;
  }

  .faq-plus-l {
    background-color: #3dcacf;
  }

  .faq-answer-text {
    margin-bottom: 0px;
    font-weight: 400;
    text-align: left;
  }

  .faq-answer {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0px;
  }

  .faq-question {
    margin-top: 0px;
    padding-bottom: 5px;
  }

  .faq-wrap {
    padding-top: 0px;
  }

  .about-video-quote-wrap {
    margin-bottom: 24px;
  }

  .color-wrapper {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .colors-contain {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .div-block-style-guide {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .buttons-contain {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .button-wrap {
    width: 100%;
  }

  .button-wrap.dark {
    margin-top: 16px;
  }

  .style-block {
    padding: 20px;
  }

  .instruction-wrapper {
    text-align: center;
  }

  .utility-page-content {
    width: 90%;
  }

  ._404 {
    font-size: 40vw;
    line-height: 35vw;
  }

  .logo {
    max-width: 75%;
  }

  .white-h3 {
    text-align: left;
  }

  .newsletter-heading {
    text-align: left;
  }

  .hamburger-line {
    width: 25px;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .partners-heading {
    max-width: 100%;
    margin-top: 5px;
    margin-left: 0px;
    padding-left: 0px;
    font-size: 45px;
    line-height: 16vw;
    text-align: left;
  }

  .mobile-menu {
    width: 85%;
    padding: 70px 46px 46px;
  }

  .div-block-9 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .illustrations-grid {
    grid-column-gap: 30px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }

  .image-licensing-grid.logos {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .hero-text-copy111 {
    text-align: left;
  }

  .hero-text-copy555 {
    text-align: left;
  }

  .hero-bg-image-copy111 {
    margin-left: -577px;
  }

  .text-block-4 {
    line-height: 25px;
  }

  .logo-wrap-copy1 {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .logo-wrap-copy2 {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .logo-wrap-copy3 {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .logo-wrap-copy4 {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .logo-wrap-copy5 {
    width: 50%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .image-1-copy22 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-1-wrap-copy22 {
    top: -31px;
    width: 80%;
    height: 25%;
    margin-top: 464px;
    margin-right: 43px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .max-500-width-copy1 {
    max-width: 100%;
  }

  .flex-copy1.start-to-end {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .heading {
    margin-left: -74px;
  }

  .text-span-5-copy1 {
    line-height: 18.5vw;
  }

  .image-3 {
    min-height: 120%;
    min-width: 110%;
    margin-top: 44px;
    margin-left: -15px;
  }

  .paragraph {
    max-width: 100%;
  }

  .solutions-block-copy1 {
    padding: 24px;
  }

  .image-4 {
    max-width: 55%;
    margin-top: -17px;
    margin-left: 94px;
  }

  .paragraph-2 {
    text-align: left;
  }

  .paragraph-3 {
    text-align: left;
  }

  .paragraph-4 {
    text-align: left;
  }

  .paragraph-5 {
    text-align: left;
  }

  .image-5 {
    max-width: 40%;
  }

  .image-6 {
    margin-left: 1px;
  }

  .image-6-copy1 {
    margin-left: -3px;
  }

  .image-6-copy2 {
    margin-bottom: 10px;
    margin-left: 4px;
  }

  .image-6-copy2-copy1 {
    margin-bottom: 14px;
    margin-left: -2px;
  }

  .paragraph-6 {
    text-align: left;
  }

  .paragraph-7 {
    text-align: left;
  }

  .paragraph-8 {
    text-align: left;
  }

  .section-copy1.hero {
    background-position: 50% 100%;
  }

  .section-copy1.light-grey-bg {
    margin-bottom: -2px;
    padding-top: 0px;
    padding-bottom: 278px;
  }

  .section-copy1.min-100vh {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flex-container {
    max-width: 100%;
  }

  .hero-other-pages {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url('../images/trees-compress.jpg');
    background-image: linear-gradient(180deg, transparent, transparent), url('../images/trees-compress.jpg');
  }

  .descript {
    min-width: 0px;
    margin-top: 0px;
    font-size: 20px;
  }

  .container-4 {
    max-width: 100%;
  }

  .icon {
    background-color: silver;
  }

  .heading-8 {
    min-width: 0px;
    padding-top: 20px;
    font-size: 30px;
  }

  .paragraph-copy1 {
    max-width: 100%;
    min-width: 100%;
    margin-left: -22px;
    text-align: left;
  }

  .heading-copy11 {
    min-width: 100%;
    margin-top: -8px;
    margin-bottom: 20px;
    margin-left: -20px;
    font-size: 45px;
    line-height: 14.5vw;
    text-align: left;
  }

  .link-block-copy1 {
    margin-left: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .link-block-copy1.hero {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .heading-9 {
    text-align: left;
  }

  .link-block-copy2 {
    margin-top: 7px;
    margin-left: -16px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .link-block-copy2.hero {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .heading-10 {
    font-size: 30px;
    text-align: left;
  }

  .heading-11 {
    font-size: 45px;
    line-height: 55px;
    text-align: left;
  }

  .heading-12 {
    text-align: left;
  }

  .link-circle-copy3 {
    margin-top: 13px;
    margin-left: 0px;
  }

  .heading-13 {
    text-align: left;
  }

  .heading-14 {
    text-align: left;
  }

  .heading-15 {
    text-align: left;
  }

  .heading-16 {
    text-align: left;
  }

  .text-span-7 {
    line-height: 25vw;
  }

  .button-grid {
    grid-auto-flow: row;
  }

  .hero-text-copy1 {
    margin-top: 88px;
    font-size: 18vw;
    line-height: 18vw;
    text-align: left;
  }

  .lnd_img_block {
    margin-bottom: 35px;
    padding: 0px;
  }

  .heading-9-copy1 {
    text-align: left;
  }

  .link-block-copy22 {
    margin-left: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .link-block-copy22.hero {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .link-block-copy9 {
    margin-left: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .link-block-copy9.hero {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

#w-node-_4b580795-6085-3ccf-bde0-aa0207a858bc-6fcd9dec {
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_43e8f8cd-337a-8f18-b8b3-2f940ef8c998-6fcd9dec {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-_05b2b54b-88d9-cfe1-62d0-8234e9847a81-6fcd9dec {
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_7e124dd5-6600-7a58-8509-ed8ca9163667-6fcd9dec {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-_0b93e5a2-6dd1-9097-fb01-0ba12b6e0383-6fcd9dec {
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_3563ba1f-b420-edbd-290f-191230abd510-6fcd9dec {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-_4d0042ab-3cff-4d85-fe3e-6b0c70c6eb80-6fcd9dec {
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_6d6197d1-e21c-03d2-b6cd-86dbdba63d79-6fcd9dec {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: end;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row-align: start;
    align-self: start;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbdc-afcdcbd9 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-column-span: 2;
    grid-column-end: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbdc-afcdcbd9 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}