/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

@font-face {
  font-family: "Marko One";
  src: url("../kaRen-fonts/kaRen-markoone.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../kaRen-fonts/kaRen-poppins.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

body {
  background-color: #f5f0ec;
  color: #404040;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container_kaRen {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- UI ELEMENTS --- */
.title_kaRen,
h1,
h2,
h3,
h4 {
  font-family: Marko One;
}

.logo_kaRen {
  display: flex;
  justify-content: center;
}

.btn_kaRen {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  color: #404040;
  text-decoration: none;
  border-radius: 10px;
  font-family: Marko One;
  transition: all 0.3s ease;
  border: 2px solid #b09c7a;
  font-size: 16px;
}

.btn_kaRen:hover {
  background-color: transparent;
  color: #4a4a4a;
  transform: translateY(-3px);
}

.btn_outline_kaRen {
  background-color: transparent;
  color: #4a4a4a;
}

.badge_kaRen {
  font-family: Marko One;
  display: flex;
  background-color: #fcfcfc;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  align-items: center;
  gap: 10px;
  color: #404040;
}

/* --- HEADER --- */
.header_kaRen {
  padding: 16px 0;
}

.nav_kaRen {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_kaRen {
  display: flex;
  list-style: none;
  gap: 39px;
}

.menu_kaRen a {
  text-decoration: none;
  color: #404040;
  font-size: 14px;
  transition: color 0.3s;
}

.menu_kaRen a:hover {
  color: #a68b6d;
}

/* --- HERO --- */
.hero_kaRen {
  background-image: url("../kaRen-img/kaRen-hero.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 602px;
}

.about_kaRen {
  background-image: url("../kaRen-img/kaRen-about.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 371px;
}

.contact_kaRen {
  background-image: url("../kaRen-img/kaRen-contact.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 430px;
}

.review_kaRen {
  background-image: url("../kaRen-img/kaRen-review.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 347px;
}

.countries_kaRen {
  background-image: url("../kaRen-img/kaRen-countries.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 371px;
}

.hero_content_kaRen {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 630px;
  align-items: flex-start;
  padding-top: 60px;
}

.hero_wrapper_kaRen {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main_hero_img {
  height: 500px;
  border-radius: 200px 200px 20px 20px;
}

.hero_content_kaRen h1 {
  font-family: Marko One;
  font-weight: 400;
  font-size: 44px;
  line-height: 140%;
  text-transform: uppercase;
  color: #404040;
}

.hero_content_kaRen p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}

/* --- BEYOND MAP --- */
.beyond_kaRen {
  padding: 80px 0;
}

.beyond_grid_kaRen {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.beyond_info_kaRen {
  width: 100%;
  max-width: 636px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section_title_kaRen {
  font-family: Marko One;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  color: #404040;
}

.text_kaRen {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #404040;
}

.sub_title_kaRen {
  font-family: Marko One;
  font-weight: 400;
  font-size: 24px;
  color: #404040;
}

.features_kaRen {
  display: flex;
  gap: 20px;
  list-style: none;
}

.feature_card_kaRen {
  background: #fcfcfc;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #b09c7a;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
  text-align: center;
  align-items: center;
}

.feature_card_kaRen h2 {
  font-family: Marko One;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #404040;
}

.feature_card_kaRen p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #404040;
}

.feature_card_kaRen:hover {
  transform: scale(1.05);
}

.icon_placeholder_kaRen {
  width: 40px;
  height: 40px;
  background: #f0ede8;
  margin-bottom: 15px;
}

.tree_img_kaRen {
  height: 100%;
  min-height: 450px;
}

/* --- TOOLKIT --- */
.toolkit_kaRen {
  padding: 80px 0;
}

.center_head_kaRen {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  padding-bottom: 24px;
}

.toolkit_grid_kaRen {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.toolkit_card_kaRen {
  background: #fcfcfc;
  border-radius: 10px;
  border: 2px solid #b09c7a;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 295px;
}

.card_content_kaRen2 {
  text-align: center;
  padding: 0px 24px 24px 24px;
}

.card_content_kaRen2 h2 {
  font-family: Marko One;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #404040;
}

.card_content_kaRen2 p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #404040;
}

.toolkit_card_kaRen:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card_img {
  height: 200px;
  border-radius: 0;
}

.card_content_kaRen {
  padding: 20px;
}

.card_content_kaRen h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* --- LANDMARKS --- */
/* --- LANDMARKS --- */
.landmarks_grid_kaRen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}

.landmark_item_kaRen {
  background-image: url("../kaRen-img/kaRen-card1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
  /* Изначально прозрачная обводка, чтобы карточка не "прыгала" при наведении */
  border: 2px solid transparent;
  transition:
    border-color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

/* Затемнение фона (overlay), чтобы белый текст был читаемым */
.landmark_item_kaRen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Полупрозрачный черный */
  transition: background 0.4s ease;
  z-index: 1;
}

/* Ховер на всю карточку: обводка и тень */
.landmark_item_kaRen:hover {
  border-color: #b09c7a;
  box-shadow: 0px 4px 20px rgba(176, 156, 122, 0.5);
}

.landmark_item_kaRen:hover::before {
  background: rgba(0, 0, 0, 0.6);
  /* Темнеет при наведении */
}

/* Контентный блок */
.landmark_content_kaRen {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Заголовок (всегда виден) */
.landmark_title_kaRen {
  font-family: Marko One;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 0;
  color: #fcfcfc;
  transition: transform 0.4s ease;
}

/* Описание (скрыто по умолчанию) */
.landmark_descr_kaRen {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin: 0;
  color: #fcfcfc;
  /* Анимация появления */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    max-height 0.4s ease;
}

/* Эффект при наведении на карточку */
.landmark_item_kaRen:hover .landmark_descr_kaRen {
  opacity: 1;
  max-height: 200px;
  /* Достаточно для текста */
  transform: translateY(0);
}

/* Фоновые картинки для остальных карт */
.card2 {
  background-image: url("../kaRen-img/kaRen-card2.webp");
}

.card3 {
  background-image: url("../kaRen-img/kaRen-card3.webp");
}

.card4 {
  background-image: url("../kaRen-img/kaRen-card4.webp");
}

.card5 {
  background-image: url("../kaRen-img/kaRen-card5.webp");
}

.card6 {
  background-image: url("../kaRen-img/kaRen-card6.webp");
}

/* Адаптив */
@media (max-width: 992px) {
  .landmarks_grid_kaRen {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .landmarks_grid_kaRen {
    grid-template-columns: 1fr;
  }
}

/* --- STATS --- */
.stats_kaRen {
  padding: 80px 0;
}

.stats_grid_kaRen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

/* --- REVIEWS --- */
/* Контейнер для списка */
.reviews_list_kaRen {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  /* Отступ между карточками */
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

/* Базовая карточка */
.review_item_kaRen {
  position: relative;
  /* Для абсолютной иконки */
  background: #fcfcfc;
  padding: 50px 24px 24px 24px;
  /* Сверху больше места из-за иконки */
  border-radius: 10px;
  border: 2px solid #b09c7a;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.stars_kaRen {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.stars_kaRen li {
  display: flex;
}

/* Ховер эффект */
.review_item_kaRen:hover {
  transform: translateY(-5px);
}

/* Управление шириной */
.wide_item_kaRen {
  display: flex;
  max-width: 600px;
}

.narrow_item_kaRen {
  flex: 1 1 calc(33.333% - 24px);
  /* Три в ряд */
  min-width: 300px;
}

/* Штучка (Бейдж) в углу */
.review_badge_kaRen {
  position: absolute;
  top: -1px;
  /* Выравниваем по границе бордера */
  left: -1px;
  background-color: #b09c7a;
  width: 96px;
  height: 39px;
  border-radius: 10px 20px 20px 0px;
  /* Форма как на макете */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.badge_icon_kaRen {
  display: flex;

  color: #fff;
}

/* Стили текста внутри */
.stars_kaRen {
  color: #b09c7a;
  font-size: 18px;
  letter-spacing: 2px;
}

.review_text_kaRen {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #404040;
}

.review_author_kaRen {
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  color: #404040;
}

.btn_center_kaRen {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.reviews_kaRen {
  padding: 40px 0px 74px 0px;
}

/* Адаптив: на планшетах все в 2 колонки, на мобилках в 1 */
@media (max-width: 1024px) {
  .narrow_item_kaRen,
  .wide_item_kaRen {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .narrow_item_kaRen,
  .wide_item_kaRen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

/* --- FOOTER --- */
.footer_kaRen {
  padding: 40px 0px;
  background: #fcfcfc;
  text-align: center;
}

.footer_menu_kaRen {
  display: flex;
  justify-content: center;
  gap: 70px;
  list-style: none;
  margin: 32px 0;
}

.footer_menu_kaRen a {
  text-decoration: none;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}

.footer_legal_kaRen {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  justify-content: center;
}

.footer_legal_kaRen li a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #404040;
  text-decoration: none;
}

.copyright_kaRen {
  font-family: Poppins;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: #404040;
}

/* --- RESPONSIVE --- */
@media (max-width: 624px) {
  .hero_wrapper_kaRen,
  .beyond_grid_kaRen,
  .toolkit_grid_kaRen,
  .landmarks_grid_kaRen,
  .stats_grid_kaRen,
  .reviews_grid_kaRen {
    grid-template-columns: 1fr;
  }
}

.beyond_image_kaRen img {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero_kaRen {
    background-image: url("../kaRen-img/kaRen-heromob.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 602px;
  }

  .about_kaRen {
    background-image: url("../kaRen-img/kaRen-aboutmob.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 371px;
  }

  .contact_kaRen {
    background-image: url("../kaRen-img/kaRen-contactmob.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 360px;
  }

  .review_kaRen {
    background-image: url("../kaRen-img/kaRen-reviewmob.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 306px;
  }

  .countries_kaRen {
    background-image: url("../kaRen-img/kaRen-countriesmob.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 992px) {
  .features_kaRen {
    flex-wrap: wrap;
  }

  .hero_content_kaRen h1 {
    font-size: 38px;
  }

  .section_title_kaRen {
    font-size: 28px;
  }
}

@media (max-width: 667px) {
  .beyond_grid_kaRen {
    flex-wrap: wrap;
  }

  .footer_menu_kaRen {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 24px 0;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_legal_kaRen {
    list-style: none;
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .peregorodka {
    display: none;
  }

  .hero_content_kaRen h1 {
    font-size: 32px;
  }

  .hero_content_kaRen {
    padding-top: 29px;
  }

  .cr {
    text-align: center;
    align-items: center;
  }

  .wt {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero_kaRen {
    height: 550px;
  }

  .btn_kaRen {
    width: 100%;
    text-align: center;
  }

  .beyond_kaRen {
    padding: 40px 0;
  }

  .section_title_kaRen {
    font-size: 24px;
  }

  .toolkit_kaRen {
    padding: 40px 0;
  }

  .toolkit_card_kaRen {
    max-width: 360px;
  }

  .center_head_kaRen {
    text-align: left;
  }

  .stats_kaRen {
    padding: 40px 0;
  }
}

/* Базовые стили навигации (Desktop) */
.nav_kaRen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.menu_kaRen {
  display: flex;
  gap: 30px;
  list-style: none;
}

.burger_kaRen {
  display: none;
  /* Скрыт на десктопе */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 101;
}

.burger_kaRen span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #b09c7a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* --- МОБИЛЬНОЕ МЕНЮ (992px и меньше) --- */
@media (max-width: 992px) {
  .burger_kaRen {
    display: flex;
    /* Показываем бургер */
  }

  .menu_kaRen {
    position: fixed;
    top: 0;
    right: -100%;
    /* Прячем меню за экран */
    width: 100%;
    height: 100vh;
    background-color: #fdfbf8;
    /* Твой фоновый цвет */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    gap: 40px;
  }

  /* Когда меню открыто */
  .menu_kaRen.active {
    right: 0;
  }

  .menu_kaRen a {
    font-size: 16px;
    font-family: Marko One;
  }

  /* Анимация бургера в крестик */
  .burger_kaRen.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .burger_kaRen.open span:nth-child(2) {
    opacity: 0;
  }

  .burger_kaRen.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* Запрет скролла при открытом меню */
  body.no-scroll {
    overflow: hidden;
  }
}

.contact_kaRensec {
  padding: 80px 0;
  background-color: #f5f0ec;
  /* Тот же бежевый фон, что на макете */
}

.form_kaRen {
  max-width: 586px;
  /* Ограничиваем ширину формы */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input_group_kaRen {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.input_group_kaRen label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

.input_group_kaRen input,
.input_group_kaRen textarea {
  width: 100%;
  padding: 16px 20px;
  background: #fcfcfc;
  border: 1px solid #b09c7a;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Эффект при фокусе на инпут */
.input_group_kaRen input:focus,
.input_group_kaRen textarea:focus {
  border-color: #a68b6d;
  box-shadow: 0 0 8px rgba(176, 156, 122, 0.2);
  outline: none;
}

/* Стили плейсхолдера */
.input_group_kaRen input::placeholder,
.input_group_kaRen textarea::placeholder {
  color: #b09c7a;
  opacity: 0.6;
}

/* Кнопка отправки */
.form_kaRen .btn_kaRen {
  cursor: pointer;
  background-color: transparent;
  padding: 14px 40px;
}

/* Скрытое сообщение об успехе */
.success_msg_kaRen {
  display: none;
  /* По умолчанию скрыто */
  text-align: center;
  background-color: #e7f3e8;
  color: #2e7d32;
  padding: 15px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
  border: 1px solid #c8e6c9;
}

/* Когда сообщение активно */
.success_msg_kaRen.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 667px) {
  .contact_kaRensec {
    padding: 40px 0;
  }
}

.reviews_list_kaRen2 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

.review_item_kaRen2 {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;

  background: #fcfcfc;
  padding: 50px 24px 24px 24px;
  border-radius: 10px;
  border: 2px solid #b09c7a;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;

  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;

  /* Выравнивание по левому краю согласно новому макету */
  text-align: left;
  align-items: flex-start;
}

.review_item_kaRen2:hover {
  transform: translateY(-5px);
}

/* Звезды в ряд */
.stars_kaRen {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
}

.stars_kaRen img {
  width: 18px;
  height: 18px;
}

/* Текст автора */
.review_author_kaRen {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-top: auto;
  /* Прижать к низу */
}

/* Адаптив для мобилок (в одну колонку) */
@media (max-width: 992px) {
  .review_item_kaRen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

@media (max-width: 1260px) {
  .reviews_list_kaRen2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    justify-content: center;
  }
}

/* --- DESTINATIONS SECTION --- */
.destinations_kaRen {
  padding: 80px 0;
  background-color: #f5f0ec;
}

.dest_list_kaRen {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Отступы между карточками */
}

.dest_item_kaRen {
  display: flex;
  background: #fcfcfc;
  border: 2px solid #b09c7a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.dest_item_kaRen:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(176, 156, 122, 0.3);
}

/* Левая часть - Картинка */
.dest_img_wrapper_kaRen {
  display: flex;
  width: 100%;
  max-width: 608px;
  overflow: hidden;
}

.dest_img_kaRen {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dest_item_kaRen:hover .dest_img_kaRen {
  transform: scale(1.05);
}

/* Правая часть - Контент */
.dest_content_kaRen {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  justify-content: flex-start;
}

.dest_name_kaRen {
  font-family: Marko One;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #404040;
  margin: 0;
}

.dest_text_kaRen {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #404040;
}

/* Адаптив для планшетов и мобилок */
@media (max-width: 992px) {
  .dest_item_kaRen {
    flex-direction: column;
    /* Картинка сверху, текст снизу */
  }

  .dest_img_wrapper_kaRen {
    flex: 0 0 300px;
    /* Фиксированная высота картинки на мобилке */
    width: 100%;
    max-width: 100%;
  }

  .dest_content_kaRen {
    padding: 30px 20px;
  }

  .dest_name_kaRen {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .dest_img_wrapper_kaRen {
    flex: 0 0 250px;
  }

  .dest_name_kaRen {
    font-size: 20px;
  }
}

/* --- POLICY PAGE STYLES --- */
.policy_kaRen {
  padding: 80px 0;
  background-color: #f5f0ec;
  /* Фирменный бежевый фон */
  min-height: 100vh;
}

.policy_title_kaRen {
  font-family: Marko One;
  font-size: 42px;
  color: #404040;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy_content_kaRen {
  max-width: 1240px;
  /* Немного уже основного контейнера для лучшей читаемости текста */
}

.policy_content_kaRen h2 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #404040;
  margin-top: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.policy_content_kaRen p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #404040;
  margin-bottom: 20px;
}

.policy_content_kaRen a {
  color: #404040;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy_content_kaRen a:hover {
  color: #a68b6d;
}

/* Список типов куки */
.policy_list_kaRen {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.policy_list_kaRen li {
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #404040;
}

.policy_list_kaRen li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Индивидуальная нумерация (как на макете 1. 2. 3. 4.) */
.policy_list_kaRen {
  counter-reset: cookie-counter;
}

.policy_list_kaRen li {
  counter-increment: cookie-counter;
  position: relative;
  padding-left: 25px;
}

.policy_list_kaRen li::before {
  content: counter(cookie-counter) ". ";
  position: absolute;
  left: 0;
  font-weight: 600;
}

.policy_date_kaRen {
  margin-top: 60px !important;
  font-weight: 500;
}

/* Адаптив */
@media (max-width: 768px) {
  .policy_title_kaRen {
    font-size: 32px;
  }

  .policy_kaRen {
    padding: 60px 0;
  }
}

.policy_bullets_kaRen {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.policy_bullets_kaRen li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #3d3d3d;
  margin-bottom: 10px;
}

/* GUESS GAME */

.guess_kaRen {
  padding: 80px 0;
}

.guess_card_kaRen {
  background: #fcfcfc;
  border: 2px solid #b09c7a;
  box-shadow: 0px 4px 11.9px 0px #b09c7a;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.guess_image_wrap_kaRen {
  height: 100%;
}

.guess_image_wrap_kaRen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guess_content_kaRen {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guess_progress_kaRen {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: Poppins;
  font-size: 14px;
}

.guess_title_kaRen {
  font-family: Marko One;
  font-size: 28px;
  margin-bottom: 12px;
  color: #404040;
}

.guess_answers_kaRen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guess_answer_kaRen {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  border: 2px solid #b09c7a;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Poppins;
  font-size: 16px;
}

.guess_answer_kaRen:hover {
  transform: translateY(-3px);
  background: #f5f0ec;
}

.guess_answer_kaRen.correct {
  background: #c8e6c9;
  border-color: #2e7d32;
}

.guess_answer_kaRen.wrong {
  background: #ffcdd2;
  border-color: #c62828;
}

#nextQuestionBtn {
  margin-top: 24px;
}

@media (max-width: 992px) {
  .guess_card_kaRen {
    grid-template-columns: 1fr;
  }

  .guess_image_wrap_kaRen {
    height: 300px;
  }

  .guess_content_kaRen {
    padding: 24px;
  }

  .guess_title_kaRen {
    font-size: 24px;
  }
}

/* =========================
   GAME TOP PANEL
========================= */

.game_top_kaRen {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

/* INFO */
.game_info_kaRen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game_round_kaRen {
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 100px;
  background: #e8edf7;
  gap: 10px;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  color: #3164e0;
}

.game_category_kaRen {
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 100px;
  background: #ececec;

  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  color: #4f5b72;
}

/* PROGRESS */
.game_progress_kaRen {
  width: 100%;
  height: 14px;
  background: #dfe3ea;
  border-radius: 100px;
  overflow: hidden;
}

.game_progress_fill_kaRen {
  width: 20%;
  height: 100%;
  border-radius: 100px;

  background: linear-gradient(90deg, #3164e0 0%, #43b0f1 100%);

  transition: width 0.4s ease;
}

/* STATS */
.game_stats_kaRen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game_stat_card_kaRen {
  background: #fcfcfc;
  border: 1px solid #d7d7d7;
  border-radius: 24px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game_stat_card_kaRen span {
  font-family: Poppins;
  font-size: 14px;
  letter-spacing: 3px;
  color: #6e7a91;
}

.game_stat_card_kaRen h2 {
  font-family: Poppins;
  font-size: 54px;
  line-height: 100%;
  color: #14203b;
}

/* SHARE */
.game_share_wrap_kaRen {
  display: flex;
  justify-content: center;
}

.game_share_btn_kaRen {
  border: none;
  cursor: pointer;

  padding: 16px 32px;
  border-radius: 16px;

  background: linear-gradient(90deg, #3164e0 0%, #43b0f1 100%);

  color: white;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.game_share_btn_kaRen:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(49, 100, 224, 0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .game_stats_kaRen {
    grid-template-columns: 1fr;
  }

  .game_round_kaRen,
  .game_category_kaRen {
    font-size: 18px;
  }

  .game_stat_card_kaRen h2 {
    font-size: 42px;
  }
}

/* =========================
   GAME RULES
========================= */

.game_rules_card_kaRen {
  background: #fcfcfc;

  border: 1px solid #d9d9d9;

  border-radius: 40px;

  padding: 40px;

  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 30px;
}

.game_rules_badge_kaRen {
  display: inline-flex;

  width: fit-content;

  padding: 12px 18px;

  border-radius: 100px;

  background: #eef1f7;

  color: #55637d;

  font-family: Poppins;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 3px;
}

.game_rules_title_kaRen {
  font-family: Marko One;

  font-size: 52px;

  line-height: 120%;

  color: #17223b;

  max-width: 700px;
}

.game_rules_grid_kaRen {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.game_rule_item_kaRen {
  background: #f4f6fb;

  border-radius: 30px;

  padding: 32px;

  display: flex;

  flex-direction: column;

  gap: 16px;
}

.game_rule_item_kaRen h3 {
  font-family: Poppins;

  font-size: 28px;

  font-weight: 700;

  color: #17223b;
}

.game_rule_item_kaRen p {
  font-family: Poppins;

  font-size: 22px;

  line-height: 170%;

  color: #2d3448;
}

.game_rule_item_kaRen strong {
  color: #3164e0;
}

/* MOBILE */

@media (max-width: 992px) {
  .game_rules_grid_kaRen {
    grid-template-columns: 1fr;
  }

  .game_rules_title_kaRen {
    font-size: 38px;
  }

  .game_rule_item_kaRen p {
    font-size: 18px;
  }
}

@media (max-width: 667px) {
  .game_rules_card_kaRen {
    padding: 24px;
    border-radius: 28px;
  }

  .game_rules_title_kaRen {
    font-size: 30px;
  }

  .game_rule_item_kaRen {
    padding: 24px;
    border-radius: 24px;
  }

  .game_rule_item_kaRen h3 {
    font-size: 24px;
  }
}

.final_buttons_kaRen {
  display: flex;
  align-items: center;
  gap: 20px;
}

.answer_info_kaRen {
  margin-bottom: 10px;
}

/* =========================
   LANDMARK SLOTS
========================= */

.landmark_slots_kaRen {
  padding: 48px 0 80px;
}

.slots_head_kaRen {
  margin-bottom: 32px;
}

.slots_landing_kaRen {
  margin-bottom: 32px;
}

.slots_grid_kaRen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 425px) {
  .slots_grid_kaRen {
    grid-template-columns: 1fr;
  }
}

.slots_card_kaRen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 0;
  border: 2px solid #b09c7a;
  border-radius: 16px;
  background: #fcfcfc;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  font-family: Poppins, sans-serif;
  color: #404040;
}

.slots_card_kaRen:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(176, 156, 122, 0.35);
}

.slots_card_kaRen:focus-visible {
  outline: 3px solid #3164e0;
  outline-offset: 2px;
}

.slots_card_kaRen.selected {
  border-color: #e85d4c;
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.25);
}

.slots_card_mult_kaRen {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(20, 32, 59, 0.85);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 100px;
}

.slots_card_kaRen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slots_card_name_kaRen {
  font-family:
    Marko One,
    serif;
  font-size: 15px;
  padding: 12px 12px 4px;
  line-height: 1.3;
}

.slots_card_loc_kaRen {
  font-size: 12px;
  color: #6e7a91;
  padding: 0 12px 12px;
}

.slots_cabinet_kaRen {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  background: #fcfcfc;
  border: 2px solid #b09c7a;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 48px;
  box-shadow: 0 4px 12px rgba(176, 156, 122, 0.25);
}

.slots_back_btn_kaRen {
  border: none;
  background: transparent;
  color: #b09c7a;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 4px 0;
}

.slots_back_btn_kaRen:hover {
  color: #404040;
}

.slots_hud_kaRen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.slots_stats_row_kaRen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slots_stat_kaRen {
  background: #f5f0ec;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slots_stat_kaRen span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #6e7a91;
}

.slots_stat_kaRen strong {
  font-size: 22px;
  color: #14203b;
  font-weight: 700;
}

.slots_target_kaRen {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f5f0ec 0%, #ece6df 100%);
  border-radius: 16px;
  border: 1px solid #d7d7d7;
}

.slots_target_label_kaRen {
  font-size: 11px;
  letter-spacing: 2px;
  color: #6e7a91;
  display: block;
  margin-bottom: 4px;
}

.slots_target_kaRen h2 {
  font-family:
    Marko One,
    serif;
  font-size: 18px;
  color: #404040;
}

.slots_target_loc_kaRen {
  font-size: 14px;
  color: #6e7a91;
}

.slots_reels_wrap_kaRen {
  position: relative;
  margin-bottom: 16px;
}

.slots_pixi_canvas_kaRen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.slots_reels_kaRen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}

.slots_cell_kaRen {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #b09c7a;
  background: #fff;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.slots_cell_kaRen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slots_cell_kaRen.spinning img {
  filter: blur(2px);
  opacity: 0.85;
}

.slots_cell_kaRen.win {
  border-color: #e85d4c;
  box-shadow: 0 0 20px rgba(244, 197, 66, 0.8);
  animation: slotsGlow 0.6s ease infinite alternate;
}

@keyframes slotsGlow {
  from {
    box-shadow: 0 0 12px rgba(244, 197, 66, 0.5);
  }
  to {
    box-shadow: 0 0 24px rgba(232, 93, 76, 0.75);
  }
}

.slots_message_kaRen {
  min-height: 48px;
  font-size: 15px;
  line-height: 1.5;
  color: #404040;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f5f0ec;
  border-radius: 12px;
}

.slots_message_warn_kaRen {
  background: #fff3e0;
  border: 1px solid #e85d4c;
}

.slots_controls_kaRen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 12px;
}

.slots_btn_kaRen {
  border: none;
  border-radius: 12px;
  font-family:
    Marko One,
    serif;
  font-size: 14px;
  cursor: pointer;
  padding: 14px 18px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  color: #14203b;
}

.slots_btn_kaRen:hover:not(:disabled) {
  transform: translateY(-2px);
}

.slots_btn_kaRen:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.slots_btn_help_kaRen {
  background: linear-gradient(180deg, #4a7fd4 0%, #3164e0 100%);
  color: #fff;
}

.slots_btn_mute_kaRen {
  background: linear-gradient(180deg, #f7d86a 0%, #f4c542 100%);
  color: #14203b;
}

.slots_btn_start_kaRen {
  flex: 1 1 100%;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff7a5c 0%, #e85d4c 45%, #c73e2e 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 93, 76, 0.35);
}

.slots_btn_start_kaRen.slots_start_ready_kaRen {
  animation: slotsPulse 1.5s ease infinite;
}

.slots_start_label_kaRen {
  font-size: 22px;
  letter-spacing: 2px;
}

.slots_start_cost_kaRen {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  opacity: 0.9;
}

@keyframes slotsPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.slots_passport_kaRen {
  border-top: 1px solid #d7d7d7;
  padding-top: 24px;
}

.slots_passport_head_kaRen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slots_passport_head_kaRen h3 {
  font-family:
    Marko One,
    serif;
  font-size: 20px;
  color: #404040;
}

.slots_passport_bar_kaRen {
  height: 10px;
  background: #dfe3ea;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.slots_passport_fill_kaRen {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b09c7a, #e85d4c);
  border-radius: 100px;
  transition: width 0.5s ease;
}

.slots_passport_grid_kaRen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}

.slots_passport_item_kaRen {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f0f0f0;
  opacity: 0.45;
  font-size: 11px;
}

.slots_passport_item_kaRen.unlocked {
  opacity: 1;
  background: #e8f5e9;
}

.slots_passport_item_kaRen img {
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.slots_passport_item_kaRen span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slots_coin_pop_kaRen {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, 0) scale(0.8);
  background: #14203b;
  color: #f4c542;
  font-family:
    Marko One,
    serif;
  font-size: 24px;
  padding: 12px 24px;
  border-radius: 100px;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.slots_coin_pop_kaRen.visible {
  opacity: 1;
  transform: translate(-50%, -40px) scale(1);
}

.slots_info_kaRen {
  margin-top: 16px;
  padding-top: 48px;
  border-top: 2px solid #b09c7a;
}

.slots_info_head_kaRen {
  margin-bottom: 28px;
}

.slots_info_sub_kaRen {
  font-size: 14px;
  color: #6e7a91;
  margin-top: 8px;
}

.slots_info_blocks_kaRen {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.slots_info_card_kaRen {
  background: #fcfcfc;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 24px;
}

.slots_info_card_kaRen h3 {
  font-family:
    Marko One,
    serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: #404040;
}

.slots_info_card_kaRen p {
  font-size: 15px;
  line-height: 1.65;
  color: #404040;
}

.slots_org_logos_kaRen {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  align-items: center;
}

.slots_org_logos_kaRen a {
  font-family:
    Marko One,
    serif;
  font-size: 14px;
  color: #3164e0;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
  transition: background 0.3s ease;
}

.slots_org_logos_kaRen a:hover {
  background: #eef1f7;
}

.slots_modal_kaRen {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: 520px;
  width: min(520px, calc(100vw - 32px));
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.94);
  opacity: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    overlay 0.4s ease allow-discrete;
}

.slots_modal_kaRen[open] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slots_modal_kaRen.slots_modal_open_kaRen {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slots_modal_kaRen::backdrop {
  background: rgba(20, 32, 59, 0.55);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    overlay 0.4s ease allow-discrete;
}

.slots_modal_kaRen[open]::backdrop,
.slots_modal_kaRen.slots_modal_open_kaRen::backdrop {
  opacity: 1;
}

@starting-style {
  .slots_modal_kaRen[open] {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.94);
  }

  .slots_modal_kaRen[open]::backdrop {
    opacity: 0;
  }
}

.slots_modal_inner_kaRen {
  padding: 32px 28px;
  position: relative;
}

.slots_modal_close_kaRen {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #404040;
  line-height: 1;
}

.slots_help_list_kaRen {
  margin: 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #404040;
}

.slots_help_note_kaRen {
  font-size: 13px;
  color: #6e7a91;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .slots_grid_kaRen {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .slots_stats_row_kaRen {
    grid-template-columns: repeat(4, 1fr);
  }

  .slots_controls_kaRen {
    flex-wrap: nowrap;
  }

  .slots_btn_start_kaRen {
    flex: 1 1 auto;
  }

  .slots_passport_grid_kaRen {
    grid-template-columns: repeat(3, 1fr);
  }

  .slots_info_blocks_kaRen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .slots_grid_kaRen {
    grid-template-columns: repeat(5, 1fr);
  }

  .slots_cabinet_kaRen {
    padding: 32px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slots_card_kaRen:hover,
  .slots_btn_start_kaRen.slots_start_ready_kaRen {
    animation: none;
    transform: none;
  }
}
