/*
header
*/
.header-dop-breadcrumbs a{
color: #0000008F;
}
header {
  padding: 20px 0;
  font-family: "Corbel";
  background-color: #0c1247;
  backdrop-filter: blur(20px);
  color: #f5f5f7;
  height: 44px;
  transition: background-color 0.5s ease, color 0.5s ease;
  position: relative;
  z-index: 100;
  width: 100%;
}
.header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  height: 100%;
}
.right-icon svg path {
  transition: fill 0.5s ease;
}
.menu ul {
  display: flex;
}
.menu ul li {
  padding: 0 clamp(0px, calc(9.662vw + -74.2px), 20px);
  text-align: center;
  display: flex;
  align-items: center;
}
.menu ul li a {
  color: #f5f5f7;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: color 0.5s ease;
}
.right-icon {
  display: flex;
  gap: 20px;
}
.icon-header-style {
  width: 15px;
  height: 15px;
  color: white;
  transition: fill 0.5s ease;
}
/* Сабменю */
/* Стили для подменю */
.submenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: visibility 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  padding: 40px 22px 84px;
  z-index: 99;
}
li:hover .submenu-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.submenu-panel-content {
  max-width: 1024px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 16px;
  align-items: start;
  margin: 0 auto;
}
.submenu-panel-content-link {
  color: #000;
  font-family: "Corbel", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: left;
  transition: color 0.3s ease;
}
.submenu-panel-content-link {
  text-align: left !important;
  color: #000 !important;
}
.submenu-panel-content-link:hover {
  color: #2997ff;
}
/* Эффект ховера */
.menu ul li:hover .submenu-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
/* Исправленный селектор для хедера при ховере */
header:has(.menu ul li:hover) {
  background-color: #fff;
  color: #000;
}
/* Исправленные стили для ссылок и иконок при ховере */
.menu ul li:hover ~ .menu ul li a,
.menu ul li:hover .menu ul li a,
header:has(.menu ul li:hover) .menu ul li a,
header:has(.menu ul li:hover) .right-icon svg,
header:has(.menu ul li:hover) .icon-header-style {
  fill-opacity: 0.8;
  fill: black;
  color: rgb(110, 110, 115);
}
.menu ul li:hover .submenu-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu {
  display: none;
}
.submenu-panel-mobile {
  display: none;
}
.hamburger {
  display: none;
}
.col-w {
  color: #ffffff;
}
.main-banner-background {
  background-color: #cccccc;
  background-size: 100% 100% /*contain*/;
  height: 806px;
  /*height: 100%;     */
  background-position: left top;
  background-repeat: no-repeat;
}
.main-banner-text-wrapper h1 {
  color: #ffffff;
  font-family: Manrope !important;
  font-weight: 800 !important;
  font-size: clamp(64px, calc(6.597vw + 13.33px), 140px) !important;
  line-height: clamp(60px, calc(5.208vw + 20px), 120px) !important;
  letter-spacing: -0.28px !important;
  text-align: center !important;
  vertical-align: middle;
}
.main-banner-text-wrapper .page-banner-description {
  /*margin-top: clamp(250px, calc(1000px - 0.45 * 100vw), 450px);*/
  margin-top: clamp(350px, calc(1000px - 0.45 * 100vw), 450px);
}
.main-banner-text-wrapper .page-banner-price {
  font-size: clamp(14px, calc(1.563vw + 2px), 32px) !important;
  /*margin-top: 90px;*/
}
/**/
h2 {
  font-family: Corbel;
  font-weight: 700;
  font-size: 51.63px;
  line-height: 60px;
  letter-spacing: -0.28px;
  text-align: center;
  color: #202037;
  margin-top: 15px;
}
/*
СЕКЦИЯ 
ТАКТИЧЕСКИЕ 
ИГРЫ
*/
/* Сетка карточек */
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 карточки в строке */
  gap: 30px;
  padding: clamp(12px, calc(0.694vw + 6.67px), 20px);
}
/* Карточка */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  place-items: center;
}
/* Фото */
.card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 15px;
}
.card-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}
/* Заголовок */
.card-title {
  text-shadow: 0px 4px 4px #00000040;
  font-size: clamp(18px, 2.5vw, 36.72px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #1d1d1f;
}
/* Описание */
.card-description {
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.23px;
  color: #6e6e73;
  flex-grow: 1;
  width: 80%;
  padding-bottom: 20px;
}
/* Блок кнопок */
.card-buttons {
  display: flex;
  align-items: end;
  gap: 20px;
}
.card-buttons a,
.card-buttons button {
  width: 140px;
  height: 36px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.22px;
}
/*
SLIDER
Квест
*/
.main-slider-kvest svg,
.main-den-rozhdeniya-text-block-button-add-to-cart svg {
  fill: white;
  width: 20px;
  height: 28px;
}
.swiper-button-prev.kvest-prev,
.swiper-button-next.kvest-next {
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black !important;
  border-radius: 50px;
  width: 36px !important;
  height: 36px !important;
  background-color: #d2d2d7a3 !important;
  color: #0000008f;
  cursor: pointer;
  margin-top: 0 !important;
  top: 0 !important;
}
.kvest-main-swiper {
  width: 100%;
  height: 692px;
  position: relative;
}
.kvest-banner-content-title {
  font-family: Corbel;
  font-weight: 700;
  font-size: 51.63px;
  line-height: 60px;
  letter-spacing: -0.28px;
  text-align: center;
  vertical-align: middle;
  /*color: #202037;*/
  background-color: #0000008f;
  padding: 5px;
  border-radius: 60px;
   color: #ffffff;
  white-space: nowrap;
}
.kvest-main-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kvest-banner-content {
  position: absolute;
  top: 72.8%;
  left: 50%;
  transform: translateX(-50%);
}
.kvest-banner-content .icon-daleye-style {
  color: white;
}
.kvest-banner-buttons {
  margin-top: 29px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.kvest-thumb-swiper {
  margin-top: 20px;
  margin-bottom: 20px;
  height: max-content;
}
.kvest-thumb-swiper .swiper-slide {
  width: 417px;
  height: 236px;
  cursor: pointer;
}
.kvest-thumb-swiper img {
  position: relative;
  width: 100%;
  height: 100%;
}
.kvest-thumb-swiper-preview-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  font-family: Corbel;
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: -0.22px;
  vertical-align: middle;
  background-color: #0000008f;
  padding: 5px;
  border-radius: 20px;
  color: #ffffff;
  transform: translateX(-50%);
  white-space: nowrap;
}
/*
SLIDER
ACTIVNOSTI
*/
.rotate {
  transform: rotate(180deg);
}
.custom-swiper .swiper-button-prev.rotate {
  left: 50px !important;
}
.custom-swiper .swiper-button-next {
  right: 50px !important;
}
.custom-swiper .swiper-button-prev::after,
.custom-swiper .swiper-button-next::after {
  content: none;
}
.swiper-button-next,
.swiper-button-prev {
  color: rgba(34, 12, 64, 0) !important;
}
.main-slider-activnosti {
  margin: 0 auto;
  text-align: center;
}
.slider-wrapper-activnosti {
  position: relative;
  overflow: hidden;
  padding: 20px 0 10px;
  height: max-content;
}
.mySwiperActivnosti .swiper-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  opacity: 0.4;
}
.mySwiperActivnosti .swiper-slide-active {
  opacity: 1;
}
.mySwiperActivnosti .swiper-slide img {
  width: 100%;
  height: 692px;
  display: block;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  left: 74px;
  bottom: 66px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-family: Corbel;
  font-weight: 700;
  font-size: 50px;
  line-height: 22px;
  vertical-align: middle;
}
.swiper-pagination-activnosti {
  bottom: 8px !important;
  top: auto !important;
  position: absolute;
}
.swiper-pagination-bullet-active {
  background: #000000cc !important;
}
/* Дополнительные стрелки */
.slider-controls-activnosti {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 41px;
  width: 100%;
  position: relative;
}
.extra-prev,
.extra-next {
  border-radius: 50px;
  width: 36px !important;
  height: 36px !important;
  background-color: #d2d2d7a3 !important;
  color: #0000008f;
  cursor: pointer;
  margin-top: 0 !important;
  top: 0 !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #0000008f !important;
  font-weight: 800;
}
/*
SECTION
korporativ
*/
.main-den-rozhdeniya,
.main-korporativ {
  width: 100%;
  height: 692px;
  display: block;
  color: #ffffff;
  text-align: center;
}
.main-korporativ,
.main-den-rozhdeniya {
  background-color: #cccccc;
  background-position: center;
  background-size: 100% 100%;
  padding-top: 58px;
}
h2.main-korporativ-text-block-tittle,
p.main-korporativ-text-block-tittle,
h2.main-den-rozhdeniya-text-block-tittle {
  color: #ffffff;
}
.main-korporativ-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
h2.main-korporativ-text-block-tittle {
  font-weight: 800;
  font-size: 51.63px;
  line-height: 60px;
  letter-spacing: -0.28px;
  /*-webkit-text-stroke: 2px #000000;  Толщина и цвет обводки */
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  margin-top: 0;
}
p.main-korporativ-text-block-tittle {
  margin-top: 12px;
  font-weight: 800;
  font-size: 34px;
  line-height: 32px;
  letter-spacing: 0.2px;
 /* -webkit-text-stroke: 1.1px #000000;*/
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}
.main-korporativ-text-block-description {
  font-family: Corbel;
  font-weight: 800;
  font-size: 24px;
  line-height: 22px;
  letter-spacing: -0.22px;
  /*-webkit-text-stroke: 0.5px #000000;*/
  text-shadow:-1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  display: block;
  margin: 45px auto 0 auto;
  max-width: 469px;
}
.main-korporativ-text-block-button-wrapper,
.main-den-rozhdeniya-text-block-button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 42px;
  margin-top: 79px;
}
.main-korporativ-text-block-button-wrapper .button-border-style {
  color: white;
  padding: 10.5px 15px;
}
.main-den-rozhdeniya-text-block svg {
  fill: white;
  width: 20px;
  height: 28px;
}
/*
SECTION
den-rozhdeniya
*/
.main-den-rozhdeniya {
  padding-top: 417px;
  background-color: #000000;
  background-position: center;
}
.main-den-rozhdeniya-text-block {
  display: block;
}
.main-den-rozhdeniya-text-block-button-wrapper {
  gap: 12px !important;
}
.main-den-rozhdeniya-text-block-button-learn-more {
  background: #f5f5f7;
  color: #000000 !important;
}
/*
SECTION
Новости
*/

.main-slider-news {
  padding-bottom: 103px;
  height: max-content;
}
.mySwiperNEWS {
  margin-top: 29px;
}
.mySwiperNEWS .swiper-slide {
  text-align: center;
  width: 550px !important;
}
.mySwiperNEWS .swiper-slide img {
  width: 412px;
  height: 412px;
  border-radius: 30px;
}
.news-slide-text {
  max-width: 410px;
  margin: 32px auto;
}
.news-slide-text-title,
.news-slide-text-description {
  font-family: Corbel;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  letter-spacing: -0.37px;
  vertical-align: middle;
}
.news-slide-text-title {
  color: black;
  margin-bottom: 15px;
}
.news-slide-text-description {
  color: #000000b8;
}
/*
SECTION
FAQ
*/
.main-faq-slider {
  padding: 40px 0;
}
.main-faq-slider-title {
  padding: 0 120px 31px;
}
.main-faq-slider-title h2 {
  margin-top: 0;
  font-size: clamp(30px, calc(1.434vw + 23.99px), 51.52px);
  white-space: nowrap;
}
.main-faq-slider-title,
.main-faq-slider-title a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main-faq-slider-title a {
  max-width: 150px;
  color: #0066cc;
  font-family: Corbel;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.37px;
  vertical-align: middle;
  margin-top: 60px;
}
.faq-slider-wrapper {
  position: relative;
  padding-bottom: 30px;
  height: max-content;
}
.faq-slide-text {
  font-family: Corbel;
  font-weight: 800;
  font-size: 25.48px;
  /*line-height: 32px;*/
  line-height: clamp(25px, calc(0.608vw + 20.33px), 32px);
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #1d1d1f;
}
.faq-slide {
  min-height: 240px;
  background-color: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 28px clamp(12px, calc(1.042vw + 4px), 24px)
  clamp(5px, calc(1.649vw + -7.67px), 24px);
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
.faq-slide.open {
  max-height: 1000px;
}
.faq-slide-button {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background-color: white;
  font-size: 14px;
  text-align: right;
  cursor: pointer;
  position: absolute;
  bottom: /*24px*/ clamp(5px, calc(1.649vw + -7.67px), 24px);
  right: 24px;
  border: none;
}
.faq-slide-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s ease;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 10px;
  color: #333;
}
.faq-slide.open .faq-slide-answer {
  max-height: 500px;
  margin-top: 12px;
  margin-bottom: 35px;
}
.faq-slide-button svg {
  transition: transform 0.5s ease;
}
.faq-slide.open .faq-slide-button svg {
  transform: rotate(-90deg);
}
/* Стрелки управления */
.faq-slider-controls {
  margin-top: 20px;
  margin-right: 120px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  height: 37px;
}
.swiper-button-prev-faq,
.swiper-button-next-faq {
  position: relative !important;
  border-radius: 50px;
  width: 36px !important;
  height: 36px !important;
  background-color: #d2d2d7a3 !important;
  color: #0000008f;
  cursor: pointer;
  margin-top: 0 !important;
  top: 0 !important;
}
.swiper-button-prev-faq {
  right: 0 !important;
}
.swiper-button-next-faq {
  left: 0 !important;
  right: 0 !important;
}
/*
FOOTER
*/
footer a {
  color: #000000b8;
}
footer .footer-wrapper {
  background-color: #f5f5f7;
padding: 12px clamp(10px, calc(9.549vw + -63.33px), 120px) 53px;
 /* padding: 12px clamp(10px, calc(9.549vw + -63.33px), 120px) 53px 0;*/
}
footer .footer-social-links-wrapper {
  text-align: right;
}
footer .footer-social-links-wrapper h3 {
  font-family: Corbel;
  font-weight: 700;
  /*font-size: 51.52px;*/
  font-size: clamp(35px, calc(1.434vw + 23.99px), 51.52px);
  line-height: 60px;
  letter-spacing: -0.28px;
  vertical-align: middle;
  padding-bottom: 20px;
}
footer .footer-social--links-img{
  width: clamp(40px, calc(4.34vw + 6.67px), 90px);
  height: clamp(40px, calc(4.34vw + 6.67px), 90px);
}
footer .footer-social--links-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-social--links img:hover {
  transition: all 0.5s ease;
  transform: scale(1.2);
}
footer .footer-social--links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 19px;
  padding-bottom: 20px;
}
footer .footer-menu-wrapper {
  margin: 0 auto;
  max-width: 992px;
  border-top: 1px #00000029 solid;
  padding: 34px 0 0;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/*
.footer-section h4 {
  font-family: Corbel;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  vertical-align: middle;
  color: black;
}*/
.footer-section-header{
   font-family: Corbel;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  vertical-align: middle;
  color: black;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  font-family: Corbel;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  vertical-align: middle;
  color: #000000b8;
}
/**/
.footer-contact {
  font-family: Corbel;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  vertical-align: middle;
  color: #0000008f;
}
.footer-contact-top {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-contact-middle {
  margin: 28px 0 7px 0;
  border-top: 1px #00000029 solid;
}
.footer-contact-bottom-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-contact-bottom-wrapper-column-one {
  max-width: 267px;
}
.footer-contact-bottom-wrapper-column-two {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
}
.footer-contact-bottom-wrapper-column-tree {
  max-width: 197px;
}
.footer-content {
  color: #0000008f;
  margin: 0 auto;
  max-width: 992px;
  padding: 0 10px 31px;
}
.footer-content h2 {
  color: #0000008f;
  font-family: Corbel;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.12px;
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
}
.footer-content p {
  font-size: 12px;
}
.footer-content li{
  font-size: 12px;
}
.mobile_block_logo{
  display: none;
}
/**/
.scroll-to-top {
    position: fixed;
    bottom: 55px;
    right: 130px;
    display: none;
    background: #ef3000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
}