@charset "UTF-8";
/**
 * Медиа-запросы и брейкпойнты.
 * Содержит миксины для адаптивного дизайна:
 * - Контрольные точки для разных устройств
 * - Миксины для различных размеров экрана
 * - Миксины для особенностей устройств (например, hover)
 */
/**
 * Стили для больших десктопов (больше 1280px)
 * Использование:
 * @include desktop-above {
 *   // стили для больших экранов
 * }
 */
/**
 * Стили для десктопов и меньше (1280px и ниже)
 * Использование:
 * @include desktop {
 *   // стили для десктопов и меньших экранов
 * }
 */
/**
 * Стили для маленьких десктопов и выше (1024px и выше)
 */
/**
 * Стили для планшетов и меньше (1023px и ниже)
 */
/**
 * Стили для маленьких планшетов и выше (768px и выше)
 */
/**
 * Стили для мобильных устройств (767px и ниже)
 */
/**
 * Стили для обычных мобильных и выше (481px и выше)
 */
/**
 * Стили для маленьких мобильных (480px и ниже)
 */
/**
 * Стили для интерактивных элементов с учетом типа устройства
 * На устройствах с поддержкой hover эффект применяется при наведении
 * На сенсорных устройствах эффект применяется при нажатии
 *
 * Использование:
 * @include hover {
 *   background-color: $color-accent;
 * }
 */
/**
 * SCSS миксины.
 * Содержит многоразовые блоки стилей:
 * - Типографские утилиты (адаптивный текст)
 * - Сбросы стилей (кнопки, ссылки)
 * - Часто используемые стили (flex-center, visually-hidden)
 * - Вспомогательные функции для компонентов
 */
/**
 * Создает адаптивный текст, который изменяет размер в зависимости от ширины экрана
 * @param {number} $max - Максимальный размер текста в пикселях (для десктопа)
 * @param {number} $min - Минимальный размер текста в пикселях (для мобильных)
 *
 * Использование: @include fluid-text(48, 24);
 */
/**
 * Сбрасывает стандартные стили ссылок
 * Убирает подчеркивание и наследует цвет от родителя
 *
 * Использование: @include reset-link;
 */
/**
 * Сбрасывает стандартные стили кнопок
 * Убирает отступы, фон и границы
 *
 * Использование: @include reset-button;
 */
/**
 * Центрирует содержимое с помощью flexbox
 * @param {boolean} $isInline - Использовать inline-flex вместо flex
 *
 * Использование: @include flex-center();
 * Использование: @include flex-center(true);
 */
/**
 * Абсолютное центрирование элемента
 * Элемент должен иметь position: relative у родителя
 *
 * Использование: @include abs-center;
 */
/**
 * Создает квадратный элемент заданного размера
 * @param {string} $size - Размер стороны квадрата с единицей измерения
 *
 * Использование: @include square(50px);
 */
/**
 * Визуально скрывает элемент, но сохраняет доступность для скринридеров
 * Используется для элементов, которые должны быть доступны через клавиатуру
 * но не должны отображаться визуально
 *
 * Использование: @include visually-hidden;
 */
/**
 * Переменные SCSS.
 * Содержит основные настройки темы:
 * - Цветовую палитру
 * - Размеры и отступы
 * - Шрифты и типографику
 * - Переменные для адаптивного дизайна
 * Используется во всех остальных SCSS файлах.
 */
/* SCSS Reset + Normalize (Гибридный вариант) */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid blue;
}

* {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/**
 * Подключение шрифтов через Google Fonts.
 * Импортируем шрифт Raleway в весах 400 (Regular), 500 (Medium) и 600 (SemiBold).
 */
/**
 * Утилитарные классы.
 * Содержит общие служебные классы:
 * - Контейнер для содержимого
 * - Классы для скрытия/показа элементов
 * - Визуальное скрытие элементов
 * - Вспомогательные классы для адаптивности
 */
.container {
  max-width: 1220px;
  margin: auto;
  padding-inline: 10px;
  margin-bottom: 112px;
}
@media (max-width: 767px) {
  .container {
    padding: 10px;
    margin-bottom: 64px;
  }
}

.header-container {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

/**
 * Глобальные стили.
 * Содержит базовые стили для:
 * - Элементов body, a, button, input
 * - Заголовков разных уровней
 * - Типографики (размеры, отступы)
 * - Основных переходов и анимаций
 */
html {
  scroll-behavior: smooth;
}

body {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(17, 17, 17);
  background-color: rgb(255, 255, 255);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: 0.2s;
}

img {
  border-radius: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-weight: 600;
}

h1, .h1 {
  font-size: clamp(24px, 1.875vw, 36px);
}

h2, .h2 {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  h2, .h2 {
    margin-bottom: 40px;
  }
}

h3, .h3 {
  font-size: clamp(18px, 0.9375vw, 18px);
}

p {
  font-size: clamp(14px, 0.9375vw, 18px);
}

.policy {
  cursor: pointer;
}

button {
  width: 255px;
  height: 64px;
  background-color: rgb(7, 37, 127);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  transition: 0.3s ease-in-out;
  font-size: 18px;
}
button:hover {
  background-color: rgb(47, 92, 225);
}
@media (max-width: 470px) {
  button {
    width: 100%;
  }
}

.logo {
  width: 48px;
}

.mobile-overlay {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}
.mobile-overlay__contacts {
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-overlay__contacts .email,
.mobile-overlay__contacts .tel,
.mobile-overlay__contacts .time {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-overlay__contacts .email {
  gap: 12px;
}
.mobile-overlay__contacts .time {
  gap: 20px;
}
.mobile-overlay__contacts .time span {
  font-weight: 600;
}
.mobile-overlay .mobileheader {
  background-color: rgb(241, 247, 255);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  height: 48px;
  margin-bottom: 40px;
  align-items: center;
  box-shadow: 0px 1px 6px 0px rgba(51, 51, 51, 0.1);
}
.mobile-overlay:modal {
  max-width: 100%;
  max-height: 100%;
}
.mobile-overlay .mobile-overlay__tel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: left;
}
.mobile-overlay__close-button-wrapper {
  display: flex;
  justify-content: end;
}
.mobile-overlay__body {
  padding: 10px;
}
.mobile-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: left;
  margin-bottom: 40px;
}
.mobile-overlay__list li {
  font-weight: 600;
  font-size: 16px;
}

.cross-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 48px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 5px;
}
.cross-button:hover {
  background-color: transparent;
}
.cross-button::before, .cross-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 70%;
  height: 2px;
  background-color: rgb(7, 37, 127);
  border-radius: 5px;
}
.cross-button::before {
  rotate: 45deg;
}
.cross-button::after {
  rotate: -45deg;
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 48px;
  aspect-ratio: 1;
  color: rgb(7, 37, 127);
  background: transparent;
  position: relative;
}
.burger-button:hover {
  background-color: transparent;
}
.burger-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 50%;
  height: 2px;
  background-color: rgb(7, 37, 127);
  border-radius: 5px;
  box-shadow: 0 -8px, 0 8px rgb(7, 37, 127);
}

.mob-inner {
  height: 48px;
  background-color: rgb(241, 247, 255);
  opacity: 0.9;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-inner__ico {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq svg {
  min-width: 24px;
}
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: auto;
  margin: 0 auto;
}
.faq__accordion details {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  cursor: pointer;
  border-radius: 8px;
}
.faq__accordion details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__accordion details summary span {
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 12px;
}
.faq__accordion details summary svg {
  transition: transform 0.3s ease;
}
.faq__accordion details[open] summary svg {
  transform: rotate(-90deg);
}
.faq__accordion details .faq__content {
  font-size: clamp(14px, 0.9375vw, 18px);
}
.faq__accordion details:last-child {
  border-bottom: none;
}

.contact-form {
  background-size: cover;
  background-repeat: no-repeat;
  color: rgb(17, 17, 17);
}
.contact-form .container {
  margin-bottom: 0;
  background-color: rgb(248, 248, 248);
  border-radius: 24px;
  padding: 60px 40px;
}
.contact-form h2 {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  max-width: 438px;
  margin-bottom: 20px;
}
.contact-form p {
  font-size: clamp(16px, 0.9375vw, 18px);
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contact-form p {
    margin-bottom: 24px;
  }
}
.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-form form input {
  width: 336px;
  height: 64px;
  border-radius: 32px;
  background-color: rgb(241, 247, 255);
  color: rgb(17, 17, 17);
  font-size: 18px;
  padding: 20px;
}
@media (max-width: 767px) {
  .contact-form form input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-form form button {
    width: 100%;
  }
}
.contact-form__conf {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 668px;
}
.contact-form__conf a {
  color: rgb(7, 37, 127);
  text-decoration: underline;
}
.contact-form__conf p {
  margin-bottom: 10px;
}

.modal {
  display: none;
  /* Скрыть модальное окно по умолчанию */
  position: fixed;
  /* Оставаться на месте */
  z-index: 1;
  /* Сидеть на вершине */
  left: 0;
  top: 0;
  width: 100%;
  /* Полная ширина */
  height: 100%;
  /* Полная высота */
  overflow: auto;
  /* Включить прокрутку, если необходимо */
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  width: 100%;
  height: 100%;
  padding: 56px 10px 10px;
  background-color: rgb(255, 255, 255);
}
@media (min-width: 767px) {
  .modal-content {
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translate(-50%);
    padding: 46px;
    width: 600px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .modal-content button {
    width: 100%;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-policy-content {
  position: relative;
  width: 80%;
  height: 80%;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .modal-policy-content {
    width: 100%;
    height: 100vh;
  }
}
.modal-phone h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 20px;
}
.modal-phone p {
  font-weight: 300;
  line-height: 130%;
  margin-bottom: 32px;
}
.modal-phone form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-phone form input {
  border: 1px solid rgb(213, 216, 217);
  width: auto;
  height: 64px;
  padding: 23px;
}
.modal-phone form label {
  margin-bottom: 32px;
}
.modal-phone form .custom-checkbox p {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: rgb(87, 87, 86);
  margin-bottom: 16px;
}
.modal-phone form .custom-checkbox span {
  border: solid 2px rgb(255, 255, 255);
  border-color: rgb(17, 17, 17);
}
.modal-phone form .custom-checkbox span::before {
  border-right-color: rgb(17, 17, 17);
  border-bottom-color: rgb(17, 17, 17);
}
.modal-phone form .custom-checkbox input:checked + span::before {
  border-right-color: rgb(17, 17, 17);
  border-bottom-color: rgb(17, 17, 17);
}
.modal-phone form .custom-checkbox input::-moz-placeholder {
  color: rgb(17, 17, 17);
  opacity: 1;
}
.modal-phone form .custom-checkbox input::placeholder {
  color: rgb(17, 17, 17);
  opacity: 1;
}
.modal-phone button {
  width: 282px;
  height: 64px;
}

.modal-policy-content {
  position: relative;
  width: 80%;
  height: 80%;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .modal-policy-content {
    width: 100%;
    height: 100vh;
  }
}
.custom-checkbox {
  display: flex;
  color: rgb(17, 17, 17);
  cursor: pointer;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox span {
  display: inline-block;
  min-width: 20px;
  height: 20px;
  border: 2px solid rgb(17, 17, 17);
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.custom-checkbox span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgb(17, 17, 17);
  border-bottom: 2px solid rgb(17, 17, 17);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.custom-checkbox input:checked + span {
  background: transparent;
}
.custom-checkbox input:checked + span::before {
  opacity: 1;
}

.header .header-container--top {
  margin-bottom: 8px;
}
.header__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 0.9375vw, 18px);
}
.header__header-top .header-logo {
  width: 96px;
  height: 64px;
}
.header__header-top .social-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}
.header__nav {
  background-color: rgb(241, 247, 255);
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.header__nav .header-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 110px;
  align-items: center;
}
.header__nav .header-container nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}
.header__nav .header-container button {
  font-size: 16px;
  padding: 14px;
  min-width: 196px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: rgb(241, 247, 255);
  border: solid rgb(7, 37, 127) 1px;
  color: blue;
}
.header .hero {
  border-radius: 42px;
  padding: 40px 36px;
  background-image: url(./../images/hero-bg.png);
}
@media (max-width: 900px) {
  .header .hero {
    background-image: none;
    background-color: rgb(248, 248, 248);
    padding: 10px;
    border-radius: 0 0 42px 42px;
  }
}
.header .hero .hero-card {
  position: relative;
  display: flex;
  gap: 24px;
}
@media (max-width: 900px) {
  .header .hero .hero-card {
    flex-direction: column;
    padding: 10px;
  }
}
.header .hero .hero-card img {
  width: 561px;
  height: 408px;
  border-radius: 16px;
}
@media (max-width: 900px) {
  .header .hero .hero-card img {
    width: 100%;
    height: auto;
  }
}
.header .hero .hero-card .text-block {
  margin-top: 52px;
}
@media (max-width: 900px) {
  .header .hero .hero-card .text-block {
    margin-top: 0;
  }
}
.header .hero .hero-card .text-block h1 {
  margin-bottom: 24px;
}
.header .hero .hero-card .text-block p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.header .hero .hero-card button {
  position: absolute;
  left: 0;
  bottom: -82px;
}
@media (max-width: 900px) {
  .header .hero .hero-card button {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .header .hero .hero-card button {
    bottom: -40px;
    left: -36px;
  }
}
.header .advant__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .header .advant__list {
    flex-direction: column;
    margin-top: 70px;
    padding: 10px;
    gap: 16px;
  }
}
.header .advant__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 384px;
  height: 136px;
  border-radius: 16px;
  background-color: rgb(241, 247, 255);
}
@media (max-width: 900px) {
  .header .advant__list__item {
    width: 100%;
  }
}
.header .advant__list__item div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.header .advant__list__item div p {
  max-width: 265px;
  font-size: clamp(18px, 1.0416666667vw, 20px);
}

.products__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1216px) {
  .products__list {
    justify-content: space-around;
  }
}
@media (max-width: 625px) {
  .products__list {
    width: 100%;
    gap: 16px;
  }
}
.products__list__item {
  display: flex;
  flex-direction: column;
  width: 282px;
  height: 249px;
}
@media (max-width: 625px) {
  .products__list__item {
    width: calc(50% - 16px);
    height: auto;
  }
}
.products__list__item img {
  margin-bottom: 8px;
  width: 282px;
  height: 191px;
  border-radius: 16px;
}
@media (max-width: 625px) {
  .products__list__item img {
    width: 100%;
    height: auto;
  }
}
.products__list__item p {
  font-size: clamp(16px, 0.9375vw, 18px);
}

.company__card {
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .company__card {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .company__card {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.company__card img {
  width: 591px;
  height: 403px;
}
@media (max-width: 767px) {
  .company__card img {
    width: 100%;
    height: auto;
  }
}
.company__card .text-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .company__card .text-inner {
    gap: 16px;
  }
}
.company__card .text-inner p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.company__card .text-inner .block-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .company__card .text-inner .block-inner {
    gap: 16px;
  }
}
.company__card .text-inner .block-inner .block {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 24px;
  width: 282px;
  height: 158px;
  border-radius: 16px;
  background-color: rgb(241, 247, 255);
}
@media (max-width: 767px) {
  .company__card .text-inner .block-inner .block {
    width: calc(50% - 16px);
  }
}
.company__card .text-inner .block-inner .block span {
  font-weight: 600;
  font-size: clamp(30px, 2.0833333333vw, 40px);
  color: rgb(7, 37, 127);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .company__card .text-inner .block-inner .block span {
    margin-bottom: 8px;
  }
}
.company__card .text-inner .block-inner .block__text {
  font-size: clamp(14px, 0.8333333333vw, 16px);
}

.serteficates {
  position: relative;
}
@media (min-width: 767px) {
  .serteficates h2 {
    margin-bottom: 140px;
  }
}
.serteficates .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.serteficates .swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.serteficates .swiper-slide {
  width: 282px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .serteficates .swiper-slide {
    padding-bottom: 24px;
  }
}
.serteficates .swiper-pagination {
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.serteficates .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(248, 248, 248);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}
.serteficates .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(7, 37, 127);
  opacity: 1;
}
@media (max-width: 768px) {
  .serteficates .swiper-pagination {
    bottom: 10px;
  }
  .serteficates .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .serteficates .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgb(7, 37, 127);
  }
}
.serteficates .swiper-button-prev,
.serteficates .swiper-button-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 150px;
  cursor: pointer;
  z-index: 10;
}
.serteficates .swiper-button-prev {
  left: 0;
}
.serteficates .swiper-button-next {
  left: 40px;
}

/* Footer start */
.footer {
  background-color: rgb(248, 248, 248);
  padding: 80px 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer {
    padding: 32px 10px;
  }
}
.footer__inner {
  max-width: 1220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
}
@media (max-width: 992px) {
  .footer__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: left;
  }
}
.footer__contacts h3 {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer__contacts .footer__list__item a {
    font-size: 18px;
  }
}
.footer__item {
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer__item {
    margin-bottom: 32px;
  }
}
.footer__item img {
  margin-bottom: 20px;
  max-width: 200px;
}
.footer__text {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: rgb(17, 17, 17);
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .footer__text {
    margin-bottom: 10px;
  }
}
.footer__title {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  color: rgb(17, 17, 17);
  margin-bottom: 40px;
}
.footer__list__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .footer__list__item {
    margin-bottom: 32px;
  }
}
.footer__list__item a {
  font-size: clamp(14px, 1.0416666667vw, 20px);
}
@media (max-width: 767px) {
  .footer__list__item--first {
    gap: 24px 36px;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.footer__link {
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer__link:hover {
  transform: translateX(10px);
  color: black;
}
@media (max-width: 768px) {
  .footer__link:hover {
    transform: none;
    opacity: 0.7;
  }
}

.social {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .social {
    justify-content: left;
    margin: 0;
  }
}
.social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.social img:hover {
  transform: scale(1.1);
}

.policy {
  display: inline-block;
  font-size: 14px;
  color: rgb(17, 17, 17);
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .policy {
    margin-top: 80px;
  }
}
.policy:hover {
  text-decoration: underline;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .policy {
    display: block;
    text-align: l;
  }
}

.hero-swiper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
.hero-swiper .swiper-slide {
  width: 100%;
  padding-top: 120px;
}
.hero-swiper .swiper-slide .swipper-content {
  max-width: 925px;
}
.hero-swiper .swiper-slide .swipper-content h2 {
  font-weight: 600;
  font-size: clamp(24px, 2.0833333333vw, 40px);
  line-height: 140%;
  margin-bottom: 24px;
}
.hero-swiper .swiper-slide .swipper-content p {
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 42px;
}/*# sourceMappingURL=styles.css.map */