:root {
  --black: black;
  --dark: #1d1d1d;
  --white: white;
  --light: #ffffffd9;
  --primary: #227f81;
  --secondary: #63d4d5;
  --color: white;
  --overlay: #0a0a0a5c;
  --body-color: #e6f1f2;
  --grey: #888b91;
}

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

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

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

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

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

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

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

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

body {
  background-color: var(--black);
  color: var(--dark);
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 7.3vw;
  font-weight: 500;
  line-height: .9375;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75vw;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.67vw;
  font-weight: 500;
  line-height: 1.55;
}

h4, h5 {
  letter-spacing: -.04em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.66;
}

p {
  margin-bottom: 10px;
}

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

.is--small {
  font-size: 1.2rem;
  line-height: 1.95;
}

.is--small.service_card-description {
  color: var(--light);
  margin-bottom: 2vw;
}

.is--small.service_card-replace-description {
  margin-bottom: 2vw;
}

.is--small.footer_menu-item {
  color: var(--light);
  margin-bottom: 0;
}

.is--small.footer_menu-item.is--link {
  cursor: pointer;
  transition: all .2s;
}

.is--small.footer_menu-item.is--link:hover {
  color: var(--primary);
}

.is--tag {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1;
}

.is--tag.nav_menu-link {
  color: var(--white);
  margin-right: 28px;
  font-weight: 400;
  transition: all .2s;
}

.is--tag.nav_menu-link:hover {
  color: var(--primary);
}

.is--tag.hero_tag {
  color: var(--primary);
  margin-bottom: 24px;
}

.is--tag.section_info-number.is--green-text {
  color: var(--primary);
}

.is--tag.section_info-title {
  font-weight: 700;
}

.is--tag.service_card-number {
  color: var(--white);
}

.is--tag.form_label {
  margin-bottom: 12px;
}

.nav {
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.nav_brand {
  cursor: pointer;
}

.nav_brand-logo {
  height: 50px;
}

.nav_menu-wrapper {
  z-index: 1;
}

.nav_menu {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 200px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.is--light-text {
  color: var(--light);
}

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

.is--white-text.benefits_title {
  margin-top: 0;
}

.button {
  z-index: 1;
  background-color: var(--secondary);
  color: var(--white);
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2rem;
  font-weight: 400;
  line-height: 1;
}

.button.is--secondary {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--primary);
  cursor: pointer;
  margin-top: 36px;
  display: flex;
}

.button.is--secondary.is--36tm {
  cursor: pointer;
}

.button.is--secondary.is--36tm.is--legal {
  padding: 1em 1em .9em 1.5em;
}

.button.is--secondary.is--white {
  border-color: var(--white);
  color: var(--white);
}

.button.is--secondary.no--tm {
  border-width: 2px;
  margin-top: 0;
  font-size: 14px;
}

.button.is--cta {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 2px solid var(--color);
  color: var(--white);
  background-color: #0000;
  margin-top: 36px;
  display: flex;
  position: relative;
}

.button_text {
  margin-bottom: 0;
}

.button_icon {
  width: 16px;
}

.button_icon.is--close {
  width: 12px;
}

.hero_section {
  background-image: radial-gradient(circle farthest-side at 0% 0%, var(--overlay), var(--black)), url('../images/hero-background.jpg');
  transform-origin: 50% 100%;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding: 9vw 5%;
  display: flex;
  position: relative;
}

.hero_subtext {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
}

.hero_subtext.is--top {
  width: 500px;
  margin-top: 24px;
}

.hero_button {
  background-color: var(--white);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.75vw;
  height: 3.75vw;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: auto 5% 3rem auto;
}

.hero_button.is--footer {
  border: 2px solid var(--white);
  background-color: #0000;
  margin-left: 6px;
  position: static;
}

.hero_button-icon {
  width: 10px;
  transform: rotate(180deg);
}

.hero_button-icon.is--no-rotate {
  transform: none;
}

.section {
  transform-origin: 50% 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.section_wrapper {
  background-color: var(--body-color);
  border-radius: 12px;
  margin-top: 16px;
  padding-top: 10vw;
  padding-left: 5%;
  padding-right: 5%;
}

.section_wrapper.is--dark {
  background-color: var(--dark);
}

.section_wrapper.is--cta {
  background-color: var(--primary);
  background-image: url('../images/noise.png'), linear-gradient(310deg, #0a4d4e, var(--secondary));
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section_wrapper.is--primary {
  background-image: radial-gradient(circle farthest-corner at 100% 0%, var(--primary), #001d36), url('../images/noise.png');
  color: var(--white);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.section_wrapper.is--footer {
  background-color: #0000;
}

.section_content {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 10vw;
  display: flex;
  position: relative;
}

.section_content.is--centered {
  align-items: center;
}

.section_content.is--vertical {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.section_content.is--form-submit {
  padding-bottom: 0;
}

.section_content.is--bp {
  padding-bottom: 3vw;
}

.section_content.is--second {
  padding-bottom: 15vw;
}

.section_info {
  align-items: center;
  display: flex;
}

.section_info-circle {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  padding-left: 22px;
  padding-right: 22px;
  font-family: Suisseintl, sans-serif;
  font-weight: 700;
  display: flex;
}

.section_info-circle.is--black {
  background-color: var(--primary);
}

.section_text {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 45%;
  margin-right: 5%;
  display: flex;
}

.section_text.is--left {
  margin-left: 5%;
  margin-right: 0%;
}

.section_text.is--footer {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.hero_h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
}

.section_text-title {
  margin-bottom: 16px;
}

.section_text-title.is--cta {
  z-index: 2;
  color: var(--color);
  position: relative;
}

.is--grey-text {
  color: var(--grey);
}

.section_text-p {
  width: 100%;
  margin-top: 6px;
}

.media-full {
  border-radius: 12px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.media-full.is--adjusted {
  object-fit: cover;
  height: 700px;
}

.media_image {
  width: 100%;
  height: 100%;
}

.video_overlay {
  z-index: 1;
  background-image: linear-gradient(#0006, #0006);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video_button {
  background-color: var(--secondary);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  padding: 24px;
  display: flex;
}

.video_play-icon {
  width: 20px;
}

.section_image-half {
  mix-blend-mode: darken;
  object-fit: cover;
  border-radius: 12px;
  width: 45%;
}

.cta_image-left {
  z-index: 1;
  width: 300px;
  position: absolute;
  inset: 108px auto auto 0;
  transform: rotate(-90deg);
}

.cta_image-right {
  z-index: 1;
  width: 400px;
  position: absolute;
  top: -130px;
  right: -260px;
}

.service_grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.service_wrapper {
  position: relative;
}

.service_card {
  z-index: 1;
  background-color: var(--dark);
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 38vw;
  padding: 48px 48px 88px;
  display: flex;
  position: relative;
}

.service_card-icon-wrapper {
  background-color: var(--primary);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 2vw;
  display: flex;
}

.service_card-title {
  color: var(--white);
  font-weight: 700;
}

.service_card-button {
  z-index: 3;
  border: 2px solid var(--white);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 2vw;
  display: flex;
  position: absolute;
  inset: auto auto 48px 48px;
}

.service_card-button-icon {
  width: 13px;
}

.service_card-replace {
  z-index: 2;
  background-color: var(--secondary);
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 48px 48px 88px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.benefits_item {
  border-top: 1px solid var(--grey);
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.benefits_item.is--last {
  border-bottom: 1px solid var(--grey);
}

.benefits_description-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 45%;
  margin-right: 5%;
  display: flex;
}

.form_field {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: black black var(--light);
  color: var(--black);
  background-color: #0000;
  width: 100%;
  margin-bottom: 32px;
  padding-top: 12px;
  padding-bottom: 24px;
  font-size: 1.25vw;
  line-height: 1.67;
}

.form_field:focus {
  border-bottom-color: var(--black);
}

.form_field::placeholder {
  color: var(--light);
}

.form_field.is--message {
  padding-bottom: 160px;
}

.form_checkbox-field {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form_checkbox {
  border: 2px solid var(--color);
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 20px;
}

.form_checkbox.w--redirected-checked {
  background-color: var(--dark);
  background-size: 12px;
  border-style: none;
}

.form_legal-link {
  cursor: pointer;
  text-decoration: underline;
}

.footer_menu {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer_menu-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer_link-inline {
  color: var(--white);
  transition: all .2s;
}

.footer_link-inline:hover {
  color: var(--primary);
}

.legal-popup {
  z-index: 200;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.legal_wrapper {
  background-color: var(--white);
  border-radius: 12px;
  width: 90vw;
  height: 90vh;
  padding: 8vw 12vw 0%;
  position: relative;
  overflow: scroll;
}

.legal_content {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 8vw;
  display: flex;
}

.legal_title {
  margin-bottom: 40px;
}

.legal_text {
  overflow: visible;
}

.legal_close-icon {
  z-index: 100;
  cursor: pointer;
  width: 36px;
  position: absolute;
  inset: 3% 2% auto auto;
}

.btn_wrapper {
  border: 1px solid var(--dark);
  background-color: #0ff0;
  border-radius: 12px;
  margin-top: 24px;
  padding: .8em 1.8em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.form_success {
  background-color: #83c360;
  border-radius: 12px;
}

.form_error {
  background-color: #e65e5e;
  border-radius: 12px;
}

.service_card-icon {
  width: 28px;
}

.style-guide {
  background-color: #cacaca;
}

.image_mobile-only, .mobile-menu_icon, .mobile-menu, .mobile_icon-wrapper {
  display: none;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.hero__person-count-span {
  flex: none;
  width: 100%;
  font-size: 14px;
  display: inline-block;
}

.hero__person-count-title {
  margin-bottom: -20px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.hero__person-count {
  text-align: center;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 0%;
  font-size: 3rem;
  transition: all .6s;
  display: flex;
  overflow: hidden;
}

.hero__person-cont {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.link {
  color: #0a0a0a;
  text-decoration: none;
}

.link:hover {
  color: var(--secondary);
}

.link.is--white-text {
  color: var(--white);
}

.hero__persons {
  z-index: 0;
  justify-content: flex-end;
  min-height: 75vh;
  margin-right: -20px;
  display: flex;
  position: relative;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.button-2 {
  background-color: var(--secondary);
  color: #0a0a0a;
  border-radius: 45px;
  margin-right: 15px;
  padding: 16px 30px;
  font-size: 16px;
  transition: background-color .2s;
}

.button-2:hover {
  background-color: #f9f0aa;
}

.content-block-hero {
  color: var(--white);
  flex-flow: column;
  position: relative;
}

.hero__col.col--2 {
  z-index: 0;
  flex: 1;
}

.hero__person-title {
  flex: none;
  font-size: 34px;
  line-height: 1.1em;
}

.button-wrap-hero {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  margin-top: 35px;
  display: flex;
}

.hero__person-txt-more {
  opacity: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  bottom: 78px;
}

.hero__person-txt-more.mod--1 {
  padding-left: 40px;
}

.hero__person-img {
  z-index: 0;
  object-fit: cover;
  min-width: 100%;
  height: 115%;
  display: block;
  position: relative;
}

.paragraph-hero {
  max-width: 440px;
  margin-top: 30px;
  font-style: normal;
  line-height: 1.5;
}

.hero__person-txt-less {
  opacity: 1;
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: absolute;
  bottom: 80px;
  transform: rotate(-90deg);
}

.hero__person-txt-less.mod--1 {
  padding-top: 20px;
  right: 0;
}

.hero__person-txt-less.mod--1.hide {
  display: none;
}

.hero-block {
  align-items: center;
  width: 50%;
  min-height: 350px;
  display: flex;
}

.heading {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 55px;
  line-height: 1.2;
}

.header {
  justify-content: center;
  align-items: center;
  min-height: 72vh;
  padding: 20px 3%;
  display: flex;
  position: relative;
}

.hero__person {
  border-radius: 20px;
  width: 21%;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
}

.hero__person-grad {
  z-index: 1;
  color: #fff;
  background-image: linear-gradient(#0000 20%, #000c);
  position: absolute;
  inset: 0%;
}

.marquee {
  z-index: 1;
  grid-column-gap: 1rem;
  flex-flow: row;
  align-items: baseline;
  width: 100%;
  padding-top: 0;
  padding-bottom: 2rem;
  display: flex;
  position: absolute;
  top: 250px;
  overflow: hidden;
}

.marquee-content {
  grid-column-gap: 1rem;
  flex: none;
  justify-content: space-around;
  min-width: 100%;
  display: flex;
}

.marquee-content.scroll {
  min-width: auto;
}

.marquee-text {
  color: var(--white);
  letter-spacing: 0;
  font-family: brandon-grotesque, sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1;
}

.section_pictures {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  max-width: 50vw;
  display: flex;
  position: absolute;
}

.content_image_big {
  object-fit: contain;
  border-radius: 7px;
  max-width: 50%;
  height: 100%;
  margin-top: 10vw;
}

.content_image_small {
  object-fit: contain;
  border-radius: 7px;
  max-width: 30%;
  height: 100%;
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  .is--small {
    font-size: 14px;
    line-height: 1.8;
  }

  .is--small.service_card-description {
    margin-bottom: 0;
  }

  .is--small.service_card-replace-description {
    font-size: 12px;
    line-height: 1.5;
  }

  .is--small.footer_menu-item.is--16bm {
    margin-bottom: 16px;
  }

  .is--tag {
    font-size: 14px;
  }

  .is--tag.service_card-number {
    margin-bottom: 64px;
  }

  .nav_brand.is--footer {
    margin-bottom: 48px;
  }

  .nav_menu {
    padding-bottom: 6px;
    display: none;
  }

  .is--white-text.benefits_title {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .button, .button.is--secondary.is--36tm.is--legal {
    padding: 12px 16px;
  }

  .button.is--secondary.no--tm {
    font-size: 14px;
  }

  .button_icon.is--close {
    width: 12px;
  }

  .hero_button {
    display: none;
  }

  .section_content {
    flex-direction: column;
    justify-content: flex-start;
  }

  .section_info {
    margin-bottom: 48px;
  }

  .section_info-circle {
    width: 50px;
    height: 50px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section_text {
    width: 90%;
  }

  .section_text.is--footer {
    width: 100%;
    margin-bottom: 12px;
    margin-right: 0%;
  }

  .hero_h1 {
    text-align: center;
  }

  .media-full.is--adjusted {
    height: auto;
  }

  .video_button {
    padding: 12px;
  }

  .video_play-icon {
    width: 14px;
  }

  .section_image-half {
    width: 80%;
    margin-top: 10vw;
  }

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

  .service_card {
    height: auto;
    padding: 24px 24px 80px;
  }

  .service_card-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .service_card-button {
    margin-top: 0;
    inset: auto auto 24px 24px;
  }

  .service_card-replace {
    padding: 24px 24px 80px;
    display: none;
  }

  .benefits_item {
    flex-direction: column;
  }

  .benefits_description-wrapper {
    width: 100%;
  }

  .form_field {
    font-size: 16px;
  }

  .form_checkbox-field {
    margin-bottom: 32px;
  }

  .btn_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .service_card-icon {
    width: 24px;
  }

  .mobile-menu_icon {
    z-index: 2;
    filter: invert();
    cursor: pointer;
    width: 40px;
    display: block;
    position: relative;
  }

  .mobile-menu {
    z-index: 1;
    transform-origin: 100%;
    background-color: #000c;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 128px 5% 128px 128px;
    display: none;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .mobile-menu_link {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1;
  }

  .mobile-menu_divider {
    background-color: var(--grey);
    width: 100%;
    height: 1px;
  }

  .mobile_icon-wrapper {
    z-index: 500;
    cursor: pointer;
    display: block;
    position: relative;
  }

  .mobile_icon {
    height: 40px;
  }

  .hero__person-count-span {
    font-size: 12px;
  }

  .hero__person-count-title {
    font-size: 32px;
  }

  .content-block-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    display: flex;
  }

  .hero__col.col--2 {
    display: none;
  }

  .hero__person-title {
    font-size: 22px;
  }

  .hero__person-txt-more {
    opacity: 1;
    padding-left: 16px;
    padding-right: 16px;
    bottom: 20px;
  }

  .hero__person-txt-more.mod--1 {
    padding-left: 16px;
  }

  .paragraph-hero {
    text-align: center;
  }

  .hero__person-txt-less {
    display: none;
  }

  .hero-block {
    justify-content: center;
    width: 100%;
  }

  .heading {
    text-align: center;
  }

  .header {
    background-image: linear-gradient(360deg, #fff 44%, #ffffff94), url('../images/home-section-1.2.jpg');
    background-position: 0 0, 50% 100%;
    background-size: auto, cover;
    padding-top: 160px;
  }

  .hero__person {
    width: 240px;
    height: 376px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    flex-wrap: wrap;
  }

  .marquee {
    top: 130px;
  }

  .marquee-text {
    font-size: 10vw;
  }

  .section_pictures {
    width: 100%;
    max-width: none;
    position: relative;
  }

  .content_image_small {
    max-width: 50%;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
    line-height: 1.66;
  }

  h4 {
    font-size: 16px;
    line-height: 1.2;
  }

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.8;
  }

  .is--small {
    font-size: 14px;
  }

  .is--tag {
    font-size: 12px;
  }

  .nav_brand-logo {
    height: 40px;
  }

  .button.is--secondary.is--36tm.is--legal {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hero_subtext.is--top {
    width: 90%;
  }

  .hero_h1 {
    font-size: 4rem;
  }

  .media-full.is--adjusted {
    height: 50vw;
  }

  .video_play-icon {
    width: 12px;
  }

  .section_image-half {
    width: 60%;
  }

  .legal_wrapper {
    height: 80vh;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .legal_content {
    padding-bottom: 16vw;
  }

  .mobile-menu {
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 100px;
  }

  .mobile-menu_link {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .mobile_icon {
    height: 30px;
  }

  .marquee {
    top: 20vw;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p, .is--small {
    font-size: 16px;
  }

  .is--small.footer_menu-item.is--16bm {
    margin-top: 16px;
  }

  .is--tag {
    font-size: 14px;
  }

  .is--tag.hero_tag {
    margin-bottom: 24px;
  }

  .nav {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 100%;
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav_brand-logo {
    height: 40px;
  }

  .button.is--secondary.is--36tm.is--legal {
    padding: 8px 16px 7px;
  }

  .button.is--cta {
    margin-top: 16px;
    padding: 10px 18px;
  }

  .hero_section {
    padding: 12px;
  }

  .hero_content {
    padding-bottom: 15vh;
  }

  .hero_subtext.hide {
    display: none;
  }

  .section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .section_content.is--footer {
    padding-bottom: 24px;
  }

  .section_info-circle {
    width: 50px;
    height: 50px;
  }

  .section_text {
    width: 100%;
    margin-right: 0%;
  }

  .section_text.is--left {
    margin-left: 0%;
  }

  .section_text.is--footer {
    flex-direction: column;
  }

  .section_text-title.is--cta {
    text-align: center;
    width: 230px;
  }

  .media-full {
    height: 300px;
    margin-top: 10vw;
    margin-bottom: 10vw;
  }

  .media_image {
    object-fit: cover;
    height: 100%;
  }

  .video_button {
    width: 50px;
    height: 50px;
    padding: 8px;
  }

  .section_image-half {
    width: 100%;
    margin-top: 20vw;
    margin-bottom: 10vw;
  }

  .cta_image-left {
    width: 160px;
    top: 111px;
    left: -18px;
  }

  .cta_image-right {
    width: 160px;
    top: 0;
    right: -120px;
  }

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

  .footer_menu {
    margin-bottom: 24px;
  }

  .legal-popup {
    display: none;
  }

  .legal_wrapper {
    padding: 32px 24px 24px;
  }

  .legal_text {
    font-size: 14px;
  }

  .legal_close-icon {
    top: 32px;
    right: 16px;
  }

  .image_mobile-only {
    border-radius: 12px;
    width: 100%;
    margin-top: 10vw;
    display: block;
  }

  .mobile-menu_icon {
    width: auto;
    height: 40px;
    margin-top: 0;
    margin-right: 0;
  }

  .mobile-menu {
    z-index: 1;
    background-color: #000000e6;
    display: none;
    right: 0%;
  }

  .mobile-menu_divider {
    width: 36px;
  }

  .mobile-menu_icon-wrapper {
    z-index: 120;
    position: relative;
  }

  .mobile_icon {
    height: 30px;
    position: relative;
  }

  .button-2 {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .button-wrap-hero {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero__person {
    border-radius: 14px;
  }

  .marquee {
    top: 20vw;
  }

  .section_pictures {
    flex-flow: column;
  }

  .content_image_big, .content_image_small {
    max-width: 100%;
  }
}

#w-node-aa571d57-f438-aad4-304c-ca7679fb9ab4-7daa7eac, #w-node-_23baf7d2-f253-0558-568a-89dde4517478-7daa7eac, #w-node-_2e784ccf-eeaa-4c76-2f4b-6d39d13606d7-7daa7eac, #w-node-_606ae206-e921-0290-b11a-4b44fc52b78d-7daa7eac, #w-node-bf2c3b85-a1c3-e666-b7c6-ff1bde75b0b6-7daa7eac, #w-node-fd03cf20-3fb5-4e80-9622-d51fb337d7e9-7daa7eac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/suisseintl-regular.7328f72.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/suisseintl-medium.79b7a6f.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}