@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Inter";
  src: url(/assets/fonts/Inter-VariableFont_opsz\,wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

.btn {
  background: #dca269;
  color: white;
  border-color: none;
  outline: none;
  cursor: pointer;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #153c45;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 426px) {
  h2 {
    font-size: 20px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 1025px) {
  .container {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1100px;
    padding: 8px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 475px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (max-width: 390px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 320px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header {
  width: 100%;
  z-index: 100;
  background: white;
  padding: 10px 0 20px;
  border-bottom: 1px solid #153c45;
}
.header .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .header .container {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
}
.header .main-header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}
.header .main-header .btn {
  padding: 11px 19px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.7%;
}
@media (max-width: 768px) {
  .header .main-header .btn {
    margin-bottom: 1.4%;
  }
}
@media (max-width: 470px) {
  .header .main-header .btn {
    padding: 9px 12px;
    border-radius: 15px;
    font-size: 14px;
  }
}
.header .logo img {
  width: 100px;
  height: auto;
}
@media (max-width: 768px) {
  .header .logo img {
    width: 80px;
  }
}
.header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .desktop-nav a {
  font-size: clamp(13px, 1.4vw, 16px);
  font-family: "Montserrat", sans-serif;
  color: #153c45;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: 500;
}
.header .desktop-nav a:hover {
  opacity: 0.8;
}
.header .burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.header .burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #153c45;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.header .burger span:nth-child(1) {
  top: 14px;
}
.header .burger span:nth-child(2) {
  top: 21px;
}
.header .burger span:nth-child(3) {
  top: 28px;
}
.header .burger.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
  background: #0d0f0f;
}
.header .burger.is-open span:nth-child(2) {
  top: 21px;
  transform: scaleX(0.7);
  opacity: 1;
  background: #0d0f0f;
}
.header .burger.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
  background: #0d0f0f;
}
.header .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: #ffffff;
  color: #0d0f0f;
  padding: 88px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1001;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.12);
}
.header .mobile-menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #0d0f0f;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.2s ease;
}
.header .mobile-menu a:hover {
  color: rgba(13, 15, 15, 0.7);
}
.header .mobile-menu.is-open {
  transform: translateX(0);
}

.header-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99;
}
.header-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header .desktop-nav {
    display: none;
  }
  .header .burger {
    display: inline-block;
  }
}
@media (max-width: 1400px) {
  .header {
    padding: 18px 0;
  }
  .header .container {
    gap: 55px;
  }
  .header .desktop-nav {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0px 0;
  }
  .header .container {
    gap: 45px;
  }
  .header .desktop-nav {
    gap: 25px;
  }
}
@media (max-width: 900px) {
  .header .container {
    gap: 35px;
  }
  .header .desktop-nav {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .header .desktop-nav {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 15px 0;
  }
  .header .mobile-menu {
    width: min(90vw, 340px);
  }
}
@media (max-width: 475px) {
  .header .mobile-menu {
    width: min(92vw, 300px);
    padding: 75px 20px 20px;
  }
  .header .mobile-menu a {
    font-size: 15px;
  }
}
@media (max-width: 390px) {
  .header .mobile-menu {
    width: min(95vw, 280px);
  }
}
@media (max-width: 320px) {
  .header {
    padding: 12px 0;
  }
  .header .mobile-menu {
    width: min(98vw, 260px);
    padding: 70px 16px 16px;
  }
  .header .mobile-menu a {
    font-size: 14px;
    padding: 8px 0;
  }
}
main .banner {
  position: relative;
  height: 90vh;
  max-height: 100vh; /* Максимальная высота - весь экран */
  min-height: 500px; /* Минимальная высота для контента */
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
}
main .banner .banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main .banner .slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}
main .banner .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main .banner .slide.active {
  opacity: 1;
}
main .banner .slide-1 {
  background-image: url("/assets/images/business_img.jpg");
}
main .banner .slide-2 {
  background-image: url("/assets/images/business_img_2.jpg");
}
main .banner .slide-3 {
  background-image: url("/assets/images/family_img.jpg");
}
main .banner .slide-4 {
  background-image: url("/assets/images/family_img_2.jpg");
}
main .banner .slide-5 {
  background-image: url("/assets/images/standart&pet.jpg");
}
main .banner .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
main .banner .slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
main .banner .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
main .banner .pagination-dot.active {
  background: white;
}
main .banner .banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
  padding: 40px 0;
}
main .banner h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px); /* Адаптивный размер шрифта */
  margin-bottom: 15px;
  text-align: center;
}
main .banner p {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  text-align: center;
}
main .banner .banner-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
main .banner .banner-form h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: white;
}
main .banner .reservation-form {
  background: white;
  padding: 14px 27px;
  display: flex;
  align-items: center;
  gap: 45px;
  border-radius: 20px;
  height: auto;
  min-height: 88px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
main .banner .input-group {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
  justify-content: center;
}
main .banner label {
  position: absolute;
  top: 8px;
  left: 5px;
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 300;
  color: #333;
  z-index: 3;
}
main .banner .input-group-label {
  border: 2px solid #333;
  border-radius: 10px;
  width: 200px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}
main .banner input {
  border-color: transparent;
  height: 35px;
  width: 190px;
  display: flex;
  margin: 20px auto 0;
  align-items: end;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
}
main .banner input:focus {
  outline: none;
}
main .banner input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
}
main .banner input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
}
main .banner .btn {
  background: #dca269;
  color: white;
  width: 170px;
  height: 60px;
  border-radius: 10px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}
main .banner .btn:hover {
  background: #555;
}
main .banner .banner-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
main .banner .banner-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #333;
}

/* Адаптивность с фокусом на высоту */
@media (max-width: 1024px) {
  main .banner {
    min-height: 450px;
  }
  main .banner .reservation-form {
    gap: 25px;
    padding: 12px 20px;
  }
  main .banner .input-group-label {
    width: 180px;
    height: 55px;
  }
  main .banner input {
    width: 170px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  main .banner {
    min-height: 400px;
    height: auto;
    max-height: none;
  }
  main .banner .banner-content {
    padding: 60px 0 40px;
  }
  main .banner .reservation-form {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
  }
  main .banner .input-group {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
  }
  main .banner .input-group-label {
    width: 100%;
    height: 55px;
  }
  main .banner input {
    width: calc(100% - 20px);
    height: 27px;
  }
  main .banner .btn {
    width: 100%;
    height: 55px;
    margin-top: 10px;
  }
  main .banner .banner-info {
    position: static;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
  }
}
@media (max-width: 480px) {
  main .banner {
    min-height: 350px;
  }
  main .banner .banner-content {
    padding: 40px 0 30px;
  }
  main .banner .reservation-form {
    padding: 15px;
  }
  main .banner .input-group-label {
    height: 50px;
  }
  main .banner .btn {
    height: 50px;
  }
  main .banner .banner-info {
    padding: 15px;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  main .banner {
    min-height: 100vh;
    height: auto;
  }
  main .banner .banner-content {
    padding: 20px 0;
  }
  main .banner h1 {
    margin-bottom: 10px;
  }
  main .banner p {
    margin-bottom: 20px;
  }
  main .banner .banner-form {
    margin-top: 20px;
    gap: 15px;
  }
  main .banner .reservation-form {
    padding: 10px 15px;
    min-height: 70px;
  }
  main .banner .input-group-label {
    height: 45px;
  }
  main .banner input {
    margin: 15px auto 0;
    height: 25px;
  }
  main .banner .btn {
    height: 45px;
  }
  main .banner .slider-pagination {
    bottom: 10px;
  }
}
/* Обеспечиваем правильное отображение на очень маленьких экранах */
@media (max-width: 320px) {
  main .banner {
    min-height: 300px;
  }
  main .banner .banner-content {
    padding: 30px 0 20px;
  }
  main .banner .reservation-form {
    padding: 10px;
  }
  main .banner .input-group-label {
    height: 45px;
  }
  main .banner input {
    font-size: 13px;
  }
  main .banner .banner-info {
    padding: 10px;
  }
  main .banner .banner-info h3 {
    font-size: 13px;
  }
}
/* Гарантия что контент всегда виден */
main {
  /* Плавные переходы при изменении размера */
}
main .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .banner,
main .banner-content,
main .reservation-form,
main .input-group-label {
  transition: all 0.3s ease;
}

.about-section {
  padding-top: 30px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  /* Десктоп стили */
  /* Мобильные стили */
}
.about-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.about-section .about-line {
  position: absolute;
  z-index: -1;
  height: auto;
}
.about-section .about-line-block {
  position: fixed;
  bottom: 0;
  height: 100px;
  width: 100%;
  z-index: -1;
  background-color: #fff;
}
.about-section .about-subtitle {
  font-family: "Montserrat", sans-serif;
  color: #153c45;
  opacity: 0.8;
  margin: 20px 0 25px;
}
@media (max-width: 540px) {
  .about-section .about-subtitle {
    font-size: 14px;
    text-align: center;
  }
}
.about-section .about-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;
}
.about-section .about-buttons button {
  padding: 10px 25px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid rgba(21, 60, 69, 0.5);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #153c45;
}
.about-section .about-buttons button.active {
  background: #153c45;
  color: white;
}
.about-section .rows {
  display: none;
  flex-wrap: wrap;
}
.about-section .rows.active {
  display: flex;
}
.about-section .rows .edge {
  /* --- экраны 1440px и шире --- */
  /* --- средние экраны: 3 в ряд --- */
  /* --- планшеты: 2 в ряд --- */
  /* --- телефоны: 1 в ряд --- */
}
.about-section .rows .edge .container {
  padding-bottom: 30px;
}
.about-section .rows .edge .container h2 {
  margin-bottom: 25px;
}
.about-section .rows .edge .edge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 30px; /* Лучше, чем space-between */
}
.about-section .rows .edge .edge-card {
  flex: 1 1 calc(33.333% - 30px);
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-section .rows .edge .edge-card svg {
  width: 60px;
  height: 60px;
}
.about-section .rows .edge .edge-card p {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1440px) {
  .about-section .rows .edge .edge-card {
    flex: 1 1 calc(14.285% - 30px); /* 7 карточек в строке */
  }
}
@media (max-width: 1200px) {
  .about-section .rows .edge .edge-card {
    flex: 1 1 calc(33.333% - 30px);
  }
}
@media (max-width: 768px) {
  .about-section .rows .edge .edge-card {
    flex: 1 1 calc(50% - 20px);
  }
  .about-section .rows .edge .edge-row {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .about-section .rows .edge .edge-card {
    flex: 1 1 100%;
  }
}
.about-section .rows .edge .edge-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  max-width: 150px;
  /* управляет цветом иконки (мы перевели все на currentColor) */
  color: #153c45;
}
@media (max-width: 600px) {
  .about-section .rows .edge .edge-card {
    max-width: 120px;
    justify-self: center;
  }
}
.about-section .rows .edge .edge-card .icon {
  width: 90px;
  height: 90px;
  fill: currentColor;
  stroke: currentColor;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.about-section .rows .edge .edge-card .icon:hover {
  transform: scale(1.1);
  opacity: 1;
}
@media (max-width: 600px) {
  .about-section .rows .edge .edge-card .icon {
    width: 80px;
    height: 80px;
  }
}
.about-section .rows .edge .edge-card p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 2vw, 16px);
  color: #153c45;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
}
.about-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 80px;
}
.about-section .row.active {
  display: flex;
}
.about-section .col-lg-2,
.about-section .col-lg-4,
.about-section .col-lg-5 {
  padding: 0 15px;
  width: 100%;
}
.about-section .col-lg-5 .btn {
  padding: 12px 25px;
  border-radius: 15px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #153c45;
  opacity: 0.7;
}
.about-section .text-center {
  text-align: center;
}
.about-section .img-fluid {
  width: 220px;
  height: auto;
  border-radius: 15px;
}
.about-section .img-fluid-nino {
  width: 440px;
  height: auto;
  border-radius: 15px;
}
@media (max-width: 540px) {
  .about-section .img-fluid-nino {
    width: 350px;
  }
}
@media (max-width: 390px) {
  .about-section .img-fluid-nino {
    width: 270px;
  }
}
.about-section .position-absolute {
  position: absolute;
}
.about-section .position-fixed {
  position: fixed;
}
.about-section .position-relative {
  position: relative;
}
.about-section .bottom-0 {
  bottom: 0;
}
.about-section .bg-white {
  background-color: #fff;
}
.about-section .d-none {
  display: none;
}
@media (min-width: 992px) {
  .about-section {
    padding-top: 50px;
    padding-bottom: 120px;
  }
  .about-section .container.pb-lg-50 {
    padding-bottom: 50px;
  }
  .about-section .about-line.d-none.d-lg-block {
    display: block;
  }
  .about-section .about-line-block.d-none.d-lg-block {
    display: block;
  }
  .about-section h2.text-center.text-lg-start {
    text-align: left;
  }
  .about-section .row {
    margin-bottom: 120px;
  }
  .about-section .row.nino-block {
    margin-bottom: 150px;
  }
  .about-section .row.justify-content-lg-end {
    justify-content: space-around;
  }
  .about-section .nino-block {
    gap: 300px;
  }
  .about-section .col-lg-2 {
    width: 16.666667%;
  }
  .about-section .col-lg-4 {
    width: 33.333333%;
  }
  .about-section .col-lg-5 {
    width: 41.666667%;
  }
  .about-section .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .about-section .col-lg-2.mb-10.mb-lg-0,
  .about-section .col-lg-5.mb-20.mb-lg-0 {
    margin-bottom: 0;
  }
  .about-section .order-lg-1 {
    order: 1;
  }
  .about-section .order-lg-3 {
    order: 3;
  }
  .about-section .d-lg-flex {
    display: flex;
  }
  .about-section .d-lg-flex.flex-lg-column {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .about-section .order-1 {
    order: 1;
  }
  .about-section .order-2 {
    order: 2;
  }
  .about-section .mb-20 {
    margin-bottom: 20px;
  }
  .about-section .mb-10 {
    margin-bottom: 10px;
  }
}

.up {
  position: fixed;
  bottom: 3%;
  right: 1.5%;
  cursor: pointer;
}
.up img {
  width: 45px;
  height: 45px;
  fill: #153c45;
}

.sales {
  padding: 30px 0;
  /* верх карточки с фоном и кнопкой */
  /* фоны переносим на .sales-card */
  /* нижняя секция: СКРЫТА по умолчанию, появляется ПОД карточкой */
  /* открытое состояние */
  /* адаптивы (подгони под свои) */
}
.sales h2 {
  margin-bottom: 20px;
}
.sales .sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px;
}
.sales .sales-block {
  display: flex;
  flex-direction: column; /* карточка сверху, детали снизу */
  border-radius: 20px;
}
.sales .sales-card {
  position: relative;
  width: 100%;
  height: 233px;
  border-radius: 20px;
  overflow: hidden;
}
.sales .sales-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: white;
  padding: 15px 0 0 15px;
}
@media (max-width: 391px) {
  .sales .sales-card h3 {
    font-size: 18px;
  }
}
.sales .sales-card a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: white;
  opacity: 0.75;
  position: absolute;
  bottom: 17px;
  right: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sales .sales-card a:hover {
  opacity: 1;
}
.sales .sl-1 .sales-card {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("../../../assets/images/sale_1.png") center/cover no-repeat;
}
.sales .sl-2 .sales-card {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("../../../assets/images/sale_2.png") center/cover no-repeat;
}
.sales .sl-3 .sales-card {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../../assets/images/sale_3.png") center/cover no-repeat;
}
.sales .sales-details {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  margin-top: 0;
  padding: 0 16px; /* паддинги дадим при открытии */
  color: rgba(21, 60, 69, 0.7);
  font-family: "Inter", sans-serif;
  font-size: clamp(10px, 1.5vw, 14px);
  line-height: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden; /* внутренний скролл без видимой полосы */
  transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sales .sales-details::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.sales .sales-block.is-open .sales-details {
  padding: 14px 16px 18px;
  max-height: 450px; /* подгони под среднюю длину текста */
  opacity: 1;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .sales .sales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .sales .sales-card {
    height: 210px;
  }
}
@media (max-width: 600px) {
  .sales .sales-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sales .sales-card {
    height: 200px;
  }
  .sales .sales-details {
    font-size: clamp(10px, 3vw, 13px);
    line-height: 18px;
  }
}

.residence {
  padding: 20px 0;
  /* Контейнер для карусели */
}
.residence .residence .container {
  display: flex;
  flex-direction: column;
}
.residence .title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.residence .title-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.residence .arrow-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.residence .arrow-btn-right {
  transform: rotate(180deg);
}
.residence .residence-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.residence .residence-block {
  display: flex;
  gap: 75px;
  transition: transform 0.5s ease;
}
.residence .res-card {
  width: 350px;
  height: 381px;
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  flex-shrink: 0;
  position: relative;
}
.residence .res-card .btn {
  position: relative;
  z-index: 1000;
}
.residence .image-container {
  position: relative;
  width: 350px;
  height: 165px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.residence .res-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (max-width: 1024px) {
  .residence .res-image {
    width: 284px;
    border-radius: 20px;
  }
}
.residence .res-image.active {
  opacity: 1;
}
.residence .pagination {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.residence .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.residence .dot.active {
  background-color: white;
}
.residence .res-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #153c45;
  margin: 14px 0 14px 30px;
}
.residence .res-card p {
  margin-left: 30px;
  color: #153c45;
  opacity: 0.8;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  max-width: 292px;
  /* новые свойства */
  max-height: 65px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* плавный скролл на iOS */
  /* скрываем сам скролл */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и старый Edge */
}
.residence .res-card p::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media (max-width: 601px) {
  .residence .res-card p {
    max-width: 400px;
  }
}
.residence .res-card .btn {
  margin: 35px auto 20px;
  padding: 18px 64px;
  border-radius: 20px;
  border: none;
  width: 292px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .residence .res-card .btn {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .residence .residence-block {
    gap: 20px;
  }
  .residence .res-card {
    width: 280px;
    height: 360px;
  }
  .residence .image-container {
    width: 280px;
    height: 150px;
  }
  .residence .pagination {
    top: 134px;
  }
  .residence .res-card .btn {
    padding: 18px 40px;
    width: 95%;
  }
  .residence .res-card h3 {
    margin: 14px 0 14px 20px;
  }
  .residence .res-card p {
    margin-left: 20px;
    padding-right: 5px;
  }
}
@media (max-width: 360px) {
  .residence .res-card {
    width: 260px;
    height: 340px;
  }
  .residence .image-container {
    width: 260px;
    height: 140px;
  }
  .residence .res-card .btn {
    width: calc(100% - 36px);
    padding: 14px;
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .residence .residence-block {
    gap: 65px;
  }
  .residence .res-card {
    width: 340px;
    height: 375px;
  }
  .residence .image-container {
    width: 340px;
    height: 160px;
  }
}
@media (max-width: 1024px) {
  .residence .residence-block {
    gap: 25px;
  }
  .residence .res-card {
    width: 285px;
    height: 370px;
  }
  .residence .image-container {
    width: 320px;
    height: 155px;
  }
}
@media (max-width: 900px) {
  .residence .residence-block {
    gap: 45px;
  }
  .residence .res-card {
    width: 300px;
    height: 365px;
  }
  .residence .image-container {
    width: 300px;
    height: 152px;
  }
}
@media (max-width: 600px) {
  .residence .res-card {
    width: 290px;
    height: 355px;
  }
  .residence .image-container {
    width: 290px;
    height: 148px;
  }
  .residence .pagination {
    top: 178px;
  }
}
@media (max-width: 475px) {
  .residence .res-card {
    width: 275px;
    height: 350px;
  }
  .residence .image-container {
    width: 275px;
    height: 145px;
  }
  .residence .res-card .btn {
    width: 90%;
    font-size: 18px;
  }
}
@media (max-width: 390px) {
  .residence .res-card {
    width: 265px;
    height: 345px;
  }
  .residence .image-container {
    width: 265px;
    height: 142px;
  }
}
@media (max-width: 320px) {
  .residence .res-card {
    width: 240px;
    height: 320px;
  }
  .residence .image-container {
    width: 240px;
    height: 130px;
  }
  .residence .res-card .btn {
    width: calc(100% - 30px);
    padding: 12px;
    font-size: 15px;
  }
}
#overlay {
  pointer-events: none;
}

.residence .residence-block {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.residence .res-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  height: auto;
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  flex-shrink: 0;
  position: relative;
}
.residence .res-card .image-container {
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.residence .res-card .res-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) and (min-width: 601px) {
  .residence .res-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 600px) {
  .residence .res-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.loyalty .container {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media (max-width: 900px) {
  .loyalty .container {
    padding: 20px;
  }
}
.loyalty .btn {
  width: 292px;
  height: 59px;
  border-radius: 20px;
  display: inline-block;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 17px 58px;
  margin-top: 65px;
  margin-left: auto;
}

.loyalty-programms-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 35px;
}

.lp-block {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.lp-block .days {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #153c45;
  position: relative;
  margin-bottom: 35px;
}
.lp-block .days-hr::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 52%;
  width: 244px;
  background: #153c45;
  opacity: 0.7;
  height: 1.5px;
}
@media (max-width: 1024px) {
  .lp-block .days-hr::after {
    right: -130px;
    width: 200px;
  }
}
@media (max-width: 900px) {
  .lp-block .days-hr::after {
    content: none;
  }
}
.lp-block .days-hr_2::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 52%;
  width: 230px;
  background: #153c45;
  opacity: 0.7;
  height: 1.5px;
}
@media (max-width: 1024px) {
  .lp-block .days-hr_2::after {
    right: -130px;
    width: 190px;
  }
}
@media (max-width: 900px) {
  .lp-block .days-hr_2::after {
    content: none;
  }
}

.level-block {
  padding: 20px 35px 55px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
}
.level-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #153c45;
  margin-bottom: 15px;
}
@media (max-width: 391px) {
  .level-block h3 {
    font-size: 18px;
  }
}
.level-block p {
  font-family: "Inter", sans-serif;
  color: #153c45;
  font-size: 14px;
}
@media (max-width: 391px) {
  .level-block p {
    font-size: 12px;
  }
}

.level {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.level-bonus {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.level-bonus + .level-bonus {
  margin-top: 19px;
}

.preferences {
  display: flex;
  flex-direction: column;
}
.preferences h3 {
  font-size: 18px;
}
@media (max-width: 391px) {
  .preferences h3 {
    font-size: 16px;
  }
}

.loyalty-info-block {
  display: flex;
  flex-direction: column;
}
.loyalty-info-block p {
  font-family: "Inter", sans-serif;
  color: #153c45;
  font-size: 20px;
  text-align: left;
  line-height: 35px;
}
@media (max-width: 768px) {
  .loyalty-info-block p {
    font-size: 18px;
  }
}
@media (max-width: 601px) {
  .loyalty-info-block p {
    font-size: 14px;
  }
}
.loyalty-info-block p a {
  color: #dca269;
  white-space: nowrap;
}

.info-img-block {
  display: flex;
  align-items: start;
  gap: 45px;
  margin: 20px 0;
}
.info-img-block img {
  width: 500px;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 820px) {
  .info-img-block img {
    width: 400px;
  }
}
@media (max-width: 690px) {
  .info-img-block img {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .info-img-block {
    gap: 17px;
  }
}
.info-img-block li {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 35px;
  color: #153c45;
}
.info-img-block p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 35px;
  color: #153c45;
}
@media (max-width: 601px) {
  .info-img-block p {
    font-size: 14px;
  }
}
@media (max-width: 601px) {
  .info-img-block img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .loyalty-programms-blocks {
    flex-wrap: wrap;
    gap: 20px;
  }
  .lp-block {
    width: 100%;
  }
  .loyalty .btn {
    margin-top: 25px;
  }
  .loyalty .container {
    padding: 20px 16px;
  }
  .info-img-block li,
  .info-img-block p {
    line-height: 20px;
  }
  .level-block {
    display: grid;
    grid-template-columns: 1fr 1fr; /* два столбца ниже картинки */
    grid-auto-rows: auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 16px;
    align-items: start;
    padding: 15px 35px;
    border: 0.5px solid rgba(21, 60, 69, 0.5);
    border-radius: 20px;
    width: 600px;
  }
  .info-img-block {
    align-items: center;
  }
  /* картинка растянуть на всю ширину первой строки */
  /* колонки под картинкой */
}
@media (max-width: 768px) and (max-width: 476px) {
  .info-img-block {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .loyalty-info-block p {
    line-height: 20px;
  }
  .level-block > img {
    grid-column: 1/-1;
    justify-self: center; /* по центру блока */
    display: block;
    max-width: 120px; /* при необходимости скорректировать */
    height: auto;
  }
  .level-block > .level {
    grid-column: 1;
    width: 100%;
    margin-left: 30px;
  }
}
@media (max-width: 768px) and (max-width: 476px) {
  .level-block > .level {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .level-block > .preferences {
    grid-column: 2;
    width: 100%;
    margin-left: 25px;
  }
}
@media (max-width: 768px) and (max-width: 406px) {
  .level-block > .preferences {
    margin-left: 20px;
  }
}
@media (max-width: 768px) and (max-width: 371px) {
  .level-block > .preferences {
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .lp-block {
    align-items: center;
  }
  .lp-block .days-hr::after,
  .lp-block .days-hr_2::after {
    content: none;
  }
}
@media (max-width: 360px) {
  .level-block {
    padding: 16px;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .loyalty-info-block p {
    font-size: 14px;
    line-height: 25px;
  }
  .info-img-block {
    flex-direction: column;
    gap: 12px;
  }
  .level-block .preferences {
    align-items: center;
    margin: 0 auto;
  }
  .level-block .level {
    align-items: center;
    margin: 0 auto;
  }
  .info-img-block li,
  .info-img-block p {
    font-size: 14px;
  }
  .loyalty .btn {
    width: 250px;
    height: 50px;
    font-size: 16px;
    padding: 15px 52px;
    margin-top: 45px;
    margin-left: auto;
  }
}
@media (max-width: 1400px) {
  .loyalty-programms-blocks {
    gap: 80px;
  }
  .level-block {
    padding: 18px 32px 50px;
  }
  .loyalty .btn {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  .loyalty-programms-blocks {
    gap: 70px;
  }
  .level-block {
    padding: 16px 28px 45px;
  }
  .loyalty .btn {
    width: 280px;
    height: 56px;
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .loyalty-programms-blocks {
    gap: 30px;
    flex-wrap: wrap;
  }
  .level-block {
    padding: 15px 25px 40px;
  }
}
@media (max-width: 600px) {
  .loyalty-programms-blocks {
    gap: 30px;
  }
  .level-block {
    width: 450px;
    padding: 12px 30px;
  }
  .loyalty .btn {
    margin-top: 35px;
  }
}
@media (max-width: 475px) {
  .level-block {
    width: 100%;
    padding: 10px 25px;
  }
  .loyalty .btn {
    width: 260px;
    height: 52px;
    font-size: 17px;
  }
}
@media (max-width: 391px) {
  .level-block {
    width: 100%;
  }
  .loyalty .btn {
    width: 240px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 320px) {
  .level-block {
    width: 300px;
    padding: 8px 20px;
  }
  .loyalty .btn {
    width: 220px;
    height: 45px;
    font-size: 15px;
    padding: 12px 45px;
  }
}
.edge .container {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 16px;
}
.edge .title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.edge .title-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.edge .arrow-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.edge .arrow-btn-right {
  transform: rotate(180deg);
}

.edge-cards-wrapper {
  overflow: hidden;
  width: 100%;
}

.edge-cards {
  display: flex;
  gap: 47px;
  transition: transform 0.5s ease;
}

.e-card {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 30px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  width: 260px;
  height: 260px;
  text-align: center;
  flex-shrink: 0;
}

.e-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #153c45;
}

.e-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #153c45;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .edge .edge-cards-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .edge .edge-cards {
    gap: 20px;
  }
  .edge .e-card {
    width: 240px;
    height: 240px;
    scroll-snap-align: start;
  }
}
@media (max-width: 360px) {
  .edge .e-card {
    width: 220px;
    height: 220px;
  }
  .edge .title-block {
    gap: 8px;
  }
}
@media (max-width: 1400px) {
  .edge .edge-cards {
    gap: 40px;
  }
  .edge .e-card {
    width: 250px;
    height: 250px;
    padding: 28px;
  }
}
@media (max-width: 1024px) {
  .edge .edge-cards {
    gap: 35px;
  }
  .edge .e-card {
    width: 245px;
    height: 245px;
    padding: 26px;
  }
}
@media (max-width: 900px) {
  .edge .edge-cards {
    gap: 30px;
  }
  .edge .e-card {
    width: 240px;
    height: 240px;
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .edge .e-card {
    width: 230px;
    height: 230px;
    padding: 22px;
  }
  .edge .title-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 475px) {
  .edge .e-card {
    width: 225px;
    height: 225px;
    padding: 20px;
  }
  .edge .e-card h4 {
    font-size: 15px;
  }
  .edge .e-card p {
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .edge .e-card {
    width: 215px;
    height: 215px;
  }
}
@media (max-width: 320px) {
  .edge .e-card {
    width: 200px;
    height: 200px;
    padding: 18px;
  }
  .edge .e-card h4 {
    font-size: 14px;
  }
  .edge .e-card p {
    font-size: 12px;
  }
}
.events .container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}
.events .title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.events .title-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.events .arrow-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.events .arrow-btn-right {
  transform: rotate(180deg);
}
.events .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 6px 14px;
  border-radius: 10px;
  margin-top: 25px;
}

.events-blocks {
  display: flex;
  gap: 47px;
  overflow: hidden;
  width: 100%;
}

.events-cards {
  display: flex;
  gap: 47px;
  transition: transform 0.5s ease;
}

.event-block-text {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.event-block-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #153c45;
  font-weight: 500;
  margin-bottom: 20px;
}

.event-text-info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.event-text-info p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #153c45;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .events .events-blocks {
    overflow-x: auto;
  }
  .events .events-cards {
    gap: 20px;
  }
  .events .event-block {
    min-width: 86vw;
  }
}
@media (max-width: 360px) {
  .events .event-block {
    min-width: 92vw;
  }
  .events .btn {
    width: 100%;
  }
  .event-block {
    flex-direction: column;
  }
  .event-block > img {
    height: auto;
    width: 100%;
  }
  .e-card > img {
    width: 60px;
    height: auto;
  }
  .e-card {
    gap: 10px;
  }
}
/* контейнер сетки */
.events-blocks {
  display: flex;
  gap: 47px;
  overflow: hidden;
  width: 100%;
}

/* карточка */
.event-card {
  display: flex;
  gap: 19px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  min-width: 568px;
  flex-shrink: 0;
}

.event-cover {
  flex: 0 0 180px;
  height: auto;
  background: #f5f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Контент справа */
.event-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Отступы для текста */
.event-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.event-meta {
  font-size: 14px;
  color: #5c6b7a;
}

.event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-weight: 700;
  color: #0b8cf8;
}

/* постер */
.event-media {
  position: relative;
  background: #f4f7fa;
  aspect-ratio: 4/3;
  /* удерживаем форму, если нет картинки */
  overflow: hidden;
}

.event-media img {
  width: 241px;
  height: 241px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* контент */
.event-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.event-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #153c45;
  font-weight: 500;
  margin-bottom: 48px;
}

.event-lines {
  display: grid;
  gap: 19px;
  margin-top: 2px;
}

.event-line {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  gap: 7px;
  color: #153c45;
  font-size: 15px;
}

.event-line svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.75;
}

/* футер */
.event-foot {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #d7a66c;
  /* “золотистая” как на примере */
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05) inset;
}

.event-link {
  display: none;
}

/* адаптив */
@media (max-width: 720px) {
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-media {
    height: 180px;
    aspect-ratio: auto;
  }
}
/* универсальный блок для статусов */
.events-state {
  margin: 8px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f3f7fb;
  color: #2f3d4a;
  border: 1px dashed #dbe7f3;
  font-size: 14px;
}

.events-cards {
  display: flex;
  gap: 47px;
  transition: transform 0.5s ease;
  will-change: transform;
}

@media (max-width: 1400px) {
  .events .events-cards {
    gap: 40px;
  }
  .events .event-card {
    min-width: 520px;
  }
}
@media (max-width: 1024px) {
  .events .events-cards {
    gap: 35px;
  }
  .events .event-card {
    min-width: 480px;
  }
  .events .title-block {
    margin-bottom: 35px;
  }
}
@media (max-width: 900px) {
  .events .events-cards {
    gap: 30px;
  }
  .events .event-card {
    min-width: 450px;
  }
}
@media (max-width: 600px) {
  .events .event-card {
    min-width: 400px;
  }
  .events .title-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 475px) {
  .events .events-cards {
    gap: 25px;
  }
  .events .event-card {
    min-width: 350px;
  }
  .events .event-title {
    font-size: 17px;
  }
}
@media (max-width: 390px) {
  .events .event-card {
    min-width: 320px;
  }
  .events .event-title {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .events .event-card {
    min-width: 280px;
  }
  .events .event-title {
    font-size: 15px;
  }
  .events .event-body {
    padding: 12px 14px;
  }
}
.review .container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 25px;
}
.review .btn {
  width: 159px;
  height: 38px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border-color: transparent;
}

.review-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 51px;
  width: 100%;
}

.r-card {
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  width: 360px;
  height: 234px;
  padding-left: 25px;
}
.r-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #153c45;
  opacity: 0.7;
  line-height: 20px;
  max-width: 235px;
  margin: 10px 0;
  height: 80px;
  overflow: hidden;
}

.r-card-title {
  display: flex;
  gap: 15px;
}

.r-card-title-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.r-card-title-name h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #153c45;
  margin-top: 15px;
}
.r-card-title-name span {
  position: absolute;
  top: 52%;
  right: -70px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #153c45;
  opacity: 0.7;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

@media (max-width: 768px) {
  .review .review-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .review .r-card {
    width: calc(50% - 8px);
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .review .r-card {
    width: 100%;
  }
  .review .review-cards {
    justify-content: center;
  }
}
@media (max-width: 1400px) {
  .review-cards {
    gap: 45px;
  }
  .review .r-card {
    width: 350px;
    height: 230px;
  }
}
@media (max-width: 1024px) {
  .review-cards {
    gap: 40px;
  }
  .review .r-card {
    width: 340px;
    height: 225px;
  }
}
@media (max-width: 900px) {
  .review-cards {
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .review .r-card {
    width: 320px;
    height: 220px;
  }
}
@media (max-width: 600px) {
  .review .r-card {
    width: 300px;
    height: 215px;
  }
  .review-cards {
    gap: 25px;
  }
}
@media (max-width: 475px) {
  .review .r-card {
    width: 280px;
    height: 210px;
    padding-left: 20px;
  }
  .review .r-card p {
    max-width: 220px;
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .review .r-card {
    width: 260px;
    height: 205px;
  }
}
@media (max-width: 320px) {
  .review .r-card {
    width: 240px;
    height: 200px;
    padding-left: 15px;
  }
  .review .r-card p {
    max-width: 200px;
    font-size: 12px;
  }
  .review .r-card-title-name h3 {
    font-size: 18px;
  }
}
.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1100px) {
  .review-cards {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 720px) {
  .review-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.review-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(12, 20, 33, 0.06);
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
}

.contacts .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contacts .container iframe {
  border-radius: 20px;
  max-width: 600px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
}
.contacts-info h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #153c45;
}
.contacts-info p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #153c45;
  margin-top: 18px;
}

.contacts-info-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px 0 35px;
}
.contacts-info-buttons button {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #153c45;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  width: 127px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
}
.contacts-info-buttons button.active {
  background: #153c45;
  color: white;
}

.contacts-info-links {
  display: flex;
  align-items: center;
  gap: 23px;
}
.contacts-info-links a {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #dca269;
  margin: 30px 0 50px;
  position: relative;
  text-decoration: underline;
}
.contacts-info-links .a_hr::after {
  content: "";
  position: absolute;
  width: 445px;
  height: 1px;
  background: rgba(21, 60, 69, 0.5);
  bottom: -22px;
  left: 0;
}
@media (max-width: 1024px) {
  .contacts-info-links .a_hr::after {
    width: 340px;
  }
}
.contacts-info-links .a_hr_2::before {
  content: "";
  position: absolute;
  height: 41px;
  width: 0.5px;
  background: rgba(21, 60, 69, 0.5);
  bottom: -2px;
  left: -10px;
}

@media (max-width: 768px) {
  .contacts .container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .contacts iframe {
    width: 100% !important;
    height: 340px !important;
  }
  .contacts-info-links .a_hr::after {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .contacts-info-buttons {
    gap: 12px;
  }
  .contacts-info-links a {
    font-size: 16px;
  }
  .contacts-info h3 {
    font-size: 16px;
  }
  .contacts-info-links .a_hr::after {
    bottom: -15px;
  }
  .contacts-info-links .a_hr_2::before {
    bottom: -10px;
  }
}
@media (max-width: 1400px) {
  .contacts .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .contacts-info h3 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .contacts .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .contacts-info h3 {
    font-size: 20px;
  }
  .contacts-info p {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .contacts .container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .contacts iframe {
    width: 100% !important;
    height: 320px !important;
  }
}
@media (max-width: 600px) {
  .contacts iframe {
    height: 280px !important;
  }
  .contacts-info-buttons {
    gap: 15px;
  }
  .contacts-info-links a {
    font-size: 18px;
  }
}
@media (max-width: 475px) {
  .contacts-info h3 {
    font-size: 18px;
  }
  .contacts-info p {
    font-size: 14px;
  }
  .contacts-info-buttons button {
    width: 110px;
    height: 28px;
    font-size: 13px;
  }
}
@media (max-width: 390px) {
  .contacts-info-buttons {
    gap: 10px;
  }
  .contacts-info-links a {
    font-size: 14px;
  }
  .contacts-info h3 {
    font-size: 17px;
  }
}
@media (max-width: 320px) {
  .contacts-info h3 {
    font-size: 15px;
  }
  .contacts-info p {
    font-size: 13px;
  }
  .contacts-info-buttons {
    gap: 8px;
  }
  .contacts-info-buttons button {
    width: 100px;
    height: 26px;
    font-size: 12px;
  }
}
.docs .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 40px 60px;
}

.docs-card {
  display: flex;
  flex-direction: column;
  padding: 18px 0 18px 23px;
  width: 260px;
  height: 150px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.docs-card p {
  font-family: "Montserrat", sans-serif;
  color: #153c45;
  font-weight: 500;
}
@media (max-width: 435px) {
  .docs-card p {
    font-size: 14px;
  }
}
@media (max-width: 391px) {
  .docs-card p {
    font-size: 13px;
  }
}
@media (max-width: 321px) {
  .docs-card p {
    font-size: 12px;
  }
}

.docs-pdf {
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  bottom: 20px;
  left: 23px;
}
.docs-pdf a {
  font-family: "Inter", sans-serif;
  color: #153c45;
  font-size: 14px;
}

@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .docs-card {
    width: 100%;
    height: 140px;
  }
}
@media (max-width: 360px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .docs-card {
    height: 128px;
  }
}
@media (max-width: 1400px) {
  .docs-grid {
    gap: 35px 50px;
  }
  .docs-card {
    width: 240px;
    height: 145px;
  }
}
@media (max-width: 1200px) {
  .docs-grid {
    gap: 35px 40px;
  }
}
@media (max-width: 1090px) {
  .docs-grid {
    gap: 35px 20px;
  }
}
@media (max-width: 1024px) {
  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
  .docs-card {
    width: 220px;
    height: 140px;
  }
}
@media (max-width: 900px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }
  .docs-card {
    width: 100%;
    height: 135px;
  }
}
@media (max-width: 600px) {
  .docs-grid {
    gap: 20px;
  }
  .docs-card {
    height: 130px;
    padding: 15px 0 15px 20px;
  }
}
@media (max-width: 475px) {
  .docs-card {
    height: 125px;
    padding: 14px 0 14px 18px;
  }
  .docs-pdf {
    bottom: 18px;
    left: 18px;
  }
}
@media (max-width: 390px) {
  .docs-card {
    height: 120px;
  }
}
@media (max-width: 320px) {
  .docs-card {
    height: 115px;
    padding: 12px 0 12px 15px;
  }
  .docs-pdf {
    bottom: 15px;
    left: 15px;
  }
}
/* POPUP */
.popup-programm {
  display: none;
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  max-height: 90vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  width: min(1340px, 92vw);
  /* скрыть полосу прокрутки, оставить скролл */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/старый Edge */
  /* крестик */
}
.popup-programm::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.popup-programm::-webkit-scrollbar-thumb {
  background: transparent;
}
.popup-programm::-webkit-scrollbar-track {
  background: transparent;
}
.popup-programm.is-open {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  padding: 70px;
}
.popup-programm h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #153c45;
  margin-bottom: 20px;
}
.popup-programm > img {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}
.popup-programm p,
.popup-programm li,
.popup-programm span {
  color: #153c45;
  font-family: "inter", sans-serif;
  line-height: 23px;
}
.popup-programm span {
  font-weight: 600;
}
.popup-programm ol,
.popup-programm ul {
  margin-left: 25px;
}

/* OVERLAY (тёмный и кликабельный) */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* темнее */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* блокировка прокрутки фона при открытом попапе */
.body-lock {
  overflow: hidden;
}

@media (max-width: 360px) {
  .popup-programm.is-open {
    padding: 40px 5px;
    left: 45%;
  }
  .popup-programm h2 {
    font-size: 16px;
  }
  .popup-programm > img {
    right: 15px;
  }
}
@media (max-width: 1400px) {
  .popup-programm {
    width: min(1200px, 90vw);
    top: 6vh;
  }
  .popup-programm.is-open {
    padding: 60px;
  }
}
@media (max-width: 1024px) {
  .popup-programm {
    width: min(1000px, 88vw);
  }
  .popup-programm.is-open {
    padding: 50px;
  }
  .popup-programm h2 {
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .popup-programm {
    width: min(850px, 86vw);
    top: 7vh;
  }
  .popup-programm.is-open {
    padding: 45px;
  }
}
@media (max-width: 600px) {
  .popup-programm {
    width: min(95vw, 550px);
  }
  .popup-programm.is-open {
    padding: 35px;
  }
  .popup-programm h2 {
    font-size: 18px;
  }
}
@media (max-width: 475px) {
  .popup-programm {
    width: min(96vw, 450px);
    left: 50%;
  }
  .popup-programm.is-open {
    padding: 30px;
  }
}
@media (max-width: 390px) {
  .popup-programm {
    width: min(97vw, 370px);
    left: 50%;
  }
  .popup-programm h2 {
    font-size: 17px;
    margin-top: 35px;
  }
}
@media (max-width: 320px) {
  .popup-programm {
    width: min(98vw, 300px);
    left: 48%;
  }
  .popup-programm.is-open {
    padding: 25px 8px;
  }
  .popup-programm h2 {
    font-size: 15px;
  }
  .popup-programm > img {
    right: 10px;
  }
}
/* затемнение */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* блокировка фоновой прокрутки при открытом попапе */
.body-lock {
  overflow: hidden;
}

/* попап с контентом правил */
.popup-main-programm {
  display: none; /* скрыто по умолчанию */
  position: fixed;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(1200px, 94vw); /* как в макете: широкое белое окно */
  max-height: 92vh;
  background: #fff;
  border: 1px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  padding: 24px 28px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popup-main-programm::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.popup-main-programm.is-open {
  display: block;
  padding: 78px 64px;
}
.popup-main-programm .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
}
.popup-main-programm p,
.popup-main-programm a {
  font-family: "Inter", sans-serif;
  color: #153c45;
}
.popup-main-programm span {
  font-weight: 600;
}
.popup-main-programm a {
  text-decoration: underline;
}
.popup-main-programm .table {
  padding: 10px 0 15px;
}

@media (max-width: 360px) {
  .popup-main-programm {
    left: 45%;
  }
  .popup-main-programm .table {
    width: 100%;
  }
  .popup-main-programm.is-open {
    padding: 40px 5px;
  }
  .popup-main-programm .close-btn {
    right: 20px;
  }
}
@media (max-width: 1400px) {
  .popup-main-programm {
    width: min(1100px, 92vw);
    top: 5vh;
  }
  .popup-main-programm.is-open {
    padding: 70px 55px;
  }
}
@media (max-width: 1024px) {
  .popup-main-programm {
    width: min(950px, 90vw);
  }
  .popup-main-programm.is-open {
    padding: 60px 45px;
  }
}
@media (max-width: 900px) {
  .popup-main-programm {
    width: min(850px, 88vw);
    top: 6vh;
  }
  .popup-main-programm.is-open {
    padding: 50px 35px;
  }
}
@media (max-width: 600px) {
  .popup-main-programm {
    width: min(95vw, 550px);
  }
  .popup-main-programm.is-open {
    padding: 45px 25px;
  }
}
@media (max-width: 475px) {
  .popup-main-programm {
    width: min(96vw, 450px);
    left: 47%;
  }
  .popup-main-programm.is-open {
    padding: 35px 15px;
  }
}
@media (max-width: 390px) {
  .popup-main-programm {
    width: min(97vw, 370px);
    left: 46%;
  }
}
@media (max-width: 320px) {
  .popup-main-programm {
    width: min(98vw, 300px);
    left: 48%;
  }
  .popup-main-programm.is-open {
    padding: 30px 10px;
  }
  .popup-main-programm .close-btn {
    right: 15px;
  }
}
/* popup */
.popup-info {
  display: none;
  position: fixed; /* центр экрана */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 431px;
  height: 508px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px 0;
  display: none;
  flex-direction: column;
  gap: 40px;
  overflow: auto; /* прокрутка внутри */
  -webkit-overflow-scrolling: touch;
  /* скрыть полосу прокрутки */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* показать при открытии */
}
.popup-info h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #153c45;
}
.popup-info::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.popup-info.is-open {
  display: flex;
}
.popup-info > img {
  /* крестик */
  position: absolute;
  top: 30px;
  right: 24px;
  cursor: pointer;
  z-index: 1;
}
.popup-info .accordion {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.popup-info .accordion-block {
  display: flex;
  flex-direction: column;
}
.popup-info .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 23px;
  border-bottom: 0.5px solid #153c45;
}
.popup-info .accordion-title h5 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #153c45;
}
.popup-info .accrodion-content p, .popup-info .accrodion-content li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #153c45;
  line-height: 20px;
}

/* кликабельный заголовок */
.popup-info .accordion-title {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom: 0.5px solid #153c45;
  padding-bottom: 18px;
  transition: border-color 0.2s ease;
}

/* контент по умолчанию скрыт */
.popup-info .accrodion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0; /* без отступов в закрытом */
  border-bottom: 0.5px solid transparent; /* границы нет в закрытом */
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
}

/* открытый блок: граница снизу у контента, у заголовка исчезает */
.popup-info .accordion-block.is-open .accordion-title {
  border-bottom-color: transparent;
}

.popup-info .accordion-block.is-open .accrodion-content {
  opacity: 1;
  padding-bottom: 24px; /* ← добавленные отступы */
  border-bottom-color: #153c45; /* ← появляется граница */
}

/* анимация стрелки */
.popup-info .accordion-title img {
  transition: transform 0.25s ease;
}

.popup-info .accordion-block.is-open .accordion-title img {
  transform: rotate(180deg);
}

@media (max-width: 360px) {
  .popup-info {
    width: 330px;
    left: 45%;
  }
  .popup-info h4 {
    font-size: 20px;
  }
  .popup-info .accordion-title h5 {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .popup-info {
    width: 420px;
    height: 490px;
    padding: 28px 22px 0;
  }
}
@media (max-width: 1024px) {
  .popup-info {
    width: 410px;
    height: 480px;
    padding: 26px 20px 0;
  }
  .popup-info h4 {
    font-size: 23px;
  }
}
@media (max-width: 900px) {
  .popup-info {
    width: 400px;
    height: 470px;
  }
}
@media (max-width: 600px) {
  .popup-info {
    width: 380px;
    height: 450px;
  }
  .popup-info h4 {
    font-size: 22px;
  }
}
@media (max-width: 475px) {
  .popup-info {
    width: 360px;
    height: 430px;
  }
  .popup-info .accordion-title h5 {
    font-size: 18px;
  }
}
@media (max-width: 390px) {
  .popup-info {
    width: 340px;
    left: 47%;
  }
  .popup-info h4 {
    font-size: 21px;
  }
}
@media (max-width: 320px) {
  .popup-info {
    width: 310px;
    left: 48%;
    height: 400px;
  }
  .popup-info h4 {
    font-size: 18px;
  }
  .popup-info .accordion-title h5 {
    font-size: 15px;
  }
}
/* Overlay */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}
.contact-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Popup */
.contact-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: min(640px, 92vw);
  max-height: 88vh;
  padding: 24px 22px 22px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(21, 60, 69, 0.5);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1001;
  /* прячем полосу прокрутки */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.contact-popup::-webkit-scrollbar {
  display: none;
}
.contact-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Кнопка закрытия */
.contact-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #153c45;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
}
.contact-close:hover {
  opacity: 0.95;
}
.contact-close:active {
  transform: scale(0.98);
}
.contact-close:focus-visible {
  outline: 2px solid rgba(21, 60, 69, 0.35);
  outline-offset: 2px;
}

/* Заголовок */
.contact-popup h2 {
  margin: 0 40px 14px 2px; /* отступ справа под кнопку */
  font: 600 22px/1.3 "Montserrat", sans-serif;
  color: #153c45;
  position: relative;
}

.contact-popup h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: #153c45;
  opacity: 0.85;
}

/* Сетка */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 карточки */
  gap: 14px;
  margin-top: 6px;
}

/* Карточки */
.contact-col {
  border: 1px solid rgba(21, 60, 69, 0.5);
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: rgba(15, 58, 64, 0.03);
}

.contact-col h3 {
  margin: 2px 0 6px;
  font: 600 16px/1.25 "Inter", sans-serif;
  color: #153c45;
}

.contact-col p {
  margin: 0;
  font: 14px/1.6 "Inter", sans-serif;
  color: #153c45;
  opacity: 0.9;
  word-break: break-word;
}

/* Адаптив */
@media (max-width: 760px) {
  .contact-popup {
    width: min(600px, 94vw);
    padding: 20px 18px 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-popup h2 {
    font-size: 20px;
  }
  .contact-col h3 {
    font-size: 15px;
  }
  .contact-col p {
    font-size: 13px;
    line-height: 1.55;
  }
}
/* Блокировка скролла body при открытии */
.body-lock {
  overflow: hidden;
}

.faq .container {
  display: flex;
  align-items: start;
  gap: 50px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .faq .container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
}
@media (max-width: 360px) {
  .faq .container {
    padding: 20px 15px;
    gap: 20px;
  }
}
.faq .faq-title {
  display: flex;
  flex-direction: column;
}
.faq .faq-title p {
  margin: 15px 0 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #153c45;
}
@media (max-width: 900px) {
  .faq .faq-title p {
    font-size: 14px;
    margin: 10px 0 15px;
  }
}
.faq .faq-title span {
  color: #dca269;
  font-weight: 500;
}
.faq .faq-title .btn {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 13px 48px;
  border-radius: 15px;
  display: inline-block;
  width: 192px;
  border-color: transparent;
}
@media (max-width: 360px) {
  .faq .faq-title .btn {
    font-size: 16px;
    padding: 10px 30px;
    width: auto;
  }
}
.faq .main-faq-block {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 50px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .faq .main-faq-block {
    margin-top: 0;
    gap: 25px;
  }
}
@media (max-width: 360px) {
  .faq .main-faq-block {
    gap: 20px;
  }
}
.faq .main-faq-block .accordion {
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
@media (max-width: 360px) {
  .faq .main-faq-block .accordion {
    gap: 15px;
  }
}
.faq .main-faq-block .accordion-blocks {
  display: flex;
  flex-direction: column;
}
.faq .main-faq-block .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 0.5px solid rgba(21, 60, 69, 0.5);
  cursor: pointer;
}
.faq .main-faq-block .accordion-title p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #153c45;
}
@media (max-width: 900px) {
  .faq .main-faq-block .accordion-title p {
    font-size: 16px;
  }
}
.faq .main-faq-block .accrodion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq .main-faq-block .accrodion-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #153c45;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .faq .main-faq-block .accrodion-content p {
    font-size: 14px;
  }
}
.faq .main-faq-block .accordion-blocks.open .accordion-title {
  border-bottom: none;
}
.faq .main-faq-block .accordion-blocks.open .accrodion-content {
  border-bottom: 0.5px solid rgba(21, 60, 69, 0.5);
  padding-bottom: 17px;
}
.faq .main-faq-block .accordion-title img {
  transition: transform 0.3s ease;
}
.faq .main-faq-block .accordion-title img.rotated {
  transform: rotate(180deg);
}

/* body-lock лучше глобально */
body.body-lock {
  overflow: hidden;
}

/* overlay */
.hotels-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.hotels-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* popup */
.hotels-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 18px 16px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.hotels-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.hotels-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #0f3a40;
  color: #fff;
  cursor: pointer;
}

.hotels-popup h3 {
  margin: 0 44px 12px 4px;
  font: 600 20px/1.3 "Montserrat", sans-serif;
  color: #0f3a40;
}

.hotels-list {
  display: grid;
  gap: 10px;
}

.hotels-item {
  width: 100%;
  text-align: left;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 14px 14px;
  background: #f8fafb;
  cursor: pointer;
}

.hotels-item:hover {
  background: #f1f5f6;
}

.hotels-city {
  display: block;
  font: 600 16px/1.2 "Inter", sans-serif;
  color: #0f3a40;
}

.hotels-hotel {
  display: block;
  font: 13px/1.4 "Inter", sans-serif;
  color: #0f3a40;
  opacity: 0.7;
}

main {
  /* блокировка скролла body */
}
main .contact-form-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
  font-family: "Inter", sans-serif;
  color: #153c45;
}
main .contact-form-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
main .contact-form-popup__content {
  width: min(92vw, 520px);
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
main .contact-form-popup__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}
main .contact-form-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #f3f5f7;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
main .contact-form-popup__close:hover {
  background: #e9eef2;
}
main .contact-form__row {
  margin-bottom: 12px;
}
main .contact-form__label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}
main .contact-form__input,
main .contact-form__textarea {
  width: 100%;
  border: 1px solid #d9e1e7;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
main .contact-form__input:focus,
main .contact-form__textarea:focus {
  border-color: #8bb4ff;
  box-shadow: 0 0 0 3px rgba(139, 180, 255, 0.25);
}
main .contact-form__actions {
  margin-top: 8px;
}
main .contact-form__actions .btn {
  padding: 10px 17px;
  border-radius: 15px;
  border-color: transparent;
  font-family: "Inter", sans-serif;
}
main .contact-form__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6b7280;
}
main .body-lock {
  overflow: hidden;
}

.lifestyle {
  /* audio popup */
  /* === ОСНОВНОЙ КОНТЕНТ === */
  /* левая часть — карта */
  /* правая часть — кнопки и текст */
  /* кнопки точек */
  /* блок с текстом */
  /* AUDIO GUIDE (как отдельный блок) */
  /* === ГАЛЕРЕЯ === */
  /* === АДАПТИВ === */
}
.lifestyle .header {
  background: white;
  border-bottom: 1px solid #153c45;
}
@media (max-width: 1024px) {
  .lifestyle .header {
    padding: 20px;
  }
}
.lifestyle .header .container {
  display: flex;
  color: white;
  gap: 10px;
}
@media (max-width: 768px) {
  .lifestyle .header .container {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0px 10px;
  }
}
.lifestyle .burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.lifestyle .burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}
.lifestyle .burger span:nth-child(1) {
  top: 12px;
}
.lifestyle .burger span:nth-child(2) {
  top: 19px;
}
.lifestyle .burger span:nth-child(3) {
  top: 26px;
}
.lifestyle .burger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background: #0d0f0f;
}
.lifestyle .burger.is-open span:nth-child(2) {
  opacity: 0;
}
.lifestyle .burger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  background: #0d0f0f;
}
.lifestyle .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 320px);
  background: #fff;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}
.lifestyle .mobile-menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #0d0f0f;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.lifestyle .mobile-menu.is-open {
  transform: translateX(0);
}
.lifestyle .header-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99;
}
.lifestyle .header-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lifestyle body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .lifestyle .desktop-nav {
    display: none;
  }
  .lifestyle .burger {
    display: block;
  }
}
.lifestyle .banner {
  display: flex;
  position: relative;
  padding: 30px 0 15px;
}
@media (max-width: 768px) {
  .lifestyle .banner {
    padding: 20px 0 10px;
  }
}
@media (max-width: 360px) {
  .lifestyle .banner {
    padding: 15px 0 5px;
  }
}
.lifestyle .banner img {
  width: 100%;
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .lifestyle .banner img {
    height: 300px;
  }
}
@media (max-width: 360px) {
  .lifestyle .banner img {
    height: 200px;
  }
}
.lifestyle .banner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: white;
  position: absolute;
  bottom: 70px;
  left: 200px;
}
@media (max-width: 1025px) {
  .lifestyle .banner h1 {
    left: 80px;
  }
}
@media (max-width: 768px) {
  .lifestyle .banner h1 {
    font-size: 28px;
    left: 50px;
    bottom: 40px;
  }
}
@media (max-width: 360px) {
  .lifestyle .banner h1 {
    font-size: 20px;
    left: -40px;
    bottom: 30px;
    text-align: center;
    width: calc(100% - 40px);
  }
}
.lifestyle .route {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .lifestyle .route {
    padding: 30px 0;
  }
}
@media (max-width: 360px) {
  .lifestyle .route {
    padding: 20px 0;
  }
}
.lifestyle .route .container {
  display: flex;
  flex-direction: column;
}
.lifestyle .route .container h2 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .lifestyle .route .container h2 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.lifestyle .route .route-block {
  display: flex;
  align-items: start;
  gap: 40px;
}
@media (max-width: 768px) {
  .lifestyle .route .route-block {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-block {
    gap: 20px;
  }
}
.lifestyle .route .route-img {
  display: none;
}
@media (max-width: 768px) {
  .lifestyle .route .route-img {
    max-width: 100%;
    justify-content: center;
  }
}
.lifestyle .route .route-img.active {
  display: flex;
  max-width: 553px;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .lifestyle .route .route-img.active {
    max-width: 740px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .lifestyle .route .route-img .route-img_one {
    height: 212px;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .lifestyle .route .route-img img {
    max-width: 200px;
    height: auto;
  }
}
@media (max-width: 391px) {
  .lifestyle .route .route-img img {
    max-width: 300px;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-img img {
    max-width: 100%;
  }
}
.lifestyle .route .route-href {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 900px) {
  .lifestyle .route .route-href {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .lifestyle .route .route-href {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-href {
    gap: 15px;
  }
}
.lifestyle .route .route-href button {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  padding: 15px 25px;
  border-radius: 50%;
  color: #153c45;
  border: 1px solid rgba(21, 60, 69, 0.5);
  background: white;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .lifestyle .route .route-href button {
    min-width: 50px;
    min-height: 50px;
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-href button {
    min-width: 40px;
    min-height: 40px;
    font-size: 24px;
    padding: 10px 20px;
  }
}
.lifestyle .route .route-href button.active {
  background: #153c45;
  color: white;
}
.lifestyle .route .route-text {
  display: none;
  flex-direction: column;
  flex: 1;
}
.lifestyle .route .route-text.active {
  display: flex;
}
@media (max-width: 900px) {
  .lifestyle .route .route-text.active {
    align-items: center;
  }
}
.lifestyle .route .route-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  color: #153c45;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .lifestyle .route .route-text h3 {
    font-size: 22px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.lifestyle .route .route-text p {
  font-family: "Inter", sans-serif;
  color: #153c45;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 360px) {
  .lifestyle .route .route-text p {
    font-size: 14px;
    line-height: 1.4;
  }
}
.lifestyle .route .route-text p span {
  font-weight: 600;
}
.lifestyle .route .route-text ol {
  margin-left: 25px;
  margin-bottom: 20px;
}
@media (max-width: 360px) {
  .lifestyle .route .route-text ol {
    margin-left: 15px;
  }
}
.lifestyle .route .route-text ol li {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #153c45;
  margin-bottom: 8px;
}
@media (max-width: 360px) {
  .lifestyle .route .route-text ol li {
    font-size: 14px;
    line-height: 1.4;
  }
}
.lifestyle .route .route-text .btn {
  width: 237px;
  height: 64px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 20px;
  text-decoration: none;
  border-color: transparent;
}
@media (max-width: 768px) {
  .lifestyle .route .route-text .btn {
    align-self: center;
    width: 200px;
    height: 55px;
  }
}
@media (max-width: 360px) {
  .lifestyle .route .route-text .btn {
    width: 190px;
    height: 50px;
    font-size: 16px;
    margin-top: 15px;
  }
}
.lifestyle .relax {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .lifestyle .relax {
    padding: 30px 0;
  }
}
@media (max-width: 360px) {
  .lifestyle .relax {
    padding: 20px 0;
  }
}
.lifestyle .relax .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 360px) {
  .lifestyle .relax .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .lifestyle .relax .container h2 {
    text-align: center;
  }
}
.lifestyle .relax .relax-block {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .lifestyle .relax .relax-block {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .lifestyle .relax .relax-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.lifestyle .relax .r-block {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 20px;
  padding-right: 14px;
  width: 48%;
}
@media (max-width: 768px) {
  .lifestyle .relax .r-block {
    width: 100%;
    max-width: 660px;
  }
}
@media (max-width: 451px) {
  .lifestyle .relax .r-block {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 15px;
  }
}
.lifestyle .relax .r-block img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 483px) {
  .lifestyle .relax .r-block img {
    width: 200px;
  }
}
.lifestyle .relax .r-block .r-block-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.lifestyle .relax .r-block .r-block-text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #153c45;
}
@media (max-width: 360px) {
  .lifestyle .relax .r-block .r-block-text h4 {
    font-size: 18px;
  }
}
.lifestyle .relax .r-block .r-block-text p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #153c45;
  opacity: 0.8;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .lifestyle .relax .r-block .r-block-text p {
    font-size: 13px;
    min-width: 200px;
  }
}
@media (max-width: 483px) {
  .lifestyle .relax .r-block .r-block-text p {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .lifestyle .relax .r-block .r-block-text p {
    font-size: 14px;
  }
}
.lifestyle .news {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .lifestyle .news {
    padding: 30px 0;
  }
}
@media (max-width: 360px) {
  .lifestyle .news {
    padding: 20px 0;
  }
}
.lifestyle .news .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 360px) {
  .lifestyle .news .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .lifestyle .news .container h2 {
    text-align: center;
  }
}
.lifestyle .news .news-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lifestyle .news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .lifestyle .news .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.lifestyle .news .news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.lifestyle .news .news-card img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  width: 350px;
  height: 233px;
}
@media (max-width: 360px) {
  .lifestyle .news .news-card img {
    height: 150px;
  }
}
.lifestyle .news .news-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #153c45;
  margin: 0;
}
@media (max-width: 360px) {
  .lifestyle .news .news-card h3 {
    font-size: 16px;
  }
}
.lifestyle .news .news-card p {
  font-size: 12px;
  color: #153c45;
  font-family: "Inter", sans-serif;
  line-height: 20px;
  flex: 1;
}
@media (max-width: 360px) {
  .lifestyle .news .news-card p {
    font-size: 13px;
  }
}
.lifestyle .news .news-card span {
  font-size: 12px;
  color: #153c45;
  font-family: "Inter", sans-serif;
  opacity: 0.7;
  margin-left: auto;
}
@media (max-width: 360px) {
  .lifestyle .news .news-card span {
    font-size: 11px;
  }
}
.lifestyle .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-height: 90vh;
  max-width: 90vw;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .lifestyle .popup {
    padding: 30px;
    max-width: 95vw;
  }
}
@media (max-width: 360px) {
  .lifestyle .popup {
    padding: 20px;
    border-radius: 15px;
  }
}
.lifestyle .popup.is-open {
  display: block;
  width: 90%;
}
.lifestyle .popup .poput-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 360px) {
  .lifestyle .popup .poput-title {
    margin-bottom: 20px;
  }
}
.lifestyle .popup .poput-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #153c45;
  margin: 0;
}
@media (max-width: 768px) {
  .lifestyle .popup .poput-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 360px) {
  .lifestyle .popup .poput-title h2 {
    font-size: 20px;
  }
}
.lifestyle .popup [data-close-popup] {
  cursor: pointer;
  width: 24px;
  height: 24px;
}
@media (max-width: 360px) {
  .lifestyle .popup [data-close-popup] {
    width: 20px;
    height: 20px;
  }
}
.lifestyle .popup .popup-text {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .lifestyle .popup .popup-text {
    flex-direction: column;
    gap: 20px;
  }
}
.lifestyle .popup .popup-text img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .lifestyle .popup .popup-text img {
    width: 100%;
    height: auto;
  }
}
.lifestyle .popup .popup-text p {
  font-family: "Inter", sans-serif;
  color: #153c45;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 360px) {
  .lifestyle .popup .popup-text p {
    font-size: 14px;
  }
}
.lifestyle .popup p {
  font-family: "Inter", sans-serif;
  color: #153c45;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 360px) {
  .lifestyle .popup p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.lifestyle .popup ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 360px) {
  .lifestyle .popup ul {
    margin-left: 15px;
  }
}
.lifestyle .popup ul li {
  font-family: "Inter", sans-serif;
  color: #153c45;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media (max-width: 360px) {
  .lifestyle .popup ul li {
    font-size: 14px;
  }
}
.lifestyle .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 990;
}
.lifestyle .overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lifestyle .body-lock {
  overflow: hidden;
}
.lifestyle #audioPopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 1127px; /* фиксированная высота */
  width: 1340px;
  overflow-y: auto; /* включаем скролл */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  /* скрываем скролл */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.lifestyle #audioPopup #audioPopup::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.lifestyle #audioPopup h3 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  color: #153c45;
  font-weight: 400;
  margin-bottom: 30px;
}
.lifestyle #audioPopup .route-images img {
  display: none;
}
.lifestyle #audioPopup .route-images img.active {
  display: block;
  width: 646px;
}
@media (max-width: 721px) {
  .lifestyle #audioPopup .route-images img.active {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .lifestyle #audioPopup .route-images img.active {
    width: 95%;
  }
}
.lifestyle #audioPopup.is-open {
  display: block;
}
.lifestyle .body-lock {
  overflow: hidden;
}
.lifestyle .popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lifestyle #audioPopup h2 {
  font-size: 22px;
  margin-bottom: 50px;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
.lifestyle .route-block {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.lifestyle .route-images {
  flex: 0 0 350px;
}
.lifestyle .route-images img {
  display: none;
  width: 100%;
  border-radius: 10px;
}
.lifestyle .route-images img.active {
  display: block;
  width: 646px;
}
.lifestyle .route-info {
  flex: 1;
  display: flex;
  gap: 30px;
}
@media (max-width: 360px) {
  .lifestyle .route-info {
    flex-direction: column;
  }
}
.lifestyle .route-href {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lifestyle .route-href button {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #fff;
  color: #153c45;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 25px;
  font-weight: 400;
}
@media (max-width: 450px) {
  .lifestyle .route-href button {
    height: 51px;
    width: 51px;
  }
}
.lifestyle .route-href button.active {
  background: #153c45;
  color: #fff;
}
.lifestyle .route-text {
  display: none;
  flex-direction: column;
  gap: 15px;
}
.lifestyle .route-text.active {
  display: flex;
}
.lifestyle .route-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 25px;
  color: #153c45;
}
.lifestyle .popup p {
  font-size: 16px;
  line-height: 25px;
  color: #153c45;
  opacity: 0.7;
  overflow-y: auto;
  padding-right: 10px;
  max-height: 350px;
  /* скрываем скролл */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
@media (max-width: 550px) {
  .lifestyle .popup p {
    font-size: 14px;
    line-height: 20px;
  }
}
.lifestyle .popup p::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.lifestyle .audio-guide {
  padding: 40px 0;
  background: #fff;
  /* текстовые блоки с невидимым скроллом */
  /* Галерея из попапа можно оставить как у тебя */
}
.lifestyle .audio-guide .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .lifestyle .audio-guide .container {
    align-items: center;
  }
}
.lifestyle .audio-guide .container .gallery-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #153c45;
}
.lifestyle .audio-guide h2 {
  margin-bottom: 20px;
}
.lifestyle .audio-guide .route-block {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .lifestyle .audio-guide .route-block {
    flex-direction: column;
  }
}
.lifestyle .audio-guide .route-images {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
@media (max-width: 901px) {
  .lifestyle .audio-guide .route-images {
    position: static;
  }
}
.lifestyle .audio-guide .route-images img {
  display: none;
  width: 500px;
  height: auto;
}
@media (max-width: 1025px) {
  .lifestyle .audio-guide .route-images img {
    width: 300px;
  }
}
@media (max-width: 901px) {
  .lifestyle .audio-guide .route-images img {
    width: 500px;
  }
}
@media (max-width: 620px) {
  .lifestyle .audio-guide .route-images img {
    width: 350px;
  }
}
@media (max-width: 430px) {
  .lifestyle .audio-guide .route-images img {
    width: 270px;
  }
}
.lifestyle .audio-guide .route-images img.active {
  display: block;
}
.lifestyle .audio-guide .route-info {
  flex: 1;
  display: flex;
  gap: 30px;
}
@media (max-width: 600px) {
  .lifestyle .audio-guide .route-info {
    flex-direction: column;
  }
}
.lifestyle .audio-guide .route-href {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lifestyle .audio-guide .route-href button {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #fff;
  color: #153c45;
  border: 1px solid rgba(21, 60, 69, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  cursor: pointer;
  transition: 0.2s;
}
.lifestyle .audio-guide .route-href button.active {
  background: #153c45;
  color: #fff;
}
.lifestyle .audio-guide .route-text {
  display: none;
  flex-direction: column;
  gap: 15px;
}
.lifestyle .audio-guide .route-text span {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #153c45;
  opacity: 1;
}
.lifestyle .audio-guide .route-text ol {
  padding-left: 20px;
}
.lifestyle .audio-guide .route-text li {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #153c45;
  opacity: 0.8;
}
.lifestyle .audio-guide .route-text.active {
  display: flex;
}
@media (max-width: 768px) {
  .lifestyle .audio-guide .route-text.active {
    align-items: center;
  }
}
.lifestyle .audio-guide .route-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #153c45;
  margin: 0;
}
.lifestyle .audio-guide .route-text .btn {
  padding: 12px 30px;
  border-radius: 15px;
  width: 220px;
  border: none;
  font-size: 18px;
}
.lifestyle .audio-guide .popup-audio {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
}
.lifestyle .audio-guide .playPauseBtn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #153c45;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lifestyle .audio-guide .progressBar {
  flex: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}
.lifestyle .audio-guide .progressBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #153c45;
}
.lifestyle .audio-guide .progressBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #153c45;
  border: none;
}
.lifestyle .audio-guide .currentTime {
  font: 16px "Inter", sans-serif;
  color: #153c45;
}
.lifestyle .audio-guide .route-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #153c45;
  opacity: 0.7;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lifestyle .audio-guide .route-text p::-webkit-scrollbar {
  display: none;
}
.lifestyle .audio-guide .gallery-flex {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.lifestyle .audio-guide .col-left img {
  width: 345px;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
.lifestyle .audio-guide .col-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.lifestyle .audio-guide .col-right .row {
  display: flex;
  gap: 21px;
}
.lifestyle .audio-guide .col-right .row img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
.lifestyle .audio-guide .short {
  width: 351px;
}
.lifestyle .audio-guide .long {
  width: 451px;
}
@media (max-width: 768px) {
  .lifestyle .audio-guide h2 {
    font-size: 24px;
  }
  .lifestyle .audio-guide .route-images {
    display: flex;
    margin: 0 auto;
  }
  .lifestyle .audio-guide .col-left img {
    width: 100%;
    height: 300px;
  }
  .lifestyle .audio-guide .col-right .row {
    gap: 15px;
  }
  .lifestyle .audio-guide .col-right .row img {
    height: 150px;
  }
  .lifestyle .audio-guide .short,
  .lifestyle .audio-guide .long {
    width: 48%;
  }
}
@media (max-width: 360px) {
  .lifestyle .audio-guide .route-text p {
    font-size: 14px;
    line-height: 20px;
  }
  .lifestyle .audio-guide .col-right .row {
    flex-direction: column;
  }
  .lifestyle .audio-guide .col-right .row img {
    width: 100% !important;
    height: 120px;
  }
  .lifestyle .audio-guide .col-left img {
    height: 200px;
  }
}
.lifestyle .popup-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.lifestyle .popup-gallery img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .lifestyle #audioPopup {
    padding: 30px;
    max-width: 95vw;
  }
  .lifestyle .route-block {
    flex-direction: column;
  }
  .lifestyle .route-images {
    flex: 1;
  }
  .lifestyle .audio-guide .route-href {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .lifestyle #audioPopup {
    padding: 20px;
    border-radius: 15px;
  }
  .lifestyle .playPauseBtn {
    width: 36px;
    height: 36px;
  }
}
.lifestyle .galery {
  margin-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .lifestyle .galery {
    margin-top: 30px;
  }
}
@media (max-width: 360px) {
  .lifestyle .galery {
    margin-top: 20px;
  }
}
.lifestyle .galery .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .lifestyle .galery .container {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .lifestyle .galery .container {
    padding: 0 15px;
    gap: 20px;
  }
}
.lifestyle .gallery-flex {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 768px) {
  .lifestyle .gallery-flex {
    flex-direction: column;
    gap: 15px;
  }
}
.lifestyle .col-left {
  display: flex;
}
.lifestyle .col-left img {
  width: 345px;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .lifestyle .col-left img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 360px) {
  .lifestyle .col-left img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .lifestyle .col-left img:nth-child(1) {
    display: none;
  }
}
.lifestyle .col-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .lifestyle .col-right {
    width: 100%;
  }
}
.lifestyle .col-right .row {
  display: flex;
  align-items: center;
  gap: 21px;
}
@media (max-width: 768px) {
  .lifestyle .col-right .row {
    gap: 15px;
  }
}
@media (max-width: 360px) {
  .lifestyle .col-right .row {
    flex-direction: column;
    gap: 10px;
  }
}
.lifestyle .col-right .row img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .lifestyle .col-right .row img {
    height: 150px;
  }
}
@media (max-width: 360px) {
  .lifestyle .col-right .row img {
    width: 100% !important;
    height: 120px;
  }
}
.lifestyle .short {
  width: 351px;
}
@media (max-width: 768px) {
  .lifestyle .short {
    width: 48%;
  }
}
.lifestyle .long {
  width: 451px;
}
@media (max-width: 768px) {
  .lifestyle .long {
    width: 48%;
  }
}
@media (max-width: 1400px) {
  .lifestyle .header .container {
    gap: 55px;
  }
  .lifestyle .banner h1 {
    font-size: 34px;
    left: 180px;
  }
  .lifestyle .route .route-block {
    gap: 35px;
  }
}
@media (max-width: 1024px) {
  .lifestyle .header .container {
    gap: 45px;
  }
  .lifestyle .banner h1 {
    font-size: 32px;
    left: 160px;
  }
  .lifestyle .route .route-block {
    gap: 30px;
  }
  .lifestyle .relax .r-block {
    width: 85%;
  }
}
@media (max-width: 900px) {
  .lifestyle .banner h1 {
    font-size: 30px;
    left: 70px;
  }
  .lifestyle .route .route-block {
    gap: 25px;
    flex-direction: column;
    align-items: center;
  }
  .lifestyle .relax .r-block {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .lifestyle .banner h1 {
    font-size: 25px;
    left: 40px;
  }
  .lifestyle .route .route-text h3 {
    font-size: 22px;
  }
  .lifestyle .news .news-card img {
    width: 320px;
    height: 200px;
  }
}
@media (max-width: 475px) {
  .lifestyle .banner h1 {
    font-size: 23px;
    left: 30px;
  }
  .lifestyle .route .route-href button {
    min-width: 35px;
    min-height: 35px;
    font-size: 20px;
  }
  .lifestyle .news .news-card img {
    width: 280px;
    height: 180px;
  }
}
@media (max-width: 390px) {
  .lifestyle .banner h1 {
    font-size: 21px;
    left: 20px;
  }
  .lifestyle .route .route-text h3 {
    font-size: 19px;
  }
  .lifestyle .news .news-card img {
    width: 260px;
    height: 160px;
  }
}
@media (max-width: 320px) {
  .lifestyle .banner h1 {
    font-size: 18px;
    left: -50px;
  }
  .lifestyle .route .route-href button {
    min-width: 30px;
    min-height: 30px;
    font-size: 18px;
  }
  .lifestyle .news .news-card img {
    width: 240px;
    height: 140px;
  }
  .lifestyle .galery .col-right .row img {
    height: 100px;
  }
}

.numbers {
  /* overlay общий в проекте */
  /* попап формы (только для формы обратной связи) */
  /* блокировка скролла body */
  /* Container adjustments for mobile */
}
.numbers .header {
  background: white;
  border-bottom: 1px solid #153c45;
}
.numbers .header .container {
  display: flex;
  color: white;
  gap: 15px;
}
@media (max-width: 768px) {
  .numbers .header .container {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0px 10px;
  }
}
.numbers .burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.numbers .burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}
.numbers .burger span:nth-child(1) {
  top: 12px;
}
.numbers .burger span:nth-child(2) {
  top: 19px;
}
.numbers .burger span:nth-child(3) {
  top: 26px;
}
.numbers .burger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background: #0d0f0f;
}
.numbers .burger.is-open span:nth-child(2) {
  opacity: 0;
}
.numbers .burger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  background: #0d0f0f;
}
.numbers .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 320px);
  background: #fff;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}
.numbers .mobile-menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #0d0f0f;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.numbers .mobile-menu.is-open {
  transform: translateX(0);
}
.numbers .header-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}
.numbers .header-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.numbers body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .numbers .desktop-nav {
    display: none;
  }
  .numbers .burger {
    display: block;
  }
}
.numbers .banner .container {
  position: relative;
  margin-top: 20px;
}
.numbers .banner .container .banner-image {
  position: relative;
  display: block;
  width: 100%;
  height: 531px;
  border-radius: 20px;
  overflow: hidden; /* чтобы ничего не вылазило за края */
}
@media (max-width: 768px) {
  .numbers .banner .container .banner-image {
    height: 300px;
  }
}
@media (max-width: 360px) {
  .numbers .banner .container .banner-image {
    height: 200px;
  }
}
.numbers .banner .container .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.numbers .banner .container .banner-image h1,
.numbers .banner .container .banner-image .btn-bron,
.numbers .banner .container .banner-image .back {
  position: absolute;
}
.numbers .banner .container .banner-image h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: white;
  bottom: 14%;
  left: 7%;
}
@media (max-width: 768px) {
  .numbers .banner .container .banner-image h1 {
    font-size: 24px;
  }
}
@media (max-width: 390px) {
  .numbers .banner .container .banner-image h1 {
    bottom: 18%;
  }
}
@media (max-width: 360px) {
  .numbers .banner .container .banner-image h1 {
    font-size: 18px;
    text-align: center;
    width: calc(100% - 40px);
  }
}
.numbers .banner .container .banner-image .btn-bron {
  padding: 15px 35px;
  border-radius: 15px 15px 0 0;
  bottom: 0;
  font-size: 20px;
  right: 10%;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .numbers .banner .container .banner-image .btn-bron {
    font-size: 18px;
    padding: 10px 25px;
  }
}
@media (max-width: 440px) {
  .numbers .banner .container .banner-image .btn-bron {
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
  }
}
.numbers .banner .container .banner-image .back {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.8);
  color: #153c45;
  top: 10%;
  left: 0;
  border: 1px solid rgba(21, 60, 69, 0.5);
  font-family: "Inter", sans-serif;
}
@media (max-width: 440px) {
  .numbers .banner .container .banner-image .back {
    font-size: 16px;
    padding: 9px 15px;
    border-radius: 0 10px 10px 0;
  }
}
.numbers .banner .container .banner-image .back:hover {
  background: rgb(255, 255, 255);
}
.numbers .about .container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .numbers .about .container {
    padding: 30px 20px;
    gap: 25px;
  }
}
@media (max-width: 360px) {
  .numbers .about .container {
    padding: 20px 15px;
    gap: 20px;
  }
}
.numbers .about .main-about-block {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .numbers .about .main-about-block {
    flex-direction: column;
    gap: 30px;
  }
}
.numbers .about .about-text {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .numbers .about .about-text {
    padding-right: 0;
  }
}
.numbers .about .about-text .about-text-buttons {
  display: flex;
  gap: 8px;
  margin: 15px 0 30px;
}
@media (max-width: 360px) {
  .numbers .about .about-text .about-text-buttons {
    margin: 10px 0 20px;
  }
}
.numbers .about .about-text .about-text-buttons a {
  display: inline-flex;
  align-items: center;
  padding: 7px 22px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(21, 60, 69, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #153c45;
  background: #fff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 360px) {
  .numbers .about .about-text .about-text-buttons a {
    padding: 6px 18px;
    font-size: 12px;
  }
}
.numbers .about .about-text .about-text-buttons a:hover {
  background: rgba(21, 60, 69, 0.06);
  border-color: rgba(21, 60, 69, 0.35);
}
.numbers .about .about-text .about-text-buttons a.active {
  background: #153c45;
  color: #fff;
  border-color: #153c45;
}
.numbers .about .about-text p {
  margin: 0;
  max-width: 600px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #153c45;
  min-width: 600px;
}
@media (max-width: 1024px) {
  .numbers .about .about-text p {
    min-width: 400px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .numbers .about .about-text p {
    min-width: 370px;
  }
}
@media (max-width: 768px) {
  .numbers .about .about-text p {
    min-width: auto;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .numbers .about .about-text p {
    font-size: 14px;
  }
}
.numbers .about .about-img {
  display: block;
  width: 100%;
  height: 260px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  margin-top: 75px;
}
@media (max-width: 900px) {
  .numbers .about .about-img {
    width: 55%;
    margin-top: 115px;
  }
}
@media (max-width: 768px) {
  .numbers .about .about-img {
    margin-top: 0;
    width: 100%;
  }
}
.numbers .about .other-about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .numbers .about .other-about-block {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.numbers .about .other-about-block p {
  margin: 0;
  max-width: 600px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #153c45;
  min-width: 850px;
}
@media (max-width: 1024px) {
  .numbers .about .other-about-block p {
    min-width: 700px;
  }
}
@media (max-width: 900px) {
  .numbers .about .other-about-block p {
    min-width: 600px;
  }
}
@media (max-width: 768px) {
  .numbers .about .other-about-block p {
    min-width: auto;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  .numbers .about .other-about-block p {
    font-size: 14px;
  }
}
.numbers .about .other-about-block .other-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  margin-right: 56px;
}
@media (max-width: 1024px) {
  .numbers .about .other-about-block .other-info {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .numbers .about .other-about-block .other-info {
    flex-direction: row;
    margin-right: 0;
    gap: 40px;
  }
}
@media (max-width: 360px) {
  .numbers .about .other-about-block .other-info {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.numbers .about .other-about-block .other-info .dop-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  max-width: 168px;
}
@media (max-width: 360px) {
  .numbers .about .other-about-block .other-info .dop-block {
    max-width: 100%;
  }
}
.numbers .about .other-about-block .other-info .dop-block h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #153c45;
  font-weight: 400;
}
@media (max-width: 360px) {
  .numbers .about .other-about-block .other-info .dop-block h3 {
    font-size: 18px;
  }
}
.numbers .about .other-about-block .other-info .dop-block span {
  font-family: "Inter", sans-serif;
  color: #153c45;
  opacity: 0.6;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 360px) {
  .numbers .about .other-about-block .other-info .dop-block span {
    font-size: 14px;
  }
}
.numbers .questions .container {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .numbers .questions .container {
    padding: 30px 20px;
    gap: 30px;
  }
}
@media (max-width: 360px) {
  .numbers .questions .container {
    padding: 20px 15px;
    gap: 20px;
  }
}
.numbers .questions .qusetion-main-block {
  display: flex;
  align-items: end;
  gap: 120px;
}
@media (max-width: 768px) {
  .numbers .questions .qusetion-main-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.numbers .qustion-wrapper {
  display: flex;
  flex-direction: column;
}
.numbers .question-block {
  display: none;
  flex-direction: column;
}
.numbers .question-block label {
  margin-bottom: 45px;
  font-family: "inter", sans-serif;
  font-weight: 500;
  color: #153c45;
  font-size: 22px;
}
@media (max-width: 768px) {
  .numbers .question-block label {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .numbers .question-block label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.numbers .question-block input {
  margin-bottom: 30px;
  border: none;
  outline: none;
  border-bottom: 0.5px solid #153c45;
  width: 444px;
  padding-bottom: 29px;
  font-family: "inter", sans-serif;
  color: #153c45;
  opacity: 0.5;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .numbers .question-block input {
    width: 100%;
    max-width: 444px;
  }
}
@media (max-width: 360px) {
  .numbers .question-block input {
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.numbers .question-block input ::-moz-placeholder {
  font-family: "inter", sans-serif;
  color: #153c45;
  opacity: 0.5;
  font-weight: 500;
  font-size: 16px;
}
.numbers .question-block input ::placeholder {
  font-family: "inter", sans-serif;
  color: #153c45;
  opacity: 0.5;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 360px) {
  .numbers .question-block input ::-moz-placeholder {
    font-size: 14px;
  }
  .numbers .question-block input ::placeholder {
    font-size: 14px;
  }
}
.numbers .question-block.active {
  display: flex;
}
.numbers .next-button {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 25px;
}
@media (max-width: 360px) {
  .numbers .next-button {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.numbers .next-button span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #153c45;
  opacity: 0.5;
}
@media (max-width: 360px) {
  .numbers .next-button span {
    font-size: 14px;
  }
}
.numbers .next-button .btn {
  padding: 10px 41px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  border-color: transparent;
}
@media (max-width: 360px) {
  .numbers .next-button .btn {
    padding: 8px 30px;
    font-size: 14px;
  }
}
.numbers .next-button .btn-back {
  background: #f3f7fb;
  color: #153c45;
  opacity: 0.8;
  transition: 0.2s ease;
}
.numbers .next-button .btn-back:hover {
  opacity: 1;
}
.numbers .next-button .btn-back:disabled {
  opacity: 0.4;
  cursor: default;
}
.numbers .equipment .container {
  max-width: 1300px;
  padding: 47px 93px 75px 47px;
  background: #153c45;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .numbers .equipment .container {
    padding: 20px;
    margin: 0 20px;
  }
}
@media (max-width: 360px) {
  .numbers .equipment .container {
    padding: 20px 15px;
    margin: 0 15px;
    border-radius: 15px;
  }
}
.numbers .equipment .container h2 {
  margin-bottom: 55px;
  color: white;
}
@media (max-width: 768px) {
  .numbers .equipment .container h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .numbers .equipment .container h2 {
    margin-bottom: 20px;
  }
}
.numbers .equipment .equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 62px 65px;
}
@media (max-width: 768px) {
  .numbers .equipment .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}
@media (max-width: 391px) {
  .numbers .equipment .equipment-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .numbers .equipment .equipment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.numbers .equipment .equipment-grid-base {
  grid-template-rows: 1fr 1fr;
}
.numbers .equipment .equipment-card {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 360px) {
  .numbers .equipment .equipment-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.numbers .equipment .equipment-card p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
}
@media (max-width: 1024px) {
  .numbers .equipment .equipment-card p {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .numbers .equipment .equipment-card p {
    font-size: 16px;
  }
}
@media (max-width: 476px) {
  .numbers .equipment .equipment-card p {
    font-size: 13px;
  }
}
.numbers .equipment .equipment-card img {
  width: 45px;
  height: auto;
}
@media (max-width: 640px) {
  .numbers .equipment .equipment-card img {
    width: 35px;
  }
}
@media (max-width: 476px) {
  .numbers .equipment .equipment-card img {
    width: 27px;
    height: auto;
  }
}
.numbers .equipment .equipment-card .btn {
  padding: 15px 27px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-left: 40px;
}
@media (max-width: 900px) {
  .numbers .equipment .equipment-card .btn {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .numbers .equipment .equipment-card .btn {
    margin-left: 0;
    font-size: 20px;
    padding: 12px 20px;
  }
}
@media (max-width: 360px) {
  .numbers .equipment .equipment-card .btn {
    font-size: 18px;
    padding: 10px 15px;
  }
}
.numbers .equipment-base .container {
  padding: 47px 83px 75px 87px;
}
@media (max-width: 640px) {
  .numbers .equipment-base .container {
    padding: 27px 13px 25px 17px;
  }
}
.numbers .galery {
  margin-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .numbers .galery {
    margin-top: 30px;
  }
}
@media (max-width: 360px) {
  .numbers .galery {
    margin-top: 20px;
  }
}
.numbers .galery .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .numbers .galery .container {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .numbers .galery .container {
    padding: 0 15px;
    gap: 20px;
  }
}
.numbers .gallery-flex {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 900px) {
  .numbers .gallery-flex {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .numbers .gallery-flex {
    flex-direction: column;
    gap: 15px;
  }
}
.numbers .col-left {
  display: flex;
}
.numbers .col-left img {
  width: 345px;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .numbers .col-left img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 360px) {
  .numbers .col-left img {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .numbers .col-left img:nth-child(1) {
    display: none;
  }
}
.numbers .col-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .numbers .col-right {
    width: 100%;
  }
}
.numbers .col-right .row {
  display: flex;
  align-items: center;
  gap: 21px;
}
@media (max-width: 1024px) {
  .numbers .col-right .row {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .numbers .col-right .row {
    gap: 15px;
  }
}
@media (max-width: 391px) {
  .numbers .col-right .row {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 360px) {
  .numbers .col-right .row {
    flex-direction: column;
    gap: 10px;
  }
}
.numbers .col-right .row img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .numbers .col-right .row img {
    height: 150px;
  }
}
@media (max-width: 391px) {
  .numbers .col-right .row img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .numbers .col-right .row img {
    width: 100% !important;
    height: 120px;
  }
}
.numbers .short {
  width: 351px;
}
@media (max-width: 900px) {
  .numbers .short {
    width: 301px;
  }
}
@media (max-width: 768px) {
  .numbers .short {
    width: 48%;
  }
}
.numbers .long {
  width: 451px;
}
@media (max-width: 900px) {
  .numbers .long {
    width: 401px;
  }
}
@media (max-width: 768px) {
  .numbers .long {
    width: 48%;
  }
}
.numbers .politica .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .numbers .politica .container {
    padding: 30px 20px;
    gap: 25px;
  }
}
@media (max-width: 360px) {
  .numbers .politica .container {
    padding: 20px 15px;
    gap: 20px;
  }
}
.numbers .politica .politica-blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 36px;
}
@media (max-width: 900px) {
  .numbers .politica .politica-blocks {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .numbers .politica .politica-blocks {
    justify-content: center;
    gap: 25px;
  }
}
.numbers .politica .p-block {
  display: flex;
  flex-direction: column;
  gap: 27px;
  border-radius: 20px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  width: 370px;
  height: 260px;
  padding: 35px 48px 18px;
}
@media (max-width: 900px) {
  .numbers .politica .p-block {
    gap: 15px;
    width: 370px;
    height: 220px;
    padding: 25px 40px 8px;
  }
}
@media (max-width: 768px) {
  .numbers .politica .p-block {
    width: 320px;
    height: 240px;
    padding: 25px 35px 15px;
  }
}
@media (max-width: 601px) {
  .numbers .politica .p-block {
    width: 300px;
    height: 200px;
  }
}
@media (max-width: 360px) {
  .numbers .politica .p-block {
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
}
.numbers .politica .p-block img {
  height: 80px;
  width: auto;
}
@media (max-width: 600px) {
  .numbers .politica .p-block img {
    height: 60px;
  }
}
.numbers .politica .p-block p {
  width: 270px;
  height: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #153c45;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .numbers .politica .p-block p {
    width: auto;
    height: auto;
  }
}
@media (max-width: 600px) {
  .numbers .politica .p-block p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .numbers .politica .p-block p {
    font-size: 14px;
  }
}
.numbers .politica .politica-text {
  display: flex;
  flex-direction: column;
}
.numbers .politica .politica-text p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #153c45;
  line-height: 25px;
}
@media (max-width: 360px) {
  .numbers .politica .politica-text p {
    font-size: 14px;
    line-height: 1.4;
  }
}
.numbers .politica .politica-text span {
  font-weight: 600;
}
.numbers .politica .politica-text a {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #dca269;
  text-decoration: underline;
  line-height: 25px;
}
@media (max-width: 360px) {
  .numbers .politica .politica-text a {
    font-size: 14px;
  }
}
.numbers .politica .politica-text .s-text {
  font-size: 13px;
}
@media (max-width: 360px) {
  .numbers .politica .politica-text .s-text {
    font-size: 12px;
  }
}
.numbers .faq .container {
  display: flex;
  align-items: start;
  gap: 50px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .numbers .faq .container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
}
@media (max-width: 360px) {
  .numbers .faq .container {
    padding: 20px 15px;
    gap: 20px;
  }
}
.numbers .faq .faq-title {
  display: flex;
  flex-direction: column;
}
.numbers .faq .faq-title p {
  margin: 15px 0 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #153c45;
}
@media (max-width: 900px) {
  .numbers .faq .faq-title p {
    font-size: 14px;
    margin: 10px 0 15px;
  }
}
.numbers .faq .faq-title span {
  color: #dca269;
  font-weight: 500;
}
.numbers .faq .faq-title .btn {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 13px 48px;
  border-radius: 15px;
  display: inline-block;
  width: 192px;
  border-color: transparent;
}
@media (max-width: 360px) {
  .numbers .faq .faq-title .btn {
    font-size: 16px;
    padding: 10px 30px;
    width: auto;
  }
}
.numbers .faq .main-faq-block {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 50px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .numbers .faq .main-faq-block {
    margin-top: 0;
    gap: 25px;
  }
}
@media (max-width: 360px) {
  .numbers .faq .main-faq-block {
    gap: 20px;
  }
}
.numbers .faq .main-faq-block .accordion {
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
@media (max-width: 360px) {
  .numbers .faq .main-faq-block .accordion {
    gap: 15px;
  }
}
.numbers .faq .main-faq-block .accordion-blocks {
  display: flex;
  flex-direction: column;
}
.numbers .faq .main-faq-block .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 0.5px solid rgba(21, 60, 69, 0.5);
  cursor: pointer;
}
.numbers .faq .main-faq-block .accordion-title p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #153c45;
}
@media (max-width: 900px) {
  .numbers .faq .main-faq-block .accordion-title p {
    font-size: 16px;
  }
}
.numbers .faq .main-faq-block .accrodion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.numbers .faq .main-faq-block .accrodion-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #153c45;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .numbers .faq .main-faq-block .accrodion-content p {
    font-size: 14px;
  }
}
.numbers .faq .main-faq-block .accordion-blocks.open .accordion-title {
  border-bottom: none;
}
.numbers .faq .main-faq-block .accordion-blocks.open .accrodion-content {
  border-bottom: 0.5px solid rgba(21, 60, 69, 0.5);
  padding-bottom: 17px;
}
.numbers .faq .main-faq-block .accordion-title img {
  transition: transform 0.3s ease;
}
.numbers .faq .main-faq-block .accordion-title img.rotated {
  transform: rotate(180deg);
}
.numbers .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}
.numbers .overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.numbers .contact-form-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
  font-family: "Inter", sans-serif;
  color: #153c45;
}
.numbers .contact-form-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.numbers .contact-form-popup__content {
  width: min(92vw, 520px);
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
.numbers .contact-form-popup__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}
.numbers .contact-form-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #f3f5f7;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.numbers .contact-form-popup__close:hover {
  background: #e9eef2;
}
.numbers .contact-form__row {
  margin-bottom: 12px;
}
.numbers .contact-form__label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.numbers .contact-form__input,
.numbers .contact-form__textarea {
  width: 100%;
  border: 1px solid #d9e1e7;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
.numbers .contact-form__input:focus,
.numbers .contact-form__textarea:focus {
  border-color: #8bb4ff;
  box-shadow: 0 0 0 3px rgba(139, 180, 255, 0.25);
}
.numbers .contact-form__actions {
  margin-top: 8px;
}
.numbers .contact-form__actions .btn {
  padding: 10px 17px;
  border-radius: 15px;
  border-color: transparent;
  font-family: "Inter", sans-serif;
}
.numbers .contact-form__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6b7280;
}
.numbers .body-lock {
  overflow: hidden;
}
@media (max-width: 768px) {
  .numbers .numbers .container {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .numbers .numbers .container {
    padding: 0 15px;
  }
}
@media (max-width: 1400px) {
  .numbers .numbers .header .container {
    gap: 55px;
  }
  .numbers .numbers .banner h1 {
    font-size: 34px;
    left: 120px;
  }
  .numbers .numbers .about .container {
    gap: 30px;
  }
  .numbers .numbers .equipment .container {
    padding: 40px 80px 65px 40px;
  }
}
@media (max-width: 1024px) {
  .numbers .numbers .header .container {
    gap: 45px;
  }
  .numbers .numbers .banner h1 {
    font-size: 32px;
    left: 100px;
  }
  .numbers .numbers .about .container {
    gap: 25px;
  }
  .numbers .numbers .equipment .container {
    padding: 35px 70px 55px 35px;
  }
  .numbers .numbers .equipment .equipment-grid {
    gap: 50px 25px;
  }
}
@media (max-width: 900px) {
  .numbers .numbers .banner h1 {
    font-size: 30px;
    left: 80px;
  }
  .numbers .numbers .about .other-about-block {
    gap: 25px;
  }
  .numbers .numbers .equipment .container {
    padding: 30px 60px 45px 30px;
  }
}
@media (max-width: 600px) {
  .numbers .numbers .banner h1 {
    font-size: 26px;
    left: 40px;
  }
  .numbers .numbers .about .about-text p {
    font-size: 15px;
  }
  .numbers .numbers .equipment .equipment-grid {
    gap: 35px 20px;
  }
}
@media (max-width: 475px) {
  .numbers .numbers .banner h1 {
    font-size: 20px;
    left: 30px;
  }
  .numbers .numbers .about .about-text .about-text-buttons a {
    padding: 5px 16px;
    font-size: 13px;
  }
  .numbers .numbers .equipment .equipment-card p {
    font-size: 17px;
  }
  .numbers .numbers .equipment .container {
    padding: 30px 45px 30px;
  }
}
@media (max-width: 390px) {
  .numbers .numbers .banner h1 {
    font-size: 22px;
    left: 25px;
  }
  .numbers .numbers .about .about-text p {
    font-size: 14px;
  }
  .numbers .numbers .equipment .equipment-card p {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .numbers .numbers .banner h1 {
    font-size: 19px;
    left: 15px;
  }
  .numbers .numbers .about .about-text .about-text-buttons a {
    padding: 4px 14px;
    font-size: 11px;
  }
  .numbers .numbers .equipment .equipment-card p {
    font-size: 15px;
  }
  .numbers .numbers .equipment .equipment-card .btn {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.numbers .up {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 1007;
}
.numbers .up img {
  width: 45px;
  height: 45px;
  fill: #153c45;
}

.company .header {
  background: white;
  border-bottom: 1px solid #153c45;
}
.company .header .container {
  display: flex;
  color: #153c45;
  gap: 10px;
}
@media (max-width: 768px) {
  .company .header .container {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0px 10px;
  }
}
.company .burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.company .burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}
.company .burger span:nth-child(1) {
  top: 12px;
}
.company .burger span:nth-child(2) {
  top: 19px;
}
.company .burger span:nth-child(3) {
  top: 26px;
}
.company .burger.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
  background: #0d0f0f;
}
.company .burger.is-open span:nth-child(2) {
  opacity: 0;
}
.company .burger.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  background: #0d0f0f;
}
.company .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 320px);
  background: #fff;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}
.company .mobile-menu a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #0d0f0f;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.company .mobile-menu.is-open {
  transform: translateX(0);
}
.company .header-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99;
}
.company .header-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.company body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .company .desktop-nav {
    display: none;
  }
  .company .burger {
    display: block;
  }
}
.company .banner {
  display: block;
  width: 100%;
  position: relative;
  padding: 30px 0 15px;
}
@media (max-width: 768px) {
  .company .banner {
    padding: 20px 0 10px;
  }
}
@media (max-width: 360px) {
  .company .banner {
    padding: 15px 0 5px;
  }
}
@media (max-width: 768px) {
  .company .banner .container {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .company .banner .container {
    padding: 0 15px;
  }
}
.company .banner img {
  width: 100%;
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .company .banner img {
    height: 300px;
  }
}
@media (max-width: 360px) {
  .company .banner img {
    height: 200px;
  }
}
.company .banner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: white;
  position: absolute;
  bottom: 10%;
  left: 13%;
}
@media (max-width: 1441px) {
  .company .banner h1 {
    bottom: 70px;
    left: 200px;
  }
}
@media (max-width: 950px) {
  .company .banner h1 {
    left: 100px;
  }
}
@media (max-width: 768px) {
  .company .banner h1 {
    font-size: 28px;
    left: 50px;
    bottom: 40px;
  }
}
@media (max-width: 360px) {
  .company .banner h1 {
    font-size: 20px;
    left: 20px;
    bottom: 20px;
    text-align: center;
    width: calc(100% - 40px);
  }
}
.company .description .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .company .description .container {
    padding: 30px 20px;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .company .description .container {
    padding: 20px 15px;
    gap: 15px;
  }
}
.company .description .container p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #153c45;
  max-width: 800px;
}
@media (max-width: 768px) {
  .company .description .container p {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .company .description .container p {
    font-size: 16px;
  }
}
.company .direction .container {
  display: flex;
  flex-direction: column;
  padding: 47px 47px 70px;
  margin-top: 20px;
  background: #153c45;
  border-radius: 20px;
  max-width: 1300px;
}
@media (max-width: 768px) {
  .company .direction .container {
    padding: 30px;
    margin: 20px;
  }
}
@media (max-width: 360px) {
  .company .direction .container {
    padding: 20px 15px;
    margin: 15px;
    border-radius: 15px;
  }
}
@media (max-width: 360px) {
  .company .direction .container .title-block .title-buttons {
    display: none;
  }
}
.company .title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .company .title-block {
    align-items: flex-start;
    margin-bottom: 15px;
  }
}
.company .title-block h2 {
  color: white;
}
@media (max-width: 360px) {
  .company .title-block h2 {
    font-size: 24px;
  }
}
.company .title-block .title-buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .company .title-block .title-buttons {
    margin-top: 0px;
    align-self: flex-end;
  }
}
@media (max-width: 360px) {
  .company .title-block .title-buttons {
    align-self: center;
  }
}
.company .title-block .title-buttons .arrow-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (max-width: 360px) {
  .company .title-block .title-buttons .arrow-btn {
    width: 28px;
    height: 28px;
  }
}
.company .title-block .title-buttons .arrow-btn-right {
  transform: rotate(180deg);
}
.company .direction-cards {
  display: flex;
  align-items: center;
  gap: 39px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .company .direction-cards {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 360px) {
  .company .direction-cards {
    gap: 15px;
    flex-direction: column;
  }
}
.company .d-card {
  width: 243px;
  height: 114px;
  border-radius: 20px;
  background: #18444e;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .company .d-card {
    width: 200px;
    height: 100px;
  }
}
@media (max-width: 360px) {
  .company .d-card {
    width: 100%;
    height: 80px;
  }
}
.company .d-card.active {
  background: white;
  color: #153c45;
}
.company .d-card p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 9px 0 0 17px;
}
@media (max-width: 768px) {
  .company .d-card p {
    font-size: 18px;
    padding: 15px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .company .d-card p {
    font-size: 16px;
    padding: 20px 15px;
    height: 78px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
}
.company .main-direction-block {
  display: flex;
  align-items: start;
  gap: 25px;
}
@media (max-width: 768px) {
  .company .main-direction-block {
    flex-direction: column;
    gap: 20px;
  }
}
.company .main-direction-block p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: white;
  display: none;
  width: 632px;
}
@media (max-width: 768px) {
  .company .main-direction-block p {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 360px) {
  .company .main-direction-block p {
    font-size: 14px;
    line-height: 22px;
  }
}
.company .main-direction-block p.active {
  display: block;
}
.company .main-direction-block span {
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 768px) {
  .company .main-direction-block span {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .company .main-direction-block span {
    font-size: 16px;
  }
}
.company .main-direction-block img {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .company .main-direction-block img {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 360px) {
  .company .main-direction-block img {
    max-width: 300px;
  }
}
.company .main-direction-block img.active {
  display: block;
}
@media (max-width: 871px) {
  .company .main-direction-block img.active {
    width: 55%;
  }
}
@media (max-width: 791px) {
  .company .main-direction-block img.active {
    width: 50%;
  }
}
@media (max-width: 501px) {
  .company .main-direction-block img.active {
    width: 70%;
  }
}
.company .plus .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 50px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .company .plus .container {
    margin-top: 30px;
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .company .plus .container {
    margin-top: 20px;
    gap: 15px;
    padding: 0 15px;
  }
}
.company .plus .container h2 {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 360px) {
  .company .plus .container h2 {
    font-size: 24px;
  }
}
.company .plus .container ul {
  padding-left: 20px;
}
@media (max-width: 360px) {
  .company .plus .container ul {
    padding-left: 15px;
  }
}
.company .plus .container li {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #153c45;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .company .plus .container li {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .company .plus .container li {
    font-size: 16px;
  }
}
.company .partner .container {
  display: flex;
  align-items: center;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  border-radius: 30px;
  margin: 50px auto 20px;
  max-width: 1300px;
  width: 100%;
}
@media (max-width: 1235px) {
  .company .partner .container {
    gap: 50px;
  }
}
@media (max-width: 1205px) and (min-width: 1025px) {
  .company .partner .container {
    gap: 110px;
  }
}
@media (max-width: 768px) {
  .company .partner .container {
    flex-direction: column;
    gap: 30px;
    margin: 30px 20px;
    padding: 20px;
    align-items: center;
    text-align: center;
    width: 95%;
  }
}
@media (max-width: 360px) {
  .company .partner .container {
    margin: 20px 15px;
    padding: 15px;
    border-radius: 20px;
    gap: 20px;
  }
}
.company .partner .partner-text-block {
  padding: 38px 0 90px 47px;
  display: flex;
  flex-direction: column;
  max-width: 750px;
}
@media (max-width: 1235px) {
  .company .partner .partner-text-block {
    max-width: 600px;
  }
}
@media (max-width: 1205px) and (min-width: 1025px) {
  .company .partner .partner-text-block {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .company .partner .partner-text-block {
    padding: 0;
    order: 2;
  }
}
.company .partner .partner-text-block p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #153c45;
  margin: 33px 0 24px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company .partner .partner-text-block p {
    margin: 20px 0;
  }
}
@media (max-width: 360px) {
  .company .partner .partner-text-block p {
    font-size: 14px;
    margin: 15px 0;
  }
}
.company .partner .partner-text-block a {
  color: #dca269;
  text-decoration: underline;
}
.company .partner .partner-text-block .form {
  display: flex;
  align-items: center;
  gap: 27px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .company .partner .partner-text-block .form {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
}
.company .partner .partner-text-block .form input[type=text] {
  width: 215px;
  height: 50px;
  padding: 15px 0 15px 15px;
  border-radius: 15px;
  border: 0.5px solid rgba(21, 60, 69, 0.5);
  outline: none;
}
@media (max-width: 768px) {
  .company .partner .partner-text-block .form input[type=text] {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 360px) {
  .company .partner .partner-text-block .form input[type=text] {
    height: 45px;
    padding: 12px 0 12px 12px;
  }
}
.company .partner .partner-text-block .form input[type=text]::-moz-placeholder {
  font-family: "Inter", sans-serif;
  color: rgba(21, 60, 69, 0.5);
}
.company .partner .partner-text-block .form input[type=text]::placeholder {
  font-family: "Inter", sans-serif;
  color: rgba(21, 60, 69, 0.5);
}
.company .partner .partner-text-block .form input[type=submit] {
  width: 140px;
  height: 50px;
  padding: 15px 27px;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .company .partner .partner-text-block form input[type=submit] {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 360px) {
  .company .partner .partner-text-block form input[type=submit] {
    height: 45px;
  }
}
.company .partner img {
  height: 100%;
  width: auto;
  max-width: 550px;
}
@media (max-width: 1160px) and (min-width: 1025px) {
  .company .partner img {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .company .partner img {
    width: 100%;
    max-width: 400px;
    height: auto;
    order: 1;
  }
}
@media (max-width: 360px) {
  .company .partner img {
    max-width: 300px;
  }
}
.company .big {
  text-align: center;
  margin: 30px auto 50px;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .company .big {
    margin: 20px auto 30px;
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .company .big {
    margin: 15px auto 20px;
    font-size: 18px;
    padding: 0 15px;
  }
}
.company .articles .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .company .articles .container {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .company .articles .container {
    margin-bottom: 20px;
    padding: 0 15px;
    gap: 15px;
  }
}
.company .articles .container h2 {
  color: #153c45;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 25px;
}
@media (max-width: 360px) {
  .company .articles .container h2 {
    font-size: 20px;
  }
}
.company .articles .title-block .title-buttons {
  margin-top: 0;
}
.company .articles .articles-slider {
  overflow: hidden;
  width: 100%;
}
.company .articles .articles-track {
  display: flex;
  transition: transform 0.4s ease;
}
.company .articles .a-card {
  flex: 0 0 calc((100% - 40px) / 3);
  margin-right: 20px;
}
@media (max-width: 768px) {
  .company .articles .a-card {
    flex: 0 0 calc((100% - 20px) / 2);
    margin-right: 20px;
  }
}
@media (max-width: 476px) {
  .company .articles .a-card {
    min-width: 100%;
  }
}
@media (max-width: 360px) {
  .company .articles .a-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
.company .articles-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 78px;
}
@media (max-width: 768px) {
  .company .articles-card {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 360px) {
  .company .articles-card {
    gap: 20px;
    flex-direction: column;
  }
}
.company .a-card {
  display: flex;
  width: 355px;
  height: 233px;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  color: white;
  padding: 144px 0 16px 16px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .company .a-card {
    width: 320px;
    height: 220px;
  }
}
@media (max-width: 360px) {
  .company .a-card {
    width: 100%;
    height: 180px;
    padding: 100px 15px 15px 15px;
  }
}
.company .a-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .company .a-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 426px) {
  .company .a-card h3 {
    font-size: 16px;
  }
}
.company .a-card p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 768px) {
  .company .a-card p {
    display: none;
  }
}
.company .a-card {
  flex: 0 0 calc((100% - 40px) / 3);
  margin-right: 20px;
}
.company .up {
  position: fixed;
  bottom: 3%;
  right: 2%;
}
.company .up img {
  width: 45px;
  height: 45px;
  fill: #153c45;
}
@media (max-width: 900px) {
  .company .a-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 476px) {
  .company .a-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
.company .a-card-1 {
  background-image: url(../../../assets/images/articles.png);
}
.company .a-card-2 {
  background-image: url(../../../assets/images/articles_2.png);
}
.company .a-card-3 {
  background-image: url(../../../assets/images/articles_3.png);
}

@media (max-width: 1024px) {
  .company .partner .partner-text-block .form {
    flex-wrap: wrap;
  }
  .company .partner img {
    width: 500px;
  }
}
@media (max-width: 900px) {
  .company .header .container {
    padding: 10px 20px;
  }
  .company .main-direction-block p {
    font-size: 14px;
    min-width: 332px;
  }
  .company .main-direction-block img {
    width: 60%;
  }
  .company .partner img {
    width: 390px;
  }
}
/* Container adjustments */
@media (max-width: 768px) {
  .company .container {
    padding: 0 20px;
  }
  .company .main-direction-block img {
    width: 100%;
  }
  .company .main-direction-block img {
    max-width: 500px;
  }
  .company .partner .partner-text-block .form input[type=submit] {
    width: 300px;
  }
}
@media (max-width: 440px) {
  .company .description .container p {
    font-size: 16px;
  }
}
@media (max-width: 426px) {
  .company .banner h1 {
    font-size: 24px;
  }
  .company .d-card {
    width: 150px;
  }
  .company .plus .container li {
    font-size: 16px;
  }
  .company .partner img {
    width: 100%;
  }
}
@media (max-width: 376px) {
  .company .banner h1 {
    font-size: 22px;
  }
  .company .d-card {
    width: 120px;
    height: 75px;
  }
  .company .description .container p {
    font-size: 14px;
  }
  .company .d-card p {
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
  .company .main-direction-block p {
    min-width: 300px;
  }
  .company .plus .container li {
    font-size: 14px;
  }
  .company .d-card p {
    font-size: 14px;
  }
  .company .direction-cards {
    gap: 15px;
    flex-direction: row;
  }
}
@media (max-width: 360px) {
  .company .container {
    padding: 0 15px;
  }
}
@media (max-width: 321px) {
  .company .main-direction-block p {
    min-width: 0;
    max-width: 300px;
  }
  .company .partner .partner-text-block .form input[type=text] {
    width: 90%;
    max-width: 280px;
  }
  .company .partner .partner-text-block .form input[type=submit] {
    width: 90%;
  }
  .company .description .container p {
    font-size: 14px;
  }
}
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.thanks .container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #153c45;
}
@media (max-width: 768px) {
  .thanks .container h1 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .thanks .container h1 {
    font-size: 22px;
  }
}
.thanks .container p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #153c45;
  opacity: 0.8;
  margin: 0;
}
@media (max-width: 768px) {
  .thanks .container p {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .thanks .container p {
    font-size: 14px;
  }
}
.thanks .container .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 32px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #153c45;
  color: #fff;
  transition: background 0.2s ease;
}
.thanks .container .btn:hover {
  background: rgba(21, 60, 69, 0.85);
}
@media (max-width: 360px) {
  .thanks .container .btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}
@media (max-width: 1400px) {
  .thanks .thanks .container {
    gap: 18px;
  }
  .thanks .thanks .container h1 {
    font-size: 30px;
  }
  .thanks .thanks .container p {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .thanks .thanks .container {
    gap: 16px;
  }
  .thanks .thanks .container h1 {
    font-size: 28px;
  }
  .thanks .thanks .container p {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .thanks .thanks .container h1 {
    font-size: 27px;
  }
}
@media (max-width: 600px) {
  .thanks .thanks {
    padding: 15px;
  }
  .thanks .thanks .container h1 {
    font-size: 25px;
  }
  .thanks .thanks .container p {
    font-size: 15px;
  }
}
@media (max-width: 475px) {
  .thanks .thanks .container h1 {
    font-size: 24px;
  }
  .thanks .thanks .container .btn {
    font-size: 15px;
    padding: 11px 28px;
  }
}
@media (max-width: 390px) {
  .thanks .thanks .container h1 {
    font-size: 23px;
  }
  .thanks .thanks .container p {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .thanks .thanks {
    padding: 10px;
  }
  .thanks .thanks .container h1 {
    font-size: 20px;
  }
  .thanks .thanks .container p {
    font-size: 13px;
  }
  .thanks .thanks .container .btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

.gallery-page {
  /* Резиновая сетка */
  /* Вариации размеров для живой композиции */
  /* Крупные карточки на широких экранах */
  /* Улучшение читаемости на очень маленьких ширинах */
  /* Совместимость с существующим контейнером */
}
.gallery-page .gallery-hero {
  padding: clamp(16px, 4vw, 32px) 0;
  margin-top: 5px;
}
.gallery-page .gallery-hero .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-page .gallery-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 36px);
  color: #153c45;
  margin: 0;
}
.gallery-page .gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(12px, 3vw, 20px);
  margin-bottom: clamp(12px, 3vw, 20px);
}
.gallery-page .gallery-actions .btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border-radius: 14px;
  padding: 12px 18px;
  cursor: pointer;
  border: 1px solid rgba(21, 60, 69, 0.5);
  background: #fff;
  color: #153c45;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.gallery-page .gallery-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.gallery-page .gallery-actions .btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.gallery-page .btn-more[aria-expanded=true] {
  background: #153c45;
  color: #fff;
  border-color: transparent;
}
.gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(10px, 1.6vw, 18px);
}
.gallery-page .card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f7f8;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-page .card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3; /* базовое соотношение */
}
.gallery-page .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.gallery-page .card--square img {
  aspect-ratio: 1/1;
}
.gallery-page .card--tall img {
  aspect-ratio: 3/4;
}
.gallery-page .card--wide img {
  aspect-ratio: 16/10;
}
@media (min-width: 1100px) {
  .gallery-page {
    /* Компенсация высоты при span: фикс через aspect-ratio сохраняется */
  }
  .gallery-page .card--wide {
    grid-column: span 2;
  }
  .gallery-page .card--tall {
    grid-row: span 2;
  }
}
@media (max-width: 360px) {
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gallery-page .container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}/*# sourceMappingURL=main.css.map */