@font-face {
  font-family: Fontawesome webfont;
  src: url('../fonts/fontawesome-webfont.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --white: white;
  --black: black;
  --accent-underline: #ff00aa;
  --monday-bg: #000000;
  --monday-text: #ffffff;
}

body {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 300;
  line-height: 45px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 24px;
}

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

.nav {
  opacity: 1;
  background-color: #fff0;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 90px;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: visible;
}

.nav-container {
  align-self: center;
  width: 90%;
  max-width: 1920px;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.nav-menu {
  background-color: #0000;
  align-items: center;
  height: 100%;
  margin-right: -20px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.hero-section {
  color: #1d1d1d;
  background-color: #ffffff;
  background-image: none;
  background-size: auto;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-particles-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.1s ease;
}

.hero-particles-layer.is-revealed {
  opacity: 1;
}

.hero-particles {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-cursor-ring {
  position: fixed;
  z-index: 10000;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  /* Calibrated so exclusion-on-white matches underline #ff00aa (screenshot loop). */
  background-color: color(display-p3 0.07 0.8 0.34);
  border: none;
  border-radius: 50%;
  pointer-events: none;
  visibility: hidden;
  mix-blend-mode: exclusion;
}

.hero-cursor-ring.is-visible {
  visibility: visible;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 56px;
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
  text-decoration: none;
}

.hero-scroll-hint.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hero-scroll-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}

.hero-scroll-hint__mouse {
  display: block;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(29, 29, 29, 0.38);
  border-radius: 12px;
  position: relative;
  animation: hero-scroll-bob 2.4s ease-in-out infinite;
}

.hero-scroll-hint__wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  background: rgba(29, 29, 29, 0.45);
  border-radius: 2px;
  animation: hero-scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes hero-scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.25;
    transform: translateY(8px);
  }
}

.home-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding-top: 120px;
  padding-bottom: 90px;
  display: flex;
}

.home-section.dark-grey {
  background-color: #0c0c0c;
  flex-wrap: nowrap;
}

.home-section.text-only {
  padding-top: 110px;
  padding-bottom: 88px;
}

.home-section.text-only .text-container.move-up {
  margin-top: 0;
}

.home-section.green {
  background-color: #00c8d9;
}

.home-section.red {
  background-color: #fe2832;
}

.home-section.black {
  background-color: #000;
}

.home-section.green2 {
  background-color: #02a6b2;
}

.home-section.red-copy {
  background-color: #f92439;
}

.home-section.light-grey {
  background-color: #e6e6e6;
}

.home-section.blue {
  background-color: #2b78d4;
}

.home-section.purple {
  background-color: #6033e6;
}

.home-section.monday-yellow {
  background-color: var(--monday-bg);
}

.home-section.monday-yellow .text-container {
  color: var(--monday-text);
}

.screens {
  text-align: center;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 80%;
  display: block;
}

.heading-1 {
  text-align: left;
  letter-spacing: 0;
  flex: 0 auto;
  width: 90%;
  max-width: 1150px;
  margin-top: 0%;
  margin-bottom: 0;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.42em;
  text-decoration: none;
  display: block;
  position: relative;
}

.nav-link {
  color: #585858;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  overflow: visible;
  transition: color 0.35s ease;
}

.nav-link:hover {
  text-decoration: none;
  color: #1d1d1d;
}

.nav-link.grey {
  color: #4a4a4a;
}

.nav-link .nav-char {
  display: inline-block;
  position: relative;
  white-space: pre;
  will-change: transform;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.6em;
  line-height: 1.6em;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 22%,
    #000 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 22%,
    #000 78%,
    transparent 100%
  );
}

.nav-link .nav-char-inner {
  display: block;
  transition: transform 0.58s cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: calc(var(--i, 0) * 0.035s);
  transform: translateY(0);
}

.nav-link .nav-char-face {
  display: block;
  height: 1.6em;
  line-height: 1.6em;
}

.nav-link .nav-char-face.is-soft {
  color: #585858;
}

.nav-link .nav-char-face.is-dark {
  color: #1d1d1d;
}

.nav-link .nav-char-gap {
  display: block;
  height: 1.6em;
}

.nav-link:hover .nav-char-inner {
  transform: translateY(-3.2em);
}

@media (prefers-reduced-motion: reduce) {
  .nav-link .nav-char-inner {
    transition: none !important;
  }

  .nav-link:hover .nav-char-inner {
    transform: none;
  }

  .nav-link:hover .nav-char-face.is-soft {
    color: #1d1d1d;
  }
}

.thumb1 {
  flex: 0 auto;
  width: 100%;
  max-width: 1190px;
  margin-top: -7%;
  margin-bottom: -5%;
}

.body {
  font-family: Khula, sans-serif;
}

.underline {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border: 0 solid transparent;
  border-bottom: none;
  line-height: .5em;
  display: inline-block;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 7px;
  background: var(--accent-underline);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.underline.is-drawn::after {
  transform: scaleX(1);
}

.hero-caret {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 4px;
  background: rgba(29, 29, 29, 0.55);
  vertical-align: -0.05em;
  animation: hero-caret-blink 0.9s steps(1) infinite;
}

.hero-caret.is-done {
  opacity: 0;
  animation: none;
}

@keyframes hero-caret-blink {
  0%, 45% {
    opacity: 1;
  }
  46%, 100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-caret {
    display: none;
  }

  .underline::after {
    transition: none;
    transform: scaleX(1);
  }

  .hero-cursor-ring {
    display: none;
  }

  .hero-scroll-hint__mouse,
  .hero-scroll-hint__wheel {
    animation: none;
  }
}

.logo {
  float: left;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  position: static;
  overflow: visible;
}

.sticky-nav {
  opacity: 0;
  color: #585858;
  background-color: #fff;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 60px;
  margin-top: 0;
  padding-top: 0;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: visible;
}

.text-container {
  width: 90%;
  max-width: 580px;
  margin-top: 70px;
  display: block;
}

.text-container.move-up {
  margin-top: 20px;
}

.text-container.dark-grey {
  perspective: none;
  color: #4a4a4a;
  transform: translate(0);
}

.heading-2 {
  opacity: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  display: block;
}

.heading-2.opacity-60 {
  opacity: .6;
}

.heading-2.opacity-40 {
  opacity: .4;
}

.heading-2.opacity-80 {
  opacity: .8;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 300;
  line-height: 40px;
}

.heading-3.about {
  margin-bottom: 24px;
}

.paragraph-1 {
  opacity: 1;
  letter-spacing: .3px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.paragraph-1.opacity-80 {
  opacity: .8;
}

.paragraph-1.about {
  opacity: .8;
  margin-bottom: 32px;
}

.thumb2 {
  flex: 0 auto;
  width: 105%;
  max-width: 1160px;
  margin-top: -1%;
}

.thumb3 {
  flex: 0 auto;
  width: 100%;
  max-width: 1050px;
  margin-top: -1%;
  margin-bottom: -3%;
  margin-left: -2%;
}

.thumb3.monday-shot {
  width: 1224px;
  max-width: 100%;
  height: auto;
  margin-top: -24px;
  margin-bottom: -32px;
}

.header-4 {
  letter-spacing: .5px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 300;
}

.about-container {
  width: 90%;
  max-width: 580px;
  margin-top: 0;
  display: block;
}

.link {
  color: #1d1d1d;
  align-items: center;
  height: 100%;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link.grey {
  color: #4a4a4a;
}

.avoid-name-break {
  color: #ad161600;
  letter-spacing: -.07em;
}

.burger-btn-wrapper {
  text-align: center;
  cursor: pointer;
  background-image: linear-gradient(225deg, #d1893a, #cec232);
  border-radius: 3px;
  padding: 5px;
  display: none;
  position: relative;
  overflow: hidden;
}

.burger-line-2 {
  background-color: #fff;
  border-radius: 1px;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  display: block;
}

.menu-button-2, .menu-button-2.w--open {
  background-color: #0000;
}

.link-mobile {
  color: #fff;
  align-items: center;
  height: 0%;
  text-decoration: none;
  display: none;
}

.link-mobile.w--current, .mobile-menu {
  display: none;
}

.mobile-nav-link {
  color: #fff;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.logo-mobile {
  float: left;
  align-items: center;
  height: 100%;
  font-size: 13px;
  display: none;
  position: static;
  overflow: visible;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

.thumb4 {
  flex: 0 auto;
  width: 100%;
  max-width: 1200px;
  margin-top: -3%;
  margin-bottom: -3%;
}

.thumb2-copy {
  flex: 0 auto;
  width: 110%;
  max-width: 1200px;
  margin-top: -7%;
}

.thumb3-copy {
  flex: 0 auto;
  width: 110%;
  max-width: 1100px;
  margin-top: -4%;
  margin-bottom: -5%;
  margin-left: -2%;
}

.thumb4-copy {
  flex: 0 auto;
  width: 100%;
  max-width: 1200px;
  margin-top: -4%;
  margin-bottom: -4%;
}

.thumb5 {
  width: 100%;
  max-width: 1114px;
  margin-top: -2%;
  margin-bottom: -2%;
}

.thumb-6 {
  width: 100%;
  max-width: 1108px;
  margin-bottom: -4%;
}

.link-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline;
}

@media screen and (max-width: 991px) {
  .nav {
    z-index: 998;
    width: 80%;
    display: flex;
    top: 0;
    bottom: auto;
    left: 0;
  }

  .nav-container {
    display: flex;
  }

  .nav-menu {
    background-color: #000;
    width: 100%;
    height: 100vh;
    margin-top: -9px;
    position: absolute;
  }

  .heading-1 {
    width: 80%;
    font-size: 7vh;
  }

  .nav-link {
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    height: 10vh;
    display: flex;
    position: relative;
    inset: 0;
  }

  .icon-2 {
    color: #fff;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .logo {
    height: 40px;
    position: absolute;
    top: 20px;
    left: 6%;
  }

  .burger-btn-wrapper {
    z-index: 1000;
    float: right;
    background-image: none;
    flex-direction: column;
    flex: 0 auto;
    margin: 18px 25px 18px 18px;
    padding: 11px;
    display: inline-block;
    position: fixed;
    top: 0;
    right: 0;
  }

  .burger-line-2 {
    background-color: #000;
  }

  .menu-button-2 {
    margin-right: -5%;
    padding-right: 18px;
    display: block;
  }

  .link-mobile.w--current {
    z-index: 1;
    flex: 1;
    height: 100%;
    display: flex;
    position: relative;
  }

  .mobile-menu {
    z-index: 999;
    background-color: #000;
    flex-direction: row;
    align-items: center;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .mobile-nav-link {
    float: none;
    text-align: center;
    letter-spacing: 10px;
    flex-direction: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: 3em;
    display: flex;
    position: relative;
    inset: 0;
  }

  .mobile-links-section {
    z-index: 3;
    display: block;
    position: relative;
  }

  .text-block-2 {
    align-items: center;
    height: 100%;
    display: flex;
  }

  .logo-mobile {
    height: 40px;
    position: absolute;
    top: 20px;
    left: 6%;
  }

  .thumb5 {
    width: 110%;
    margin-left: -7%;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    height: 100vh;
  }

  .screens {
    text-align: center;
  }

  .heading-1 {
    width: 90%;
    font-size: 28px;
  }
}

@media screen and (max-width: 479px) {
  .nav-container {
    color: #0000;
  }

  .hero-section {
    background-position: 50%;
    background-size: cover;
    height: 100vh;
    display: flex;
  }

  .home-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .screens {
    width: 90%;
  }

  .heading-1 {
    letter-spacing: 0;
    width: 90%;
    margin-top: 40px;
    font-size: 5vh;
  }

  .nav-link {
    background-color: #5a54fe;
  }

  .logo {
    font-size: 12px;
  }

  .text-container {
    margin-top: 40px;
  }

  .heading-2 {
    line-height: 20px;
  }

  .heading-3 {
    font-size: 26px;
  }

  .paragraph-1 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .paragraph-1.about {
    margin-bottom: 20px;
  }

  .thumb3 {
    width: 106%;
    margin-left: -2%;
  }

  .link.w--current {
    font-size: 12px;
  }

  .burger-btn-wrapper {
    margin-top: 13px;
    margin-right: 11px;
  }

  .burger-line-2 {
    color: #4b0000;
    width: 20px;
  }

  .menu-button-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .logo-mobile {
    font-size: 12px;
  }

  .thumb3-copy {
    width: 106%;
    margin-left: -2%;
  }

  .thumb-6 {
    margin-bottom: -6%;
    margin-left: -4px;
  }
}


@font-face {
  font-family: 'Fontawesome webfont';
  src: url('../fonts/fontawesome-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
