.travel_catalog_2 .item {
  position: relative;
  color: #FFF;
  overflow: hidden;
  /* Скрываем всё, что выходит за пределы карточки */
  padding-bottom: 15px;
  cursor: pointer;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.travel_catalog_2 .item .price_wrap {
  margin-top: 15px;
}
.travel_catalog_2 .item .price_wrap .price {
  text-align: center;
  float: left;
  width: 49%;
  color: var(--heading-color);
}
.travel_catalog_2 .item .price_wrap .price .t {
  font-weight: 600;
}
.travel_catalog_2 .item .photo {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover !important;
}
.travel_catalog_2 .item .sub_title {
  text-align: center;
  position: absolute;
  bottom: 0px;
  color: #FFF;
  padding-top: 5px;
  width: 100%;
  background: #101010;
  padding-bottom: 5px;
  opacity: 0.7;
  font-size: 14px;
}
.travel_catalog_2 .item .title {
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 20px;
  color: var(--heading-color);
}
.travel_catalog .link {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}
.travel_catalog .item {
  position: relative;
  height: 400px;
  color: #FFF;
  overflow: hidden;
  /* Скрываем всё, что выходит за пределы карточки */
  border-radius: 10px;
  cursor: pointer;
  /* Эффекты при наведении */
}
.travel_catalog .item .content {
  position: absolute;
  width: 100%;
  height: inherit;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  /* Анимация для плавного эффекта */
}
.travel_catalog .item .title {
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.08333em;
  font-weight: 700;
  transition: all 0.5s ease;
  /* Анимация для перемещения */
  position: absolute;
  top: 50%;
  /* Начальная позиция по центру */
  transform: translateY(-50%);
  /* Центрирование */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Тень для текста */
  width: 90%;
}
.travel_catalog .item .description {
  position: absolute;
  bottom: -100%;
  /* Начальное положение за пределами карточки */
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  /* Анимация для появления */
  opacity: 0;
  /* Начальная прозрачность */
  box-sizing: border-box;
  /* Учитываем padding в ширине */
}
.travel_catalog .item .bottom_block {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 3;
  /* Поднимаем выше описания */
}
.travel_catalog .item .bottom_block .bg_b {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 90px;
  position: absolute;
  z-index: -1;
  opacity: 1;
  bottom: 0px;
}
.travel_catalog .item .bottom_block .price_1,
.travel_catalog .item .bottom_block .price_2 {
  text-align: center;
  display: block;
  float: left;
  width: 50%;
}
.travel_catalog .item .bottom_block .price {
  margin-top: 20px;
  margin-bottom: 20px;
}
.travel_catalog .item .bottom_block .price .t {
  font-weight: 600;
}
.travel_catalog .item .bottom_block .price_one {
  text-align: center;
  font-size: 18px;
  float: left;
  width: 100%;
}
.travel_catalog .item .bg {
  background: #121414;
  width: 100%;
  height: inherit;
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  /* Начальная прозрачность фона */
  transition: opacity 0.5s ease;
  /* Анимация для плавного изменения прозрачности */
}
.travel_catalog .item:hover .content {
  justify-content: flex-start;
  /* Сдвигаем контент вверх */
  padding-top: 20px;
  /* Добавляем отступ сверху */
}
.travel_catalog .item:hover .title {
  transform: translateY(-100px);
  /* Поднимаем заголовок вверх, но не за пределы карточки */
}
.travel_catalog .item:hover .description {
  bottom: 90px;
  /* Показываем описание выше блока с ценой */
  opacity: 1;
  /* Делаем описание видимым */
}
.travel_catalog .item:hover .bg {
  opacity: 0.7;
  /* Затемняем фон карточки при наведении */
}
@media screen and (max-width: 768px) {
  .header .logo {
    order: inherit !important;
  }
  .non-index-page {
    padding-top: 30px !important;
  }
  .index-page .header {
    margin-top: 15px !important;
  }
  .index-page .l_white {
    height: 130px;
    margin-top: 0px !important;
    opacity: 0.8;
  }
  .index-page,
  .non-index-page .l_black {
    height: 75px;
  }
  .index-page.scrolled .l_black {
    opacity: 1 !important;
  }
  .index-page .navbar-toggler {
    color: #FFF;
    opacity: 0.5;
  }
  .index-page.scrolled .navbar-toggler {
    color: #000000;
    opacity: 1;
  }
  .index-page .l_white {
    height: 100px;
  }
  .index-page .l_black {
    height: 75px;
  }
  .section-title h2:before,
  .section-title h2:after {
    display: none;
  }
  section,
  .section {
    padding: 20px 0 !important;
  }
  .section-title {
    padding-left: 25px;
  }
  .section-title p {
    text-align: left ! important;
  }
  .section-title h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: #e84544;
    text-underline-offset: 10px;
    text-decoration-thickness: 5px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    margin-left: 10% !important;
  }
  .navmenu a,
  .navmenu a:focus {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.tours_list {
  width: 100%;
  margin: 0 auto;
}
.tours_item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.tours_header {
  background-color: #f1f1f1;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  /* Разделяем элементы */
  align-items: center;
  transition: background-color 0.3s;
}
.tours_header:hover {
  background-color: #e1e1e1;
}
.icon-toggle {
  transition: transform 0.3s;
}
.tours_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
}
.tours_content .item {
  padding-top: 10px;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 10px;
}
.tours_content .item .title {
  font-weight: 600;
  display: block;
  float: left;
  width: 60%;
}
.tours_content .item .title span {
  font-weight: 300 !important;
}
.tours_content .item .price {
  width: 20%;
  float: left;
  text-align: right;
}
.tours_content .item .price span {
  font-weight: 600;
}
.tours_content .item:last-child {
  border-bottom: none !important;
}
.tours_content p {
  margin: 10px 0;
}
/* Основной контейнер аккордеона */
.accordion {
  margin-bottom: 20px;
  max-width: 790px;
}
.accordion .block_title {
  margin-bottom: 20px;
}
/* Элемент аккордеона */
.accordion-item {
  border: none !important;
  padding-left: 20px;
}
/* Убираем границу у последнего элемента */
.accordion-item:last-child {
  border-bottom: none;
}
/* Заголовок аккордеона */
.accordion-header {
  width: 100%;
  padding: 15px;
  text-align: left;
  background-color: var(--surface-color);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.1);
}
/* Эффект при наведении на заголовок */
.accordion-header:hover {
  background-color: #e1e1e1;
}
/* Заголовок активного элемента */
.accordion-item.active .accordion-header {
  background-color: #ddd;
}
/* Название экскурсии */
.accordion-title {
  font-weight: bold;
  flex: 1;
  padding-left: 10px;
}
.accordion-title i {
  color: #2196F3;
  margin-right: 5px;
}
/* Суб-заголовок */
.accordion-subtitle {
  color: #666;
  font-size: 0.9em;
  flex: 1;
  display: block;
  padding-left: 25px;
}
/* Блок с ценами */
.accordion-prices {
  flex: 1;
  text-align: right;
  padding-right: 10px;
  /* Цена для взрослых */
  /* Цена для детей */
}
.accordion-prices .count {
  font-weight: bold;
  font-size: 16px;
  margin-left: 10px;
  color: #e14344;
}
.accordion-prices .price-adult {
  display: block;
  font-size: 14px;
}
.accordion-prices .price-child {
  display: block;
  font-size: 14px;
}
/* Иконка для открытия/закрытия */
.accordion-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
/* Поворот иконки при открытии */
.accordion-item.active .accordion-icon {
  transform: rotate(90deg);
}
/* Контент аккордеона */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  background-color: #f9f9f9;
}
/* Контент активного элемента */
.accordion-item.active .accordion-content {
  max-height: 500px;
  /* Укажите максимальную высоту, достаточную для контента */
  padding: 15px;
}
/* Описание экскурсии */
.accordion-description {
  margin-top: 10px;
  line-height: 1.6;
}
/* Основные стили для контейнера Swiper */
.swiper-container {
  width: 100%;
  max-width: 100%;
  /* Ограничиваем максимальную ширину */
  overflow: hidden;
  /* Скрываем переполнение */
  position: relative;
}
.tour_gallery {
  margin-top: 20px;
  margin-bottom: 20px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
  font-weight: 600;
}
.swiper-button-next,
.swiper-button-prev {
  padding: 30px !important;
}
/* Стили для слайдов */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Стили для строки с изображениями */
.swiper-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Отступ между изображениями в ряду */
}
/* Стили для контейнера изображений */
.swiper-col {
  width: 100%;
  height: 310px;
  /* Фиксированная высота */
  overflow: hidden;
  /* Обрезаем лишнее */
  border-radius: 5px;
}
.swiper-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Заполняем контейнер без искажений */
}
/* Стили для кнопок навигации */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}
.step .title_step {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
.form_checkout {
  max-width: 670px;
  box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
.form_checkout .wpforms-submit-container {
  position: relative;
  padding-bottom: 20px;
  padding-left: 20px;
}
.form_checkout .wpforms-submit {
  margin-top: 10px;
}
.form_checkout .wpforms-field {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.form_checkout .wpforms-field-divider {
  position: relative;
  background: var(--accent-color);
  display: block;
  width: 250px;
  margin-bottom: 10px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.form_checkout .wpforms-field-divider h3 {
  color: #FFF !important;
  font-size: 14px !important;
  padding: 8px !important;
  font-weight: normal !important;
  font-family: 'Open Sans', serif;
  margin: 0 !important;
  text-align: center;
}
.selected_tours textarea {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: fit-content !important;
  overflow-y: hidden !important;
}
.reservation-form {
  max-width: 600px;
  box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  /* Стили для круглых кнопок */
}
.reservation-form .selected_tours textarea {
  background: transparent !important;
}
.reservation-form .selected_tours .item {
  border-left: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  padding: 10px 10px;
  margin-bottom: 10px;
}
.reservation-form .selected_tours .item .op,
.reservation-form .selected_tours .item .da {
  padding-left: 15px;
}
.reservation-form .selected_tours .item .da {
  font-size: 14px;
}
.reservation-form .btn_submit {
  color: #FFF;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  background: #198754;
  float: right;
  margin-top: 5px;
}
.reservation-form .t {
  position: relative;
  background: var(--accent-color);
  display: block;
  color: #FFF;
  font-size: 14px;
  padding: 5px 40px;
  width: 253px;
  margin-bottom: 10px;
}
.reservation-form .t i {
  margin-right: 5px;
  font-size: 16px;
  position: absolute;
  left: 15px;
  top: 4px;
}
.reservation-form .number_input {
  max-width: 110px;
}
.reservation-form .input_medium {
  max-width: 250px;
}
.reservation-form .input_small {
  max-width: 80px;
}
.reservation-form .form-control {
  padding: 7px;
}
.reservation-form .transparent-input {
  font-weight: 600;
  background-color: transparent;
  /* Прозрачный фон */
  border: none;
  /* Убираем границу */
  text-align: center;
  /* Центрируем текст */
  color: #000;
  /* Цвет текста (можно изменить по желанию) */
  font-size: 16px;
  /* Размер шрифта (можно изменить по желанию) */
  padding: 0;
  /* Убираем внутренние отступы */
  height: auto;
  /* Устанавливаем высоту на автоматическую */
  border-bottom: 1px solid #CECECE;
  padding-left: 10px;
}
.reservation-form .transparent-input:focus {
  outline: none;
  /* Убираем обводку при фокусе */
}
.reservation-form .content {
  padding: 20px;
}
.reservation-form .content .form-group label {
  margin-bottom: 10px;
  font-weight: 600;
}
.reservation-form .btn.rounded-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group {
  margin-bottom: 15px;
}
.checkout_form {
  min-height: 500px;
}
.checkout_form .button_group {
  width: 100%;
  margin-top: 30px;
}
.checkout_form .button_group .button {
  margin-right: 10px;
}
.checkout_form .button_primary {
  color: var(--contrast-color);
  background: #0D5A5A;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}
.checkout_form .button_step {
  color: var(--contrast-color);
  background: #127912;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
}
.checkout_form .tour_selected .select2-container {
  width: 100% !important;
  /* Устанавливаем ширину на 100% */
}
.checkout_form .tour_selected .select2-selection {
  border-radius: 0 !important;
  /* Убираем закругление */
  height: auto;
  /* Убираем фиксированную высоту */
}
.checkout_form .tour_selected .select2-selection__rendered {
  line-height: 2.5;
  /* Настройка высоты строки для лучшего выравнивания текста */
}
.checkout_form .tour_selected .select2-selection__arrow {
  height: 100%;
  /* Устанавливаем высоту стрелки на 100% */
  right: 10px;
  /* Настройка отступа для стрелки */
}
.checkout_form .tour_selected .item {
  margin-bottom: 15px;
  box-shadow: 0px 4px 15px 4px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
.checkout_form .tour_selected .item .title_bl {
  background: var(--accent-color);
  display: inline-block;
  padding-right: 10px;
  color: #FFF;
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  padding-left: 40px;
}
.checkout_form .tour_selected .item .title_bl i {
  margin-right: 5px;
  font-size: 16px;
  position: absolute;
  left: 15px;
  top: 4px;
}
.checkout_form .tour_selected .item .content {
  padding: 15px;
}
.checkout_form .tour_selected .item .content .date-picker {
  width: 68%;
  text-indent: 5px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
}
.checkout_form .tour_selected .item .content .bl {
  margin-bottom: 10px;
}
.checkout_form .tour_selected .item .content .bl .t {
  font-weight: 600;
  margin-bottom: 10px;
}
.navigation .logo_site {
  width: 130px;
  height: 130px;
  background-size: contain !important;
  margin: 0 auto;
}
.navigation .gtranslate_wrapper {
  float: left;
}
.navigation .list-unstyled {
  margin: 0 !important;
}
.navigation .nav-link {
  background-color: #607D8B;
  color: #ffffff;
  transition: background-color 0.3s ease;
  /* Плавный переход для фона */
  display: flex;
  /* Используем Flexbox для выравнивания */
  justify-content: space-between;
  /* Распределяем пространство между элементами */
  align-items: center;
  /* Выравниваем элементы по центру */
  margin-bottom: 2px;
  /* Отступ снизу */
  padding-left: 15px;
  /* Отступ слева */
  padding-right: 15px;
  /* Отступ справа */
}
.navigation .nav-link.active {
  background: #607D8B;
  /* Цвет фона для активного элемента */
  color: #FFF;
  /* Цвет текста для активного элемента */
}
.navigation .collapse.show .nav-link {
  background-color: #FFF;
  color: #009688;
  text-decoration: underline;
  border-bottom: 1px solid #CECECE;
}
.navigation .collapse.show .nav-link .nav-link {
  background-color: #0056b3;
  /* Цвет фона для вложенного .nav-link */
  color: #fff;
  /* Цвет текста для вложенного .nav-link */
}
.navigation .nav-link .bi {
  transition: transform 0.3s ease;
  /* Плавный переход для поворота */
}
.navigation .collapse:not(.show) .nav-link .bi {
  transform: rotate(0deg);
  /* Исходное положение */
}
.navigation .collapse.show .nav-link .bi {
  transform: rotate(180deg);
  /* Поворот стрелки на 180 градусов при раскрытии */
}
.navigation .deep_item {
  background: #f3f3f3 !important;
  color: #FF5722 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.navigation .navbar-nav {
  margin: 0 !important;
  margin-top: 10px !important;
}
.navigation .offcanvas-body {
  padding: 0 !important;
}
.navigation a {
  color: var(--heading-color);
  text-decoration: none;
  display: block;
}
.navigation .contact_line {
  margin-top: 20px;
  text-align: left;
  padding-left: 20px;
}
.navigation .contact_line .t {
  font-weight: 600;
  margin-bottom: 10px;
}
.navigation .contact_line .bi-whatsapp {
  color: green;
  font-size: 18px;
}
/* Базовые стили */
.wpforms-field-number {
  max-width: 300px !important;
  margin: 15px 0 !important;
}
.number-wrapper {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
}
.number-btn {
  width: 48px !important;
  height: 48px !important;
  background: #f8f9fa !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 20px !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.wpforms-field-number input[type="number"] {
  flex: 1 !important;
  height: 48px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  -moz-appearance: textfield !important;
}
/* Ховер-эффекты */
.number-btn:hover {
  background: #007acc !important;
  color: #fff !important;
  border-color: #007acc !important;
}
/* Убираем стрелки */
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
#wpdcom {
  max-width: 100% !important;
}
.form_style .input-group {
  display: flex;
  /* Используем Flexbox для выравнивания */
  align-items: center;
  /* Выравниваем элементы по центру */
}
.form_style #countryFlag {
  margin-right: 15px;
  font-size: 18px;
}
.form_style .form-label span {
  color: red;
  font-weight: 600;
  font-size: 12px;
}
.form_style .input_medium {
  max-width: 250px;
}
.form_style .form-control {
  padding: 7px;
}
.form_style .modal_title {
  font-size: 16px;
  font-weight: 600;
}
.form_style .btn_button {
  color: var(--contrast-color);
  background: var(--accent-color);
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
}
.transport-page .flex_content .title,
.realty .flex_content .title {
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}
.transport-page .flex_content .text,
.realty .flex_content .text {
  margin-top: 15px;
}
.transport-page .heading,
.realty .heading {
  position: relative;
}
.transport-page .heading::before,
.realty .heading::before {
  content: '';
  width: 100%;
  background: #000;
  position: absolute;
  height: 100%;
  left: 0;
  opacity: 0.7;
  top: 0;
}
.transport-page .heading .container,
.realty .heading .container {
  z-index: 1;
  position: relative;
  color: #FFF;
}
.transport-page .heading .container h1,
.realty .heading .container h1 {
  color: #FFF;
}
#comments {
  margin-top: 0px !important;
  margin-left: 15px !important;
}
.wpd-form-head,
.wpd-vote,
.wpd-follow-link {
  display: none !important;
}
.wpd-link {
  font-size: 14px;
}
.wpd-comment-wrap {
  border: 1px solid #eeeeee;
  padding: 11px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
#wpdcom .wpd-comment-text {
  font-size: 16px !important;
  line-height: 1.6;
  color: #555;
}
.tour_page .button_request {
  color: var(--contrast-color);
  background: var(--accent-color);
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
}
.tour_page .single-content {
  padding-top: 25px;
  padding-bottom: 25px;
}
.tour_page .single-content p {
  max-width: 980px;
}
.tour_page .block_title {
  font-size: 28px;
  font-weight: 600;
  border-left: 8px solid #ff572221;
  padding-left: 10px;
}
.tour_page .tour_header {
  height: 450px;
  background-size: cover !important;
  position: relative;
}
.tour_page .tour_header:after {
  content: '';
  width: 100%;
  background: #000;
  position: absolute;
  height: 100%;
  left: 0;
  opacity: 0.7;
}
.tour_page .tour_header .tour_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #FFF;
  text-align: center;
}
.tour_page .tour_header .tour_content .tour_title {
  font-size: 38px;
  font-weight: 700;
}
.tour_page .tour_header .tour_content .tour_desc {
  margin-top: 10px;
  font-size: 18px;
}
.non-index-page.scrolled .header {
  opacity: 0.97;
}
.index-page.scrolled .header {
  opacity: 0.97;
}
.header .logo img {
  max-height: 110px;
  margin-right: 8px;
  position: absolute;
}
.index-page .header {
  margin-top: 25px;
}
.index-page .header .gtranslate_wrapper a {
  font-weight: 600;
  color: #FFF;
}
.navmenu a {
  font-weight: 600;
}
.index-page.scrolled .phone_contact,
.non-index-page.scrolled .header .phone_contact {
  margin-right: 10px;
}
.index-page.scrolled .phone_contact a,
.non-index-page.scrolled .header .phone_contact a {
  color: #32353a !important;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.index-page.scrolled .phone_contact i,
.non-index-page.scrolled .header .phone_contact i {
  margin-left: 10px;
}
.index-page.scrolled .phone_contact .bi-telegram,
.non-index-page.scrolled .header .phone_contact .bi-telegram {
  color: #2AABEE;
}
.index-page.scrolled .phone_contact .bi-whatsapp,
.non-index-page.scrolled .header .phone_contact .bi-whatsapp {
  color: green;
}
.index-page.scrolled .gtranslate_wrapper a,
.non-index-page.scrolled .header .gtranslate_wrapper a {
  color: var(--accent-color);
}
.non-index-page .header .phone_contact {
  margin-right: 10px;
}
.non-index-page .header .phone_contact a {
  color: #32353a;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 700;
}
.non-index-page .header .phone_contact i {
  font-size: 18px;
  margin-left: 10px;
}
.non-index-page .header .phone_contact .bi-telegram {
  color: #2AABEE;
}
.non-index-page .header .phone_contact .bi-whatsapp {
  color: green;
}
.non-index-page .header .gtranslate_wrapper a {
  font-weight: 600;
}
.index-page .header.scrolled .phone_contact a {
  color: #32353a !important;
}
.index-page .header .phone_contact {
  margin-right: 10px;
}
.index-page .header .phone_contact a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 700;
}
.index-page .header .phone_contact i {
  font-size: 18px;
  margin-left: 10px;
}
.non-index-page {
  padding-top: 100px;
}
.non-index-page .logo .l_black {
  display: block !important;
}
.non-index-page .logo .l_white {
  display: none !important;
}
.footer .footer-about .logo {
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 110px;
  margin-right: 6px;
}
.index-page .l_white {
  max-height: 150px !important;
  margin-top: 20px;
}
.index-page .steps .step {
  min-height: 410px;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}
.index-page .steps .step .title {
  width: 220px;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}
.index-page .steps .step .num {
  font-size: 48px;
  font-weight: bold;
}
.index-page .steps .step .num_1 {
  color: #e84545;
  opacity: 0.6;
}
.index-page .steps .step .num_2 {
  color: #e84545;
  opacity: 0.8;
}
.index-page .steps .step .num_3 {
  color: #e84545;
  opacity: 1;
}
.index-page.scrolled .header {
  margin-top: 0px !important;
}
.index-page.scrolled .header .logo .l_black {
  display: block !important;
}
.index-page.scrolled .header .logo .l_white {
  display: none !important;
}
/* Стили для контейнера стрелки */
.scroll-down-arrow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
/* Стили для самой стрелки */
.scroll-down-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: -10px;
  animation: scroll-down 1.5s infinite;
}
/* Анимация мерцания */
@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
/*# sourceMappingURL=custom.css.map */