@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CD_IBM_Plex_Sans;
  src: url('../fonts/IBMPlexSans-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: CD_League_GOTHIC;
  src: url('../fonts/LeagueGothic-Regular-VariableFont_wdth.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-grey: #181818;
  --light-grey: lightgrey;
  --link-light-grey: #f3f3f3;
}

.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;
}

body {
  background-color: var(--dark-grey);
  color: var(--light-grey);
  font-family: CD_IBM_Plex_Sans, sans-serif;
  font-size: 1vw;
  font-weight: 300;
  line-height: 1;
}

h1 {
  letter-spacing: -.7vw;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 15em;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  letter-spacing: -.6vw;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 10em;
  font-weight: 400;
  line-height: 100%;
}

h3 {
  letter-spacing: -.35vw;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 7.5em;
  font-weight: 400;
  line-height: 100%;
}

h4 {
  letter-spacing: -.25vw;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 5em;
  font-weight: 400;
  line-height: 100%;
}

h5 {
  letter-spacing: -.1vw;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 100%;
}

h6 {
  letter-spacing: -.05vw;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 100%;
}

p {
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 140%;
}

a {
  color: var(--link-light-grey);
  text-decoration: none;
}

a:hover {
  color: #f3f3f3b3;
}

.home-hero-section {
  background-color: var(--dark-grey);
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  max-height: 100vh;
  padding-top: 2.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-hide {
  overflow: hidden;
}

.div-hide.padding-adj {
  padding-right: .1em;
}

.oval-hero-section {
  background-color: #181818;
  border-radius: 50%;
  width: 50%;
  height: 100vh;
  margin-left: 25%;
  margin-right: 25%;
  display: flex;
  position: absolute;
  inset: 100% 0% 0%;
}

.lottie-globe {
  z-index: 0;
  opacity: .3;
  filter: contrast(80%) invert();
  width: 100vw;
  height: 100vh;
  position: relative;
  transform: scale(1.5);
}

.default-wrapper {
  margin-top: 158px;
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
}

.globe-wrapper {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.button-text-style {
  letter-spacing: -.01vw;
  text-transform: uppercase;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 1.5em;
  position: relative;
}

.button-text-style.div-z-index-1 {
  z-index: 1;
  font-size: 1px;
  position: absolute;
}

.button-text-style.text-color-dark-grey {
  z-index: 1;
}

.hero-title-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.cookie-text-wrapper {
  border-bottom: 1px solid #d3d3d3;
  flex-wrap: wrap;
  padding: 30px;
  display: flex;
}

.footer {
  background-color: #d3d3d3;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.margin-top-xsmall {
  margin-top: .5em;
}

.text-color-dark-grey {
  color: #181818;
}

.text-size-small {
  font-size: .875em;
}

.text-size-large {
  font-size: 1.25em;
}

.text-align-right {
  text-align: right;
}

.color-swatch {
  background-color: #d3d3d3;
  height: 5rem;
}

.color-swatch.dark {
  background-color: var(--dark-grey);
  border: 1px solid #d3d3d3;
}

.margin-top-xxsmall {
  margin-top: .25em;
}

.title-medium {
  letter-spacing: -.35vw;
  text-transform: uppercase;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 7.5em;
  font-weight: 400;
  line-height: 100%;
}

.title-xxsmall {
  letter-spacing: -.05vw;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 400;
  line-height: 100%;
}

.title-xxsmall.text-color-dark-grey {
  text-align: right;
}

.footer-contact-callout {
  margin-bottom: 2.5em;
}

.cookie-wrapper {
  z-index: 100;
  background-color: #181818;
  border: 1px solid #d3d3d3;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30%;
  height: 200px;
  text-decoration: none;
  display: none;
  position: fixed;
  inset: auto 35% 1%;
  box-shadow: 2px 2px 16px #181818;
}

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

.margin-top-small {
  margin-top: 1em;
}

.footer-link {
  color: #181818;
  text-align: right;
  letter-spacing: -.05vw;
  text-transform: uppercase;
  font-size: 1.25em;
  text-decoration: none;
  transition: all .4s;
}

.footer-link:hover {
  opacity: .6;
}

.footer-link.small {
  font-size: 1em;
}

.styleguide-item-wrapper {
  margin-top: 2em;
  margin-bottom: 2em;
}

.div-flex {
  display: flex;
  overflow: hidden;
}

.cookie-link {
  color: #fff;
  margin-left: 5px;
  padding-top: 10px;
  font-size: 17px;
  transition: all .2s;
}

.cookie-link:hover {
  color: #d3d3d3;
}

.button-default {
  color: #d3d3d3;
  border: 1px solid #d3d3d3;
  padding: .8em 1em .75em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-default.dark {
  border-color: #181818;
}

.button-default.contact-links {
  cursor: pointer;
  background-color: #181818;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 20px;
  display: flex;
}

.text-size-xsmall {
  font-size: .75em;
}

.span-icon {
  background-image: url('../images/icon-sun.svg');
  background-position: 50%;
  background-size: cover;
  display: inline;
}

.span-icon.footer-var {
  background-image: url('../images/icon-heart-dark-24px.svg');
  background-size: 1.25em;
}

.margin-bottom-xxsmall {
  margin-bottom: .25em;
}

.footer-link-grid {
  grid-column-gap: 16px;
  grid-row-gap: 1.25em;
  grid-template-columns: 1fr;
  align-items: start;
}

.footer-link-grid.hidden {
  display: none;
}

.info-page-grid {
  grid-column-gap: 1.5em;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 1em;
}

.info-page-section {
  min-height: 100vh;
  padding-top: 8em;
}

._w-button {
  color: #d3d3d3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: .8em 1em .75em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

._w-button.w--current {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.input-text-style {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: .25em;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
}

.footer-content-right {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-secondary-links {
  justify-content: center;
  margin-top: 2.5em;
  display: flex;
}

.line {
  background-color: #d3d3d3;
  width: 100%;
  height: 1px;
}

.line.dark-grey {
  background-color: #181818;
}

.footer-contact-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer-content-left {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.title-xlarge {
  letter-spacing: -.7vw;
  text-transform: uppercase;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 15em;
  font-weight: 400;
  line-height: 100%;
}

.title-xlarge.text-color-dark-grey.div-absolute {
  position: absolute;
  inset: 0%;
}

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

.margin-top-xxlarge {
  margin-top: 3em;
}

.text-field-default {
  color: var(--link-light-grey);
  background-color: #0000;
  border: 1px solid #d3d3d3;
  align-items: center;
  height: 2.7rem;
  margin-bottom: 1.5em;
  padding: .625em .75em;
  transition: all .3s;
  display: flex;
}

.text-field-default:hover {
  color: #d3d3d3;
}

.text-field-default:focus {
  border-width: 2px;
  border-color: #d3d3d3;
}

.text-field-default::placeholder {
  color: #d3d3d366;
}

.title-xsmall {
  letter-spacing: -.1vw;
  text-transform: uppercase;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 100%;
}

.footer-callout-wrapper {
  cursor: pointer;
  padding-right: .5em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.default-link {
  color: #d3d3d3;
  text-decoration: underline;
}

.default-rich-text h1 {
  letter-spacing: -.3vw;
  font-size: 8em;
}

.default-form {
  margin-bottom: 1em;
}

.button-ripple {
  z-index: 0;
  background-color: #21222452;
  border-radius: 50%;
  position: absolute;
  inset: 0%;
}

.footer-content {
  justify-content: space-between;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  display: flex;
}

.form-wrapper {
  width: 40%;
  margin-top: 1.5em;
}

.text-all-caps {
  text-transform: uppercase;
}

.form-button {
  color: #d3d3d3;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #d3d3d3;
  min-width: 5.5rem;
  padding: .5em 1em;
  font-family: CD_League_GOTHIC, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  transition: all .3s;
}

.form-button:hover {
  background-color: #d3d3d329;
}

.styleguide-item-info {
  background-color: #d3d3d3;
  flex-direction: row;
  justify-content: flex-start;
  padding: 1em;
  display: inline-block;
}

.footer-logo-link {
  width: 4.75em;
  margin-bottom: .75em;
  transition: opacity .3s;
}

.footer-logo-link:hover {
  opacity: .6;
}

.contact-wrapper {
  width: 850px;
  position: relative;
}

.info-message {
  background-color: #181818;
  border: 1px solid #d3d3d3;
  margin-top: 2em;
  padding: 1.4em;
}

.form-inputs-grid {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto;
}

.textarea-default {
  color: var(--light-grey);
  background-color: #0000;
  border: 1px solid #d3d3d3;
  align-items: center;
  min-height: 10em;
  margin-bottom: 1em;
  padding: .625em .75em;
  transition: all .3s;
  display: flex;
}

.textarea-default:focus {
  border-width: 2px;
  border-color: #d3d3d3;
}

.textarea-default::placeholder {
  color: #d3d3d366;
}

.info-message-text {
  text-align: left;
}

.info-message-text.error {
  color: #ff3f3f;
}

.paragraph-wrapper {
  margin-bottom: 80px;
}

.contact-button-fixed-wrapper {
  z-index: 3;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: auto 25px 25px auto;
}

.dropdown-list {
  flex-direction: column;
  display: flex;
  position: relative;
}

.dropdown-list.w--open {
  background-color: #181818;
  display: flex;
  right: 100%;
}

.button-text-style-2 {
  letter-spacing: -.01vw;
  text-transform: uppercase;
  font-size: 1.5em;
  position: relative;
}

.dropdown {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  bottom: 2%;
  right: 2%;
}

.dropdown.hidden {
  display: none;
}

.logo {
  z-index: 1;
  width: 10%;
  margin-left: auto;
  margin-right: auto;
}

.form {
  margin-top: 85px;
}

.section {
  justify-content: center;
  display: flex;
}

.section.header {
  height: 20vh;
}

.container {
  max-width: 1440px;
  display: flex;
}

.back-home {
  background-image: linear-gradient(to top, var(--dark-grey), transparent);
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.rich-text-block {
  margin-bottom: 200px;
}

.imprint-link-wrapper {
  padding-bottom: 10px;
  padding-left: 25px;
  position: absolute;
  inset: auto 0% 0%;
}

.link {
  font-size: .7em;
  font-weight: 100;
  transition: all .2s;
}

.paragraph {
  font-size: 20px;
}

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

@media screen and (min-width: 1920px) {
  .div-hide.padding-adj {
    font-size: 285px;
  }

  .default-wrapper {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .title-medium {
    letter-spacing: -.05em;
  }

  .title-xxsmall {
    letter-spacing: -.025em;
  }

  .title-xlarge {
    letter-spacing: -.055em;
  }

  .title-xsmall {
    letter-spacing: -.04em;
  }

  .page-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .form-button {
    font-size: 30px;
  }

  .logo {
    z-index: 1;
    position: relative;
  }

  .section.header {
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  p {
    font-size: 2em;
  }

  .home-hero-section {
    padding-top: 0;
  }

  .lottie-globe {
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%)scale(2);
  }

  .button-text-style.div-z-index-1 {
    font-size: 4vw;
  }

  .cookie-text-wrapper {
    flex-wrap: wrap;
  }

  .footer {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .title-medium {
    letter-spacing: -.25vw;
    font-size: 6em;
  }

  .title-xxsmall {
    letter-spacing: 0;
  }

  .cookie-wrapper {
    width: 60%;
    height: 200px;
    left: 20%;
    right: 20%;
  }

  .input-text-style {
    font-size: 3vw;
  }

  .text-block-6 {
    font-size: 2vw;
  }

  .title-xlarge {
    font-size: 12em;
  }

  .form-wrapper {
    width: 100%;
  }

  .form-button {
    min-width: 3rem;
  }

  .contact-wrapper {
    width: 80%;
    position: relative;
    bottom: 20%;
  }

  .dropdown-list {
    flex-direction: column;
  }

  .button-text-style-2.div-z-index-1 {
    font-size: 4vw;
  }

  .dropdown {
    flex-direction: column;
  }

  .imprint-link-wrapper {
    padding-bottom: 20px;
  }

  .link {
    font-size: 2em;
  }
}

@media screen and (max-width: 767px) {
  .home-hero-section {
    padding-top: 6em;
  }

  .hero-title-wrapper {
    flex-direction: column;
  }

  .hero-title-wrapper.margin-top-large {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .text-size-large {
    font-size: 1.125em;
  }

  .title-medium {
    letter-spacing: -.1rem;
    font-size: 3.5rem;
  }

  .title-xxsmall {
    letter-spacing: -.05rem;
    font-size: 1.75rem;
  }

  .cookie-wrapper {
    width: auto;
    left: 1%;
    right: 1%;
  }

  .input-text-style {
    font-size: 1.25rem;
  }

  .footer-content-right {
    margin-top: 3.75rem;
  }

  .footer-secondary-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content-left {
    flex-direction: row;
    align-items: flex-start;
  }

  .title-xlarge {
    letter-spacing: -.2rem;
    font-size: 4.75rem;
  }

  .title-xsmall {
    letter-spacing: -.05rem;
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .form-button {
    min-width: 6rem;
  }

  .contact-wrapper {
    position: relative;
  }

  .link {
    font-size: 3em;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 3.3em;
  }

  .home-hero-section {
    flex-direction: column;
    padding-top: 2.5rem;
    display: flex;
  }

  .div-hide.padding-adj {
    font-size: 24em;
  }

  .lottie-globe {
    width: 100vw;
    height: 100vw;
    bottom: 15%;
  }

  .default-wrapper {
    margin-top: 20px;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .button-text-style.div-z-index-1 {
    font-size: 8vw;
    font-weight: 400;
  }

  .hero-title-wrapper.margin-top-large {
    align-items: center;
  }

  .cookie-text-wrapper {
    height: 60%;
  }

  .footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .cookie-wrapper {
    height: 30%;
  }

  .button-default.contact-links {
    transition: border-color .2s;
  }

  ._w-button {
    height: 40%;
  }

  .footer-content-right {
    justify-content: flex-end;
  }

  .text-block-6 {
    font-size: 3vw;
  }

  .title-xlarge {
    font-size: 4.5rem;
  }

  .text-field-default {
    border-radius: 0;
  }

  .default-form {
    padding-top: 0;
  }

  .form-button {
    min-width: 10rem;
    font-size: 6em;
  }

  .contact-wrapper {
    bottom: 0%;
  }

  .textarea-default {
    border-radius: 0;
  }

  .paragraph-wrapper {
    margin-bottom: 35px;
  }

  .button-text-style-2.div-z-index-1 {
    font-size: 8vw;
    font-weight: 400;
  }

  .logo {
    width: 185px;
    margin-left: auto;
    margin-right: auto;
  }

  .form {
    margin-top: 30px;
  }

  .link {
    font-size: 3.5em;
  }
}

#w-node-b3d9b866-d29c-959d-b298-26614816f111-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f119-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1a4-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1d9-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1db-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1dd-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1df-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1e2-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1e4-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1e6-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1e8-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1ea-27d066fc, #w-node-b3d9b866-d29c-959d-b298-26614816f1ec-27d066fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CD_IBM_Plex_Sans';
  src: url('../fonts/IBMPlexSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CD_League_GOTHIC';
  src: url('../fonts/LeagueGothic-Regular-VariableFont_wdth.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}