:root {
  --dark-green: #296734;
  --color: #181618;
  --white: #fafafa;
  --black: #343434;
  --gainsboro: #dcdbdb;
  --dark-slate-grey: #536857;
  --dark-sea-green: #8ac294;
}

body {
  background-color: var(--dark-green);
  color: #333;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.wrapper {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-container {
  border: 1px #000;
  justify-content: space-between;
  align-items: center;
  width: 64%;
  max-width: 85%;
  height: 7.1em;
  margin-left: 0;
  margin-right: 0;
  padding-top: 9px;
  padding-left: 20px;
  padding-right: 29px;
  display: flex;
}

.body {
  background-color: var(--color);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.gray-backgroubd {
  background-color: #343434;
  width: 100%;
  height: 6em;
}

.hero-section {
  background-image: url('../images/hero-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 80vh;
  display: flex;
}

.title-section {
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 19vw;
  margin-top: 0;
  line-height: 19px;
  display: flex;
}

.title-container {
  justify-content: center;
  align-items: flex-start;
  min-width: 80%;
  min-height: 58%;
  margin-top: 42px;
  display: flex;
}

.heading {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  font-size: 7em;
  font-weight: 400;
  line-height: 131px;
  display: flex;
}

.heading.h1 {
  margin-top: 0;
  line-height: 1.1em;
}

.card-section {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 102px;
  display: flex;
}

.card-wraper {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  perspective: 1000px;
  margin-left: 14px;
  margin-right: 14px;
}

.card {
  width: 17.9em;
  height: 26.1em;
  display: flex;
  position: relative;
  box-shadow: 3px 3px 6px #202020;
}

.card-front {
  background-color: var(--white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0);
}

.card-image {
  display: block;
}

.card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  background-color: #000;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0)rotateX(0)rotateY(180deg)rotateZ(0);
}

.h3-card-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 600;
}

.paragraph {
  color: var(--white);
  text-align: left;
  margin-top: -3px;
  padding-left: 18px;
  padding-right: 0;
  font-weight: 300;
  line-height: 25px;
}

.section-footer {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 229px;
  display: flex;
}

.card-button {
  background-color: var(--dark-green);
  text-align: center;
  border-radius: .2em;
  width: 11.2em;
  margin-top: 20px;
  padding: 13px 40px;
  font-size: 20px;
  font-weight: 300;
}

.footer-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  width: 61%;
  margin-top: -1px;
  display: flex;
}

.footer-block.phone-number {
  flex-direction: column;
  justify-content: space-between;
  height: 148px;
  margin-top: -21px;
  margin-left: 0;
  padding-right: 28px;
  display: flex;
}

.heading-2 {
  color: var(--dark-green);
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 300;
  line-height: 41px;
}

.text-block-2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.footer-line {
  border-style: solid dotted solid solid;
  border-width: 1px 2px 1px 1px;
  border-color: transparent var(--gainsboro) transparent transparent;
  background-color: rgba(0, 0, 0, 0);
  width: .1em;
  height: 124px;
  margin-top: 14px;
  padding-right: 0;
}

.address-info {
  color: var(--white);
  text-align: right;
  width: 9em;
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
}

.address-h3 {
  color: var(--dark-green);
  text-align: right;
  width: 163px;
  font-size: 36px;
  font-weight: 300;
  line-height: 44px;
}

.phone-number-title {
  color: var(--dark-green);
  font-size: 36px;
  font-weight: 300;
  line-height: 44px;
}

._4cast-navbar-wrapper {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image {
  height: 26px;
  margin-left: 0;
}

.top-nav-link {
  color: var(--gainsboro);
  text-align: center;
  margin-left: 1em;
  margin-right: 0;
  padding: 10px;
  font-size: 1.9em;
  line-height: 20px;
  transition: all .5s;
}

.top-nav-link:hover {
  color: #8eeca0;
}

.top-nav-link.w--current {
  color: #8eeca0;
  letter-spacing: .5px;
}

.top-nav-link.w--current:hover {
  color: #8eeca0;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  width: 14.5em;
  padding-right: 10px;
  line-height: 29px;
  display: flex;
}

.hero-container {
  object-fit: cover;
  background-image: url('../images/hero-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.market-p {
  color: rgba(52, 52, 52, .47);
  letter-spacing: .3px;
  justify-content: center;
  align-items: center;
  max-width: 95%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  padding-top: 0;
  padding-left: 5px;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4em;
  display: flex;
}

.about-section {
  background-color: var(--gainsboro);
  color: var(--dark-slate-grey);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: flex;
}

.about-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 103%;
  height: auto;
  margin-top: 4px;
  margin-bottom: 0;
  display: flex;
}

.green-title-section {
  background-color: var(--dark-sea-green);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 10em;
  display: flex;
}

.green-title-container {
  justify-content: center;
  align-items: center;
  min-width: 85%;
  min-height: 8em;
  display: flex;
}

.green-title-h1 {
  color: var(--dark-slate-grey);
  margin-top: 0;
  font-size: 61px;
  font-weight: 400;
  line-height: 80px;
}

.market-content {
  clear: none;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 38%;
  max-width: 38%;
  height: auto;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 10px;
  transition: all .5s;
  display: flex;
}

.market-content:hover {
  border-radius: 10px;
  box-shadow: 1px 1px 15px -3px rgba(29, 202, 60, .56);
}

.market-line {
  background-color: var(--dark-slate-grey);
  justify-content: center;
  align-items: center;
  width: .3em;
  height: 3em;
  margin-top: 8px;
  display: flex;
}

.h1-header {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 14px;
  padding-left: 0;
  font-size: 35px;
  font-weight: 300;
  display: flex;
}

.link-line {
  border-right: 2px dotted var(--white);
  width: 2px;
  height: 3em;
  margin-left: 16px;
}

.market-left {
  justify-content: space-between;
  max-width: 85%;
  margin-bottom: 24px;
  display: flex;
}

.market-right {
  justify-content: space-between;
  max-width: 85%;
  display: flex;
}

.market-content-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 85%;
  height: auto;
  margin-top: 11px;
  margin-left: 0;
  padding-left: 20px;
  display: flex;
}

.market {
  justify-content: space-between;
  max-width: 85%;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.marlet-p-line {
  flex-direction: row;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.header--portfolio--navigation {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 67px;
  padding: 8px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.bubble-container {
  z-index: 999;
  background-color: #181618;
  border-radius: 64px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 16px 8px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.nav-links {
  grid-column-gap: 16px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  display: flex;
}

.nav-link {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  height: 19px;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: none;
  display: flex;
}

.nav-label {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
  transition: all .7s;
}

.nav-label:hover {
  color: #00a795;
}

.brand {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 14px;
  left: 564px;
}

.vectors-wrapper {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  display: flex;
}

.brandname {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.nav-link-2 {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  height: 19px;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: none;
  display: flex;
}

.brand-2 {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 13px;
  left: 564px;
}

.hero {
  background-color: #181618;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.copy-container {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 320px;
  padding: 120px 48px;
  text-decoration: none;
  display: flex;
}

.copy-component {
  grid-row-gap: 40px;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 304px;
  max-width: 720px;
  text-decoration: none;
  display: flex;
}

.heading-text {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.heading-3 {
  color: #f7fffb;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 108%;
  text-decoration: none;
}

.subheading {
  color: #d0dbd6;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.cta-button {
  grid-column-gap: 4px;
  background-color: #00a795;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  height: 57px;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
}

.text-container {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: none;
  display: flex;
}

.cta {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.image-container {
  grid-column-gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 320px;
  height: 733px;
  display: flex;
}

.image---lummi {
  object-fit: cover;
}

.hero-2 {
  background-color: #181618;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  text-decoration: none;
  display: flex;
  position: static;
}

.ourpurpose {
  grid-column-gap: 48px;
  background-color: var(--color);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 779px;
  padding: 144px 16px;
  display: flex;
}

.text-content {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 960px;
  text-decoration: none;
  display: flex;
}

.benefit-heading {
  color: #08bca9;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.heading-4 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.description {
  color: #d0dbd6;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.campaigns {
  grid-row-gap: 40px;
  background-color: #181618;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 120px 24px;
  text-decoration: none;
  display: flex;
  position: static;
}

.content {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  text-decoration: none;
  display: flex;
}

.heading-container {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  text-decoration: none;
  display: flex;
}

.heading-5 {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.subheading-2 {
  color: #d0dbd6;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.cards-grid {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.portfolio-card {
  grid-column-gap: 48px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 320px;
  text-decoration: none;
  display: flex;
}

.image-container-2 {
  border-radius: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 320px;
  height: 364px;
  display: flex;
}

.image---lummi-2 {
  object-fit: cover;
}

.content-2 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 320px;
  padding-top: 32px;
  padding-bottom: 32px;
  text-decoration: none;
  display: flex;
}

.content-container {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.content-3 {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.heading-6 {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

.cta-2 {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.button {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.cta-3 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.vectors-wrapper-2 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  text-decoration: none;
  display: flex;
}

.property--logos {
  grid-row-gap: 24px;
  background-color: #181618;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 80px 64px;
  text-decoration: none;
  display: flex;
}

.content-4 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  text-decoration: none;
  display: flex;
}

.heading-7 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.logo-grid {
  grid-column-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-3 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-4 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-5 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-6 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 129px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-7 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-8 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-9 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 163px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-10 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 121px;
  height: 48px;
  text-decoration: none;
  display: flex;
}

.container {
  display: flex;
}

.floating-box--cta {
  grid-column-gap: 48px;
  background-color: #181618;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 96px 16px;
  text-decoration: none;
  display: flex;
}

.container-2 {
  grid-column-gap: 32px;
  background-color: #2b2629;
  border-radius: 24px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  padding: 64px 32px;
  text-decoration: none;
  display: flex;
}

.copy {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  text-decoration: none;
  display: flex;
}

.heading-8 {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.description-2 {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.button-2 {
  grid-column-gap: 4px;
  background-color: #00a795;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  text-decoration: none;
  display: flex;
}

.text-container-2 {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 10.8rem;
  height: 2.4rem;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: none;
  display: flex;
}

.cta-4 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.makeconnection--form {
  grid-column-gap: 48px;
  background-color: #181618;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 96px 16px 95px;
  text-decoration: none;
  display: flex;
}

.container-3 {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  text-decoration: none;
  display: flex;
}

.text-content-2 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  text-decoration: none;
  display: flex;
}

.copy-2 {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.heading-9 {
  color: #f7fffb;
  text-align: center;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Domine, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 108%;
  text-decoration: none;
}

.description-3 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.input-container {
  grid-column-gap: 16px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 182%;
  max-width: 520px;
  text-decoration: none;
  display: flex;
}

.input {
  grid-row-gap: 4px;
  border-radius: 4px;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 230px;
  max-width: 420px;
  text-decoration: none;
  display: flex;
}

.input-form {
  grid-column-gap: 4px;
  background-color: #181618;
  border: 1px solid #41393e;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 16px;
  text-decoration: none;
  display: flex;
}

.text-container-3 {
  grid-column-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 171px;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: none;
  display: flex;
}

.placeholder-text {
  color: #d0dbd6;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.button-combo {
  grid-column-gap: 16px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.button-3 {
  grid-column-gap: 4px;
  background-color: #00a795;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-width: 11.375rem;
  min-height: 3.5rem;
  max-height: 3.375rem;
  padding: 16px 20px;
  text-decoration: none;
  display: flex;
}

.text-container-4 {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: none;
  display: flex;
}

.cta-5 {
  color: #f7fffb;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.type-bubblefooter--mega--menu {
  grid-row-gap: 8px;
  background-color: var(--white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 8px;
  text-decoration: none;
  display: flex;
}

.bubble-container-2 {
  grid-row-gap: 32px;
  background-color: #181618;
  border-radius: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 32px 40px;
  text-decoration: none;
  display: flex;
}

.content-5 {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.brand-3 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 248px;
  text-decoration: none;
  display: flex;
}

.logo {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-11 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  display: flex;
}

.brandname-2 {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
  transition: all .7s;
}

.brandname-2:hover {
  color: #00a795;
}

.slogan {
  color: #f7fffb;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.links {
  grid-column-gap: 40px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-width: 280px;
  text-decoration: none;
  display: flex;
}

.list {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 108px;
  text-decoration: none;
  display: flex;
}

.vectors-wrapper-12 {
  background-color: var(--color);
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 100px;
  text-decoration: none;
  display: flex;
}

.legals {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.copyright {
  color: #d0dbd6;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.list-2 {
  grid-column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 612px;
  text-decoration: none;
  display: flex;
}

.divider--div {
  width: 1184px;
  height: 100px;
}

@media screen and (max-width: 991px) {
  .nav-container {
    width: 88%;
    padding-top: 0;
  }

  .body {
    height: auto;
  }

  .gray-backgroubd {
    height: 3.9em;
  }

  .hero-section {
    width: 0%;
    min-width: 100%;
    height: 29vh;
  }

  .heading.h1 {
    font-size: 3.7em;
    line-height: 57px;
  }

  .card-section {
    flex-flow: wrap;
    flex: 0 auto;
    align-content: center;
    align-items: center;
    width: 85%;
    margin-top: 0;
    position: relative;
  }

  .card-wraper {
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 44%;
    height: auto;
    display: flex;
  }

  .card {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 17.9em;
    height: 21.8em;
    margin-top: 28px;
    display: flex;
  }

  .card-front {
    flex-flow: column wrap;
    display: flex;
    position: absolute;
  }

  .card-back {
    transform: translate(0)rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .section-footer {
    height: auto;
    padding-bottom: 20px;
  }

  .footer-grid {
    width: 661px;
    max-width: 100%;
  }

  .heading-2 {
    font-size: 26px;
  }

  .text-block-2 {
    font-size: 16px;
  }

  .address-h3 {
    font-size: 26px;
  }

  .phone-number-title {
    text-align: center;
    justify-content: center;
    font-size: 25px;
    display: flex;
  }

  .top-nav-link {
    letter-spacing: 1px;
    margin-top: 9px;
    margin-left: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    font-size: 28px;
    display: flex;
  }

  .menu-bar {
    background-color: var(--white);
    width: 20px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-bar.bar-1 {
    margin-bottom: 4px;
  }

  .nav-menu {
    background-color: var(--black);
    width: 100%;
    height: 100vh;
    padding: 20px;
  }

  .menu-button {
    background-color: rgba(0, 0, 0, 0);
  }

  .menu-button.w--open {
    background-color: var(--dark-green);
  }

  .market-p {
    justify-content: flex-start;
    align-items: flex-start;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 10px;
    font-size: 18px;
    line-height: 26px;
  }

  .about-section {
    text-align: left;
    flex-direction: row;
    justify-content: center;
    min-width: 100%;
    height: auto;
    padding-top: 40px;
  }

  .about-info {
    width: auto;
    height: auto;
    margin-top: 0;
  }

  .market-content {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    max-width: 85%;
    height: auto;
    padding: 0 0 0 5px;
    line-height: 15px;
  }

  .market-line {
    margin-top: 5px;
  }

  .h1-header {
    height: auto;
    margin-top: 0;
    margin-bottom: 7px;
    margin-left: 20px;
    padding-left: 0;
    font-size: 30px;
  }

  .link-line {
    margin-top: 18px;
    margin-left: 45px;
  }

  .market-left {
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    height: 337px;
  }

  .market-right {
    max-width: 100%;
  }

  .market-content-container {
    flex-direction: column;
    width: 100%;
    max-width: 91%;
    margin-left: -6px;
    margin-right: 0;
  }

  .market {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-right: 3px;
    padding-top: 0;
  }

  .marlet-p-line {
    align-self: auto;
    align-items: flex-start;
    height: auto;
    margin-top: 1px;
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .title-section {
    align-items: center;
  }

  .heading.h1 {
    align-items: center;
    font-size: 2.9em;
  }

  .card-wraper {
    height: 341px;
    margin-top: 20px;
  }

  .card {
    justify-content: center;
    align-items: center;
    height: 21.6em;
    display: flex;
  }

  .card-front {
    flex-wrap: nowrap;
    display: flex;
  }

  .card-back {
    display: flex;
  }

  .h3-card-heading {
    font-size: 24px;
  }

  .card-button {
    width: 10em;
  }

  .footer-grid {
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-top: 31px;
  }

  .footer-block.phone-number {
    flex-flow: column;
    align-items: center;
    width: auto;
    margin-left: 0;
    padding-right: 0;
    display: flex;
  }

  .footer-block.contact {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .heading-2 {
    text-align: center;
    font-size: 43px;
  }

  .text-block-2 {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }

  .footer-line {
    margin-top: -3px;
  }

  .address-info {
    text-align: center;
  }

  .address-h3 {
    text-align: center;
    margin-top: -3px;
    font-size: 43px;
  }

  .phone-number-title {
    font-size: 43px;
  }

  .market-p {
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: -9px;
    margin-left: 10px;
    padding-left: 0;
    padding-right: 10px;
    font-size: 20px;
    line-height: 27px;
    display: flex;
  }

  .about-section {
    flex-direction: column;
    margin-left: -14px;
  }

  .about-info {
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    height: 166px;
    margin-top: 0;
    margin-bottom: 32px;
    padding-top: 12px;
    position: static;
  }

  .green-title-section {
    min-height: 7em;
  }

  .green-title-container {
    min-height: 4.8em;
  }

  .green-title-h1 {
    font-size: 40px;
  }

  .market-content {
    justify-content: center;
    align-items: center;
    width: 91%;
  }

  .market-line {
    margin-top: 0;
  }

  .h1-header {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding-top: 10px;
  }

  .market-content-container {
    flex-direction: column;
    margin-top: -12px;
  }

  .market {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .marlet-p-line {
    margin-top: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .nav-container {
    padding-left: 23px;
  }

  .gray-backgroubd {
    height: 3.8em;
  }

  .hero-section {
    height: 15vh;
  }

  .title-container {
    margin-top: 13px;
  }

  .heading.h1 {
    margin-top: 40px;
    font-size: 24px;
    line-height: 28px;
  }

  .card-section {
    height: auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .card-wraper {
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .card {
    height: 300px;
    box-shadow: 3px 3px 6px #202020;
  }

  .card-front {
    transform: translate(0);
  }

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

  .card-back {
    width: auto;
    height: auto;
    transform: translate(0)rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .h3-card-heading {
    margin-top: 4px;
  }

  .paragraph {
    width: 100%;
  }

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

  .footer-block.phone-number {
    height: auto;
    margin-top: 0;
    padding-right: 0;
  }

  .text-block-2 {
    margin-top: 3px;
    font-size: 20px;
  }

  .phone-number-title {
    margin-bottom: 0;
  }

  .image {
    height: 32px;
  }

  .market-p {
    text-align: left;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5px;
    padding-left: 2px;
    padding-right: 5px;
    font-size: 17px;
    line-height: 21px;
  }

  .about-section {
    align-items: center;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
  }

  .about-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 94%;
    height: 141px;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .green-title-section {
    min-height: 6.2em;
  }

  .green-title-container {
    min-height: 3.6em;
  }

  .green-title-h1 {
    text-align: center;
    width: 236px;
    font-size: 24px;
    line-height: 24px;
    display: block;
  }

  .market-content {
    width: 100%;
    max-width: 91%;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 11px;
  }

  .market-line {
    justify-content: center;
    align-items: center;
    width: 1.4em;
    height: 2.3em;
    margin-top: 8px;
  }

  .h1-header {
    flex-direction: column;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    font-size: 25px;
    line-height: 25px;
  }

  .market-content-container {
    max-width: 100%;
    height: auto;
    margin-top: 0;
    padding-left: 10px;
  }

  .market {
    justify-content: center;
    margin-top: 14px;
    margin-right: 0;
    padding-right: 10px;
  }

  .marlet-p-line {
    padding-left: 0;
  }
}

#w-node-_51d59bfc-83bf-1008-4f6b-933b410d9361-410d9354 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


