.btn {
  min-height: 48px;
  font-family: "PT Serif", serif;
  background-color: #881c36;
  background-image: linear-gradient(90deg, transparent, #bb4248);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 24px;
  color: #ffbbba;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn:hover {
  color: #fff;
}

.btn-small {
  min-height: 40px;
  border-radius: 20px;
  font-size: 16px;
  padding: 0 20px;
}

.btn-bord {
  background-color: transparent;
  background-image: none;
  box-shadow: 0 0 0 1px #881c36;
  color: #881c36;
}
.btn-bord:hover {
  color: #ff5858;
}

.word .btn,
.btn-one {
  display: inline-flex;
}

.red-bg {
  background-color: #881c36;
  color: #fff;
  background-image: linear-gradient(90deg, transparent, #bb4248);
}

.top-first-nav {
  background-color: #881c36;
  color: #fff;
  background-image: linear-gradient(90deg, transparent, #bb4248);
  position: relative;
}
.top-first-nav::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background-color: #3a000d;
  opacity: 0.2;
}
.top-first-nav .right-col > * + * {
  margin-left: 40px;
}
.top-first-nav .btn {
  border-radius: 0;
  background-image: none;
  background-color: #bb4248;
}
.top-first-nav .eye-btn {
  flex-shrink: 0;
  background-color: #fff;
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.top-first-nav .eye-btn:hover {
  opacity: 1;
}
.top-first-nav .eye-btn img {
  height: 32px;
}

.lang-box .lang-button > * {
  margin: 0 6px;
}
.lang-box .ico {
  opacity: 0.6;
}
.lang-box .text {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lang-box .text.active {
  opacity: 1;
  pointer-events: none;
}
.lang-box .text:hover {
  opacity: 1;
}
.lang-box .round-block {
  width: 32px;
  height: 16px;
  border-radius: 8px;
  background-color: #6c001a;
  display: flex;
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
  opacity: 0.6;
}
.lang-box .round-block:hover {
  opacity: 1;
}
.lang-box .round-block .round {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.lang-box .round-block.button-right {
  justify-content: flex-end;
}

.soc-box > * {
  opacity: 0.6;
  transition: opacity 0.3s;
}
.soc-box > *:hover {
  opacity: 1;
}
.soc-box > * + * {
  margin-left: 20px;
}

.header .main-box {
  padding: 40px 0;
}
.header .main-box .container {
  position: relative;
}
.header .main-box .logo-mob {
  display: none;
}
.header .top-menu {
  background-color: #881c36;
  text-transform: uppercase;
  color: #ffbcbc;
  font-weight: 700;
  height: 64px;
  border-radius: 16px 16px 0 0;
  padding: 32px 64px;
  background-image: linear-gradient(90deg, transparent, #bb4248);
  position: relative;
}
.header .top-menu li {
  position: relative;
  opacity: 1;
  z-index: 2;
}
.header .top-menu li.parent > a {
  pointer-events: none;
}
.header .top-menu li:hover {
  color: #fff;
}
.header .top-menu::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 16px;
  left: 0;
  top: 0;
  border-radius: 16px 16px 0 0;
  border-top: 1px solid #ffccaa;
  opacity: 0.2;
}
.header .top-menu ul {
  position: absolute;
  z-index: 2;
  top: calc(100% + 8px);
  left: -9999px;
  opacity: 0;
  padding: 24px;
  background-color: #881c36;
  background-color: #fff;
  text-transform: none;
  border-radius: 8px;
  transition: opacity 0.3s;
  line-height: 1.2;
  width: 240px;
  box-shadow: 0 0 0 1px #D9DEE2 inset;
}
.header .top-menu ul::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}
.header .top-menu ul li + li {
  margin-top: 12px;
}
.header .top-menu ul a {
  color: #881c36;
}
.header .top-menu ul a:hover {
  color: #ff5858;
}
.header .top-menu li:hover ul {
  opacity: 1;
  left: 0;
}

.burger-box {
  display: none;
  position: absolute;
  top: calc(50% - 9px);
  right: 40px;
}
.burger-box .burger {
  width: 24px;
  height: 18px;
  display: flex;
  align-items: center;
}
.burger-box .burger i {
  position: relative;
  display: block;
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  opacity: 1;
  transition: background 0.2s;
}
.burger-box .burger i:before,
.burger-box .burger i:after {
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  top: -8px;
  left: 0;
  transition: all 0.2s;
}
.burger-box .burger i:after {
  top: auto;
  bottom: -8px;
}

.mob-main-menu {
  position: fixed;
  top: 0;
  left: -9999px;
  padding: 24px;
  background-color: #fff;
  z-index: 556;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s;
  border-left: 1px solid #D9DEE2;
}
.mob-main-menu.opened {
  left: auto;
  right: 0;
  opacity: 1;
}
.mob-main-menu .center-block {
  max-height: 100%;
}
.mob-main-menu .scroll-box {
  padding: 24px 0;
  margin-top: 24px;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.mob-main-menu .menu {
  font-weight: 600;
  line-height: 1.2;
}
.mob-main-menu .menu li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #D9DEE2;
}
.mob-main-menu .menu a {
  color: #881c36;
  display: block;
}
.mob-main-menu .menu li.parent {
  position: relative;
  padding-right: 16px;
}
.mob-main-menu .menu li.parent::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 20px;
  height: 18px;
  background-image: url(../images/arrow-select.svg);
  transform: rotate(0deg);
  transition: transform 0.2s;
}
.mob-main-menu .menu li.opened a.parent::before {
  transform: rotate(180deg);
}
.mob-main-menu .menu li ul {
  display: none;
  padding-top: 12px;
  padding-bottom: 6px;
  font-weight: 500;
  padding-left: 16px;
}
.mob-main-menu .menu li ul li {
  border: none;
  margin-top: 0;
}
.mob-main-menu .close {
  position: absolute;
  top: 24px;
  right: 24px;
}

body {
  background-color: #ffecee;
  background-image: url(../images/bg01.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.slick-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: calc(50% - 24px);
  left: -80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #881c36;
  background-image: url(../images/arrow-2.svg);
  background-repeat: no-repeat;
  background-position: calc(50% - 2px);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.slick-arrow:hover {
  opacity: 1;
}
.slick-arrow.nextArrow {
  left: auto;
  right: -80px;
  transform: rotate(180deg);
}
.main-banners-box .banner {
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  display: block;
}
.main-banners-box .banners-list {
  margin-top: 20px;
}
.main-banners-box .banners-list .slide {
  display: block !important;
}
.main-banners-box .banners-list img {
  display: block !important;
}
.main-banners-box .banners-list .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}
.main-banners-box .banners-list .slick-list .slick-current img {
  box-shadow: 0 0 0 4px #fff;
}
.main-banners-box .banners-list .banner {
  overflow: hidden;
  display: block;
  padding: 4px 12px;
  cursor: pointer;
}
.main-banners-box .banners-list .banner img {
  border-radius: 16px;
}

.plate {
  padding: 40px 0;
}

.about-plate {
  margin-top: 32px;
}

.white-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}
.white-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.about-box {
  position: relative;
}
.about-box .info {
  padding: 0 40px;
  font-size: 18px;
}
.about-box .photo {
  min-height: 100%;
  width: 33%;
  flex-shrink: 0;
}
.about-box .photo img {
  border-radius: 8px;
}

.word > * {
  margin: 32px 0;
}

h2 {
  color: #881c36;
}

.plate-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.plate-title > * {
  flex-shrink: 0;
}
.plate-title > * + * {
  margin-left: 32px;
  flex-shrink: 0;
}
.plate-title h2 {
  font-size: 48px;
  text-transform: uppercase;
}
.plate-title a {
  color: #881c36;
  font-weight: 700;
  font-size: 18px;
}
.plate-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #881c36;
  border-radius: 2px;
  margin-left: 32px;
  margin-top: 2px;
}

.white-block-hover {
  transform: translateY(0);
  box-shadow: 8px 8px 16px -8px rgba(0, 0, 0, 0);
  transition: transform 0.3s, box-shadow 0.3s;
}
.white-block-hover:hover {
  box-shadow: 8px 8px 16px -8px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.afisha-list {
  margin-top: 20px;
}
.afisha-list .slick-list {
  margin: -16px;
}
.afisha-list .slick-arrow {
  top: 220px;
}
.afisha-list .slide {
  padding: 16px;
}
.afisha-list .afisha-block {
  display: block;
  border-radius: 16px;
  position: relative;
  padding: 0;
}
.afisha-list .afisha-block .photo img {
  border-radius: 16px 16px 0 0;
  width: 100%;
}
.afisha-list .afisha-block .info {
  padding: 24px;
  padding-bottom: 32px;
  position: relative;
}
.afisha-list .afisha-block .info .date-time {
  background-color: #881c36;
  display: flex;
  align-items: center;
  color: #fff;
  height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
  margin: -24px;
  margin-bottom: 16px;
  background-color: #881c36;
  color: #fff;
  background-image: linear-gradient(90deg, transparent, #bb4248);
}
.afisha-list .afisha-block .info .date-time > * + * {
  margin-left: 8px;
}
.afisha-list .afisha-block .info h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
  height: 102px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-plate {
  padding-bottom: 80px;
}
.news-plate .left-column {
  width: 68%;
  padding-right: 20px;
}
.news-plate .right-column {
  flex-grow: 1;
  padding-left: 20px;
  display: flex;
}
.news-plate .right-column .white-box {
  display: flex;
  flex-direction: column;
}

.news-list .article-prev {
  display: flex;
  border-top: 1px solid #D9DEE2;
  padding-top: 32px;
  margin-bottom: 32px;
}
.news-list .article-prev .photo {
  width: 33%;
  flex-shrink: 0;
}
.news-list .article-prev .photo img {
  border-radius: 8px;
}
.news-list .article-prev .more {
  color: #881c36;
}
.news-list .article-prev .info {
  padding: 0 24px;
  position: relative;
}
.news-list .article-prev .info .date {
  float: right;
  margin-left: 20px;
  color: #A9B2B9;
  line-height: 1.4;
}
.news-list .article-prev .info h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 8px;
  max-height: 90px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-video-box {
  display: flex;
  flex-direction: column;
}
.media-video-box .buttons-box > * + * {
  margin-top: 24px;
}

.video-block {
  overflow: hidden;
  border-radius: 8px;
  display: block;
  position: relative;
  margin-bottom: 32px;
}
.video-block .button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #881c36;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

.btn .ico img {
  max-height: 32px;
  flex-shrink: 0;
}

.footer {
  padding: 64px 0;
}
.footer .container {
  opacity: 0.7;
}
.footer .logobox img {
  width: 100%;
  max-width: 200px;
  height: 120px;
}
.footer .top-menu {
  -moz-column-count: 2;
       column-count: 2;
  max-width: 360px;
  line-height: 1.2;
}
.footer .top-menu > * {
  page-break-inside: avoid;
  padding: 8px 0;
}
.footer .contacts-list > * + * {
  margin-top: 12px;
}
.footer .contacts-list .icotext .ico {
  align-self: start;
  position: relative;
  top: 2px;
}
.footer .soc-box {
  margin-top: 24px;
}
.footer .logo1 {
  padding-right: 40px;
}
.footer .logo2 {
  padding-left: 40px;
}

.body-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -999;
  overflow: hidden;
}

.front-box {
  border-radius: 0 0 16px 16px;
  min-height: 480px;
  margin-bottom: 80px;
  padding: 46px;
  padding-top: 32px;
  padding-bottom: 80px;
}

.breadcrumb-box {
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-box li:not(:last-child) {
  margin-right: 12px;
}
.breadcrumb-box li:not(:last-child)::after {
  content: "/";
  margin-left: 12px;
  opacity: 0.7;
}
.breadcrumb-box li a {
  color: #A9B2B9;
  white-space: nowrap;
}
.breadcrumb-box li a:hover {
  color: #881c36;
}
.breadcrumb-box li:last-child a {
  pointer-events: none;
}

.pagetitle {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetitle h1 {
  color: #881c36;
  font-size: 40px;
  padding: 0 40px;
  max-width: 600px;
  text-align: center;
  display: inline;
}
.pagetitle:before, .pagetitle:after {
  content: "";
  display: block;
  position: relative;
  top: 4px;
  border-radius: 2px;
  height: 2px;
  width: 80px;
  background-color: #881c36;
}

.word {
  font-size: 18px;
}
.word > * {
  margin: 32px 0;
}
.word h2 {
  font-size: 36px;
  color: inherit;
}
.word h3 {
  font-size: 28px;
}
.word h4 {
  font-size: 20px;
}
.word h2,
.word h3,
.word h4 {
  margin-top: 48px;
}
.word > img,
.word > figure {
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
}
.word > img.right,
.word > figure.right {
  float: right;
  max-width: calc(50% - 80px);
  margin: 20px 0 60px 80px;
}
.word ol > li:before {
  color: #881c36;
}
.word ul {
  margin: 40px 0;
}
.word ul li {
  display: flex;
  align-items: start;
}
.word ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 50%;
  position: relative;
  top: 0.7em;
  background-color: #881c36;
}
.word ul li + li {
  margin-top: 24px;
}
.word ul.checks li::before {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../images/ico-check.png);
  top: 0;
}
.word ul.file li::before {
  width: 16px;
  height: 20px;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../images/ico-file.svg);
  top: 4px;
  background-repeat: no-repeat;
}
.word ol {
  padding: 0;
  margin: 4px 0;
  counter-reset: li;
  list-style: none;
}
.word ol > li {
  display: flex;
  align-items: start;
}
.word ol > li:before {
  content: counter(li) ".";
  counter-increment: li;
  flex-shrink: 0;
  min-width: 24px;
}
.word ol > li + li {
  margin-top: 24px;
}
@media (max-width: 959px) {
  .word {
    font-size: 18px;
  }
  .word > img.right {
    float: none;
    max-width: 100%;
    margin: 56px 0;
  }
}

.select-box {
  display: flex;
  align-items: center;
}
.select-box .label {
  padding-right: 12px;
  font-weight: 700;
}

.filter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.filter-box > * {
  margin: 0 12px 24px 12px;
}
.filter-box .year .selectize-input > .item {
  width: 108px;
  max-width: 108px;
  min-width: auto;
}
.filter-box .month .selectize-input > .item {
  width: 140px;
  max-width: 140px;
  min-width: auto;
}
.filter-box .days-list {
  display: flex;
  font-weight: 700;
  color: #881c36;
}
.filter-box .days-list a {
  padding: 4px 6px;
}
.filter-box .days-list a.active {
  background-color: #881c36;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0 8px;
  font-weight: 700;
}

.afisha-date {
  width: 314px;
  height: 114px;
  background-image: url(../images/afisha-title.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #881c36;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 80px;
  line-height: 1;
}
.afisha-date span {
  font-size: 40px;
  margin-right: 12px;
  padding-bottom: 4px;
}

.afisha-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.afisha-nav .arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #881c36;
  cursor: pointer;
  padding-left: 12px;
}
.afisha-nav .arrow.arrow-next {
  transform: rotate(180deg);
}
.afisha-nav .arrow .svg {
  height: 24px;
}
.afisha-nav .arrow path {
  fill: #881c36;
}

.slick-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: calc(50% - 24px);
  left: -80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #881c36;
  background-image: url(../images/arrow-2.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 4px);
  background-size: 24px auto;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.afisha-page-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.afisha-page-list .afisha-block {
  width: 20%;
}
.afisha-page-list .afisha-block:not(.current-block) {
  flex-shrink: 0;
}
.afisha-page-list .afisha-block.current-block {
  width: auto;
  flex-grow: 1;
  margin: 0 48px;
  font-size: 18px;
  box-shadow: 0 0 0 1px #D9DEE2;
  border-radius: 16px;
  padding: 32px;
  padding-bottom: 48px;
}
.afisha-page-list .afisha-block.current-block h3 {
  margin-bottom: 24px;
}
.afisha-page-list .afisha-block.current-block .photo img {
  border-radius: 16px;
}
.afisha-page-list .afisha-block .photo img {
  border-radius: 8px;
}
.afisha-page-list .afisha-block .date-time {
  display: flex;
  color: #881c36;
  font-size: 18px;
  margin-bottom: 16px;
}
.afisha-page-list .afisha-block .date-time .date {
  margin-right: 12px;
}
.afisha-page-list .afisha-block .info {
  padding: 24px 0;
  padding-bottom: 32px;
  position: relative;
}
.afisha-page-list .afisha-block .info h3 {
  font-size: 18px;
  line-height: 1.4;
}
.afisha-page-list .afisha-block .info p {
  margin-top: 16px;
}

.input {
  width: 100%;
  position: relative;
}
.input .del {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.input input {
  padding-right: 48px;
}
.input input:not(:-moz-placeholder-shown) + .del {
  opacity: 1;
  pointer-events: auto;
}
.input input:not(:placeholder-shown) + .del {
  opacity: 1;
  pointer-events: auto;
}

.main-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.main-search-box .main-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding-left: 16px;
  position: relative;
  z-index: 3;
  flex-grow: 1;
}
.main-search-box .main-search input {
  border: none;
  padding: 0;
  margin: 0 36px 0 10px;
  background-color: transparent;
}
.main-search-box .main-search .ico {
  flex-shrink: 0;
}
.main-search-box .main-search .ico path {
  stroke: #7B858F;
}
.main-search-box .main-search button {
  position: relative;
  right: -2px;
  width: 48px;
  height: 48px;
  background-color: #881c36;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.main-search-box .main-search button .svg path {
  stroke: #fff;
}
.main-search-box .main-search button:hover {
  background-color: #b63a3b;
}
.main-search-box .main-search input,
.main-search-box .main-search button,
.main-search-box .main-search .ico {
  position: relative;
  z-index: 2;
}
.main-search-box .main-search .ico {
  margin-top: 1px;
}
.main-search-box .main-search::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 0 1px #D9DEE2 inset;
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
  transition: box-shadow 0.2s;
}
.main-search-box .main-search:hover::before, .main-search-box .main-search:focus::before {
  box-shadow: 0 0 0 1px #881c36 inset;
}
.main-search-box .right-col {
  margin-left: 40px;
}

.abonements-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.white-box-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(207, 215, 229, 0.6);
  transform: translateY(0);
  box-shadow: 8px 8px 32px -8px rgba(0, 0, 0, 0);
  transition: transform 0.3s, box-shadow 0.3s;
}
.white-box-2:hover {
  box-shadow: 8px 8px 32px -8px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.abonement-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.abonement-block .photo img {
  border-radius: 16px 16px 0 0;
  width: 100%;
}
.abonement-block .info-box {
  padding: 24px;
  padding-bottom: 12px;
  position: relative;
}
.abonement-block .age {
  background-color: #fff;
  color: #881c36;
  border: 1px solid #881c36;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 2px;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -20px;
  right: 24px;
  box-shadow: 0 0 0 4px #fff;
  letter-spacing: -1px;
}
.abonement-block .title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #881c36;
}
.abonement-block .description {
  margin-top: 12px;
}
.abonement-block .description > * {
  margin: 12px 0;
}
.abonement-block .description h4 {
  font-size: 16px;
  color: #881c36;
}
.abonement-block .bottom {
  padding: 24px;
  padding-top: 0;
  padding-bottom: 32px;
}

.fancybox-slide--html .fancybox-close-small {
  display: none !important;
}

.popup .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.popup {
  width: 960px;
  max-width: 100%;
  border-radius: 16px;
  padding: 48px !important;
  box-shadow: 0px 8px 18px -6px rgba(24, 39, 75, 0.12), 0px 12px 42px -4px rgba(24, 39, 75, 0.12);
}
.popup .body {
  margin-top: 32px;
}

.news-page .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.news-page .article-prev {
  margin-bottom: 0;
}

.ensembles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}
.ensembles-list .prevblock {
  flex-basis: calc(25% - 40px);
  display: block;
}
.ensembles-list .prevblock .photo img {
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.ensembles-list .prevblock h3 {
  font-size: 18px;
  margin-top: 16px;
  text-align: center;
}

.page-content.narrowed {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

body .page-group-title {
  text-align: center;
  color: #881c36;
  margin-top: 60px;
}

.persons-box > * + * {
  margin-top: 48px;
}

.persons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.person-block {
  line-height: 1.3;
  width: 200px;
}
.person-block .photo {
  display: table;
  margin: 0 auto;
}
.person-block .photo img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.person-block .info {
  text-align: center;
}
.person-block .name {
  font-weight: 700;
  margin: 8px 0;
  margin-top: 16px;
}
.person-block .name span {
  display: block;
  font-size: 18px;
}
.person-block .description {
  font-size: 14px;
}

.main-person .person-block {
  width: 800px;
}
.main-person .person-block .photo img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.main-person .person-block .name {
  font-size: 20px;
}
.main-person .person-block .name span {
  display: inline;
  font-size: inherit;
}
.main-person .person-block .description {
  font-size: 18px;
}

.awards-list {
  -moz-column-count: 4;
       column-count: 4;
  gap: 40px;
}
.awards-list > * {
  page-break-inside: avoid;
}

.award-block {
  padding-bottom: 40px;
}
.award-block .photo img {
  border-radius: 8px;
}
.award-block .title {
  color: #881c36;
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0;
}
.award-block .word p {
  margin: 12px 0;
}

.word > img,
.word p > img,
.word figure > img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
}

.media-video-page .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.media-video-page .list > * {
  width: calc(33.33333333% - 40px);
}
.media-video-page .list .video-box .video-block {
  margin: 0;
  border-radius: 16px;
}
.media-video-page .list .video-box .info {
  text-align: center;
}
.media-video-page .list .video-box .title {
  color: #881c36;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
}

.photo-album-block .photo-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.photo-album-block .photo-box:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  border-radius: 3px;
  top: 0;
  left: 0;
}
.photo-album-block .photo-box .shadow {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.photo-album-block .photo-box img {
  transition: transform 0.7s;
}
.photo-album-block .photo-box .photos-num {
  position: absolute;
  display: table;
  color: #fff;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  padding-left: 32px;
}
.photo-album-block .photo-box .photos-num:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/ico-photo.svg);
  background-position: calc(50% + 1px) center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.photo-albums-list {
  gap: 40px;
  justify-content: center;
}
.photo-albums-list > * {
  width: calc(25% - 40px);
}
.photo-albums-list .title {
  text-align: center;
  margin-top: 12px;
  color: #881c36;
}

.photos-list {
  gap: 40px;
  justify-content: center;
}
.photos-list > * {
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.audiojs {
  width: 100%;
  height: 56px;
  background-color: #fff;
  overflow: hidden;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  background-image: none;
  box-shadow: none;
  border: 1px solid #d9d7d9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audiojs.playing {
  background-color: #ffe6e6;
}

.audiojs .scrubber {
  float: none;
  width: calc(100% - 240px);
  background-color: rgba(63, 57, 66, 0.3);
  height: 8px;
  border-radius: 4px;
  margin: 0;
  border: none;
  cursor: pointer;
}

.audiojs .progress {
  height: 8px;
  border-radius: 4px;
  background-color: rgba(63, 57, 66, 0.7);
  background-image: none;
}

.audiojs .loaded {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 8px;
  width: 0px;
  background-color: rgba(63, 57, 66, 0.3);
  background-image: none;
}

.audiojs .play-pause {
  width: 64px;
  height: 100%;
  padding: 4px 6px;
  margin: 0px;
  float: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audiojs p {
  width: 32px;
  height: 32px;
}

.audiojs .time {
  float: none;
  height: 32px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-left: none;
  color: #3f3942;
  text-shadow: none;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.audiojs .time em {
  padding: 0;
  color: #3f3942;
}

.audiojs .play {
  background: url(../images/player-ico-play.svg) center no-repeat;
}

.audiojs .pause {
  background: url(../images/player-ico-pause.svg) center no-repeat;
}

.audiojs .loading {
  background: url(../images/player-ico-load.svg) center no-repeat;
  animation: load 1s infinite linear;
}

@keyframes load {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.play-list .title {
  position: relative;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.play-list .title:before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #efc0cb;
  border-radius: 50%;
  background-image: url(../images/music-ico.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

.play-list .play-list-item + .play-list-item {
  margin-top: 40px;
}

.play-list .subtitle {
  font-size: 18px;
  font-weight: 400;
  padding-left: 40px;
  padding-bottom: 12px;
}

.play-list .audio-block-item + .audio-block-item {
  margin-top: 16px;
}

.press-kit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.press-kit-block {
  width: calc(33.33333333% - 28px);
}
.press-kit-block .photo {
  overflow: hidden;
  border-radius: 16px;
}
.press-kit-block .title {
  margin-top: 24px;
}

.map-box {
  height: 480px;
  background-color: #fdfaf1;
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.contacts-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.contacts-box a {
  white-space: nowrap;
}
.contacts-box > * {
  width: calc(50% - 20px);
  flex-shrink: 0;
}
.contacts-box .red-box {
  padding: 32px;
  border-radius: 16px;
}

.h639,
.h1079,
.h1279,
.h767 {
  display: none;
}

@media (max-width: 1439px) {
  .main-banners-box .banners-list {
    margin-left: 48px;
    margin-right: 48px;
  }
  .slick-arrow {
    left: -68px;
  }
  .slick-arrow.nextArrow {
    right: -68px;
  }
  .afisha-slider {
    padding: 0 48px;
  }
}
@media (max-width: 1279px) {
  .burger-box {
    display: block;
  }
  .header .top-menu-box {
    display: none;
  }
  .main-banners-box .banner {
    border-radius: 16px;
  }
  .afisha-list .afisha-block .info h3 {
    font-size: 16px;
  }
  .afisha-list .afisha-block .info .date-time {
    font-size: 14px;
  }
  .header .main-box .container .thiscenter {
    padding: 0 60px;
  }
  .front-box {
    border-radius: 16px;
  }
  .news-page .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 0;
  }
}
@media (max-width: 1079px) {
  .afisha-page-list .afisha-block:not(.current-block) {
    display: none;
  }
  .afisha-page-list .afisha-block.current-block {
    margin: 0;
  }
  .afisha-nav {
    justify-content: space-between;
  }
  .afisha-date {
    width: 180px;
    height: 66px;
    background-image: url(../images/afisha-title.svg);
    background-size: 100%;
    font-size: 18px;
    margin: 0;
    background-repeat: no-repeat;
  }
  .afisha-date span {
    font-size: 28px;
    margin-right: 8px;
    padding-bottom: 4px;
  }
  .afisha-page .select-box {
    flex-direction: column;
  }
  .afisha-page .select-box .label {
    padding-right: 0;
    padding-bottom: 8px;
  }
  .afisha-page .afisha-page-list .afisha-block.current-block {
    padding: 24px;
    padding-bottom: 32px;
  }
  .afisha-page .filter-box .days-list {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .afisha-page .filter-box .days-list a {
    padding: 4px;
  }
  .afisha-page .filter-box .days-list a.active {
    padding: 4px 12px;
    margin: 0 8px;
  }
  .afisha-nav .arrow {
    width: 32px;
    height: 32px;
    padding-left: 5px;
  }
  .afisha-nav .arrow > * {
    width: 16px;
  }
  .ensembles-list .prevblock {
    flex-basis: calc(33.33333333% - 28px);
  }
}
@media (max-width: 1023px) {
  .plate-title h2 {
    font-size: 36px;
  }
  .news-plate .container {
    display: block;
  }
  .news-plate .left-column {
    width: auto;
    padding-right: 0;
  }
  .news-plate .right-column {
    padding-left: 0;
    display: block;
    margin-top: 40px;
  }
  .media-video-box .list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
  }
  .media-video-box .list > * {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
  .media-video-box .list > *:last-child {
    display: none;
  }
  .footer .logo1 {
    order: 1;
    margin-top: 40px;
  }
  .footer .logo2 {
    order: 2;
    margin-top: 40px;
  }
  .footer .main-row {
    flex-wrap: wrap;
  }
  .footer .footer-menu {
    width: 40%;
  }
  .footer .contact-box {
    width: 60%;
    padding-left: 40px;
  }
  .about-box .photo {
    width: 45%;
  }
  .abonements-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .press-kit-list {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin: auto;
  }
  .press-kit-list .press-kit-block {
    display: block;
    width: auto;
  }
  .press-kit-list > * + * {
    margin-top: 40px;
  }
}
@media (max-width: 959px) {
  .top-first-nav .soc-box {
    display: none;
  }
  .about-box {
    display: block;
  }
  .about-box .photo {
    width: 100%;
    height: 320px;
  }
  .about-box .info {
    padding: 0;
    padding-top: 32px;
    font-size: 16px;
  }
  .pagetitle h1 {
    font-size: 32px;
  }
  .main-person .person-block {
    width: 100%;
  }
  .breadcrumb-box {
    display: none;
  }
  .awards-list {
    -moz-column-count: 3;
    column-count: 3;
    gap: 32px;
  }
  .contacts-box {
    display: block;
    gap: 0;
  }
  .contacts-box > * {
    width: auto;
  }
  .contacts-box .red-box {
    margin-top: 32px;
    padding: 24px;
  }
  .word h2 {
    font-size: 24px;
  }
  .word h3 {
    font-size: 20px;
  }
  .word h4 {
    font-size: 18px;
  }
}
@media (max-width: 799px) {
  .footer .footer-menu {
    width: 100%;
  }
  .footer .top-menu {
    -moz-column-count: 3;
    column-count: 3;
    max-width: none;
  }
  .footer .contact-box {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
  .footer .logo1 {
    order: 1;
    margin-top: 48px;
  }
  .footer .logo2 {
    order: 2;
    margin-top: 48px;
  }
  .footer .logobox img {
    width: 100%;
    max-width: 200px;
    height: 80px;
  }
  .abonement-block .title {
    font-size: 16px;
  }
  .pagetitle {
    display: block;
    text-align: center;
  }
  .pagetitle:before {
    display: none;
  }
  .pagetitle:after {
    display: block;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
  }
  .pagetitle h1 {
    font-size: 28px;
    padding: 0;
  }
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 719px) {
  .news-list .article-prev .info .date {
    float: none;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: -4px;
  }
}
@media (max-width: 639px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .top-first-nav .container {
    padding-left: 0;
    padding-right: 0;
  }
  .main-banners-box .banners-list {
    margin-left: 28px;
    margin-right: 28px;
  }
  .main-banners-box .banners-list .slick-arrow {
    left: -48px;
  }
  .main-banners-box .banners-list .slick-arrow.nextArrow {
    right: -48px;
    margin-left: auto;
  }
  .main-banners-box .banners-list .banner {
    padding: 4px;
  }
  .slick-arrow {
    width: 32px;
    height: 32px;
    left: -36px;
    top: calc(50% - 16px);
  }
  .slick-arrow.nextArrow {
    right: -36px;
  }
  .afisha-slider {
    padding: 0 16px;
  }
  .white-box {
    padding: 32px 24px;
  }
  .top-first-nav .right-col > * + * {
    margin-left: 24px;
  }
  .top-first-nav * {
    font-size: 14px;
  }
  .media-video-box .list {
    gap: 24px;
    margin-bottom: 32px;
  }
  .media-video-box .list > * {
    width: calc(50% - 12px);
    margin-bottom: 0;
  }
  .media-video-box .list > *:last-child {
    display: none;
  }
  .top-first-nav {
    background-color: #881c36;
    color: #fff;
    background-image: linear-gradient(90deg, transparent, #bb4248);
    position: relative;
  }
  .burger-box {
    right: 24px;
  }
  .about-plate {
    margin-top: 0px;
  }
  .pagetitle {
    margin-bottom: 48px;
  }
  .abonements-list {
    display: block;
  }
  .abonements-list .abonement-block + .abonement-block {
    margin-top: 24px;
  }
  .popup {
    padding: 24px !important;
  }
  .awards-list {
    -moz-column-count: 2;
    column-count: 2;
    gap: 24px;
  }
  .ensembles-list {
    gap: 24px;
  }
  .ensembles-list .prevblock {
    flex-basis: calc(50% - 12px);
  }
  .ensembles-list .prevblock h3 {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 559px) {
  .plate-title h2 {
    font-size: 28px;
  }
  .news-list .article-prev {
    display: block;
  }
  .news-list .article-prev .info {
    padding: 0;
    padding-top: 16px;
  }
  .news-list .article-prev .photo {
    width: 100%;
  }
  .plate-title a {
    font-size: 14px;
  }
  .plate-title::after {
    display: none;
  }
  .plate-title > * + * {
    margin-left: 24px;
  }
  .plate-title {
    margin-bottom: 24px;
  }
  .main-search-box {
    display: block;
  }
  .main-search-box .right-col {
    margin-left: 0;
    margin-top: 24px;
  }
  .main-banners-box .banners {
    margin-left: -24px;
    margin-right: -24px;
  }
  .main-banners-box .banners .banner {
    border-radius: 0;
  }
}
@media (max-width: 519px) {
  .footer .top-menu {
    -moz-column-count: 2;
    column-count: 2;
    max-width: none;
  }
  .header .main-box .container .logo-desktop {
    display: none;
  }
  .header .main-box .container .logo-mob {
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media (max-width: 479px) {
  .lang-box .round-block,
  .lang-box .ico {
    display: none;
  }
  .top-first-nav .right-col > * + * {
    margin-left: 12px;
  }
  .top-first-nav .btn {
    padding: 0 16px;
  }
  .about-box .photo {
    height: 200px;
  }
  .pagetitle h1 {
    font-size: 24px;
  }
  .awards-list {
    -moz-column-count: auto;
    column-count: auto;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 413px) {
  .ensembles-list .prevblock {
    flex-basis: 100%;
  }
}/*# sourceMappingURL=style3.css.map */