:root {
  --font-family: "RobotoFlex", sans-serif;
  --font-size: 26px;
  --content-width: 1440px;
  --container-offset: 20px;
  --gap: 30px;
  --radius: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color: #0B1B34;
  --blue-color: #00FFF0;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "RobotoFlex";
  src: url("../fonts/RobotoFlexVariable.woff2") format("woff2");
  font-weight: 100 1000;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Domaine";
  src: url("../fonts/DomaineDispNar-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Domaine";
  src: url("../fonts/DomaineDispNar-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
h1, h2 {
  font-family: "Domaine", serif;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

p {
  font-family: "RobotoFlex", sans-serif;
  font-weight: 400;
}

h3 {
  font-family: "RobotoFlex", sans-serif;
  font-weight: 500;
  line-height: 90%;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  color: var(--light-color);
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: var(--font-size);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.dark-theme {
  background-color: var(--dark-color);
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header__menu-btn,
.header__close-btn,
.header__lang-btn,
.header__back-btn,
.header__see-all-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 2em;
  color: var(--dark-color);
  background: var(--blue-color);
}

.header__menu-btn,
.header__see-all-btn {
  border: 1px solid var(--blue-color);
  min-width: 180px;
  font-size: 1em;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
}

.header__close-btn,
.header__back-btn {
  aspect-ratio: 1/1;
}
.header__close-btn svg path,
.header__back-btn svg path {
  stroke: var(--dark-color);
}

.header__see-all-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  border-color: var(--light-color);
  color: var(--light-color);
  background: rgba(255, 255, 255, 0.15);
}
.header__see-all-btn svg path {
  stroke: var(--light-color);
}

.header__lang-btn {
  font-size: 0.85em;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  background: none;
}
.header__lang-btn--select {
  color: var(--blue-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(10px);
}
.header svg {
  display: block;
  width: 1em;
  height: 1em;
}
.header svg path {
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__left, .header__right, .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5em;
}
.header__wrapper {
  height: 100%;
  border-left: 4px solid var(--blue-color);
  padding-left: 1.5em;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.header__logo-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2em;
}
.header__logo-mark svg {
  display: block;
  width: auto;
  height: 100%;
}
.header__logo-text {
  color: var(--light-color);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.03em;
}
.header__title {
  font-size: 2em;
}
.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url("../img/slider.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hero__title {
  margin-bottom: calc(var(--gap) * 2);
  font-size: 110px;
  text-align: center;
  line-height: 95%;
  letter-spacing: 1.1px;
  text-align: center;
}
.hero__film-title {
  color: var(--blue-color);
  margin-bottom: calc(var(--gap) * 1);
}

.section {
  position: relative;
  width: 100%;
  height: 100vh;
}
.section__inner {
  position: relative;
  padding-top: calc(var(--gap) * 5);
  padding-bottom: calc(var(--gap) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: calc(var(--gap) * 1.5);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.section__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  min-height: 20%;
}
.section__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: var(--gap);
  width: 60%;
}

.promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(5px);
}
.promo__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75em;
  font-weight: 400;
  line-height: normal;
}

.card {
  display: block;
}

.card__media {
  margin-bottom: var(--gap);
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.card__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.card__title {
  color: var(--light-color);
  height: 2em;
}

.card--portrait .card__media {
  width: 336px;
  height: 472px;
}

.card--wide .card__media {
  width: 428px;
  height: 310px;
}

.card--square .card__media {
  width: 336px;
  aspect-ratio: 1/1;
}

.listing__grid {
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
}

.listing--movies .listing__grid,
.listing--kids .listing__grid,
.listing--music .listing__grid {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.listing--tv .listing__grid,
.listing--games .listing__grid {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.category__list {
  position: fixed;
}

.footer {
  width: 100%;
  height: 120px;
  background-color: #0D182B;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 30px;
  color: #fff;
}
.footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.footer .copyright p {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
}
.footer .copyright img {
  width: 100px;
  height: auto;
}/*# sourceMappingURL=main.css.map */
