@font-face {
  font-family: "Vela Sans";
  src: url("../fonts/velasans-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Druk Wide Cy Web Bold Regular";
  src: url("../fonts/druk-wide.ttf") format("truetype");
}

@media (min-width: 1300px) {
  .container {
    width: 1196px;
  }
}

body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Vela Sans";
  font-weight: 500;
  color: #fff;
  background-color: #0e0e0e;
  user-select: none;
}

h1,
h2,
h3 {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-weight: 700;
}

h1 {
  font-size: 48px;
  margin-bottom: 25px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 18px;
}

:hover {
  transition-duration: 0.3s;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.callBackVoid:hover {
  cursor: pointer;
}

.modalMain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}

.modalMain__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modalMain__inner {
  position: absolute;
  width: 450px;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(/img/modal.jpg);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1005;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modalMain__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-family: "Druk Wide Cy Web Bold Regular";
}

.modalMain__sub {
  color: #9d9d9d;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.modalMain__right {
  color: #787878;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.modalMain__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-btn {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.modalMain__input {
  width: 100%;
  border-radius: 15px;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #0e0e0e;
  padding: 15px;
  outline-style: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #0e0e0e;
}

.modalMain__input::placeholder {
  color: #787878;
}

.modal-close {
  position: absolute;
  right: -25px;
  top: -25px;
  cursor: pointer;
}

.modal-close span {
  content: url(/img/close.svg);
}

.modal-close:hover span {
  content: url(/img/close-r.svg);
}

.modalMain__button {
  text-align: center;
}

@media (max-width: 768px) {
  .modalMain__inner {
    width: 98%;
  }
}

.modalYesright {
  color: #fff;
}

.modalYesright a {
  color: #fff;
}

.modalMain__btn {
  background-color: #fc6701;
  padding: 8px;
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  outline-style: none;
  font-weight: 600;
  color: #fff;
}

.modalMain__btn:hover {
  background-color: #be4f03;
  color: #fff;
}

.stick-menu {
  display: none;
  text-align: center;
}

.is-sticky .line-top__inner {
  background-color: #1b1b1b;
}

.stickMenu__list {
  display: flex;
  justify-content: space-around;
}

.line-top {
  display: none;
  z-index: 1001;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .line-top {
    display: block;
  }
}

.line-top__inner {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-top__logo img,
.mobile-menu__logo img {
  height: 49px;
}

.mobile-menu__logo {
  border-right: 1px solid #ff7b8e;
  padding-right: 10px;
}

.line-top__fl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.line-top__phone {
  text-align: left;
}

.line-top__phone-link {
  color: #000;
  text-decoration: none;
}

.line-top__icon {
  border-radius: 15px;
  background: #ffed1f;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
}

.line-top__icon:hover {
  background: #fff474;
}

.shapka__logo-img {
  width: 100px;
}

.mobile-menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;

  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu__inner {
  padding: 20px 28px;
  position: relative;
  border-radius: 0px 20px 20px 0px;
  background: #ff1a3b;
  width: 320px;
  height: 100%;
}

.mobile-menu__line-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ff7b8e;
}

.mobile-menu__closed {
  position: absolute;
  top: 20px;
  right: -25px;
}

.mobile-menu__menu {
  margin: 16px 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.mobile-menu__item {
  padding: 18px 0;
  border-bottom: 1px solid #ff7b8e;
}

.mobile-menu__item a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
}

.mobile-menu__item a:hover {
  color: v #ffed1f;
}

.mobile-menu__phone {
  margin: 16px 0;
  color: #000;
}

.mobile-menu__phone-text {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875em;
}

.mobile-menu__phone-list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.mobile-menu__phone-item {
  padding: 8px 0;
}

.mobile-menu__phone-link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-mobile {
  margin: 8px 0;
}

.category-mobile select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
}

.sticky {
  position: fixed;
}

.line-top__callback {
  background-color: #000;
  color: #ffffff;
  border: none;
  margin-top: 4px;
  text-transform: lowercase;
  padding: 4px 8px;
}

.modal-exit {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  top: 0;
  left: 0;
}

.modal-exit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 350px;
  background-color: #ffffff;
  box-shadow: 0 0 8px #666666;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-exit__inner {
    width: 98%;
  }
}

.modal-exit__header {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ------- */

.red-btn a {
  border-radius: 15px;
  background: #ff1a3b;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.red-btn a:hover {
  box-shadow: 2px 2px 0px 0px #0e0e0e;
}

.yell-btn a {
  border-radius: 15px;
  border: 1px solid #0e0e0e;
  background: #ffed1f;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.yell-btn a:hover {
  background: #0e0e0e;
  color: #fff;
}

.yell-btn__nobg a {
  border-radius: 15px;
  border: 1px solid #0e0e0e;
  background: inherit;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.yell-btn__nobg a:hover {
  background: #0e0e0e;
  color: #ffed1f;
}

.yell-btn__nobg a:active {
  border-color: #ff1a3b;
  color: #ff1a3b;
  background-color: inherit;
}

/* ------- */
.mb2 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb3 {
  margin-bottom: 30px;
}

.mb7 {
  margin-bottom: 70px;
}

.shapka {
  border-radius: 0px 0px 20px 20px;
  background-color: #161616;
  /* min-height: 700px; */
  width: 100%;
  padding-top: 131px;
}

.shapka-menu {
  padding: 10px 0;
  border-bottom: 1px solid #494949;
}

.shapka-stick {
  width: 100%;
  margin: 0 auto;
  /* max-width: 1920px; */
  z-index: 900;
  position: fixed;
  top: 0;
  left: 0;
  /* background-color: #0e0e0e; */
  transition-duration: 0.3s;
}

.shapka-stick__scroll {
  background-color: #1b1b1b;
}

.shapka-menu__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.shapka-menu__inner a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
}

.shapka-menu__inner a:hover {
  color: #ffed1f;
}

.shapka-menu__dot {
  content: " ";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #494949;
}

.shapka-info {
  padding: 20px;
}

.shapka-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shapka-info__left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.shapka-logo {
  padding-right: 20px;
  border-right: 1px solid #494949;
}

.shapka-phone a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.shapka-phone a:hover {
  color: #ffed1f;
}

.shapka-place {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
}

.shapka-info__right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.taxi-btn a {
  border-radius: 15px;
  background: #ffed1f;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.taxi-btn a:hover {
  background: #ff1a3b;
  color: #fff;
}

.taxi-btn a:active {
  background: #ffed1f;
  color: #ff1a3b;
}

.taxi-btn span {
  content: url(/img/taxi.svg);
  width: 15px;
}

.taxi-btn:hover span {
  content: url(/img/taxi-w.svg);
  transition-duration: 0.3s;
}

.taxi-btn a:active span {
  content: url(/img/taxi-r.svg);
  transition-duration: 0.3s;
}

.red-yell a {
  border-radius: 15px;
  background: #ff1a3b;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
  text-align: center;
}

.red-yell a:hover {
  background: #ffed1f;
  color: #0e0e0e;
}

.red-yell a:active {
  background: #ff1a3b;
  color: #ffed1f;
}

.shapka__inner {
  padding: 140px 0 140px;
  background-position: right 30px bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.shapka__banket {
  background-image: url(/img/slide.png);
}

.shapka__karaoke {
  background-image: url(/img/karaoke.png);
  background-size: auto 100%;
}

.slide-title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: normal;
  color: #ffed1f;
}

.slide-title a {
  color: #fff;
}

.slide-title span {
  color: #fff;
}

.slide-text {
  width: 510px;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.gen-title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.why-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.why-sub {
  color: #9d9d9d;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.why-left__title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.why-left_grig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 276px;
  grid-gap: 20px;
}

.why-left__item {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 25px;
  transition-duration: 0.3s;
  background-color: #ff1a3b;
}

.why-left__item1 {
  background-image: url(/img/why/1.jpg);
}

.why-left__item2 {
  background-image: url(/img/why/2.jpg);
}

.why-left__item4 {
  background-image: url(/img/why/4.jpg);
}

.why-left__item1:hover,
.why-left__item2:hover {
  transform: translateY(10px);
  transition-duration: 0.3s;
}

.why-left__item3 {
  background-image: url(/img/why/3.jpg);
  padding: 30px;
}

.why-left__item3--anim {
  animation-name: rotate-baba;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.why-left__item5 {
  background-image: url(/img/why/5.jpg);
  background-position: right bottom;
}

.why-left__item6 {
  background-image: url(/img/why/6.jpg);
  background-position: right bottom;
}

.why-left__item7 {
  background-image: url(/img/why/7.jpg);
  background-position: right bottom;
}

.black {
  color: #0e0e0e;
}

.avtor__inner {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 50px;
  background-image: url(/img/avtor.jpg);
  min-height: 550px;
}

.avtor__serega {
  background-image: url(/img/serega.jpg);
}

.avtor-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avtor-sub {
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 10px 0;
}

.bar-card__inner {
  min-height: 570px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar-card__img {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.bar-card__info {
  width: 535px;
  max-width: 100%;
}

.bar-card-sub {
  color: #9d9d9d;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 10px 0;
}

.shema {
  background-image: url(/img/shema.jpg);
  border-radius: 20px;
  padding: 36px 0 140px;
  background-size: cover;
  background-position: center;
  max-width: 1366px;
  margin: 0 auto;
}

.forma__inner {
  background-image: url(/img/form.jpg);
  padding: 40px 0;
  border-radius: 20px;
  margin-top: -100px;
  background-size: cover;
}

.shema__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.shema-gal {
  padding: 30px 40px 0 0;
}

.shema-right {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.shema-plan {
  position: relative;
}

.shema-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.shema-plan img {
  width: 100%;
  border-radius: 20px;
}

.plus-y__btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffed1f;
  border-radius: 50%;
}

.plus-y__btn span {
  content: url(/img/plus.svg);
  transition-duration: 0.3s;
}

.plus-y__btn a {
  height: 21px;
  display: block;
}

.plus-y__btn:hover span {
  content: url(/img/plus-w.svg);
}

.plus-y__btn:hover {
  background-color: #ff1a3b;
}

.forma__inner {
  text-align: center;
}

.form-sub {
  margin: 10px 0 20px;
}

.form-right {
  color: #9b911a;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.form-col {
  width: 100%;
}

.forma__info {
  width: 714px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.formMain__input {
  border-radius: 15px;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #0e0e0e;
  padding: 15px;
  width: 100%;
  border: none;
  outline-style: none;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
}

input[type="date"] {
  max-height: 50px;
}

.formMain__input::placeholder {
  color: #787878;
}

.formMain__input:focus {
  box-shadow: 2px 2px 0px 0px #ff1a3b;
}

.form-btn a {
  border-radius: 15px;
  background: #ff1a3b;
  color: #fff;
  padding: 15px;
  display: block;
  white-space: nowrap;
  cursor: pointer;
}

.form-btn a:hover {
  box-shadow: 2px 2px 0px 0px #0e0e0e;
}

.gallery__inner {
  padding: 70px 0;
  text-align: center;
}

.gallery-info {
  width: 555px;
  max-width: 100%;
  margin: 0 auto 25px;
}

.gallery-info .gen-title span {
  color: #ffed1f;
}

.gallery-sub {
  margin-top: 10px;
  color: var(--desc-color-text, #9d9d9d);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.gal-map {
  background-image: url(/img/gal-map.png);
  background-position: center top;
  background-repeat: no-repeat;
}

.gallery-photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.gallery-photo__item img {
  border-radius: 20px;
  width: 100%;
}

.gallery-photo__item3 {
  animation-name: rotate-right;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.gallery-photo__item2 {
  animation-name: rotate-left;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.shema,
.forma {
  position: relative;
}

.shema-bg {
  position: absolute;
  background-image: url(/img/title-bg.png);
  background-size: contain;
  background-position: left 75px top;
  background-repeat: no-repeat;
  width: 60%;
  height: 338px;
  z-index: 100;
}

.shema__title {
  position: relative;
  color: #0e0e0e;
  z-index: 101;
  padding-top: 23px;
  width: 420px;
  max-width: 100%;
}

.shema-text {
  margin-top: 10px;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.shema-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding-right: 55px;
}

.shema-gal__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Druk Wide Cy Web Bold Regular";
  margin-bottom: 20px;
}

.shema-gal__item img {
  border-radius: 15px;
}

.shema-gal__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.shema-gal {
  position: relative;
  z-index: 102;
  width: 516px !important;
  max-width: 100%;
}

.shema-gal__item a:hover:after {
  content: url(/img/gal.svg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 26, 59, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.shema-right {
  position: relative;
}

.compensate-for-scrollbar {
  margin: auto !important;
}

.shema-gal__slider {
  position: relative;
}

.slider-right {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff1a3b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
}

.slider-right span {
  content: url(/img/right.svg);
  margin-left: 2px;
}

.slider-right:hover {
  background-color: #ffed1f;
}

.slider-right:hover span {
  content: url(/img/right-b.svg);
}

.slider-right:active {
  background-color: #ff1a3b;
}

.slider-right:active span {
  content: url(/img/right-y.svg);
}

.slider-left {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff1a3b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
}

.slider-left span {
  content: url(/img/left.svg);
  margin-right: 2px;
}

.slider-left:hover {
  background-color: #ffed1f;
}

.slider-left:hover span {
  content: url(/img/left-b.svg);
}

.slider-left:active {
  background-color: #ff1a3b;
}

.slider-left:active span {
  content: url(/img/left-y.svg);
}

.map-inner img {
  width: 100%;
  border-radius: 20px;
}

#mapS,
#map {
  border-radius: 20px;
  overflow: hidden;
}

.footer__inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #787878;
}

.footer-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-btns,
.footer-soc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 15px;
  gap: 10px;
  border-radius: 15px;
  background: #1e1e1e;
  color: #fff;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset;
}

.footer-btn a:hover {
  background: #404040;
}

.footer-btn a:active {
  background: #1e1e1e;
  color: #ffed1f;
}

.footer-taxi span {
  content: url(/img/taxi-y.svg);
  width: 15px;
}

.footer-logo {
  padding-right: 20px;
  border-right: 1px solid #333333;
}

.footer-soc__item a {
  width: 47px;
  height: 47px;
  border-radius: 15px;
  border: 1px solid #646464;
  display: flex;
  justify-content: center;
  align-items: center;
}

.soc-vk span {
  content: url(/img/tg.svg);
}

.soc-tg span {
  content: url(/img/vk.svg);
}

.footer-soc__item a:hover {
  background-color: #646464;
}

.soc-vk a:hover span {
  content: url(/img/tg-b.svg);
}

.soc-tg a:hover span {
  content: url(/img/vk-b.svg);
}

.footer-soc__item a:focus {
  background-color: inherit;
  border-color: #ffed1f;
}

.soc-vk a:focus span {
  content: url(/img/telegram.svg);
}

.soc-tg a:focus span {
  content: url(/img/vk-y.svg);
}

.soc-wa a:focus span {
  content: url(/img/whatsup.svg);
}

.mobl {
  display: none;
}

@keyframes rotate-baba {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1.5deg);
  }
}

@keyframes rotate-right {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-3deg);
  }
}

@keyframes rotate-left {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(2deg);
  }
}

.sticky .line-top__inner {
  background-color: #0e0e0e;
  transition-duration: 0.3s;
}

.shapka-soc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.shapka-soc__item a {
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #ffed1f;
}

.shapka-soc__item a:hover {
  background-color: #ffed1f;
}

.shapka-soc__item a:hover img {
  filter: brightness(0);
}

.shapka-soc__item a:active {
  background-color: #1b1b1b;
}

.shapka-soc__item a:active img {
  filter: none;
}

.shapka-gen {
  background-color: #0e0e0e;
}

.shapka__inner-gen {
  min-height: 580px;
  background-image: url(/img/slide-gen.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}

.shapka__inner-card {
  background-image: url(/img/card.png);
}

.fl-title {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grey-btn a {
  border-radius: 15px;
  border: 1px solid #646464;
  padding: 15px;
  color: #646464;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.grey-btn a:hover {
  color: #0e0e0e;
  background: #ffed1f;
  border-color: #ffed1f;
}

.grey-btn a:active {
  background: inherit;
  color: #ffed1f;
}

.afisha-slider {
  position: relative;
}

.owl-carouselAfisha img {
  border-radius: 20px;
}

.yslider-right {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffed1f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
}

.yslider-right span {
  content: url(/img/right-b.svg);
  margin-left: 2px;
}

.yslider-right:hover {
  background-color: #ff1a3b;
}

.yslider-right:hover span {
  content: url(/img/right.svg);
}

.yslider-right:active {
  background-color: #ffed1f;
}

.yslider-right:active span {
  content: url(/img/right-r.svg);
}

.yslider-left {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffed1f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
}

.yslider-left span {
  content: url(/img/left-b.svg);
  margin-right: 2px;
}

.yslider-left:hover {
  background-color: #ff1a3b;
}

.yslider-left:hover span {
  content: url(/img/left.svg);
}

.yslider-left:active {
  background-color: #ffed1f;
}

.yslider-left:active span {
  content: url(/img/left-r.svg);
}

.koncert__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-bottom: 70px;
  border-bottom: 1px solid #323232;
}

.koncert__left {
  transform: rotate(-2deg);
  padding: 20px;
  width: 100%;
  background-image: url(/img/koncert.png);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  background-color: #ffed1f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  color: #0e0e0e;
}

.koncert__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.koncert__bot {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
}

.koncert__bot a {
  width: 100%;
  display: block;
  text-align: center;
}

.koncert__bot div {
  width: 100%;
}

.koncert__title {
  margin-bottom: 10px;
  line-height: 120%;
}

.koncert__title span {
  color: #ff1a3b;
}

.koncert__date {
  border-radius: 50px;
  border: 1px solid #0e0e0e;
  padding: 15px 20px;
  color: #0e0e0e;
}

.koncert__week {
  border-radius: 50px;
  border: 1px solid #ff1a3b;
  padding: 15px 20px;
  color: #ff1a3b;
}

.koncert__img {
  width: 100%;
}

.koncert__img img {
  width: 100%;
  border-radius: 20px;
}

.akcii-bg {
  border-radius: 20px;
  background-color: #ffed1f;
  padding: 40px 50px;
  background-image: url(/img/akcii-bg.jpg);
  background-size: cover;
}

.akcii-slider {
  position: relative;
}

.owl-carouselAkcii img {
  border-radius: 20px;
  width: 280px !important;
  height: 280px !important;
}

.vakant__inner {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  gap: 88px;
}

.vakant__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.vakant-hr {
  height: 100%;
  width: 1px;
  content: " ";
  background: #323232;
  min-height: 180px;
}

.vakant__img {
  min-width: 180px;
}

.vakant__img img {
  border-radius: 20px;
  width: 100%;
}

.vakant__title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.vakant__text {
  color: #787878;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.vakant__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.vakant__zp {
  color: #ffed1f;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid #ffed1f;
  border-radius: 50px;
  padding: 15px 20px;
  white-space: nowrap;
}

.footer-bord {
  border-top: 1px solid #323232;
}

.bread {
  margin-bottom: 10px;
}

.bread__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bread__list a {
  color: #fff;
}

.bread__board {
  border-top: 1px solid #323232;
  padding-top: 30px;
}

.bread__list li::after {
  content: url(/img/bread.svg);
  margin-left: 10px;
  height: 100%;
  vertical-align: middle;
}

.bread__list li:last-child:after {
  content: none;
  height: 100%;
  vertical-align: middle;
}

.afisha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 22px;
}

.afisha-grid img {
  width: 100%;
  border-radius: 20px;
}

.afisha-stat {
  margin: 32px 0 30px;
}

.afisha__item-in-info {
  border-radius: 20px;
  background: #161616;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.afisha__item-in {
  display: flex;
  gap: 25px;
}

.afisha__item-in-img {
  min-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.afisha__item-in-img img {
  width: 100%;
  border-radius: 20px;
}

.afisha__item-in-img a {
  display: block;
  width: 100%;
  text-align: center;
}

.afisha__item-in__sub {
  color: #ffed1f;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Druk Wide Cy Web Bold Regular";
}

.afisha__item-in-info h1 {
  margin: 0;
}

.afisha__item-in__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 15px;
}

.afisha__item-in__text p {
  margin-bottom: 15px;
}

.btn-bonus {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.bonus-plashka {
  color: #ffed1f;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  padding: 15px;
  border-radius: 15px;
  background: #0e0e0e;
  transform: rotate(-3deg);
  margin-left: -5px;
  bottom: 3px;
  position: relative;
}

.big-title {
  font-size: 89px;
}

.level__inner {
  background-image: url(/img/type.jpg);
  background-size: cover;
  background-position: center;
  padding: 46px;
  text-align: center;
  border-radius: 20px;
  background-color: #ffed1f;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  color: #0e0e0e;
}

.type-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.type-numb {
  width: 185px;
  height: 150px;
  border-radius: 20px;
  background: #ff1a3b;
  color: #fff;
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.type__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.type-title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.type-price {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.level-sub {
  color: #9b911a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.type__item1 .type-numb {
  transform: rotate(-3deg);
}

.type__item3 .type-numb {
  transform: rotate(3deg);
}

.mb0 {
  margin: 0;
}

.howuse-sub {
  margin-top: 10px;
  color: #9d9d9d;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.howuse-numb span {
  display: flex;
  width: 105px;
  height: 105px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #ffed1f;
  color: #0e0e0e;
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 10;
}

.howuse-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.howuse__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.howuse-info {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 20px;
  background: #ff1a3b;
  transform: rotate(-3deg);
  padding: 25px;
  position: relative;
  z-index: 8;
  left: -5px;
  bottom: 5px;
}

.vakant__all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px 60px;
}

.vakant__all .vakant__item {
  border-right: 1px solid #323232;
  padding-right: 60px;
}

.content__inner {
  margin-bottom: 30px;
}

.rub:after {
  content: "₽";
}

.vakant-zp__fl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.vakant-zp__bord {
  border-bottom: 1px solid #323232;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.white {
  color: #fff;
}

.vakant-in__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gold-list {
  list-style-image: url(/img/list.svg);
  margin: 0;
  padding: 0;
  padding-inline-start: 15px;
}

.gold-list li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.vakant-in__text p {
  margin-bottom: 0;
}

.gold {
  color: #ffed1f;
}

.kontakty-info {
  margin-bottom: 25px;
}

.kontakty-info__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid #323232;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.kontakty-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 18px;
  font-weight: 700;
}

.kontakty-info__item a {
  color: #fff;
}

.kontakty-info__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid #323232;
  padding-bottom: 20px;
}

.kontakty-info__gritem {
  color: #787878;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.kontakty-info__gritem a {
  color: #787878;
}

.uslovia__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.uslovia__text p {
  margin-bottom: 0;
}

.content__inner {
  min-height: calc(100vh - 282px);
}

.noboard a {
  border: none;
}

.open-plan {
  cursor: pointer;
}

.afisha-slider__item {
  margin-bottom: 12px;
  transition-duration: 0.3s;
}

.afisha-slider__item:hover {
  transform: translateY(10px);
  transition-duration: 0.3s;
}

.star-title span {
  color: #ffed1f;
}

.star-title span:after {
  content: url(/img/star.svg);
  margin-left: 19px;
}

.menu-block__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
}

.koncert-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0 30px;
}

.koncert__item {
  background: #ffed1f
    url(/img/pattern.png) 50% 50%
    repeat-y;
  padding: 8px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  color: #171717;
}

.koncert__img {
  width: 100%;
  border-radius: 20px;
}

.koncert__title {
  font-weight: 600;
  font-size: 16px;
}

.koncert-btn a {
  background-color: #171717;
  display: block;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}

.koncert-btn a:hover {
  background-color: #ff1a3b;
}



@media (min-width: 769px) {
  .menu-block__top .menu-block__middle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .menu-block__top .underline {
    display: none;
  }

  .menu-block__middle .underline {
    display: block !important;
  }

  .menu-block__top {
    display: flex;
    flex-wrap: wrap;
  }

  .menu-block__top div {
    width: 100%;
  }
}

.menu-block__img {
  text-align: right;
  padding-right: 8px;
}

.menu-block__title {
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "Druk Wide Cy Web Bold Regular";
}

.menu-block__title span {
  font-size: 14px;
  font-weight: 500;
  font-family: "Vela Sans";
}

.gren {
  background: #4bc34b;
  color: #fff;
}

.yell {
  background: #ffed1f;
  color: #0e0e0e;
}

.redd {
  background: #ff1a3b;
  color: #fff;
}

.menu-det {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .menu-block__middle {
    display: none;
  }
}

.menu-det__inner {
  margin-top: 20px;
}

.menu-sum {
  border-radius: 10px;
  background: #1b1b1b;
  font-size: 18px;
  color: #fff;
  padding: 10px 60px 10px 25px;
  font-family: "Druk Wide Cy Web Bold Regular";
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "+";
  display: flex;
  width: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ffed1f;
  background: #ffed1f;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Vela Sans";
  transition-duration: 0.3s;
}

details[open] .menu-sum:after {
  content: "-";
  background: inherit;
  color: #ffed1f;
  transition-duration: 0.3s;
}

details .menu-sum:hover:after {
  border: 1px solid #ff1a3b;
  background: #ff1a3b;
  color: #fff;
  transition-duration: 0.3s;
}

.details[open] .menu-sum:hover:after {
  border: 1px solid #ffed1f !important;
  background: #1b1b1b !important;
  transition-duration: 0.3s;
}

.menu-det__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-collapse: collapse;
  gap: 1px;
  margin-bottom: 1px;
}

.menu-det__item {
  min-height: 60px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px 25px;
  align-items: center;
  outline: 1px solid #323232;
}

.menu-det__item:first-child {
  margin-right: 20px;
  align-items: flex-start;
  padding-right: 10px;
}

.menu-det__item span {
  color: #ffed1f;
}

.underline span {
  text-decoration: underline;
}

.gallery-photo-all {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-photo-all img {
  width: 100%;
}

@media (max-width: 1200px) {
  .shema-bg {
    background-position: left 22px top;
  }

  .shema__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #Shema > div:nth-of-type(1) {
    order: 1;
  }
  #Shema > div:nth-of-type(2) {
    order: 3;
  }
  #Shema > div:nth-of-type(3) {
    order: 2;
  }

  .shema-right {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .shema-gal {
    width: 970px !important;
  }

  .afisha-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vakant__inner {
    gap: 30px;
  }

  .vakant__all {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 992px) {
  .shapka-menu,
  .shapka-info {
    display: none;
  }

  .why-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-left__item3 {
    min-height: 490px;
  }

  .bar-card__img {
    display: none;
  }

  .bar-card__info .gen-title span {
    color: #ff1a3b;
  }

  .bar-card__info {
    text-align: center;
    width: 100%;
  }

  .bar-card-sub {
    font-size: 13px;
  }

  .bar-card__inner {
    background-image: url(/img/bar-card.png);
    background-position: bottom center;
    padding-bottom: 550px;
    padding-top: 40px;
    background-repeat: no-repeat;
  }

  .form-row {
    flex-direction: column;
  }

  .forma__inner {
    padding: 20px 15px;
  }

  .footer__inner {
    flex-direction: column;
    justify-content: center;
  }

  .shema-bg {
    background-image: none;
  }

  .shema__title .black {
    color: #fff !important;
  }

  .shema__title .shema-text {
    color: #9d9d9d;
    text-align: center;
  }

  .shema__inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .shema__title {
    width: 100%;
  }
  .avtor__inner {
    min-height: 700px;
  }

  .shema-left {
    padding-right: 0;
  }

  .forma__inner {
    background-image: url(/img/form-s.jpg);
    background-size: cover;
    background-position: left top;
  }

  .shema-right {
    padding-bottom: 20px;
    border-bottom: 1px solid #787878;
  }

  .shema-gal {
    padding: 20px 20px 0 0;
  }
  .shema-gal {
    width: 750px !important;
  }

  .shapka-soc {
    gap: 6px;
  }

  .vakant__inner {
    flex-direction: column;
    gap: 20px;
  }

  .vakant-hr {
    height: 1px;
    width: 100%;
    min-height: 1px;
  }

  .vakant__info {
    width: 100%;
  }

  .afisha__item-in {
    flex-direction: column;
  }

  .vakant-zp__fl {
    flex-direction: column;
    align-items: center;
  }

  .afisha__item-in-info .bread__list {
    justify-content: center;
  }

  .shapka {
    padding-top: 90px;
  }

  .menu-block__img {
    display: none;
  }

  .menu-block__top {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-block__top--bottom div:first-child {
    display: none;
  }
  .menu-block__title,
  .menu-sum {
    margin-bottom: 20px;
  }

  .menu-det__inner {
    padding-bottom: 20px;
  }
  .koncert-block {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-photo-all {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .gen-title {
    font-size: 29px;
  }

  .desc {
    display: none;
  }

  .mobl {
    display: block;
  }

  .shapka {
    background-image: url(/img/slide-s.png);
    min-height: 900px;
    background-position: center bottom;
    border-radius: 0 0 20px 20px;
    background-size: cover;
  }

  .shapka__inner {
    padding: 0;
    background-image: none;
  }

  /* .slide-title {
    color: #fff;
  } */

  .why-left_grig,
  .why-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-left_grig {
    grid-auto-rows: 297px;
  }

  .why-left__title {
    font-size: 21px;
  }

  .why-left__text {
    font-size: 13px;
  }

  .avtor__inner {
    padding: 20px;
    background-image: url(/img/avtor-s.jpg);
    background-position: right bottom;
    min-height: 650px;
  }

  .avtor__inner .gen-title {
    font-size: 29px;
    text-align: left;
  }

  .avtor-sub {
    font-size: 13px;
  }

  .avtor-btns {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }

  .bar-card__info .gen-title {
    font-size: 27px;
  }

  .bar-card__inner {
    background-image: url(/img/bar-s.png);
  }

  .form-btn {
    width: 100%;
  }

  .form-btn a {
    width: 100%;
    text-align: center;
  }

  .form-sub,
  .form-right {
    font-size: 13px;
  }

  .footer-btns {
    flex-direction: column;
  }

  .footer-left,
  .footer-right,
  .footer-btn {
    width: 100%;
  }

  .footer-btns a,
  .footer-info {
    width: 100%;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .gallery-photo {
    gap: 0;
    overflow: hidden;
  }

  .gallery-photo__item {
    margin: 0 -30px;
  }

  .gallery-photo__item img {
    width: 210px;
  }

  .gallery-photo__item3 {
    transform: rotate(10deg);
    animation: none;
  }

  .gallery-photo__item2 {
    transform: rotate(-9deg);
    animation: none;
  }

  .bar-card__inner {
    padding-bottom: 370px;
  }
  .shema-gal {
    width: 100vw !important;
  }
  .why-left__item1 {
    background-image: url(/img/why/1.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .why-left__item2 {
    background-image: url(/img/why/2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .slide-title,
  .gen-title {
    font-size: 36px;
  }

  .avtor-btns .form-btn a {
    width: fit-content;
  }

  .shapka-gen {
    background-image: none;
    min-height: 0;
  }

  .shapka__inner-gen {
    background-image: url(/img/slide-gen-s.jpg);
    background-size: cover;
    background-position: center bottom;
    border-radius: 20px;
    padding: 20px 30px;
    justify-content: flex-start;
    align-items: center;
  }

  .slide-info {
    width: 100%;
  }

  .shapka__inner-gen .slide-title span {
    display: block;
    font-size: 36px;
  }

  .slide-text br {
    display: none;
  }

  .afisha-rel {
    position: relative;
    padding-bottom: 60px;
  }

  .afisha .fl-title .grey-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .afisha .fl-title .grey-btn a {
    width: 100%;
    display: block;
    text-align: center;
  }

  .vakant-rel {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 20px;
  }

  .vakant-rel .fl-title .grey-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .vakant-rel .fl-title .grey-btn a {
    width: 100%;
    display: block;
    text-align: center;
  }

  .gen-title {
    text-align: center;
  }

  .fl-title {
    justify-content: center;
  }

  .koncert__inner {
    flex-direction: column;
  }

  .koncert__left {
    transform: none;
    gap: 40px;
  }

  .koncert__img {
    transform: rotate(-3.737deg);
  }

  .koncert__sub {
    text-align: center;
  }

  .vakant__item {
    flex-direction: column;
    align-items: center;
  }
  .vakant__info {
    width: 100%;
    text-align: center;
  }

  .afisha-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .afisha__item-in-img {
    width: 100%;
    min-width: 100%;
  }

  .afisha__item-in__sub,
  .afisha__item-in__text {
    text-align: center;
  }

  .red-yell {
    text-align: center;
  }

  .shapka-karaoke {
    background-image: url(/img/karaoke-s.png);
    min-height: 800px;
  }

  .shapka__banket .slide-title {
    color: #fff;
  }

  .avtor__serega {
    background-image: url(/img/serega-s.jpg);
  }

  .shapka__inner-card {
    background-image: url(/img/card-s.jpg);
  }

  .level__inner {
    background-image: url(/img/type-s.jpg);
  }

  .level-sub {
    font-size: 13px;
  }

  .type-list,
  .howuse-list {
    flex-direction: column;
  }

  .howuse__item {
    flex-direction: column;
    align-items: center;
  }

  .howuse-info {
    transform: none;
    text-align: center;
    left: auto;
    bottom: auto;
    top: -10px;
  }

  .big-title {
    font-size: 48px;
  }

  .vakant__all {
    gap: 20px;
  }

  .vakant__all .vakant__item {
    padding-right: 0;
    border-right: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #323232;
  }

  .vakant__all .vakant__item:last-child {
    border-bottom: none;
  }

  .bread__board {
    padding-top: 0;
    border-top: none;
  }

  .kontakty-info__top {
    flex-direction: column;
    justify-content: center;
  }

  .kontakty-info__item {
    text-align: center;
    justify-content: center;
    font-size: 15px;
  }

  .why-sub {
    text-align: center;
    margin-top: 10px;
  }

  .akcii-bg {
    position: relative;
    padding: 20px 20px 80px;
  }

  .akcii-bg .form-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }

  .form-sub br {
    display: none;
  }

  .forma__info .gen-title {
    font-size: 29px;
  }

  .star-title {
    font-size: 29px;
  }

  .star-title span:after {
    content: none;
  }

  .why-sub {
    font-size: 13px;
  }

  .menu-block__mobl {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .menu-block__mobl-in {
    margin-top: 15px;
  }

  .menu-block__mobl-in {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .menu-det {
    margin-bottom: 0;
  }

  .menu-det__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .menu-det__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-det__item:first-child {
    margin-right: 0;
  }

  .menu-det__item {
    padding: 10px 20px;
    font-size: 13px;
  }

  .text-left {
    align-items: flex-start;
    position: relative;
  }

  .text-left:after {
    content: "+";
    display: flex;
    width: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #0e0e0e;
    background: #0e0e0e;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Vela Sans";
    transition-duration: 0.3s;
  }

  details[open] .text-left:after {
    content: "-";
    background: inherit;
    color: #0e0e0e;
    border-color: #0e0e0e;
    transition-duration: 0.3s;
  }

  .menu-block__title {
    align-items: flex-start;
    padding: 20px;
    position: relative;
  }

  

  .mobile-open::after {
    content: url(/img/close-mob.svg);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-open.mobile-open__active::after {
    content: url(/img/open-mob.svg);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .koncert-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .shapka {
    min-height: 700px;
  }

  /* .slide-title,
  .gen-title {
    font-size: 24px;
  } */

  .gen-title {
    text-align: center;
  }

  .slide-text,
  .red-yell a {
    font-size: 12px;
  }

  .why-left__item3 {
    background-image: url(/img/why/3-s.jpg);
    background-position: bottom right;
  }

  .why-left__item5 {
    background-image: url(/img/why/5-s.jpg);
    background-position: bottom right;
  }

  .gallery-photo__item img {
    width: 170px;
  }

  .afisha-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .shapka-gen {
    min-height: 0;
  }

  .koncert-block {
    grid-template-columns: repeat(1, 1fr);
  }
  
}