@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 (Гибридный вариант) */
*, *::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 {
  font-family: sans-serif;
  line-height: 1.6;
  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;
}


/**
 * Подключение шрифтов.
 * Содержит @font-face объявления.
 * Задает настройки загрузки и отображения шрифтов.
 * Определяет шрифтовые вариации (вес, стили).
 */
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/**
 * Утилитарные классы.
 * Содержит общие служебные классы:
 * - Контейнер для содержимого
 * - Классы для скрытия/показа элементов
 * - Визуальное скрытие элементов
 * - Вспомогательные классы для адаптивности
 */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  margin-bottom: 112px;
}
@media (max-width: 767px) {
  .container {
    margin-bottom: 64px;
  }
}

.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.8333333333vw, 16px);
  font-family: "NotoSans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #424242;
  background-color: #FFFFFF;
}

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

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

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

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

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

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

p {
  font-size: clamp(14px, 0.8333333333vw, 16px);
}

button {
  width: 288px;
  height: 64px;
  background-color: rgb(255, 157, 0);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  transition: 0.3s ease-in-out;
  font-size: 18px;
}
button:hover {
  background-color: #E1B400;
}
@media (max-width: 470px) {
  button {
    width: 100%;
  }
}

.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: #424242;
  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(255, 157, 0);
  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(255, 157, 0);
  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(255, 157, 0);
  border-radius: 5px;
  box-shadow: 0 -8px, 0 8px rgb(255, 157, 0);
}

.mob-inner {
  height: 48px;
  background-color: rgba(37, 37, 37, 0.9);
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-inner img {
  width: auto;
  height: 36px;
}
.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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.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 {
  min-height: 470px;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 96px 0;
}
.contact-form .container {
  margin-bottom: 0;
}
.contact-form h2 {
  font-size: clamp(24px, 1.875vw, 36px);
  max-width: 438px;
  margin-bottom: 16px;
}
.contact-form p {
  margin-bottom: 32px;
}
.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-form form input {
  width: 336px;
  height: 64px;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #424242;
  font-size: 18px;
  padding: 20px;
}
@media (max-width: 767px) {
  .contact-form form input {
    width: 100%;
  }
}
.contact-form form button {
  width: 282px;
  height: 64px;
}
@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 p {
  margin-bottom: 0;
}
.contact-form__conf a {
  color: rgb(255, 157, 0);
  text-decoration: underline;
}

.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: #FFFFFF;
}
@media (min-width: 767px) {
  .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 46px;
    width: 600px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .modal-content button {
    width: 100%;
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}

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

.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 #FFFFFF;
  border-color: #424242;
}
.modal-phone form .custom-checkbox span::before {
  border-right-color: #424242;
  border-bottom-color: #424242;
}
.modal-phone form .custom-checkbox input:checked + span::before {
  border-right-color: #424242;
  border-bottom-color: #424242;
}
.modal-phone form .custom-checkbox input::-moz-placeholder {
  color: #424242;
  opacity: 1;
}
.modal-phone form .custom-checkbox input::placeholder {
  color: #424242;
  opacity: 1;
}
.modal-phone button {
  width: 282px;
  height: 64px;
}

.custom-checkbox {
  display: flex;
  color: #FFFFFF;
  cursor: pointer;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox span {
  display: inline-block;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  border: 2px solid #FFFFFF;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.custom-checkbox span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  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;
}

.modal-policy-content {
  position: relative;
  width: 80%;
  height: 80%;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .modal-policy-content {
    width: 100%;
    height: 100vh;
  }
}
.background-video {
  z-index: -1;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Затемнение 50% */
}

.header {
  overflow: hidden;
  color: #FFFFFF;
  height: 100vh;
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}
.header .header-container {
  background-color: rgba(37, 37, 37, 0.9);
}
@media (min-width: 767px) {
  .header .header-container {
    position: fixed;
    z-index: 200;
    width: 100%;
    height: 120px;
  }
}
.header .header-container::after {
  content: "";
  position: absolute;
  top: 69px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  opacity: 0.4;
}
@media (max-width: 1000px) {
  .header .header-container::after {
    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;
  }
}
.header .header-container .container--first {
  height: 120px;
  padding: 8px 0;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1207px) {
  .header__contact-inner {
    gap: 18px;
  }
}
.header .header__adress {
  gap: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__adress p {
  font-size: 14px;
}
.header .header__time p,
.header .header__email p {
  font-size: 14px;
}
.header .header__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header .header__social p {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
}
.header .header__social div {
  gap: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav ul {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 64px;
  justify-content: space-between;
}
@media (max-width: 1060px) {
  .header__nav ul {
    gap: 30px;
  }
}
.header__button-header {
  background-color: #424242;
  border: solid 1px #FFFFFF;
  width: 200px;
  height: 48px;
  border-radius: 4px;
  color: #FFFFFF;
}
.header__button-header:hover {
  background-color: #F4F3F1;
  color: #424242;
}

.footer {
  position: relative;
  padding: 80px 0 72px;
  background-color: rgba(37, 37, 37, 1);
  color: #FFFFFF;
}
@media (max-width: 390px) {
  .footer {
    font-weight: 300;
    padding: 38px 0;
    height: 980px;
  }
}
.footer h3 {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 7px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .container .footer__info {
  font-size: 16px;
  font-weight: 500;
}
.footer .container .footer__logo {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 229px;
}
.footer .container .footer__logo img {
  width: 55px;
  height: auto;
}
.footer .container .footer__logo-time {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .footer__links {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .container .footer__links a {
  cursor: pointer;
  text-decoration: underline;
}
.footer .container .footer__menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: clamp(16px, 0.9375vw, 18px);
}
@media (max-width: 767px) {
  .footer .container .footer__menu {
    font-weight: 300;
    gap: 32px;
    margin-bottom: 34px;
  }
}
.footer .container .footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 767px) {
  .footer .container .footer__menu ul {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 17px;
  }
  .footer .container .footer__menu ul li {
    width: auto;
  }
}
.footer .container .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer .container .footer__contacts {
    margin-bottom: 35px;
  }
}
.footer .container .footer__contacts div {
  display: flex;
  flex-direction: column;
  gap: 23px;
  font-size: 18px;
}
.footer .container .footer__contacts .email {
  gap: 16px;
}
.footer .container .footer__contacts .tel {
  gap: 20px;
}
@media (max-width: 767px) {
  .footer .container .footer__contacts .tel {
    font-size: 18px;
  }
}
.footer .container .footer__contacts .footer__socials {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.footer .container .footer__contacts .mess {
  gap: 8px;
}
@media (max-width: 767px) {
  .footer .container .footer__contacts .mess {
    font-size: 18px;
  }
}
.footer .container .footer__contacts .footer__tel {
  gap: 12px;
}

.service {
  display: flex;
  flex-direction: column;
}
.service__card {
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  padding: 48px 64px;
  gap: 48px;
  display: flex;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .service__card {
    flex-direction: row-reverse;
    margin-left: 204px;
    padding-bottom: 48px;
  }
}
@media (max-width: 1200px) {
  .service__card {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }
}
.service__card img {
  width: 585px;
  border-radius: 8px;
  height: 331px;
}
@media (min-width: 1200px) {
  .service__card img {
    position: absolute;
	  top: 50%;
        transform: translateY(-50%);
    left: -204px;
  }
}
@media (max-width: 1200px) {
  .service__card img {
    width: 100%;
    height: auto;
  }
}
.service__card__block-text {
  width: 503px;
  height: auto;
	min-height:331px;
}
@media (max-width: 1200px) {
  .service__card__block-text {
    width: 100%;
    height: auto;
	  min-height:unset;
    padding: 0 12px 20px;
  }
}
.service__card__block-text h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  margin-bottom: 36px;
  width: 461px;
}
@media (max-width: 1200px) {
  .service__card__block-text h3 {
    margin-bottom: 12px;
    width: 100%;
  }
}
.service__card__block-text p {
  font-size: clamp(14px, 0.9375vw, 18px);
}
.service__card:nth-child(2) {
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  padding: 48px 64px;
  gap: 48px;
  display: flex;
  flex-direction: row;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .service__card:nth-child(2) {
    flex-direction: row;
    margin-left: unset;
    margin-right: 204px;
  }
}
@media (max-width: 1200px) {
  .service__card:nth-child(2) {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }
}
.service__card:nth-child(2) img {
  width: 585px;
  border-radius: 8px;
  height: 331px;
}
@media (min-width: 1200px) {
  .service__card:nth-child(2) img {
    position: absolute;
    left: unset;
    right: -204px;
  }
}
@media (max-width: 1200px) {
  .service__card:nth-child(2) img {
    width: 100%;
    height: auto;
  }
}
.service .btn {
  display: flex;
  justify-content: center;
}

.hero-swiper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
.hero-swiper .swiper-slide {
  width: 100%;
  padding-top: 120px;
}
@media (min-width: 767px) {
  .hero-swiper .swiper-slide {
    padding-top: 240px;
  }
}
.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;
}

.company__desc {
  margin-bottom: 40px;
}
.company__advantagees {
  display: flex;
  flex-wrap: wrap;
  gap: auto 24px;
  justify-content: space-between;
}
@media (max-width: 1128px) {
  .company__advantagees {
    justify-content: space-evenly;
  }
}
.company__advantagees__card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-left: 60px;
  margin-left: 35px;
  width: 345px;
  height: 136px;
  border-radius: 8px;
  box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  margin-left: 35px;
}
@media (max-width: 767px) {
  .company__advantagees__card {
    width: 100%;
  }
}
.company__advantagees__card img {
  position: absolute;
  left: -35px;
}
@media (max-width: 767px) {
  .company__advantagees__card img {
    width: 64px;
  }
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .clients__list {
    flex-direction: column;
  }
}
.clients__list__card {
  display: flex;
  gap: 16px;
  padding: 20px;
  width: 575px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 0px 11px 0px rgba(51, 51, 51, 0.15);
}
@media (max-width: 1210px) {
  .clients__list__card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .clients__list__card {
    flex-direction: column;
  }
}
.clients__list__card img {
  width: 266px;
  height: 263px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .clients__list__card img {
    width: 100%;
    height: auto;
  }
}
.clients__list__card .card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients__list__card .card-inner .text-box {
  display: flex;
  flex-direction: column;
}
.clients__list__card .card-inner .text-box h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .clients__list__card .card-inner .text-box h3 {
    margin-bottom: 8px;
  }
}
.clients__list__card .card-inner .text-box p {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .clients__list__card .card-inner .text-box p {
    margin-bottom: 20px;
  }
}
.clients__list__card .card-inner button {
  width: 100%;
  height: 64px;
}
@media (max-width: 1210px) {
  .clients__list__card .card-inner button {
    max-width: 370px;
  }
}

.echoes p {
  margin-bottom: 32px;
}
.echoes-swiper {
  margin-top: 0;
  padding-bottom: 0;
}
.echoes-swiper .swiper-slide {
  padding: 0;
}
.echoes-swiper .swiper-pagination {
  position: unset;
}
.echoes-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.2;
  background: rgb(255, 157, 0);
}
.echoes-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.echoes-swiper .echoes-card {
  height: 100%;
  display: flex;
  justify-content: space-around;
}/*# sourceMappingURL=styles.css.map */




.swiper-backface-hidden .swiper-slide {
	 display: flex;
    justify-content: center;
}

.hero-swiper .swiper-slide .swipper-content {
/* 		position:relative; */

	&::after{
                content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        height: 80%;
        border-radius: 40%;
        backdrop-filter: blur(5px);
        transform: translate(-50%, -50%);
        z-index: -1;
		mask: linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 100%,
            transparent 100%
        );
	}
    max-width: 600px;
	& h2,p{
		text-align:center;
	}
	& a button{
		margin:auto;
	}
	
}