* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.22em;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
*::-moz-selection {
  background-color: var(--dark);
  color: var(--red);
}
*::selection {
  background-color: var(--dark);
  color: var(--red);
}

ul,
li {
  list-style: none;
}

button {
  background: none;
  color: inherit;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

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

:root {
  font-size: 18px;
  --dark: #0A0A0A;
  --light: #FAFAFA40;
  --red: #CA191F;
  --white: #ffffff;
  --text: #FAFAFACC;
  --v-margin-size: calc(max(7.22rem, 107px));
  --v-b-margin-size: calc(max(12.22rem, 107px));
  --t-margin-size: calc(max(0.89rem, 12px));
  --carousel-image: 28.89rem;
  --carousel-shift: 28.89rem;
}
@media (max-width: 1700px) {
  :root {
    font-size: 16px;
  }
}
@media (max-width: 1500px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  :root {
    font-size: 12px;
    --carousel-image: 20rem;
    --carousel-shift: 20rem;
  }
}
@media (max-width: 600px) {
  :root {
    font-size: 10px;
    --v-b-margin-size: 200px;
  }
}

body {
  background-color: var(--dark);
  color: var(--white);
}

.header {
  position: fixed;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 5.89rem;
  min-height: 71px;
  display: flex;
  flex-direction: row;
  max-width: min(1640px, 90%);
  margin: auto;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}
.header .logo {
  max-height: 1.45rem;
  min-height: 19px;
}
.header .mobile {
  display: none;
}
@media (max-width: 1100px) {
  .header .mobile {
    display: block;
  }
  .header .mobile.hidden {
    display: none;
  }
}

.navigation-container {
  position: fixed;
  left: calc(50% - min(800px, 45%));
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
}
.navigation-container .mobile {
  display: none;
}
@media (max-width: 1100px) {
  .navigation-container {
    width: 400px;
    background-color: var(--red);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -400px;
    left: auto;
    top: 0;
    transform: translate(0, 0);
    transition: 250ms;
  }
  .navigation-container:not(.hidden) {
    transform: translate(-100%, 0);
  }
  .navigation-container .mobile {
    display: block;
  }
}
@media (max-width: 600px) {
  .navigation-container {
    width: 100%;
    right: -100%;
  }
}
.navigation-container ul {
  display: flex;
  flex-direction: column;
  gap: 2.22rem;
  color: var(--light);
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .navigation-container ul {
    align-items: center;
    gap: 4rem;
  }
}
.navigation-container ul li {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.navigation-container ul li.current a {
  color: var(--red);
}
@media (max-width: 1100px) {
  .navigation-container ul li.current a {
    color: var(--white);
  }
}
@media (min-width: 1100px) {
  .navigation-container ul li.hidden {
    display: none;
  }
  .navigation-container ul li.current:not(.nested) {
    padding-left: 2.78rem;
  }
  .navigation-container ul li.current:not(.nested)::before {
    content: "";
    background-color: var(--white);
    width: 1.78rem;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .navigation-container ul li:hover a {
    color: var(--red);
  }
}

h1,
h2 {
  text-transform: uppercase;
  font-size: inherit;
  font-weight: 600;
  color: var(--light);
}

.red {
  color: var(--red);
}
.large {
  font-family: "Tenor Sans", sans-serif;
  text-transform: uppercase;
  font-size: 4.56rem;
  margin-top: 0.33rem;
}
@media (max-width: 1100px) {
  .large {
    font-size: 3.5rem;
  }
}
@media (max-width: 600px) {
  .large {
    font-size: 2.8rem;
  }
}

.container {
  width: 100%;
  margin-left: calc(50% - min(820px, 45%) + 17.56rem);
  max-width: calc(min(1640px, 90%) - 17.56rem);
}
@media (max-width: 1100px) {
  .container {
    margin: auto;
    max-width: none;
    width: 84vw;
  }
}

section#main {
  position: relative;
  min-height: 100%;
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/screen1.jpg);
  background-image: image-set(
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen1.avif) type('image/avif'),
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen1.jpg) type('image/jpeg')
  );
  background-position: 77%;
  background-size: cover;
}
section#main .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 1100px) {
  section#main .container {
    margin: 0;
    max-width: calc(min(1640px, 90%) - 20rem);
  }
}

.documents {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  font-weight: 400;
  font-size: 0.91rem;
  text-align: start;
}
.documents a {
  display: block;
  color: var(--light);
}
.documents a:hover {
  color: var(--red);
}

.checkbox {
  /* display: flex;
  gap: 2rem;
  align-items: center; */
  position: relative;
  font-size: 10px;
  /* height: 16px; */
  cursor: pointer;
}

.checkbox label {
  padding-left: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  line-height: 16px;
}

.checkbox a{
  display: contents;
  color: var(--red);
}

.checkbox label::before{
  position: absolute;
  left: 0;
  top: 50%;
  content: "";

  transform: translate(0,-50%);
  
  height: 12px;
  width: 12px;
  
  border: 2px solid #707070; 
  border-radius: 2px;
  background-color: #CA191F00;
}

.checkbox label::after {
  position: absolute;
  left: 8px;
  top: calc(50% - 2px);
  content: "";
  width: 6px;
  height: 4px;

  transform: translate(-50%, -50%) rotate(-45deg);

  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);

  opacity: 0;
}

.checkbox:hover label::before,
.checkbox input[type="checkbox"]:focus + label::before{
  border: 2px solid #CA191F80;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
  cursor: pointer;
}

.checkbox input[type="checkbox"]:checked + label::before{
  border: 2px solid #CA191F;
}

.checkbox input[type="checkbox"]:checked + label::after{
  opacity: 1;
}

.buttons {
  display: flex;
  margin-top: 2rem;
  gap: 1.4rem;
  row-gap: 2.6rem;
  font-weight: 600;
  text-transform: uppercase;
  width: min-content;
}
.buttons>* {
 padding: calc(max(1.1rem, 15px)) 2.5rem;
 display: flex;
 cursor: pointer;
 border-radius: 100px;
 align-items: center;
 width: 100%;
}
.buttons .btn-movie {
  flex-direction: column;
  gap: calc(max(11px, 0.88rem));
}
.buttons .btn-movie .ps {
  display: flex;
  align-items: center;
  gap: 13px;
}
.buttons .btn-movie .ps img {
  width: calc(max(50px, 3.88rem));
  height: auto;
}
.buttons .btn-trailer {
  gap: calc(max(15px, 1.2rem));
  justify-content: space-evenly;
}
.buttons .btn-trailer img {
  height: calc(max(55px, 4rem));
  width: auto;
}
#main .buttons > * {
  /* opacity 30 */
  background: #0a0a0a4c;
}
#main .buttons >*:hover {
  /* opacity 70 */
  background: #0a0a0ab2;
}
#contacts .buttons > * {
  background: #ffffff10;
}
#contacts .buttons >*:hover {
  background: #ffffff00;
}
@media (max-width: 1100px) {
  section#main .container {
    align-items: flex-start;
    width: fit-content;
  }
  .buttons {
    font-size: 1.2rem;
    margin-top: 4rem;
    /*  */
    flex-direction: column;

  }
  .documents {
    text-align: center;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  section#main .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  section#main .buttons {
    margin-left: -20px;
  }
  .buttons .btn-movie .ps img {
    max-width: 30px;
  }
  .buttons .btn-trailer img {
    max-height: 40px;
  }
  .buttons > * {
    padding: calc(max(1.1rem, 15px)) 20px;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
  }
}

section#movie {
  position: relative;
  min-height: 100%;
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/screen2.jpg);
  background-image: image-set(
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen2.avif) type('image/avif'),
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen2.jpg) type('image/jpeg')
  );
  background-position: center;
  background-size: cover;
}
section#movie .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  text-align: center;
}
@media (min-width: 1100px) {
  section#movie .container {
    align-items: flex-start;
    max-width: 36.67rem;
    margin-right: calc(50% - min(820px, 45%));
    right: 0;
    transform: translate(0, -50%);
    text-align: start;
  }
}
section#movie p {
  max-width: 36.67rem;
  text-align: justify;
  color: var(--text);
  margin-top: 1.45rem;
}

section#press {
  position: relative;
  min-height: 100%;
  background-color: var(--dark);
}
section#press .h-block {
  margin-top: var(--v-margin-size);
  max-width: 36.67rem;
}
section#press .article-block {
  margin-top: 3.56rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.56rem;
  -moz-column-gap: 2.22rem;
       column-gap: 2.22rem;
  margin-bottom: var(--v-b-margin-size);
}
section#press .article-block .article {
  width: 21.11rem;
  max-width: 40vw;
}
section#press .article-block .article img {
  width: 21.11rem;
  max-width: 40vw;
  max-height: 27.47vw;
  height: 12.22rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section#press .article-block .article .name {
  margin-top: var(--t-margin-size);
  font-size: 1.45rem;
}
section#press .article-block .article .date {
  margin-top: var(--t-margin-size);
  color: var(--light);
}
section#press .article-block .article:hover .name {
  color: var(--red);
}
@media (max-width: 1100px) {
  section#press .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section#press .h-block {
    max-width: none;
    text-align: center;
  }
  section#press .article-block {
    justify-content: center;
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
}

section#people {
  position: relative;
  min-height: 100%;
  background-color: var(--dark);
}
section#people .h-block {
  margin-top: var(--v-margin-size);
  max-width: 36.67rem;
}
section#people .article-block {
  margin-top: 3.56rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.56rem;
  -moz-column-gap: 2.22rem;
       column-gap: 2.22rem;
  margin-bottom: var(--v-b-margin-size);
}
section#people .article-block .article {
  width: 21.11rem;
  max-width: 40vw;
}
section#people .article-block .article img {
  width: 21.11rem;
  max-width: 40vw;
  height: 20.56rem;
  max-height: 42.67vw;
  -o-object-fit: cover;
     object-fit: cover;
}
section#people .article-block .article .contact {
  margin-top: var(--t-margin-size);
}
section#people .article-block .article .review {
  margin-top: var(--t-margin-size);
  color: var(--light);
}
section#people .article-block .article:hover .contact {
  color: var(--red);
}
@media (max-width: 1100px) {
  section#people .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section#people .h-block {
    max-width: none;
    text-align: center;
  }
  section#people .article-block {
    justify-content: center;
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
}

section#me {
  position: relative;
  min-height: 100%;
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/screen5.jpg);
  background-image: image-set(
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen5.avif) type('image/avif'),
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen5.jpg) type('image/jpeg')
  );
  background-position: 75%;
  background-size: cover;
}
section#me .container {
  max-width: calc(50% + min(820px, 45%) - 17.56rem);
}
section#me .h-block {
  margin-top: var(--v-margin-size);
  max-width: 36.67rem;
}
section#me p {
  margin-top: 1.45rem;
  color: var(--text);
  max-width: 36.67rem;
  text-align: justify;
}
section#me .carousel {
  display: flex;
  margin-left: calc(50% - min(820px, 45%) + 17.56rem);
  margin-top: 3.56rem;
  margin-bottom: var(--v-b-margin-size);
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 29rem;
}
section#me .carousel.shifted .image {
  transform: translateX(calc(0px - var(--carousel-shift)));
  transition: 250ms;
}
section#me .carousel .image {
  width: var(--carousel-image);
  min-width: var(--carousel-image);
  transition: 0ms;
}
section#me .carousel .image img {
  margin-top: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0);
  width: var(--carousel-image);
  height: 13.333rem;
  transition: 250ms;
}
section#me .carousel .image .description {
  margin-top: 0.89rem;
  color: var(--light);
  padding-left: 1rem;
  padding-right: 1rem;
}
section#me .carousel .image.current {
  width: 28.89rem;
  min-width: 28.89rem;
  z-index: 1;
}
section#me .carousel .image.current img {
  filter: none;
  margin-top: 0;
  width: 28.89rem;
  height: 23rem;
}
section#me .carousel .image.current .description {
  color: var(--white);
}
section#me .carousel::after {
  content: "";
  position: absolute;
  top: 5rem;
  height: 13.333rem;
  left: 28.89rem;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5019607843));
}
section#me .carousel #right-arrow {
  position: absolute;
  right: calc(50% - min(820px, 45%));
  top: 11.89rem;
  transform: translate(0, -50%);
  z-index: 2;
  cursor: pointer;
}
section#me .carousel #right-arrow:hover path {
  fill: var(--red);
}
section#me .news {
  position: absolute;
  top: var(--v-margin-size);
  right: calc(50% - min(820px, 45%) + 7.78rem);
  display: flex;
  flex-direction: column;
  width: 21.11rem;
  gap: 2.22rem;
}
section#me .news .new .name {
  margin-top: var(--t-margin-size);
  font-size: 1.45rem;
  text-align: justify;
  font-family: "Tenor Sans", sans-serif;
}
section#me .news .new .name:hover a {
  color: var(--red);
}
section#me .news .new .article {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 1.78rem;
}
section#me .news .new .article::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/article.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.89rem;
  height: 0.89rem;
  transform: translate(0, -50%);
}
section#me .news .new .video {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 1.78rem;
}
section#me .news .new .video::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/video.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.89rem;
  height: 0.89rem;
  transform: translate(0, -50%);
}
@media (max-width: 1350px) {
  section#me {
    background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/screen5vertical.jpg);
    background-image: image-set(
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen5vertical.avif) type('image/avif'),
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen5vertical.jpg) type('image/jpeg')
  );
  }
  section#me .news {
    margin-left: calc(50% - min(820px, 45%) + 17.56rem);
    position: relative;
    top: 0;
    right: 0;
    transform: translate(0, 0);
    width: 36.67rem;
    max-width: 36.67rem;
    margin-top: 4rem;
    margin-bottom: var(--v-b-margin-size);
  }
  section#me .news .name {
    font-size: 1.5rem;
  }
  section#me .carousel {
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  section#me .container {
    max-width: none;
  }
  section#me .h-block {
    max-width: none;
    text-align: center;
  }
  section#me p {
    margin-left: auto;
    margin-right: auto;
  }
  section#me .carousel {
    height: 21rem;
    margin-left: 8vw;
    margin-top: 2rem;
  }
  section#me .carousel::after {
    top: 3.5rem;
    height: 10rem;
    left: 28.89rem;
  }
  section#me .carousel .image {
    width: var(--carousel-image);
    min-width: var(--carousel-image);
  }
  section#me .carousel .image img {
    margin-top: 3.5rem;
    width: var(--carousel-image);
    height: 10rem;
  }
  section#me .carousel .image.current {
    width: 20rem;
    min-width: 20rem;
  }
  section#me .carousel .image.current img {
    width: 20rem;
    height: 16rem;
  }
  section#me .carousel #right-arrow {
    top: 8.75rem;
  }
  section#me .news {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  section#me .news {
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
    right: 0;
    transform: translate(0, 0);
  }
  section#me .news .name {
    font-size: 1.5rem;
  }
}

section#contacts {
  position: relative;
  min-height: calc(max(100%, 65rem, 800px));
  background-image: url(https://aae4l2iy5s.a.trbcdn.net/static/screen6.jpg);
  background-image: image-set(
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen6.avif) type('image/avif'),
    url(https://aae4l2iy5s.a.trbcdn.net/static/screen6.jpg) type('image/jpeg')
  );
  background-position: center;
  background-position-x: 70%;
  background-size: cover;
}
section#contacts .container {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 50vh;
  transform: translate(0, -50%);
}
section#contacts .padding {
  padding-left: 20px;
}
section#contacts .social-links {
  margin-top: 2.39rem;
  display: flex;
  gap: 2.89rem;
  align-items: center;
}
section#contacts .social-links svg {
  opacity: 0.5;
}
section#contacts .social-links svg:hover {
  opacity: 1;
}
section#contacts .social-links svg:hover path {
  fill: var(--red);
}
section#contacts .bottom {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: min(1640px, 90%);
  /* bottom: 7.6rem; */
  bottom: 9.6rem;
  left: 50%;
  transform: translate(-50%, 0);
  gap: 4rem;
}
section#contacts .bottom-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 12px;
  color: rgba(250, 250, 250, 0.5);
  font-size: 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
section#contacts .bottom-contacts:first-child {
  margin-bottom: 8px;
}
section#contacts .bottom-contacts a:hover {
  color: var(--red);
  cursor: pointer;
}

section#contacts .bottom .left,
section#contacts .bottom .right {
  display: flex;
  gap: 4rem;
  width: 100%;
}
section#contacts .bottom .left .name,
section#contacts .bottom .right .name {
  /* font-size: 0.56rem; */
  font-size: 10px;
  color: rgba(250, 250, 250, 0.8);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
section#contacts .bottom .left svg,
section#contacts .bottom .left img,
section#contacts .bottom .right svg,
section#contacts .bottom .right img {
  opacity: 0.5;
  height: 1.5rem;
  width: auto;
  filter: grayscale(1);
}
section#contacts .bottom .left svg:hover,
section#contacts .bottom .left img:hover,
section#contacts .bottom .right svg:hover,
section#contacts .bottom .right img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@media (max-width: 1300px) {
  section#contacts .bottom {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    /* margin-bottom: 5rem; */
  }
  section#contacts .bottom .left,
section#contacts .bottom .right {
    justify-content: space-around;
    width: auto;
  }
  section#contacts .bottom .left,
  section#contacts .bottom .right {
    text-align: center;
  }
  section#contacts .bottom .left :first-child,
section#contacts .bottom .right :first-child {
    text-align: start;
  }
  section#contacts .bottom .left :last-child,
section#contacts .bottom .right :last-child {
    text-align: end;
  }
}
section#contacts .rights {
  max-width: 70%;
  text-align: center;
  position: absolute;
  bottom: 2.45rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: var(--light);
}
@media (max-width: 1100px) {

  section#contacts .container {
    position: relative;
    top: 0;
    transform: none;
    margin: 12rem auto 8rem auto;
    align-items: center;
  }
  section#contacts .padding {
    padding-left: 0;
  }

  section#contacts .bottom {
    position: relative;
    transform: none;
    left: 0;
    bottom: 0;
    margin: 0 auto 8rem auto;
  }

  section#contacts .rights {
    position: relative;
    margin: auto auto 16rem auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 700px) {
  section#contacts .bottom {
    flex-direction: row;
    justify-content: space-evenly;
  }
  section#contacts .bottom .left, 
  section#contacts .bottom .right {
    flex-direction: column;
  }
  section#contacts .bottom .left,
  section#contacts .bottom .left :first-child,
  section#contacts .bottom .left :last-child {
    text-align: start;
  }
  section#contacts .bottom .right,
  section#contacts .bottom .right :first-child,
  section#contacts .bottom .right :last-child {
    text-align: end;
  }
  section#contacts .bottom img,
section#contacts .bottom svg {
    height: 1rem;
  }
  section#contacts .social-links {
    gap: 6.4rem;
    row-gap: 5.3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: calc(50vw - 15rem);
    margin-right: calc(50vw - 15rem);
  }
  section#contacts .social-links svg {
    height: 1.9rem;
    width: 1.9rem;
  }
}

.trailer {
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  z-index: 15;
}
.trailer.hidden {
  display: none;
}
.trailer iframe {
  width: 68rem;
  max-width: 84vw;
  height: 38.89rem;
  max-height: 48vw;
}
.trailer #close-video {
  position: absolute;
  top: calc(50vh - 24vw);
  right: calc(50vw - min(800px, 45vw));
  cursor: pointer;
}

section#purchase-the-movie {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 250ms;
}
section#purchase-the-movie.hidden {
  transform: translateY(-100%);
}
section#purchase-the-movie #purchase-background {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(10, 10, 10, 0.8980392157);
  z-index: -1;
}
section#purchase-the-movie .poster {
  border-radius: 20px;
}
@media (max-width: 600px) {
  section#purchase-the-movie .poster {
    display: none;
  }
}
section#purchase-the-movie .purchase-block {
  width: 89.33%;
  max-width: 38.33rem;
  padding: 2.22rem 3.56rem;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  justify-content: center;
  background-color: #0A0A0A;
}
@media (max-width: 600px) {
  section#purchase-the-movie .purchase-block {
    border-radius: 10px;
    padding: 3rem 1.6rem;
    gap: 1.6rem;
  }
  section#purchase-the-movie .purchase-block h1 {
    margin-bottom: 1rem;
    align-self: center;
  }
}
section#purchase-the-movie .purchase-block h1 {
  color: var(--white);
}
section#purchase-the-movie .purchase-block .description {
  color: var(--light);
  color: #ffffff80;
  font-size: calc(max(0.77rem, 12px));
}
section#purchase-the-movie .purchase-block input {
  background-color: #101010;
  height: 2.72rem;
  min-height: 32px;
  color: rgba(250, 250, 250, 0.5019607843);
  font-size: calc(max(0.77rem, 10px));
  padding: 0 2em;
  border: none;
  border-radius: 2px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#purchase-the-movie .purchase-block input:focus-visible,
section#purchase-the-movie .purchase-block input:focus {
  outline: 1px solid var(--red);
}
section#purchase-the-movie .purchase-block .price {
  color: rgba(250, 250, 250, 0.5019607843);
  text-transform: uppercase;
}
section#purchase-the-movie .purchase-block .price b {
  color: var(--white);
}
section#purchase-the-movie .purchase-block .button-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-weight: 600;
  gap: 1rem;
}
section#purchase-the-movie .purchase-block .button-block .to-payment,
section#purchase-the-movie .purchase-block .button-block a.to-payment-foreign {
  min-height: 40px;
  line-height: 1.72rem;
  padding: 0.5rem 0;
  border-radius: 2px;
  text-align: center;
  display: block;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.2509803922);
  color: #0A0A0A;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

section#purchase-the-movie .purchase-block .button-block .to-payment:hover,
section#purchase-the-movie .purchase-block .button-block .to-payment:focus,
section#purchase-the-movie .purchase-block .button-block a.to-payment-foreign:hover,
section#purchase-the-movie .purchase-block .button-block a.to-payment-foreign:focus {
  background-color: rgba(250, 250, 250, 0.5019607843);
}

section#purchase-the-movie .purchase-block .button-block .cancel {
  height: 2.72rem;
  line-height: 2.72rem;
  min-height: 40px;
  border-radius: 2px;
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
  outline: none;
}
section#purchase-the-movie .purchase-block .button-block .cancel:hover,
section#purchase-the-movie .purchase-block .button-block .cancel:focus {
  background-color: var(--red);
}
@media (max-width: 600px) {
  section#purchase-the-movie .purchase-block .button-block .cancel {
    display: none;
  }
}


#error-404,
#success,
#failure {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 5%;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
#success .light,
#failure .light {
  color: var(--light);
}
#failure form input {
  height: 2.72rem;
  min-height: 40px;
  line-height: 2.72rem;
  border-radius: 2px;
  padding-inline: 1rem;
  text-align: center;
  display: block;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.2509803922);
  color: #0A0A0A;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
#failure form input:hover {
  background-color: rgba(250, 250, 250, 0.5019607843);
}
#error-404 .large,
#error-404 a:hover,
#success .large,
#success a:hover,
#failure .large,
#failure a:hover {
  color: var(--red);
}
#error-404 a,
#success a,
#failure a {
  font-weight: 600;
}

section {
  scroll-snap-align: start;
}

.scroll-container {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--dark);
}

.scroll-container::-webkit-scrollbar {
  width: 0.5rem;
}

.scroll-container::-webkit-scrollbar-track {
  background: var(--dark);
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--red);
}