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

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

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

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

:root {
  --off-black: #1d1d1b;
  --white: #fff;
  --ash: #b1c0cd;
  --light-grey: #f7f7f7;
  --arctic-blue: #00bad7;
  --salmon-red: #e51b4a;
  --forest-green: #006752;
  --l-opacity-green: #0067520d;
  --gray85: #d9d9d9;
  --transparent: #fff0;
  --white-2: white;
  --black: black;
}

body {
  color: var(--off-black);
  font-family: Gantari, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

h1 {
  font-size: 75px;
  line-height: 90px;
}

h2 {
  font-size: 50px;
  line-height: 60px;
}

h3 {
  font-size: 30px;
  line-height: 36px;
}

h4 {
  font-size: 25px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 24px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.display-none {
  display: none;
}

.flex {
  display: flex;
}

.flex.flex-col {
  flex-direction: column;
}

.flex.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex.flex-col-reverse {
  flex-direction: column-reverse;
}

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

.flex.justify-between {
  justify-content: space-between;
}

.flex.justify-start {
  justify-content: flex-start;
}

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

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

.flex.justify-around {
  justify-content: space-around;
}

.flex.items-start {
  align-items: flex-start;
}

.flex.items-end {
  align-items: flex-end;
}

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

.flex.items-baseline {
  align-items: baseline;
}

.flex.items-stretch {
  align-items: stretch;
}

.flex.gap-x-24 {
  grid-column-gap: 24px;
}

.flex.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.flex.gap-44 {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
}

.flex.gap-y-148 {
  grid-row-gap: 148px;
}

.flex.gap-148 {
  grid-column-gap: 148px;
  grid-row-gap: 148px;
}

.flex.gap-56 {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
}

.flex.gap-68 {
  grid-column-gap: 68px;
  grid-row-gap: 68px;
}

.flex.gap-28 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
}

.flex.gap-36 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
}

.flex.gap-32 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.flex.gap-12 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.flex.gap-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.flex.gap-8 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.flex.gap-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.flex.mb-44.display-none {
  display: none;
}

.flex.gap-140 {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
}

.flex.gap-y-100 {
  grid-row-gap: 100px;
}

.flex.gap-136 {
  grid-column-gap: 136px;
  grid-row-gap: 136px;
}

.flex.gap-132 {
  grid-column-gap: 132px;
  grid-row-gap: 132px;
}

.flex.gap-48 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.flex.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.flex.gap-x-108 {
  grid-column-gap: 108px;
}

.flex.gap-y-56 {
  grid-row-gap: 56px;
}

.rounded-full {
  border-radius: 9999px;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.display-block {
  display: block;
}

.display-inlineblock {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.absolute.absolute--tl {
  inset: 0% auto auto 0%;
}

.absolute.z-10 {
  z-index: 10;
}

.absolute.absolute--full {
  inset: 0%;
}

.relative {
  position: relative;
}

.relative.z-10 {
  z-index: 10;
}

.sticky {
  position: sticky;
}

.fixed {
  position: fixed;
}

.font-normal {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

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

.underline {
  text-decoration: underline;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.border {
  border-style: solid;
  border-width: 1px;
}

.border.border--off-black {
  border-color: var(--off-black);
}

.border-0 {
  border-style: solid;
  border-width: 0;
}

._w-full {
  width: 100%;
}

.max-w-full {
  max-width: 100%;
}

._w-0 {
  width: 0;
}

.max-w-none {
  max-width: none;
}

.h-0 {
  height: 0;
}

.h-screen {
  height: 100vh;
}

.h-full {
  height: 100%;
}

.max-h-screen {
  max-height: 100vh;
}

.max-h-full {
  max-height: 100%;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.cursor-pointer {
  cursor: pointer;
}

.fit-contain {
  object-fit: contain;
}

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

.fit-fill {
  object-fit: fill;
}

.fit-none {
  object-fit: none;
}

.fit-scale-down {
  object-fit: scale-down;
}

.text-5xl {
  font-size: 75px;
  line-height: 90px;
}

.text-4xl {
  font-size: 50px;
  line-height: 60px;
}

.text-3xl {
  font-size: 30px;
  line-height: 36px;
}

.text-2xl {
  font-size: 26px;
  line-height: 31px;
}

.text-xl {
  font-size: 25px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 22px;
}

.text-regular {
  font-size: 16px;
  line-height: 19px;
}

.text-sm {
  font-size: 15px;
  line-height: 18px;
}

.text-xs {
  font-size: 12px;
  line-height: 14px;
}

.bg--off-black {
  background-color: var(--off-black);
  color: var(--white);
}

.bg--ash {
  background-color: var(--ash);
}

.bg--light-grey {
  background-color: var(--light-grey);
}

.bg--white {
  background-color: var(--white);
}

.bg--arctic-blue {
  background-color: var(--arctic-blue);
}

.bg--salmon-red {
  background-color: var(--salmon-red);
  color: var(--white);
}

.bg--forest-green {
  background-color: var(--forest-green);
  color: var(--white);
}

.bg--l-opacity-green {
  background-color: var(--l-opacity-green);
}

.text--off-black {
  color: var(--off-black);
}

.text--ash {
  color: var(--ash);
}

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

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

.text--arctic-blue {
  color: var(--arctic-blue);
}

.text--salmon-red {
  color: var(--salmon-red);
}

.text--forest-green {
  color: var(--forest-green);
}

.text--l-opacity-green {
  color: var(--l-opacity-green);
}

.max-w-648 {
  max-width: 648px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.min-h-screen {
  min-height: 100vh;
}

.opacity-75 {
  opacity: .75;
}

.mb-36 {
  margin-bottom: 36px;
}

.no-underline {
  text-decoration: none;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.h-4 {
  height: 4px;
}

.px-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.mb-84 {
  margin-bottom: 84px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-31 {
  padding-left: 31px;
  padding-right: 31px;
}

.max-w-1140 {
  max-width: 1140px;
}

.max-w-668 {
  max-width: 668px;
}

.mb-40 {
  margin-bottom: 40px;
}

.py-108 {
  padding-top: 108px;
  padding-bottom: 108px;
}

.max-w-452 {
  max-width: 452px;
}

.max-w-72 {
  max-width: 72px;
}

.mb-104 {
  margin-bottom: 104px;
}

.mb-100 {
  margin-bottom: 100px;
}

.max-w-576 {
  max-width: 576px;
}

.mb-96 {
  margin-bottom: 96px;
}

._w-half {
  width: 50%;
}

.max-w-half {
  max-width: 50%;
}

.h-90vh {
  height: 90vh;
}

.max-w-568 {
  max-width: 568px;
}

.max-w-340 {
  max-width: 340px;
}

.mb-32 {
  margin-bottom: 32px;
}

.max-w-376 {
  max-width: 376px;
}

.opacity-85 {
  opacity: .85;
}

.mb-44 {
  margin-bottom: 44px;
}

.mb-28 {
  margin-bottom: 28px;
}

.max-h-1000 {
  max-height: 1000px;
}

.max-w-1296 {
  max-width: 1296px;
}

.ml-auto {
  margin-left: auto;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-356 {
  max-width: 356px;
}

.max-w-488 {
  max-width: 488px;
}

.shadow {
  box-shadow: -5px 8px 20px 5px #0000004d;
}

._w-488 {
  width: 488px;
}

.bg--gray85 {
  background-color: var(--gray85);
}

.px-84 {
  padding-left: 84px;
  padding-right: 84px;
}

.max-w-312 {
  max-width: 312px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-56 {
  margin-bottom: 56px;
}

.py-92 {
  padding-top: 92px;
  padding-bottom: 92px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

._w-fit {
  border-radius: 0;
}

.flex-child-expand {
  flex: 1;
}

.flex-child-shrink {
  flex: 0 auto;
}

.flex-child-static {
  flex-grow: 0;
  flex-shrink: 0;
}

.footer {
  border-radius: 0;
}

.max-w-864 {
  max-width: 864px;
}

.mb-68 {
  margin-bottom: 68px;
}

.py-76 {
  padding-top: 76px;
  padding-bottom: 76px;
}

.pt-44 {
  padding-top: 44px;
}

.pb-108 {
  padding-bottom: 108px;
}

.max-w-208 {
  max-width: 208px;
}

.max-w-884 {
  max-width: 884px;
}

.h-48 {
  height: 48px;
}

.ml-24 {
  margin-left: 24px;
}

.h-44 {
  height: 44px;
}

.max-w-728 {
  max-width: 728px;
}

.max-w-292 {
  max-width: 292px;
}

.max-w-364 {
  max-width: 364px;
}

.max-w-296 {
  max-width: 296px;
}

.h-2 {
  height: 2px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.pl-40 {
  padding-left: 40px;
}

.max-w-184 {
  max-width: 184px;
}

.max-w-104 {
  max-width: 104px;
}

.ml-36 {
  margin-left: 36px;
}

.will-change-transform, .transform-style-3d {
  border-radius: 0;
}

.backface-hidden {
  backface-visibility: hidden;
  border-radius: 0;
}

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

.scale-100 {
  transform-style: preserve-3d;
  transform: scale3d(1, 1, 0);
}

.object-center {
  object-position: 50% 50%;
}

.mt-full {
  margin-top: 100%;
}

.max-w-1124 {
  max-width: 1124px;
}

.mb-24 {
  margin-bottom: 24px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.h-70vh {
  height: 70vh;
}

.mt-108 {
  margin-top: 108px;
}

.max-w-460 {
  max-width: 460px;
}

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

.max-w-464 {
  max-width: 464px;
}

.max-w-344 {
  max-width: 344px;
}

.max-w-120 {
  max-width: 120px;
}

.opacity-80 {
  opacity: .8;
}

.max-w-1144 {
  max-width: 1144px;
}

.max-w-1024 {
  max-width: 1024px;
}

.max-w-572 {
  max-width: 572px;
}

.max-w-220 {
  max-width: 220px;
}

.mb-20 {
  margin-bottom: 20px;
}

.max-w-408 {
  max-width: 408px;
}

.max-w-484 {
  max-width: 484px;
}

.max-w-84 {
  max-width: 84px;
}

.max-w-316 {
  max-width: 316px;
}

.truncate {
  border-radius: 0;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.h-1 {
  height: 1px;
}

.max-w-732 {
  max-width: 732px;
}

.text-35 {
  font-size: 35px;
  line-height: 42px;
}

.max-w-652 {
  max-width: 652px;
}

.h-300 {
  height: 300px;
}

.max-h-300 {
  max-height: 300px;
}

.min-h-300 {
  min-height: 300px;
}

.rounded-8 {
  border-radius: 8px;
}

.h-56 {
  height: 56px;
}

.placeholder-off-black, .placeholder-opacity-36 {
  clear: none;
}

.max-w-140 {
  max-width: 140px;
}

.nav {
  z-index: 1000;
  background-color: var(--transparent);
  position: absolute;
  inset: 0% 0% auto;
}

.navbar {
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}

.max-w-1280 {
  max-width: 1280px;
}

.max-w-200 {
  max-width: 200px;
}

.max-w-992 {
  max-width: 992px;
}

.nav__brandlink {
  flex: none;
  width: 100%;
  max-width: 200px;
}

.nav__logo {
  width: 100%;
}

.navmenu {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav__link {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s;
}

.nav__link:hover {
  color: var(--salmon-red);
}

.nav__dropdown {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.nav-dropdown__toggle {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all .4s;
  display: flex;
}

.nav-dropdown__toggle:hover {
  color: var(--salmon-red);
}

.nav-dropdown__list.w--open {
  width: 100%;
  max-width: 116px;
}

.nav-dropdown__listmenu {
  width: 100%;
}

.navlink_cta__group {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  display: flex;
}

.navlink__group {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navmenu__btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-size: 8px;
  line-height: 10px;
  text-decoration: none;
  display: none;
}

.navmenu__icon {
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  display: flex;
  position: relative;
}

.navmenu__icon-bar {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.max-w-16 {
  max-width: 16px;
}

.text-13 {
  font-size: 13px;
  line-height: 16px;
}

.max-w-116 {
  max-width: 116px;
}

.max-w-20 {
  max-width: 20px;
}

.nav-dropdown__icon {
  align-items: center;
  display: flex;
}

.hover-text-salmon-red {
  transition: all .4s;
}

.hover-text-salmon-red:hover {
  color: var(--salmon-red);
}

.max-w-328 {
  max-width: 328px;
}

.max-w-520 {
  max-width: 520px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.max-w-424 {
  max-width: 424px;
}

.max-w-1064 {
  max-width: 1064px;
}

.max-w-516 {
  max-width: 516px;
}

.pt-108 {
  padding-top: 108px;
}

.rt-terms-of-use h1, .rt-terms-of-use h2, .rt-terms-of-use h3, .rt-terms-of-use h4, .rt-terms-of-use h5, .rt-terms-of-use h6 {
  margin-bottom: 13px;
}

.rt-terms-of-use p {
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 24px;
}

.rt-terms-of-use li {
  margin-bottom: 10px;
  font-weight: 400;
}

.rt-terms-of-use a {
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .flex.md-flex-col {
    flex-direction: column;
  }

  .flex.md-justify-center {
    justify-content: center;
  }

  .flex.md-items-center {
    align-items: center;
  }

  .flex.md-flex-wrap {
    flex-wrap: wrap;
  }

  .flex.md-gap-80 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .md-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .md-mb-56 {
    margin-bottom: 56px;
  }

  .md-ml-0 {
    margin-left: 0;
  }

  .md-ml-auto {
    margin-left: auto;
  }

  .md-max-w-full {
    max-width: 100%;
  }

  .md-shadow-none {
    box-shadow: 0 0 #0000;
  }

  .md-h-70vh {
    height: 70vh;
  }

  .md-display-none {
    display: none;
  }

  .md-mb-32 {
    margin-bottom: 32px;
  }

  .md-display-block {
    display: block;
  }

  .md-max-w-520 {
    max-width: 520px;
  }

  .sm-pt-60 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .flex.sm-flex-col {
    flex-direction: column;
  }

  .flex.sm-justify-end {
    justify-content: flex-end;
  }

  .flex.sm-gap-32 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .flex.sm-gap-44 {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

  .flex.sm-items-center {
    align-items: center;
  }

  .flex.sm-gap-0 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .sm-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sm-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm-px-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .sm-py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sm-mt-0 {
    margin-top: 0;
  }

  .sm-max-w-full {
    max-width: 100%;
  }

  .sm-px-4 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .sm-w-full {
    width: 100%;
  }

  .sm-max-w-40 {
    max-width: 40px;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .flex.xs-flex-col {
    flex-direction: column;
  }

  .flex.xs-gap-4 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .flex.xs-gap-8 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .flex.xs-gap-12 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .flex.xs-gap-16 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .flex.xs-gap-32 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .flex.xs-gap-24 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .flex.sm-gap-48 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .flex.xs-items-center {
    align-items: center;
  }

  .flex.xs-justify-center {
    justify-content: center;
  }

  .flex.xs-gap-0 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .xs-px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .xs-px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .cursor-auto {
    cursor: auto;
  }

  .text-5xl {
    font-size: 50px;
    line-height: 60px;
  }

  .text-4xl {
    font-size: 30px;
    line-height: 36px;
  }

  .xs-display-none {
    display: none;
  }

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

  .xs-max-w-full {
    max-width: 100%;
  }

  .xs-mb-32 {
    margin-bottom: 32px;
  }

  .xs-mb-16 {
    margin-bottom: 16px;
  }

  .xs-text-md {
    font-size: 18px;
    line-height: 22px;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gantari';
  src: url('../fonts/Gantari-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gantari';
  src: url('../fonts/Gantari-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}