@font-face {
  font-family: "Helvetica Now";
  src: url("../dist/fonts/HelveticaNowDisplay-Regular.woff2") format("woff2"), url("../dist/fonts/HelveticaNowDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Helvetica Now", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000000;
  font-weight: 300;
  overflow: hidden;
}

section {
  position: relative;
}

picture, svg, img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

a {
  font-weight: 500;
  color: currentColor;
  display: inline-block;
  text-decoration: none;
}

button {
  border: 0;
  outline: 0;
  color: currentColor;
  background-color: transparent;
  cursor: pointer;
}

button:active,
button:focus {
  outline: 0;
}

.home-banner {
  background: #000000;
  position: relative;
}
.home-banner .inner {
  margin: 0 auto;
  width: calc(100% - 132px);
  max-width: 1600px;
  padding: 20px 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 782px) {
  .home-banner .inner {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 1000px) {
  .home-banner .inner {
    padding: 66px 0;
    height: 100vh;
    min-height: 480px;
  }
}
.home-banner .brand {
  width: 200px;
  display: block;
  opacity: 0;
}
.bgn .home-banner .brand {
  opacity: 1;
  transition: opacity 1s 0.2s;
}
.home-banner .brand img {
  width: 100%;
  height: auto;
  display: block;
}
.home-banner h1 {
  font-family: "Helvetica Now", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 72px;
  line-height: 1.1;
  color: #FFFFFF;
  max-width: 680px;
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .home-banner h1 {
    font-size: 96px;
  }
}
.bgn .home-banner h1 {
  opacity: 1;
  transition: opacity 1s 0.4s;
}
.home-banner .lower {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  opacity: 0;
}
.bgn .home-banner .lower {
  opacity: 1;
  transition: opacity 1s 0.6s;
}
.home-banner .lower .prompt {
  font-family: "Helvetica Now", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0 0 15px;
}
.home-banner .lower .link {
  font-family: "Helvetica Now", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 1.6;
  color: #FFFFFF;
  position: relative;
}
.home-banner .lower .link:after {
  content: " ";
  border-bottom: 1px solid currentColor;
  position: absolute;
  top: 1.5em;
  right: 0;
  width: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: width 0.4s;
}
.home-banner .lower .link:hover:after {
  left: 0;
  right: auto;
  width: 100%;
}
.home-banner .lines {
  display: none;
}
@media screen and (min-width: 1000px) {
  .home-banner .lines {
    position: absolute;
    display: block;
    top: 160px;
    height: calc(100% - 200px);
    right: 0;
    opacity: 0;
    width: 55vw;
    display: block;
    transform: scaleY(0.8);
    transform-origin: bottom center;
  }
  .bgn .home-banner .lines {
    opacity: 1;
    transform: scaleY(1);
    transition: transform 6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s;
  }
}

::-moz-selection {
  background: #C59B6D;
}

::selection {
  background: #C59B6D;
}
