@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.otf") format("opentype");
  font-weight: bold; /* This is equivalent to 700 */
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
html {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

body {
  background-color: black;
  color: white;
  font-family: "Gilroy", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

p {
  font-size: 1.2rem;
  line-height: 1.4;
}
@media (min-width: 769px) {
  p {
    font-size: 1.5rem;
  }
}
p.medium {
  font-size: 1.8rem;
}
p.accent {
  color: #36CAFF;
}

.stat {
  font-size: 4rem;
  font-weight: bold;
  display: block;
}
.stat.accent {
  color: #36CAFF;
}

cite.footnote {
  font-size: 10px;
  display: block;
  font-style: normal;
  line-height: 1.2;
  opacity: 0.7;
}

* {
  box-sizing: border-box;
}

a {
  color: #36CAFF;
}

.button {
  display: inline-flex;
  margin: 0;
  border: 1px solid #36CAFF;
  padding: 0.75em 1.25em;
  background-color: #36CAFF;
  color: black;
  font-size: clamp(0.7rem, 0.5rem + 1vw, 1rem);
  line-height: 2;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.2s;
  position: relative;
  top: 0;
}
.button--secondary {
  background-color: transparent;
  color: white;
}
.button:hover {
  top: -0.2rem;
}

h1, h2 {
  text-transform: uppercase;
  margin-top: 0;
}
h1.center, h2.center {
  text-align: center;
}

h1 {
  letter-spacing: 0.05em;
}

h2 {
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

h3 {
  margin-top: 0;
}

.image--full {
  display: block;
  width: 100%;
  user-select: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 1.5rem;
  text-align: center;
}
header nav {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.8rem;
}
header nav a {
  color: white;
  text-decoration: none;
}
header nav a:hover {
  color: #36CAFF;
}
header .icons {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: none;
}
@media (min-width: 769px) {
  header .icons {
    display: block;
  }
}

section, footer {
  padding: 2rem 0;
  display: grid;
  gap: 0;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [container-start] repeat(1, minmax(0, 93.3333333333px)) [medium-start] repeat(10, minmax(0, 93.3333333333px)) [medium-end] repeat(1, minmax(0, 93.3333333333px)) [container-end] minmax(1rem, 1fr) [full-end];
}
@media (min-width: 769px) {
  section, footer {
    padding: 4rem 0;
  }
}
@media (min-width: 769px) {
  section, footer {
    gap: 1.5rem;
    grid-template-columns: [full-start] minmax(1.5rem, 1fr) [container-start] repeat(1, minmax(0, calc((1120px - 16.5rem) / 12))) [medium-start] repeat(10, minmax(0, calc((1120px - 16.5rem) / 12))) [medium-end] repeat(1, minmax(0, calc((1120px - 16.5rem) / 12))) [container-end] minmax(1.5rem, 1fr) [full-end];
  }
}
@media (min-width: 769px) {
  section.no-padding, footer.no-padding {
    padding: 2rem 0;
  }
}

.container {
  width: 100%;
  grid-area: container;
  margin: 0 auto;
  grid-row: 2;
}
.container--medium {
  grid-area: medium;
}
@media (min-width: 769px) {
  .container {
    grid-row: 1;
  }
  .container--right-side-sm {
    grid-column: 9/span 4;
    align-self: center;
  }
  .container--right-side {
    grid-column: 9/span 5;
    align-self: center;
  }
  .container--left-side {
    grid-column: 2/span 5;
    align-self: center;
  }
  .container.end {
    align-self: center;
  }
}

blockquote {
  font-weight: bold;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 2.25rem);
  padding: 0;
  margin: 0;
}
blockquote p {
  margin: 0;
  font-size: inherit;
}
blockquote cite {
  font-size: 1.5rem;
  color: #36CAFF;
  font-style: normal;
}
blockquote.center {
  text-align: center;
}

.image--full {
  grid-area: full;
  grid-row: 1;
}

.hero, .trailer {
  text-align: center;
}

.hero {
  position: relative;
  height: 90vh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5vw;
  background-color: #03090F;
}
.hero h1 {
  font-size: clamp(1.5rem, 1.5rem + 3vw, 5rem);
  margin: 0;
}
.hero .heading {
  display: flex;
  flex-direction: column;
}
.hero .heading p {
  margin: 0;
}
.hero .heading .credit {
  order: -1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.8rem, 0.7rem + 1vw, 1rem);
}
.hero .heading .tagline {
  font-size: clamp(1rem, 0.9rem + 1vw, 1.5rem);
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /*
  @media(min-width: $medium){
  	height: 100%;
  }*/
}
.hero:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.hero .container {
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
.hero .container img {
  width: 189px;
  height: 90px;
}
.hero .awards {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.hero .awards div {
  flex-shrink: 1;
}
.hero .awards div img {
  width: auto;
  height: 40px;
}
@media (min-width: 769px) {
  .hero .awards div img {
    height: 50px;
  }
}
.hero .heading-and-buttons {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.hero .button-set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.trailer {
  background-image: url(../images/video-texture.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.trailer:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.trailer .container {
  display: grid;
  grid-template-columns: subgrid;
  position: relative;
  z-index: 2;
}
.trailer .trailer-thumbnail {
  position: relative;
  display: block;
  color: white;
  margin: 0 auto;
  grid-column: 1/span 10;
}
.trailer .trailer-thumbnail img {
  width: 100%;
  display: block;
}
.trailer .trailer-thumbnail h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 0.5rem + 3vw, 2.5rem);
}
.trailer .trailer-thumbnail h2 span {
  display: block;
  color: #36CAFF;
  font-size: 0.75em;
}
.trailer .trailer-thumbnail svg {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 50px;
  height: auto;
}
@media (min-width: 769px) {
  .trailer .trailer-thumbnail svg {
    left: 1.5rem;
    bottom: 1.5rem;
    width: auto;
  }
}
.trailer p {
  grid-column: 1/span 10;
}
@media (min-width: 769px) {
  .trailer p {
    grid-column: 2/span 8;
  }
}

.cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 2rem;
}
@media (min-width: 769px) {
  .cast-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.cast-grid img {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.cast-grid strong {
  display: block;
}

.filmmaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row dense;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .filmmaker-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.filmmaker-grid button {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: white;
  text-align: left;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.filmmaker-grid button:hover, .filmmaker-grid button.selected {
  opacity: 1;
}
.filmmaker-grid img {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.filmmaker-grid strong {
  display: block;
}

.bio {
  border-top: 1px solid #36CAFF;
  border-bottom: 1px solid #36CAFF;
  padding: 2rem 0;
  display: none;
  position: relative;
  grid-column: span 2;
}
@media (min-width: 769px) {
  .bio {
    grid-column: span 4;
  }
}
.bio h3 span {
  display: block;
  font-weight: normal;
}
.bio p {
  font-size: 1rem;
  line-height: 1.5;
}
.bio:after {
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='19' viewBox='0 0 35 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 18L17.5 1L34.5 18' stroke='%2336CAFF'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  content: " ";
  text-align: center;
  position: absolute;
  height: 19px;
  width: 32px;
  overflow: hidden;
  left: 1rem;
  top: -18px;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
  background-color: black;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
footer .title h2 {
  margin: 0;
}
@media (min-width: 769px) {
  footer .container {
    display: grid;
    grid-template-columns: subgrid;
  }
  footer .title {
    grid-column: 1/span 3;
  }
  footer .navigation {
    grid-column: 4/span 3;
  }
  footer .join {
    grid-column: 7/span 3;
  }
  footer .follow {
    grid-column: 11/span 2;
  }
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer nav a {
  text-decoration: none;
  color: white;
  display: block;
  font-weight: bold;
}
footer nav a:hover {
  color: #36CAFF;
}
