* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #393C35;
  background-color: #f7edd5;
  font-weight: 300;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-bottom: 3rem;
}
@media (min-width: 1100px) {
  main {
    padding-bottom: 5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Instrument Serif", Georgia, serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: none;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 700;
}

.giantText {
  font-size: clamp(30px, 10vw + 12px, 128px);
}

p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 1100px) {
  p {
    font-size: 18px;
  }
}

h1 {
  font-size: clamp(24px, 4vw, 47px);
}

h2 {
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: clamp(28px, 4.3vw, 72px);
}
@media (min-width: 1100px) {
  h2 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h2 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1400px) {
  h2 {
    margin-bottom: 3rem;
  }
}

h3 {
  margin-bottom: 2rem;
  font-size: clamp(20px, 3vw, 52px);
}
@media (min-width: 1100px) {
  h3 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h3 {
    margin-bottom: 2.25rem;
  }
}

h4 {
  font-size: 15px;
  margin-bottom: 0.5rem;
  font-size: clamp(15px, 2.25vw, 39px);
}
@media (min-width: 1100px) {
  h4 {
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  h4 {
    margin-bottom: 0.75rem;
  }
}

a {
  color: #393C35;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

a.arrow {
  transition: color 0.2s ease;
}
a.arrow:after {
  transition: background-image 0.2s ease;
}
@media (min-width: 1100px) {
  a.arrow:hover {
    color: #F2526D;
  }
  a.arrow:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.84173 4.74622L0.414147 0.030853C0.224165 -0.0644317 -0.000360492 0.0723873 -0.000360501 0.284945L-0.000360914 9.71812C-0.000360923 9.93068 0.224165 10.0675 0.414147 9.97222L9.84173 5.25196C10.0515 5.1469 10.0515 4.85128 9.84173 4.74622Z' fill='%23F2526D'/%3E%3C/svg%3E%0A");
  }
}

.arrow {
  display: inline-flex;
  align-items: center;
  padding-right: 1.5rem;
  position: relative;
  font-size: clamp(17px, 2vw + 10px, 22px);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  width: fit-content;
}
@media (max-width: 767px) {
  .arrow.downOnPhone:after {
    transform: rotate(90deg);
  }
}
@media (min-width: 768px) {
  .arrow.backwards {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .arrow.backwards:after {
    right: auto;
    left: 0;
    transform: rotate(180deg);
  }
}
.arrow:after {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.84173 4.74622L0.414147 0.030853C0.224165 -0.0644317 -0.000360492 0.0723873 -0.000360501 0.284945L-0.000360914 9.71812C-0.000360923 9.93068 0.224165 10.0675 0.414147 9.97222L9.84173 5.25196C10.0515 5.1469 10.0515 4.85128 9.84173 4.74622Z' fill='%23393C35'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
}

.scrollTo {
  position: relative;
  top: 4rem;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.btn, .button {
  padding: 0.75rem 1.25rem;
  word-spacing: normal;
  border-radius: 100vw;
  font-weight: 300;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  background-color: #F2526D;
}
@media (min-width: 768px) {
  .btn, .button {
    font-size: 17px;
  }
}
@media (min-width: 1100px) {
  .btn, .button {
    font-size: 18px;
    transition: 0.2s ease;
  }
}
@media (min-width: 1200px) {
  .btn, .button {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .btn, .button {
    font-size: 22px;
  }
}
.btn span, .button span {
  display: inline-block;
}
.btn span:before, .btn span:after, .button span:before, .button span:after {
  content: " ";
  white-space: pre;
}

.thirds .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .thirds .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.thirds .container .third {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/6;
  border: 1px solid;
  position: relative;
}
@media (min-width: 640px) {
  .thirds .container .third {
    aspect-ratio: 464/298;
  }
}
@media (min-width: 1100px) {
  .thirds .container .third {
    transition: 0.3s ease;
  }
  .thirds .container .third:hover:after {
    opacity: 0;
  }
  .thirds .container .third:hover span, .thirds .container .third:hover h3 {
    color: #f7edd5;
  }
}
.thirds .container .third:after {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background-color: #f7edd5;
  opacity: 1;
  z-index: 2;
  content: "";
}
@media (min-width: 1100px) {
  .thirds .container .third:after {
    transition: opacity 0.3s ease;
  }
}
.thirds .container .third img {
  display: none;
}
@media (min-width: 640px) {
  .thirds .container .third img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
  }
}
.thirds .container .third span, .thirds .container .third h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: clamp(24px, 4vw, 47px);
}

.hero .container {
  padding-top: 8rem;
  transition: padding-top 0.3s ease;
  display: grid;
  gap: 6rem;
}
@media (min-width: 768px) {
  .hero .container {
    gap: 2rem;
    padding-top: 10rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .hero .container {
    padding-top: 12rem;
  }
}
@media (min-width: 1400px) {
  .hero .container {
    padding-top: 14rem;
  }
}
@media (min-width: 1600px) {
  .hero .container {
    padding-top: 16rem;
  }
}
.hero .container .text {
  padding: 3rem 0;
  width: 100%;
}
.hero .container .down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .hero .container .down {
    margin-top: 0;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .hero .container .down {
    width: 60px;
    height: 60px;
    margin-top: -5rem;
  }
}
@media (min-width: 1400px) {
  .hero .container .down {
    margin-left: 3rem;
  }
}

.container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  padding: 8px 16px;
  color: #FFFEF3;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

.site-footer {
  background-color: #f8f0d9;
}
@media (min-width: 1100px) {
  .site-footer {
    position: relative;
    z-index: 2;
  }
}

header {
  background-color: #f8f0d9;
}

body, html {
  background-color: #f8f0d9;
}

main {
  background-color: #f8f0d9;
  padding-bottom: 0;
}
@media (min-width: 1100px) {
  main {
    margin-bottom: 0;
  }
}

.vidSec {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .vidSec {
    padding-top: 2rem;
  }
}
.vidSec.playing {
  z-index: 999;
}
.vidSec.playing .container .videoWrapper .play {
  opacity: 1;
  pointer-events: none;
}
.vidSec.playing .container .videoWrapper .pause {
  opacity: 1;
  pointer-events: all;
}
.vidSec .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vidSec .container .videoWrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  z-index: 2;
}
@media (max-width: 639px) {
  .vidSec .container .videoWrapper {
    background-color: #FFFEF3;
  }
}
.vidSec .container .videoWrapper .play, .vidSec .container .videoWrapper .pause {
  position: absolute;
  font-size: clamp(30px, 10vw + 12px, 128px);
  color: #F2526D;
  font-family: "Instrument Serif", Georgia, serif;
  line-height: 1;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, transform 1s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(53%);
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(-73%);
    top: 0;
  }
}
@media (min-width: 1100px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0);
  }
}
.vidSec .container .videoWrapper .play, .vidSec .container .videoWrapper .pause {
  z-index: 3;
  will-change: opacity, transform;
}
@media (min-width: 768px) {
  .vidSec .container .videoWrapper .play, .vidSec .container .videoWrapper .pause {
    transform: translateY(0);
    top: 0;
    bottom: 0;
  }
}
.vidSec .container .videoWrapper .pause {
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .vidSec .container .videoWrapper .pause {
    right: auto;
    opacity: 1;
  }
}
@media (min-width: 1100px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(0) translateX(8vw);
  }
}
@media (min-width: 1200px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(0) translateX(9vw);
  }
}
@media (min-width: 1400px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(0) translateX(70%);
  }
}
@media (min-width: 1450px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(0) translateX(85%);
  }
}
@media (min-width: 1500px) {
  .vidSec .container .videoWrapper .pause {
    transform: translateY(0) translateX(95%);
  }
}
@media (min-width: 768px) {
  .vidSec .container .videoWrapper .play {
    left: auto;
  }
}
@media (min-width: 1100px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0) translateX(-15vw);
  }
}
@media (min-width: 1200px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0) translateX(-16vw);
  }
}
@media (min-width: 1400px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0) translateX(-130%);
  }
}
@media (min-width: 1450px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0) translateX(-145%);
  }
}
@media (min-width: 1500px) {
  .vidSec .container .videoWrapper .play {
    transform: translateY(0) translateX(-155%);
  }
}
.vidSec .container .videoWrapper iframe, .vidSec .container .videoWrapper video {
  position: relative;
  aspect-ratio: auto;
  border-radius: 10px;
  width: 100%;
  will-change: transform;
}
@media (min-width: 768px) {
  .vidSec .container .videoWrapper iframe, .vidSec .container .videoWrapper video {
    transform: scale(0.75);
    transition: transform 1s ease;
  }
}
@media (min-width: 1100px) {
  .vidSec .container .videoWrapper iframe, .vidSec .container .videoWrapper video {
    transform: scale(0.5);
    width: 100%;
    max-width: fit-content;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .vidSec.playing .container .videoWrapper iframe, .vidSec.playing .container .videoWrapper video {
    transform: scale(0.9);
  }
}
.vidSec.playing .container .videoWrapper .pause {
  z-index: 2;
}
@media (min-width: 1100px) {
  .vidSec.playing .container .videoWrapper .pause {
    transform: translateY(0) translateX(0);
  }
}
.vidSec.playing .container .videoWrapper .play {
  z-index: -1;
}
@media (min-width: 1100px) {
  .vidSec.playing .container .videoWrapper .play {
    transform: translateY(0) translateX(-15%);
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 639px) {
  .hero {
    min-height: 90svh;
  }
}
.hero .container {
  padding-top: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1100px) {
  .hero .container {
    padding-top: 0;
  }
}
.hero .container .videoWrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  margin-top: 1rem;
  z-index: 2;
  border-radius: 6px;
}
.hero .container .videoWrapper iframe, .hero .container .videoWrapper video {
  position: relative;
  aspect-ratio: auto;
  border-radius: 6px;
  width: 100%;
}
.hero .container .videoWrapper h1 {
  text-align: center;
  z-index: 4;
  height: fit-content;
  font-size: 38px;
  max-width: 285px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .hero .container .videoWrapper h1 {
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .hero .container .videoWrapper h1 {
    font-size: 54px;
    max-width: 640px;
  }
}

.site-footer .container .logoWrapper svg path {
  fill: #F2526D;
}

.site-footer .container .logoWrapper {
  display: none;
}

.moreFilms {
  padding: 1.5rem 0;
  background-color: #f8f0d9;
  position: relative;
  z-index: 2;
}
.moreFilms .container {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .moreFilms .container {
    position: relative;
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.25) auto;
  }
}
@media only screen and (min-width: 1100px) {
  .moreFilms .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.5) auto;
  }
}
@media only screen and (min-width: 1400px) {
  .moreFilms .container {
    grid-template-columns: calc((1600px - 4rem) / 12 * 1.75) auto;
  }
}
.moreFilms .container .more {
  display: flex;
  justify-content: flex-end;
  grid-column: 1/3;
}
@media (max-width: 767px) {
  .moreFilms .container .leftTitle {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .moreFilms .container .leftTitle span {
    margin-top: -0.5rem;
  }
}
@media (max-width: 767px) {
  .moreFilms .container .rightSide {
    grid-column: 1/3;
  }
}
.moreFilms .container .rightSide ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .moreFilms .container .rightSide ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .moreFilms .container .rightSide ul li.comingSoon a:hover:after {
    opacity: 1;
    background-color: #F2526D;
  }
}
.moreFilms .container .rightSide ul li a {
  border: 1px solid #393C35;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 585/298;
  font-size: clamp(24px, 4vw, 47px);
  font-family: "Instrument Serif", Georgia, serif;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .moreFilms .container .rightSide ul li a {
    aspect-ratio: 585/298;
  }
}
@media (min-width: 1100px) {
  .moreFilms .container .rightSide ul li a {
    transition: 0.3s ease;
  }
  .moreFilms .container .rightSide ul li a:hover:after {
    opacity: 0;
  }
  .moreFilms .container .rightSide ul li a:hover span, .moreFilms .container .rightSide ul li a:hover h3 {
    color: #f7edd5;
  }
}
.moreFilms .container .rightSide ul li a:after {
  transition: opacity 0.3s ease, background-color 0.3s ease;
  position: absolute;
  inset: -1%;
  will-change: opacity;
  margin: auto;
  height: 102%;
  width: 102%;
  background-color: #f8f0d9;
  opacity: 1;
  z-index: 2;
  content: "";
}
.moreFilms .container .rightSide ul li a img {
  display: none;
}
@media (min-width: 640px) {
  .moreFilms .container .rightSide ul li a img {
    position: absolute;
    inset: -1%;
    margin: auto;
    width: 102%;
    max-width: 102%;
    height: 102%;
    object-fit: cover;
    z-index: 1;
    display: block;
  }
}
.moreFilms .container .rightSide ul li a span, .moreFilms .container .rightSide ul li a h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: clamp(24px, 4vw, 47px);
}/*# sourceMappingURL=home.css.map */