/* ===============================
   Montserrat local (no CLS jump)
   =============================== */

@font-face{
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


html {
    scroll-behavior: smooth;
    transition: 0.2s;
}
body {

    font-family: 'Montserrat', Arial, sans-serif;
    background-color:#0A0A0A;
}
h1,h2,h3,h4,h5,h6,p,ul,li {
    cursor: default;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

 /* контейнер с плавной анимацией */
  .text-wrapper{
    position: relative;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }

  /* нижнее затухание */
  .fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0),
    rgba(10,10,10,1)
  );
}

  /* когда раскрыто — fade пропадает */
  .text-block.is-open .fade{
    opacity: 0;
  }

  .toggle-btn{
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 6px 0;
    cursor: pointer;

    color: rgb(140, 231, 140);
    text-shadow: rgba(27, 255, 0, 0.64) 0px 0px 15px;
    font-size: 14px;
  }

  .arrow{ transition: transform 0.3s ease; }
  .text-block.is-open .arrow{ transform: rotate(180deg); }

  /* На десктопе текст всегда открыт, кнопку скрываем */
  @media (min-width: 768px){
    .toggle-btn{ display: none; }
    .text-wrapper{ max-height: none !important; }
    .fade{ display: none; }
  }
  
/*FAQ СТАРТ*/
.faq {
max-width: 800px;
width: 100%;
margin: 0 auto;
}


.faq-item {
border-bottom: 1px solid rgba(140, 231, 140, 0.3);
}


.faq-question {
cursor: pointer;
padding: 16px;
font-size: 10px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
color: rgb(140, 231, 140);
text-shadow: rgba(27, 255, 0, 0.64) 0px 0px 15px;
transition: background 0.2s ease;
}


.faq-question:hover {
background: rgba(140, 231, 140, 0.08);
}


.faq-icon {
font-size: clamp(22px, 3vw, 28px);
font-weight: bold;
flex-shrink: 0;
}


.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease;
padding: 0 16px;
color: #d8ffd8;
font-size: clamp(14px, 2.3vw, 18px);
line-height: 1.5;
}


.faq-answer p {
margin: 10px 0 18px;
}


.faq-item.active .faq-answer {
max-height: 500px; /* запас для длинного текста */
}


/* Мобильные улучшения */
@media (max-width: 480px) {

.faq-question {
padding: 14px;
}
}

/*FAQ КОНЕЦ*/

.foto-img {
      width: 100%;
  height: auto;
  display: block;
}
.owl-carousel .owl-nav button.owl-next {
    float:right;
    width:50%;
    margin-left:0;
}

.owl-carousel .owl-nav button.owl-prev {
        float:left;
    width:50%;
}

.grid-why {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
  }

  .block-why {
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    margin-top: 50px;
  }

  .block-why:hover {
    transform: translateY(-5px);
  }

  .block-why img {
    height: 60px;
    display: block;
    margin:0 auto;
  }

  .block-why p {
    padding: 10px;
    margin: 0;
    font-size: 1.125em;
    color: #fff;
    font-weight: 400;
  }

  /* Адаптив для мобильных */
  @media (max-width: 900px) {
    .block-why {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 600px) {
    .block-why {
      width: 100%;
    }
  }



.dr-bg {
    background-size: cover;
    background-position: center;
}

.dr-bg{
  position: relative;
  overflow: hidden;
}

.hero-lcp-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* важно: НЕ opacity:0 и НЕ display:none */
}


.header-menu.dr-menu {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 15px;
  color: #fff;
  overflow: hidden;
}

/* Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  text-align: center;
}



/* Text */

.hero-content h1 {
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 22px;
}

/* Feature cards */

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 50px auto;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  justify-content: center;
}

/* Glow */

.glow-card {
  border: 1px solid rgba(0,255,156,0.25);
  box-shadow: 0 0 15px rgba(0,255,156,0.12);
}

/* SVG icons */

.hero-feature svg {
  width: 26px;
  height: 26px;
  fill: #00ff9c;
  filter: drop-shadow(0 0 6px rgba(0,255,156,0.6));
}

.hero-feature span {
  font-size: 15px;
}

/* Button */

.hero-btn {
  background: linear-gradient(135deg, #fab700, #f7a600);
  color: #000;
  border: none;
  padding: 16px 30px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(250,183,0,0.5);
}



/* Trust */

.hero-trust {
  margin-top: 16px;
  font-size: 18px;
  color: #bdbdbd;
}

/* Desktop grid */

@media (min-width: 900px) {

  .hero-features {
    grid-template-columns: repeat(3, auto);
    width: fit-content;
  }

}

/* Mobile UX */

@media (max-width: 768px) {

  .hero-content {
    text-align: center;
  }

  .hero-btn {
    width: 100%;
  }

}

/* Animations */

.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse CTA */


.pulse-btn {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250,183,0,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(250,183,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,183,0,0); }
}


/*kids-dr2*/






.leto, .footer-media-left {
    position:relative;
}

/*ТАРИФЫ ДР НАЧАЛО*/
/* Заголовок */
.dr-title {
  color: #fff;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px black;
}

/* Flex-контейнер для тарифов */
.price-block-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center; /* центрируем блоки на экранах <1024 и <768 */
  margin-bottom: 40px;
}

/* Карточка тарифа */
.price-card {
  flex: 1 1 300px; /* рост, сжатие, базовая ширина */
  max-width: 33%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: 16px;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 1px 1px black;

  /* Эффект стекла */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  
  margin-top:auto;
  z-index:1;
}

/* Цвета для блоков */
.price-card.igra {background: rgb(219 174 47 / 60%);}
.price-card.start { background: rgba(219, 47, 82, 0.6); }
.price-card.standard { background: rgba(255, 142, 25, 0.6); }
.price-card.premium { background: rgba(61, 205, 51, 0.6); z-index: 2; }

/* Заголовки */
.price-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  line-height:1;
}

/* Стоимость */
.price-cost {
  text-align: center;

}

.old-price {
  color: grey;
  text-decoration: line-through;
}

.new-price {
  font-size: 20px;
  font-weight: 600;
  color:tomato;
}

/* Игроки */
.price-players {
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

/* Список услуг с галочками */
.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.price-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

/* Кнопка прижата к низу */
.btn-wrapper {
  margin-top: auto;
  text-align: center;
}

/* Кнопка Squid Game */
.btn-squid {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #1fa463;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(31,164,99,0.4);
  transition: box-shadow 0.3s ease;
}

.btn-squid:hover {
  box-shadow: 0 6px 25px rgba(31,164,99,0.5);
}

.btn-squid::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* Адаптивность */
@media (max-width: 1024px) {
  .price-card { max-width: 45%; }
}

@media (max-width: 768px) {
  .price-block {
    justify-content: center;
    gap: 20px;
  }
  .price-card { max-width: 90%; margin-bottom: 20px; }
}


/*ТАРИФЫ ДР КОНЕЦ*/


.logo {margin:0 30px;}

.head-info {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}
/* Блок окна */
.writeme {
    position: fixed;
    bottom: 20px; /* можно оставить или поднять выше */
    left: 50%;
    transform: translateX(-50%); /* ← центрирование по горизонтали */
    width: 80%;      /* <= Основная ширина */
    max-width: 350px; /* <= Ограничение по максимуму */
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.65); /* полупрозрачность */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10000;
    text-align: center;
}


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

/* Текст */
.writeme-content p {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 600;
}

/* Контейнер иконок */
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

/* Иконки */
.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .2s ease;
}

/* WhatsApp */
.wa {
    background-color: #25D366;
    mask: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg") center / 70% no-repeat;
    -webkit-mask: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg") center / 70% no-repeat;
    background-image: none;
}

/* Telegram */
.tg {
    background-color: #0088cc;
    mask: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg") center / 70% no-repeat;
    -webkit-mask: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg") center / 70% no-repeat;
    background-image: none;
}

/* Значки белые — поэтому просто заливаем маску белым */
.social-links a {
    color: white;
}

/* Hover эффект */
.social-links a:hover {
    transform: scale(1.1);
}

/* Кнопка закрытия */
.close-popup {
    padding: 8px 16px;
    background: #e8e8e8;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
}

.close-popup:hover {
    background: #d8d8d8;
}

.why {
    padding:50px 0;
}

.why ul {
    margin-top:50px;
}

.why ul li {
    margin-bottom:20px;
}

.games-subtitle li {
    margin-bottom:20px;
}

.swiper-container {
    height:600px;
}

.swiper-arrow-cont {
    position:relative;
    top:-100px;
}
.foto-dr {
    padding:50px 0 100px;
    min-height:440px;
}

.kids-dr .price-block-description {
    margin-top:50px!important;
}

.kids-dr .rule-description {font-size:22px!important;}
.kids-dr .rules {
    padding-top:10px;
    padding-bottom:10px;
    background: url(/assets/images/oblaka.webp) no-repeat;
    background-size: cover;
    margin:50px 0;
}

.kids-dr .rooms {
background: url(/assets/images/bg-why.webp) no-repeat;
background-size: cover;
padding: 50px 0;
}
.kids-dr .mask {
    top: -100px
}

.kids-dr .rules-block {
    box-shadow:none;
    border:none;
    margin: 0 auto;
    background:none!important;
    position:relative;
    
}


.kids-dr .rules-block .circle-block__item {
    width: 20%;
    margin-bottom:40px;
}

.kids-dr .rules-block .rule-description {
    text-align:center;
}

.kids-dr .time-block__item {
    width: 30%;
    min-width: 280px;
    margin-top: 30px!important;
    border: none;
    margin: 0 auto;
    padding: 30px 10px;
}

.kids-dr .time-red {top: -50px;}
.kids-dr .time-paper1 {top:-90px;}
.kids-dr .time-paper2 {z-index:9;}
.kids-dr .warning2 {position:absolute; bottom:inherit; top:-100px; left:50px;}
.kids-dr .duration-trial {
    font-size:18px;
}

.kids-dr .time {padding-bottom: 50px!important; margin-top:0!important; padding-top: 50px!important;}
.kids-dr .n-header {
    background: url('/assets/images/kids-bg8.webp') no-repeat;
        background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

#deti-dr {
   background: none;
   background-size: contain;
   background-position-x: center;
   background-position-y: bottom;

}

.rules2 {
    position:relative;
    padding: 0 0 100px;
}

.warning2 {
    position: relative;
    transform: rotate(-0.57deg);
    bottom: -100px;
    z-index: 2;
}

.dr-pack {
    margin-bottom:50px!important;
}
.rules-block-inner {
    text-align:center;
    -webkit-backdrop-filter: blur(20px);
}
.rules-block {
    padding:40px 0;
    margin:50px 0;
}


.rules-block .circle-block__item {
    display:inline-block;
    vertical-align:top;
    width:24%;
    min-width:200px;
}
.rules-block .circle-block__item img {
    height:60px;
    width:60px;
    margin-bottom: 20px;
}

.rules-block .rule-description {
    text-align:center;
}

.corp-price .price-block-description {
    height:500px!important;
}
.boost span {
    display: inline-block;
    background: #3c2b2ba3;
    padding: 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.leto {
    background-image: url(/assets/images/bg-vip.jpg)!important;
    margin-bottom:50px!important;
}
.open-block {
    background-image: url(/assets/images/squidgame2.jpg);
    background-size: cover;
    background-position-x: center;
    text-align: center;
    padding: 100px 3%;
    margin: 30px 0 10px;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 12px black;
    -webkit-text-stroke-width: 1px;
}


.open2 {
    background-image: url(/assets/images/new-year-kalmar2.jpg);
    background-size: cover;
    background-position-x: center;
    text-align: center;
    padding: 6% 3%;
    margin: 30px 0 10px;
    font-size: 190%;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 12px black;
    -webkit-text-stroke-width: 1px;
}


.line {
    transform: rotate(-10deg);
    text-align: center;
    display: block;
    position: relative;
    margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}

.price-description-content a {
    color:#fff;
    display: inline-block;
    padding: 10px;
    border:1px solid #fff;
    margin-right:10px;
    margin-top:10px;
    border-radius: 20px;
}
.price-description-content a:hover {
    background-color: rgb(255 255 255 / 80%);
    color:#000;
}
.who {
    background-color: #0A0A0A;
    padding:30px 0 50px;
}
.who-wrap {
    text-align:center;
}
.who-wrap h2 {
    color: #fff;
    font-size: 40px;
}
.who-item {
    display:inline-block;
    width:30%;
    min-width:250px;
    vertical-align:top;
    margin: 20px 10px;
    
}
.who-item div {
    width:230px;
    height:230px;
    background-position:center center;
    background-size:cover;
    border-radius:200px;
    margin:20px auto;
    box-shadow: 0 0 15px #1bff00a3;
    border: 3px solid #8ce78c;
}

.who-item a {
    font-size: 2em;
    text-shadow: 0 0 15px #1bff00a3;
    color: #8ce78c;
}

.who1 {
    background-image:url(/assets/images/detskiy-dr.jpg);
}
.who2 {
    background-image:url(/assets/images/vzroslyi-dr.jpg);
}
.who3 {
    background-image:url(/assets/images/korporativ.jpg);
}
.who4 {
    background-image:url(/assets/images/klass.jpg);
}
.who5 {
    background-image:url(/assets/images/vipusknoy.jpg);
}
.who6 {
    background-image:url(/assets/images/bez-povoda.jpg);
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}

.popup {
    top: 25%;
    left: 0;
    right: 0;       
    margin: auto;
    width: 85%;
    min-width: 320px;
    max-width: 375px;
    position: absolute;
    padding: 30px 20px;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    text-align: center;
    background: linear-gradient(180deg, rgb(38 37 37 / 57%) 0%, #000000 99.99%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    color: #8ce78c;
    font-family: 'small_pixel';
    font-size: 1.2em;
    text-shadow: 0 0 15px #1bff00a3;
}
.popup a {
    color: #8ce78c;
    font-family: 'small_pixel';
    font-size: 1.5em;
    text-shadow: 0 0 15px #1bff00a3;
    padding: 10px 0;
    display: block;
}

.popup a:hover {color:#fff; transition:0.2s;}

.popup h2 {margin-bottom:20px;}

.close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: #8ce78c;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;
 
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/* кнопка закрытия при наведении */
.close:hover {
    background-color: rgba(252, 20, 0, 0.8);
}

.n-header {
    background: url('../images/headerBackground.webp') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding-top: 33px;
}

#man-dr {
   background: url('../images/dr-man.webp') no-repeat;
   background-size: contain;
   background-position-x: center;
   background-position-y: bottom;
}

#man-adult {
   background: url('../images/man-adult.webp') no-repeat;
   background-size: contain;
   background-position-x: center;
   background-position-y: bottom;
}

#man-outdoor {
   background: url('../images/man-outdoor.webp') no-repeat;
   background-size: contain;
   background-position-x: center;
   background-position-y: bottom;
}

#man-school {
   background: url('../images/man-school.webp') no-repeat;
   background-size: contain;
   background-position-x: center;
   background-position-y: bottom;
}



.man {

    background-size: contain;
    background-position-x: center;
    background-position-y: bottom;
    min-height:778px;
    position:relative;
}
.header .content {
    position: relative;
}




.burger-address-menu .start-item {
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 20px;
    width: 70%;
    min-width: 200px;
    max-width: 300px;
    padding: 15px 10px;
    transition:none!important;
}



.burger-address-menu .sub-address-menu {
    margin: 0 auto;
    position: inherit;
    background-color: transparent;
    border: 1px solid #fff;
    width: 70%;
    min-width: 200px;
    max-width: 300px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.burger-address-menu .start-item, .burger-address-menu .start-item:hover {
    background-color: transparent;

}

.burger-address-menu .start-item-color {
    border-bottom:0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.burger-address-menu a {
    color:#fff;
}

.mobile {
    display:none;
}

.bron-button {
    float: left;
}

.otzyv-button {
    float:right;
}
.otzyv-button  .stars {
    height:40px;
}



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

button:active, button:focus {
    outline: none !important;
}
button::-moz-focus-inner {
    border: 0 !important;
}
button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
/* HEADER */

.content {
    width: 1280px;
    margin: 0 auto;
}
/*.logo-img {
    width: 192px;
    height: 44px;
}*/
section.header-title {
    padding:50px 0 10px;
    background-color: #0A0A0A;
}
.header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:4;
    position:relative;
}
.navbar {
    display: flex;
    width: 725px;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.navbar__item {
    background: rgba(5, 5, 5, 0.6);
    box-shadow: 0 0 23px 5px rgb(5 5 5);
}
.navbar__item a {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    transition: 0.2s ease-in-out;
}
.navbar__item a:hover {
    color: #e6e6e6;
    transition: 0.2s ease-in-out;
	color:#b9317b;
	text-shadow: 0 0 3px #b9317b;
}

.contacts-tel {

    padding: 10px 15px;
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    align-items: center;
    display: flex;
    letter-spacing: 0.01em;
    background: linear-gradient(136.08deg, #594040 4.57%, rgba(37, 51, 64, 0.55) 106.53%);
    /* transition: 1s ease-in-out; */
    position: relative;
    border-radius: 19.5px;
}
.contacts-tel::before {

    position: absolute;
    content: " ";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(136.08deg, rgba(37, 51, 64, 0.55) 6.48%, #594040 106.53%);
    z-index: 1;
    transition: opacity 0.3s linear;
    opacity: 0;
    border-radius: 19.5px;
}
.contacts-tel:hover::before {
    opacity: 1;
}
.contacts-tel:hover {
    z-index: 1;
}
.contacts-tel img {
    margin-right: 5px;
    position: relative;
    z-index: 1;
}
.contacts-tel span {
    position: relative;
    z-index: 1;
}

.header-contacts {
    text-align: center;
    margin-bottom: -20px;
}

.n-header nav {
    margin-right:20px;
}
.address-menu {
    width: 193px;
    margin-top: 5px;
    position:relative;
}

.address-menu a {
    font-size: 0.875em;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.015em;
}

.sub-address-menu {
    display:none;
    position:absolute;
    z-index:5;
    width: 193px;
    background-color: #26262C;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius:0px;
    border-top-right-radius:0px;
    transition: 0.2s ease-in-out;
    padding-bottom: 10px;
}
.sub-address-menu li {padding:5px 0;}
.sub-address-menu li a {border-bottom: 1px solid transparent;}
.sub-address-menu li a:hover {border-bottom: 1px solid rgba(250, 250, 250, 0.4);}


.start-item {
    transition: 0.2s ease-in-out;
    border-radius: 5px;
    padding-top: 4px;
    padding-bottom: 5px;
    width: 193px;
    display:block;
    
}
.start-item:hover {
    background-color: #26262C;
    transition: 0.2s ease-in-out;
}

.start-item a {border-bottom: 1px solid transparent;}

.start-item:hover a {border-bottom: 1px solid rgba(250, 250, 250, 0.4);}




.start-item-color {
background-color: #26262C;
border-bottom-left-radius: 0px;
border-bottom-right-radius:0px;
}

.first-item img {
    margin-left: -12px;
    margin-bottom: -3px;
    transition: 0.2s ease-in-out;
}
.rotate-image {
    transform: rotateX(180deg);
    transition: 0.2s ease-in-out;
}
.second-item img {
    visibility: hidden;
}
.third-item img {
    visibility: hidden;
}
.first-item a, .second-item a  {
    border-bottom: 1px solid transparent;
    /* transition: 0.4s ease-in-out; */
}
.first-item:hover a {
    border-bottom: 1px solid rgba(250, 250, 250, 0.4);
    /* transition: 0.4s ease-in-out; */
}
.first-item-style {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #26262C;

    /* transition-delay: 0.5s; */
}
.second-item {
    background-color: #26262C;
    visibility: hidden;
    margin-top: -16px;
    transition: 0.2s ease-in-out;
}
.second-item:hover a {
    border-bottom: 1px solid rgba(250, 250, 250, 0.4);
}
.third-item {
    background-color: #26262C;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 5px;
    padding-bottom: 8px;
    margin-top: -21px;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.third-item:hover a {
    border-bottom: 1px solid rgba(250, 250, 250, 0.4);
}
.d-block {
    visibility:visible;
    transition: 0.2s ease-in-out;
    margin-top: 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
}
.letsPlay {
    position: absolute;
    width: 1279px;
    margin-top: 80px;
    z-index:1;
}
.letsPlay1 {
    display: none;
}
.image-text-block {
    position: relative;
    left: -125px;
}
.bgMan {
    position: absolute;
    width: 526px;
    height: 693px;
    left: -70px;
}
.headerMan {
    height: 694px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.header-left-block {
    margin-top: 380px;
    margin-left: 20px;
}
.header-subtitle {
    font-size: 1.5em;
    color: #fff;
    font-weight: 300;
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 45px 14px rgb(5 5 5);
    display: inline-block;
    position: relative;
}
.header-title img {
    margin-top: 22px;
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 45px 12px rgb(5 5 5);
}
/*.header-title img {
    width: 422px;
    height: 55px;
    margin-top: 22px;
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 45px 12px rgb(5 5 5);
}*/
.reservation {
    font-size: 1.5em;
    font-weight: 500;
    background: #7B1D1D;
    color: #fff;
    border-radius: 35.5px;
    padding: 21px 24px;
    border-color: transparent;
    margin-top: 50px;
    transition: 0.4s ease-in-out;
}
.reservation:hover {
	box-shadow: 0px 0px 16px 0px #000000 inset;
     transition: 0.4s ease-in-out;
}
.triangle {
    transform: translate(0px, 0px);
    transition: 0.4s ease-in-out;
}
.square {
    transform: translate(0px, 0px);
    transition: 0.4s ease-in-out;
}
.circle {
    transform: translate(0px, 0px);
    transition: 0.4s ease-in-out; 
}
.reservation:hover .triangle {
    transform: translate(0px, -10px);
    transition: 0.4s ease-in-out;
}
.reservation:hover .square {
    transform: translate(0px, 10px);
    transition: 0.4s ease-in-out;
}
.reservation:hover .circle {
    transform: translate(0px, -10px);
    transition: 0.4s ease-in-out;
}

.review {
    margin:120px 0 0;
    
}

.review h2 {
text-align:center;
}


.reviews-block {
    width: 222px;
    text-align: center;
    margin-top: 470px;
    margin-left:-200px;
}
.reviews-block img {
    width: 116px;
    height: 20px;
    position: relative;
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 38px 12px rgb(5 5 5);
}
.reviews-btn {
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 45px 12px rgb(5 5 5);
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 35.5px;
    padding: 20px 62px;
    margin-top: 9px;
    transition: 0.2s ease-in-out;
}
.reviews-btn:hover {
    background: rgba(63, 63, 63, 0.5);
    transition: 0.2s ease-in-out;
}
.mouth-img {
    position: absolute;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    margin-left: -13px;
    left: 50%;
    z-index: 1;
    bottom:0;
}

.bounce-3 {
    animation-name: bounce-3;
    animation-timing-function: ease;
}

@keyframes bounce-3 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* SECTION AWAITS */
.title-section    { 
    background-color: #0A0A0A;
    padding-top: 50px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.games {
    background-color: #0A0A0A;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}
.games-title {
    font-size: 2.25em;
    color: #fff;
    font-weight: 500;

}
.games-subtitle {
    font-size: 1.125em;
    color: #fff;
    font-weight: 400;
    margin-top: 17px;
}
.games-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 60px;
}
.game-1 .game-image, .game-2 .game-image,.game-3 .game-image,.game-4 .game-image, .game-5 .game-image, .game-6 .game-image {
 margin-top: 20px;
 margin-bottom: 26px;   
}
/*.game-1 .game-image {
    width: 353px;
    height: 140px;
    margin-top: 20px;
    margin-bottom: 26px;
}
.game-2 .game-image {
    width: 354px;
    height: 163px;
    margin-top: 45px;
    margin-bottom: 23px;
}
.game-3 .game-image {
    width: 346px;
    height: 86px;
    margin-top: 122px;
    margin-bottom: 23px;
}
.game-4 .game-image {
    width: 331px;
    height: 123px;
    margin-top: 42px;
}
.game-5 .game-image {
    width: 342px;
    height: 87px;
    margin-top: 76px;
}
.game-6 .game-image {
    width: 250px;
    height: 121px;
    margin-top: 45px;
}
*/
.game-description {
    width: 347px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.game-2 .game-description {
    width: 356px;
}
.showArrow {
    display: block;
    margin: 0 auto;
    position: relative;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    cursor: pointer;
}
.showArrow::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../images/showArrowH.svg') no-repeat;
    z-index: -1;
    transition: opacity 0.3s linear;
    opacity: 0;
}
.showArrow:hover::before {
    opacity: 1;
}
.game-title {
    font-size: 1.25em;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.game-1 .showArrow {
    top: 36px;

}
.fade-block {
    position: relative;
    background: linear-gradient(transparent 0%, #0A0A0A 15%);
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}
.game-1 .fade-block {
    margin-top: -162px;
    width: 347px;
    height: 185px;
}
.animationArrow {
    height: auto !important;
    margin-top: auto !important;
    height: 55px !important;
    margin-top: -55px !important;
    position: absolute !important;
    -webkit-transform: translate(0,50px);
    -moz-transform: translate(0,50px);
    -o-transform: translate(0,50px);
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}
.animationArrow1 {
    top: 25px !important;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transform: rotateX(180deg);
    animation-duration: 0s;
    animation-iteration-count: none;
    transform-origin: none;
}
.game-2 .fade-block {
    margin-top: -72px;
    width: 347px;
    height: 185px;
}
.game-2 .showArrow {
    top: 36px;
}
.game-3 .fade-block {
    margin-top: -50px;
    width: 347px;
    height: 185px;
}
.game-3 .showArrow {
    top: 36px;
}
.game-4 .game-description {
    margin-top: 25px;
}
.game-5 .game-description {
    margin-top: 24px;
}
.game-6 .game-description {
    margin-top: 24px;
}
.game-4 .fade-block {
    margin-top: -55px;
    width: 347px;
    height: 185px;
}
.game-4 .showArrow {
    top: 36px;
}
.game-4 {
    margin-top: 100px;
}
.game-5 {
    margin-top: 100px;
}
.game-5 .fade-block {
    margin-top: -182px;
    width: 347px;
    height: 185px;
}
.game-5 .showArrow {
    top: 36px;
}
.game-6 {
    margin-top: 100px;
}
.game-6 .fade-block {
    margin-top: -232px;
    width: 347px;
    height: 238px;
}
.game-6 .showArrow {
    top: 36px;
}
.bounce-3 {
    animation-name: bounce-1;
    animation-timing-function: linear;
}
@keyframes bounce-1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.ellipse1 {
    filter: blur(202px);
    background: rgba(66, 205, 31, 0.11);
    width: 382px;
    height: 470px;
    position: absolute;
    right: -159px;
    bottom: -65px;
}
.ellipse2 {
    filter: blur(202px);
    background: rgba(154, 33, 57, 0.15);
    width: 382px;
    height: 470px;
    position: absolute;
    right: -79px;
    top: 0;
}
.ellipse3 {
    filter: blur(202px);
    background: rgba(236, 191, 30, 0.14);
    width: 382px;
    height: 470px;
    position: absolute;
    left: -112px;
    bottom: 400px;
}

/* GAMES MOBILE */

.games-mobile {
    display: none;
    background-color: #0A0A0A;
    padding-top:300px;
    text-align: center;
}
.game-content {
    width: 327px;
    margin: 0 auto;
}
.games-mobile-block {
    border-radius: 40px 0px 0px 0px;
    box-shadow: 0px -11px 11px 5px rgba(0, 0, 0, 0.5);
    padding-bottom: 55px;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}
.mobile-game-1 {
    margin-top: 30px;
    background: linear-gradient(120.26deg, #5E4646 -2.63%, #0F0D0D 72.55%);
}
.mobile-game-2 {
    margin-top: -332px;
    position: relative;
    background: linear-gradient(120.26deg, #5E5746 -2.63%, #0F0D0D 72.55%);
}
.mobile-game-3 {
    margin-top: -200px;
    position: relative;
    background: linear-gradient(120.26deg, #4E5E46 -2.63%, #0F0D0D 72.55%);
}
.mobile-game-4 {
    position: relative;
    background: linear-gradient(120.26deg, #465E58 -2.63%, #0F0D0D 72.55%);
    margin-top: -143px;
}
.mobile-game-5 {
    position: relative;
    background: linear-gradient(120.26deg, #46485E -2.63%, #0F0D0D 72.55%);
    margin-top: -173px;
}
.mobile-game-6 {
    position: relative;
    background: linear-gradient(120.26deg, #46485E -2.63%, #0F0D0D 72.55%);
    margin-top: -300px;
    border-radius: 40px 0px 0px 40px;
}
.game-description {
    margin: 0 auto;
    margin-top: 25px;
    text-align: left;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}
.game-description .game-last-desc {
    margin-top:50px;
}
/* .game-last-desc {
    visibility: hidden;
    top: -300px;
} */
.game-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.games-mobile-title {
    font-size: 2.25em;
    color: #fff;
    font-weight: 500;

}
.games-mobile-subtitle {
    font-size: 1.125em;
    color: #fff;
    font-weight: 400;
    margin-top: 17px;
}
.mobile-game-1 .game-image,.mobile-game-3 .game-image,.mobile-game-4 .game-image,.mobile-game-5 .game-image,.mobile-game-6 .game-image {
    margin-top: -40px;
}
/*
.mobile-game-1 .game-image {
    width: 326px;
    height: 118px;
}
.mobile-game-2 .game-image {
    width: 325px;
    height: 150px;
}
.mobile-game-3 .game-image {
    width: 327px;
    height: 81px;
}
.mobile-game-4 .game-image {
    width: 325px;
}
.mobile-game-5 .game-image {
    width: 325px;
    height: 83px;
}
.mobile-game-6 .game-image {
    width: 285px;
}
*/
/* RULES WRAPPER */
.rules-wrapper {
    background-color: #0A0A0A;
    position: relative;
    padding-bottom: 100px;
    padding-top: 80px;
    margin-top: -345px;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    display: none;
    box-shadow: -23px -5px 12px 8px rgb(10 10 10);
}
.money1 {
    width: 94px;
}
.money2 {
    width: 36px;
    display: block;
    position: relative;
    left: 27px;
    top: 52px;
}
.money3 {
    width: 14px;
    position: relative;
    left: 102px;
}
.money4 {
    width: 26px;
    position: absolute;
    bottom: 25px;
    right: 16px;
}
.shiftAnimate {
    margin-top: -30px !important;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}
.mobile-showArrow {
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

.rules-wrapper-1 {
    background-color: #0A0A0A;
    position: relative;
    display: none;
    margin-top: -1px;
}
.present {
    position: absolute;
    right: 150px;
    top: 200px;
    width: 180px;
}
.colors {
    width: 500px;
    display: block;
    margin: 0 auto;
}
/* SECTION RULES */
.rules {
    /*background: url('../images/warningBg.jpg') no-repeat;*/
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding-top: 0px;
    box-shadow: inset 0px -11px 18px 8px #0A0A0A, inset 0px 12px 54px 12px #0A0A0A;
    padding-bottom: 100px;
    margin-top: -1px;
}
.rules .content {
    position: relative;
}
.rules-title {
    font-size: 2.25em;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

/*.rules-block-inner::before {
    position: absolute;
    content: '';
    z-index: 1;
    width: 1167px;
    background: rgba(0, 0, 0, 0.4);
    filter: blur(67px);
    height: 357px;
}*/
.circle-block__item {
    display: flex;
    margin-top: 21px;
    position: relative;
    z-index: 1;
}
.rule-description {
    color: #fff;
    font-size: 1.125em;
    font-weight: 400;
    margin-left: 10px;
}
.warning {
    position: absolute;
    width: 185px;
    height: 104px;
    left: 10px;
    top:-60px;
    transform: rotate(-0.57deg);
}

.money1 {
    position: absolute;
    width: 94px;
    left: 50%;
}


/* SECTION VIDEOS */

.videos {
    background: #0A0A0A;
    padding-top: 95px;
    padding-bottom: 95px;
    margin-top: -1px;
}
.videos-title {
    font-size: 2.25em;
    color: #fff;
    font-weight: 500;
}
.videos-block {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}
.videos-block video {
    box-sizing: border-box;
    border-radius: 30px;
}
.vsc-controller {
    display: none;
}
/* PHOTOS SECTION */

.photos {
    background: #0A0A0A;
    padding-bottom:100px;
    
}
.photos-title {
    font-size: 2.25em;
    color: #fff;
    font-weight: 500;
}



/*DR-PACK*/
.dr-pack .price-block {
    flex-wrap: wrap;
}
.dr-pack .price-block-description
{
    min-width: 315px;
    width: 30%;
    margin: 10px auto;
    padding:35px;
    height: 550px;
}
.dr-pack .price-description-content {
    width: 100%;
    line-height: 1;
}
.dr-pack li {
    margin-bottom: 10px;
    list-style-type: none;
}

.dr-pack .price-desc-cost {
    font-size: 16px;
    margin-top: 20px;
}

/* SECTION PRICE */

.price {
    background: url('../images/bgPrice.jpg') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    box-shadow: inset 0px 10px 35px 7px #0A0A0A, inset 0px -20px 40px 11px #0A0A0A;
    padding-bottom: 37px;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}
.price .content {
    position: relative;
}
.price-block {
    display: flex;
    justify-content: space-between;
}


.contacts-block-1 {
    background: url('../images/bgNumber.jpg') no-repeat;
    background-size: 100%;
}
.contacts-block {
    z-index: 3;
    position: relative;
}
.contacts-block-2 {
    background: url('../images/bgSendForm.jpg') no-repeat;
    text-align: center;
    padding: 45px 126px 44px 126px;
    background-size: 100%;
    position: relative;
    top: -85px;
    left: -60px;
    z-index: 2;
}
.price-block-description {
    background: rgba(118, 118, 118, 0.25);
    border: 1px solid #FCFCFC;
    box-sizing: border-box;
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 76px 64px 148px 48px;
    height: 600px;
    position: relative;
    z-index: 1;
    margin:10px auto;
}
.price-description-content {
    width: 432px;
}
.price-title {
    font-weight: 500;
    color: #fff;
    font-size: 2.5em;
    text-align: center;
}
.price-desc-cost {
    color: #fff;
    font-weight: 400;
    font-size: 1.125em;
    margin-top: 41px;
}
.price-desc-cost span {
    color: #F06C4F;
}
.price-desc-time {
    color: #fff;
    font-weight: 400;
    font-size: 1.125em;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 5px;
    margin-top: 5px;
}
.price-desc-time span {
    color: #F06C4F;
}
.price-description-content h4 {
    color: #fff;
    font-weight: 400;
    font-size: 1.125em;
    margin-top: 23px;
}
.price-description-content .price-desc-time:last-child {
    margin-top: 20px;
}
.contacts-block-1 {
    padding: 144px 149px 144px 223px;
    font-size: 1.25em;
    display: inline-block;
    font-weight: 500;
}
#telephone {
    font-size: 1.125em;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #000000;
    background-color: transparent;
    font-weight: 400;
    color: #000000;
    text-align: center;
    display: block;
    padding-bottom: 5px;
    margin: 0 auto;

}
#telephone::placeholder {
    color: #000000;
    font-weight: 300;
}
#typeOfGame {
    font-size: 1.125em;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #000000;
    background-color: transparent;
    font-weight: 400;
    color: #000000;
    text-align: center;
    padding-bottom: 5px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}
#typeOfGame::placeholder {
    color: #000000;
    font-weight: 300;
}
input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}
input[type="text"]:focus { outline: none; }
input[type="tel"]:focus { outline: none; }
.send-form {
    background: linear-gradient(97.92deg, rgba(239, 42, 42, 0.15) 9.99%, rgba(190, 151, 151, 0.15) 101.13%);
    border: 1px solid #000000;
    border-radius: 27px;
    padding: 18px 38px 17px 39px;
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
}
.send-form::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(97.92deg, rgba(239, 42, 42, 0.2) 9.99%, rgba(222, 65, 65, 0.2) 101.13%);
    z-index: -1;
    transition: opacity 0.3s linear;
    opacity: 0;
    border-radius: 27px;
}
.send-form:hover::before {
    opacity: 1;
  }

.person-data {
    font-size: 0.75em;
    font-weight: 400;
    position:absolute;
    bottom:20px;

}
.blue {
    width: 272px;
    height: 276px;
    position: absolute;
    bottom: -15px;
    left: 45%;
    z-index: 4;
}
.red {
    position: absolute;
    width: 158.34px;
    height: 154.5px;
    right: 14px;
    top: -65px;
    z-index: 3;
}
.paper1 {
    position: absolute;
    width: 140px;
    bottom: 60px;
    left: -53px;
}
.paper2 {
    position: absolute;
    width: 80px;
    top: 12px;
    left: -32px;
}
.paper3 {
    width: 113px;
    position: absolute;
    left: 35.5%;
    bottom: 190px;
}
.paper4 {
    width: 53px;
    position: absolute;
    left: 40%;
    top: 75px;
}
.paper5 {
    width: 255px;
    position: absolute;
    right: -77px;
    bottom: 0;
    opacity: 0.4;
}
.paper6 {
    display: none;
    position: absolute;
    width: 111px;
}
.red1 {
    position: absolute;
    display: none;
}
.blue1 {
    position: absolute;
    display: none; 
}
/* party-area SECTION */

.party-area {
    background-color: #0A0A0A;
    padding-top: 80px;
    padding-bottom: 30px;
    margin-top: -1px;
}
.party-area .content {
    position: relative;
}
.party-area-title {
    font-weight: 500;
    color: #fff;
    font-size: 2.25em;
}
.party-area-description {
    color: #fff;
    font-size: 1.125em;
    font-weight: 400;
    margin-top: 35px;
    line-height: 21.94px;
}
.party-area-description span {
    color: #FF7171;
}
.num20 {
    height: 283px;
    width: 520px;
    position: absolute;
    right: 0px;
    top: -40px;
}
.mask {
    position: absolute;
    width: 200px;
    bottom: 50px;
    right: 0;
    display: none;
}
.replAnimate {
    transform: translateX(106px);
    transition: 0.4s ease-in-out;
    -webkit-animation: rotate 10s infinite linear;
}

/* ROOMS SECTION */
.rooms {
    background: url('../images/scene.jpg') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    box-shadow: inset 0px 57px 25px 33px rgba(0, 0, 0, 0.9), inset 0px -17px 24px 25px rgba(0, 0, 0, 0.9);
    padding-top: 100px;
    padding-bottom: 50px;
    box-shadow: inset 0px 57px 25px 33px #0A0A0A, inset 0px -17px 24px 25px #0A0A0A;
    margin-top: -1px;
}
.slide-1 {
    display: none;
}
.slide-1 .owl-dots {
    display: none !important;
}
.slide-2 {
    display: none !important;
}
/* .slide-2 .owl-stage .owl-item:first-child {
    background: url('../images/room1.png') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.slide-2 .owl-stage .owl-item:nth-child(2) {
    background: url('../images/room2.png') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.slide-2 .owl-stage .owl-item:last-child {
    background: url('../images/room3.png') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.slide-2 .owl-image-2 {
    background: url('../images/room2.png') no-repeat;
}
.slide-2 .owl-image-3 {
    background: url('../images/room3.png') no-repeat;
} */
/* .slide-2 .owl-item {
    height: 300px;
} */
.slide-2 .owl-dots {
    display: none;
}
.pull-block {
    display: none;
    color: #ED447D;
    font-size: 1.125em;
    font-weight: 400;
    margin-top: 20px;
}
.pullArrow {
    margin-left: 10px;
}

/* FOOTER */
.footer-menu a {
    color:grey;
}
.footer-menu a:after {
    content:" ✦ ";
}

footer {
    background-color: #0A0A0A;
    padding-bottom: 79px;
    margin-top: -1px;
}
footer .content {
    padding-top: 48px;
}
.footer-media {
    display: flex;
    justify-content: space-between;
}
.footer-media-right {
    width:50%;
    min-width:290px;
}
.socials-title {
    font-size: 1.125em;
    color: #fff;
    font-weight: 500;
}
.socials-links {
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.footer-contacts-title {
    font-size: 1.125em;
    color: #fff;
    font-weight: 500;
}
.footer-contacts-description {
    font-size: 1em;
    color: #fff;
    font-weight: 400;
    margin-top: 16px;
    line-height: 19.5px;
    cursor: text;
}

/* BURGER */

.burger {
    display: none;
}
.burger.v-visible {
    border: none !important; 
}
.burger-close.v-visible {
    border: none !important;
}
.burger-menu {
    display: none;
    top: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0s;
    background-color: #2B2B2B;
    background-size: 100%;
    position: fixed;
    left: 0;
    list-style: none;
    z-index: 99;
    text-align: center;
}
.burger-menu-inner {
    background: url('../images/bgBurger.png') no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    padding-top: 79px;
}
.burger-close {
    visibility: hidden;
    border: none;
}

.active {
    display: block;
    top:0;
}

.burger-navbar {
    display: inline-block;
}
.burger-navbar__item {
    border-bottom: 1px solid #fff;
    width: 210px;
    padding-bottom: 20px;
    padding-top: 20px;
}
.burger-navbar .burger-navbar__item:first-child {
    border-top: 0;
}
.burger-navbar .burger-navbar__item:last-child {
    border-bottom: 0;
}
.burger-navbar__item a {
    font-weight: 300;
    color: #fff;
    font-size: 1.125em;
}
.burger-address-item a {
    font-weight: 300;
    color: #fff;
    font-size: 1.125em;
}
.burger-first-item {
    padding: 11px 23px 12px 25px;
    border-radius: 15px;
    border: 1px solid #fff;
    display: inline-block;
    transition: 0.5s ease-in-out;
    width: 243.5px;
}

.burger-second-item {
    visibility: hidden;
    transition: 0.2s ease-in-out;
    border: 0px solid transparent;
    width: 243px;
    margin: 0 auto;
    margin-top: -37px;
    padding-bottom: 13px;
}
.burger-third-item {
    visibility: hidden;
    transition: 0.4s ease-in-out;
    border: 0px solid transparent;
    width: 243px;
    margin: 0 auto;
    margin-top: -37px;
}
.burger-address-item img {
    margin-left: 11px;
    visibility: hidden;
}
.burger-first-item img {
    visibility: visible;
}
.burger-first-style {
    border-bottom: 0px solid transparent;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: 0.1s ease-in-out;
}
.burger-second-style {
    border-bottom: 0;
    border-top: 0;
    border-radius: 0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    width: 243.5px;
    margin: 0 auto;
    margin-top: 0;
    transition: 0.4s ease-in-out;
}
.burger-third-style {
    border-top: 0;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    width: 243.5px;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-bottom: 17px;
    margin-top: 0;
    transition: 0.4s ease-in-out;
}
.v-visible {
    visibility: visible;
    /*border-bottom: 1px solid #fff;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;*/
}
.v-visible .burger-first-style {
    border-bottom: 1px solid #fff;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px; 
}
.treug {
    display: none;
}

.questions-title {
    display: none;
    font-size: 1.125em;
    color: #fff;
    font-weight: 500;
}
.slide-3 {
    /* display: none !important; */
    margin-top: 45px;
}
.slide-3 .owl-dots {
    display: none;
}
.photos .pull-block {
    display: none;
}
/* party-wrapper */

.party-wrapper {
    background-color: #0A0A0A;
    display: none;
}
.colors1 {
    width: 500px;
}

.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.owl-next {
    margin-left: 144px;
}

/* CUSTOM ANIMATION  */
/* [data-aos="new-animation"] {
    transform: translate(0, 0);
    transition: 10s ease-in-out;
}
[data-aos="new-animation"].aos-animate {
    transform: translate(-70px, 0px);
    transition: 10s ease-in-out;
} */


.info {
    position: absolute;
    color: #a52020;
    margin-top: 5px;
    width: 212px;
    margin-left: 35px;
    margin-top: -30px;
    font-size:12px;

}
.person-margin {
    margin-top: 10px;
}
.cont-style {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.video {
    width: 100%;
    height: 364px;
    position: relative;
    background-position: center center;
}

.YoutubeBlock {cursor: pointer;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    height: 400px;
    position:relative;
}
.YoutubeBlock img {width: 100%;	height: 400px; object-fit: cover;}	

.video-play {
    background-image: url(/assets/images/play.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60px;
    width: 90px;
    top: 50%;
    left: 50%;
    margin-left: -45px;
    margin-top: -30px;
    position: absolute;
    border-radius: 21px;
    background-position: 50% 50%;
    cursor: pointer;
}
.video-play:hover {
      box-shadow: 0 0 12px 0 #000;
}

.video iframe {
    border: none;
}

.swiper-button-prev:after {
    display: none !important;
}
.swiper-button-next:after {
    display: none !important;
}
.swiper-arrow-cont {
    display: flex;
    justify-content: center;
}
.swiper-button-prev {
    left: auto;
    position: relative;
}
.swiper-button-next {
    right: auto;
    margin-left: 144px;
    position: relative;
}

@media screen and (max-width: 800px) {
    
    .header {
        background: none;
    }
    
    .mobile-header {
    background: url('../images/headerBackground-m.jpg') no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding-top: 33px;
    }   
}


/* TIME SECTION */
.time-paper1 {
    position: absolute;
  top: -70px;
  right: 355px;
  width: 100px;
  height: 100px;
  }
  .time-paper2 {
    position: absolute;
  bottom: -68px;
  left: 310px;
  width: 80px;
  height: 80px;
  }
  .time-red {
    position: absolute;
  top: -115px;
  left: 141px;
  width: 200px;
  height: 200px;
  }
  .time-blue {
    position: absolute;
  bottom: 40px;
  right: 70px;
  width: 150px;
  height: 150px;
  }
  .time {
    background-color: #0A0A0A;
    padding: 1px 0;
    position: relative;
    padding-bottom: 200px;
  }
  .time .content {
    position: relative;
  }
  .time span {
    font-family: 'small_pixel';
    font-size: 3em;
    margin: 0 10px;
    text-shadow: 0 0 15px #1bff00a3;
  }
  .time-title {
    color: #fff;
    font-size: 2.25em;
  font-weight: 500;
  }
  .time-block {
    color: #8ce78c;
    font-size: 1.125em;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  }
  .time-block__item {
    text-align: center;
    border: 1px solid #fff;
    padding: 60px 0;
    background: linear-gradient(180deg, rgb(38 37 37 / 57%) 0%, #000000 99.99%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #EBEBEB;
  border-radius: 20px;
  width: 375px;
  }
  .duration-trial {
    margin-top: 30px;
  }
  .time-ellipse {
    position: absolute;
  width: 300px;
  filter: blur(119px);
  background: rgba(66, 205, 31, 0.11);
  right: 0;
  top: 0;
  }
  .time-ellipse{width:320px;height:320px;}
@media (max-width:768px){.time-ellipse{width:220px;height:220px;}}

  @font-face { 
font-family: 'small_pixel'; 
src:  url('../fonts/small_pixel.woff') format('woff'),
/* url('../fonts/small_pixel.ttf') format('truetype');  -- optional legacy */
font-weight: normal; 
font-style: normal; 
font-display: swap;
}

.whatsapp {
    display:block; 
    margin:20px auto; 
    background-color:#43d854; 
    color:#fff; padding:10px; 
    max-width:250px; 
    border-radius:50px; 
    text-align:center; 
    text-shadow:0 0 5px black;
    font-size: 16px;
    font-weight: 300;
}

.mobile {
    display:none;
}
 
@media screen and (max-width: 1300px) {
    .time-block__item {
      width: 304px;
      padding: 40px 0;
    }
    .time span {
      font-size: 2.5em;

    }
    .time {
        padding-bottom: 200px;
    }
    .time-red {
        left: 0;
    }
  }
@media screen and (max-width:980px) {
.time-block__item {
  width: 235px;
  }
  .time-paper1 {
  right: 10px;
}
.time-paper2 {
  left: auto;
}
.time span {
    font-size: 2.1em;
}
}
@media screen and (max-width:800px) {
.time-block {
    display: block;
  }
  .time span {
    font-size: 2.5em;
}
  .time-block__item {
  width: auto;
  }
  .time-block__item:nth-child(2) {
    margin-top: 50px;
  }
  .time-block__item:nth-child(3) {
    margin-top: 50px;
  }
  .time-paper1 {
    right: 10px;
    }
    .time {
        background-color: #0A0A0A;
        position: relative;
        padding-top: 120px;
        margin-top: -150px;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
    }
    .rules-wrapper {
        margin-top: 0;
        padding-top: 0 !important;
    }
    .time-red {
        top:23px; 
        width: 165px;
        height: 165px;
    }
}
@media screen and (max-width:670px) {
  .time-red {
  left: auto;
  top: 35px;
    width: 165px;
    height: 165px;
}
.mobile {display:block}
}
@media screen and (max-width:500px) {
  .time-red {
  width: 160px;
  height: 161px;
  top:40px;
}
.rules-wrapper {
    margin-top: 0 !important;
}

}