html {
  scroll-snap-type: y proximity !important;
}
.header {
  position: fixed;
  background: #000;
}

.promo_section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 2;
  --promo-cursor-x: 50%;
  --promo-cursor-y: 50%;
}
.promo_section .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 3em;
  z-index: 1;
}
.promo_section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.promo_section .promo_section__head {
  text-transform: uppercase;
  font-size: 4.625em;
  font-family: Monument Extended, Arial Black;
  font-weight: 700;
  max-width: 15.5555555556em;
  letter-spacing: 0.01em;
  word-spacing: 0;
  margin-bottom: 0;
}
.promo_section__title{
  margin-bottom: 35px;
  font-size: 32px;
  font-family: Gilroy, Georgia, Times, 'Times New Roman', serif;
}
.promo_section .promo_section__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
.promo_section .promo_section__cursor {
  position: absolute;
  top: var(--promo-cursor-y);
  left: var(--promo-cursor-x);
  width: 9.5em;
  height: 9.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  color: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 0.875em;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.promo_section.promo_section--cursor-enabled .promo_section__cursor {
  display: flex;
}
.promo_section.promo_section--cursor-active .promo_section__cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.promo_section.promo_section--cursor-paused .promo_section__cursor {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}
.age-button{
  margin: 0 !important;
}
.red-gradient-button {
  font: inherit;
  background: linear-gradient(88.09deg, #200510 -33.47%, #9A1515 95.4%);
  border: none;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1em;
  font-weight: 500;
  width: 22.9375em;
  max-width: 100%;
  min-height: 3.5em;
  padding: 0 0.9625em 0 0.7625em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
  transition: background 0.3s ease;
  cursor: pointer;
}
.red-gradient-button:hover {
  background: linear-gradient(268.09deg, #200510 -27.62%, #9A1515 101.25%);
}
.red-gradient-button svg {
  width: 1.5em;
  height: 1.5em;
}

.grey-gradient-button {
  font: inherit;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  border: none;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1em;
  font-weight: 500;
  width: 22.9375em;
  max-width: 100%;
  min-height: 3.5em;
  padding: 0 0.9625em 0 0.7625em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.grey-gradient-button:hover {
  background: #FFFFFF;
  color: #000000;
}
.grey-gradient-button:hover svg {
  fill: #000000;
}
.grey-gradient-button:hover svg path {
  fill: #000000;
}
.grey-gradient-button svg {
  width: 1.5em;
  height: 1.5em;
}

.bg-gradient {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5em 1em;
  background-image: url(../img/front/products_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 2;
}
.bg-gradient .bg-gradient-inner {
  flex-shrink: 0;
  overflow: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bg-gradient .bg-gradient-inner::-webkit-scrollbar {
  display: none;
}
.bg-gradient .bg-gradient-inner .small-heading {
  text-align: center;
}

.moving {
  overflow: hidden;
  flex-shrink: 0;
}
.moving.show * {
  transform: translateY(0);
  opacity: 1;
}
.moving * {
  transform: translateY(10em);
  opacity: 0;
  transition: transform 1s ease, opacity 0.5s ease;
}

.mt-100 {
  margin-top: 80vh;
  margin-top: 80dvh;
}

.bg-gradient {
  clip-path: inset(0);
  will-change: clip-path;
}

.bg-gradient--curve {
  --bg-curve-center: 0px;
  --bg-curve-side: 0px;
  clip-path: polygon(0 0, 25% var(--bg-curve-side), 50% var(--bg-curve-center), 75% var(--bg-curve-side), 100% 0, 100% 100%, 0 100%);
}

.is-expand-active {
  max-width: 100% !important;
  padding-top: 7em !important;
  transition: .3s linear;
}

.games_section {
  position: relative;
  padding: 5em 0;
  margin-top: 0;
  z-index: 2;
  transform-origin: center center;
  will-change: transform;
}

.games_section__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  margin-top: 1.5em;
}
.games_section__link.hidden {
  display: none;
}
.games_section__link svg {
  width: 1.5em;
  height: 1.5em;
  fill: #FFFFFF;
}

.small-heading {
  font-family: Monument Extended, Arial Black;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: #FFFFFF;
  text-align: center;
}

.section-description {
  max-width: 40em;
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-weight: 400;
}

.products-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1em;
  max-height: 100%;
}
.products-wrapper.not-scrolled {
  margin-top: 7em;
}
.products-wrapper .products-list {
  margin-top: 3.5em;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-wrapper .products-list::-webkit-scrollbar {
  display: none;
}
.products-wrapper .products-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em;
  padding: 0;
  margin: 0;
  list-style: none;
}


.products-wrapper .products-list ul li:hover:nth-child(1) a svg {
  left: -0.5em;
  transform: rotateZ(360deg);
}
.products-wrapper .products-list ul li:hover:nth-child(2) a svg {
  left: 6.5em;
  transform: rotateZ(360deg);
}
.products-wrapper .products-list ul li:hover:nth-child(3) a svg {
  left: 3.9em;
  transform: rotateZ(360deg);
}
.products-wrapper .products-list ul li:hover:nth-child(4) a svg {
  left: 0.6em;
  transform: rotateZ(360deg);
}
.products-wrapper .products-list ul li:hover:nth-child(5) a svg {
  left: 1.7em;
  transform: rotateZ(360deg);
}
.products-wrapper .products-list ul li:hover:nth-child(6) a svg {
   left: 1.2em;
   transform: rotateZ(360deg);
 }

.products-wrapper .products-list ul a {
  position: relative;
  font-family: Monument Extended, Arial Black;
  font-weight: 700;
  font-size: 3.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.products-wrapper .products-list ul a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.5s ease, transform 0.5s ease;
}
.products-wrapper .products-list ul a:hover {
  color: #FFFFFF;
}
.products-wrapper .products-list ul a:hover svg {
  opacity: 1;
}

.parallax-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.parallax-wrapper.active {
  opacity: 1;
}
.parallax-wrapper .parallax-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}
.parallax-wrapper .parallax-video .mob-only {
  display: none;
}
.parallax-wrapper .parallax-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-wrapper .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.parallax-wrapper .parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0) scale(1.15);
  will-change: transform;
}

.advantages_section {
  padding-left: 5em;
}

.advantages-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5em;
}
.advantages-wrapper .advantage-item {
  padding: 2em;
  background: rgba(29, 29, 29, 0.6);
  backdrop-filter: blur(44px);
  width: var(--adv-item-width, 40em);
  min-width: 0;
  margin-right: var(--adv-item-gap, 0.5em);
  flex: 0 0 auto;
  overflow: hidden;
  transform-origin: right center;
  transition: width 0.6s ease, margin 0.6s ease, transform 0.6s ease, padding 0.6s ease;
  will-change: width, transform;
}
.advantages-wrapper .advantage-item .advantage-item__content {
  width: 36em;
}
.advantages-wrapper .advantage-item.is-collapsed {
  width: 0;
  padding: 0;
  margin-right: 0;
  transform: scaleX(0);
}
.advantages-wrapper .advantage-item.is-collapsed .advantage-item__title {
  transform: translateX(-50%) rotateZ(-90deg);
  opacity: 0;
}
.advantages-wrapper .advantage-item .advantage-item__title {
  font-family: Monument Extended, Arial Black;
  font-weight: 700;
  font-size: 1.25em;
  margin-top: 1em;
  margin-bottom: 2.5em;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5em;
  transform: translateX(0) rotateZ(0);
  opacity: 1;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.advantages-wrapper .advantage-item .advantage-item__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3em;
}

.advantages-promo {
  height: 100%;
  width: var(--adv-promo-width, 0px);
  display: flex;
  align-items: center;
  gap: 2em;
  flex-shrink: 0;
  overflow: hidden;
  transition: width 0.5s ease;
}
.advantages-promo.complete {
  width: calc(100% - 5em);
  justify-content: center;
}
.advantages-promo.complete .advantages-card span {
  opacity: 1;
  transform: translateX(0);
}
.advantages-promo.complete .advantages-card svg {
  transform: translateX(50%);
}
.advantages-promo.complete .advantages-title {
  opacity: 1;
  transform: translateX(0);
}
.advantages-promo .advantages-title {
  font-family: Monument Extended, Arial Black;
  font-weight: 700;
  font-size: 4.5em;
  text-transform: uppercase;
  max-width: 20em;
  color: #FFFFFF;
  opacity: 0;
  transform: translateX(200%);
  transition: opacity 1s ease, transform 2s ease;
}
.advantages-promo .advantages-card {
  position: relative;
  width: 34.5em;
  background: #191919;
  padding: 1em 0;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  height: 100%;
  max-width: 34.5em;
  overflow: hidden;
}
.advantages-promo .advantages-card svg {
  min-width: 34.5em;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s ease;
}
.advantages-promo .advantages-card span {
  position: absolute;
  bottom: 2em;
  left: 2em;
  color: rgba(255, 255, 255, 0.5);
  transform: translateX(-100%);
  transition: opacity 0.5s ease, transform 1s ease;
  opacity: 0;
}

.partners-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;

}
.partners-section {
  position: relative;
}

.partners-section::before,
.partners-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-section::before {
  left: 0;
  background: linear-gradient(to right, #1a1c1e 0%, transparent 100%);
}

.partners-section::after {
  right: 0;
  background: linear-gradient(to left, #1a1c1e 0%, transparent 100%);
}
.warning-message{
  transform: translateY(10px);
}

.partners-track {
  display: flex;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em;
  border: 1px solid #565656;
  width: 250px;
  box-sizing: border-box;
  margin-right: 2em;
}
.track-right{
  margin-bottom: 20px;
}
.partner-item img {
  width: 100%;
  object-fit: contain;
  height: 30px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--offset)); }
}

.awards-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 16em;
  margin-top: 1em;
}
.awards-wrapper .award-item {
  max-width: 7em;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.awards-wrapper .award-item span {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
}
.awards-wrapper .award-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.awards-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.awards-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.awards-track:hover {
  animation-play-state: paused;
}

.award-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 80px; /* вместо gap на треке */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* CONTACT ===========================*/
/* ===== CONTACTS SECTION ===== */
.contacts-section {
  position: relative;
  padding-bottom: 60px;
}

/* Заголовок CONTACTS */


/* Общий лейаут: форма слева, карточки справа */
.contacts-layout {
  /*display: grid;*/
  /*grid-template-columns: 3fr 4fr;*/
  /*gap: 20px;*/
  /*margin-top: 40px;*/
  /*align-items: stretch;*/
  /*max-width: 1600px;*/
  /*width: 100%;*/
  padding: 0 15px;
}

.contacts-layout__wrapper{
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.contacts-layout__column{
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.contact-column__item{
  /*padding: 50px 50px 40px 36px;*/
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.contacts-layout__item {
  flex: 1;
}
.contacts-layout__item .contact-card {
  height: 100%;
  background: rgba(255,255,255,0.03);
  padding: 50px 40px 36px 50px;
  box-sizing: border-box;
}

.panel-left {
  background: rgba(255,255,255,0.03);
  padding: 50px 40px;
  justify-content: flex-start; /* контент сверху, не по центру */
}


.contacts-panel-title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.contacts-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 40px !important;
}

.contacts-form-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 65px;
}

.contacts-form-panel .form__input,
.contacts-form-panel .form__check,
.contacts-form-panel .form__submit {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.contacts-form-panel .form__input {
  margin-bottom: 20px;
}
.contacts-submit {
  margin-top: 50px;
}

.contacts-submit .red-gradient-button {
  width: 100%;
  justify-content: space-between;
  padding: 18px 24px;
}

/* ---- ПРАВАЯ СЕТКА КАРТОЧЕК ---- */
.contacts-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  padding: 50px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 160px;
}

/* Убираем лишние границы */
.contact-card:nth-child(2),
.contact-card:nth-child(4) {
  border-right: none;
}

.contact-card:nth-child(3),
.contact-card:nth-child(4) {
  border-bottom: none;
}

.contact-card__title {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  padding-left: 10px;
}

.contact-card .contacts-divider {
  margin-bottom: 20px;
}

.contact-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.row-card{
  margin-bottom: 36px;
}
.contact-card__label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}

.contact-card__link {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.contact-card__link:hover {
  color: #C22019;
  text-decoration-color: #C22019;
}

.contact-card__or {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.popup__description a:after{
  border-color: #FFFFFFB2;
}
.button__inner_wrap{
  font-size: 16px;
  font-weight: 600;
}
.popup__wrapper{
  max-width: 730px;
}
.popup__description{
  font-size: 18px;
}
.popup__description span{
  font-size: 18px;
}
.popup__title{
  font-size: 18px;
  font-weight: 400;
}
.popup__title span{
  font-size: 18px;
}
.popup__title span b{
  color: #C22019;
}
.popup__button_no .button__arrow_svg svg path {
  stroke: #ffffff;
}

.popup__button_no .button__arrow_svg svg {
  width: 18px;
  height: 18px;
}
.grey-gradient-button .button__arrow_svg svg,
.button--black_hover .button__arrow_svg svg {
  width: 1.5em;
  height: 1.5em;
}
.button-ages{
  margin-top: -1px;
}
.button-left{
  margin-top: 15px;
}
.button-cookies-gray{
  margin-top: 0;
}
.grey-gradient-button:hover .button__arrow {
  right: 0;
  position: relative;
}

.cookies-button{
  font-family: Gilroy, Georgia, Times, 'Times New Roman', serif;
  display: flex;
  align-items: center;
  width: 90%;
  font-weight: 600;
}

.grey-gradient-button .button__arrow_svg svg path,
.button--black_hover .button__arrow_svg svg path {
  stroke: #ffffff;
}

.cookie-button{
  background: #3d3d3d;
}
.button-cookie-consent{
  display: flex;
  align-content: center;
}

.red-gradient-button .button__arrow_svg svg path {
  stroke: #ffffff;
}
.popup__settings_orange{
  span{
    color: #C22019;
  }
}
.popup__close:hover{
  background: #C22019 !important;
}


/* ---- КНОПКА SCROLL-TO-TOP ---- */
.contacts-scroll-top {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}

.contacts-scroll-top:hover {
  background: #C22019;
  border-color: #C22019;
}
.header__sing_in__client{
  display: none;
}
.header__socials__icons{
  display: none;
}
.promo_section__button__menu{
  display: none;
}
.games_section__link{
  display: none;
}
.footer__sing_in_item{
  transition: all .2s linear;

}
.footer__sing_in_item:hover{
  background: #444444;
  color: #fff !important;
  opacity: 1 !important;
}
/* ---- АДАПТИВ ---- */

@media (max-width: 1723px) {
  .contacts-layout__column{
    flex: 0 1 480px;
  }
  .panel-left{
    padding: 30px;
  }
  .contact-card{
    padding: 30px !important;
  }
}
@media (max-width: 1200px) {
  .contacts-layout__wrapper {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 10px;
    justify-content: space-between;
  }

  .contacts-layout__column:nth-child(1) {
    flex: 0 1 100%;
  }

  .contacts-layout__column:nth-child(2),
  .contacts-layout__column:nth-child(3) {
    flex: 0 1 calc(50% - 5px);
    row-gap: 0; /* убираем gap, gap будет у grid */
  }

  /* Превращаем две колонки в единую grid-сетку 2×2 */
  .contacts-layout__column:nth-child(2),
  .contacts-layout__column:nth-child(3) {
    display: contents; /* колонки "исчезают", их дети выходят наружу */
  }

  .contacts-layout__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .contacts-layout__column:nth-child(1) {
    grid-column: 1 / -1; /* форма на всю ширину */
  }

  .contacts-layout__item {
    display: flex;
    flex-direction: column;
  }

  .contacts-layout__item .contact-card {
    flex: 1;
  }
}
/* Планшет широкий — форма + карточки рядом */
@media (max-width: 1024px) {
  .contacts-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contacts-form-panel {
    padding: 28px 32px 32px;
  }

  .contacts-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1000px) {
  .header__menu{
    order: 0 !important;
  }
  .header__sing_in{
    display: none;
  }
  .header__mini_links{
    display: none;
  }
  .header__socials{
    display: none;
  }

  .header__socials__icons{
    display: flex;
    column-gap: 20px;
  }
  .login-btn{
    margin-top:0 !important;
    width: auto !important;
    border: none !important;
  }
  .header__sing_in{
    order: 0 !important;
  }

  .header__sing_in__client{
    display: inline-block;
    margin-right: 10px;
  }
  .promo_section__button__menu{
    display: flex;
    column-gap: 5px;
  }
}

/* Планшет узкий — форма сверху, карточки 2×2 снизу */
@media (max-width: 960px) {
  contacts-layout__wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .contacts-layout__column {
    flex: 1 1 100%;
  }

  .panel-left {
    padding: 36px 28px;
  }

  /* Пересбрасываем границы для нового порядка */
  .contact-card:nth-child(2),
  .contact-card:nth-child(4) {
    border-right: none;
  }

  .contact-card:nth-child(3),
  .contact-card:nth-child(4) {
    border-bottom: none;
  }
}
@media (max-width: 600px) {
  .contacts-layout__wrapper {
    grid-template-columns: 1fr;
  }

  .contacts-layout__column:nth-child(1) {
    grid-column: 1;
  }
}
@media (max-width: 502px){
  .promo_section__button__menu{
    max-width: 300px;
  }
  .header__menu_item{
    font-size: 16px !important;
    margin-bottom: 15px;
  }
  .header-signin-title{
    font-size: 16px;
  }
}

/* Мобайл — всё в 1 колонку */
@media (max-width: 480px) {
  .contacts-layout__item .contact-card,
  .contact-card {
    padding: 28px 20px;
  }

  .panel-left {
    padding: 28px 20px;
  }
}
/* CONTACT ===========================*/



.request-section__wrapper .demo_request__thank {
  height: 101%;
}
.request-section__wrapper .demo_request__thank .demo_request__thank_head {
  font-family: Monument Extended, Arial Black;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1em;
}
.request-section__wrapper .form-toggler {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2em;
}
.request-section__wrapper .form-toggler button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  padding-bottom: 1em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
}
.request-section__wrapper .form-toggler button.active {
  color: #FFFFFF;
  border-bottom: 3px solid #FFFFFF;
}
.request-section__wrapper .form-toggler button.active::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background: #FFFFFF;
}
.request-section__wrapper .form-item {
  display: none;
}
.request-section__wrapper .form-item.is-active {
  display: block;
}
.request-section__wrapper .form__description {
  margin: 2em 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
}
.request-section__wrapper form {
  width: 100%;
  max-width: 35em;
  margin: 0;
}
.request-section__wrapper form .google-description {
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6em;
}
.request-section__wrapper form .form__submit {
  width: 100%;
}
.request-section__wrapper form .form__submit button {
  width: 100%;
}

.hidden-overflow-x {
  overflow-x: hidden;
}

.footer {
  position: relative;
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  .games_section {
    transform: none !important;
  }
}
@media (max-width: 768px) {
  .bg-gradient {
    min-height: auto;
    height: auto;
    padding: 5em 1em;
    width: 100%;
    max-width: 100%;
    font-size: 10px;
  }
  .moving {
    font-size: 14px;
  }
  .promo_section {
    height: 90vh;
    height: 90dvh;
    font-size: 10px;
  }
  .promo_section .promo_section__button {
    width: 100%;
  }
  .promo_section .promo_section__button a {
    width: 100%;
  }
  .games_section {
    margin-top: -5em !important;
  }
  .games_section__link {
    display: none;
  }
  .parallax-wrapper .parallax-video .mob-only {
    display: block;
  }
  .parallax-wrapper .parallax-video .desk-only {
    display: none;
  }
  .mt-100 {
    margin-top: 40vh;
    margin-top: 40dvh;
  }
  .awards-wrapper {
    flex-wrap: wrap;
  }
  .advantages-wrapper {
    flex-direction: column;
  }
  .advantages-wrapper .advantage-item {
    margin-right: 0 !important;
    width: 100% !important;
    margin-bottom: 0.5em;
    background: transparent;
    backdrop-filter: unset;
    transition: height 0.6s ease, margin 0.6s ease, transform 0.6s ease, padding 0.6s ease;
  }
  .advantages-wrapper .advantage-item .advantage-item__description {
    display: none;
    margin-bottom: 0;
    font-size: 1.4em;
  }
  .advantages-wrapper .advantage-item .advantage-item__title {
    font-size: 2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  .advantages-wrapper .advantage-item.pre-collapsed {
    height: auto;
  }
  .advantages-wrapper .advantage-item.pre-collapsed .advantage-item__description {
    display: block;
    margin-bottom: 3em;
  }
  .advantages-wrapper .advantage-item.pre-collapsed .advantage-item__title {
    margin-bottom: 2.5em;
    color: #FFFFFF;
  }
  .advantages-wrapper .advantage-item.is-collapsed {
    width: 100% !important;
    margin-bottom: 0 !important;
    height: 0;
  }
  .advantages-wrapper .advantage-item.is-collapsed .advantage-item__title {
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
  .advantages-promo {
    width: 100% !important;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .advantages-promo .advantages-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
  }
  .advantages-promo .advantages-card span {
    display: none;
  }
  .advantages-promo .advantages-card svg {
    height: auto;
    flex-shrink: 0;
  }
  .advantages-promo.complete {
    width: 100% !important;
    height: auto;
  }
  .advantages-promo.complete .advantages-card svg {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=front.css.map */
