@charset "UTF-8";
/**
 * Медиа-запросы и брейкпойнты.
 * Содержит миксины для адаптивного дизайна:
 * - Контрольные точки для разных устройств
 * - Миксины для различных размеров экрана
 * - Миксины для особенностей устройств (например, hover)
 */
/**
 * Стили для больших десктопов (больше 1280px)
 * Использование:
 * @include desktop-above {
 *   // стили для больших экранов
 * }
 */
/**
 * Стили для десктопов и меньше (1280px и ниже)
 * Использование:
 * @include desktop {
 *   // стили для десктопов и меньших экранов
 * }
 */
/**
 * Стили для маленьких десктопов и выше (1024px и выше)
 */
/**
 * Стили для планшетов и меньше (1023px и ниже)
 */
/**
 * Стили для маленьких планшетов и выше (768px и выше)
 */
/**
 * Стили для мобильных устройств (767px и ниже)
 */
/**
 * Стили для обычных мобильных и выше (481px и выше)
 */
/**
 * Стили для маленьких мобильных (480px и ниже)
 */
/**
 * Стили для интерактивных элементов с учетом типа устройства
 * На устройствах с поддержкой hover эффект применяется при наведении
 * На сенсорных устройствах эффект применяется при нажатии
 *
 * Использование:
 * @include hover {
 *   background-color: $color-accent;
 * }
 */
/**
 * Создает адаптивный текст, который изменяет размер в зависимости от ширины экрана
 * @param {number} $max - Максимальный размер текста в пикселях (для десктопа)
 **/
/**
 * Сбрасывает стандартные стили кнопок
 * Убирает отступы, фон и границы
 *
 * Использование: @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=Manrope:wght@400;500;700&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 {
  font-family: sans-serif;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  display: block;
  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;
}

body {
  font-family: "Manrope", sans-serif;
}

/**
 * Утилитарные классы.
 * Содержит общие служебные классы:
 * - Контейнер для содержимого
 * - Классы для скрытия/показа элементов
 * - Визуальное скрытие элементов
 * - Вспомогательные классы для адаптивности
 */
.main-container,
.container {
  max-width: 1220px;
  margin: auto;
  padding-inline: 10px;
  margin-bottom: 112px;
}
@media (max-width: 767px) {
  .main-container,
  .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;
}

@media (min-width: 767px) {
  .front-main {
    position: relative;
    top: -140px;
  }
}

body {
  font-size: clamp(16px, 0.8333333333vw, 16px);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(66, 66, 66);
  background-color: white;
}

svg path {
  fill: rgb(33, 159, 214);
}

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

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

h3, h4 {
  font-weight: 600;
}

h1, .h1,
h2, .h2 {
  font-size: clamp(26px, 2.5vw, 48px);
  margin-bottom: 64px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h1, .h1,
  h2, .h2 {
    margin-bottom: 48px;
  }
}

h3, .h3 {
  font-size: clamp(20px, 1.6666666667vw, 32px);
}

h4, .h4 {
  font-size: clamp(20px, 1.0416666667vw, 20px);
  margin-bottom: 16px;
}

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

.front-main {
  background-image: url("/wp-content/themes/mythem/images/main-bg.png");
}

.breadcrumbs {
  width: auto;
  display: flex;
  gap: 3px;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  margin-bottom: 46px;
  position: relative;
  top: 32px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 32px;
    position: relative;
    top: 20px;
  }
}

button {
  width: 282px;
  height: 64px;
  background-color: rgb(33, 159, 214);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(248, 251, 253);
  transition: 0.3s ease-in-out;
  font-size: 18px;
}
button:hover {
  background-color: rgb(4, 105, 149);
}
@media (max-width: 767px) {
  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: rgb(66, 66, 66);
  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(33, 159, 214);
  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(33, 159, 214);
  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(33, 159, 214);
  border-radius: 5px;
  box-shadow: 0 -8px, 0 8px rgb(33, 159, 214);
}

.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;
}

.contact-form {
  min-height: 470px;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  color: rgb(248, 251, 253);
  padding: 96px 0;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 40px 0;
    height: 532px;
  }
}
.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: rgb(248, 251, 253);
  color: rgb(66, 66, 66);
  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(33, 159, 214);
  text-decoration: underline;
}

.modal {
  display: none;
  /* Скрыть модальное окно по умолчанию */
  position: fixed;
  /* Оставаться на месте */
  z-index: 201;
  /* Сидеть на вершине */
  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(248, 251, 253);
}
@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-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-image.active {
  display: block !important;
}

.modal-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-image__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90vh;
  z-index: 10000;
}

.modal-image__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image__container img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Стиль для элементов с атрибутом data-zoom */
[data-zoom] {
  cursor: zoom-in;
}

.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(248, 251, 253);
  border-color: rgb(66, 66, 66);
}
.modal-phone form .custom-checkbox span::before {
  border-right-color: rgb(66, 66, 66);
  border-bottom-color: rgb(66, 66, 66);
}
.modal-phone form .custom-checkbox input:checked + span::before {
  border-right-color: rgb(66, 66, 66);
  border-bottom-color: rgb(66, 66, 66);
}
.modal-phone form .custom-checkbox input::-moz-placeholder {
  color: rgb(66, 66, 66);
  opacity: 1;
}
.modal-phone form .custom-checkbox input::placeholder {
  color: rgb(66, 66, 66);
  opacity: 1;
}
.modal-phone button {
  width: 282px;
  height: 64px;
}

.custom-checkbox {
  display: flex;
  color: rgb(248, 251, 253);
  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 rgb(248, 251, 253);
  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 rgb(248, 251, 253);
  border-bottom: 2px solid rgb(248, 251, 253);
  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;
  }
}
.header {
  overflow: hidden;
  color: rgb(248, 251, 253);
  position: relative;
}
@media (min-width: 767px) {
  .header {
    margin-bottom: 140px;
  }
}
.header .header-container {
  background-color: rgba(51, 51, 51, 0.7);
  -webkit-backdrop-filter: blur(7.0999999046px);
          backdrop-filter: blur(7.0999999046px);
  box-shadow: 0px -5px 13.5px 0px rgba(255, 255, 255, 0.12) inset;
}
@media (min-width: 767px) {
  .header .header-container {
    position: fixed;
    z-index: 200;
    width: 100%;
    height: 144px;
  }
}
.header .header-container::after {
  content: "";
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(248, 251, 253);
  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 {
  max-width: 1200px;
}
.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: 26px;
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1207px) {
  .header__contact-inner {
    gap: 18px;
  }
}
.header .header__email,
.header .header__tel {
  gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__email p,
.header .header__tel 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 {
  width: 100%;
}
.header__nav ul {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1060px) {
  .header__nav ul {
    gap: 30px;
  }
}
.header__button-header {
  background-color: transparent;
  border: solid 1px rgb(248, 251, 253);
  width: 200px;
  height: 48px;
  border-radius: 4px;
  color: rgb(248, 251, 253);
}
.header__button-header:hover {
  background-color: rgb(172, 172, 172);
  color: rgb(66, 66, 66);
}

.service {
  background-color: rgba(33, 159, 214, 0.2);
  padding: 40px 0 64px;
  margin-bottom: 50px;
}
.service .container {
  margin-bottom: 0;
}
.service .container .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}
.service .container .card-list .card {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  width: 291px;
  height: 371px;
  border-radius: 4px;
  box-shadow: 1px 2px 20px 0px rgba(51, 51, 51, 0.2);
  background-color: white;
}
@media (max-width: 767px) {
  .service .container .card-list .card {
    width: 100%;
    height: auto;
  }
}
.service .container .card-list .card h4 {
  margin-bottom: 20px;
}
.service .container .card-list .card h4 a {
  color: rgb(66, 66, 66);
}
.service .container .card-list .card p {
  margin-bottom: 24px;
}
.service .container .card-list .card a {
  font-weight: 600;
  font-size: 18px;
  color: rgb(33, 159, 214);
}

.catalog-container {
  margin-top: 140px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog-container h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.company__card {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .company__card {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .company__card {
    flex-direction: column;
    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(14px, 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(248, 251, 253);
}
@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(33, 159, 214);
  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);
}

.footer {
  position: relative;
  padding: 80px 0 72px;
  background-color: rgb(37, 37, 37);
  color: rgb(248, 251, 253);
}
@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;
}

.partners .container .partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 56px;
}
@media (max-width: 767px) {
  .partners .container .partners-list {
    gap: 16px;
  }
}
.partners .container .partners-list .card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 257px;
  height: 139px;
  box-shadow: 0px 0px 14px 0px rgba(51, 51, 51, 0.1);
}
.partners .container .partners-list .card img {
  width: 100%;
}
@media (max-width: 767px) {
  .partners .container .partners-list .card {
    width: calc(50% - 8px);
  }
}

.category .container h2 {
  margin-top: 112px;
  text-align: center;
}
.category .container .category-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px 0;
}
.category .container .category-inner .category-item {
  width: 280px;
  height: 156px;
}
.category .container .category-inner .category-item .card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.category .container .category-inner .category-item .card p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}

.posts .container .posts-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .posts .container .posts-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .posts .container .posts-list {
    flex-direction: column;
    gap: 16px;
  }
}
.posts .container .posts-list .post-item {
  width: 384px;
  height: auto;
  border-radius: 8px;
  background-color: rgb(248, 251, 253);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .posts .container .posts-list .post-item {
    margin-bottom: 0;
    width: 100%;
  }
}
.posts .container .posts-list .post-item img {
  width: auto;
  height: 264px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.posts .container .posts-list .post-item .inner {
  padding: 16px;
}
.posts .container .posts-list .post-item .inner .post-content {
  border-bottom: 1px solid rgb(172, 172, 172);
}
.posts .container .posts-list .post-item .inner .post-content h4 {
  margin-bottom: 16px;
}
.posts .container .posts-list .post-item .inner .post-content p {
  margin-bottom: 16px;
}
.posts .container .posts-list .post-item .inner .next {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  color: rgb(33, 159, 214);
}
.posts .container .all-posts-button {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .posts .container .all-posts-button {
    display: inline;
    width: 100%;
  }
}
.posts .container .all-posts-button a {
  margin-inline: auto;
}

.hero {
  color: rgb(248, 251, 253);
}
.hero .hero-swiper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .hero-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 719px;
}
@media (max-width: 767px) {
  .hero .hero-swiper .swiper-wrapper .swiper-slide {
    height: 544px;
  }
}
.hero .hero-swiper .swiper-wrapper .swiper-slide .container .swipper-content {
  max-width: 925px;
  margin-top: 264px;
}
@media (max-width: 767px) {
  .hero .hero-swiper .swiper-wrapper .swiper-slide .container .swipper-content {
    margin-top: 120px;
  }
}
.hero .hero-swiper .swiper-wrapper .swiper-slide .container .swipper-content h2 {
  font-size: clamp(24px, 2.0833333333vw, 40px);
  line-height: 140%;
  margin-bottom: 24px;
}
.hero .hero-swiper .swiper-wrapper .swiper-slide .container .swipper-content p {
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 40px;
}

.page-company .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.page-company .card-list .card {
  width: 282px;
  height: 188px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(51, 51, 51, 0.1);
  padding: 24px 16px;
}
.page-company .card-list .card h4 {
  color: rgb(33, 159, 214);
  margin-bottom: 24px;
}
.page-company .card-list .card p {
  font-size: 16px;
}

.articles .container .posts-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .articles .container .posts-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .articles .container .posts-list {
    flex-direction: column;
    gap: 16px;
  }
}
.articles .container .posts-list .post-item {
  width: 384px;
  height: auto;
  border-radius: 8px;
  background-color: rgb(248, 251, 253);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .articles .container .posts-list .post-item {
    margin-bottom: 0;
    width: 100%;
  }
}
.articles .container .posts-list .post-item img {
  width: auto;
  height: 264px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.articles .container .posts-list .post-item .inner {
  padding: 16px;
}
.articles .container .posts-list .post-item .inner .post-content {
  border-bottom: 1px solid rgb(172, 172, 172);
}
.articles .container .posts-list .post-item .inner .post-content h4 {
  margin-bottom: 16px;
}
.articles .container .posts-list .post-item .inner .post-content p {
  margin-bottom: 16px;
}
.articles .container .posts-list .post-item .inner .next {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  color: rgb(33, 159, 214);
}

.service-list .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .service-list .post-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .service-list .post-list {
    flex-direction: column;
    gap: 16px;
  }
}
.service-list .post-list .post-item {
  width: 384px;
  height: auto;
  border-radius: 8px;
  background-color: rgb(248, 251, 253);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .service-list .post-list .post-item {
    margin-bottom: 0;
    width: 100%;
  }
}
.service-list .post-list .post-item img {
  width: auto;
  height: 264px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.service-list .post-list .post-item .inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-list .post-list .post-item .inner .post-content {
  border-bottom: 1px solid rgb(172, 172, 172);
}
.service-list .post-list .post-item .inner .post-content h4 {
  margin-bottom: 16px;
}
.service-list .post-list .post-item .inner .post-content p {
  margin-bottom: 16px;
}
.service-list .post-list .post-item .inner .next {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  color: rgb(33, 159, 214);
}

.page-single .content img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.page-service .intro-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 64px;
}
.page-service .intro-inner p {
  width: calc(50% - 12px);
  height: auto;
}
.page-service .intro-inner img {
  width: calc(50% - 12px);
  height: auto;
}
.page-service .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-service .services .card {
  gap: 24px;
  width: calc(50% - 64px);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-service .services .card {
    width: 100%;
  }
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.card-list .card {
  width: 282px;
  height: 188px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(51, 51, 51, 0.1);
  padding: 24px 16px;
}
.card-list .card h4 {
  color: rgb(33, 159, 214);
  margin-bottom: 24px;
}
.card-list .card p {
  font-size: 16px;
}

.page-contacts .contacts {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .page-contacts .contacts {
    flex-direction: column;
  }
}
.page-contacts .contacts .contacts-block {
  width: 384px;
  height: auto;
  padding: 32px 20px;
  border-radius: 8px;
  background-color: rgb(66, 66, 66);
  color: rgb(248, 251, 253);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .page-contacts .contacts .contacts-block {
    width: 100%;
    padding: 30px 20px;
  }
}
.page-contacts .contacts .contacts-block .tel, .page-contacts .contacts .contacts-block .email, .page-contacts .contacts .contacts-block .address, .page-contacts .contacts .contacts-block .mess, .page-contacts .contacts .contacts-block .footer__logo-time {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}
.page-contacts .contacts .contacts-block .tel span, .page-contacts .contacts .contacts-block .email span, .page-contacts .contacts .contacts-block .address span, .page-contacts .contacts .contacts-block .mess span, .page-contacts .contacts .contacts-block .footer__logo-time span {
  font-weight: 500;
}
.page-contacts .contacts .contacts-block .tel .footer__tel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-contacts .contacts .contacts-block .tel a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-contacts .contacts .contacts-block .email a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-contacts .contacts .contacts-block .mess .footer__socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.page-contacts .contacts .contacts-block .address p {
  line-height: 1.4;
}
.page-contacts .contacts .contacts-map {
  width: 792px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .page-contacts .contacts .contacts-map {
    width: 100%;
  }
}
.page-contacts .contacts .contacts-map iframe {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .page-contacts .contacts .contacts-map iframe {
    height: 379px;
  }
}/*# sourceMappingURL=styles.css.map */