@charset "UTF-8";
:root {
  --font-family: "montserrat";
  --Qanelas: "Qanelas";
  --Roboto: "Roboto";
  --light-color: #fff;
  --black-color: #000;
  --red-color: #d21c17;
  --gray-color: gray;
  --hover-color: #EDEDED;
}

/* 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 */
@font-face {
  font-family: "Roboto";
  src: url("../fonts//Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: block;
  font-style: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts//Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: block;
  font-style: medium;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts//Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts//montserrat-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: block;
  font-style: medium;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts//montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: block;
  font-style: bold;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts//montserrat-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: block;
  font-style: semibold;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts//montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: block;
  font-style: regular;
}
@font-face {
  font-family: "Qanelas";
  src: url("../fonts//QanelasRegular.ttf");
  font-weight: 400;
  font-display: block;
  font-style: regular;
}
@font-face {
  font-family: "Qanelas";
  src: url("../fonts//QanelasExtraBold.ttf");
  font-weight: 800;
  font-display: block;
  font-style: extraBold;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

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

a {
  color: unset;
  text-decoration: none;
}
a:focus-visible {
  outline: none;
}

.site-container {
  overflow: hidden;
}
.site-container_clip {
  overflow: clip;
}

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

.btn-reset {
  border: none;
  padding: 0;
  background: 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 {
  position: relative;
  margin: 0 auto;
  max-width: 170rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.6rem;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.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;
}

section {
  margin: 10rem 0;
}
@media (max-width: 1024px) {
  section {
    margin: 8rem 0;
  }
}
@media (max-width: 530px) {
  section {
    margin: 8rem 0;
  }
}

.section-no-margin {
  margin: 0;
}

p {
  margin: 0;
}

.title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 6.4rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--black-color);
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 530px) {
  .title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}

.btn {
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-color: var(--red-color);
  width: 25.5rem;
  height: 6.5rem;
  font-size: 1.8rem;
  color: var(--light-color);
  text-align: center;
  text-transform: uppercase;
  padding: 2.4rem 0;
  font-weight: 700;
}
@media (max-width: 530px) {
  .btn {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1.8rem 0;
    width: 20.6rem;
    height: 5.1rem;
  }
}

.btn:hover {
  background-color: transparent;
}

.btn span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn:hover span {
  letter-spacing: 2px;
}

.btn:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover::after {
  opacity: 0;
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-hover-black {
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-color: var(--red-color);
  width: 25.5rem;
  height: 6.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
  text-align: center;
  text-transform: uppercase;
  padding: 2.4rem 0;
}
@media (max-width: 1024px) {
  .btn-hover-black {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1.8rem 0;
    width: 19.5rem;
    height: 5.1rem;
  }
}
@media (max-width: 530px) {
  .btn-hover-black {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1.8rem 0;
    width: 19.5rem;
    height: 5.1rem;
  }
}

.btn-hover-black:hover {
  background-color: transparent;
  color: var(--black-color);
}

.btn-hover-black span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-hover-black::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: var(--black-color);
  border-bottom-color: var(--black-color);
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-hover-black:hover span {
  letter-spacing: 2px;
}

.btn-hover-black:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-hover-black::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-hover-black:hover::after {
  opacity: 0;
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-black {
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-color: var(--black-color);
  width: 25.5rem;
  height: 6.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
  text-align: center;
  text-transform: uppercase;
  padding: 2.4rem 0;
}

.btn-black:hover {
  background-color: transparent;
  color: var(--black-color);
}

.btn-black span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-black::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: var(--black-color);
  border-bottom-color: var(--black-color);
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-black:hover span {
  letter-spacing: 2px;
}

.btn-black:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-black::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-black:hover::after {
  opacity: 0;
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-white {
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-color: var(--light-color);
  width: 25.5rem;
  height: 6.5rem;
  font-size: 1.8rem;
  color: var(--black-color);
  text-align: center;
  text-transform: uppercase;
  padding: 2.4rem 0;
  font-weight: 700;
}
@media (max-width: 530px) {
  .btn-white {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1.8rem 0;
    width: 20.6rem;
    height: 5.1rem;
  }
}

.btn-white:hover {
  background-color: transparent;
  color: var(--light-color);
}

.btn-white span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-white::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.btn-white:hover span {
  letter-spacing: 2px;
}

.btn-white:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-white:hover::after {
  opacity: 0;
  -webkit-transform: scale(0.1, 1);
  -ms-transform: scale(0.1, 1);
  transform: scale(0.1, 1);
}

.custom-select {
  position: relative;
  width: 25.8rem;
  font-weight: 500;
  font-size: 2rem;
  z-index: 20;
}
@media (max-width: 530px) {
  .custom-select {
    width: 100%;
  }
}

.select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid black;
  padding: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select-box:focus {
  outline: none;
}

.arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.options {
  display: none;
  border: 1px solid black;
  border-top: none;
  position: absolute;
  width: 100%;
  background: white;
  z-index: 20;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background: #f0f0f0;
}

.content-cms h1, .content-cms h2, .content-cms h3, .content-cms h4 {
  font-family: var(--Roboto);
  font-weight: 700;
  text-transform: uppercase;
  margin: 3rem 0;
}
@media (max-width: 530px) {
  .content-cms h1, .content-cms h2, .content-cms h3, .content-cms h4 {
    margin: 1.5rem 0;
  }
}
.content-cms h1 {
  font-size: 6.4rem;
}
@media (max-width: 530px) {
  .content-cms h1 {
    font-size: 3.6rem;
  }
}
.content-cms h2 {
  font-size: 4.4rem;
}
@media (max-width: 530px) {
  .content-cms h2 {
    font-size: 3.2rem;
  }
}
.content-cms h3 {
  font-size: 3.2rem;
}
@media (max-width: 530px) {
  .content-cms h3 {
    font-size: 2.4rem;
  }
}
.content-cms h4 {
  font-size: 2.4rem;
}
@media (max-width: 530px) {
  .content-cms h4 {
    font-size: 1.8rem;
  }
}
.content-cms h5, .content-cms h6 {
  font-weight: 600;
  margin: 0;
  margin-bottom: 1.5rem;
}
.content-cms h4 {
  font-size: 2.4rem;
}
@media (max-width: 530px) {
  .content-cms h4 {
    font-size: 1.8rem;
  }
}
.content-cms h5 {
  font-size: 2.4rem;
}
@media (max-width: 530px) {
  .content-cms h5 {
    font-size: 1.8rem;
  }
}
.content-cms h6 {
  font-size: 2rem;
}
@media (max-width: 530px) {
  .content-cms h6 {
    font-size: 1.6rem;
  }
}
.content-cms p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .content-cms p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.content-cms p a {
  color: var(--red-color);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.content-cms img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 3rem 0;
}
@media (max-width: 530px) {
  .content-cms img {
    height: auto;
  }
}
.content-cms li {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
}
@media (max-width: 530px) {
  .content-cms li {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
  }
}
.content-cms li:last-child {
  margin-bottom: 0;
}
.content-cms ul {
  margin: 2.5rem 0;
}
@media (max-width: 530px) {
  .content-cms ul {
    margin: 2.5rem 0;
    padding: 0;
  }
}
.content-cms__text-with-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
.content-cms__text-with-pic img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
@media (max-width: 530px) {
  .content-cms__text-with-pic img {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .content-cms__text-with-pic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.content-cms table {
  border-collapse: collapse; /* Убирает промежутки между ячейками */
  width: 100%; /* Задает ширину таблицы */
  border: none;
  table-layout: fixed;
  margin: 3rem 0;
}
@media (max-width: 530px) {
  .content-cms table {
    width: 90rem;
  }
}
.content-cms table th, .content-cms table td {
  border: none; /* Убирает границы ячеек */
  padding: 0; /* Убирает внутренние отступы */
  margin: 0; /* Убирает внешние отступы */
  text-align: center; /* Выравнивание текста в ячейках */
  padding: 1rem 3.6rem;
}
.content-cms table td {
  font-size: 1.6rem;
}
.content-cms table th {
  background-color: white;
  font-size: 1.6rem;
  font-weight: 500;
}
.content-cms table tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05); /* Цвет фона для каждой второй строки */
}
.content-cms blockquote {
  margin: 6rem 0;
  padding: 7rem 24.4rem;
  background-color: rgba(0, 0, 0, 0.05);
}
@media (max-width: 530px) {
  .content-cms blockquote {
    padding: 7rem 2rem;
  }
}
.content-cms blockquote:before {
  content: url(/img/type-text/quotes.svg);
  display: block;
  margin-bottom: 2rem;
}
.content-cms blockquote p {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.content-cms blockquote cite {
  font-weight: 700;
  font-size: 1.8rem;
  font-style: normal;
}
.content-cms blockquote footer p {
  font-size: 1.6rem;
}
.content-cms iframe {
  width: 100%;
  height: 62.7rem;
  margin: 3rem 0;
}
@media (max-width: 530px) {
  .content-cms iframe {
    height: 19rem;
  }
}

@media (max-width: 530px) {
  .table__wrapper {
    position: relative;
    overflow: scroll;
    max-width: 100%;
  }
}

html {
  --refRes: 1920;
  font-size: calc(100vw / var(--refRes) * 10) !important;
}
@media (min-width: 1921px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  html {
    --refRes: 768 !important;
  }
}
@media (max-width: 530px) {
  html {
    --refRes: 390 !important;
  }
}

.header {
  border: 1px solid var(--gray-color);
  padding-left: 1.5rem;
  background-color: var(--light-color);
  position: fixed;
  width: 100%;
  height: 10rem;
  padding: 1rem 0;
  z-index: 30;
}
@media (max-width: 1024px) {
  .header {
    padding: 0 0;
    height: auto;
  }
}
@media (max-width: 530px) {
  .header {
    padding: 0 0;
    height: auto;
  }
}
.header__container {
  max-width: 190rem;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__container {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 530px) {
  .header__container {
    padding: 1rem 1.5rem;
  }
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  margin-right: 8rem;
  width: 25.5rem;
  height: 8.2rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 17.3rem;
    height: 5.6rem;
    margin-right: 0;
    z-index: 50;
  }
}
@media (max-width: 530px) {
  .header__logo {
    width: 17.3rem;
    height: 5.6rem;
    margin-right: 0;
    z-index: 50;
  }
}
.header__menu {
  margin-right: 27.7rem;
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
.header__menu li {
  list-style-type: none;
}
.header__menu-item {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--black-color);
  padding: 3.2rem 0;
  border-bottom: 5px solid transparent;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .header__menu-item {
    padding: 0;
    border-bottom: none;
  }
}
.header__menu-item:hover {
  border-bottom: 5px solid var(--red-color);
}
@media (max-width: 1024px) {
  .header__menu-item:hover {
    border-bottom: none;
  }
}
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--light-color);
  width: calc(100% - 10rem);
  padding: 0;
  padding-left: 25.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.header .header__menu-list li:hover > .header__submenu {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  height: 10.4rem;
}
.header__submenu-item {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--black-color);
  padding: 3.7rem 0;
  border-bottom: 5px solid transparent;
}
.header__submenu-item:hover {
  border-bottom: 5px solid var(--red-color);
}
.header__visually-impaired {
  font-family: "montserrat";
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__visually-impaired:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__visually-impaired img {
  margin-right: 0.5rem;
  width: 2.8rem;
  height: auto;
}
@media (max-width: 1024px) {
  .header__visually-impaired {
    display: none;
  }
}
.header__search {
  width: 10rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--light-color);
  border-left: 1px solid var(--gray-color);
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header__search {
    display: none;
    border: 1px solid var(--gray-color);
  }
}
.header__links {
  padding: 2.5rem;
  padding-bottom: 0;
  position: fixed;
  top: 10rem;
  right: 0;
  border: 1px solid var(--light-color);
  border-top: none;
  width: 10.1rem;
  height: calc(100% - 9rem);
}
@media (max-width: 1024px) {
  .header__links {
    display: none;
  }
}
.header .header__links-scrolled {
  border: 1px solid var(--gray-color);
  border-top: none;
}
.header__links-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.header .header__links-item-scrolled {
  background-color: rgba(172, 172, 172, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header__links-item-scrolled svg path {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__links-item {
  display: block;
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__links-item svg {
  width: 2.4rem;
  height: 1.4rem;
}
.header__links-item svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__links-up {
  width: 10rem;
  height: 10rem;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.header__burger-wrapper {
  width: 7.6rem;
  height: 7.6rem;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  right: 0;
  z-index: 30;
  border: 1px solid var(--gray-color);
  border-bottom: none;
  display: none;
}
@media (max-width: 1024px) {
  .header__burger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 530px) {
  .header__burger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1024px) {
  .header__burger {
    position: relative;
    width: 40px;
    height: 24px;
  }
}
@media (max-width: 530px) {
  .header__burger {
    position: relative;
    width: 40px;
    height: 24px;
  }
}
.header__burger span {
  background-color: var(--black-color);
  position: absolute;
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__burger::before, .header__burger::after {
  content: "";
  background-color: var(--black-color);
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__burger::before {
  top: 0;
}
.header__burger::after {
  bottom: 0;
}
.header.open .header__burger::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header.open .header__burger::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header.open .header__burger span {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header.open .header__menu-burger {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__menu-burger {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  padding: 3rem;
  padding-top: 12rem;
  z-index: 30;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__menu-burger .header__links-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.header__menu-burger .header__links-socials .header__links-item-burger {
  display: block;
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(172, 172, 172, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-burger .header__links-socials .header__links-item-burger svg path {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-burger .header__visually-impaired-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__menu-burger .header__visually-impaired {
  display: block;
}
.header__menu-burger-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 14rem;
}
.header__submenu-adaptive {
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100vh;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 55;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.header__submenu-adaptive.active {
  visibility: visible;
  opacity: 1;
}
.header__submenu-adaptive-body {
  position: absolute;
  background-color: var(--light-color);
  right: -0.1rem;
  right: -0.1rem;
  width: 0;
  height: 100vh;
  padding: 10rem 3rem 3rem 3rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
@media (max-width: 530px) {
  .header__submenu-adaptive-body {
    padding: 5rem 1.5rem 1.5rem 1.5rem;
  }
}
.header__submenu-adaptive-body.active {
  width: 80vw;
}
.header__submenu-adaptive-close {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.header__submenu-adaptive-item {
  display: none;
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 2rem;
}
.header__submenu-adaptive-item:last-child {
  margin-bottom: 0;
}

.header__menu-burger .header__search {
  position: absolute;
  display: block;
  width: 7.6rem;
  height: 7.6rem;
  top: 7.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 1px;
}
.header__menu-burger .header__visually-impaired {
  color: black;
}
.header__menu-burger .header__visually-impaired a {
  color: black;
}

.header__search-input {
  height: 100%;
  position: absolute;
  top: 0;
  right: 9.8rem;
  border: none;
  border-left: 1px solid var(--gray-color);
  outline: none;
  z-index: 10;
  text-transform: uppercase;
  width: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
}
@media (max-width: 1024px) {
  .header__search-input {
    right: 7.6rem;
  }
}

.header__search-input.active {
  width: 151.6rem;
  visibility: visible;
  padding: 4.3rem;
  padding-left: 7.3rem;
}
@media (max-width: 1024px) {
  .header__search-input.active {
    width: calc(100% - 7.6rem);
    z-index: 300;
    padding: 2rem;
    padding-left: 4rem;
  }
}

.header__search-close {
  position: absolute;
  top: 4.1rem;
  left: 33rem;
  cursor: pointer;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
@media (max-width: 1024px) {
  .header__search-close {
    top: 3rem;
    left: 1rem;
  }
}

.header__search-close.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (max-width: 1024px) {
  .header__search-close.active {
    z-index: 301;
  }
}

.footer {
  background-color: var(--black-color);
  border-top: 0.6rem solid var(--red-color);
}
@media (max-width: 1024px) {
  .footer {
    display: none;
  }
}
.footer .container {
  padding-right: 3rem;
}
.footer__top {
  padding-top: 9.7rem;
  margin-bottom: 9.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__top-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4rem;
  color: var(--light-color);
  text-transform: uppercase;
  max-width: 56.4rem;
}
@media (max-width: 1024px) {
  .footer__top-name {
    font-size: 2.4rem;
    padding-top: 6rem;
    margin-bottom: 4rem;
  }
}
.footer__top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .footer__top-menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4rem;
  }
}
@media (max-width: 530px) {
  .footer__top-menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
  }
}
.footer__top-menu-item {
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--gray-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__top-menu-item:hover {
  color: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 17rem;
}
.footer__main-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.footer__main-info-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.2rem;
}
.footer__main-info-title {
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--light-color);
  opacity: 70%;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .footer__main-info-title {
    margin-bottom: 1rem;
  }
}
.footer__main-info-value {
  font-weight: 400;
  font-size: 2rem;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .footer__main-info-value {
    margin-bottom: 3rem;
  }
  .footer__main-info-value:last-child {
    margin-bottom: 4.4rem;
  }
}
.footer__main-info-value a {
  color: var(--light-color);
}
.footer__main-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__main-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-right: 3rem;
}
@media (max-width: 1024px) {
  .footer__main-socials {
    margin-bottom: 1.6rem;
  }
}
.footer__main-socials-item {
  width: 5rem;
  height: 5rem;
  background-color: var(--gray-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__main-input {
  width: 33rem;
  height: 5rem;
  border: none;
  background-color: rgb(27, 27, 27);
  padding: 1.3rem 2rem;
  font-family: var(--Qanelas);
  font-weight: 400;
  font-size: 2rem;
  color: var(--light-color);
  margin-bottom: 2rem;
}
@media (max-width: 530px) {
  .footer__main-input {
    width: 100%;
    margin-bottom: ren(16);
  }
}
.footer__main-btn {
  display: block;
  width: 33rem;
  height: 5rem;
  background-color: var(--light-color);
  font-family: var(--Qanelas);
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  border: 1px solid var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: black;
}
.footer__main-btn:hover {
  background-color: transparent;
  color: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .footer__main-btn {
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 530px) {
  .footer__main-btn {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.footer__bottom {
  border-top: 1px solid var(--gray-color);
  padding: 2rem 0;
}
.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__bottom-row {
    display: block;
  }
}
.footer__bottom-copyright {
  font-size: 2rem;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .footer__bottom-copyright {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.footer__bottom-2dit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__bottom-2dit p {
  font-size: 2rem;
  color: var(--light-color);
  margin-right: 0.8rem;
}

.footer__adaptive {
  display: none;
}
@media (max-width: 1024px) {
  .footer__adaptive {
    display: block;
  }
}

.main-first-screen {
  padding-top: 10rem;
}
@media (max-width: 1024px) {
  .main-first-screen {
    padding-top: 7.5rem;
  }
}
.main-first-screen__column {
  position: relative;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--Roboto);
  font-weight: 700;
  color: var(--light-color);
  padding-top: 24.8rem;
  z-index: 5;
}
@media (max-width: 1024px) {
  .main-first-screen__column {
    padding-top: 28rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__column {
    padding-top: 20rem;
  }
}
.main-first-screen__premiere {
  font-family: var(--Qanelas);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--red-color);
  margin-bottom: 2.8rem;
}
@media (max-width: 1024px) {
  .main-first-screen__premiere {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__premiere {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.main-first-screen__date {
  font-size: 3.6rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-first-screen__date {
    font-size: 3.2rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__date {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.main-first-screen__name {
  font-size: 7.2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-first-screen__name {
    font-size: 4.6rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__name {
    font-weight: 700;
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.main-first-screen__description {
  font-size: 4.2rem;
  margin-bottom: 3.7rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-first-screen__description {
    font-size: 3.2rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__description {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.main-first-screen__btn {
  width: 25.5rem;
}
@media (max-width: 530px) {
  .main-first-screen__btn {
    width: 20.6rem;
  }
}
.main-first-screen__slide_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
.main-first-screen__agerating {
  position: absolute;
  right: 12rem;
  top: 2rem;
  width: 7.5rem;
  height: 7.5rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 2.4rem;
  z-index: 5;
}
@media (max-width: 1024px) {
  .main-first-screen__agerating {
    right: 1.6rem;
    top: 1.6rem;
  }
}
@media (max-width: 530px) {
  .main-first-screen__agerating {
    right: 1.6rem;
    top: 1.6rem;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 1.6rem;
  }
}
.main-first-screen__slider {
  position: relative;
}
.main-first-screen__slide {
  width: 100%;
  height: 87rem;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 530px) {
  .main-first-screen__slide {
    height: 63.3rem;
  }
}
.main-first-screen__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 87rem;
}
@media (max-width: 530px) {
  .main-first-screen__wrapper {
    height: 63.3rem;
  }
}
.main-first-screen__navigation {
  position: absolute;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 0.3rem;
}
@media (max-width: 530px) {
  .main-first-screen__navigation {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: unset;
    bottom: 1rem;
  }
}
.main-first-screen__navigation [aria-disabled=true] {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation [aria-disabled=true]:hover rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: white;
}
.main-first-screen__navigation [aria-disabled=true]:hover path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #2C2C2C;
}
.main-first-screen__navigation-prev {
  width: 9rem;
  height: 9rem;
  cursor: pointer;
}
.main-first-screen__navigation-prev rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-prev path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-prev:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-prev:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 530px) {
  .main-first-screen__navigation-prev {
    width: 6rem;
    height: 6rem;
  }
}
.main-first-screen__navigation-next {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
}
.main-first-screen__navigation-next rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-next path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-next:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-first-screen__navigation-next:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 530px) {
  .main-first-screen__navigation-next {
    width: 6rem;
    height: 6rem;
  }
}

@media (max-width: 530px) {
  .main-poster {
    display: none;
  }
}
.main-poster__title {
  font-size: 6.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 530px) {
  .main-poster__title {
    font-size: 3.2rem;
  }
}
.main-poster__item-wrapper {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-poster__item-wrapper:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-poster__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 530px) {
  .main-poster__item {
    display: block;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .main-poster__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.main-poster__date {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 6rem;
  min-width: 12rem;
}
@media (max-width: 1024px) {
  .main-poster__date {
    min-width: 0rem;
    margin-right: 2rem;
  }
}
.main-poster__date-number {
  font-weight: 600;
  font-size: 4.4rem;
}
@media (max-width: 1024px) {
  .main-poster__date-number {
    font-size: 2.4rem;
  }
}
@media (max-width: 530px) {
  .main-poster__date-number {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.main-poster__date-month {
  font-weight: 500;
  font-size: 2.4rem;
  text-transform: lowercase;
}
@media (max-width: 1024px) {
  .main-poster__date-month {
    font-size: 1.8rem;
  }
}
.main-poster__date-day {
  font-weight: 500;
  font-size: 2.4rem;
  text-transform: lowercase;
}
@media (max-width: 1024px) {
  .main-poster__date-day {
    font-size: 1.6rem;
  }
}
@media (max-width: 530px) {
  .main-poster__date-day {
    font-size: 1.6rem;
  }
}
.main-poster__image {
  width: 31rem;
  height: 19rem;
  -o-object-fit: cover;
  object-fit: cover;
  background: #000;
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
  margin-right: 3rem;
}
@media (max-width: 1024px) {
  .main-poster__image {
    width: 21rem;
    margin-right: 2rem;
  }
}
@media (max-width: 530px) {
  .main-poster__image {
    width: 100%;
    height: 22rem;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.main-poster__info {
  font-weight: 600;
  font-size: 2rem;
  color: #7a7a7a;
}
.main-poster__info-genre {
  margin-bottom: 0.4rem;
}
@media (max-width: 1024px) {
  .main-poster__info-genre {
    font-size: 1.6rem;
  }
}
@media (max-width: 530px) {
  .main-poster__info-genre {
    font-weight: 600;
    font-size: 1.6rem;
    color: #7a7a7a;
    margin-bottom: 0.5rem;
  }
}
.main-poster__info-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.4rem;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .main-poster__info-name {
    font-size: 2.1rem;
  }
}
@media (max-width: 530px) {
  .main-poster__info-name {
    font-size: 2.4rem;
  }
}
.main-poster__info-author {
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .main-poster__info-author {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 530px) {
  .main-poster__info-author {
    font-weight: 600;
    font-size: 1.6rem;
    color: #7a7a7a;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1024px) {
  .main-poster__info-duration {
    font-size: 1.6rem;
  }
}
@media (max-width: 530px) {
  .main-poster__info-duration {
    font-weight: 600;
    font-size: 1.6rem;
    color: #7a7a7a;
    margin-bottom: 1rem;
  }
}
.main-poster__buttons {
  margin-left: auto;
}
@media (max-width: 530px) {
  .main-poster__buttons {
    margin-left: 0;
  }
}
.main-poster__button {
  height: 7.1rem;
  padding: 2.8rem 0;
}
@media (max-width: 1024px) {
  .main-poster__button {
    height: 5.1rem;
    padding: 1.8rem 0;
  }
}
.main-poster__buttons-pushkincards {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-poster__buttons-pushkincards:hover {
  color: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 530px) {
  .main-poster__buttons-pushkincards {
    margin-bottom: 0.5rem;
  }
}
.main-poster__button {
  display: block;
}
.main-poster__more {
  display: block;
  margin: 0 auto;
}

.main-poster-adaptive {
  display: none;
}
@media (max-width: 530px) {
  .main-poster-adaptive {
    display: block;
  }
}

.main-poster-adaptive__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-events__title {
  font-size: 6.4rem;
}
@media (max-width: 530px) {
  .main-events__title {
    font-size: 3.2rem;
  }
}
.main-events__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .main-events__cards {
    row-gap: 1.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 530px) {
  .main-events__cards {
    display: block;
  }
}
.main-events__cards-item {
  width: 54.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-events__cards-item:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .main-events__cards-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 35.8rem;
  }
}
@media (max-width: 530px) {
  .main-events__cards-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    width: 100%;
  }
}
.main-events__cards-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.main-events__item-picture {
  width: 100%;
  height: 44rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
@media (max-width: 1024px) {
  .main-events__item-picture {
    height: 28.8rem;
  }
}
@media (max-width: 530px) {
  .main-events__item-picture {
    width: 100%;
    height: 28.8rem;
  }
}
.main-events__text-content {
  padding: 2.5rem 4rem;
}
.main-events__text-content p {
  margin-bottom: 0.4rem;
}
.main-events__text-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .main-events__text-content {
    padding: 1.5rem 0;
    paddingbottom: 0;
  }
}
@media (max-width: 530px) {
  .main-events__text-content {
    padding: 1.5rem 0;
    paddingbottom: 0;
  }
}
.main-events__item-date {
  font-size: 1.6rem;
}
.main-events__item-title {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-events__item-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 530px) {
  .main-events__item-title {
    font-size: 2.4rem;
  }
}
.main-events__item-description {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .main-events__item-description {
    font-size: 1.6rem;
  }
}
@media (max-width: 530px) {
  .main-events__item-description {
    font-size: 1.6rem;
  }
}

.main-information {
  margin-bottom: 0;
}
.main-information__wrapper {
  position: relative;
}
.main-information__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.main-information__content {
  padding: 17.2rem 0;
}
@media (max-width: 530px) {
  .main-information__content {
    padding: 18.7rem 0;
  }
}
.main-information__title {
  text-align: left;
  margin-bottom: 1rem;
  color: var(--light-color);
}
@media (max-width: 530px) {
  .main-information__title {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
  }
}
.main-information__description {
  font-family: var(--Qanelas);
  font-weight: 400;
  font-size: 2.4rem;
  max-width: 72rem;
  margin-bottom: 3rem;
  color: var(--light-color);
}
@media (max-width: 530px) {
  .main-information__description {
    font-size: 1.6rem;
  }
}
.main-information__btn {
  display: block;
}

.history {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .history {
    padding-top: 3rem;
  }
}
.history__container {
  position: relative;
  margin: 0 auto;
  max-width: 141.2rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .history__container {
    padding: 0 2rem;
  }
}
.history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 1024px) {
  .history__row {
    display: block;
  }
}
.history__row:last-child {
  margin-bottom: 0;
}
.history__row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.history__picture-portret {
  width: 54.7rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .history__picture-portret {
    width: 100%;
    height: auto;
  }
}
.history__picture-portret img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.history__picture {
  width: 83.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .history__picture {
    width: 100%;
    height: auto;
  }
}
.history__picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.history__picture-caption {
  font-style: italic;
  font-weight: 300;
  font-size: 1.8rem;
  padding-top: 1.5rem;
}
@media (max-width: 530px) {
  .history__picture-caption {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
}
.history__text {
  padding-top: 5rem;
}
@media (max-width: 1024px) {
  .history__text {
    padding-top: 0;
    margin-bottom: 2rem;
  }
}
.history__text p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.history__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 530px) {
  .history__text p {
    font-size: 1.6rem;
  }
}

.auditorium-panorama {
  padding-top: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 530px) {
  .auditorium-panorama {
    padding-top: 3rem;
    margin-bottom: 3rem;
  }
}
.auditorium-panorama__item {
  width: 100%;
  height: auto;
}
@media (max-width: 530px) {
  .auditorium-panorama__item {
    height: 18rem;
  }
}
.auditorium-panorama__item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.auditorium-gallery {
  margin-bottom: 6rem;
}
.auditorium-gallery__title {
  font-size: 4.2rem;
  margin-bottom: 1.7rem;
  text-align: center;
}
@media (max-width: 530px) {
  .auditorium-gallery__title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.auditorium-gallery__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 530px) {
  .auditorium-gallery__slider {
    display: none;
  }
}
.auditorium-gallery__slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.auditorium-gallery__slider-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  width: 54.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .auditorium-gallery__slider-slide {
    gap: 1rem;
  }
}
.auditorium-gallery__slider-slide img {
  width: 54.6rem;
  height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 530px) {
  .auditorium-gallery__slider-slide img {
    width: 17.5rem;
    height: 12.7rem;
  }
}
.auditorium-gallery__navigation {
  padding-top: 3rem;
}
@media (max-width: 530px) {
  .auditorium-gallery__navigation {
    padding-top: 1.2rem;
    margin-left: 21rem;
  }
}
.auditorium-gallery__navigation [aria-disabled=true] {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation [aria-disabled=true]:hover rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: white;
}
.auditorium-gallery__navigation [aria-disabled=true]:hover path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #2C2C2C;
}
.auditorium-gallery__navigation-prev {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .auditorium-gallery__navigation-prev {
    width: 7rem;
    height: 7rem;
  }
}
.auditorium-gallery__navigation-prev rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-prev path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-prev:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-prev:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-next {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  margin-left: -0.5rem;
}
@media (max-width: 1024px) {
  .auditorium-gallery__navigation-next {
    width: 7rem;
    height: 7rem;
  }
}
.auditorium-gallery__navigation-next rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-next path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-next:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__navigation-next:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auditorium-gallery__slider-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 530px) {
  .auditorium-gallery__slider-mobile {
    display: block;
  }
}
.auditorium-gallery__slider-mobile .auditorium-gallery__slider-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  width: 17.5rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.press {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .press {
    padding-top: 3rem;
  }
}
.press__title {
  margin-bottom: 1.4rem;
}
@media (max-width: 1024px) {
  .press__title {
    text-align: left;
  }
}
.press__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3.1rem;
}
@media (max-width: 1024px) {
  .press__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 530px) {
  .press__cards {
    display: block;
  }
}
.press__cards-item {
  width: 54.6rem;
  display: block;
  color: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .press__cards-item {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) and (max-width: 530px) {
  .press__cards-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
.press__cards-item:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.press__cards-image {
  width: 100%;
  height: 44rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .press__cards-image {
    height: auto;
  }
}
.press__cards-image img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  height: 100%;
  display: block;
}
.press__cards-item:hover .press__cards-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.press__cards-text-content {
  padding: 4rem 3.5rem;
  padding-top: 2.5rem;
}
@media (max-width: 1024px) {
  .press__cards-text-content {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.press__cards-text-content p {
  margin-bottom: 0.4rem;
}
.press__cards-text-content p:last-child {
  margin-bottom: 0;
}
.press__cards-date {
  font-size: 1.6rem;
}
.press__cards-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .press__cards-title {
    font-size: 2.4rem;
  }
}
.press__cards-description {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .press__cards-description {
    font-size: 1.6rem;
  }
}
.press__more {
  display: block;
  margin: 0 auto;
}
.press__cards-hidden {
  display: none;
}
.press__custom-select {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 3rem;
}
@media (max-width: 1024px) {
  .press__custom-select {
    right: 0;
  }
}
@media (max-width: 530px) {
  .press__custom-select {
    position: static;
    display: block;
    margin-top: 4rem;
  }
}
.press__top {
  position: relative;
}

.studios {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .studios {
    padding-top: 3rem;
  }
}
.studios__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .studios__cards {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
  }
}
@media (max-width: 530px) {
  .studios__cards {
    display: block;
  }
}
.studios__item {
  width: 83.5rem;
  display: block;
  color: var(--black-color);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 1024px) {
  .studios__item {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .studios__item {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
}
.studios__item:hover {
  background-color: var(--hover-color);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.studios__item-image {
  width: 100%;
  height: 53rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .studios__item-image {
    height: 28.8rem;
  }
}
.studios__item-image img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.studios .studios__item:hover .studios__item-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 530px) {
  .studios .studios__item:hover .studios__item-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.studios__item-text-content {
  padding: 4rem;
  padding-top: 3rem;
}
@media (max-width: 1024px) {
  .studios__item-text-content {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.studios__item-text-content p {
  margin-bottom: 0.4rem;
}
.studios__item-text-content p:last-child {
  margin-bottom: 0;
}
.studios__item-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
}
@media (max-width: 530px) {
  .studios__item-name {
    font-size: 2.4rem;
  }
}
.studios__item-description {
  font-family: var(--Qanelas);
  font-size: 2rem;
}
@media (max-width: 530px) {
  .studios__item-description {
    font-size: 1.6rem;
  }
}

.children-studio {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .children-studio {
    padding-top: 3rem;
  }
}
.children-studio__container {
  position: relative;
  margin: 0 auto;
  max-width: 141.3rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .children-studio__container {
    padding: 0 2rem;
  }
}

.children-studio-slider__title {
  font-size: 4.2rem;
}
@media (max-width: 1024px) {
  .children-studio-slider__title {
    padding-left: 0;
    font-size: 2.4rem;
  }
}
@media (max-width: 1024px) {
  .children-studio-slider .swiper-navigation {
    padding-left: 0;
  }
}
@media (max-width: 530px) {
  .children-studio-slider .swiper-navigation {
    margin-left: 21rem;
  }
}

.partners {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .partners {
    padding-top: 3rem;
  }
}
.partners__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .partners__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 530px) {
  .partners__cards {
    display: block;
  }
}
.partners__item {
  width: 40.2rem;
}
@media (max-width: 1024px) {
  .partners__item {
    width: 35.8rem;
    margin-bottom: 2rem;
  }
  .partners__item:last-child {
    margin-bottom: 0;
  }
}
.partners__item-image {
  padding: 3.9rem;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .partners__item-image {
    border: 1px solid var(--black-color);
    padding: 3.6rem;
    margin-bottom: 1rem;
  }
}
.partners__item-image img {
  width: 32.2rem;
  height: 32.2rem;
}
@media (max-width: 1024px) {
  .partners__item-image img {
    width: 28.6rem;
    height: 28.6rem;
  }
}
.partners__item-image:hover {
  border: 1px solid var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.partners__item-name {
  font-style: italic;
  font-weight: 300;
  font-size: 1.8rem;
}
@media (max-width: 530px) {
  .partners__item-name {
    font-size: 1.6rem;
  }
}

.technical-parameters {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .technical-parameters {
    padding-top: 3rem;
  }
}

.documents {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .documents {
    padding-top: 3rem;
  }
}
.documents__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 2.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  color: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 530px) {
  .documents__item {
    padding: 0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .documents__item:last-child {
    margin-bottom: 0;
  }
}
.documents__item:hover {
  background-color: var(--hover-color);
  color: var(--red-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.documents__item-icon {
  margin-right: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.documents__item:hover .documents__item-icon path {
  fill: var(--red-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.documents__item-name {
  font-size: 1.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.poster {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .poster {
    padding-top: 3rem;
  }
}
.poster__top {
  position: relative;
  z-index: 2;
}
.poster__title {
  text-align: center;
}
.poster__custom-select {
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .poster__custom-select {
    right: 0;
  }
}
@media (max-width: 530px) {
  .poster__custom-select {
    position: static;
    margin-top: 5rem;
  }
}
@media (max-width: 530px) {
  .poster__list {
    display: none;
  }
}
.poster__list-mobile {
  display: none;
}
@media (max-width: 530px) {
  .poster__list-mobile {
    display: block;
  }
}
.poster .main-poster__item {
  margin-left: -10rem;
  padding-left: 10rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .poster .main-poster__item {
    padding-right: 0;
  }
}
@media (max-width: 530px) {
  .poster .main-poster__item {
    width: 100%;
    margin-left: 0;
    padding: 0;
    padding-bottom: 2rem;
  }
}
.poster .main-poster__item:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 530px) {
  .poster .main-poster__item:hover {
    background-color: transparent;
  }
}

.main-poster__buttons-touring {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--red-color);
  margin-top: 1rem;
}

.main-poster__item {
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .main-poster__item {
    padding-right: 0;
  }
}
@media (max-width: 530px) {
  .main-poster__item {
    width: 100%;
    margin-left: 0;
    padding: 0;
    padding-bottom: 2rem;
  }
}

.repertoire {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .repertoire {
    padding-top: 3rem;
  }
}
.repertoire .repertoire__button {
  width: 24.3rem;
  height: 6.5rem;
  display: block;
}
.repertoire__tabs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 530px) {
  .repertoire__tabs-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 4rem;
  }
}
.repertoire__tabs-tile {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .repertoire__tabs-tile {
    font-size: 1.8rem;
  }
}
@media (max-width: 530px) {
  .repertoire__tabs-tile {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .repertoire__tabs-tile:last-child {
    margin-bottom: 0;
  }
}
.repertoire__tabs-active {
  color: var(--red-color);
}
.repertoire__tabs-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  row-gap: 4.2rem;
}
@media (max-width: 1024px) {
  .repertoire__tabs-content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    row-gap: 0rem;
  }
}
@media (max-width: 530px) {
  .repertoire__tabs-content {
    display: block;
  }
}
.repertoire__tabs-content-hidden {
  display: none;
}
.repertoire__tabs-card {
  width: 54.6rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card {
    width: 35.8rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 530px) {
  .repertoire__tabs-card:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.repertoire__tabs-card:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.repertoire__tabs-card:hover .repertoire__tabs-card-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.repertoire__tabs-card-link {
  color: #000000;
}
.repertoire__tabs-card-image {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-image {
    margin-bottom: 1.5rem;
  }
}
.repertoire__tabs-card-image img {
  width: 100%;
  height: 39.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-image img {
    height: 26.2rem;
  }
}
.repertoire__tabs-card-content {
  padding: 3rem;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-content {
    padding: 0;
  }
}
.repertoire__tabs-card-chapter {
  font-family: var(--Roboto);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-chapter {
    font-size: 1.4rem;
  }
}
.repertoire__tabs-card-name {
  font-family: var(--Roboto);
  font-weight: 900;
  font-size: 3.6rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-name {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}
.repertoire__tabs-card-name-show {
  margin-bottom: 1.5rem;
}
.repertoire__tabs-card-description {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.repertoire__tabs-card-premiere {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--red-color);
  z-index: 1;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-premiere {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.6rem;
  }
}
.repertoire__tabs-card-age {
  position: absolute;
  top: 3rem;
  right: 3rem;
  border: 1px solid var(--light-color);
  width: 7.5rem;
  height: 7.5rem;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-age {
    top: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
}
.repertoire__tabs-card-age p {
  font-family: var(--Qanelas);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .repertoire__tabs-card-age p {
    font-size: 1.6rem;
  }
}

.actors {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .actors {
    padding-top: 3rem;
  }
}
.actors__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .actors__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    row-gap: 1.6rem;
  }
}
@media (max-width: 530px) {
  .actors__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    row-gap: 1.6rem;
  }
}
.actors__card {
  width: 40.2rem;
  color: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .actors__card {
    width: 23.7rem;
  }
}
@media (max-width: 530px) {
  .actors__card {
    width: 17.5rem;
  }
}
.actors__card:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actors__card-photo {
  overflow: hidden;
  width: 100%;
  height: 53rem;
}
@media (max-width: 1024px) {
  .actors__card-photo {
    height: 34rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 530px) {
  .actors__card-photo {
    height: 23rem;
    margin-bottom: 0.8rem;
  }
}
.actors__card-photo img {
  width: 100%;
  height: 53rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 1024px) {
  .actors__card-photo img {
    height: 34rem;
  }
}
@media (max-width: 530px) {
  .actors__card-photo img {
    height: 23rem;
  }
}
.actors__card:hover .actors__card-photo img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.actors__card-content {
  padding: 2rem 2.5rem;
}
@media (max-width: 1024px) {
  .actors__card-content {
    padding: 0;
  }
}
.actors__card-post {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .actors__card-post {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
}
.actors__card-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .actors__card-name {
    font-size: 2.4rem;
  }
}
@media (max-width: 530px) {
  .actors__card-name {
    font-size: 1.8rem;
  }
}

.actor {
  padding-top: 13rem;
  margin-top: 0;
}
@media (max-width: 530px) {
  .actor {
    padding-top: 10rem;
  }
}
.actor__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media (max-width: 530px) {
  .actor__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 5rem;
  }
}
.actor__about-left {
  max-width: 97.9rem;
}
@media (max-width: 530px) {
  .actor__about-left {
    width: unset;
  }
}
.actor__name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 7.2rem;
  margin-bottom: 4rem;
  max-width: 75rem;
  padding-top: 3rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .actor__name {
    padding-top: 0;
    max-width: unset;
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}
.actor__about-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--red-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .actor__about-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.actor__about-photo {
  display: block;
  width: 66.1rem;
  height: 81rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .actor__about-photo {
    width: 35.8rem;
    height: 47.2rem;
  }
}
@media (max-width: 530px) {
  .actor__about-photo {
    width: 100%;
    height: 47.2rem;
    margin-bottom: 3rem;
  }
}
.actor__shows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
}
.actor__shows:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .actor__shows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}
.actor__shows-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .actor__shows-title {
    font-size: 3.2rem;
  }
}
.actor__shows-slider-title {
  margin-bottom: 1.7rem;
}
.actor__shows-list {
  width: 83.5rem;
}
@media (max-width: 1024px) {
  .actor__shows-list {
    width: unset;
  }
}
.actor__shows-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.actor__shows-item:last-child {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .actor__shows-item {
    padding: 2rem 0;
  }
}
.actor__shows-name {
  display: block;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--red-color);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  width: 40.2rem;
  margin-right: 3rem;
}
@media (max-width: 1024px) {
  .actor__shows-name {
    font-size: 1.8rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 530px) {
  .actor__shows-name {
    font-size: 1.8rem;
    width: 16rem;
    margin-right: 1.5rem;
  }
}
.actor__shows-role-item {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.actor__shows-role-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .actor__shows-role-item {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .actor__shows-left {
    min-height: unset;
  }
}
.actor__shows-right {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: sticky;
  top: 10rem;
}
@media (max-width: 1024px) {
  .actor__shows-right {
    position: unset;
    top: unset;
  }
}
.actor__shows-slider {
  overflow: hidden;
}
@media (max-width: 530px) {
  .actor__shows-slider {
    overflow: visible;
  }
}
.actor__shows-slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 83.7rem;
}
@media (max-width: 530px) {
  .actor__shows-slider-wrapper {
    width: 37.4rem;
  }
}
.actor__shows-slider-slide {
  width: 54.6rem;
  height: 40rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 530px) {
  .actor__shows-slider-slide {
    width: 34.2rem;
    height: 25rem;
  }
}
.actor__shows-slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.actor__shows-slider-navigation {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0rem;
}
@media (max-width: 530px) {
  .actor__shows-slider-navigation {
    margin-top: 1.6rem;
    margin-left: 21.7rem;
  }
}
.actor__shows-slider-navigation [aria-disabled=true] {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation [aria-disabled=true]:hover rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: white;
}
.actor__shows-slider-navigation [aria-disabled=true]:hover path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #2C2C2C;
}
.actor__shows-slider-navigation-prev {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .actor__shows-slider-navigation-prev {
    width: 7rem;
    height: 7rem;
  }
}
.actor__shows-slider-navigation-prev rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-prev path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-prev:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-prev:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-next {
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  margin-left: -1px;
}
@media (max-width: 1024px) {
  .actor__shows-slider-navigation-next {
    width: 7rem;
    height: 7rem;
  }
}
.actor__shows-slider-navigation-next rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-next path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-next:hover rect {
  fill: var(--black-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actor__shows-slider-navigation-next:hover path {
  fill: var(--light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.management {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .management {
    padding-top: 3rem;
  }
}
.management__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding-bottom: 6rem;
  padding-right: 11.4rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 6rem;
}
.management__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1024px) {
  .management__item {
    padding-right: 0;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 530px) {
  .management__item {
    display: block;
    padding-right: 0;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.management__item-photo {
  width: 54.7rem;
  height: 67rem;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .management__item-photo {
    width: 35.8rem;
    height: 47.2rem;
  }
}
@media (max-width: 530px) {
  .management__item-photo {
    width: 35.8rem;
    height: 47.2rem;
    margin-bottom: 2rem;
  }
}
.management__item-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.4rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .management__item-name {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.management__item-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .management__item-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.management__item-cms {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .management__item-cms {
    margin-bottom: 2rem;
  }
}

.error-404 {
  padding-top: 4rem;
}
.error-404__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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.error-404__title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 20rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.05);
  margin-bottom: -14rem;
}
@media (max-width: 1024px) {
  .error-404__title {
    font-size: 16.5rem;
    margin-bottom: -12.5rem;
  }
}
@media (max-width: 530px) {
  .error-404__title {
    font-size: 7.8rem;
    margin-bottom: -5.5rem;
  }
}
.error-404__number {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 25.6rem;
  text-transform: uppercase;
}
.error-404__number span {
  color: var(--red-color);
}
@media (max-width: 1024px) {
  .error-404__number {
    font-size: 22rem;
  }
}
@media (max-width: 530px) {
  .error-404__number {
    font-size: 10rem;
  }
}
.error-404__description {
  font-size: 2.4rem;
  max-width: 45rem;
  text-align: center;
  margin-bottom: 2.1rem;
}
@media (max-width: 1024px) {
  .error-404__description {
    font-size: 2rem;
  }
}
@media (max-width: 530px) {
  .error-404__description {
    font-size: 1.8rem;
  }
}
.error-404__btn {
  height: 7.1rem;
  padding: 2.7rem 0;
}
@media (max-width: 1024px) {
  .error-404__btn {
    width: 100%;
    height: 5.8rem;
    padding: 2.2rem 0;
  }
}

.type-text {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .type-text {
    padding-top: 3rem;
  }
}
.type-text__date {
  font-size: 2.4rem;
}
@media (max-width: 530px) {
  .type-text__date {
    font-size: 2rem;
  }
}
.type-text__container {
  max-width: 141.2rem;
}

.news {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .news {
    padding-top: 3rem;
  }
}

.show-first-screen__wrapper {
  position: relative;
}
.show-first-screen__btn {
  width: 25.5rem;
  height: 6.5rem;
}
@media (max-width: 530px) {
  .show-first-screen__btn {
    width: 20.6rem;
    height: 5.1rem;
  }
}
.show-first-screen__content {
  position: relative;
  height: 87rem;
  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: end;
  padding-bottom: 10rem;
}
@media (max-width: 1024px) {
  .show-first-screen__content {
    height: 63.3rem;
    padding-bottom: 1.6rem;
  }
}
.show-first-screen__picture {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
@media (max-width: 1024px) {
  .show-first-screen__picture {
    height: 100%;
  }
}
.show-first-screen__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 530px) {
  .show-first-screen__info {
    top: 2rem;
    right: 0rem;
  }
}
.show-first-screen__timing {
  font-weight: 600;
  font-size: 2rem;
  color: var(--light-color);
}
@media (max-width: 530px) {
  .show-first-screen__timing {
    font-size: 1.6rem;
  }
}
.show-first-screen__age {
  font-family: var(--Qanelas);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--light-color);
  border: 1px solid var(--light-color);
  text-align: center;
  padding: 2.4rem 0;
  width: 7.5rem;
  height: 7.5rem;
}
@media (max-width: 530px) {
  .show-first-screen__age {
    font-size: 2rem;
    width: 6rem;
    height: 6rem;
    padding: 1.8rem 0;
  }
}
.show-first-screen__pushkin-card {
  width: 23.6rem;
  height: 6.7rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 530px) {
  .show-first-screen__pushkin-card {
    width: 16rem;
    height: 4.5rem;
    margin-bottom: 0rem;
  }
}
.show-first-screen__premiere {
  font-family: var(--Qanelas);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--red-color);
  margin-bottom: 1.5rem;
}
@media (max-width: 530px) {
  .show-first-screen__premiere {
    font-size: 1.8rem;
  }
}
.show-first-screen__name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 7.2rem;
  text-transform: uppercase;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .show-first-screen__name {
    font-size: 5.6rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 530px) {
  .show-first-screen__name {
    font-size: 3.4rem;
    margin-bottom: 0.5rem;
  }
}
.show-first-screen__genre {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
  color: var(--light-color);
  margin-bottom: 3rem;
}
@media (max-width: 530px) {
  .show-first-screen__genre {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1024px) {
  .show-info {
    padding-top: 0rem;
  }
}
.show-info__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  row-gap: 8rem;
}
@media (max-width: 1024px) {
  .show-info__cards {
    display: none;
  }
}
.show-info__timetable-btn {
  display: block;
  width: 25.5rem;
  height: 6.5rem;
}
@media (max-width: 1024px) {
  .show-info__timetable-btn {
    width: 18.3rem;
    height: 5.1rem;
  }
}
.show-info__item {
  width: 83.5rem;
}
@media (max-width: 1024px) {
  .show-info__item {
    width: 100%;
    margin-bottom: 6rem;
  }
  .show-info__item:last-child {
    margin-bottom: 0;
  }
}
.show-info__item-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.2rem;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}
@media (max-width: 1024px) {
  .show-info__item-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
}
.show-info__item-description {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .show-info__item-description {
    font-size: 1.6rem;
  }
}
.show-info__timetable-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 3.6rem;
  padding: 2rem 0;
  padding-left: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.show-info__timetable-item:first-child {
  margin-top: 1.2rem;
}
@media (max-width: 1024px) {
  .show-info__timetable-item {
    font-size: 2.4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.8rem 0;
  }
}
.show-info__timetable-item:hover {
  background-color: var(--hover-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .show-info__timetable-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10rem;
  }
}
@media (max-width: 530px) {
  .show-info__timetable-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}
.show-info__timetable-date {
  width: 10rem;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .show-info__timetable-date {
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.show-info__timetable-day {
  font-weight: 400;
  color: var(--red-color);
  width: 6rem;
  margin-right: 9.3rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .show-info__timetable-day {
    font-size: 1.8rem;
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-transform: none;
  }
}
.show-info__timetable-time {
  margin-right: 16.8rem;
  width: 10.5rem;
}
@media (max-width: 1024px) {
  .show-info__timetable-time {
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.show-info__actors {
  padding-top: 5rem;
}
@media (max-width: 1024px) {
  .show-info__actors {
    padding-top: 0;
  }
}
.show-info__actors-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.show-info__actors-item:first-child {
  margin-top: 1rem;
}
.show-info__actors-item:last-child {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .show-info__actors-item {
    padding: 2rem 0;
  }
}
.show-info__actors-role {
  font-size: 2.4rem;
  width: 40.2rem;
  margin-right: 3.1rem;
}
@media (max-width: 1024px) {
  .show-info__actors-role {
    font-size: 1.8rem;
    width: 16rem;
  }
}
@media (max-width: 530px) {
  .show-info__actors-role {
    margin-right: 1.5rem;
  }
}
.show-info__actors-name-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.show-info__actors-name {
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--red-color);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  display: block;
}
@media (max-width: 1024px) {
  .show-info__actors-name {
    font-size: 1.8rem;
  }
}
.show-info__production {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0 3rem;
  padding-top: 5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .show-info__production {
    padding: 0 2rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
  }
}
.show-info__production-adaptive {
  display: none;
}
@media (max-width: 1024px) {
  .show-info__production-adaptive {
    display: block;
  }
}
.show-info__cards-adaptive {
  display: none;
}
@media (max-width: 1024px) {
  .show-info__cards-adaptive {
    display: block;
  }
}

.event-first-screen__wrapper {
  position: relative;
}
.event-first-screen__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
.event-first-screen__content {
  position: relative;
  font-family: var(--Roboto);
  font-weight: 700;
  color: var(--light-color);
  text-transform: uppercase;
  height: 87rem;
  padding-bottom: 10rem;
  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: end;
}
@media (max-width: 1024px) {
  .event-first-screen__content {
    height: 63.3rem;
    padding-bottom: 1.6rem;
  }
}
.event-first-screen__kind {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .event-first-screen__kind {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.event-first-screen__name {
  font-size: 7.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .event-first-screen__name {
    font-size: 3.4rem;
    margin-bottom: 2rem;
  }
}
.event-first-screen__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 1024px) {
  .event-first-screen__info {
    gap: 1.5rem;
    top: 2rem;
    right: 0;
  }
}
.event-first-screen__timing {
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .event-first-screen__timing {
    font-size: 1.6rem;
  }
}
.event-first-screen__age {
  font-family: var(--Qanelas);
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  border: 1px solid var(--light-color);
  width: 7.5rem;
  padding: 2.4rem 0;
}
@media (max-width: 1024px) {
  .event-first-screen__age {
    font-size: 2rem;
    width: 6rem;
    padding: 1.8rem 0;
  }
}

.event-info__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .event-info__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.event-info__item {
  width: 83.5rem;
}
@media (max-width: 1024px) {
  .event-info__item {
    width: 100%;
  }
}
.event-info__item-title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.2rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .event-info__item-title {
    font-size: 3.2rem;
  }
}
.event-info__about-description {
  font-size: 2rem;
  margin-bottom: 1rem;
  max-width: 80.5rem;
}
.event-info__about-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .event-info__about-description {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .event-info__timetable {
    display: none;
  }
}
.event-info__timetable-adaptive {
  display: none;
}
@media (max-width: 1024px) {
  .event-info__timetable-adaptive {
    display: block;
  }
}
.event-info__timetable-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
  padding: 2rem 0;
}
@media (max-width: 1024px) {
  .event-info__timetable-item {
    padding: 0;
    font-size: 2.4rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
.event-info__timetable-date {
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .event-info__timetable-date {
    margin-right: 0;
  }
}
.event-info__timetable-day {
  font-family: var(--font-family);
  font-weight: normal;
  margin-right: 9.3rem;
}
@media (max-width: 1024px) {
  .event-info__timetable-day {
    margin-right: 0;
  }
}
.event-info__timetable-time {
  margin-right: 16.8rem;
}
@media (max-width: 1024px) {
  .event-info__timetable-time {
    margin-right: 0;
  }
}

@media (max-width: 530px) {
  .event-page .auditorium-gallery__title {
    font-size: 3.2rem;
  }
}

.contacts {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .contacts {
    padding-top: 0rem;
  }
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9rem;
}
@media (max-width: 1024px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
.contacts__info {
  padding-top: 6.5rem;
  width: 83.6rem;
}
@media (max-width: 1024px) {
  .contacts__info {
    padding-top: 0;
    width: 100%;
  }
}
.contacts__title {
  text-align: unset;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contacts__title {
    font-size: 3.6rem;
  }
}
.contacts__info-item {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .contacts__info-item {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}
.contacts__info-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .contacts__info-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.contacts__info-content {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 3rem;
}
.contacts__info-content:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contacts__info-content {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.contacts__info-content a {
  color: #000000;
}
.contacts__info-subtitle {
  font-size: 4.2rem;
  text-align: unset;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .contacts__info-subtitle {
    font-size: 3.2rem;
    margin-top: 3rem;
  }
}
.contacts__info-post {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .contacts__info-post {
    font-size: 1.6rem;
  }
}
.contacts__info-name {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .contacts__info-name {
    font-size: 1.6rem;
  }
}
.contacts__info-phone {
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 3rem;
}
.contacts__info-phone a {
  color: #000000;
}
.contacts__info-phone:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contacts__info-phone {
    font-size: 1.8rem;
  }
}
.contacts__map {
  margin: 0 -2rem;
}
.contacts__map-element iframe {
  width: 80.5rem;
  height: 81rem;
}
@media (max-width: 1024px) {
  .contacts__map-element iframe {
    width: 100%;
    height: 40rem;
  }
}
@media (max-width: 530px) {
  .contacts__map-element iframe {
    width: 100%;
    height: 32.6rem;
  }
}

.vacancies {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .vacancies {
    padding-top: 3rem;
  }
}
.vacancies__item {
  margin-bottom: 6rem;
}
@media (max-width: 530px) {
  .vacancies__item {
    margin-bottom: 4rem;
  }
}
.vacancies__item-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
}
@media (max-width: 530px) {
  .vacancies__item-name {
    font-size: 2.4rem;
  }
}
.vacancies__item-title {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  margin-top: 2rem;
}
@media (max-width: 530px) {
  .vacancies__item-title {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
.vacancies__item-description {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.vacancies__item-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 530px) {
  .vacancies__item-description {
    font-size: 1.6rem;
  }
}
.vacancies__item-btn {
  margin-top: 2rem;
}
@media (max-width: 530px) {
  .vacancies__item-btn {
    margin-top: 1rem;
  }
}

.vacancies-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.4s, opacity 0.4s;
  transition: visibility 0.4s, opacity 0.4s;
}
.vacancies-modal.open {
  visibility: visible;
  opacity: 1;
}
.vacancies-modal__success-message {
  position: relative;
  display: none;
  width: 100%;
  height: 59rem;
}
.vacancies-modal__success-message-text {
  font-weight: 700;
  font-size: 3.4rem;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 530px) {
  .vacancies-modal__success-message-text {
    font-size: 2.1rem;
  }
}
.vacancies-modal__body {
  width: 54.6rem;
  padding: 4rem;
  padding-top: 5rem;
  background-color: var(--light-color);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  position: relative;
}
@media (max-width: 530px) {
  .vacancies-modal__body {
    width: 35.8rem;
    padding: 1.6rem;
    padding-top: 3rem;
  }
}
.vacancies-modal.open .vacancies-modal__body {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.vacancies-modal__title {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 530px) {
  .vacancies-modal__title {
    margin-bottom: 1.5rem;
  }
}
.vacancies-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 530px) {
  .vacancies-modal__close {
    top: -3rem;
    right: 0;
  }
  .vacancies-modal__close path {
    stroke: var(--light-color);
  }
}
.vacancies-modal__form-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  outline: none;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.vacancies-modal__form-input:last-child {
  margin-bottom: 3rem;
}
.vacancies-modal__form-button {
  width: 100%;
}

.file-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; /* Центровка по горизонтали */
  margin-bottom: 4rem;
}
@media (max-width: 530px) {
  .file-container {
    margin-bottom: 2rem;
  }
}

.custom-file-input {
  display: none; /* Скрываем стандартный input */
}

.file-label {
  width: 100%;
  display: inline-block;
  padding: 2.6rem 0;
  background-color: var(--red-color);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 530px) {
  .file-label {
    padding: 2rem 0;
  }
}

.file-label__icon {
  margin-right: 1rem;
}

.file-info {
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  padding-top: 1rem;
}

.remove-file {
  color: var(--red-color);
  cursor: pointer;
  margin-left: 5px;
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.custom-checkbox {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin-right: 0.7rem;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0rem;
  left: 0.4rem;
  width: 0.5rem;
  height: 1.1rem;
  border: solid var(--black-color);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.policy-link {
  color: var(--red-color); /* Цвет текста для ссылки */
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

#error-message {
  margin-top: 2rem;
}

.projects {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .projects {
    padding-top: 3rem;
  }
}
.projects__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .projects__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 530px) {
  .projects__cards {
    display: block;
  }
}
.projects__item {
  position: relative;
  width: 54.6rem;
}
@media (max-width: 1024px) {
  .projects__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .projects__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 530px) {
  .projects__item {
    width: 100%;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .projects__item:last-child {
    margin-bottom: 0;
  }
}
.projects__item-img {
  width: 100%;
  height: 39.8rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .projects__item-img {
    height: 26.2rem;
    margin-bottom: 1.5rem;
  }
}
.projects__item-img img {
  width: 100%;
  height: 39.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .projects__item-img img {
    height: 26.2rem;
  }
}
.projects__item:hover .projects__item-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}
.projects__item-content {
  padding: 3rem;
  font-family: var(--Roboto);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .projects__item-content {
    padding: 0;
  }
}
.projects__item-kind {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .projects__item-kind {
    font-size: 1.4rem;
  }
}
.projects__item-name {
  font-weight: 900;
  font-size: 3.6rem;
}
@media (max-width: 1024px) {
  .projects__item-name {
    font-size: 3.2rem;
  }
}
.projects__item-author {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .projects__item-author {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.projects__item-age {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-family: var(--Qanelas);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--light-color);
  text-align: center;
  width: 7.5rem;
  padding: 2.3rem 0;
  border: 1px solid var(--light-color);
  z-index: 1;
}
@media (max-width: 1024px) {
  .projects__item-age {
    top: 1.6rem;
    right: 1.6rem;
    font-size: 1.6rem;
    width: 4rem;
    padding: 1.1rem 0;
  }
}
.projects__button {
  display: block;
  width: 24.3rem;
  padding: 2.4rem;
}
@media (max-width: 530px) {
  .projects__button {
    width: 20.6rem;
    padding: 1.8rem;
  }
}

.project-first-screen {
  margin-bottom: 6rem;
}
.project-first-screen__wrapper {
  position: relative;
}
.project-first-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
.project-first-screen__content {
  position: relative;
  font-family: var(--Roboto);
  text-transform: uppercase;
  color: var(--light-color);
  height: 87rem;
  padding-bottom: 10rem;
  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: end;
}
@media (max-width: 1024px) {
  .project-first-screen__content {
    height: 63.3rem;
    padding-bottom: 1.6rem;
  }
}
.project-first-screen__kind {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 530px) {
  .project-first-screen__kind {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.project-first-screen__name {
  font-weight: 900;
  font-size: 7.2rem;
  max-width: 126.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 530px) {
  .project-first-screen__name {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}
.project-first-screen__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 530px) {
  .project-first-screen__info {
    right: 0;
    gap: 1.5rem;
  }
}
.project-first-screen__info-timing {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 530px) {
  .project-first-screen__info-timing {
    font-size: 1.4rem;
  }
}
.project-first-screen__info-age {
  font-family: var(--Qanelas);
  font-size: 2.4rem;
  text-align: center;
  width: 7.5rem;
  padding: 2.2rem 0;
  border: 2px solid var(--light-color);
}
@media (max-width: 530px) {
  .project-first-screen__info-age {
    font-size: 2rem;
    width: 6rem;
    padding: 1.7rem 0;
  }
}

.project-about {
  margin: 6rem 0;
}
.project-about__title {
  font-size: 4.2rem;
  text-align: unset;
  margin-bottom: 2.2rem;
}
@media (max-width: 530px) {
  .project-about__title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
}

.project-form {
  margin: 6rem 0;
}
.project-form__container {
  max-width: 104.2rem;
}
@media (max-width: 1024px) {
  .project-form__container {
    max-width: unset;
  }
}
.project-form__title {
  font-size: 4.2rem;
}
@media (max-width: 1024px) {
  .project-form__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
}
.project-form__form-title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .project-form__form-title {
    font-size: 2.4rem;
  }
}
.project-form__form-organization {
  padding: 0 4.8rem 0 3.1rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .project-form__form-organization {
    padding: 0;
  }
}
.project-form__form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .project-form__form-grid {
    display: block;
  }
}
.project-form__form-input {
  width: 46.6rem;
  padding: 1.2rem 1.5rem;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  outline: none;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .project-form__form-input {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.project-form__form-input__big {
  width: 100%;
  margin-top: 2rem;
}
.project-form__form-input__big:last-of-type {
  margin-bottom: 4.6rem;
}
@media (max-width: 1024px) {
  .project-form__form-input__big {
    margin-top: 0;
  }
  .project-form__form-input__big:last-of-type {
    margin-bottom: 3rem;
  }
}
.project-form__form-input.error {
  border-bottom: 2px solid var(--red-color);
}
.project-form .error-message {
  color: var(--red-color);
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
}
.project-form__file-upload {
  position: relative;
  display: inline-block;
}
@media (max-width: 1024px) {
  .project-form__file-upload {
    display: block;
    margin-bottom: 1.6rem;
  }
  .project-form__file-upload:last-of-type {
    margin-bottom: 0;
  }
}
.project-form__file-label {
  border: 1px solid black;
  width: 46.6rem;
  padding: 26px 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .project-form__file-label {
    width: 100%;
    padding: 2rem;
  }
}
.project-form__file-name {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 1.8rem;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 530px) {
  .project-form__file-name {
    font-size: 1.6rem;
  }
}
.project-form__remove-icon {
  margin-left: 10px;
  cursor: pointer;
}
.project-form input[type=file] {
  display: none;
}
.project-form__form-actors {
  margin-bottom: 5rem;
}
.project-form__form-actors-wrapper {
  background-color: #F5F5F5;
  padding: 0 4.8rem 0 3.1rem;
}
@media (max-width: 1024px) {
  .project-form__form-actors-wrapper {
    padding: 0;
    margin: 0 -2rem;
  }
}
.project-form__form-actors-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 4rem;
}
.project-form__form-actors-item:last-of-type {
  margin-bottom: 0;
}
.project-form__form-actors-item:first-of-type {
  padding-top: 5rem;
}
@media (max-width: 1024px) {
  .project-form__form-actors-item:first-of-type {
    padding-top: 3rem;
  }
}
.project-form__form-actors-item .project-form__form-input {
  width: calc(100% - 4rem);
  margin-left: 2rem;
}
.project-form__form-actors-item .project-form__form-input:last-of-type {
  margin-bottom: 0;
}
.project-form__form-actors-delete {
  width: 100%;
  text-align: center;
  padding: 2.4rem 0;
}
.project-form__form-actors-add {
  width: 100%;
  text-align: center;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .project-form__form-actors-add {
    padding: 2.4rem 0;
  }
}
.project-form__form-managers {
  margin-bottom: 5rem;
}
.project-form__form-column {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.project-form__form-checkbox {
  max-width: 46.6rem;
}
.project-form__form-button {
  width: 46.6rem;
}
@media (max-width: 1024px) {
  .project-form__form-button {
    width: 100%;
  }
}

@media (max-width: 530px) {
  .project-page .auditorium-gallery__title {
    font-size: 3.2rem;
  }
}

.search-result {
  padding-top: 4rem;
}
@media (max-width: 530px) {
  .search-result {
    padding-top: 3rem;
  }
}
.search-result__search {
  margin-bottom: 6rem;
}
.search-result__search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.2rem;
}
.search-result__search-input {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 4.8rem;
  width: 100%;
  height: 7rem;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--gray-color);
  outline: none;
}
.search-result__search-btn {
  width: 7rem;
  height: 7rem;
  padding: 2.2rem;
  border: 1px solid var(--gray-color);
}
.search-result__search-count {
  font-weight: 300;
  font-size: 1.4rem;
}
.search-result__search-count span {
  font-weight: 700;
}
.search-result__item {
  margin-bottom: 10rem;
}
.search-result__item-title {
  text-align: unset;
}
.search-result .show-first-screen__wrapper, .search-result .event-first-screen__wrapper {
  margin-left: -10.5rem;
  height: 100%;
  overflow-y: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 530px) {
  .search-result .show-first-screen__wrapper, .search-result .event-first-screen__wrapper {
    margin: 0 -2rem;
  }
}
.search-result .show-first-screen__content, .search-result .event-first-screen__content {
  padding-left: 5.5rem;
}
@media (max-width: 530px) {
  .search-result .show-first-screen__content, .search-result .event-first-screen__content {
    padding-left: 0;
  }
}
.search-result .show-first-screen__picture, .search-result .event-first-screen__bg {
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
}
.search-result .event-first-screen__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .search-result .event-first-screen__buttons {
    gap: 1.5rem;
  }
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.4s, opacity 0.4s;
  transition: visibility 0.4s, opacity 0.4s;
}
.gallery-modal.open {
  visibility: visible;
  opacity: 1;
}
.gallery-modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90rem;
  height: 65.9rem;
}
@media (max-width: 1024px) {
  .gallery-modal__body {
    width: 100%;
    height: 56.3rem;
  }
}
@media (max-width: 530px) {
  .gallery-modal__body {
    width: 100%;
    height: 28.6rem;
  }
}
.gallery-modal__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-modal__slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.gallery-modal__slider-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.gallery-modal__slider-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-modal__navigation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
@media (max-width: 1024px) {
  .gallery-modal__navigation {
    top: calc(100% + 3rem);
    width: 50%;
    height: 10rem;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
@media (max-width: 530px) {
  .gallery-modal__navigation {
    top: calc(100% + 3rem);
    width: 50%;
    height: 7rem;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}
.gallery-modal__navigation-prev, .gallery-modal__navigation-next {
  width: 10rem;
  height: 10rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}
@media (max-width: 530px) {
  .gallery-modal__navigation-prev, .gallery-modal__navigation-next {
    width: 7rem;
    height: 7rem;
  }
}
.gallery-modal__navigation-prev svg, .gallery-modal__navigation-next svg {
  width: 100%;
  height: 100%;
}
.gallery-modal__navigation-prev svg rect, .gallery-modal__navigation-next svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-modal__navigation-prev svg path, .gallery-modal__navigation-next svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .gallery-modal__navigation-prev:hover svg rect, .gallery-modal__navigation-next:hover svg rect {
    fill: black;
  }
  .gallery-modal__navigation-prev:hover svg path, .gallery-modal__navigation-next:hover svg path {
    fill: white;
  }
}
.gallery-modal__navigation-prev {
  position: absolute;
  left: -17rem;
}
@media (max-width: 1024px) {
  .gallery-modal__navigation-prev {
    left: 0;
  }
}
.gallery-modal__navigation-next {
  position: absolute;
  right: -17rem;
}
@media (max-width: 1024px) {
  .gallery-modal__navigation-next {
    right: 0;
  }
}
/*# sourceMappingURL=main.css.map */