@import url("https://use.typekit.net/dbu1otz.css");

:root {
  --primary: ##030000;
  --black: #0d0d0d;
  --link: #898686;
}

html {
  overflow-y: scroll;
  cursor: default;
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body,
html {
  height: 100%;
  width: 100%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  margin: 0;
  padding: 0;
  font-family: NHaasGroteskDSPro-55Rg, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  -webkit-transform: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
}

p {
  font-size: 27px;
  line-height: 35.8px;
  letter-spacing: 0.81px;
  color: #000000;
  margin: 0 20px 18px 20px;
}

a {
  font-size: 27px;
  line-height: 35.8px;
  letter-spacing: 0.81px;
  color: #000000;
  text-decoration: none;
  all: unset;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 20px;
}

video {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

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

.underline {
  text-decoration-line: underline;
}

.underline:hover {
  text-decoration-line: none;
}

.splash {
  height: 100%;
  width: 100%;
  max-height: 100vh;
  background-color: #000000;
  z-index: 100;
  position: fixed;
  top: 0;
}

.splash p {
  position: relative;
  top: 50%;
  max-width: 100%;
  color: white;
  opacity: 1;
  margin-left: 20px;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.splash.displayNone {
  opacity: 0;
  background-color: none;
  z-index: -1;
  position: fixed;
  top: 0;
  transition: all 2s ease-in-out;
}

.hero {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

.slidesConatainer {
  height: 100%;
  width: 100%;
  background-color: none;
}

#blur {
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: fixed;
  top: 0;
  opacity: 0;
}

.info-container {
  width: 100%;
  position: relative;
  top: 100%;
  left: 0;
  background-color: white;
}

.info {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-auto-rows: min-content;
  grid-row-gap: 71.6px;
  grid-template-areas:
    "g g . . . . ."
    "b b . . . . ."
    "c c c c c . ."
    "d d . . . . ."
    "e e e e e . ."
    "a . . . . . ."
    "f f . . . . .";
  padding-bottom: 10px;
}

.containerA {
  grid-area: a;
  justify-items: start;
}

.containerA p {
  margin: 0 20px 0 20px;
}
.containerB {
  grid-area: b;
  justify-items: end;
}
.containerC {
  grid-area: c;
  justify-items: end;
}
.containerD {
  grid-area: d;
}
.containerE {
  grid-area: e;
  justify-items: end;
}

.containerF {
  grid-area: f;
}

.containerG {
  grid-area: g;
  justify-items: start;
}

.stickRight {
  float: right;
}

.upper {
  text-transform: uppercase;
  max-width: 100%;
  font-size: 13px;
  letter-spacing: 0.66px;
  margin: 0 0 0 20px;
}

.nested-margin {
  margin: 0;
}

.margin-top {
  margin-top: 15px;
}

/* -----SLIDESHOW STYLES ------ */

#plusIcon {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 10;
}

.slides {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

#fit {
  object-fit: scale-down;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
}

.prev,
.next {
  all: unset;
  cursor: default;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.desktopSpacer {
  height: 35.8px;
}

@media screen and (max-width: 568px) {
  p {
    font-size: 18px;
    line-height: 23.9px;
    letter-spacing: 0.54px;
    width: 86%;
    margin: 0 20px 0 20px;
  }

  a {
    font-size: 18px;
    line-height: 23.9px;
    letter-spacing: 0.54px;
  }

  .splash p {
    max-width: 70%;
  }

  .upper {
    max-width: 100%;
    font-size: 10px;
  }

  .info {
    grid-row-gap: 23.9px;
    grid-template-areas:
      "g g g g g g g"
      "b b b b b b b"
      "c c c c c c c"
      "d d d d d d d"
      "e e e e e e e"
      "a a a a a a a"
      "f f f f f f f";
  }
  .stickRight {
    float: left;
  }

  .mobileSpacer {
    height: 23.9px;
  }

  .desktopSpacer {
    height: 0px;
  }
}

@media only screen and (min-width: 568px) and (max-width: 768px) {
  p {
    font-size: 21px;
    line-height: 27.8px;
    letter-spacing: 0.63px;
    max-width: 311px;
  }

  a {
    font-size: 21px;
    line-height: 27.8px;
    letter-spacing: 0.63px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1900px) {
  p {
    font-size: 23px;
    line-height: 30.5px;
    letter-spacing: 0.69px;
    max-width: 340.7px;
  }

  a {
    font-size: 23px;
    line-height: 30.5px;
    letter-spacing: 0.69px;
  }
}

@media only screen and (min-width: 1900px) {
  a {
    font-size: 27px;
    line-height: 35.8px;
    letter-spacing: 0.81px;
  }
  p {
    font-size: 27px;
    line-height: 35.8px;
    letter-spacing: 0.81px;
    max-width: 400px;
  }
}
