@charset "UTF-8";
html,
body {
  font-family: "Inter", sans-serif;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1730px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border: none;
  cursor: pointer;
  background: transparent;
}

.btn {
  font-weight: 600;
  font-size: 18px;
  line-height: auto;
  color: #fff;
  font-family: "Inter";
  padding: 18px 25px;
  border-radius: 4px;
  background: #c6a26e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.btn::before {
  content: "";
  background: url("../images/icons/click-icon.svg");
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 10px;
}

.btn--hollow {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #b27214;
  padding: 12px 35px;
  border: 2px solid rgba(198, 162, 110, 0.4);
  border-radius: 36px;
  max-width: 194px;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--hollow:hover {
  background-color: rgb(198, 162, 110);
  color: #fff;
}

.header__top-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;
  margin-top: 15px;
}

.header__top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__top-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 90px;
}

.header__basket-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__basket-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.basket__row {
  width: 2px;
  height: 55px;
  background-color: #C6A26E;
  margin: 0 10px;
}

.header__basket-item {
  margin-bottom: 6px;
}
.header__basket-item:last-child {
  margin-bottom: 0px;
}

.header__basket-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #ac1a01;
  letter-spacing: -0.03em;
}
.header__basket-text span {
  color: #2f2f2f;
}

.header__top-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.header__phone-img {
  margin-top: auto;
  margin-right: 10px;
}

.header__phone-info {
  margin-left: 10px;
  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: end;
      -ms-flex-align: end;
          align-items: end;
}

.header__phone-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__phone-text {
  font-weight: 400;
  font-size: 15px;
  line-height: auto;
  color: #b27214;
  font-family: "Roboto";
  margin-left: 5px;
}

.header__phone-number {
  font-weight: 500;
  font-size: 28px;
  line-height: auto;
  color: #b27214;
  font-family: "Rubik";
  margin-top: 10px;
  letter-spacing: -0.02em;
}

.header__nav-list {
  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;
  margin: 26px 55px 20px 55px;
}

.header__nav-item {
  padding: 0 3px;
}

.header__nav-item--active {
  position: relative;
}
.header__nav-item--active::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 6px;
  background-color: #b27214;
  position: absolute;
  bottom: -20px;
}
.header__nav-item--active a {
  color: #b27214;
}

.header__nav-icon {
  margin-right: 12px;
}

.header__item-link {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__item-link:hover {
  color: #b27214;
}

.header__item-nums {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #fff;
  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;
  width: 27px;
  height: 27px;
  background-color: #c6a26e;
  border-radius: 100%;
  margin-left: 4px;
  margin-bottom: 9px;
}

.header__main {
  position: relative;
  background: url("../images/home-page/home-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}
.header__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1296px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(30.5%, rgba(49, 31, 31, 0.95)), to(rgba(217, 217, 217, 0)));
  background: linear-gradient(90deg, rgba(49, 31, 31, 0.95) 30.5%, rgba(217, 217, 217, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.header__main--repertoire {
  background: url("../images/repertoire-page/header-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}

.header__main--pfnd {
  background: url("../images/performance-nd-page/main-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}

.header__main--pf {
  background: url("../images/perfomance-page/main-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}

.header__main--del {
  background: url("../images/delivery-page/main-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}

.header__main--about {
  background: url("../images/about-page/main-bg.jpg") no-repeat;
  background-size: cover;
  z-index: 0;
}

.header__main-pagination {
  font-weight: 400;
  font-size: 15px;
  line-height: auto;
  color: #c6a26e;
  margin-bottom: 20px;
}

.header__pagination-link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.header__pagination-link:last-child {
  text-decoration: none;
}

.header__main-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__main-heading .poster__img-nums {
  position: static;
  width: 56px;
  height: 35px;
  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;
  font-size: 18px;
  color: #fff;
  margin-left: 32px;
}

.header__main-content {
  margin: 0 55px;
  padding-top: 50px;
  padding-bottom: 130px;
}

.header__main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__main-subtitle {
  font-weight: 400;
  font-size: 45px;
  line-height: 133%;
  color: #ffd79d;
  margin-right: 26px;
}

.header__main-icon {
  margin-right: 26px;
}
.header__main-icon:last-child {
  margin-right: 0px;
}

.header__main-title {
  font-weight: 400;
  /*font-size: 60px;*/
  font-size: 48px;
  line-height: 100%;
  color: #ffd79d;
  margin-top: 3px;
  margin-bottom: 10px;
}

.header__main-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: rgba(255, 215, 157, 0.7);
}

.header__content-list {
  margin-top: 30px;
}

.header__main-item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__main-item::before {
  content: "";
  background: url("../images/icons/check-icon.svg") no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
.header__main-item:last-child {
  margin-bottom: 0px;
}

.header__content-text {
  font-weight: 400;
  font-size: 22px;
  line-height: auto;
  color: rgba(255, 215, 157, 0.9);
}

.poster {
  margin-bottom: 50px;
}

.calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 13px 35px;
  background: #f1eee9;
  border-radius: 12px;
  margin-top: -49px;
  z-index: 5;
  position: relative;
}

.calendar__date-list {
  margin-left: 30px;
  width: 100%;
}

.calendar__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendar__heading-item {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #424242;
  margin-left: 40px;
}
.calendar__heading-item:first-child {
  color: #fff;
  background: #c6a26e;
  padding: 0 4px;
  margin-left: 0px;
}

.calendar__content {
  margin-top: 10px;
  margin-right: 67px;
  margin-left: 15px;
}
.calendar__content ul {
  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;
}

.calendar__date {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #424242;
}
.calendar__date p:last-child,  .calendar__date div:last-child{
  font-weight: 400;
  font-size: 12px;
  line-height: auto;
  color: #424242;
  margin-top: 5px;
}
.calendar__date p span,  .calendar__date div span{
  color: #f87777;
}

.calendar__date-link {
  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;
}

.calendar__date-link--active {
  background: #c6a26e;
  padding: 6px 5px;
  color: #fff;
}
.calendar__date-link--active p {
  color: #fff !important;
}

.heading {
  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;
  padding-left: 70px;
  margin-top: 13px;
  padding-right: 150px;
}

.heading__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin-left: 15px;
}

.heading__text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  margin-left: 15px;
  margin-top: 6px;
  max-width: 413px;
}

.heading__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.heading__list-item:last-child {
  margin-right: 0px;
}

.heading__list-text {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin-left: 10px;
}

.heading__row {
  border: 1px solid #e7dfd1;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 6px;
}

.poster__content {
  margin-top: 16px;
}

.poster__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0;
  border-top: 2px solid #e7dfd1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.poster__content-item:hover {
  background: #f5e9d5;
}
.poster__content-item:last-child {
  border-bottom: 2px solid #e7dfd1;
}

.poster__item-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: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 70px;
  margin-right: 60px;
  min-width: 86px;
}

.poster__date-title {
  font-weight: 400;
  font-size: 70px;
  line-height: auto;
  color: #c6a26e;
}

.poster__date-month {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.poster__date-time {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #2f2f2f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.poster__date-time span {
  margin-left: 2px;
}

.poster__date-time--red {
  color: #f87777;
}

.poster__img-box {
  position: relative;
  margin-right: 60px;
}

.poster__img--mobile {
  display: none;
}

.poster__img-nums {
  border-radius: 36px;
  padding: 4px 9px;
  background: #b27214;
  position: absolute;
  top: 8px;
  left: 8px;
}

.poster__nums-text {
  color: #fff;
}

.poster__item-content {
  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;
  width: 100%;
  margin-right: 150px;
}

.poster__item-descr {
  min-width: 412px;
  max-width: 412px;
}
.poster__item-descr div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.poster__descr-title {
  font-weight: 400;
  /*font-size: 31px;*/
  font-size: 20px;
  line-height: auto;
  color: #c6a26e;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.poster__descr-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  margin-bottom: 8px;
}

.poster__descr-icon {
  margin-right: 8px;
}

.poster__icon-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
}

.poster__item-price {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #ac1a01;
}

.poster__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.poster__btn--hollow {
  margin-top: 38px;
}

.steps {
  margin-bottom: 78px;
}

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

.steps__heading {
  text-align: center;
  margin-bottom: 26px;
}

.steps__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.steps__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: auto;
  color: #c5a26e;
  letter-spacing: -0.03em;
  font-family: "Inter";
}

.steps__content-list {
  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;
  min-width: 973px;
}

.steps__content-item {
  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;
  max-width: 231px;
}
.steps__content-item:last-child {
  max-width: 256px;
  margin-top: -26px;
}

.steps__item-title {
  font-weight: 400;
  font-size: 28px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin: 16px 0px;
}
.steps__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  text-align: center;
}

.steps__item-phone {
  font-weight: 500;
  font-size: 22px;
  line-height: auto;
  color: #c5a26e;
  letter-spacing: -0.02em;
  font-family: "Rubik";
  margin-top: 10px;
}

.steps__btn {
  font-weight: 400;
  font-size: 12px;
  line-height: auto;
  color: #fff;
  padding: 10px 17px;
  background: #c6a26e;
  border-radius: 8px;
  margin-top: -23px;
  margin-bottom: -13px;
}

.questions {
  margin-bottom: 47px;
}

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

.questions__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 32px;
}

.questions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 26px;
}

.questions__content-list {
  margin-right: 28px;
}

.questions__content-item {
  border-radius: 8px;
  background: #f1eee9;
  padding: 30px 45px;
  position: relative;
  height: 84px;
  width: 783px;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.questions__content-item::before {
  content: "";
  height: 100%;
  width: 8px;
  border-radius: 12px;
  display: inline-block;
  background: #c5a26e;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.questions__content-item:last-child {
  margin-bottom: 0px;
}

.questions__content-item--active {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 100%;
}

.questions__list-title {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #b27214;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  border-bottom: 1px dashed #c6a26e;
  height: 44px;
  cursor: pointer;
}

.questions__list-link {
  position: absolute;
  top: 30px;
  right: 30px;
  display: none;
}

.questions__list-link--active {
  display: block;
}

.questions__list-text {
  font-weight: 300;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  font-family: "Inter";
  display: none;
  /* Скрываем по умолчанию */
}

.reservation {
  background: rgba(245, 233, 213, 0.7);
  margin-bottom: 81px;
}

.reservation--about {
  margin-bottom: 570px;
}

.reservation__content {
  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;
  padding: 15px 0px;
}

.reservation__content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reservation__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 141%;
  color: #b27214;
  max-width: 386px;
  margin-left: 26px;
}

.reservation__btn-box {
  margin-left: -90px;
}

.reservation__phone-list {
  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: 122px;
}

.reservation__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reservation__list-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 141%;
  color: #b27214;
}

.reservation__list-img {
  margin-right: 11px;
}

.reservation__list-number {
  font-weight: 500;
  font-size: 28px;
  line-height: 141%;
  color: #b27214;
  letter-spacing: -0.02em;
}

.popular {
  background: #f1eee9;
}

.popular__inner {
  padding-top: 76px;
  padding-bottom: 35px;
  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;
}

.popular__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 5px;
}

.popular__text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  text-align: center;
  margin-bottom: 23px;
}

.popular__slider-wrapper {
  width: 100vw;
  max-width: 1384px;
  min-width: 300px;
  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;
  position: relative;
}

.popular__slider {
  width: 100vw;
  max-width: 1384px;
  min-width: 300px;
  margin-bottom: 28px;
}

.popular__slide,
.repertoire__content-item {
  border-radius: 8px;
  background-color: #fff;
  margin: 0px 25px;
}
.popular__slide:last-child,
.repertoire__content-item:last-child {
  margin-right: 0px;
}

.popular__slide,
.slick-slide {
  width: 428px;
  height: 561px;
}

.slide__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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 20px 35px 20px;
}

.popular__img-box--slide {
  width: 100vw;
  max-width: 100%;
  min-width: 319px;
}

.popular__img {
  width: 100%;
  height: 100%;
}

.popular__list-item {
  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;
}

.popular__list-date {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #b27214;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.popular__list-date span {
  color: #2f2f2f;
}

.popular__list-title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  margin-top: 7px;
  margin-bottom: 12px;
  text-align: center;
}

.popular__list-title--hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.popular__list-title--hover:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #b27214;
}

.popular__list-price {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #ac1a01;
  margin-bottom: 29px;
}

.popular__btn-box {
  max-width: 316px;
  margin: 0 auto;
}

.popular__btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popular__list-date--red {
  color: #f87777 !important;
}

.popular__slider-arrow--prev {
  position: absolute;
  top: 51%;
  left: -81px;
}

.popular__slider-arrow--next {
  position: absolute;
  top: 51%;
  right: -83px;
}

.popular__slider-dots .slick-dots {
  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;
}

.popular__slider-dots li {
  margin-right: 12px;
}

.popular__slider-dots li:last-child {
  margin-right: 0px;
}

.popular__slider-dots button {
  font-size: 0;
  background-color: transparent;
  height: 12px;
  width: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

.popular__slider-dots button::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(200, 200, 200, 0.49);
  border-radius: 100%;
}

.popular__slider-dots .slick-active button::before {
  background-color: #c6a26e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer {
  background: url("../images/footer-bg.jpg") no-repeat;
  margin-top: 64px;
}

.footer__head {
  padding-bottom: 56px;
}

.footer__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 62px;
  padding-left: 159px;
  padding-right: 159px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__head-phone {
  margin-right: 20px;
}

.footer__phone-list {
  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-top: 28px;
}

.footer__phone-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 136%;
  color: rgba(198, 162, 110, 0.8);
}

.footer__phone-number {
  font-weight: 500;
  font-size: 28px;
  line-height: auto;
  color: #c6a26e;
  letter-spacing: -0.02em;
  font-family: "Rubik";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 19px;
  margin-bottom: 13px;
  width: 324px;
}

.footer__phone-date {
  font-weight: 400;
  font-size: 14px;
  line-height: auto;
  color: rgba(198, 162, 110, 0.8);
}

.footer__head-content {
  max-width: 891px;
}

.footer__content-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 136%;
  color: #c6a26e;
  margin-bottom: 44px;
}

.footer__content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 30px 1fr;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr 100px 1fr;
      grid-template: repeat(2, 1fr)/repeat(4, 1fr);
  row-gap: 30px;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}

.footer__item-link {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: rgba(198, 162, 110, 0.8);
  letter-spacing: -0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.footer__item-icon {
  margin-right: 12px;
}

.footer__bottom-inner {
  padding-left: 159px;
  padding-right: 159px;
  padding-bottom: 177px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__bottom-contacts {
  margin-right: 167px;
}

.footer__contacts-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 136%;
  color: #c6a26e;
  font-family: "Inter";
  margin-bottom: 27px;
}

.footer__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.footer__contacts-item:last-child {
  margin-bottom: 0px;
  margin-top: 6px;
}

.footer__contacts-icon {
  margin-right: 16px;
}

.footer__contacts-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: rgba(198, 162, 110, 0.8);
}

.footer__contacts-link {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: rgba(198, 162, 110, 0.8);
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.footer__contacts-license {
  font-weight: 400;
  font-size: 14px;
  line-height: auto;
  color: rgba(198, 162, 110, 0.8);
}

.footer__cards-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 136%;
  color: #c6a26e;
  font-family: "Inter";
  margin-bottom: 20px;
}

.footer__cards-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__cards-item {
  margin-right: 20px;
}
.footer__cards-item:last-child {
  margin-right: 0px;
}

.repertoire {
  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;
  margin-top: 47px;
}
.repertoire .poster__btn-box {
  margin-left: 0px;
}

.repertoire__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[4];
  -ms-grid-columns: (1fr)[3];
      grid-template: repeat(4, 1fr)/repeat(3, 1fr);
}

.repertoire__content-item {
  border: 1px solid #e7dfd1;
  position: relative;
  margin-right: 40px;
  margin-bottom: 40px;
}
.repertoire__content-item .slide__wrapper {
  margin-bottom: 60px;
}
.repertoire__content-item .popular__list-title {
  font-size: 26px;
}
.repertoire__content-item .popular__btn-box {
  position: absolute;
  bottom: 22px;
}

.poster--pfnd {
  margin-bottom: 29px;
}

.poster__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 22px;
}

.poster__scheme-wrapper {
  background: url("../images/performance-nd-page/second-bg.jpg") no-repeat;
  background-size: cover;
  border-radius: 12px;
  margin-top: 38px;
  width: 100%;
  height: 161px;
  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;
}

.scheme__btn {
  max-width: 390px;
}

.date {
  margin-bottom: 50px;
}

.date__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  margin-bottom: 0px;
  text-align: center;
  margin-bottom: 18px;
}

.date__calendar {
  position: static;
  margin-top: 0px;
  margin-bottom: 28px;
}

.date__content-title {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #c6a26e;
  letter-spacing: -0.03em;
  margin-left: 53px;
  margin-bottom: 7px;
}

.date__content-item {
  margin-left: 53px;
  height: 125px;
  padding: 20px 0px;
  border-top: 2px solid #e7dfd1;
}
.date__content-item:last-child {
  border-bottom: 2px solid #e7dfd1;
}

.date__item-heading {
  font-weight: 400;
  font-size: 20px;
  line-height: auto;
  color: #424242;
  letter-spacing: -0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.date__item-text {
  margin-right: 191px;
  width: 215px;
  white-space: nowrap;
}

.date__item-price span {
  color: #ac1a01;
  font-size: 22px;
}

.date__item-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.date__item-btn {
  font-weight: 500;
  font-size: 22px;
  line-height: auto;
  color: #424242;
  font-family: "Inter";
  letter-spacing: -0.03em;
  padding: 5px 7px;
  width: 40px;
  height: 38px;
  border-radius: 0 0 12px 12px;
  background: #f1eee9;
  margin-right: 8px;
  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;
}
.date__item-btn:last-child {
  margin-right: 0px;
}

.date__item-btn--active {
  color: #fff;
  background: #ac1a01;
}

.gallery {
  background: #f1eee9;
  padding-bottom: 60px;
  margin-bottom: 32px;
}

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

.gallery__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 51px;
  margin-bottom: 38px;
}

.gallery__slider-wrapper {
  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;
  width: 100%;
  max-width: 1384px;
  min-width: 300px;
  height: 288px;
}

.gallery__slider-arrow--left {
  position: absolute;
  left: -50px;
  top: 50%;
}

.gallery__slider-arrow--right {
  position: absolute;
  right: -50px;
  top: 50%;
}

.gallery__slider {
  width: 100%;
  height: 100%;
}
.gallery__slider .slick-slide {
  height: 288px !important;
}

.gallery__slide {
  margin: 0 15px;
  width: calc(33.3333333333% - 30px);
  /* 3 slides, 30px total margin */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 288px !important;
  /* Fixed height */
}

.gallery__img-wrapper {
  position: relative;
  width: 100%;
}
.gallery__img-wrapper:hover .gallery__img-overlay {
  opacity: 1;
}
.gallery__img-wrapper:hover .gallery__slide-icon {
  opacity: 1;
}

.gallery__img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 70, 80, 0.25);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.gallery__slide-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  /* Make sure the image covers the whole container */
}

.gallery__slide-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__slider-dots {
  padding: 23px 0px;
}

.gallery__slider-dots .slick-dots {
  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;
}

.gallery__slider-dots li {
  margin-right: 12px;
}

.gallery__slider-dots li:last-child {
  margin-right: 0px;
}

.gallery__slider-dots button {
  font-size: 0;
  background-color: transparent;
  height: 12px;
  width: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

.gallery__slider-dots button::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(200, 200, 200, 0.49);
  border-radius: 100%;
}

.gallery__slider-dots .slick-active button::before {
  background-color: #c6a26e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.description__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 20px;
}

.description__content {
  max-width: 1234px;
}

.description__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 133%;
  color: #424242;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.description__text:last-child {
  margin-bottom: 58px;
}

.description__text--yellow {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #c6a26e;
}

.basket {
  margin-bottom: 72px;
}

.pagination--basket {
  margin-left: 66px;
}

.basket__inner {
  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;
  padding-top: 26px;
  padding-bottom: 40px;
  background: #f1eee9;
  border-radius: 8px;
}

.basket__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 17px;
}

.basket__heading-text {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #b27214;
  letter-spacing: -0.03em;
  margin-bottom: 37px;
}

.basket__content {
  position: relative;
}

.basket__content-row {
  width: calc(100% - 32px);
  /* 100% ширины минус 2*16px */
  height: 1px;
  background-color: #dde1e7;
  position: absolute;
  left: 16px;
  right: 0;
}

.row--first {
  top: 33px;
}

.row--second {
  top: 92px;
}

.row--third {
  bottom: 22px;
}

.basket__content-wrapper {
  width: 100vw;
  max-width: 1595px;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*padding: 0 45px;*/
  padding: 0 45px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 35px;
}

.basket__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dde1e7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket__content-list li {
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  color: #424242;
  letter-spacing: -0.02em;
}
.basket__content-list li span {
  font-size: 22px;
  color: #ac1a01;
}

.basket__content-list--title li {
  font-weight: 400;
  font-size: 15px;
  line-height: auto;
  color: #c6a26e;
  padding: 10px 0px;
  letter-spacing: -0.02em;
}

.basket__content-item {
  padding: 20px 0px;
}

.basket__content-item--title {
  width: 100vw;
  max-width: 468px;
  min-width: 86px;
}

.basket__content-item--date {
  width: 100vw;
  max-width: 285px;
  min-width: 55px;
}

.basket__content-item--place {
  width: 100vw;
  max-width: 424px;
  min-width: 110px;
}

.basket__content-item--price {
  width: 100vw;
  max-width: 247px;
  min-width: 71px;
}

.basket__content-item--close {
  width: 100vw;
  max-width: 60px;
  min-width: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.basket__item-icon {
  width: 32px;
  height: 32px;
}

.basket__total {
  font-weight: 400;
  font-size: 24px;
  line-height: auto;
  color: #424242;
  letter-spacing: -0.03em;
  text-align: center;
}
.basket__total span {
  color: #ac1a01;
  font-size: 22px;
}

.form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__wrapper {
  width: 100vw;
  max-width: 800px;
  min-width: 300px;
  background: #f5e9d5;
  border-radius: 8px;
  padding: 30px 90px 52px 90px;
}

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

.form__title {
  font-weight: 400;
  font-size: 42px;
  line-height: auto;
  color: #b27214;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.form__label {
  padding: 0 30px;
  margin-bottom: 12px;
  position: relative;
}

.form__input {
  font-weight: 400;
  font-size: 22px;
  line-height: auto;
  color: #777;
  width: 619px;
  height: 62px;
  border-radius: 8px;
  padding-left: 56px;
}

.form__icon {
  position: absolute;
  top: 19px;
  left: 50px;
}

.form__textarea {
  font-weight: 400;
  font-size: 22px;
  line-height: auto;
  color: #777;
  width: 619px;
  height: 117px;
  border-radius: 8px;
  padding-top: 19px;
  padding-left: 56px;
}

.form__captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
}

.form__text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #777;
  margin-right: 25px;
}

.form__btn {
  font-weight: 600;
  font-size: 24px;
  line-height: auto;
  color: #fff;
  font-family: "Inter";
  padding: 47px 202px;
  white-space: nowrap;
  margin-bottom: 36px;
  margin-top: 6px;
  border-radius: 12px;
}

.form__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #c6a26e;
  letter-spacing: -0.02em;
  margin-bottom: 29px;
}

.form__custom-checkbox {
  font-weight: 400;
  font-size: 14px;
  line-height: auto;
  color: #898989;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.form__custom-checkbox a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.form__custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #898989;
}

.form__custom-checkbox input:checked + .checkmark {
  border: 1px solid #898989;
  padding: 2px 0px 4px 4px;
}
.form__custom-checkbox input:checked + .checkmark::before {
  content: "";
  background-color: #fff;
  background-image: url("../images/form-icons/check-icon.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
  display: inline-block;
}

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

.delivery__title {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 26px;
}

.delivery__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 167%;
  color: #b27214;
  font-family: "Inter";
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 927px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.delivery__subtitle {
  font-weight: 400;
  font-size: 32px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 59px;
}

.delivery__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery__content-item {
  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;
  max-width: 303px;
  margin-right: 100px;
}
.delivery__content-item:last-child {
  margin-right: 35px;
}

.delivery__item-title {
  font-weight: 400;
  font-size: 28px;
  line-height: auto;
  color: #2f2f2f;
  letter-spacing: -0.03em;
  margin: 16px 0px;
}

.delivery__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: auto;
  color: #424242;
  text-align: center;
  margin-bottom: 124px;
}

.delivery__card-img {
  margin-right: 0px;
  margin-bottom: 124px;
}

.delivery__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.delivery__descr div {
  display: inline-block;
  width: 4px;
  height: 60px;
  background: #c6a26e;
  margin-right: 12px;
}

.delivery__descr-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #424242;
  letter-spacing: -0.02em;
  margin-bottom: 38px;
}

.about {
  margin-bottom: 69px;
}

.about__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 167%;
  color: #333;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 26px;
  margin-bottom: 14px;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 27px;
}
.about__row p {
  max-width: 1289px !important;
}

.about__img {
  margin-right: 29px;
}

.about__text, .about__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #424242;
  letter-spacing: -0.02em;
  max-width: 1572px;
}
.about__text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

@media (max-width: 1600px) {
  .heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 13px;
  }
  .heading__content-list {
    margin-top: 15px;
  }
  .poster__item-content {
    margin-right: 0px;
  }
  .poster__img-box {
    margin-right: 40px;
  }
  .questions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0px;
  }
  .questions__content-list {
    margin-bottom: 12px;
    margin-right: 0px;
  }
  .questions__content-list:last-child {
    margin-bottom: 0px;
  }
  .reservation__phone-list {
    margin-right: 60px;
  }
  .popular__slider-arrow--prev {
    left: 37px;
    z-index: 5;
  }
  .popular__slider-arrow--next {
    right: 37px;
    z-index: 5;
  }
  .footer__head-inner {
    padding-left: 13px;
  }
  .footer__bottom-inner {
    padding-left: 13px;
  }
}
@media (max-width: 1300px) {
  .header__nav-list {
    margin-left: 0px;
    margin-right: 0px;
  }
  .poster__item-date {
    margin-left: 13px;
    margin-right: 20px;
  }
  .reservation__phone-list {
    margin-right: 0px;
  }
  .reservation__title {
    font-size: 22px;
    max-width: 243px;
    margin-right: 85px;
  }
  .footer__content-list {
    -ms-grid-rows: (1fr)[3];
    -ms-grid-columns: (1fr)[3];
        grid-template: repeat(3, 1fr)/repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .poster__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    position: relative;
    height: 300px;
    padding: 0 13px;
  }
  .poster__item-price {
    position: absolute;
    right: 15px;
    top: 45px;
  }
  .poster__btn {
    height: 50px;
    position: absolute;
    bottom: 5px;
    left: 13px;
    right: 13px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .poster__item-date {
    min-width: 53px;
    margin-left: 0px;
  }
  .poster__item-content {
    margin-top: 10px;
  }
}
@media (max-width: 1151px) {
  .header__nav {
    overflow-x: auto;
    white-space: nowrap;
  }
  .header__nav::-webkit-scrollbar {
    display: none;
  }
  .header__nav-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .calendar {
    padding: 13px 13px;
  }
  .calendar__content {
    margin-right: 30px;
    margin-left: 0px;
  }
  .calendar__arrow-left,
  .calendar__arrow-right {
    display: none;
  }
  .heading__list-item {
    margin-right: 20px;
  }
  .steps__content-list {
    -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;
  }
  .steps__content-item {
    margin-bottom: 16px;
  }
  .steps__content-item:nth-child(2) {
    margin-bottom: 32px;
  }
  .steps__btn {
    margin-bottom: 0px;
  }
  .repertoire__content-item {
    margin: 0px 13px;
  }
}
@media (max-width: 1100px) {
  .reservation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .reservation__content-heading {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  .reservation__btn-box {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 33px;
  }
  .reservation__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reservation__title {
    margin: 0px;
  }
  .footer__head-inner {
    -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;
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer__content-list {
    -ms-grid-rows: 1fr 31px 1fr 31px 1fr 31px 1fr;
    -ms-grid-columns: 1fr 52px 1fr;
        grid-template: repeat(4, 1fr)/repeat(2, 1fr);
    row-gap: 31px;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
  }
  .footer__head-phone {
    margin-right: 0px;
    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;
    margin-bottom: 51px;
  }
  .footer__phone-list,
  .footer__phone-number {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__head-content {
    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;
  }
  .footer {
    background: url("../images/responsive-images/footer-bg.jpg");
    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;
  }
  .footer__bottom-inner {
    -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;
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer__bottom-contacts {
    margin-right: 0px;
    margin-bottom: 64px;
    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;
  }
  .footer__contacts-list {
    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;
  }
  .footer__bottom-cards {
    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;
  }
  .repertoire__content {
    -ms-grid-rows: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    -ms-grid-columns: (1fr)[2];
        grid-template: repeat(6, 1fr)/repeat(2, 1fr);
    row-gap: 30px;
  }
  .repertoire__content-item .popular__btn-box {
    width: 100%;
  }
  .header__main--pfnd {
    background: url("../images/responsive-images/pfnd-bg.jpg") no-repeat;
    background-size: cover;
  }
}
@media (max-width: 850px) {
  .header__top-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .header__top-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .header__phone-info {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .header__top-basket {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 15px;
    margin-right: 0px;
  }
  .header__basket-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__basket-item {
    margin-right: 13px;
  }
  .header__basket-item:last-child {
    margin-right: 0px;
  }
  .basket__row {
    height: 40px;
  }
  .calendar {
    border-radius: 0px;
  }
  .calendar__content {
    margin-right: 0px;
  }
  .calendar__content ul {
    overflow-x: auto;
    white-space: nowrap;
  }
  .calendar__content ul::-webkit-scrollbar {
    display: none;
  }
  .calendar__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 23px;
  }
  .poster .container {
    padding: 0px;
  }
  .calendar__date-list {
    margin: 0;
  }
  .heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .test {
    overflow-x: auto;
    white-space: nowrap;
  }
  .heading__content-list {
    max-width: 100%;
    /* Ограничиваем ширину контейнера */
    overflow-x: auto;
    /* Горизонтальный скролл */
    white-space: nowrap;
    /* Предотвращение переноса элементов на новую строку */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    /* Выравнивание элементов по началу */
  }
  .heading__content-list::-webkit-scrollbar {
    display: none;
  }
  .heading__list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    /* Предотвращение изменения размеров элементов */
  }
  .questions__title {
    font-size: 22px;
  }
  .questions__content-item {
    width: 351px;
    padding: 15px 35px 15px 20px;
  }
  .questions__list-link {
    top: 13px;
    right: 15px;
  }
  .questions__list-title {
    font-size: 16px;
  }
  .questions__list-text {
    font-size: 12px;
  }
  .popular__title {
    font-size: 22px;
  }
  .popular__list-title {
    font-size: 22px;
  }
  .popular__img {
    height: 230px;
  }
  .repertoire__content-item {
    width: 357px;
    height: 474px;
  }
  .repertoire__content {
    -ms-grid-rows: (1fr)[12];
    -ms-grid-columns: (1fr)[1];
        grid-template: repeat(12, 1fr)/repeat(1, 1fr);
  }
  .poster__scheme {
    margin: 0 13px;
  }
  .date .container {
    padding: 0px;
  }
  .date__content-title {
    margin-left: 0px;
    text-align: center;
  }
  .date__content-item {
    margin-left: 13px;
  }
  .pagination--basket {
    margin-left: 13px;
  }
  .basket__content-list li {
    font-size: 15px;
  }
  .basket__content-list li span {
    font-size: 15px;
  }
  .basket__content-list--title .basket__content-item--close {
    opacity: 0;
  }
  .basket__content-item--close {
    max-width: 30px;
  }
  .basket__content-item--price {
    max-width: 86px;
  }
  .basket__item-icon {
    width: 12px;
    height: 12px;
  }
  .basket__title {
    font-size: 25px;
  }
  .basket__heading-text {
    font-size: 18px;
  }
  .basket__total {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 13px;
    padding-right: 29px;
    font-size: 15px;
    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;
    width: 100%;
  }
  .basket__total span {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .form__title {
    white-space: nowrap;
    font-size: 24px;
  }
  .form__input {
    font-size: 18px;
  }
  .form__text,
  .form__descr {
    font-size: 14px;
  }
  .form__custom-checkbox {
    font-size: 12px;
  }
  .form__wrapper {
    width: 359px;
  }
  .form__input,
  .form__textarea,
  .form__captcha,
  .form__custom-checkbox {
    width: 329px;
  }
  .form__btn {
    padding: 30px 57px;
  }
  .form__descr {
    width: 329px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .header__main {
    background: url("../images/responsive-images/home-bg.jpg") no-repeat;
  }
  .header__main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1296px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(23.5%, rgba(49, 31, 31, 0.85)), color-stop(99.99%, rgba(49, 31, 31, 0.58)), to(rgba(217, 217, 217, 0)));
    background: linear-gradient(90deg, rgba(49, 31, 31, 0.85) 23.5%, rgba(49, 31, 31, 0.58) 99.99%, rgba(217, 217, 217, 0) 100%);
    pointer-events: none;
    z-index: -1;
  }
  .header__main--repertoire {
    background: url("../images/responsive-images/repertoire-bg.jpg") no-repeat;
    background-size: cover;
  }
  .header__main--pfnd {
    background: url("../images/responsive-images/pfnd-bg-mini.jpg") no-repeat;
    background-size: cover;
  }
  .header__main--pfnd .header__main-title {
    font-size: 22px;
  }
  .header__main--pf {
    background: url("../images/responsive-images/pf-bg.jpg") no-repeat;
    background-size: cover;
  }
  .header__main--pf .header__main-title {
    font-size: 22px;
  }
  .header__top-img {
    width: 129px;
    height: 48px;
  }
  .header__phone-text {
    font-size: 10px;
  }
  .header__phone-img {
    width: 20px;
    height: 20px;
  }
  .header__phone-number {
    font-size: 18px;
    margin-right: -5px;
  }
  .header__basket-img {
    width: 24px;
    height: 24px;
  }
  .basket__row {
    height: 26px;
  }
  .header__basket-text {
    font-size: 14px;
  }
  .header__nav-list {
    margin-top: 8px;
    margin-bottom: 15px;
  }
  .header__nav-item--active {
    position: relative;
  }
  .header__nav-item--active::before {
    bottom: -21px;
  }
  .header__main-subtitle {
    font-size: 24px;
    margin-right: 16px;
  }
  .header__main-icon {
    width: 61px;
    height: 22px;
    margin-right: 20px;
  }
  .header__main-title {
    font-size: 36px;
  }
  .header__main-text {
    font-size: 10px;
  }
  .header__content-text {
    font-size: 16px;
  }
  .calendar {
    margin-top: 0px;
  }
  .header__main-content {
    padding: 13px 0px 24px 12px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .heading__img-box {
    width: 64px;
    height: 36px;
  }
  .heading__title {
    font-size: 20px;
  }
  .heading__list-icon {
    width: 24px;
    height: 24px;
  }
  .heading__list-text {
    margin-left: 8px;
  }
  .popular__slider-arrow--prev {
    top: 42%;
    z-index: 5;
  }
  .popular__slider-arrow--next {
    top: 42%;
    z-index: 5;
  }
  .header__pagination-link {
    font-size: 10px;
  }
  .date__item-text {
    font-size: 14px;
    margin-right: 20px;
    width: 151px;
  }
  .date__item-price {
    font-size: 14px;
  }
  .date__item-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 2px;
  }
  .basket__content-list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .basket__content-list li {
    font-size: 12px;
  }
  .basket__content-list li span {
    font-size: 12px;
  }
  .basket__content-list--title li {
    font-size: 10px;
  }
  .basket__heading-text {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .poster__content-item {
    height: 261px;
  }
  .poster__item-date {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .poster__date-title {
    font-size: 40px;
  }
  .poster__date-month,
  .poster__date-time,
  .poster__descr-text {
    font-size: 12px;
  }
  .poster__item-price {
    font-size: 18px;
  }
  .poster__descr-title {
    font-size: 24px;
  }
  .poster__icon-text {
    font-size: 16px;
  }
  .poster__img {
    display: none;
  }
  .poster__img--mobile {
    display: block;
  }
  .steps__title {
    font-size: 22px;
  }
  .steps__subtitle {
    font-size: 18px;
  }
  .reservation__img {
    width: 90px;
    height: 86px;
  }
  .reservation__title {
    font-size: 20px;
  }
  .footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .footer__head {
    margin-left: 1px;
  }
  .footer__head-inner,
  .footer__head-phone,
  .footer__phone-list,
  .footer__head-content,
  .footer__bottom-inner,
  .footer__bottom-contacts,
  .footer__contacts-list,
  .footer__bottom-cards {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .footer__phone-number {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__item-link {
    font-size: 16px;
  }
  .heading__text {
    font-size: 10px;
  }
  .poster__scheme-wrapper {
    background: url("../images/responsive-images/second-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .scheme__btn {
    font-size: 12px;
  }
  .slide__wrapper {
    margin: 16px;
    margin-bottom: 18px;
    -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;
  }
  .popular__btn {
    min-width: 297px;
    max-width: 315px;
  }
  .basket__content-wrapper {
    padding: 0px 24px;
  }
  .basket__content-item--place {
    max-width: 110px;
  }
}
@media (max-width: 395px) {
  .popular__btn {
    width: 297px;
  }
  .row--second {
    top: 75px;
  }
  .basket .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .basket__content-item--close {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}





/* ********************************************************** */


.calendar__heading-item:first-child {
  color: inherit;
  background: transparent;
  padding: 0 4px;
  margin-left: 0px;
}
.calendar__heading-item.active {
  color: #fff;
  background: #c6a26e;
}
.calendar__heading-item:hover {
  color: #fff;
  background: #c6a26e;
}



.calendar__date.no {
  opacity: 0.5;
}
.calendar__date.no a{
  cursor: text;
}
.calendar__date p:nth-child(2n), .calendar__date div:nth-child(2n){
  font-weight: 400;
  font-size: 12px;
  line-height: auto;
  color: #424242;
  margin-top: 5px;
}


.poster__img-nums {
  border-radius: 36px;
  padding: 4px 9px;
  background: #b27214;
  position: absolute;
  top: 8px;
  left: 8px;
  display: none;
}


.poster__item-descr {
  /*min-width: 412px;*/
  min-width: 350px;
  max-width: 412px;
}


.date__item-btn--active, .date__item-btn.selected {
  color: #fff;
  background: #ac1a01;
}


@media (max-width: 1200px) {
  .poster__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    position: relative;
    /*height: 300px;*/
    height: 330px;
    padding: 0 13px;
  }
  .poster__item-price {
    position: absolute;
    right: 15px;
    top: 45px;
  }
  .poster__btn {
    height: 50px;
    position: absolute;
    bottom: 5px;
    left: 13px;
    right: 13px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .poster__item-date {
    min-width: 53px;
    margin-left: 0px;
  }
  .poster__item-content {
    margin-top: 10px;
  }
  .poster__item-descr {
  max-width: 95%;
  }
}

@media (max-width: 500px) {
  .poster__content-item {
    height: auto;
  }
}





.poster__date-title p, .poster__date-month p, .poster__date-time p {
	text-transform: uppercase;
}

.w192 {
	background-size: cover;
	background-position: center;
}














