@media (max-width: 59.9875rem) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 60rem) {
  .only-mobile {
    display: none !important;
  }
}

@media (max-width: 39.9875rem) {
  .hide-phone {
    display: none !important;
  }
}

.hide {
  display: none;
}

.hide-before::before {
  display: none;
}

.hide-after::after {
  display: none;
}

.clickable {
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

:root {
  overflow-x: hidden;
  scrollbar-width: thin;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  margin: 0;
  background-color: hsl(0, 0%, 0%);
}

main {
  position: relative;
  overflow: hidden;
}
@media (max-width: 68.9875rem) {
  main {
    background-color: hsl(0, 0%, 0%);
  }
}
@media (min-width: 69rem) {
  main {
    padding-block: 1.5em;
  }
  main::before {
    content: "";
    z-index: -68;
    position: absolute;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    background-image: url("/media/images/posters/fd_poster-bg.jpg");
    background-position: top center;
    filter: blur(7px) grayscale(60%);
  }
}

.container {
  max-width: 69rem;
  margin-inline: auto;
  padding: 2rem 1rem;
}
.container:nth-child(odd) {
  background-color: #0a0a0a;
}
.container:nth-child(even) {
  background-color: #141414;
}
@media (min-width: 40rem) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 69rem) {
  .container {
    margin-block: 1.5em;
  }
  .container:nth-child(odd) {
    background-color: rgba(10, 10, 10, 0.8);
  }
  .container:nth-child(even) {
    background-color: rgba(20, 20, 20, 0.8);
  }
}

[class$=__grid] {
  display: grid;
  gap: 1em;
  justify-items: center;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: hsl(0, 0%, 100%);
}

main {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 60rem) {
  main {
    text-align: left;
  }
}

.section-heading {
  margin: 0 auto 1em;
  line-height: 1.2;
  text-align: center;
}

h1, h2, h3 {
  margin: 0;
}

p {
  margin-block: 0.75em;
}
p:last-child() {
  margin-bottom: 0;
  padding-bottom: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

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

.inline-link {
  text-decoration: underline;
  transition: opacity 100ms ease;
}
.inline-link:hover {
  opacity: 70%;
}

.highlight, .highlight--circle, .highlight--strip, .highlight--strip--hover {
  position: relative;
  z-index: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.highlight::before, .highlight--circle::before, .highlight--strip::before, .highlight--strip--hover::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  background-color: hsl(232, 75%, 35%);
  transition: transform 150ms ease-out;
}
.highlight--strip::before, .highlight--strip--hover::before {
  top: 50%;
  left: calc(-1% - 1rem);
  transform-origin: left;
  height: 70%;
  width: calc(102% + 2rem);
}
.highlight--strip--hover::before {
  transform: scaleX(0);
}
.highlight--strip--hover:hover::before {
  transform: scale(1);
}
.highlight--circle::before {
  width: calc(1.1em + 1rem);
  height: calc(1.1em + 1rem);
  top: calc((1.1em + 1rem - 100%) / -2);
  left: calc((1.1em + 1rem - 100%) / -2);
  border-radius: 50%;
  transform: scale(0);
}
.highlight--circle:hover::before {
  transform: scale(1);
}
.highlight--accent-2::before {
  background-color: hsl(220, 65%, 69%);
}

.faq {
  text-align: center;
}
.faq__question {
  font-size: 1.25em;
  font-weight: bold;
  cursor: pointer;
}
.faq__answer {
  max-width: 45rem;
}
.faq__button {
  display: inline-block;
  margin-top: 0.5em;
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  font-size: 1.125em;
  padding: 0.375em;
  border-radius: 0.5em;
  transition: background-color 200ms ease;
}
.faq__button:hover {
  background-color: hsl(220, 65%, 69%);
}

.footer {
  padding: 3rem 2rem;
  text-align: center;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
}
.footer__grid {
  row-gap: 2rem;
}
.footer__closer {
  max-width: 25em;
}
.footer__socials {
  display: flex;
  justify-content: space-between;
  width: 14em;
}
.footer__socials svg {
  width: 3em;
  transition: opacity 150ms ease;
}
.footer__socials svg:hover {
  opacity: 80%;
}
.footer__motto {
  font-size: 1.25rem;
  font-weight: normal;
}
.footer__studio92-link {
  max-width: 20em;
}
.footer__copyright {
  width: 100%;
  max-width: 100%;
}

.header {
  position: absolute;
  z-index: 69;
  width: 100%;
  height: 6rem;
  padding: 1em;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}
.header::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  bottom: 6rem;
  height: 100vh;
  background-color: hsl(0, 0%, 100%);
}
.header__placeholder {
  height: 6rem;
}
.header__grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-inline: 0.5em;
  align-items: center;
  justify-items: center;
}
@media (min-width: 60rem) {
  .header__grid-container {
    grid-template-columns: 1fr 30em 1fr;
    margin-inline: 1em;
  }
}
@media (min-width: 69rem) {
  .header__grid-container {
    margin-inline: 1.5em;
  }
}
.header__studio92-link {
  justify-self: start;
}
.header__studio92-link img {
  min-height: 4rem;
  max-height: 4rem;
}
.header__nav {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.header .header__cta {
  justify-self: end;
  font-size: 1.25em;
  padding: 0.375em;
  border-radius: 0.5em;
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
  transition: background-color 200ms ease;
}
.header .header__cta:hover {
  background-color: hsl(232, 75%, 35%);
}
.header__hamburger {
  position: relative;
  width: 2.75em;
  height: 1.6875em;
  justify-self: end;
}
.header__hamburger span {
  display: block;
  position: absolute;
  background-color: hsl(0, 0%, 0%);
  width: 100%;
  height: 0.1875em;
  transition: all 200ms ease-out;
}
.header__hamburger span:first-child {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 0.75em;
}
.header__hamburger span:last-child {
  top: 1.5em;
}
.header__hamburger.menu-open span:first-child {
  transform: translateY(0.75em) rotate(315deg);
}
.header__hamburger.menu-open span:nth-child(2) {
  opacity: 0;
  transform: rotate(270deg);
}
.header__hamburger.menu-open span:last-child {
  transform: translateY(-0.75em) rotate(225deg);
}
.header__hamburger-menu {
  position: absolute;
  z-index: -1;
  top: 6rem;
  right: 0;
  width: auto;
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  text-align: right;
  font-size: 2.25em;
  padding: 0 1em calc(0.875em + 2vh);
  background-color: hsl(0, 0%, 100%);
  transition: transform 200ms ease-out;
  transform: translateX(100%);
}
.header__hamburger-menu.menu-open {
  transform: translateX(0);
}
.header__hamburger-menu.menu-open::before {
  opacity: 0.5;
}
.header__hamburger-menu__nav {
  display: flex;
  flex-direction: column;
}
.header__hamburger-menu__nav a {
  margin-top: min(1em, 0.5em + 2vh);
}
.header__hamburger-menu .header__nav__link {
  width: -moz-fit-content;
  width: fit-content;
  align-self: end;
}
.header__hamburger-menu .header__nav__link.header__cta {
  font-size: 1em;
  margin-right: -0.375em;
}
.header__hamburger-menu::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.header__hamburger-menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -6rem;
  height: 130vh;
  left: 0;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
}

.hero {
  position: relative;
  min-height: 90vh;
}
.hero__background {
  position: absolute;
  z-index: -69;
  top: 0;
  right: 0;
  left: 0;
  min-height: 90vh;
  min-width: 110vw;
  background-size: cover;
  background-position-y: 33%;
  animation: movement 15s linear, fade 15s ease, image-swap 60s linear;
  animation-iteration-count: infinite;
}
@keyframes movement {
  from {
    background-position-x: 45%;
  }
  to {
    background-position-x: calc(55% - 10vw);
  }
}
@keyframes fade {
  0%, 2%, 98%, 100% {
    opacity: 0%;
  }
  14%, 86% {
    opacity: 100%;
  }
}
@keyframes image-swap {
  0%, 24.99% {
    background-image: url("/media/images/stills/still-reese.jpg");
  }
  25%, 49.99% {
    background-image: url("/media/images/stills/still-charlie-dustin.jpg");
  }
  50%, 74.99% {
    background-image: url("/media/images/stills/still-liam.jpg");
  }
  75%, 100% {
    background-image: url("/media/images/stills/still-reese-charlie.jpg");
  }
}
.hero__laurel {
  width: calc(4em + 5%);
  padding-inline: 0.25em;
}
.hero__laurels {
  display: flex;
  justify-content: space-evenly;
  width: 50%;
  transform: translateY(calc(-0.25vw - 1em));
}
.hero__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
}
.hero__text {
  align-self: center;
  justify-self: center;
  text-align: center;
  text-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.5);
  font-size: calc(1rem + 0.75vw);
  margin-inline: calc(10vw - 1rem);
}
.hero__title {
  filter: drop-shadow(0 0 0.3rem rgba(0, 0, 0, 0.5));
}
.hero__tagline {
  font-size: 1em;
  margin-top: 0.5em;
  font-weight: normal;
}

.overview__grid {
  display: grid;
  gap: 1em;
  grid-template-areas: "text1" "poster" "laurels" "text2" "image";
}
@media (min-width: 40rem) {
  .overview__grid {
    grid-template-areas: "poster text1" "poster laurels" "text2 image";
  }
}
@media (min-width: 60rem) {
  .overview__grid {
    grid-template-areas: "poster text1" "poster laurels" "poster image" "text2 image";
  }
}
.overview__paragraph {
  align-self: center;
  margin-block: -1em;
}
.overview__paragraph h1 {
  margin: 0;
  display: inline;
  font-size: 1.375em;
  line-height: 1.25;
}
.overview__laurels {
  grid-area: laurels;
  display: flex;
  justify-content: space-between;
  max-width: 90%;
}
.overview__laurel {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 32%;
}
.overview__image {
  grid-area: image;
  align-self: end;
}
@media (max-width: 39.9875rem) {
  .overview__image {
    max-width: min(100%, 5rem + 60vw);
  }
}
.overview .text1 {
  grid-area: text1;
  margin-top: 0;
}
.overview .text2 {
  grid-area: text2;
}
.overview__poster {
  grid-area: poster;
  align-self: start;
  justify-self: center;
  max-width: 80%;
}
@media (min-width: 40rem) {
  .overview__poster {
    max-width: 100%;
  }
}

.reviews > h2 {
  margin-bottom: 0.375em;
}
.reviews__grid {
  justify-items: center;
  grid-template-columns: 1fr;
}
.reviews__review {
  background-color: hsl(50, 10%, 92%);
  max-width: 16em;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
  grid-template-areas: "quote" "thumbnail";
}
.reviews__review * {
  color: black;
}
@media (min-width: 40rem) {
  .reviews__review {
    max-width: 100%;
    width: 100%;
    padding: 0.5em;
  }
  .reviews__review:nth-child(odd) {
    grid-template-columns: 16em 1fr;
    grid-template-areas: "thumbnail quote";
  }
}
@media (min-width: 40rem) and (min-width: 60rem) {
  .reviews__review:nth-child(odd) .reviews__review__thumbnail {
    align-items: first baseline;
  }
}
@media (min-width: 40rem) {
  .reviews__review:nth-child(even) {
    grid-template-columns: 1fr 16em;
    grid-template-areas: "quote thumbnail";
  }
}
@media (min-width: 40rem) and (min-width: 60rem) {
  .reviews__review:nth-child(even) .reviews__review__thumbnail {
    align-items: last baseline;
    text-align: right;
  }
}
.reviews__review__thumbnail {
  grid-area: thumbnail;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 16em;
  padding: 0.5em;
  background-color: hsl(50, 15%, 85%);
}
@media (min-width: 40rem) {
  .reviews__review__thumbnail {
    min-height: 100%;
  }
}
.reviews__review__logo {
  height: 3.75em;
  padding-inline: 0.25em;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews__review__title {
  margin: 0;
  margin-block: 0.5em;
  line-height: 1.2;
}
.reviews__review__credit {
  font-size: 0.75em;
  font-style: italic;
  margin: 0;
  margin-top: auto;
  width: 100%;
}
.reviews__review__quote, .reviews__review__quote--long {
  grid-area: quote;
  text-align: center;
  font-size: min(1.5em, 1em + 1vw);
  margin: 0.5em;
}
.reviews__review__quote--long {
  font-size: min(1.25em, 0.75em + 1vw);
}

.team__card {
  background-color: #d9d9d9;
  color: black;
  padding: 1em;
  display: grid;
  row-gap: 0.5em;
  -moz-column-gap: 1em;
       column-gap: 1em;
  justify-items: center;
  align-items: center;
  grid-template-areas: "photo" "name" "title" "bio";
}
.team__card__name, .team__card__title, .team__card__bio {
  margin-block: 0;
  margin-inline: auto;
  padding-block: 0;
  padding-inline: 0.5rem;
}
.team__card__photo {
  grid-area: photo;
  width: 10em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.team__card__name {
  grid-area: name;
  width: 100%;
  padding-top: 0.5rem;
}
.team__card__title {
  grid-area: title;
  width: 100%;
}
.team__card__bio {
  grid-area: bio;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
.team__card::before {
  content: "";
  grid-column-start: bio;
  grid-column-end: bio;
  grid-row-start: name;
  grid-row-end: bio;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
}
@media (min-width: 40rem) and (max-width: 59.9875rem) {
  .team__card::before {
    grid-row-start: bio;
  }
  .team__card__title {
    padding-top: 0;
  }
  .team__card__bio {
    padding-top: 0.5rem;
  }
}
@media (min-width: 40rem) {
  .team__card:nth-child(odd) {
    grid-template-areas: "photo bio" "name bio" "title bio";
  }
  .team__card:nth-child(even) {
    grid-template-areas: "bio photo" "bio name" "bio title";
  }
}
@media (min-width: 60rem) {
  .team__card:nth-child(odd) {
    grid-template-areas: "photo name" "photo title" "photo bio";
  }
  .team__card:nth-child(even) {
    grid-template-areas: "name photo" "title photo" "bio photo";
    text-align: right;
  }
}

.trailer__video {
  grid-area: video;
  aspect-ratio: 16/9;
  height: min(40vw, 27.6rem);
}
.trailer__video iframe {
  height: 100%;
  width: 100%;
}
.trailer__text {
  grid-area: text;
  text-align: center;
  font-size: 1.25rem;
  max-width: 45rem;
}
@media (min-width: 60rem) {
  .trailer__text {
    font-size: 1.5rem;
  }
}
.trailer__grid {
  gap: 0.5em;
  grid-template-areas: "video" "text";
}

@media (min-width: 40rem) {
  .watch {
    font-size: 1.25em;
  }
}
.watch__margin {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}
.watch__buy-btn {
  font-size: 1.5em;
  display: inline-block;
  background-color: hsl(232, 75%, 35%);
  padding: 0.09375em 0.375em;
  border: 0.0625em solid hsl(220, 65%, 69%);
  border-radius: 0.6875em;
  font-weight: 700;
  margin-top: 0.25em;
  transition: all 150ms ease-in-out;
}
.watch__buy-btn:hover {
  background-color: #101d70;
  border-color: #92aee8;
  box-shadow: 0 0 0.5em #92aee8;
}/*# sourceMappingURL=style.css.map */