@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding: 8rem;
  -webkit-font-smoothing: antialiased; }

body {
  overflow-x: hidden;
  font-family: "IBM Plex Sans", sans-serif;
  background-color: #141414;
  color: #fff; }

body.active {
  overflow-y: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: normal; }

ul {
  margin: 0;
  padding: 0; }

p {
  margin: 0; }

.navigation {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 5rem 2rem 5rem; }
  .navigation-logo {
    display: inline;
    width: 50%; }
  .navigation-menu {
    display: flex;
    justify-content: space-evenly;
    margin-left: auto;
    padding-right: 1rem; }
  .navigation-item {
    display: flex;
    justify-content: center;
    margin-left: 2rem;
    list-style-type: none;
    cursor: pointer; }
  .navigation-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .navigation-link:hover, .navigation-link:focus {
      color: #fff; }

.hamburger {
  display: none;
  cursor: pointer; }
  .hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }

.about {
  position: relative;
  overflow: hidden;
  height: 100vh; }
  .about-container {
    z-index: 0;
    margin-top: 20rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative; }
  .about-title {
    padding: 0 2rem;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.125rem;
    font-size: 4.5rem;
    filter: drop-shadow(0 0.25rem 0.25rem #141414); }
  .about-img {
    z-index: 1;
    position: absolute;
    display: block;
    height: 100vh; }
  .about-p {
    padding: 0 25rem;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    text-align: center;
    filter: drop-shadow(0 0.25rem 0.25rem #141414); }

.img-1 {
  top: 0;
  left: 0; }

.img-2 {
  top: 0;
  right: 0;
  filter: drop-shadow(0 0.25rem 0.25rem #141414); }

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  -webkit-transition: all 2s ease;
  transition: all 2s ease; }

.fade-in.appear {
  opacity: 1;
  transform: translateY(0px); }

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate; }

@keyframes skeleton-loading {
  0% {
    background-color: #a3b8c2; }
  100% {
    background-color: #f0f3f5; } }

span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease; }

span.reveal {
  opacity: 1;
  transform: translateY(0); }

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem; }
  .main-title {
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 5rem;
    padding: 1rem 0;
    text-shadow: 0.1rem 0.1rem 0.25rem #E50914; }
  .main-title.appear {
    opacity: 1; }
  .main-img {
    display: block;
    width: 7%;
    margin-right: 1rem; }
  .main-button {
    background-color: transparent;
    color: transparent;
    border: none;
    cursor: pointer; }

.cards {
  position: relative;
  overflow-y: hidden;
  border-radius: 0.25rem;
  box-shadow: 0.1rem 0.1rem 0.5rem #313131;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease; }
  .cards:hover {
    transform: scale(1.03);
    box-shadow: 0.15rem 0.15rem 0.5rem #E50914; }
  .cards-wrapper {
    position: relative;
    margin-top: 3rem; }
  .cards-container {
    position: relative;
    height: 100vh;
    display: grid;
    place-items: center;
    gap: 2rem;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 22.5rem 6.5rem 22.5rem; }
  .cards-info {
    position: absolute;
    inset: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-15px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .cards-img {
    display: block;
    width: 13rem;
    height: 15rem;
    object-fit: cover;
    object-position: center; }
  .cards-title {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: center;
    color: #E50914;
    text-shadow: 0.1rem 0.1rem 0.75rem #000;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 40%;
    opacity: 0; }
  .cards-button {
    text-transform: uppercase;
    position: absolute;
    bottom: 3%;
    padding: 0.25rem 1.25rem;
    background-color: #E50914;
    border-radius: 0.2rem;
    text-shadow: 0.1rem 0.1rem 0.05rem #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease; }
    .cards-button:hover {
      transform: scale(1.025);
      box-shadow: 0.15rem 0.15rem 0.5rem #E50914; }
  .cards-error {
    display: none;
    position: absolute;
    background-color: #313131;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0.25rem 0.25rem 0.25rem #000; }
    .cards-error-img {
      width: 30%; }
    .cards-error-p {
      padding-top: 1.5rem;
      line-height: 1.4rem;
      text-align: center;
      font-size: 1rem; }

.prev {
  display: block;
  background: linear-gradient(133deg, #313131 0%, #E50914 90%);
  left: 36.5%; }

.next {
  display: block;
  background: linear-gradient(133deg, #E50914 0%, #313131 90%);
  right: 36%; }

.loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px; }

.loader:after {
  content: "";
  background-image: url(https://assets.nflxext.com/en_us/pages/wiplayer/site-spinner.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 50%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  position: absolute;
  margin: -6px;
  width: inherit;
  height: inherit;
  animation: loader-spin 1.1s linear infinite, 1 !important;
  -webkit-animation: loader-spin 1.1s linear infinite, 1 !important; }

@keyframes loader-spin {
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes loader-spin {
  100% {
    -webkit-transform: rotate(360deg); } }

.modal-content {
  background-color: transparent;
  border: none; }

.modal-dialog {
  max-width: fit-content; }

.modals {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #313131;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0.15rem 0.15rem 0.5rem #E50914;
  width: fit-content; }
  .modals-btn {
    align-self: flex-end;
    background-color: transparent;
    border: none; }
  .modals-close {
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease; }
    .modals-close:hover, .modals-close:focus {
      color: #E50914; }
  .modals-header {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: -1rem;
    padding-bottom: 1rem;
    color: #E50914;
    text-shadow: 0.1rem 0.1rem 0.15rem #141414; }
  .modals-iFrame {
    display: block;
    width: 35rem;
    height: 19.688rem;
    border-radius: 0.5rem;
    filter: drop-shadow(0 0.25rem 0.15rem rgba(20, 20, 20, 0.75));
    margin-bottom: 1rem; }
    .modals-iFrame-container {
      display: flex;
      justify-content: center;
      align-items: center; }
  .modals-p {
    text-align: center;
    max-width: 25rem;
    padding-bottom: 0.5rem; }
  .modals-data {
    text-align: center; }
  .modals-span {
    display: inline;
    opacity: 1;
    transform: none;
    transition: none;
    -webkit-transition: none; }

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0; }
  .contact-wrapper {
    overflow: hidden; }
  .contact-container {
    position: relative;
    margin: 5rem 0 25rem 0; }
  .contact-img1 {
    z-index: 1;
    position: absolute;
    left: 0;
    display: block;
    width: 20%;
    filter: drop-shadow(0 0.25rem 0.25rem #141414); }
  .contact-img2 {
    z-index: 2;
    position: absolute;
    left: 0;
    display: block;
    width: 20%;
    rotate: 0deg; }
  .contact-img3 {
    position: absolute;
    top: 20px;
    left: 12.5%;
    display: block;
    width: 150%; }
  .contact-title {
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 4.5rem;
    padding: 1rem 0;
    text-shadow: 0.1rem 0.1rem 0.25rem #E50914; }
  .contact-p {
    font-size: 1.25rem;
    width: 50vw;
    text-align: center;
    margin-bottom: 2rem; }
  .contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50vw;
    background-color: #313131;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0.25rem 0.25rem 0.5rem #E50914; }
    .contact-form-img {
      position: absolute;
      top: 15%;
      right: 2rem;
      display: block;
      width: 25%; }
    .contact-form-label {
      color: #E50914;
      text-shadow: 0.15rem 0.15rem 0.15rem #000;
      display: block;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem; }
    .contact-form-input {
      width: 60%;
      border-radius: 0.25rem;
      height: 2.25rem;
      margin-bottom: 0.5rem;
      font-size: 1rem;
      display: block;
      outline: none;
      text-align: left;
      background-color: #fff;
      border: none;
      padding-left: 1rem; }
    .contact-form-textarea {
      border-radius: 0.25rem;
      padding: 0.5rem 0 0 1rem;
      width: 100%;
      height: 10rem;
      display: block;
      outline: none;
      resize: none;
      text-align: left;
      background-color: #fff;
      border: none;
      margin-bottom: 0.5rem; }
    .contact-form-submit {
      color: #fff;
      align-self: center;
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.05rem;
      display: block;
      background-color: #000;
      box-shadow: 0.15rem 0.15rem 0.15rem #E50914;
      margin-top: 1rem;
      padding: 0.25rem 1.25rem;
      border-radius: 0.25rem;
      border: none;
      cursor: pointer;
      -webkit-transition: all 0.15s ease;
      transition: all 0.15s ease; }
      .contact-form-submit:hover {
        background-color: #E50914;
        box-shadow: 0.15rem 0.15rem 0.15rem #000; }

.footer {
  margin: 3rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; }
  .footer-link {
    width: 12.5rem; }
  .footer-img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .footer-img:hover, .footer-img:focus {
      transform: scale(1.05); }
  .footer-copy {
    text-align: center;
    color: #fff; }
    .footer-copy-link {
      width: 4rem; }
    .footer-copy-img {
      display: block;
      width: 100%;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      .footer-copy-img:hover, .footer-copy-img:focus {
        transform: scale(1.05); }

@media only screen and (min-width: 2300px) {
  .navigation {
    padding: 2.5rem 25rem 2rem 25rem; }
  .about-container {
    margin-top: 35rem; }
  .cards-img {
    width: 40rem;
    height: 28rem; }
  .cards-button {
    font-size: 2rem; }
  .modals {
    width: 50vw; }
    .modals-header {
      font-size: 2.5rem; }
    .modals-iFrame {
      width: 40vw;
      height: 50vh; }
  .contact-container {
    margin: 5rem 0 42rem 0; }
  .contact-p {
    padding: 0 15rem; }
  .contact-form {
    width: 35vw; }
  .contact-form-img {
    top: 2rem;
    width: 20%; } }

@media only screen and (min-width: 1805px) and (max-width: 2300px) {
  .navigation {
    padding: 2.5rem 25rem 2rem 25rem; }
  .about-container {
    margin-top: 35rem; }
  .about-p {
    padding: 0 40rem; }
  .cards-img {
    width: 30rem;
    height: 22rem; }
  .cards-button {
    font-size: 2rem; }
  .modals {
    width: 50vw; }
    .modals-header {
      font-size: 2.5rem; }
    .modals-iFrame {
      width: 40vw;
      height: 50vh; }
  .contact-container {
    margin: 5rem 0 38rem 0; }
  .contact-p {
    padding: 0 15rem; }
  .contact-form {
    width: 40vw; }
  .contact-form-img {
    top: 2rem;
    width: 20%; } }

@media only screen and (min-width: 1580px) and (max-width: 1805px) {
  .navigation {
    padding: 2.5rem 25rem 2rem 25rem; }
  .about-container {
    margin-top: 26rem; }
  .about-p {
    padding: 0 35rem; }
  .cards-img {
    width: 25rem;
    height: 18rem; }
  .cards-button {
    font-size: 2rem; }
  .modals {
    width: 50vw; }
    .modals-header {
      font-size: 1.5rem; }
    .modals-iFrame {
      width: 40vw;
      height: 50vh; }
  .contact-container {
    margin: 5rem 0 30rem 0; }
  .contact-form-img {
    top: 2rem;
    width: 20%; } }

@media only screen and (max-width: 1180px) {
  .about-p {
    padding: 0 18rem; }
  .main-img {
    width: 10%; }
  .main-title {
    padding: 0.5rem 0; }
  .cards-container {
    padding: 0 10rem 10rem 10rem;
    gap: 0; }
  .cards-img {
    width: 10rem;
    height: 12rem; }
  .cards-button {
    bottom: 13%; }
  .cards-title {
    font-size: 1.2rem;
    line-height: 1.5rem; }
  .prev {
    font-size: 1rem;
    left: 28.5%; }
  .next {
    font-size: 1rem;
    right: 28%; }
  .contact-container {
    margin: 2rem 0 24rem 0; } }

@media only screen and (max-width: 970px) {
  .contact-container {
    margin: 0 0 18rem 0; }
  .contact-p {
    width: 70vw; }
  .contact-form {
    width: 70vw; } }

@media only screen and (max-width: 925px) {
  .about-p {
    padding: 0 10rem; }
  .contact-form-submit {
    background-color: #E50914;
    box-shadow: 0.15rem 0.15rem 0.15rem #000; } }

@media only screen and (max-width: 695px) {
  .hamburger {
    display: block;
    z-index: 2; }
  .hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0; }
  .hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg); }
  .hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg); }
  .navigation-logo {
    position: relative;
    z-index: 3; }
  .navigation-menu {
    z-index: 2;
    position: fixed;
    opacity: 0;
    top: -125%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 10rem;
    width: 100%;
    height: 100%;
    background-color: #141414;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in; }
  .navigation-menu.active {
    top: 0;
    opacity: 1; }
  .about-title {
    font-size: 3rem;
    padding-bottom: 1rem; }
  .about-p {
    font-size: 1rem;
    padding: 0 8rem; }
  .main {
    gap: 0.5rem; }
    .main-img {
      width: 20%;
      margin-bottom: 1rem; }
  .cards-container {
    padding: 0 4rem 10rem 4rem; }
  .cards-img {
    width: 8rem;
    height: 10rem; }
  .cards-title {
    font-size: 1rem;
    line-height: 1.25rem; }
  .cards-button {
    padding: 0.25rem 1rem; }
  .prev {
    left: 23.5%; }
  .next {
    right: 23%; }
  .modals-close {
    font-size: 1rem; }
  .modals-iFrame {
    width: 25rem;
    height: 15rem; }
  .contact-img1 {
    width: 30%; }
  .contact-img2 {
    width: 30%; }
  .contact-img3 {
    top: 0;
    left: 30%;
    width: 175%; }
  .contact-p {
    width: 90vw; }
  .contact-form {
    width: 90vw; } }

@media only screen and (max-width: 576px) {
  .modals {
    width: 25rem;
    margin-left: 4.5rem; }
    .modals-iFrame {
      width: 20rem;
      height: 16rem; }
  .contact-container {
    margin: 0 0 14rem 0; }
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem; }
    .contact-form-img {
      display: none; }
    .contact-form-input {
      width: 100%;
      padding-left: 0.25rem; }
    .contact-form-textarea {
      padding: 0.25rem 0 0 0.25rem; } }

@media only screen and (max-width: 530px) {
  .modals {
    margin-left: 3rem; }
  .contact-img1 {
    width: 40%; }
  .contact-img2 {
    width: 40%; }
  .contact-img3 {
    width: 250%; }
  .contact-p {
    font-size: 1rem; } }

@media only screen and (max-width: 496px) {
  .about-p {
    font-size: 1rem;
    padding: 0 2rem; }
  .modals {
    width: 18rem;
    margin-left: 5rem; }
    .modals-iFrame {
      width: 17rem;
      height: 15rem; } }

@media only screen and (max-width: 436px) {
  .navigation {
    padding: 2.5rem 3rem 2rem 3rem; }
    .navigation-logo {
      width: 70%; }
  .main-img {
    width: 20%; }
  .cards-container {
    padding: 0 2rem 4rem 2rem;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr; }
  .cards-img {
    width: 12rem;
    height: 7rem; }
  .cards-button {
    bottom: 3%; }
  .prev {
    left: 16.5%; }
  .next {
    right: 16%; }
  .modals {
    margin-left: 2.5rem; }
  .contact-container {
    margin: 4rem 0 16rem 0; } }

@media only screen and (max-width: 400px) {
  .contact-img3 {
    width: 300%; } }

@media only screen and (max-width: 380px) {
  .modals {
    margin-left: 1.5rem; } }

@media only screen and (max-width: 366px) {
  .about-container {
    margin-top: 18rem; } }

@media only screen and (max-width: 330px) {
  .modals {
    margin-left: 0.5rem; }
  .contact-container {
    margin: 4rem 0 14rem 0; } }
