:root {
  --cream: #fffef6;
  --black: black;
  --small-padding: 1.875rem;
  --large-padding: 4.0625rem;
  --mobile-padding: 1.2rem;
  --white: white;
  --tablet-padding: 1.5rem;
  --grey: #aaa;
  --beige: #beb9ad;
  --cookies-bg: #b6b6b642;
}

.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-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.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(--cream);
  color: var(--black);
  cursor: default;
  font-family: Suisseintl, sans-serif;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.2em;
}

h1 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 500;
  line-height: 1em;
}

h2 {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25em;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

p {
  margin-bottom: 1em;
}

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

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

.header {
  color: #fff;
  background-color: #0a0a0a;
  width: 100%;
  height: 100dvh;
  max-height: -webkit-fill-available;
  position: relative;
  overflow: hidden;
}

.header-bg-img {
  width: 100%;
  height: 100dvh;
  max-height: -webkit-fill-available;
  position: absolute;
  inset: 0%;
}

.navigation-master {
  z-index: 1;
  padding: var(--small-padding) var(--large-padding);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.header-content-wrapper {
  padding: var(--small-padding) var(--large-padding) 4rem;
  flex-flow: column;
  width: auto;
  min-width: 50%;
  transition: all .5s;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.logo {
  height: 1.1rem;
}

.form {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: flex-start;
  align-items: flex-end;
  transition: height .5s;
  display: flex;
}

.input-text-field {
  color: var(--white);
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  min-width: 9.8125rem;
  margin-bottom: 0;
  padding-top: 1.1em;
  padding-bottom: 1.1em;
  padding-left: 0;
  font-size: 1.06375em;
}

.input-text-field:focus {
  color: #fff;
  border-bottom-color: #fff;
}

.input-text-field:focus-visible {
  color: #fff;
}

.input-text-field[data-wf-focus-visible] {
  color: #fff;
}

.input-text-field::placeholder {
  color: var(--white);
}

.input-text-field.wide {
  min-width: 18.3125rem;
}

.input-text-field.dark {
  color: #0003;
  border-bottom-color: #000;
}

.input-text-field.dark:active {
  border-bottom-color: var(--black);
}

.input-text-field.dark:focus {
  border-bottom-color: var(--black);
  color: #000;
}

.input-text-field.dark::placeholder {
  color: #0003;
}

.input-text-field.input-modal {
  color: #0003;
  border-bottom-color: #000;
}

.input-text-field.input-modal:active {
  border-bottom-color: var(--black);
}

.input-text-field.input-modal:focus {
  border-bottom-color: var(--black);
  color: #000;
}

.input-text-field.input-modal::placeholder {
  color: #000;
}

.btn {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  white-space: nowrap;
  cursor: pointer;
  background-color: #ffffff40;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  min-width: 9rem;
  height: 2.25rem;
  padding-left: 1.4em;
  padding-right: 1.4em;
  font-size: .85em;
  font-weight: 400;
  transition: all .35s;
  display: flex;
}

.btn:hover {
  background-color: #ffffff59;
}

.btn.dark {
  background-color: #0000002e;
}

.btn.dark.on-white:hover {
  background-color: #0000004d;
}

.btn.modal-btn {
  flex: 1;
  height: 2.75rem;
  font-size: .875rem;
}

.btn.modal-btn.dark:hover {
  background-color: #00000040;
}

.btn.modal-btn.outline {
  color: var(--black);
  border: 1px solid #000;
}

.btn.modal-btn.outline:hover {
  opacity: .5;
}

.btn.modal-btn.outline.hide {
  display: none;
}

.btn.cookies-btns {
  background-color: #00000080;
}

.btn.cookies-btns.on-white:hover {
  background-color: #0000004d;
}

.btn.card-btn {
  width: auto;
  min-width: auto;
  height: 2rem;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.header-bg-overlay {
  background-color: #00000057;
  transition: all 1s;
  position: absolute;
  inset: 0%;
}

.hamburger, .code-embed {
  display: none;
}

.success-message {
  text-align: left;
  background-color: #ddd0;
  padding: 0;
}

.form-block {
  min-height: 2.5rem;
  margin-bottom: 0;
}

.error-message {
  background-color: #0000;
  border-radius: 1em;
  margin-top: 20px;
  padding: 0;
  position: absolute;
}

.section {
  padding-right: var(--large-padding);
  padding-left: var(--large-padding);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
  display: flex;
  overflow: hidden;
}

.spacing.large {
  height: 6.25rem;
}

.spacing._110 {
  height: 6.875rem;
}

.spacing._1-5x {
  height: 1.5rem;
}

.spacing._50 {
  height: 3.125rem;
}

.spacing._3em {
  height: 1.5rem;
}

.spacing._7rem {
  height: 7rem;
}

.spacing.section-top {
  height: 8rem;
}

.large-paragraph {
  font-size: 1.50375rem;
  line-height: 1.2em;
}

.main-grid {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  display: grid;
  position: relative;
}

.main-grid.navigation-grid {
  z-index: 10;
}

.image-no-overflow {
  border-radius: 1em;
  overflow: clip;
}

.image-no-overflow.landscape {
  aspect-ratio: 3 / 2;
}

.image {
  width: 100%;
}

.divider {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  margin-top: 7rem;
}

.footer {
  padding: var(--large-padding);
}

.footer-name {
  color: var(--grey);
  margin-bottom: 1.9375rem;
}

.footer-link {
  font-size: 1.25rem;
  transition: color .35s ease-out;
}

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

.footer-links-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.newsletter-form {
  grid-column-gap: 1.8125rem;
  grid-row-gap: 1.8125rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.nav-background {
  z-index: 0;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  position: absolute;
  inset: 0%;
}

.nav-content {
  z-index: 1;
  position: relative;
}

.nav-content.invert {
  filter: invert();
}

.nav-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.nav-link.page-transition-out {
  z-index: 101;
  position: relative;
}

.navigation {
  z-index: 10;
  padding: 4rem var(--large-padding) 1rem;
  color: var(--white);
  transition: all .5s;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation.add-blur {
  background-color: #fffef600;
}

.navigation.add-blur.black, .navigation.dark {
  background-color: var(--cream);
  color: var(--black);
}

.page-title {
  font-size: 3.5rem;
  font-weight: 400;
}

.fs-cc-banner2_text {
  font-size: .7875rem;
  line-height: 1.25em;
}

.fs-cc-prefs2_overlay {
  z-index: 0;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #0000;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs2_close {
  color: #fff;
  cursor: pointer;
  padding: 10px;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: .5rem .5rem auto auto;
}

.fs-cc-preferences2_close-icon {
  color: #fff;
  width: 16px;
  height: 16px;
  display: block;
}

.audio-player-styling {
  display: none;
}

.fs-cc-banner2_button {
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.fs-cc-banner2_button:hover {
  opacity: 1;
  color: #ffffff80;
}

.fs-cc-banner2_button.fs-cc-button-alt {
  color: #ffffff80;
  text-align: center;
}

.fs-cc-banner2_button.fs-cc-button-alt:hover {
  opacity: 1;
  color: #fff;
}

.fs-cc-prefs2_form-wrapper {
  z-index: 997;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: fixed;
  inset: 0% 1.25rem 1.25rem 0%;
}

.flex-block {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  flex: 1;
}

.fs-cc-banner2_container {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs2_checkbox-label {
  display: none;
}

.fs-cc-prefs2_content {
  height: 100%;
  padding: 1.75rem 1.625rem 2.5rem;
}

.fs-cc-prefs2_option {
  border-bottom: 1px solid var(--black);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs2_title {
  font-size: 1.4em;
  line-height: 1em;
}

.fs-cc-prefs2_component {
  z-index: 997;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs2_checkbox {
  z-index: 1;
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_checkbox.w--redirected-checked {
  background-color: var(--cream);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-color: #000;
}

.fs-cc-prefs2_checkbox.w--redirected-focus {
  outline-offset: 0px;
  outline: 0 #000;
  box-shadow: 0 0 5px #0000;
}

.fs-cc-banner2_text-link {
  border-bottom: 1px solid #ffffff80;
  text-decoration: none;
}

.fs-cc-banner2_text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.fs-cc-prefs2_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fs-cc-prefs2_form {
  z-index: 1;
  background-color: var(--cream);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-radius: 10px;
  width: 44rem;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-banner2_component {
  z-index: 999;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  color: var(--white);
  background-color: #00000029;
  border-radius: 1rem;
  width: auto;
  max-width: 50vh;
  padding: 1.25rem 1.43rem;
  display: none;
  position: fixed;
  bottom: 4rem;
  right: 4rem;
}

.fs-cc-banner2_component.on-white {
  opacity: 1;
  pointer-events: auto;
  background-color: #0000002e;
  position: absolute;
}

.fs-cc-banner2_component.absolute {
  background-color: #ffffff40;
  position: absolute;
  inset: auto 4rem 4rem auto;
}

.fs-cc-prefs2_checkbox-field {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.editor-styles {
  display: none;
}

.close-btn {
  display: none;
  position: absolute;
  inset: 1em .8em auto auto;
}

.fs-cc-prefs2_buttons-wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  white-space: nowrap;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.cookies {
  max-width: 100dvw;
  display: none;
}

.fs-cc-banner2_buttons-wrapper {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.fs-cc-prefs2_label {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 5rem;
}

.hamburger-icon {
  overflow: clip;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0%;
}

.no-ios-zoom {
  display: none;
}

.delete-me {
  width: 0;
  height: 0;
}

.horizontal-item {
  flex: none;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.credits {
  z-index: 999;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto 0 0;
}

.horizontal-section {
  padding-bottom: 100vh;
}

.vertical-spacer {
  height: 100vh;
}

.cta-text {
  color: #fff;
  white-space: nowrap;
  border-radius: 2rem;
  flex: 0 auto;
  margin-left: .25rem;
  margin-right: auto;
  font-weight: 400;
  display: flex;
  overflow: hidden;
}

.red {
  color: #ff0004;
}

.sticky-frame {
  z-index: 1;
  margin-bottom: -100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.link {
  color: #fff;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
}

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

.horizontal-wrap {
  flex: none;
}

.horizontal-strip {
  flex-direction: row;
  flex: none;
  display: flex;
}

.horizontal-strip.bkg-gradient {
  background-image: linear-gradient(135deg, #2f00ffeb, #c300ffeb);
}

.horizontal-offset {
  flex: none;
  width: 0;
}

.cta-button {
  z-index: 9;
  color: #fff;
  text-transform: uppercase;
  background-image: radial-gradient(circle farthest-side at 100% 80%, #2f00ff, #c300ff);
  border-radius: 4rem;
  justify-content: flex-end;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: .5rem .75rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  text-decoration: none;
  transition: color .2s, width .3s ease-in-out;
  display: flex;
  position: absolute;
  inset: 1.5rem 1.5rem auto auto;
  overflow: hidden;
  box-shadow: 0 0 8px #0006;
}

.cta-button:hover {
  justify-content: flex-end;
  width: 10rem;
  box-shadow: 0 0 8px #000000bf;
}

.cta-logo {
  width: 1.5rem;
  height: 1.5rem;
  position: static;
}

.scroll_horizontal_img {
  width: 100cqw;
  height: 100%;
}

.scroll_horizontal_list {
  flex: none;
  margin-right: -100cqw;
  display: flex;
}

.scroll_horizontal_hero_title {
  font-size: 12cqw;
}

.scroll_horizontal_track {
  flex: none;
  display: flex;
  transform: translate(0%);
}

.scroll_horizontal_wrap {
  display: none;
}

.scroll_horizontal_contain {
  height: 100vh;
  position: sticky;
  top: 0;
}

.scroll_horizontal_pin_wrap {
  width: 200cqw;
}

.scroll_horizontal_pin_element {
  width: 100cqw;
  height: 100%;
}

.scroll_horizontal_hero_wrap {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  width: 400cqw;
  height: 100dvh;
  display: flex;
}

.scroll_horizontal_inner {
  width: 100%;
  height: 100%;
  display: flex;
  container-type: inline-size;
}

.img-hs {
  aspect-ratio: 2 / 3;
  border-radius: 1em;
  overflow: clip;
}

._4-images-mobile {
  display: none;
}

.scroll-base {
  height: 100vw;
  display: none;
}

.modals-wrapper {
  z-index: 1000;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.modal {
  background-color: var(--cream);
  border-radius: .625rem;
  width: 50rem;
  height: auto;
  padding: 1.75rem 10rem 2.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.sign-in-flow {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  min-height: 37ch;
  display: flex;
}

.signup-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.checkbox-label {
  font-size: .6875em;
}

.text-block {
  font-size: .55rem;
}

.buttons-horizontal-flex {
  grid-column-gap: .9rem;
  grid-row-gap: .9rem;
  flex-flow: wrap;
  display: flex;
}

.modal-heading {
  display: inline-flex;
}

.signin-form-block {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
  position: static;
}

.signin-form-block._1 {
  display: none;
}

.signin-form-block._1.active {
  display: block;
}

.signin-form-block._2 {
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  display: none;
}

.signin-form-block._2.active, .signin-form-block.active {
  display: flex;
}

.signin-form-block.is-welcome {
  flex-flow: column;
  flex: 1;
  align-items: stretch;
  display: flex;
}

.modal-close {
  cursor: pointer;
  margin-top: 1rem;
  margin-right: 1.25rem;
  padding: 1em;
  position: absolute;
  inset: 0% 0% auto auto;
}

.rich-text-small p {
  margin-bottom: 0;
  font-size: .55em;
  line-height: 1.2em;
}

.rich-text-small a {
  border-bottom: 1px solid #000;
}

.fs-cc-prefs2_checkbox-field-2 {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.fs-cc-prefs2_checkbox-new {
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border-width: 1px;
  border-color: #000;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_checkbox-new.w--redirected-checked {
  background-color: #fff;
  background-image: url('../images/check.svg');
  background-size: 90%;
  border-color: #000;
}

.modal-spacing {
  height: 2em;
}

.welcome-notice {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.profile-image {
  background-color: #d9d9d9;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}

.profile-image-absolute {
  margin-top: 2rem;
  margin-right: 5rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.heading-wrap {
  max-width: 80ch;
}

.cards-grid {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  display: grid;
  position: relative;
}

.cards-grid.navigation-grid {
  z-index: 10;
}

.card {
  aspect-ratio: 2 / 3;
  color: var(--white);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: clip;
}

.card-img {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.card-heading {
  font-size: 1.75em;
  line-height: 1em;
}

.card-overlay {
  z-index: 1;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.card-content {
  z-index: 2;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
}

.card-content.wide-card-content {
  justify-content: flex-end;
  align-items: flex-start;
}

.wide-card {
  aspect-ratio: 3;
  color: var(--white);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: clip;
}

.wide-card.link-off {
  cursor: default;
}

.wide-card.link-on {
  cursor: pointer;
}

.cards-slider {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.password-modal-wrapper {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: none;
}

.password-modal-wrapper.open {
  display: flex;
  position: fixed;
  inset: 0%;
}

.password-modal-wrapper.modals-wrapper {
  opacity: 0;
  transition: opacity .2s;
}

.password-modal-wrapper.modals-wrapper.open {
  opacity: 1;
}

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

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hide-field-label {
  display: none;
}

.password-flow {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  min-height: 37ch;
  display: flex;
}

.overlay-close {
  position: absolute;
  inset: 0%;
}

.splide.slider3 {
  width: 100%;
  position: relative;
}

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

.splide__list {
  width: 100%;
  height: 100%;
  display: flex;
}

.splide__slide {
  flex: none;
  width: 25%;
}

.splide__arrows {
  grid-column-gap: .5em;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.splide__arrows.arrows-absolute {
  z-index: 5;
  pointer-events: none;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em;
  position: absolute;
  inset: 0%;
}

.embed {
  pointer-events: auto;
  justify-content: center;
  align-items: center;
}

.slider-css {
  height: 0;
  position: fixed;
  inset: 0% 0% auto;
}

.splide-arrows-styling {
  display: block;
}

.splide__arrow {
  color: #fff;
  white-space: nowrap;
  background-color: #ffffff40;
  border-radius: 3em;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  transition: opacity .6s, all .4s;
  display: flex;
}

.splide__arrow:hover {
  background-color: #4d4d4d40;
}

.splide__arrow.splide__arrow--prev {
  transform: rotate(-180deg);
}

.splide__arrow.splide__arrow--prev:active {
  transform: scale(.95)rotate(-180deg);
}

.splide__arrow.splide__arrow--next:active {
  transform: scale(.95);
}

.header-spacing {
  height: 4rem;
}

.replace-wrapper {
  height: auto;
}

.pw-page-error-msg {
  background-color: #ffdede00;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  inset: auto auto 6rem 1.75rem;
}

.hide {
  display: none;
}

.underlined-link {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: inherit;
}

.succes-flex {
  justify-content: flex-start;
  align-items: center;
  min-height: 2.5rem;
  display: flex;
}

.wide-card-link-block {
  z-index: 10;
  position: absolute;
  inset: 0%;
}

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

  .navigation-master {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }

  .header-content-wrapper {
    padding: var(--small-padding);
    width: 100%;
  }

  .header-content-wrapper.coming-soon {
    padding-bottom: 2.5rem;
  }

  .form {
    flex-flow: wrap;
  }

  .hamburger {
    display: block;
  }

  .form-block {
    position: relative;
  }

  .error-message {
    max-width: 50%;
    margin-top: 0;
    inset: auto 0% 0% auto;
  }

  .section {
    padding-right: var(--tablet-padding);
    padding-left: var(--tablet-padding);
  }

  .spacing._110 {
    height: 4rem;
  }

  .spacing._3em {
    height: 2rem;
  }

  .spacing.section-top {
    height: 4rem;
  }

  .large-paragraph {
    font-size: 1.25rem;
  }

  .main-grid.footer-grid {
    grid-row-gap: 4rem;
  }

  .main-grid.navigation-grid {
    width: 100%;
    max-width: 100%;
  }

  .image-no-overflow.landscape {
    aspect-ratio: 3 / 2;
  }

  .footer {
    padding-right: var(--tablet-padding);
    padding-left: var(--tablet-padding);
  }

  .navigation {
    padding-top: 1.25rem;
    padding-right: var(--tablet-padding);
    padding-left: var(--tablet-padding);
    max-width: 100%;
    margin-top: 1rem;
  }

  .navigation.add-blur, .navigation.dark {
    margin-top: 0;
  }

  .navigation.open {
    color: var(--black);
  }

  .fs-cc-prefs2_form {
    width: 50dvw;
    max-width: 100%;
  }

  .fs-cc-banner2_component {
    z-index: 500;
    margin: var(--tablet-padding);
    background-color: #00000029;
    max-width: none;
    position: fixed;
    inset: auto 0% 0%;
  }

  .cookies {
    z-index: 500;
    padding: 1rem;
    position: fixed;
    inset: auto 0% 0%;
  }

  .footer-newsletter {
    margin-top: 14.25rem;
  }

  .logo-master {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hamburger-icon {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    display: flex;
    overflow: hidden;
  }

  .top-line {
    background-color: currentColor;
    border-radius: 1em;
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease;
  }

  .top-line.open {
    transform: translate(0, .475rem)rotate(45deg);
  }

  .middle-line {
    background-color: currentColor;
    border-radius: 1em;
    width: 100%;
    height: 1px;
    padding: 0;
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease;
  }

  .middle-line.open {
    transform: translate(-100%);
  }

  .bottom-line {
    background-color: currentColor;
    border-radius: 1em;
    width: 100%;
    height: 1px;
    padding: 0;
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease;
  }

  .bottom-line.open {
    transform: translate(0, -.475rem)rotate(-45deg);
  }

  .mobile-menu {
    z-index: 5;
    padding: 8rem var(--tablet-padding) var(--tablet-padding);
    background-color: var(--cream);
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
    display: block;
    position: fixed;
    inset: 0%;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    display: block;
  }

  .mobile-menu-item {
    letter-spacing: -.025em;
    border-bottom: 1px solid #000;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2em;
    line-height: 1em;
  }

  .mobile-menu-items {
    border-top: 1px solid #000;
  }

  .credits {
    font-size: .9rem;
  }

  .header-h2 {
    font-size: 1.5rem;
  }

  .large-paragraph-only-mobile {
    font-size: 1.25rem;
  }

  .modal {
    margin-right: var(--mobile-padding);
    margin-left: var(--mobile-padding);
    padding-right: 1.6rem;
  }

  .cards-grid.footer-grid {
    grid-row-gap: 4rem;
  }

  .cards-grid.navigation-grid {
    width: 100%;
    max-width: 100%;
  }

  .no-overflow {
    overflow: hidden;
  }

  .header-spacing {
    height: 3rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: .8em;
  }

  h1 {
    font-size: 2.8em;
  }

  h2 {
    font-size: 1.4rem;
  }

  .header-content-wrapper {
    padding-right: var(--mobile-padding);
    padding-left: var(--mobile-padding);
  }

  .header-content-wrapper.coming-soon {
    padding-bottom: 3rem;
  }

  .form {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: stretch;
  }

  .input-text-field {
    min-width: auto;
  }

  .input-text-field.wide {
    width: 100%;
    min-width: auto;
  }

  .input-text-field.dark, .input-text-field.input-modal {
    width: 100%;
  }

  .header-bg-overlay {
    background-color: #0006;
  }

  .error-message {
    max-width: 100%;
    margin-top: 1rem;
    position: static;
  }

  .section {
    padding-right: var(--mobile-padding);
    padding-left: var(--mobile-padding);
  }

  .spacing._110, .spacing._110.images-mobile {
    height: 3rem;
  }

  .spacing._3em {
    height: 1rem;
  }

  .spacing.section-top {
    height: 3rem;
  }

  .main-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .main-grid.images {
    flex-flow: row;
    width: 240vw;
    display: flex;
    transform: translate(0%);
  }

  .divider {
    margin-top: 4rem;
  }

  .navigation {
    padding-right: var(--mobile-padding);
    padding-left: var(--mobile-padding);
  }

  .coll-item.img {
    flex: 1;
  }

  .fs-cc-prefs2_overlay {
    background-color: #0000;
  }

  .fs-cc-prefs2_form-wrapper {
    position: absolute;
    inset: auto 0% 0%;
  }

  .fs-cc-banner2_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs2_component {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .fs-cc-prefs2_form {
    min-width: 100%;
  }

  .fs-cc-banner2_component {
    margin: var(--mobile-padding);
    width: auto;
    padding: 1rem;
    font-size: .7em;
  }

  .fs-cc-banner2_buttons-wrapper {
    flex-flow: row-reverse;
    justify-content: flex-start;
    margin-top: 0;
  }

  .mobile-menu {
    padding-right: var(--mobile-padding);
    padding-bottom: var(--mobile-padding);
    padding-left: var(--mobile-padding);
  }

  .credits {
    padding: .25rem .5rem;
    font-size: .8rem;
  }

  .cta-text {
    margin-right: .5rem;
  }

  .cta-button {
    width: auto;
    top: auto;
    bottom: 1rem;
    right: 1rem;
  }

  .cta-button:hover {
    width: auto;
  }

  .scroll_horizontal_wrap {
    display: block;
  }

  .scroll_horizontal_contain.u-container {
    height: 80vh;
  }

  .scroll_horizontal_hero_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    height: 80dvh;
  }

  .img-hs {
    width: 80dvw;
    max-height: 75dvh;
  }

  ._4-images-desktop {
    display: none;
  }

  ._4-images-mobile {
    display: block;
  }

  .scroll-base {
    height: 200vw;
    display: block;
    position: absolute;
  }

  .large-paragraph-only-mobile {
    font-size: 1.50375rem;
    line-height: 1.2em;
  }

  .buttons-horizontal-flex {
    flex-flow: column wrap;
  }

  .cards-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .cards-grid.images {
    flex-flow: row;
    width: 240vw;
    display: flex;
    transform: translate(0%);
  }

  .password-flow {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    min-height: auto;
  }

  .splide__arrows.arrows-absolute {
    padding: 1em;
  }
}

@media screen and (max-width: 479px) {
  .btn.cookies-btns {
    flex: 1;
    min-width: auto;
  }

  .section {
    overflow: hidden;
  }

  .spacing._3em {
    height: 1.5rem;
  }

  .main-grid.images {
    width: 230vw;
  }

  .divider {
    margin-top: 3rem;
  }

  .fs-cc-banner2_text {
    font-size: .9em;
  }

  .fs-cc-prefs2_close {
    padding: .5rem;
  }

  .fs-cc-banner2_button:hover {
    opacity: 1;
    color: #000;
  }

  .fs-cc-prefs2_title {
    font-size: 1.125rem;
  }

  .fs-cc-prefs2_component {
    padding: 1.5rem;
  }

  .fs-cc-prefs2_buttons-wrapper {
    justify-content: flex-end;
  }

  .fs-cc-banner2_buttons-wrapper {
    grid-row-gap: 1em;
    justify-content: space-between;
  }

  .fs-cc-prefs2_label {
    font-size: .875rem;
  }

  .footer-newsletter {
    margin-top: 10rem;
  }

  .credits {
    z-index: 2;
  }

  .cta-button {
    bottom: 1.5rem;
  }

  .heading {
    font-size: 1rem;
  }

  .cards-grid.images {
    width: 230vw;
  }

  .splide__arrows.arrows-absolute {
    padding: .5em;
  }

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

#w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e8c-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e94-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82ea0-58b82e8a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82ea8-58b82e8a {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_295025b3-689f-7e43-5f24-9d1b5168f7c8-5168f7c3, #w-node-_3763f67b-a5b8-1e7c-1c07-812896baceca-0e7c8d2e {
  grid-area: 1 / 6 / 2 / 13;
  justify-self: end;
}

#w-node-_9cc8441a-7c24-e8b1-af29-5364cd810e3c-cd810e39 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_9cc8441a-7c24-e8b1-af29-5364cd810e3f-cd810e39 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_97e8649d-37e4-1b7f-ccdb-591b04dafc66-bdd3ad3b {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_848ad038-4b5b-04e2-d634-9dd4fc43628b-bdd3ad3b {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_7fcd635b-d8c8-1bdc-1621-c95f5aa7d47e-bdd3ad3b {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_9bdfc2d2-56a3-b961-e4fe-69a253b972e8-2679f666, #w-node-_782702e0-46da-31c6-fb77-d555a248c5aa-f4a3de4f {
  grid-area: 1 / 6 / 2 / 13;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e8c-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e94-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82ea0-58b82e8a {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82ea8-58b82e8a {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_295025b3-689f-7e43-5f24-9d1b5168f7c5-5168f7c3 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_295025b3-689f-7e43-5f24-9d1b5168f7c8-5168f7c3 {
    grid-area: 1 / 9 / 2 / 13;
    place-self: center end;
  }

  #w-node-_5994d46c-353e-abf9-a86d-7ad064c2a1f6-5168f7c3 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
  }

  #w-node-_9cc8441a-7c24-e8b1-af29-5364cd810e3c-cd810e39, #w-node-_9cc8441a-7c24-e8b1-af29-5364cd810e3f-cd810e39, #w-node-_97e8649d-37e4-1b7f-ccdb-591b04dafc66-bdd3ad3b, #w-node-_848ad038-4b5b-04e2-d634-9dd4fc43628b-bdd3ad3b {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_9bdfc2d2-56a3-b961-e4fe-69a253b972e5-2679f666 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_9bdfc2d2-56a3-b961-e4fe-69a253b972e8-2679f666 {
    grid-area: 1 / 9 / 2 / 13;
    place-self: center end;
  }

  #w-node-_9bdfc2d2-56a3-b961-e4fe-69a253b972ed-2679f666 {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
  }

  #w-node-_782702e0-46da-31c6-fb77-d555a248c5a7-f4a3de4f {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_782702e0-46da-31c6-fb77-d555a248c5aa-f4a3de4f {
    grid-area: 1 / 9 / 2 / 13;
    place-self: center end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e8c-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82e94-58b82e8a, #w-node-_95e62c9d-30e8-d92a-e3b7-c1e458b82ea0-58b82e8a {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }
}


@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-RegularItalic.otf') format('opentype'), url('../fonts/SuisseWorks-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlmono';
  src: url('../fonts/SuisseIntlMono-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-RegularItalic.otf') format('opentype'), url('../fonts/SuisseIntl-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseneue';
  src: url('../fonts/SuisseNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Semibold.otf') format('opentype'), url('../fonts/SuisseIntlCond-SemiBoldIta.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks Book';
  src: url('../fonts/SuisseWorks-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-MonitorItalic.otf') format('opentype'), url('../fonts/SuisseScreen-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlmono';
  src: url('../fonts/SuisseIntlMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlcond';
  src: url('../fonts/SuisseIntlCond-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-UltraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintlmono';
  src: url('../fonts/SuisseIntlMono-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseworks';
  src: url('../fonts/SuisseWorks-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl Book';
  src: url('../fonts/SuisseIntl-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen Monitor';
  src: url('../fonts/SuisseScreen-Monitor.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suissescreen';
  src: url('../fonts/SuisseScreen-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suisseintl';
  src: url('../fonts/SuisseIntl-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}