/* Normalize */

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul,
ol {
  padding-left: 1em;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input[type=file] {
  position: absolute;
  display: none;
  opacity: 0;
  z-index: -1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus {
  outline: none;
}

textarea {
  font-family: inherit;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Variables */

/* Mixins */

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-Light.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 300;
  font-display: swap;
}

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 400;
  font-display: swap;
}

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 500;
  font-display: swap;
}

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 600;
  font-display: swap;
}

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 700;
  font-display: swap;
}

@font-face {
  src: url("../fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-family: "Montserrat";
  font-style: "normal";
  font-weight: 800;
  font-display: swap;
}

/* Document */

html,
body {
  font-family: Montserrat, sans-serif;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0em;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.color-main {
  color: #F2390A;
}

.color-white {
  color: #FFFFFF;
}

.title_center {
  text-align: center;
  display: block;
  width: 100%;
}

.text > *,
.text-large > * {
  display: inline-block;
}

.text > *:not(:last-child),
.text-large > *:not(:last-child) {
  margin-bottom: 1rem;
}

.text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}

h1,
.h1,
.title {
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
}

h3,
.h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 0.9;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 32px;
}

h5,
.h5 {
  font-weight: 600;
  font-size: 24px;
}

b,
strong {
  font-weight: 700;
}

.icon {
  display: inline-block;
  width: 24px;
  height: auto;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.bg,
.bg__gradient,
.bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: inherit;
}

.bg__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: inherit;
}

.bg ~ .container {
  position: relative;
}

.logo {
  display: block;
  height: auto;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  height: 80px;
  padding: 0 20px;
  background: #F2390A;
  border-radius: 0;
  border: 2px solid #F2390A;
  transition: 0.5s;
  touch-action: manipulation;
}

.btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 0;
  height: calc(100% + 4px);
  background: #ed795b;
  background: #f98669;
  pointer-events: none;
  transition: 0.5s linear;
}

.btn__text {
  position: relative;
}

.btn__icon {
  position: relative;
  display: block;
  width: 0;
  height: 1em;
  transition: 0.5s;
}

.btn__icon img,
.btn__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.btn:hover .btn__icon {
  width: 0.5em;
}

.btn:hover::before {
  width: calc(100% + 4px);
}

.btn_second {
  color: #F2390A;
  background: transparent;
}

.btn_second::before {
  background: #F2390A;
}

.btn_second:hover {
  color: #FFFFFF;
}

.btn:disabled {
  filter: grayscale(2);
}

button:disabled {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.row .col {
  width: 100%;
}

.row .col:nth-child(1) {
  max-width: 540px;
}

.row .col:nth-child(2) {
  max-width: 640px;
}

/* Swiper wrapper */

.swiper-wrapper {
  height: auto;
}

/* Swiper button */

.swiper-navigations {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 0px;
}

.swiper-navigations .line {
  width: 2px;
  height: 50px;
  background: #b3b3b3;
}

.swiper-button {
  color: #F2390A;
  z-index: 3;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  transition: 0.5s;
  touch-action: manipulation;
}

.swiper-button__icon {
  width: 30px;
  height: 30px;
}

.swiper-button__icon svg {
  display: block;
  fill: currentColor;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.swiper-button:hover {
  color: #f98669;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-disabled {
  color: #AAAAAA;
  pointer-events: none;
}

/* Swiper pagination */

.swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 43px;
  pointer-events: none;
}

.swiper-pagination-bullet {
  width: 21px;
  height: 21px;
  margin: -3px 0 !important;
  padding: 3px;
  border-radius: 0;
  background: transparent;
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
}

.swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #F2390A;
  opacity: 0.25;
}

.swiper-pagination-bullet-active::before {
  opacity: 1;
  box-shadow: 0px 0px 2.25px rgba(255, 255, 255, 0.25), 0px 0px 7.5px rgba(254, 214, 155, 0.5);
}

.input {
  /* Base */
}

.input-base {
  position: relative;
}

.input-base .input,
.input-base .textarea {
  font-size: 1.125rem;
  line-height: 1.2;
  color: #8D8D8D;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  background: #FFFFFF;
  border: 2px solid #CBCBCB;
  border-radius: 0;
  outline: none;
  transition: 0.5s;
}

.input-base .input::-moz-placeholder,
.input-base .textarea::-moz-placeholder {
  color: inherit;
  opacity: 0.7;
}

.input-base .input::placeholder,
.input-base .textarea::placeholder {
  color: inherit;
  opacity: 0.7;
}

.input-base .input:focus,
.input-base .textarea:focus {
  border-color: #8D8D8D;
}

.input-base .input:focus ~ .options,
.input-base .textarea:focus ~ .options {
  visibility: visible;
  opacity: 1;
  transform: translateY(-2px);
}

.input-base .input:focus ~ .options .options__body,
.input-base .textarea:focus ~ .options .options__body {
  border-color: #8D8D8D;
}

.input-base .input:focus ~ .icon,
.input-base .textarea:focus ~ .icon {
  transform: rotateZ(180deg);
}

.input-base .input.invalid,
.input-base .textarea.invalid {
  color: #F2390A;
  border-color: #F2390A;
}

.input-base .input.invalid::-moz-placeholder,
.input-base .textarea.invalid::-moz-placeholder {
  color: #F2390A;
}

.input-base .input.invalid::placeholder,
.input-base .textarea.invalid::placeholder {
  color: #F2390A;
}

.input-base.invalid .input {
  color: #F2390A;
  border-color: #F2390A;
}

.input-base .textarea {
  height: 200px !important;
  resize: none;
}

.input-base .icon {
  color: currentColor;
  position: absolute;
  top: 15px;
  right: 20px;
  display: block;
  transition: 0.5s;
}

.input-base .icon + .input,
.input-base .icon .textarea {
  padding-right: 60px;
}

.input-base .icon img,
.input-base .icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.input-base .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: 0.5s;
  transform: translateY(-2px);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.input-base .options__body {
  width: 100%;
  height: 100%;
  max-height: 200px;
  border: 2px solid #CBCBCB;
  border-top: none !important;
  border-radius: 0px;
  background: #FFFFFF;
  overflow: hidden;
  overflow-y: auto;
}

.input-base .options__item {
  text-align: left;
  width: 100%;
  padding: 10px 20px;
  transition: 0.5s;
  cursor: pointer;
}

.input-base .options__item.active,
.input-base .options__item:hover {
  color: #495c68;
  background: #f5fafd;
}

.input-base .options__item .search {
  display: inline;
  color: #F2390A;
}

.input-checkbox {
  color: rgba(31, 41, 51, 0.7);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 28px;
  cursor: pointer;
}

.input-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.input-checkbox input[type=checkbox]:checked + .input::before {
  border-color: rgba(31, 41, 51, 0.7);
}

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

.input-checkbox .input {
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
}

.input-checkbox .input::before,
.input-checkbox .input::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-sizing: border-box;
}

.input-checkbox .input::before {
  border: 1px solid rgba(31, 41, 51, 0.17);
}

.input-checkbox .input::after {
  background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 12.2471L9.53284 13.9412C9.99352 14.2494 10.6169 14.1241 10.9228 13.6619L15 7.5" stroke-width="2" stroke="%231F2933"/><rect x="0.5" y="0.5" width="21" height="21" rx="6.5" stroke="%231F2933"/></svg>') no-repeat center/contain;
  transition: 0.3s;
  opacity: 0;
}

.input-checkbox .text a {
  text-decoration: underline;
}

.label-check {
  position: relative;
  display: block;
  padding-left: 35px;
}

.label-check br {
  display: none;
}

.label-check a {
  color: #F2390A;
}

.label-check .wpcf7-form-control-wrap {
  position: static;
}

.label-check .wpcf7-list-item {
  margin-left: 0;
}

.label-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.label-check input + span {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 24px;
  height: 24px;
}

.label-check input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #F2390A;
  border-radius: 0px;
  box-sizing: border-box;
  transition: 0.5s;
}

.label-check input + span::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  border: 2px solid;
  border-width: 0 0 2px 2px;
  transition: 0.3s;
  opacity: 0;
  transform: translate(-50%, -75%) rotate(-45deg);
}

.label-check input:checked + span::after {
  opacity: 1;
}

.label-check input:checked + span::before {
  border-color: #F2390A;
  background: #F2390A;
}

*[modal] {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 18;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal.open .modal__content {
  transform: translateY(0px);
}

.modal__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 100px 30px;
}

.modal__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 40px 20px;
  margin: 0 auto;
  background: #080808;
  border-radius: 8px;
  box-shadow: 0 25px 50px -15px rgba(51, 51, 51, 0.4);
  transition: 0.5s;
  transform: translateY(-30px);
}

.modal__close {
  color: #FED69B;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  z-index: 3;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
  background: currentColor;
  border-radius: 4px;
  transition: 0.3s;
  will-change: transform;
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover {
  color: #F2390A;
}

.modal__close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.modal__close:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

body {
  background: #FFFFFF;
}

section {
  display: block;
}

.container {
  max-width: 1320px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.container-swiper {
  position: relative;
  width: 100%;
}

.header {
  color: #FFFFFF;
  z-index: 14;
  top: 0;
  left: 0;
  width: 100%;
  background: #F2390A;
}

.header .container {
  position: relative;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}

.header__logo {
  width: 140px;
  margin-right: auto;
}

.header__nav {
  font-weight: 600;
  height: -moz-min-content;
  height: min-content;
}

.header__nav li a {
  position: relative;
}

.header__nav li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: 0.5s ease-out, color 0s;
}

.header__nav li a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.header__nav > ul {
  font-size: 1.5em;
  display: flex;
  margin-right: -25px;
}

.header__nav > ul > li {
  position: relative;
  height: 100%;
  padding: 20px 25px;
}

.header__nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  height: 100%;
}

.header__nav > ul > li > a > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.header__nav > ul > li > a svg {
  display: block;
  width: 0.8em;
  height: auto;
  transition: 0.5s;
}

.header__nav > ul > li > a:hover svg {
  transform: rotateZ(-90deg);
}

.header__nav > ul > li:hover > ul {
  transform: translateY(0px) translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.header__nav > ul > li > ul {
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateY(-20px) translateX(-50%);
  display: block;
  width: auto;
  height: auto;
  padding: 10px 50px;
  padding-top: 60px;
  background: #F2390A;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.header__nav > ul > li > ul > li {
  padding: 12.5px 0;
}

.header .menu-burger {
  display: none;
}

.menu {
  display: none;
}

.main {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.main_no-padding {
  padding-top: 0;
}

.footer {
  color: #FFFBEB;
  background: #F2390A;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 150px;
  padding-top: 45px;
  padding-bottom: 50px;
}

.footer__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer__logo {
  width: 140px;
  margin-bottom: 30px;
}

.footer__copyright {
  font-size: 1rem;
  margin-top: auto;
}

.footer__menu {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
}

.footer__nav {
  width: auto;
}

.footer__nav ul {
  line-height: 1;
  list-style: none;
}

.footer__nav ul > li {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__nav ul > li:not(:last-child) {
  margin-bottom: 25px;
}

.footer__nav ul > li:first-child {
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 25px;
}

.footer__contacts .link {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}

.footer__contact {
  font-size: 1.125rem;
  margin-bottom: 25px;
}

.footer__contact-label {
  font-weight: 400;
}

.footer__contact-link {
  font-weight: 600;
  margin-top: 2px;
}

.block {
  position: relative;
}

.block-banner {
  display: grid;
  aspect-ratio: 1920/950;
  width: 100%;
  height: auto;
  min-height: 650px;
}

.block-banner .bg__shadow {
  background: rgba(0, 0, 0, 0.2);
}

.block-banner .container {
  height: 100%;
}

.block-banner .content {
  color: #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding-bottom: 67px;
}

.block-banner .content__suptitle {
  margin-bottom: 5px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.block-banner .content__title {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.block-banner .content__title .h3 {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
}

.block-banner .content__subtitle {
  margin-top: 10px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.block-banner .carousel {
  display: flex;
  width: 100%;
  height: 100%;
}

.block-banner .carousel__inner {
  position: relative;
  width: calc(100vw - 150px);
  height: 100%;
}

.block-banner .carousel__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 150px;
  height: 100%;
  padding-bottom: 100px;
  background: #fff;
}

.block-banner .carousel .swiper {
  position: relative;
  height: 100%;
}

.block-banner .carousel .swiper-wrapper {
  height: 100%;
}

.block-banner .carousel .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.block-banner .carousel .swiper-navigations {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 2;
}

.block-banner .carousel .swiper-pagination {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  margin: 0;
}

.block-banner .carousel .swiper-pagination-current {
  color: #000000;
  writing-mode: vertical-lr;
}

.block-banner .carousel .swiper-pagination-total {
  color: #CBCBCB;
  writing-mode: vertical-lr;
}

.block-banner .carousel .swiper-pagination .line {
  width: 50px;
  height: 2px;
  background: #CBCBCB;
}

.block-performances .perfomance {
  display: flex;
}

.block-performances .perfomance__left {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 100px 20px;
  flex: 1 0 50%;
}

.block-performances .perfomance__right {
  flex: 1 0 50%;
}

.block-performances .perfomance__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
  max-height: 728px;
  height: 100%;
}

.block-performances .perfomance__notice {
  font-weight: 500;
  font-size: 1.875rem;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  width: auto;
  padding: 4px 28px 4px 13px;
  margin-top: 20px;
  clip-path: polygon(0% 0%, 100% 0%, 95.6% 50%, 100% 100%, 0% 100%);
  background: #F2390A;
}

.block-performances .perfomance__production {
  margin-top: 25px;
}

.block-performances .perfomance__production-label {
  font-size: 2rem;
}

.block-performances .perfomance__production-text {
  font-weight: 600;
  font-size: 3rem;
  margin-top: 1px;
}

.block-performances .perfomance__text {
  font-size: 2rem;
  margin-top: 27px;
  margin-bottom: auto;
}

.block-performances .perfomance__btn {
  width: 100%;
  margin-top: 40px;
}

.block-performances .perfomance__image {
  display: block;
  width: 100%;
  height: auto;
}

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

.block-performances .perfomance:nth-child(2n) .perfomance__left {
  order: 2;
}

.block-performances .perfomance:nth-child(2n) .perfomance__right {
  order: 1;
}

.block-reviews {
  padding-top: 104px;
  padding-bottom: 5px;
}

.block-reviews .wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.block-reviews .line-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-reviews .line-top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #b3b3b3;
}

.block-reviews .line-top .icon {
  color: #F2390A;
  position: relative;
  width: 99px;
  height: auto;
  padding: 0 22px;
  background: #FFFFFF;
}

.block-reviews .review {
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  min-height: 290px;
}

.block-reviews .review__text {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.3333;
  max-width: 800px;
}

.block-reviews .review__author {
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3333;
}

.block-reviews .swiper-navigations {
  position: relative;
  transform: translateY(-47%);
  width: 100%;
}

.block-reviews .swiper-navigations::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #b3b3b3;
}

.block-contacts {
  color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 70px;
}

.block-contacts .bg__shadow {
  background: rgba(0, 0, 0, 0.5);
}

.block-contacts .wrapper {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.block-contacts .title {
  color: inherit;
}

.block-contacts .subtitle {
  font-size: 1.5rem;
  margin-top: 40px;
}

.block-contacts .form,
.block-contacts .wpcf7 {
  margin-top: 30px;
}

.block-contacts .form .input-base,
.block-contacts .wpcf7 .input-base {
  width: 100%;
  margin-bottom: 30px;
}

.block-contacts .form .input-base .input,
.block-contacts .form .input-base .textarea,
.block-contacts .wpcf7 .input-base .input,
.block-contacts .wpcf7 .input-base .textarea {
  border: none;
}

.block-contacts .form .btn,
.block-contacts .wpcf7 .btn {
  width: 100%;
}

.contact-form {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-form .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.contact-form .title-wrapper {
  width: 100%;
  max-width: 600px;
}

.contact-form .form-wrapper {
  width: 100%;
  max-width: 640px;
  padding-top: 10px;
}

.contact-form .form,
.contact-form .wpcf7 {
  margin-top: 30px;
}

.contact-form .form .input-base,
.contact-form .wpcf7 .input-base {
  width: 100%;
  margin-bottom: 30px;
}

.contact-form .form .btn,
.contact-form .wpcf7 .btn {
  width: 100%;
}

.block-about {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-about .row {
  margin-bottom: 50px;
}

.block-about .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.block-about .image {
  display: block;
  width: 100%;
  height: auto;
}

.block-show-info {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-show-info .title {
  margin-bottom: 40px;
}

.block-show-info .production {
  margin-bottom: 40px;
}

.block-show-info .production-label {
  font-size: 2rem;
}

.block-show-info .production-text {
  font-weight: 600;
  font-size: 3rem;
  margin-top: 1px;
}

.block-show-info .content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.block-show-info .content-wrapper .text,
.block-show-info .content-wrapper .text-large {
  width: 100%;
  max-width: 800px;
}

.block-show-info .content-wrapper .info-list {
  width: 100%;
  max-width: 400px;
}

.block-show-info .info-list {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}

.block-show-info .info-item__number {
  font-weight: 600;
  font-size: 4.375rem;
  color: #F2390A;
  display: block;
}

.block-show-info .info-item__name {
  font-weight: 600;
  font-size: 1.5rem;
  display: block;
}

.block-events {
  padding-top: 50px;
  padding-bottom: 100px;
}

.block-events .title,
.block-events .h2 {
  margin-bottom: 15px;
}

.block-events .subtitle {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 60px;
}

.block-events .select {
  max-width: 800px;
  margin: 0 auto 70px;
}

.block-events .select__title {
  font-weight: 600;
  font-size: 2.25rem;
}

.block-events .select__input {
  font-weight: 500;
  width: 100%;
  margin-top: 18px;
}

.block-events .select__input .input {
  font-weight: 500;
}

.block-events .select__input .options__item {
  font-weight: 500;
}

.block-events .select__load-notice {
  font-size: 0.9rem;
  margin-top: 10px;
}

.block-events .select__load-notice:empty {
  display: none;
}

.block-events .country {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: -2px;
  border-top: 2px solid #b3b3b3;
  border-bottom: 2px solid #b3b3b3;
}

.block-events .country__name {
  margin-bottom: 50px;
}

.block-events .country__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 140px;
}

.block-events .country__cities .city {
  width: 100%;
  max-width: 500px;
}

.block-events .country__cities .city__name {
  font-size: 2rem;
  margin-bottom: 10px;
}

.block-events .country__cities .city__btn {
  width: 100%;
}

.block-event-details {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-event-details .detail__label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.block-event-details .detail__name {
  font-size: 2rem;
  font-weight: 600;
  color: #F2390A;
}

.block-event-details .detail__description {
  font-size: 1.5rem;
}

.block-event-details .detail:not(:last-child) {
  margin-bottom: 20px;
}

.block-event-details .button-wrapper {
  flex-direction: column;
}

.block-event-details .button-wrapper .btn {
  width: 100%;
}

.block-event-ended-message {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #EFEFEF;
}

.block-event-ended-message .title,
.block-event-ended-message .h2 {
  margin-bottom: 30px;
}

.block-event-ended-message .text,
.block-event-ended-message .text-large {
  font-weight: 600;
}

.block-event-ended-message .btn {
  width: 100%;
  margin-top: 60px;
}

.block-event-marquee {
  color: #FFFFFF;
  background: #F2390A;
  display: block;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}

.block-event-marquee .post-titles {
  display: flex;
  align-items: center;
}

.block-event-marquee .post-title {
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  display: block;
  margin-right: 100px;
}

.block-event-marquee .marquee {
  width: 100%;
  overflow: hidden;
}

.block-event-marquee .marquee__wrapper {
  display: flex;
  width: 100%;
  animation: marquee-left 22s linear 0s infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.block-event-feedback {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-event-feedback .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.block-event-feedback .content {
  flex: 1;
  max-width: 540px;
}

.block-event-feedback .h3 {
  margin-bottom: 30px;
}

.block-event-feedback .btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 640px;
}

.block-event-feedback .btn {
  width: 100%;
}

.block-event-about {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-event-about .title-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.block-event-about .title-wrapper .swiper-navigations {
  margin-left: auto;
}

.block-event-about .swiper {
  overflow: visible;
}

.block-event-about .swiper-slide {
  width: auto;
}

.block-event-about .slide-item {
  display: block;
  width: 720px;
  padding-right: 80px;
  outline: none;
}

.block-event-about .slide-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  width: 2px;
  height: 360px;
  background: #CBCBCB;
}

.block-event-about .slide-item__image {
  display: block;
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-event-about .slide-item__text {
  margin-top: 30px;
}

.block-event-theatre {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-event-theatre .title {
  margin-bottom: 60px;
}

.block-event-theatre .image {
  display: block;
  width: 100%;
  height: auto;
}

.block-event-theatre .button-wrapper .btn {
  width: 100%;
}

.block-video {
  padding-top: 50px;
  padding-bottom: 50px;
}

.block-video .title,
.block-video .h2 {
  width: 100%;
  margin-bottom: 60px;
}

.block-video .video {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.block-video .video__poster {
  display: block;
  aspect-ratio: 1280/732;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.block-video .video__button {
  color: #F2390A;
  position: absolute;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border: 2px solid currentColor;
  border-radius: 100%;
}

.block-video .video__button .icon {
  width: 55px;
  height: 55px;
}

.block-video .video__button_white {
  color: #FFFFFF;
}

.block-video .video__button_red {
  color: #F2390A;
}

.block-video .btn {
  width: 100%;
  margin-top: 50px;
}

.page-text {
  padding-top: 70px;
}

.page-text .wysiwyg-wrapper {
  width: 100%;
}

.page-text .wysiwyg-wrapper img {
  float: left;
  width: 100%;
  max-width: 400px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-text .wysiwyg-wrapper h1,
.page-text .wysiwyg-wrapper h2,
.page-text .wysiwyg-wrapper h3,
.page-text .wysiwyg-wrapper h4,
.page-text .wysiwyg-wrapper h5 {
  margin-bottom: 1.66rem;
}

.page-text .wysiwyg-wrapper strong,
.page-text .wysiwyg-wrapper b {
  font-weight: 700;
}

.page-text .wysiwyg-wrapper p {
  margin-bottom: 1.66rem;
}

.page-text .wysiwyg-wrapper ul {
  margin-top: 1rem;
}

.page-text .wysiwyg-wrapper ul li {
  margin-bottom: 0.5rem;
}

.page-text .wysiwyg-wrapper a {
  color: #F2390A;
}

.page-text button,
.page-text .btn {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.page-event .block-event-theatre {
  margin-bottom: 50px;
}

.page-contacts {
  padding-bottom: 50px;
}

.animate__animated {
  visibility: hidden;
}

@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

@media (min-width: 1641px) {
  .block-contacts .title {
    font-size: 7rem;
  }

  .block-show-info .title {
    font-size: 6.25rem;
  }
}

@media (max-width: 1640px) {
  .text-large {
    font-size: 1.2rem;
  }

  h1,
  .h1,
  .title {
    font-size: 72px;
  }

  h2,
  .h2 {
    font-size: 54px;
  }

  h3,
  .h3 {
    font-size: 43px;
  }

  h4,
  .h4 {
    font-size: 32px;
  }

  h5,
  .h5 {
    font-size: 21px;
  }

  .btn {
    font-size: 1.2rem;
    height: 60px;
  }

  .header__nav > ul {
    font-size: 1.2em;
    margin-right: -20px;
  }

  .header__nav > ul > li {
    padding: 20px 20px;
  }

  .footer__wrapper {
    gap: 100px;
  }

  .block-banner .carousel__inner {
    width: calc(100vw - 100px);
  }

  .block-banner .carousel__sidebar {
    width: 100px;
    padding-bottom: 50px;
  }

  .block-performances .perfomance {
    align-items: center;
  }

  .block-performances .perfomance__left {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .block-performances .perfomance__notice {
    font-size: 1.5rem;
  }

  .block-performances .perfomance__production-label {
    font-size: 1.5rem;
  }

  .block-performances .perfomance__production-text {
    font-size: 2.5rem;
  }

  .block-performances .perfomance__text {
    font-size: 1.5rem;
  }

  .block-reviews .review {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .block-reviews .review__text {
    font-size: 1.5rem;
  }

  .block-reviews .review__author {
    font-size: 1.5rem;
  }

  .block-show-info .production-label {
    font-size: 1.5rem;
  }

  .block-show-info .production-text {
    font-size: 2.5rem;
  }

  .block-show-info .info-list {
    gap: 40px;
  }

  .block-show-info .info-item__number {
    font-size: 3.5rem;
  }

  .block-events .subtitle {
    margin-bottom: 50px;
  }

  .block-events .select {
    margin-bottom: 50px;
  }

  .block-events .country__cities {
    gap: 30px 50px;
  }

  .block-event-ended-message .btn {
    margin-top: 50px;
  }

  .block-event-marquee .post-title {
    margin-right: 80px;
  }

  .block-event-theatre .title {
    margin-bottom: 50px;
  }

  .block-video .title,
  .block-video .h2 {
    margin-bottom: 50px;
  }

  .block-video .btn {
    margin-top: 40px;
  }
}

@media (max-width: 1280px) {
  .text-large {
    font-size: 1rem;
  }

  h1,
  .h1,
  .title {
    font-size: 52px;
  }

  h2,
  .h2 {
    font-size: 36px;
  }

  h3,
  .h3 {
    font-size: 30px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  .btn {
    font-size: 1rem;
    height: 50px;
  }

  .row {
    gap: 30px;
  }

  .header__wrapper {
    gap: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header__logo {
    width: 100px;
  }

  .header__nav > ul {
    font-size: 1em;
  }

  .footer__wrapper {
    gap: 50px;
  }

  .block-banner .content {
    padding-bottom: 50px;
  }

  .block-performances .perfomance__left {
    padding: 20px;
  }

  .block-performances .perfomance__content {
    max-width: 100%;
    max-height: none;
    height: auto;
  }

  .block-performances .perfomance__notice {
    font-size: 1rem;
    padding: 2px 18px 2px 8px;
    margin-top: 15px;
  }

  .block-performances .perfomance__production {
    margin-top: 20px;
  }

  .block-performances .perfomance__production-label {
    font-size: 1rem;
  }

  .block-performances .perfomance__production-text {
    font-size: 2rem;
  }

  .block-performances .perfomance__text {
    font-size: 1rem;
    margin-top: 20px;
  }

  .block-performances .perfomance__btn {
    width: 100%;
    margin-top: 20px;
  }

  .block-performances .perfomance__image {
    aspect-ratio: 950/1000;
  }

  .block-reviews {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .block-reviews .line-top .icon {
    width: 70px;
    padding: 0 15px;
  }

  .block-reviews .review {
    min-height: 250px;
  }

  .block-contacts {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .block-contacts .subtitle {
    font-size: 1rem;
    margin-top: 30px;
  }

  .contact-form .wrapper {
    gap: 30px;
  }

  .block-about .row {
    margin-bottom: 30px;
  }

  .block-about .images {
    gap: 30px;
  }

  .block-show-info .content-wrapper {
    gap: 30px;
  }

  .block-show-info .production-label {
    font-size: 1rem;
  }

  .block-show-info .production-text {
    font-size: 2rem;
  }

  .block-show-info .info-list {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .block-banner .carousel .content {
    width: calc(100% - 200px - 30px);
  }
}

@media (max-width: 768px) {
  .text-large {
    font-size: 16px;
    line-height: 1.4;
  }

  html,
  body {
    font-size: 14px;
  }

  h1,
  .h1,
  .title {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 22px;
  }

  h4,
  .h4 {
    font-size: 19px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }

  .icon {
    width: 18px;
  }

  .btn {
    font-size: 16px;
    border-width: 1px;
  }

  .btn::before {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    opacity: 0;
  }

  .btn:hover::before {
    width: calc(100% + 2px);
    opacity: 1;
  }

  .button-wrapper {
    gap: 15px;
    margin-top: 30px;
  }

  .row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .row .col:nth-child(1) {
    max-width: 100%;
  }

  .row .col:nth-child(2) {
    max-width: 100%;
  }

  .row .col-order-1-sm {
    order: 1;
  }

  .row .col-order-2-sm {
    order: 2;
  }

  .swiper-button {
    width: 50px;
    height: 50px;
  }

  .swiper-button__icon {
    width: 15px;
    height: 15px;
  }

  .swiper-pagination {
    gap: 6px;
    margin-top: 16px;
  }

  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }

  .swiper-pagination-bullet::before {
    border-radius: 10px;
  }

  .input-base .input,
  .input-base .textarea {
    font-size: 16px;
    line-height: 1;
    height: 50px;
    padding: 16px;
    border-radius: 0px;
    border-width: 1px;
  }

  .input-base .textarea {
    height: 200px !important;
  }

  .input-base .icon {
    top: 15px;
    right: 15px;
    width: 20px;
  }

  .input-base .icon + .input,
  .input-base .icon .textarea {
    padding-right: 50px;
  }

  .input-base .options__body {
    border-width: 1px;
  }

  .input-base .options__item {
    padding: 8px 16px;
  }

  .desktop {
    display: none !important;
  }

  .container {
    max-width: 100%;
  }

  .header {
    position: fixed;
  }

  .header__wrapper {
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header__logo {
    width: 83px;
    margin-right: auto;
  }

  .header__nav {
    display: none;
  }

  .header__socials {
    display: none;
  }

  .header .menu-burger {
    color: #FFFFFF;
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    background: #F2390A;
    border-radius: 0px;
  }

  .header .menu-burger span {
    color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: 0.3s ease-out;
    transition-property: top, transform;
  }

  .header .menu-burger span:nth-child(1) {
    top: 25%;
  }

  .header .menu-burger span:nth-child(2) {
    top: 50%;
  }

  .header .menu-burger span:nth-child(3) {
    top: 75%;
  }

  .header .menu-burger.open span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .header .menu-burger.open span:nth-child(2) {
    transform: translateX(100%) scaleX(0);
  }

  .header .menu-burger.open span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) rotate(-135deg);
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 12;
  }

  .menu .container {
    height: 100%;
  }

  .menu__wrapper {
    color: #FFFFFF;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 70px 0 50px;
    background: #F2390A;
    transition: 0.5s;
    transform: translateY(-100%);
  }

  .menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    overflow-y: auto;
  }

  .menu__nav {
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    height: -moz-min-content;
    height: min-content;
    margin-bottom: auto;
  }

  .menu__nav > ul {
    font-size: 24px;
    display: block;
    width: 100%;
  }

  .menu__nav > ul > li {
    display: block;
    width: 100%;
  }

  .menu__nav > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }

  .menu__nav > ul > li > a svg {
    display: block;
    width: 18px;
    height: auto;
    margin-left: auto;
    transition: 0.5s;
  }

  .menu__nav > ul > li > a.active svg {
    transform: rotateZ(-180deg);
  }

  .menu__nav > ul > li > ul {
    font-size: 18px;
    display: none;
    width: 100% !important;
  }

  .menu__nav > ul > li > ul > li {
    display: block;
    width: 100%;
  }

  .menu__nav > ul > li > ul > li > a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .menu__nav > ul > li > ul > li:not(:last-child) {
    margin-bottom: 5px;
  }

  .menu.open .menu__wrapper {
    transform: translateY(0);
  }

  .main {
    padding-top: 70px;
  }

  .main_no-padding {
    padding-top: 0;
  }

  .footer__wrapper {
    flex-direction: column;
    gap: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer__logo {
    width: 120px;
    margin-bottom: 0;
  }

  .footer__copyright {
    font-size: 16px;
    margin-top: 50px;
  }

  .footer__menu {
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .footer__nav ul > li {
    font-size: 16px;
    line-height: 1;
  }

  .footer__nav ul > li:not(:last-child) {
    margin-bottom: 15px;
  }

  .footer__nav ul > li:first-child {
    margin-bottom: 15px;
  }

  .footer__contacts .link {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer__contact {
    font-size: 16px;
    margin-top: 50px;
    margin-bottom: 0;
  }

  .footer__contact-link {
    margin-top: 2px;
  }

  .block-banner {
    aspect-ratio: 1/1;
    height: auto;
    min-height: 320px;
  }

  .block-banner .content {
    padding-bottom: 30px;
  }

  .block-banner .content__suptitle {
    margin-bottom: 10px;
  }

  .block-banner .content__title .h3 {
    margin-top: 0;
  }

  .block-banner .carousel__inner {
    width: 100vw;
  }

  .block-banner .carousel__sidebar {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding-bottom: 0;
    background: transparent;
  }

  .block-banner .carousel .swiper-navigations {
    position: static;
    background: transparent;
    z-index: 2;
  }

  .block-banner .carousel .swiper-navigations .line {
    display: none;
  }

  .block-banner .carousel .swiper-button {
    background: transparent;
  }

  .block-banner .carousel .swiper-button_left {
    position: absolute;
    left: 20px;
    bottom: 10px;
  }

  .block-banner .carousel .swiper-button_right {
    position: absolute;
    right: 20px;
    bottom: 10px;
  }

  .block-banner .carousel .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
    margin: 0;
  }

  .block-banner .carousel .swiper-pagination-current {
    color: #F2390A;
    writing-mode: initial;
  }

  .block-banner .carousel .swiper-pagination-total {
    color: #CBCBCB;
    writing-mode: initial;
  }

  .block-banner .carousel .swiper-pagination .line {
    width: 2px;
    height: 30px;
    background: #CBCBCB;
  }

  .block-banner .carousel .content {
    width: 100%;
    padding-bottom: 70px;
  }

  .block-performances .perfomance {
    display: flex;
    flex-direction: column;
  }

  .block-performances .perfomance__left {
    flex: initial;
    order: 2;
    padding: 20px 20px 50px;
    max-width: 100%;
    margin: 0 auto;
  }

  .block-performances .perfomance__right {
    flex: initial;
    order: 1;
  }

  .block-performances .perfomance__content {
    max-width: 100%;
    max-height: none;
    height: auto;
  }

  .block-performances .perfomance__notice {
    font-weight: 600;
    font-size: 16px;
    padding: 2px 15px 2px 8px;
    margin-top: 15px;
  }

  .block-performances .perfomance__production {
    margin-top: 15px;
  }

  .block-performances .perfomance__production-label {
    font-size: 20px;
  }

  .block-performances .perfomance__production-text {
    font-size: 24px;
    margin-top: 0px;
  }

  .block-performances .perfomance__text {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 0;
  }

  .block-performances .perfomance__btn {
    margin-top: 40px;
  }

  .block-reviews {
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 2px solid #b3b3b3;
  }

  .block-reviews .wrapper {
    max-width: 100%;
  }

  .block-reviews .line-top .icon {
    width: 48px;
    padding: 0 10px;
  }

  .block-reviews .review {
    gap: 20px;
    min-height: 200px;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .block-reviews .review__text {
    font-size: 16px;
  }

  .block-reviews .review__author {
    font-size: 12px;
  }

  .block-contacts {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .block-contacts .title {
    text-align: center;
  }

  .block-contacts .subtitle {
    font-size: 20px;
    margin-top: 20px;
  }

  .block-contacts .form,
  .block-contacts .wpcf7 {
    margin-top: 15px;
  }

  .contact-form {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-form .wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form .form-wrapper {
    padding-top: 0;
  }

  .block-about {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .block-about .images {
    gap: 20px;
  }

  .block-show-info {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-show-info .title {
    margin-bottom: 10px;
  }

  .block-show-info .production {
    margin-bottom: 20px;
  }

  .block-show-info .production-label {
    font-size: 20px;
  }

  .block-show-info .production-text {
    font-size: 24px;
    margin-top: 0px;
  }

  .block-show-info .content-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .block-show-info .content-wrapper .text,
  .block-show-info .content-wrapper .text-large {
    width: 100%;
    max-width: 100%;
  }

  .block-show-info .content-wrapper .info-list {
    width: 100%;
    max-width: 100%;
  }

  .block-show-info .info-list {
    gap: 10px;
  }

  .block-show-info .info-item__number {
    font-size: 40px;
  }

  .block-show-info .info-item__name {
    font-size: 16px;
  }

  .block-events {
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .block-events .title,
  .block-events .h2 {
    margin-bottom: 10px;
  }

  .block-events .subtitle {
    font-size: 16px;
  }

  .block-events .select {
    max-width: 100%;
  }

  .block-events .select__title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .block-events .country {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .block-events .country__name {
    margin-bottom: 25px;
  }

  .block-events .country__cities {
    gap: 20px;
  }

  .block-events .country__cities .city {
    width: 100%;
    max-width: 100%;
  }

  .block-events .country__cities .city__name {
    font-size: 20px;
  }

  .block-event-details {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-event-details .content {
    margin-bottom: 20px;
  }

  .block-event-details .content__suptitle {
    font-weight: 600;
    font-size: 20px;
  }

  .block-event-details .content__title {
    font-weight: 600;
    font-size: 40px;
  }

  .block-event-details .content__subtitle {
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
  }

  .block-event-details .detail__label {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .block-event-details .detail__name {
    font-size: 24px;
  }

  .block-event-details .detail__description {
    font-size: 16px;
  }

  .block-event-ended-message {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-event-ended-message .title,
  .block-event-ended-message .h2 {
    margin-bottom: 15px;
  }

  .block-event-ended-message .btn {
    margin-top: 30px;
  }

  .block-event-marquee {
    padding: 15px 0;
  }

  .block-event-marquee .post-title {
    margin-right: 30px;
  }

  .block-event-feedback {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-event-feedback .wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .block-event-feedback .content {
    flex: initial;
    max-width: 100%;
  }

  .block-event-feedback .h3 {
    margin-bottom: 30px;
  }

  .block-event-feedback .btns {
    flex: initial;
    gap: 20px;
    max-width: 100%;
  }

  .block-event-about {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-event-about .title-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
  }

  .block-event-about .swiper-navigations .line {
    height: 30px;
  }

  .block-event-about .slide-item {
    width: 290px;
    padding-right: 30px;
  }

  .block-event-about .slide-item::after {
    right: 15px;
    height: 150px;
  }

  .block-event-about .slide-item__image {
    height: 150px;
  }

  .block-event-about .slide-item__text {
    margin-top: 15px;
  }

  .block-event-theatre {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-event-theatre .title {
    margin-bottom: 30px;
  }

  .block-video {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .block-video .title,
  .block-video .h2 {
    margin-bottom: 30px;
  }

  .block-video .video__poster {
    aspect-ratio: 290/165;
  }

  .block-video .video__button {
    width: 81px;
    height: 81px;
  }

  .block-video .video__button .icon {
    width: 29px;
    height: 29px;
  }

  .block-video .btn {
    margin-top: 30px;
  }

  .page-text .wysiwyg-wrapper img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    border-radius: 15px;
  }
}