/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

html, body {
  height: 100%;
}

html {
  overflow-x: hidden;
  font-size: 100%;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  font-family: "Prata", Georgia, serif;
  color: #000;
  background-color: #FFF;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

h2 {
  line-height: 1.1;
}

a {
  text-decoration: underline;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

p, ol, ul, blockquote, img, table, form, fieldset, pre, iframe, object, embed, video, audio, figure, figcaption, canvas, .par, h4 {
  margin-top: 24px;
  margin-bottom: 24px;
}
p:first-child, ol:first-child, ul:first-child, blockquote:first-child, img:first-child, table:first-child, form:first-child, fieldset:first-child, pre:first-child, iframe:first-child, object:first-child, embed:first-child, video:first-child, audio:first-child, figure:first-child, figcaption:first-child, canvas:first-child, .par:first-child, h4:first-child {
  margin-top: 0;
}
p:last-child, ol:last-child, ul:last-child, blockquote:last-child, img:last-child, table:last-child, form:last-child, fieldset:last-child, pre:last-child, iframe:last-child, object:last-child, embed:last-child, video:last-child, audio:last-child, figure:last-child, figcaption:last-child, canvas:last-child, .par:last-child, h4:last-child {
  margin-bottom: 0;
}

::-moz-selection {
  color: #FFF;
  background-color: #000;
}

::selection {
  color: #FFF;
  background-color: #000;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (min-width: 1441px) {
  .container {
    max-width: 92vw;
  }
}

[data-aspect-box]:before {
  float: left;
  width: 1px;
  height: 0;
  padding-bottom: calc(100% / (var(--ratio)));
  margin-left: -1px;
  content: "";
}
[data-aspect-box]:after {
  display: table;
  clear: both;
  content: "";
}

.uppercase {
  text-transform: uppercase;
}

.theme {
  --background: #FFF;
  background-color: var(--background);
}
.theme--white {
  --background: #FFF;
}
.theme--hillside-green {
  --background: #EBEFE7;
}
.theme--tartan-red {
  --background: #F9ECEC;
}
.theme--evening-orange {
  --background: #FEEFE9;
}
.theme--bottle-blue {
  --background: #E8E8F9;
}

.age-gated {
  height: 100vh;
  overflow-y: scroll;
}

[data-appear] {
  opacity: 0;
}

.module-theme-white {
  background-color: #FFF;
}

.module-theme-offwhite {
  background-color: #FBF9F6;
}

.js picture[lazyloadme] {
  position: relative;
  overflow: hidden;
}
.js picture[lazyloadme].absolute {
  position: absolute;
  width: 100%;
  height: 100%;
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .js picture[lazyloadme]:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 99.9%;
    height: 100%;
    content: "";
    background: transparent;
    opacity: 0;
    transition: 0.62s ease-in-out;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .js picture[lazyloadme]:not([loaded]):before {
    opacity: 1;
  }
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .js picture[lazyloadme] img {
    will-change: filter, transform;
    transition: 0.72s ease-in-out;
  }
  .js picture[lazyloadme]:not([loaded]) img {
    filter: blur(12px);
    transform: scale(1.04);
  }
}

.module-gradient-fixed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: radial-gradient(50% 50% at 50% 50%, #F2611F 15.86%, rgba(242, 97, 31, 0) 100%);
  mix-blend-mode: multiply;
  opacity: 0.5;
  transform: scale(2) translate(-20%, 30%);
}
@media (min-width: 1024px) {
  .module-gradient-fixed {
    transform: translate(-30%, 10%);
  }
}
.hero-default--image-with-text-below .module-gradient-fixed {
  display: none;
}
@media (min-width: 1024px) {
  .hero-default--image-with-text-below .module-gradient-fixed {
    display: block;
  }
}

.accessibility {
  position: absolute;
  left: -9999px;
  width: 1px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.nav-active {
  height: 100%;
  overflow: hidden;
}

.header {
  display: none;
}
@media (min-width: 1024px) {
  .header {
    position: absolute;
    top: 0;
    z-index: 3;
    display: block;
    width: 100%;
  }
}
.header--alt {
  background-color: #002E6D;
}
.header--alt #main-navigation-inner a {
  --color: #FFF;
}
.nav-transparent .header {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 30;
}
@media (min-width: 1024px) {
  .header .container {
    max-width: 100%;
  }
}

.header-mobile {
  display: block;
}
@media (min-width: 1024px) {
  .header-mobile {
    display: none;
  }
}

.main-navigation-row {
  display: flex;
  align-items: center;
  padding: 11px 0 2px 0;
  --color: #000;
}
.nav-transparent .main-navigation-row {
  --color: #FBF9F6;
}
.main-navigation-row > ul {
  display: flex;
  flex: 0 0 calc(50% - 72px);
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.age-gated .main-navigation-row > ul {
  pointer-events: none;
  opacity: 0;
}
.main-navigation-row > ul:nth-child(3) {
  justify-content: flex-end;
}
.main-navigation-row > ul li {
  padding: 0 25px;
}
.main-navigation-row > ul a {
  position: relative;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 1.2777777778;
  color: var(--color);
  text-decoration: none;
}
.main-navigation-row > ul a:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  height: 1px;
  content: "";
  background-color: var(--color);
  opacity: 0;
  transition: 250ms;
  transform: translateY(4px);
}
.main-navigation-row > ul a:hover:after, .main-navigation-row > ul a.is-active:after {
  opacity: 1;
  transform: translateY(0);
}
.main-navigation-row #logo {
  display: block;
  flex: 0 0 144px;
  width: 144px;
}

.header-mobile {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 60;
  pointer-events: none;
}
.header-mobile .container,
.header-mobile .header-mobile-inner,
.header-mobile .header-mobile-content {
  height: 100%;
}
.header-mobile .header-mobile-inner {
  padding: 28px 0 0;
  pointer-events: none;
}
.nav-active .header-mobile .header-mobile-inner {
  pointer-events: all;
}
.header-mobile .header-mobile-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background-color: rgba(0, 46, 109, 0.92);
  opacity: 0;
}
.header-mobile #mobile-logo {
  position: relative;
  z-index: 20;
  display: block;
  max-width: 177px;
  margin: 0 auto;
  pointer-events: all;
}
.header-mobile #mobile-logo img {
  max-width: 100%;
}
.header-mobile nav {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.header-mobile nav:not(.socials) {
  margin: auto;
}
.header-mobile nav a {
  font-family: "DM Sans";
  font-size: 40px;
  line-height: 1.65;
  color: #FBF9F6;
  text-decoration: none;
}
.header-mobile nav.socials {
  position: absolute;
  right: 0;
  bottom: 45px;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header-mobile nav.socials a {
  margin: 0 0.35em;
}

[data-trigger-navigation] {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  pointer-events: all;
  background-color: rgba(251, 249, 246, 0.5);
  border: 0;
  border-radius: 50%;
}
.age-gated [data-trigger-navigation] {
  pointer-events: none;
  opacity: 0;
}
[data-trigger-navigation] svg {
  display: none;
}
[data-trigger-navigation] svg:nth-child(1) {
  display: flex;
}
.nav-active [data-trigger-navigation] svg:nth-child(1) {
  display: none;
}
[data-trigger-navigation] svg:nth-child(2) {
  display: none;
}
.nav-active [data-trigger-navigation] svg:nth-child(2) {
  display: flex;
}

.footer {
  padding: 56px 0;
  background-color: #002e6d;
}
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .footer__row {
    flex-direction: row;
  }
}
.footer__column:nth-child(1), .footer__column:nth-child(3) {
  flex: 0 0 calc(50% - 105px);
}
.footer__column:nth-child(2) {
  flex: 0 0 100%;
  order: -2;
}
@media (min-width: 1024px) {
  .footer__column:nth-child(2) {
    flex: 0 0 210px;
    order: 1;
  }
}
.footer__column:nth-child(2) img {
  max-width: 275px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__column:nth-child(2) img {
    max-width: 100%;
  }
}
.footer__column:nth-child(3) {
  order: -1;
  margin: 30px 0 65px;
}
@media (min-width: 1024px) {
  .footer__column:nth-child(3) {
    order: 2;
    margin: 0;
  }
}
.footer__column:nth-child(3) nav {
  justify-content: flex-end;
}
.footer__column:nth-child(3) nav a:first-child {
  display: none;
}
@media (min-width: 1024px) {
  .footer__column:nth-child(3) nav {
    align-items: center;
  }
  .footer__column:nth-child(3) nav a:first-child {
    display: block;
  }
}
.footer a:not(.social-link) {
  position: relative;
  display: block;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.3125;
  color: #FBF9F6;
  text-decoration: none;
}
.footer a:not(.social-link):after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  height: 1px;
  content: "";
  background-color: #FBF9F6;
  opacity: 0;
  transition: 250ms;
  transform: translateY(4px);
}
.footer a:not(.social-link):hover:after, .footer a:not(.social-link).is-active:after {
  opacity: 1;
  transform: translateY(0);
}
.footer a.social-link {
  transition: 250ms;
}
@media (min-width: 1024px) {
  .footer a.social-link:nth-child(2) {
    margin-left: 40px;
  }
}
.footer a.social-link + .social-link {
  margin-left: 1.5em;
}
@media (min-width: 1024px) {
  .footer a.social-link + .social-link {
    margin-left: 1em;
  }
}
.footer a.social-link:hover {
  opacity: 0.8;
  transform: scale(0.9);
}
.footer nav {
  display: flex;
  flex-direction: row;
}
.footer nav.footer__menu {
  display: inline-flex;
  margin: 0 -15px;
}
.footer nav.footer__menu a {
  margin: 0 5px;
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .footer nav.footer__menu a {
    margin: 0 15px;
    font-size: 16px;
    text-decoration: none;
  }
}

.tg-legal {
  max-width: 1006px;
  margin: 2.4em auto 0;
  font-family: "DM Sans";
  font-size: 10px;
  line-height: 1.5;
  color: rgba(251, 249, 246, 0.6);
  text-align: center;
}

.age-gate {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 1024px) {
  .age-gate {
    text-align: left;
  }
}
.age-gated .age-gate {
  pointer-events: all;
  opacity: 1;
}
.age-gate .module__fullscreen-chapter {
  height: 100%;
  max-height: initial;
}
.age-gate img {
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.age-gate .age-gate-blue {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  content: "";
  background: #181DC3;
  mix-blend-mode: hard-light;
}
.age-gate .module__fullscreen-chapter__inner {
  z-index: 3;
  justify-content: flex-end;
}
.age-gate .module__fullscreen-chapter__big-text {
  font-size: 38px;
  line-height: 1;
  color: #FFF;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .age-gate .module__fullscreen-chapter__big-text {
    font-size: 96px;
  }
}
.age-gate .c-link {
  display: inline-block;
  padding: 0;
  margin-top: 24px !important;
  font-family: "DM Sans";
  font-size: 18px;
  color: #FFF;
  text-transform: initial;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
@media (min-width: 1024px) {
  .age-gate .c-link {
    font-size: 22px;
  }
}
.age-gate .c-link + .c-link {
  margin-left: 1em;
}
.age-gate .c-link:after {
  display: block;
  content: "";
  border-bottom: 1px solid #FFF;
  opacity: 0;
  transition: 250ms;
  transform: translateY(4px);
}
.age-gate .c-link:hover:after {
  opacity: 1;
  transform: translateY(0);
}
.age-gate .age-gate-description {
  max-width: 808px;
  margin-top: 80px;
  font-family: "DM Sans";
  font-size: 12px;
  line-height: 1.5;
  color: #FFF;
  letter-spacing: 0.01em;
}
.age-gate .age-gate-description a {
  color: #FFF;
}

[data-anchor], [data-anchor-block] {
  display: block;
  max-width: 44px;
  margin: 0 auto;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  -webkit-animation-name: updown;
          animation-name: updown;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media (min-width: 1024px) {
  [data-anchor], [data-anchor-block] {
    transition-duration: 300ms;
    transform: translateY(0);
  }
  [data-anchor]:hover, [data-anchor-block]:hover {
    transform: translateY(3px);
  }
}

@-webkit-keyframes updown {
  from {
    transform: translateY(-3px);
  }
  to {
    transform: translateY(3px);
  }
}

@keyframes updown {
  from {
    transform: translateY(-3px);
  }
  to {
    transform: translateY(3px);
  }
}
.c-link {
  --color: #FBF9F6;
  font-family: "DM Sans";
  font-size: 12px;
  font-weight: 500;
  color: var(--color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color);
}
.c-link--continue {
  display: inline-flex;
  align-items: center;
  border-bottom: 0;
}
.c-link--continue span {
  color: var(--color);
}
.c-link--continue span:after {
  display: block;
  content: "";
  border-bottom: 1px solid var(--color);
  opacity: 1;
  transition: 250ms;
  transform: translateY(0);
}
.c-link--continue svg {
  max-width: 46px;
  margin-right: 20px;
  transition: 250ms;
}
.c-link--continue svg path, .c-link--continue svg line {
  stroke: var(--color);
}
.c-link--continue:hover span:after {
  opacity: 0;
  transform: translateY(4px);
}
.c-link--continue:hover svg {
  transform: translateX(4px);
}

.c-btn {
  --color: #FFF;
  --background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  height: 61px;
  padding: 0 1.35em;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--background);
  border: 0;
  border-radius: 2px;
  transition: 350ms;
}
.c-btn:hover {
  opacity: 0.85;
  transform: scale(0.975);
}

.module__fullscreen-chapter {
  --ratio: calc(390/844);
  position: relative;
  display: flex;
  max-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  color: var(--theme);
}
.module__fullscreen-chapter--light {
  --theme: #FBF9F6;
}
.module__fullscreen-chapter--dark {
  --theme: #000;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter {
    --ratio: calc(1301/853);
    max-height: 90vh;
  }
}
.module__fullscreen-chapter--fill {
  min-height: 100vh;
}
.module__fullscreen-chapter--max-viewport {
  max-height: 93vh;
}
.module__fullscreen-chapter__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.module__fullscreen-chapter__content {
  margin: 0 -40px;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__content {
    margin: 0;
  }
}
.module__fullscreen-chapter__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 50px 24px;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__inner {
    padding: 100px 77px;
  }
}
.module__fullscreen-chapter--align-bottom .module__fullscreen-chapter__inner {
  justify-content: flex-end;
}
.module__fullscreen-chapter__title, .module__fullscreen-chapter__subtitle {
  display: block;
}
.module__fullscreen-chapter__title {
  margin-bottom: 1.1666666667em;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__title {
    font-size: 18px;
  }
}
.module__fullscreen-chapter__subtitle {
  max-width: 8.2564102564em;
  margin-bottom: 0.2051282051em;
  font-size: 36px;
  line-height: 1;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__subtitle {
    font-size: 78px;
  }
}
.module__fullscreen-chapter__text {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.6666666667;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__text {
    max-width: 432px;
    font-size: 18px;
  }
}
.module__fullscreen-chapter__big-text {
  display: block;
  max-width: 13em;
  font-size: 28px;
  line-height: 1.2777777778;
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) {
  .module__fullscreen-chapter__big-text {
    font-size: 36px;
  }
}
.module__fullscreen-chapter__big-text + .c-link {
  margin-top: 35px;
}
.module__fullscreen-chapter__big-text + .module__fullscreen-chapter__paragraph {
  margin-top: 10px;
}
.module__fullscreen-chapter__paragraph {
  max-width: 25em;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 1.6666666667;
}
.module__fullscreen-chapter .c-link {
  --color: var(--theme);
}

.hero-default.hero-default--image-with-text-overlay .hero-default__picture {
  display: contents;
}
.hero-default .hero-default-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 25px -10px -10px;
}
@media (min-width: 1024px) {
  .hero-default .hero-default-buttons {
    flex-direction: row;
  }
}
.hero-default .hero-default-buttons a {
  --background: #FFF;
  --color: #002e6d;
  margin: 10px;
}
.hero-default .hero-default-buttons a svg {
  margin-left: 0.75em;
}
.hero-default [data-anchor] {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 30;
}
.hero-default [data-anchor] path {
  stroke: #FFF;
}

@media (max-width: 1023px) {
  .hero-default--image-with-text-overlay .module__fullscreen-chapter__inner {
    justify-content: center;
    text-align: center;
  }
  .hero-default--image-with-text-overlay .module__fullscreen-chapter__subtitle {
    margin: 0 auto;
    font-size: 48px;
  }
  .hero-default--image-with-text-overlay.module__fullscreen-chapter--max-viewport {
    max-height: 100vh;
  }
  .hero-default--image-with-text-below {
    --theme: #000;
    flex-direction: column;
    max-height: none;
  }
  .hero-default--image-with-text-below picture {
    position: relative;
    height: 68vh;
  }
  .hero-default--image-with-text-below .module__fullscreen-chapter__inner {
    text-align: center;
  }
  .hero-default--image-with-text-below .module__fullscreen-chapter__subtitle {
    margin: 0 auto;
  }
  .hero-default--image-with-text-below:before, .hero-default--image-with-text-below:after {
    display: none;
  }
  .hero-default--image-with-text-below .hero-default-buttons a {
    --background: #002e6d;
    --color: #FFF;
  }
  .hero-default--image-with-text-below .hero-default-buttons a svg path {
    fill: #FFF;
  }
}
.module-text {
  padding: 155px 0;
}
.module-text__content {
  max-width: 612px;
  margin: 0 auto;
}
.module-text__title {
  margin: 0 0 0.3611111111em;
  font-size: 36px;
  line-height: 1.2777777778;
  letter-spacing: 0.01em;
}
.module-text__body {
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 1.6666666667;
}
.module-text__body p:first-child {
  margin-top: 0;
}
.module-text a {
  color: #000;
}

.module-text-image-big {
  max-width: 1020px;
  padding: 100px 0;
  margin: 0 auto;
}
.module-text-image-big__content {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 -40px;
}
@media (min-width: 1024px) {
  .module-text-image-big__content {
    flex-direction: column;
    margin: 0;
  }
}
.module-text-image-big__row {
  padding: 0 25px;
  margin: 35px 0 0;
}
@media (min-width: 1024px) {
  .module-text-image-big__row {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0 -15px;
  }
}
.module-text-image-big__column {
  flex: 1;
}
@media (min-width: 1024px) {
  .module-text-image-big__column {
    padding: 0 15px;
  }
}
.module-text-image-big__title {
  display: block;
  max-width: 398px;
  margin: 0 0 0.1666666667em;
  font-size: 32px;
  line-height: 1.2173913043;
}
@media (min-width: 1024px) {
  .module-text-image-big__title {
    font-size: 46px;
  }
}
.module-text-image-big__text {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.66666667;
}
@media (min-width: 1024px) {
  .module-text-image-big__text {
    max-width: 386px;
    margin: 0 0 0 auto;
    font-size: 18px;
  }
}
.module-text-image-big__image {
  display: flex;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .module-text-image-big__image {
    margin-top: 40px;
    --ratio: calc(937/525);
  }
}
.module-text-image-big__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.module-text-image-big__image picture {
  width: 100%;
  height: 100%;
}
.module-text-image-big .c-link {
  --color: #000;
  font-weight: bold;
}

.module-text-image-small {
  max-width: 1020px;
  padding: 30px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .module-text-image-small {
    padding: 100px 0;
  }
}
.module-text-image-small .container {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .module-text-image-small .container {
    max-width: 1100px;
    padding: 0 40px;
  }
}
.module-text-image-small__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .module-text-image-small__row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.module-text-image-small__column {
  flex: 1;
}
.module-text-image-small__image img {
  width: 100%;
}
.module-text-image-small__body {
  margin: 0 0 0 auto;
}
@media (min-width: 1024px) {
  .module-text-image-small__body {
    max-width: 421px;
    padding: 0 0 0 30px;
  }
}
.module-text-image-small__title {
  display: block;
  margin: 0.83333em 0 0.36em;
  font-size: 28px;
  line-height: 1.2777777778;
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) {
  .module-text-image-small__title {
    margin: 0 0 0.36em;
    font-size: 36px;
  }
}
.module-text-image-small__text {
  margin: 0 0 1.9444444444em 0;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.6666666667;
}
@media (min-width: 1024px) {
  .module-text-image-small__text {
    font-size: 18px;
  }
}
.module-text-image-small .c-link {
  --color: #000;
  margin-top: 35px;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .module-text-image-small--image-right .module-text-image-small__row {
    flex-direction: row-reverse;
  }
  .module-text-image-small--image-right .module-text-image-small__body {
    padding: 0 30px 0 0;
    margin: 0;
  }
}

.module-text-image-small-centered {
  max-width: 1920px;
  padding: 80px 0;
}
@media (min-width: 1024px) {
  .module-text-image-small-centered figure {
    margin-left: calc((100vw - 1085px + 65px) / 2 * -1);
  }
  .module-text-image-small-centered img {
    max-width: 100%;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.module-text-image-small-centered .module-text-image-small__title {
  font-size: 32px;
}
.module-text-image-small-centered .module-text-image-small__text {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .module-text-image-small-centered .module-text-image-small__body {
    max-width: 490px;
    padding: 0 0 0 80px;
    margin: 0;
  }
  .module-text-image-small-centered .module-text-image-small__row {
    align-items: center;
  }
}

.module-image-text-full-split {
  padding: 63px 0;
}
.module-image-text-full-split__item + .module-image-text-full-split__item {
  padding-top: 63px;
}
.module-image-text-full-split__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__row {
    flex-direction: row;
  }
}
.module-image-text-full-split__column {
  flex: 1;
}
.module-image-text-full-split__image {
  margin: 0 -40px;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__image {
    height: 100%;
    margin: 0;
  }
}
.module-image-text-full-split__image img {
  width: 100%;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.module-image-text-full-split__body {
  height: 100%;
  padding: 40px 20px;
  margin: 0 -40px;
}
.module-image-text-full-split__body.broken-white {
  background-color: #FBF9F6;
}
.module-image-text-full-split__body.white {
  background-color: #FFF;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__body {
    padding: 80px;
    margin: 0;
  }
}
.module-image-text-full-split__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__content {
    max-width: 491px;
  }
}
.module-image-text-full-split__title {
  display: block;
  margin: 0 0 0.625em;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2777777778;
  text-transform: uppercase;
}
.module-image-text-full-split__title.blue {
  color: #002e6d;
}
.module-image-text-full-split__title.green {
  color: #3B6112;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__title {
    margin: 0 0 0.555em;
    font-size: 18px;
  }
}
.module-image-text-full-split__subtitle {
  display: block;
  margin: 0 0 0.75em;
  font-size: 40px;
  line-height: 1.1724137931;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__subtitle {
    margin: 0;
    font-size: 58px;
  }
}
.module-image-text-full-split__text {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.666667;
}
@media (min-width: 1024px) {
  .module-image-text-full-split__text {
    font-size: 18px;
  }
}
.module-image-text-full-split__text p {
  margin: 0;
}
.module-image-text-full-split__text strong, .module-image-text-full-split__text h3 {
  font-weight: 500;
  letter-spacing: 0.04em;
}
.module-image-text-full-split__text h3 {
  font-size: inherit;
  line-height: inherit;
  text-transform: uppercase;
}
.module-image-text-full-split__text + .module-image-text-full-split__text {
  margin-top: 35px;
}
.module-image-text-full-split__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.module-newsletter {
  width: 100%;
  padding: 70px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .module-newsletter {
    padding: 120px 0;
  }
}
.module-newsletter .container {
  max-width: 1200px;
  padding: 0 30px;
}
@media (min-width: 460px) {
  .module-newsletter .container {
    padding: 0 40px;
  }
}
.module-newsletter__row {
  display: flex;
  justify-content: center;
}
.module-newsletter-submitted .module-newsletter__row {
  align-items: center;
}
.module-newsletter__image {
  width: 100%;
  max-width: 163px;
}
@media (min-width: 460px) {
  .module-newsletter__image {
    max-width: 269px;
    margin: 0 30px 0 0;
  }
}
.module-newsletter__image img {
  margin-top: -55px;
}
.module-newsletter__content {
  flex: 1;
  max-width: 700px;
}
.module-newsletter-submitted .module-newsletter__content {
  max-width: 469px;
}
.module-newsletter__title {
  font-size: 40px;
  line-height: 1.1724137931;
}
@media (min-width: 460px) {
  .module-newsletter__title {
    font-size: 58px;
  }
}
.module-newsletter__text {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.666667;
}
@media (min-width: 460px) {
  .module-newsletter__text {
    font-size: 18px;
  }
}
.module-newsletter form {
  margin: 50px 0 0 -163px;
}
@media (min-width: 460px) {
  .module-newsletter form {
    max-width: 670px;
    margin: 30px 0 0 0;
  }
}
.module-newsletter form label {
  position: relative;
  display: block;
}
.module-newsletter form label + label {
  margin-top: 30px;
}
.module-newsletter form label.has-error span {
  color: #B84844 !important;
}
.module-newsletter form label.has-error input {
  color: #B84844;
  border-color: #B84844;
}
.module-newsletter form input {
  width: 100%;
  padding: 10px 0px;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 1.3333;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.module-newsletter form input::-moz-placeholder {
  opacity: 0;
}
.module-newsletter form input:-ms-input-placeholder {
  opacity: 0;
}
.module-newsletter form input::placeholder {
  opacity: 0;
}
.module-newsletter form span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 1.3333;
  color: rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition-duration: 300ms;
  transform: translateY(0);
}
.module-newsletter form input:not(:-moz-placeholder-shown) + span {
  font-size: 14px;
  color: #000;
  transform: translateY(-10px);
}
.module-newsletter form input:not(:-ms-input-placeholder) + span {
  font-size: 14px;
  color: #000;
  transform: translateY(-10px);
}
.module-newsletter form label:focus-within > span,
.module-newsletter form input:not(:placeholder-shown) + span {
  font-size: 14px;
  color: #000;
  transform: translateY(-10px);
}
.module-newsletter form button {
  width: 100%;
  margin: 30px 0 0;
  --background: #002e6d;
  --color: #FFF;
}
@media (min-width: 460px) {
  .module-newsletter form button {
    width: 258px;
  }
}

.module-newsletter-done {
  display: none;
}
.module-newsletter-submitted .module-newsletter-done {
  display: block;
}

.module-newsletter-clear {
  display: block;
}
.module-newsletter-submitted .module-newsletter-clear {
  display: none;
}

.module-call-to-action {
  padding: 80px 0;
}
@media (min-width: 1024px) {
  .module-call-to-action {
    padding: 125px 0;
  }
}
.module-call-to-action .container {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .module-call-to-action .container {
    padding: 0 40px;
  }
}
.module-call-to-action__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 940px;
  padding: 35px;
  margin: 0 auto;
  color: #FBF9F6;
  text-align: center;
  background-color: #002e6d;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  .module-call-to-action__block {
    flex-direction: row;
    padding: 65px;
    text-align: left;
  }
}
.module-call-to-action__body {
  flex: 1;
}
@media (min-width: 1024px) {
  .module-call-to-action__body {
    padding: 0 30px 0 0;
  }
}
.module-call-to-action__title {
  display: block;
  margin: 0 0 0.5em;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.277777;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .module-call-to-action__title {
    margin: 0 0 0.222em;
    font-size: 18px;
  }
}
.module-call-to-action__subtitle {
  display: block;
  margin: 0 0 0.5em;
  font-size: 40px;
  line-height: 1.217;
}
@media (min-width: 1024px) {
  .module-call-to-action__subtitle {
    margin: 0;
    font-size: 46px;
  }
}
.module-call-to-action .c-btn {
  --background: #FBF9F6;
  --color: #002e6d;
}
.module-segment-intro {
  position: relative;
  padding: 140px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .module-segment-intro {
    padding: 240px 0;
  }
}
.module-segment-intro__content {
  display: flex;
  flex-direction: column;
}
.module-segment-intro__title {
  margin: 0 0 1.25em;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.325;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.module-segment-intro__subtitle {
  margin: 0 0 0.2846153846em;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .module-segment-intro__subtitle {
    font-size: 78px;
  }
  .hero-default .module-segment-intro__subtitle {
    max-width: 952px;
    margin: 0 auto 0.2846153846em;
    font-size: 96px;
  }
}
.module-segment-intro__text {
  max-width: 800px;
  margin: 0 auto;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 1.666667;
}
@media (min-width: 1024px) {
  .module-segment-intro__text {
    font-size: 18px;
  }
}
.module-segment-intro__next {
  margin: 35px auto 0;
}
@media (min-width: 1024px) {
  .module-segment-intro__next {
    margin: 65px auto 0;
  }
}
.hero-default .module-segment-intro {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 100px 0 0;
}
@media (min-width: 1024px) {
  .hero-default .module-segment-intro {
    height: calc(100vh - 130px);
    padding: 100px 0;
  }
}

.chapter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  padding: 14px;
  background-image: url("/assets/images/bg-small.jpg");
  background-repeat: no-repeat;
  background-position: center -60px;
  background-size: cover;
  opacity: 0;
  -webkit-animation: fadeIn 0.75s forwards;
          animation: fadeIn 0.75s forwards;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
@media (min-width: 768px) {
  .chapter {
    background-image: url("/assets/images/bg-wide.jpg");
    background-position: center top;
  }
}
@media (min-width: 1024px) {
  .chapter {
    background-image: url("/assets/images/bg-wider.jpg");
    background-position: center 70%;
  }
}
@media (min-width: 1140px) {
  .chapter {
    padding: 30px;
  }
}
.chapter:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 43%;
  content: "";
  background-image: linear-gradient(to top, black, rgba(255, 255, 255, 0));
}
@media (min-width: 1024px) {
  .chapter:after {
    height: 15%;
  }
}
.chapter__header {
  position: relative;
  z-index: 10;
  width: auto;
  margin-top: 10px;
  opacity: 0;
  -webkit-animation: fadeIn 0.75s forwards;
          animation: fadeIn 0.75s forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@media (min-width: 375px) {
  .chapter__header {
    margin-top: 24px;
  }
}
.chapter__header .logo img {
  width: 240px;
  height: auto;
}
.chapter__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-animation: fadeIn 0.75s forwards;
          animation: fadeIn 0.75s forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.chapter__body h1, .chapter__body .c-btn {
  position: relative;
  z-index: 2;
}
.chapter__body h1 {
  position: relative;
}
.chapter__body h1 sup {
  position: absolute;
  top: 24px;
  right: -15px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .chapter__body h1 sup {
    top: 34px;
    right: -2.2vw;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .chapter__body h1 sup {
    right: -20px;
  }
}
.chapter__body h1 > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 19px;
}
@media (min-width: 768px) {
  .chapter__body h1 > div {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .chapter__body {
    max-width: 80vw;
    margin-top: 0;
    margin-right: 7vw;
    margin-left: auto;
  }
  .chapter__body:after {
    position: absolute;
    top: -65%;
    left: -25%;
    width: 150%;
    height: 240%;
    content: "";
    background: radial-gradient(ellipse at center, rgba(0, 46, 109, 0.65) 0%, rgba(0, 46, 109, 0) 50%, rgba(0, 46, 109, 0) 100%);
  }
}
@media (min-width: 1140px) {
  .chapter__body {
    margin-right: 5%;
  }
}
@media (min-width: 1280px) {
  .chapter__body {
    margin-right: 10%;
  }
}
.chapter__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 960px;
  margin-right: auto;
  opacity: 0;
  -webkit-animation: fadeIn 0.75s forwards;
          animation: fadeIn 0.75s forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.chapter__footer p {
  padding-right: 20px;
  margin: 0;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .chapter__footer p {
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  .chapter__footer p {
    padding-right: 60px;
    font-size: 14px;
  }
}
.chapter__consent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: #002e6d;
  transition: opacity 0.3s;
}
.consent .chapter__consent {
  pointer-events: none;
  opacity: 0;
}
.chapter__consent__body {
  flex: 0 0 100%;
  margin-top: 28vh;
  text-align: center;
}
.chapter__consent__body h2 {
  font-size: 29px;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .chapter__consent__body h2 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .chapter__consent__body h2 {
    font-size: 50px;
  }
}
.chapter__consent__footer {
  flex: 0 0 100%;
  max-width: 960px;
  margin-top: auto;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .chapter__consent__footer {
    font-size: 12px;
  }
}
@media (min-width: 1140px) {
  .chapter__consent {
    padding: 30px;
  }
}

.insta {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
}
.insta svg {
  width: 100%;
  height: auto;
}
.insta:hover, .insta:focus, .insta:active {
  opacity: 0.6;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .home__hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    height: 100svh;
    padding: 95px 39px 25px;
    margin: 0 auto;
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .home__hero {
    height: auto;
    min-height: 100vh;
    padding: 85px 39px 25px;
  }
}
.home__hero img {
  margin: 0;
}

.home__hero__image {
  position: relative;
  flex-grow: 1;
  margin: 0;
  overflow: hidden;
}
.home__hero__image picture {
  width: 100%;
  height: 92vh;
  height: 92svh;
}
@media (min-width: 1024px) {
  .home__hero__image picture {
    height: 100%;
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .home__hero__image picture {
    height: calc(100vh - 129px);
  }
}
.home__hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home__hero__content {
  width: 100%;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .home__hero__content {
    padding-bottom: 0;
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .home__hero__content {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: none;
  }
  .home__hero__content [data-anchor] {
    margin: 16px auto;
  }
}

.house-of-tulchan {
  width: 100%;
  padding: 20px 20px 0 27px;
}
@media (min-width: 1024px) {
  .house-of-tulchan {
    padding: 20px 0 0;
  }
}
.house-of-tulchan img {
  width: 100%;
}

.module-gradient-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.6;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
.module-gradient-wrapper .module-gradient {
  position: absolute;
  width: 110vw;
  background: radial-gradient(50% 50% at 50% 50%, var(--color) 15.86%, rgba(242, 97, 31, 0) 100%);
  --ratio: calc(1/1);
}
.module-gradient-wrapper .module-gradient:nth-child(1) {
  --color: #F2611F;
  bottom: 0%;
  left: 0%;
  transform: translate(-50%, 50%);
}
.module-gradient-wrapper .module-gradient:nth-child(2) {
  --color: #002e6d;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

@-webkit-keyframes rotate {
  from {
    transform: rotate(90deg) scale(0.7);
  }
  to {
    transform: rotate(0) scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(90deg) scale(0.7);
  }
  to {
    transform: rotate(0) scale(1);
  }
}
#animation-calculator {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.age-gated #animation-calculator {
  display: none;
}
#animation-calculator picture, #animation-calculator img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
