/* 
	Color palette 
 */
/* 
	Layout 
 */
/* 
	Typography 
 */
/* 
	Base styles
 */
/* 
	Typography 
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, em, img, small, strong, sub, sup,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, label, input, textarea, select, button,
table, caption, thead, tbody, tfoot, tr, th, td {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, audio, canvas, video, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: inherit;
}

address, cite, code {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea, select {
  display: block;
  outline: none;
  resize: none;
}

button {
  display: block;
  resize: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html, body {
  min-height: 100%;
}

*, *:before, *:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  align-items: normal;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.wrapper {
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  width: 100%;
}
@media (min-width: 901px) {
  .wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1501px) {
  .wrapper {
    max-width: 1560px;
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
.wrapper--narrow {
  max-width: 90rem;
}

.interior .main {
  padding: 4rem 0 8rem;
}
@media (min-width: 901px) {
  .interior .main {
    padding: 6rem 0 12rem;
  }
}

.container {
  align-items: center;
  display: flex;
  height: 100vh;
  padding: 4rem;
  position: relative;
}
@media (min-width: 901px) {
  .container {
    padding: 6rem;
  }
}

.hero {
  align-items: center;
  background: #000;
  color: #fff;
  display: flex;
  height: 100vh;
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 901px) {
  .hero {
    padding: 6rem 0;
  }
}
.hero__container {
  max-width: 1200px;
  position: relative;
  transition: all 0.25s;
}
.overlay-is-active .hero {
  opacity: 0.2;
}
.hero__intro {
  position: relative;
}
.hero__intro svg {
  display: block;
  height: 100%;
  object-fit: contain !important;
  max-height: calc(100vh - 80px);
  margin: 0 !important;
}
@media (min-width: 901px) {
  .hero__intro svg {
    max-height: calc(100vh - 120px);
  }
}
.hero__btn {
  align-items: center;
  background: transparent;
  border: 1px solid #fff;
  display: inline-flex;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 100;
  letter-spacing: -0.1rem;
  left: 0;
  line-height: 2.9rem;
  justify-content: center;
  min-height: 6.5rem;
  padding: 1.5rem 3rem;
  transition: all 0.25s;
  opacity: 0;
  position: absolute;
  transform: translateY(100%);
  z-index: 2;
}
@media (min-width: 601px) {
  .hero__btn {
    bottom: 10%;
  }
}
@media (min-width: 1201px) {
  .hero__btn {
    bottom: 12.5%;
  }
}
.intro-complete .hero__btn {
  opacity: 1;
  transform: none;
}
.hero__btn:hover {
  background: #fff;
  color: #000;
}
.hero .brand {
  display: block;
  height: 3.5rem;
  margin-bottom: 2rem;
  width: 16.5rem;
}
.hero .brand-asset {
  display: block;
  fill: #fff;
  height: 100%;
  width: 100%;
}
.hero .divider {
  bottom: 0;
  height: 2rem;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 901px) {
  .hero .divider {
    height: 3rem;
  }
}
@media (min-width: 1501px) {
  .hero .divider {
    height: 4rem;
  }
}
.hero .divider > svg {
  height: 100%;
}

.overlay {
  background: #fff;
  bottom: 0;
  color: #000;
  display: flex;
  flex-direction: column;
  height: auto;
  left: 0;
  gap: 6rem;
  opacity: 0;
  padding: 5rem;
  position: fixed;
  transition: all 0.25s;
  transform: translateY(100%);
  z-index: 1001;
  width: 100%;
  visibility: hidden;
}
.overlay-is-active .overlay {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
}
@media (min-width: 901px) {
  .overlay-is-active .overlay {
    transform: translateX(-50%) translateY(-50%);
  }
}
@media (min-width: 901px) {
  .overlay {
    bottom: auto;
    left: 50%;
    gap: 10rem;
    max-width: 56rem;
    top: 50%;
    transform: translateX(-50%) translateY(100%);
  }
}
.overlay__header .brand {
  display: block;
  margin-bottom: 1rem;
  max-width: 20rem;
}
@media (min-width: 901px) {
  .overlay__header .brand {
    max-width: 26rem;
    margin-bottom: 2rem;
  }
}
.overlay__header .tagline {
  font-size: 2.2rem;
  font-weight: 100;
  line-height: 2.4rem;
  letter-spacing: -0.1rem;
}
@media (min-width: 901px) {
  .overlay__header .tagline {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}
.overlay__close {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1.47345 0.425479L7.89893 6.85096L14.3244 0.42548L15.3723 1.47341L8.94686 7.89889L15.3723 14.3244L14.3244 15.3723L7.89893 8.94682L1.47345 15.3723L0.425515 14.3244L6.85099 7.89889L0.425514 1.47341L1.47345 0.425479Z' fill='%23878787'/%3E%3C/svg%3E%0A") no-repeat center center transparent;
  background-size: 16px 16px;
  cursor: pointer;
  display: block;
  height: 4rem;
  position: absolute;
  right: 1rem;
  text-indent: -9999px;
  top: 1rem;
  width: 4rem;
}

.newsletter {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 35rem;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.page-header .brand {
  display: block;
  max-width: 15rem;
}
.privacy-policy .page-header .brand {
  margin: 0 auto;
}
.page-header .brand-asset {
  display: block;
  width: 100%;
}
.privacy-policy .page-header .title {
  text-align: center;
}

.content-block + .content-block {
  padding-top: 4rem;
}
@media (min-width: 901px) {
  .content-block + .content-block {
    padding-top: 6rem;
  }
}

.consent-banner {
  background: #fff;
  color: #000;
  bottom: 0;
  left: 0;
  padding: 2rem;
  position: fixed;
  transition: all 0.25s;
  transform: translateY(100%);
  width: 100%;
  z-index: 1001;
}
.consent-banner.is-active {
  transform: translateY(0);
}
.consent-banner-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  max-width: 100rem;
}
@media (min-width: 601px) {
  .consent-banner-container {
    justify-content: space-between;
    flex-direction: row;
  }
}
.consent-banner-btns {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.consent-settings {
  align-items: center;
  display: flex;
  height: 100%;
  left: 0;
  justify-content: center;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.consent-settings:before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.25s;
  top: 0;
  width: 100%;
  z-index: 1001;
}
.consent-settings.is-active:before {
  opacity: 0.25;
}
.consent-settings-container {
  background: #fff;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 3rem;
  max-width: 60rem;
  padding: 4rem 2rem 2rem;
  opacity: 0;
  position: relative;
  transform: translateY(100%);
  transition: all 0.25s;
  z-index: 1002;
  width: 100%;
}
.is-active .consent-settings-container {
  opacity: 1;
  transform: translateY(0);
}
.consent-settings-header {
  padding-right: 6rem;
}
.consent-settings-footer {
  display: flex;
  gap: 2rem;
}
.consent-settings-close-btn {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1.47345 0.425479L7.89893 6.85096L14.3244 0.42548L15.3723 1.47341L8.94686 7.89889L15.3723 14.3244L14.3244 15.3723L7.89893 8.94682L1.47345 15.3723L0.425515 14.3244L6.85099 7.89889L0.425514 1.47341L1.47345 0.425479Z' fill='%23878787'/%3E%3C/svg%3E%0A") no-repeat center center transparent;
  background-size: 16px 16px;
  cursor: pointer;
  display: block;
  height: 4rem;
  position: absolute;
  right: 1rem;
  text-indent: -9999px;
  top: 1rem;
  width: 4rem;
}

.layer {
  padding: 4rem 0;
}
@media (min-width: 901px) {
  .layer {
    padding: 6rem 0;
  }
}
@media (min-width: 1201px) {
  .layer {
    padding: 8rem 0;
  }
}

[data-hidden=true] {
  display: none;
}

.section-header {
  margin-bottom: 2rem;
}
@media (min-width: 901px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1201px) {
  .section-header {
    margin-bottom: 6rem;
  }
}
.section-header__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 901px) {
  .section-header__brand {
    flex-direction: row;
  }
}
.section-header__brand .brand-asset {
  display: block;
  height: 5.6rem;
  width: 26.8rem;
}
.section-header__brand p {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  margin: 0;
}
.section-header__description {
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: -0.1rem;
  line-height: 1;
  margin-top: 2rem;
}
@media (min-width: 901px) {
  .section-header__description {
    font-size: 2.4rem;
    max-width: 100rem;
  }
}
@media (min-width: 1201px) {
  .section-header__description {
    font-size: 3.2rem;
  }
}

.survey-container > iframe {
  display: block;
  min-height: 60rem;
  width: 100%;
}
@media (min-width: 901px) {
  .survey-container > iframe {
    min-height: 80rem;
  }
}
@media (min-width: 1501px) {
  .survey-container > iframe {
    min-height: 100rem;
  }
}

.grid {
  position: relative;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-left: -2rem;
  margin-right: -2rem;
  position: relative;
}
@media (min-width: 901px) {
  .row {
    flex-direction: row;
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
.row:last-child {
  margin-bottom: -4rem;
}
@media (min-width: 901px) {
  .row:last-child {
    margin-bottom: -6rem;
  }
}
.grid--reduced .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.grid--reduced .row:last-child {
  margin-bottom: -1.5rem;
}
.row--space-between {
  justify-content: space-between;
}
.row--v-center {
  align-items: center;
}

.col {
  flex: 1 0 100%;
  margin-bottom: 4rem;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 901px) {
  .col {
    margin-bottom: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.grid--reduced .col {
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.col-1 {
  flex: 1 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.col-2 {
  flex: 1 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-3 {
  flex: 1 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 1 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.col-5 {
  flex: 1 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.col-6 {
  flex: 1 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 1 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.col-8 {
  flex: 1 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.col-9 {
  flex: 1 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 1 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.col-11 {
  flex: 1 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.col-12 {
  flex: 1 0 100%;
  max-width: 100%;
}
@media (min-width: 601px) {
  .col-sm-1 {
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 1 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 1 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 901px) {
  .col-md-1 {
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 1 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 1 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1201px) {
  .col-lg-1 {
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 1 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 1 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  position: relative;
}

.interior {
  background: #000;
  color: #fff;
}

p {
  margin-bottom: 2rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.sr-only {
  border: none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.is-grayscale {
  filter: grayscale(1);
}

.metadata {
  display: flex;
  gap: 0.8rem;
}
.metadata:first-child {
  margin-bottom: 2rem;
}
.metadata:last-child {
  margin-top: 2rem;
}
.metadata > li:after {
  content: "|";
  margin-left: 0.8rem;
}
.metadata > li:last-child:after {
  display: none;
}
.metadata > li > a {
  text-decoration: underline;
}
.metadata > li > a:hover {
  color: #00AEEF;
}

.text-block {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.text-block--huge {
  font-size: 4.2rem;
  line-height: 4.8rem;
}
@media (min-width: 901px) {
  .text-block--huge {
    font-size: 5.6rem;
    line-height: 6.4rem;
  }
}
.text-block--medium {
  font-size: 2.2rem;
  line-height: 2.4rem;
}
@media (min-width: 901px) {
  .text-block--medium {
    font-size: 3.8rem;
    line-height: 4.5rem;
  }
}
.text-block--thin {
  font-weight: 100;
}
.text-block--thin strong {
  font-weight: bold;
}
.text-block a {
  text-decoration: underline;
}
.text-block a:not(.btn--primary):hover {
  color: #2E606B;
}
.text-block ul:not(.list),
.text-block ol {
  margin: 0 0 3rem 2rem;
}
.text-block ul:not(.list):last-child,
.text-block ol:last-child {
  margin-bottom: 0;
}
.text-block ul:not(.list) > li,
.text-block ol > li {
  margin-bottom: 0.5rem;
}
.text-block ul:not(.list) > li:last-child,
.text-block ol > li:last-child {
  margin-bottom: 0;
}
.text-block ul:not(.list) > li ul,
.text-block ul:not(.list) > li ol,
.text-block ol > li ul,
.text-block ol > li ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.text-block ul:not(.list) {
  list-style: disc outside;
}
.text-block ol {
  list-style: decimal outside;
}
.text-block ol.alpha-list {
  list-style: upper-alpha outside;
}
.text-block ol.alpha-list.is-spaced > li {
  margin-bottom: 3rem;
}
.text-block ol.alpha-list.is-spaced > li:last-child {
  margin-bottom: 0;
}
.text-block ol.alpha-list.is-spaced > li > ul {
  margin-bottom: 2rem;
}
.text-block p:empty,
.text-block span:empty {
  display: none;
}

.heading--1 {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 4.2rem;
  line-height: 4.8rem;
  margin-bottom: 3rem;
}
@media (min-width: 901px) {
  .heading--1 {
    font-size: 5.6rem;
    line-height: 6.4rem;
  }
}
.heading--1:last-child {
  margin-bottom: 0;
}
.heading--1 + .subcopy--1 {
  margin-top: -1rem;
}
.heading--2 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 4.8rem;
}
.heading--3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3.4rem;
}

.title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.1rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.title a {
  text-decoration: none;
}

.divider {
  height: 2rem;
}
@media (min-width: 901px) {
  .divider {
    height: 3rem;
  }
}
@media (min-width: 1501px) {
  .divider {
    height: 4rem;
  }
}
.divider > svg {
  display: block;
  height: 100%;
  width: 100%;
}

.fg--light {
  color: #fff;
}

.icon-with-content-block {
  align-items: center;
  display: flex;
  gap: 2rem;
}
@media (min-width: 901px) {
  .icon-with-content-block {
    gap: 4rem;
  }
}
@media (min-width: 1201px) {
  .icon-with-content-block {
    gap: 6rem;
  }
}
.icon-with-content-block > div:first-child {
  flex-shrink: 0;
}
.icon-with-content-block > div:first-child .icon {
  display: block;
  max-width: 6rem;
  width: 100%;
}
@media (min-width: 901px) {
  .icon-with-content-block > div:first-child .icon {
    max-width: 8rem;
  }
}
@media (min-width: 1201px) {
  .icon-with-content-block > div:first-child .icon {
    max-width: 10rem;
  }
}

.btn--primary {
  align-items: center;
  background: #da3c52;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.6rem;
  justify-content: center;
  min-height: 5rem;
  outline: none;
  padding: 0.5rem 3rem;
  transition: all 0.25s;
}
.btn--primary:hover {
  background: #ae3041;
}
.btn--secondary {
  align-items: center;
  background: #61C1B6;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.6rem;
  justify-content: center;
  min-height: 5rem;
  outline: none;
  padding: 0.5rem 3rem;
  transition: all 0.25s;
}
.btn--secondary:hover {
  background: #43AB9F;
}
.btn--outline {
  align-items: center;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.6rem;
  justify-content: center;
  min-height: 5rem;
  outline: none;
  padding: 0.5rem 3rem;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn--outline:hover {
  background: #000;
  color: #fff;
}
.btn[disabled] {
  opacity: 0.5;
}

.button-group {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.form__footer {
  margin-top: 2rem;
}
.form__footer.align-right {
  display: flex;
  justify-content: flex-end;
}

.fieldset {
  margin-bottom: 4rem;
}
@media (min-width: 901px) {
  .fieldset {
    margin-bottom: 6rem;
  }
}
.fieldset:last-child {
  margin-bottom: 0;
}

.legend {
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
}
.legend span {
  font-weight: 100;
}

.field {
  width: 100%;
}
.newsletter .field--text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter .field--checkbox .field__label {
  display: block;
  cursor: pointer;
  padding-left: 3.7rem;
  position: relative;
}
.newsletter .field--checkbox .field__label:before {
  border: 1px solid #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 2.2rem;
  left: 0;
  position: absolute;
  top: 0.2rem;
  width: 2.2rem;
}
.newsletter .field--checkbox .field__label:after {
  background: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 1.8rem;
  left: 0.2rem;
  position: absolute;
  top: 0.4rem;
  transform-origin: center center;
  transform: scale(0);
  transition: all 0.25s;
  width: 1.8rem;
}
.field--checkbox .field__label {
  align-items: center;
  background: rgba(72, 83, 97, 0.15);
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  display: flex;
  font-weight: 400;
  gap: 1.2rem;
  min-height: 6.5rem;
  padding: 0.2rem 2rem;
  position: relative;
  width: 100%;
}
.field--checkbox .field__label:before {
  background: #fff;
  border-radius: 4px;
  content: "";
  display: block;
  height: 2rem;
  flex-shrink: none;
  width: 2rem;
}
.field--checkbox .field__label em {
  color: #9F9F9F;
  font-style: normal;
}
.field--text .field__control {
  background: rgba(72, 83, 97, 0.15);
  border-radius: 8px;
  color: #000;
  display: block;
  font-weight: 300;
  min-height: 6.5rem;
  padding: 0.2rem 2rem;
  width: 100%;
}
.field--text .field__control:placeholder-shown, .field--text .field__control::placeholder {
  color: #000;
}
.field--text.field--error .field__control {
  border: 1px solid #ff3535;
}
.field--select .field__control {
  appearance: none;
  background-color: rgba(72, 83, 97, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='13' viewBox='0 0 21 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.177 0.983887L10.3813 8.13598L2.58556 0.983885L0.190794 3.18575L10.3813 12.5553L20.5718 3.18575L18.177 0.983887Z' fill='%23DA3C52'/%3E%3C/svg%3E");
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 20px 12px;
  border-radius: 4px;
  border-radius: 8px;
  color: #000;
  display: block;
  font-weight: 300;
  min-height: 6.5rem;
  outline: none;
  padding: 0.2rem 5rem 0.2rem 2rem;
  width: 100%;
}
.field--checkbox .field__control {
  display: none;
}
.field--checkbox .field__control:checked + .field__label:before {
  background: #000;
}

.error-msg {
  margin-top: 0.6rem;
}

.form-success {
  height: 100%;
  max-width: 75rem;
  width: 100%;
}
.form-success > svg {
  display: block;
  margin-bottom: 2rem;
  width: 100%;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.checkbox-group .field {
  width: auto;
}
.checkbox-group .btn-add {
  align-items: center;
  background: rgba(72, 83, 97, 0.15);
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 2.4rem;
  font-weight: 100;
  height: 6.5rem;
  justify-content: center;
  text-align: center;
  width: 6.5rem;
}
.checkbox-group .add-option-input-container {
  align-items: center;
  background: rgba(72, 83, 97, 0.15);
  border-radius: 8px;
  color: #000;
  display: flex;
  font-weight: 300;
  min-height: 6.5rem;
  padding: 1rem;
}
.checkbox-group .add-option-input-container input {
  background: #fff;
  border-radius: 8px;
  color: #000;
  display: block;
  font-weight: 300;
  min-height: 4.5rem;
  min-width: 24rem;
  padding: 0.5rem 2rem;
  width: 100%;
}
.checkbox-group .add-option-input-container input:placeholder-shown, .checkbox-group .add-option-input-container input::placeholder {
  color: #000;
}

.footer {
  background: #000;
}
.footer__container {
  padding: 4rem 0;
}
@media (min-width: 901px) {
  .footer__container {
    padding: 6rem 0;
  }
}
@media (min-width: 1201px) {
  .footer__container {
    padding: 8rem 0;
  }
}
.footer__brand {
  display: block;
  height: 10.44rem;
  width: 30.12rem;
}
@media (min-width: 901px) {
  .footer__brand {
    height: 17.4rem;
    width: 50.2rem;
  }
}
.footer__brand-asset {
  display: block;
  height: 100%;
  width: 100%;
}
.footer__content {
  color: #fff;
  margin-top: 4rem;
}

.footer-fixed {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.25s;
  width: 100%;
  z-index: 2;
}
.intro-complete .footer-fixed {
  opacity: 1;
}
.footer-fixed__container {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 901px) {
  .footer-fixed__container {
    padding: 3rem;
  }
}
.footer-fixed__container a:hover {
  text-decoration: underline;
}