@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --xxl: 1599px;
  --xl: 1199px;
  --lg: 991px;
  --md: 767px;
  --sm: 360px;
  --es: 320px;
  --max-container: 1170px;
  --scrollbar-width: 15px;
  --color-white: #fff;
  --color-black: #000;
  --color-accent: #f8c220;
  --color-dark-1: #38424b;
  --color-gray-1: #edeff1;
  --color-gray-2: #e6e6e6;
  --color-gray-3: #AFB1B3;
  --color-gray-4: #647c81;
  --body-color: #4E565A;
  --link-color:#23a1d1;
  --link-color-hover:#1d8ebb;
  --h-color:#000;
  --yellow: #FECC00;
  --btn-main-bg: #fff;
  --btn-main-bg-hover: #dadada;
  --btn-main-bg-focus: #fafafa;
  --btn-main-color: #000;
  --btn-main-color-hover: #000;
  --btn-main-color-focus: #000;
  --btn-dark-bg: #2F2F2F;
  --btn-dark-bg-hover: #4A4A4A;
  --btn-dark-bg-focus: #FECC00;
  --btn-dark-color: #E4E3DF;
  --btn-dark-color-hover: #E4E3DF;
  --btn-dark-color-focus: #fff;
  --btn-cart-bg: #2F2F2F;
  --btn-cart-bg-hover: #4A4A4A;
  --btn-cart-bg-focus: #FECC00;
  --btn-cart-color: #E4E3DF;
  --btn-cart-color-hover: #E4E3DF;
  --btn-cart-color-focus: #fff;
  --btn-catalog-bg: #FECC00;
  --btn-catalog-bg-hover: #FFDB4A;
  --btn-catalog-bg-focus: #677379;
  --btn-catalog-color: #fff;
  --btn-catalog-color-hover: #fff;
  --btn-catalog-color-focus: #fff;
  --btn-transparent-bg: none;
  --btn-transparent-bg-hover: #FECC00;
  --btn-transparent-bg-focus: #F4C81D;
  --btn-transparent-color: #fff;
  --btn-transparent-color-hover: #fff;
  --btn-transparent-color-focus: #fff;
  --btn-transparent-border: #C3D1D7;
  --btn-transparent-border-hover: #FECC00;
  --btn-transparent-border-focus: #F4C81D;
  --btn-search-bg: #96A7B1;
  --btn-search-bg-hover: #677379;
  --btn-search-bg-focus: #4B5357;
  --btn-search-color: #fff;
  --btn-search-color-hover: #fff;
  --btn-search-color-focus: #fff;
}

.mb1 {
  margin-bottom: 10px;
}

.mb2 {
  margin-bottom: 20px;
}

.mb3 {
  margin-bottom: 30px;
}

.mb4 {
  margin-bottom: 40px;
}

.mb5 {
  margin-bottom: 50px;
}

.mb6 {
  margin-bottom: 60px;
}

.mb7 {
  margin-bottom: 70px;
}

.mb8 {
  margin-bottom: 80px;
}

.mb9 {
  margin-bottom: 90px;
}

.mb10 {
  margin-bottom: 100px;
}

.mt1 {
  margin-top: 10px;
}

.mt2 {
  margin-top: 20px;
}

.mt3 {
  margin-top: 30px;
}

.mt4 {
  margin-top: 40px;
}

.mt5 {
  margin-top: 50px;
}

.mt6 {
  margin-top: 60px;
}

.mt7 {
  margin-top: 70px;
}

.mt8 {
  margin-top: 80px;
}

.mt9 {
  margin-top: 90px;
}

.mt10 {
  margin-top: 100px;
}

.pb1 {
  padding-bottom: 10px;
}

.pb2 {
  padding-bottom: 20px;
}

.pb3 {
  padding-bottom: 30px;
}

.pb4 {
  padding-bottom: 40px;
}

.pb5 {
  padding-bottom: 50px;
}

.pb6 {
  padding-bottom: 60px;
}

.pb7 {
  padding-bottom: 70px;
}

.pb8 {
  padding-bottom: 80px;
}

.pb9 {
  padding-bottom: 90px;
}

.pb10 {
  padding-bottom: 100px;
}

.pt1 {
  padding-top: 10px;
}

.pt2 {
  padding-top: 20px;
}

.pt3 {
  padding-top: 30px;
}

.pt4 {
  padding-top: 40px;
}

.pt5 {
  padding-top: 50px;
}

.pt6 {
  padding-top: 60px;
}

.pt7 {
  padding-top: 70px;
}

.pt8 {
  padding-top: 80px;
}

.pt9 {
  padding-top: 90px;
}

.pt10 {
  padding-top: 100px;
}

.pl1 {
  padding-left: 10px;
}

.pl2 {
  padding-left: 20px;
}

.pl3 {
  padding-left: 30px;
}

.pl4 {
  padding-left: 40px;
}

.pl5 {
  padding-left: 50px;
}

.pl6 {
  padding-left: 60px;
}

.pl7 {
  padding-left: 70px;
}

.pl8 {
  padding-left: 80px;
}

.pl9 {
  padding-left: 90px;
}

.pl10 {
  padding-left: 100px;
}

.pr1 {
  padding-right: 10px;
}

.pr2 {
  padding-right: 20px;
}

.pr3 {
  padding-right: 30px;
}

.pr4 {
  padding-right: 40px;
}

.pr5 {
  padding-right: 50px;
}

.pr6 {
  padding-right: 60px;
}

.pr7 {
  padding-right: 70px;
}

.pr8 {
  padding-right: 80px;
}

.pr9 {
  padding-right: 90px;
}

.pr10 {
  padding-right: 100px;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.mb-11 {
  margin-bottom: 110px !important;
}

.mb-12 {
  margin-bottom: 120px !important;
}

.mb-13 {
  margin-bottom: 130px !important;
}

.mb-14 {
  margin-bottom: 140px !important;
}

.mb-15 {
  margin-bottom: 150px !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mt-7 {
  margin-top: 70px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.mt-9 {
  margin-top: 90px !important;
}

.mt-10 {
  margin-top: 100px !important;
}

.mt-11 {
  margin-top: 110px !important;
}

.mt-12 {
  margin-top: 120px !important;
}

.mt-13 {
  margin-top: 130px !important;
}

.mt-14 {
  margin-top: 140px !important;
}

.mt-15 {
  margin-top: 150px !important;
}

.pb-1 {
  padding-bottom: 10px !important;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.pb-5 {
  padding-bottom: 50px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.pb-7 {
  padding-bottom: 70px !important;
}

.pb-8 {
  padding-bottom: 80px !important;
}

.pb-9 {
  padding-bottom: 90px !important;
}

.pb-10 {
  padding-bottom: 100px !important;
}

.pb-11 {
  padding-bottom: 110px !important;
}

.pb-12 {
  padding-bottom: 120px !important;
}

.pb-13 {
  padding-bottom: 130px !important;
}

.pb-14 {
  padding-bottom: 140px !important;
}

.pb-15 {
  padding-bottom: 150px !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.pt-4 {
  padding-top: 40px !important;
}

.pt-5 {
  padding-top: 50px !important;
}

.pt-6 {
  padding-top: 60px !important;
}

.pt-7 {
  padding-top: 70px !important;
}

.pt-8 {
  padding-top: 80px !important;
}

.pt-9 {
  padding-top: 90px !important;
}

.pt-10 {
  padding-top: 100px !important;
}

.pt-11 {
  padding-top: 110px !important;
}

.pt-12 {
  padding-top: 120px !important;
}

.pt-13 {
  padding-top: 130px !important;
}

.pt-14 {
  padding-top: 140px !important;
}

.pt-15 {
  padding-top: 150px !important;
}

.p-block-1 {
  padding-block: 10px !important;
}

.p-block-2 {
  padding-block: 20px !important;
}

.p-block-3 {
  padding-block: 30px !important;
}

.p-block-4 {
  padding-block: 40px !important;
}

.p-block-5 {
  padding-block: 50px !important;
}

.p-block-6 {
  padding-block: 60px !important;
}

.p-block-7 {
  padding-block: 70px !important;
}

.p-block-8 {
  padding-block: 80px !important;
}

.p-block-9 {
  padding-block: 90px !important;
}

.p-block-10 {
  padding-block: 100px !important;
}

.p-block-11 {
  padding-block: 110px !important;
}

.p-block-12 {
  padding-block: 120px !important;
}

.p-block-13 {
  padding-block: 130px !important;
}

.p-block-14 {
  padding-block: 140px !important;
}

.p-block-15 {
  padding-block: 150px !important;
}

@media (min-width: 768px) {
  .mb-md-1 {
    margin-bottom: 10px !important;
  }
  .mb-md-2 {
    margin-bottom: 20px !important;
  }
  .mb-md-3 {
    margin-bottom: 30px !important;
  }
  .mb-md-4 {
    margin-bottom: 40px !important;
  }
  .mb-md-5 {
    margin-bottom: 50px !important;
  }
  .mb-md-6 {
    margin-bottom: 60px !important;
  }
  .mb-md-7 {
    margin-bottom: 70px !important;
  }
  .mb-md-8 {
    margin-bottom: 80px !important;
  }
  .mb-md-9 {
    margin-bottom: 90px !important;
  }
  .mb-md-10 {
    margin-bottom: 100px !important;
  }
  .mb-md-11 {
    margin-bottom: 110px !important;
  }
  .mb-md-12 {
    margin-bottom: 120px !important;
  }
  .mb-md-13 {
    margin-bottom: 130px !important;
  }
  .mb-md-14 {
    margin-bottom: 140px !important;
  }
  .mb-md-15 {
    margin-bottom: 150px !important;
  }
  .mt-md-1 {
    margin-top: 10px !important;
  }
  .mt-md-2 {
    margin-top: 20px !important;
  }
  .mt-md-3 {
    margin-top: 30px !important;
  }
  .mt-md-4 {
    margin-top: 40px !important;
  }
  .mt-md-5 {
    margin-top: 50px !important;
  }
  .mt-md-6 {
    margin-top: 60px !important;
  }
  .mt-md-7 {
    margin-top: 70px !important;
  }
  .mt-md-8 {
    margin-top: 80px !important;
  }
  .mt-md-9 {
    margin-top: 90px !important;
  }
  .mt-md-10 {
    margin-top: 100px !important;
  }
  .mt-md-11 {
    margin-top: 110px !important;
  }
  .mt-md-12 {
    margin-top: 120px !important;
  }
  .mt-md-13 {
    margin-top: 130px !important;
  }
  .mt-md-14 {
    margin-top: 140px !important;
  }
  .mt-md-15 {
    margin-top: 150px !important;
  }
  .pb-md-1 {
    padding-bottom: 10px !important;
  }
  .pb-md-2 {
    padding-bottom: 20px !important;
  }
  .pb-md-3 {
    padding-bottom: 30px !important;
  }
  .pb-md-4 {
    padding-bottom: 40px !important;
  }
  .pb-md-5 {
    padding-bottom: 50px !important;
  }
  .pb-md-6 {
    padding-bottom: 60px !important;
  }
  .pb-md-7 {
    padding-bottom: 70px !important;
  }
  .pb-md-8 {
    padding-bottom: 80px !important;
  }
  .pb-md-9 {
    padding-bottom: 90px !important;
  }
  .pb-md-10 {
    padding-bottom: 100px !important;
  }
  .pb-md-11 {
    padding-bottom: 110px !important;
  }
  .pb-md-12 {
    padding-bottom: 120px !important;
  }
  .pb-md-13 {
    padding-bottom: 130px !important;
  }
  .pb-md-14 {
    padding-bottom: 140px !important;
  }
  .pb-md-15 {
    padding-bottom: 150px !important;
  }
  .pt-md-1 {
    padding-top: 10px !important;
  }
  .pt-md-2 {
    padding-top: 20px !important;
  }
  .pt-md-3 {
    padding-top: 30px !important;
  }
  .pt-md-4 {
    padding-top: 40px !important;
  }
  .pt-md-5 {
    padding-top: 50px !important;
  }
  .pt-md-6 {
    padding-top: 60px !important;
  }
  .pt-md-7 {
    padding-top: 70px !important;
  }
  .pt-md-8 {
    padding-top: 80px !important;
  }
  .pt-md-9 {
    padding-top: 90px !important;
  }
  .pt-md-10 {
    padding-top: 100px !important;
  }
  .pt-md-11 {
    padding-top: 110px !important;
  }
  .pt-md-12 {
    padding-top: 120px !important;
  }
  .pt-md-13 {
    padding-top: 130px !important;
  }
  .pt-md-14 {
    padding-top: 140px !important;
  }
  .pt-md-15 {
    padding-top: 150px !important;
  }
  .p-block-md-1 {
    padding-block: 10px !important;
  }
  .p-block-md-2 {
    padding-block: 20px !important;
  }
  .p-block-md-3 {
    padding-block: 30px !important;
  }
  .p-block-md-4 {
    padding-block: 40px !important;
  }
  .p-block-md-5 {
    padding-block: 50px !important;
  }
  .p-block-md-6 {
    padding-block: 60px !important;
  }
  .p-block-md-7 {
    padding-block: 70px !important;
  }
  .p-block-md-8 {
    padding-block: 80px !important;
  }
  .p-block-md-9 {
    padding-block: 90px !important;
  }
  .p-block-md-10 {
    padding-block: 100px !important;
  }
  .p-block-md-11 {
    padding-block: 110px !important;
  }
  .p-block-md-12 {
    padding-block: 120px !important;
  }
  .p-block-md-13 {
    padding-block: 130px !important;
  }
  .p-block-md-14 {
    padding-block: 140px !important;
  }
  .p-block-md-15 {
    padding-block: 150px !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-1 {
    margin-bottom: 10px !important;
  }
  .mb-lg-2 {
    margin-bottom: 20px !important;
  }
  .mb-lg-3 {
    margin-bottom: 30px !important;
  }
  .mb-lg-4 {
    margin-bottom: 40px !important;
  }
  .mb-lg-5 {
    margin-bottom: 50px !important;
  }
  .mb-lg-6 {
    margin-bottom: 60px !important;
  }
  .mb-lg-7 {
    margin-bottom: 70px !important;
  }
  .mb-lg-8 {
    margin-bottom: 80px !important;
  }
  .mb-lg-9 {
    margin-bottom: 90px !important;
  }
  .mb-lg-10 {
    margin-bottom: 100px !important;
  }
  .mb-lg-11 {
    margin-bottom: 110px !important;
  }
  .mb-lg-12 {
    margin-bottom: 120px !important;
  }
  .mb-lg-13 {
    margin-bottom: 130px !important;
  }
  .mb-lg-14 {
    margin-bottom: 140px !important;
  }
  .mb-lg-15 {
    margin-bottom: 150px !important;
  }
  .mt-lg-1 {
    margin-top: 10px !important;
  }
  .mt-lg-2 {
    margin-top: 20px !important;
  }
  .mt-lg-3 {
    margin-top: 30px !important;
  }
  .mt-lg-4 {
    margin-top: 40px !important;
  }
  .mt-lg-5 {
    margin-top: 50px !important;
  }
  .mt-lg-6 {
    margin-top: 60px !important;
  }
  .mt-lg-7 {
    margin-top: 70px !important;
  }
  .mt-lg-8 {
    margin-top: 80px !important;
  }
  .mt-lg-9 {
    margin-top: 90px !important;
  }
  .mt-lg-10 {
    margin-top: 100px !important;
  }
  .mt-lg-11 {
    margin-top: 110px !important;
  }
  .mt-lg-12 {
    margin-top: 120px !important;
  }
  .mt-lg-13 {
    margin-top: 130px !important;
  }
  .mt-lg-14 {
    margin-top: 140px !important;
  }
  .mt-lg-15 {
    margin-top: 150px !important;
  }
  .pb-lg-1 {
    padding-bottom: 10px !important;
  }
  .pb-lg-2 {
    padding-bottom: 20px !important;
  }
  .pb-lg-3 {
    padding-bottom: 30px !important;
  }
  .pb-lg-4 {
    padding-bottom: 40px !important;
  }
  .pb-lg-5 {
    padding-bottom: 50px !important;
  }
  .pb-lg-6 {
    padding-bottom: 60px !important;
  }
  .pb-lg-7 {
    padding-bottom: 70px !important;
  }
  .pb-lg-8 {
    padding-bottom: 80px !important;
  }
  .pb-lg-9 {
    padding-bottom: 90px !important;
  }
  .pb-lg-10 {
    padding-bottom: 100px !important;
  }
  .pb-lg-11 {
    padding-bottom: 110px !important;
  }
  .pb-lg-12 {
    padding-bottom: 120px !important;
  }
  .pb-lg-13 {
    padding-bottom: 130px !important;
  }
  .pb-lg-14 {
    padding-bottom: 140px !important;
  }
  .pb-lg-15 {
    padding-bottom: 150px !important;
  }
  .pt-lg-1 {
    padding-top: 10px !important;
  }
  .pt-lg-2 {
    padding-top: 20px !important;
  }
  .pt-lg-3 {
    padding-top: 30px !important;
  }
  .pt-lg-4 {
    padding-top: 40px !important;
  }
  .pt-lg-5 {
    padding-top: 50px !important;
  }
  .pt-lg-6 {
    padding-top: 60px !important;
  }
  .pt-lg-7 {
    padding-top: 70px !important;
  }
  .pt-lg-8 {
    padding-top: 80px !important;
  }
  .pt-lg-9 {
    padding-top: 90px !important;
  }
  .pt-lg-10 {
    padding-top: 100px !important;
  }
  .pt-lg-11 {
    padding-top: 110px !important;
  }
  .pt-lg-12 {
    padding-top: 120px !important;
  }
  .pt-lg-13 {
    padding-top: 130px !important;
  }
  .pt-lg-14 {
    padding-top: 140px !important;
  }
  .pt-lg-15 {
    padding-top: 150px !important;
  }
  .p-block-lg-1 {
    padding-block: 10px !important;
  }
  .p-block-lg-2 {
    padding-block: 20px !important;
  }
  .p-block-lg-3 {
    padding-block: 30px !important;
  }
  .p-block-lg-4 {
    padding-block: 40px !important;
  }
  .p-block-lg-5 {
    padding-block: 50px !important;
  }
  .p-block-lg-6 {
    padding-block: 60px !important;
  }
  .p-block-lg-7 {
    padding-block: 70px !important;
  }
  .p-block-lg-8 {
    padding-block: 80px !important;
  }
  .p-block-lg-9 {
    padding-block: 90px !important;
  }
  .p-block-lg-10 {
    padding-block: 100px !important;
  }
  .p-block-lg-11 {
    padding-block: 110px !important;
  }
  .p-block-lg-12 {
    padding-block: 120px !important;
  }
  .p-block-lg-13 {
    padding-block: 130px !important;
  }
  .p-block-lg-14 {
    padding-block: 140px !important;
  }
  .p-block-lg-15 {
    padding-block: 150px !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-1 {
    margin-bottom: 10px !important;
  }
  .mb-xl-2 {
    margin-bottom: 20px !important;
  }
  .mb-xl-3 {
    margin-bottom: 30px !important;
  }
  .mb-xl-4 {
    margin-bottom: 40px !important;
  }
  .mb-xl-5 {
    margin-bottom: 50px !important;
  }
  .mb-xl-6 {
    margin-bottom: 60px !important;
  }
  .mb-xl-7 {
    margin-bottom: 70px !important;
  }
  .mb-xl-8 {
    margin-bottom: 80px !important;
  }
  .mb-xl-9 {
    margin-bottom: 90px !important;
  }
  .mb-xl-10 {
    margin-bottom: 100px !important;
  }
  .mb-xl-11 {
    margin-bottom: 110px !important;
  }
  .mb-xl-12 {
    margin-bottom: 120px !important;
  }
  .mb-xl-13 {
    margin-bottom: 130px !important;
  }
  .mb-xl-14 {
    margin-bottom: 140px !important;
  }
  .mb-xl-15 {
    margin-bottom: 150px !important;
  }
  .mt-xl-1 {
    margin-top: 10px !important;
  }
  .mt-xl-2 {
    margin-top: 20px !important;
  }
  .mt-xl-3 {
    margin-top: 30px !important;
  }
  .mt-xl-4 {
    margin-top: 40px !important;
  }
  .mt-xl-5 {
    margin-top: 50px !important;
  }
  .mt-xl-6 {
    margin-top: 60px !important;
  }
  .mt-xl-7 {
    margin-top: 70px !important;
  }
  .mt-xl-8 {
    margin-top: 80px !important;
  }
  .mt-xl-9 {
    margin-top: 90px !important;
  }
  .mt-xl-10 {
    margin-top: 100px !important;
  }
  .mt-xl-11 {
    margin-top: 110px !important;
  }
  .mt-xl-12 {
    margin-top: 120px !important;
  }
  .mt-xl-13 {
    margin-top: 130px !important;
  }
  .mt-xl-14 {
    margin-top: 140px !important;
  }
  .mt-xl-15 {
    margin-top: 150px !important;
  }
  .pb-xl-1 {
    padding-bottom: 10px !important;
  }
  .pb-xl-2 {
    padding-bottom: 20px !important;
  }
  .pb-xl-3 {
    padding-bottom: 30px !important;
  }
  .pb-xl-4 {
    padding-bottom: 40px !important;
  }
  .pb-xl-5 {
    padding-bottom: 50px !important;
  }
  .pb-xl-6 {
    padding-bottom: 60px !important;
  }
  .pb-xl-7 {
    padding-bottom: 70px !important;
  }
  .pb-xl-8 {
    padding-bottom: 80px !important;
  }
  .pb-xl-9 {
    padding-bottom: 90px !important;
  }
  .pb-xl-10 {
    padding-bottom: 100px !important;
  }
  .pb-xl-11 {
    padding-bottom: 110px !important;
  }
  .pb-xl-12 {
    padding-bottom: 120px !important;
  }
  .pb-xl-13 {
    padding-bottom: 130px !important;
  }
  .pb-xl-14 {
    padding-bottom: 140px !important;
  }
  .pb-xl-15 {
    padding-bottom: 150px !important;
  }
  .pt-xl-1 {
    padding-top: 10px !important;
  }
  .pt-xl-2 {
    padding-top: 20px !important;
  }
  .pt-xl-3 {
    padding-top: 30px !important;
  }
  .pt-xl-4 {
    padding-top: 40px !important;
  }
  .pt-xl-5 {
    padding-top: 50px !important;
  }
  .pt-xl-6 {
    padding-top: 60px !important;
  }
  .pt-xl-7 {
    padding-top: 70px !important;
  }
  .pt-xl-8 {
    padding-top: 80px !important;
  }
  .pt-xl-9 {
    padding-top: 90px !important;
  }
  .pt-xl-10 {
    padding-top: 100px !important;
  }
  .pt-xl-11 {
    padding-top: 110px !important;
  }
  .pt-xl-12 {
    padding-top: 120px !important;
  }
  .pt-xl-13 {
    padding-top: 130px !important;
  }
  .pt-xl-14 {
    padding-top: 140px !important;
  }
  .pt-xl-15 {
    padding-top: 150px !important;
  }
  .p-block-xl-1 {
    padding-block: 10px !important;
  }
  .p-block-xl-2 {
    padding-block: 20px !important;
  }
  .p-block-xl-3 {
    padding-block: 30px !important;
  }
  .p-block-xl-4 {
    padding-block: 40px !important;
  }
  .p-block-xl-5 {
    padding-block: 50px !important;
  }
  .p-block-xl-6 {
    padding-block: 60px !important;
  }
  .p-block-xl-7 {
    padding-block: 70px !important;
  }
  .p-block-xl-8 {
    padding-block: 80px !important;
  }
  .p-block-xl-9 {
    padding-block: 90px !important;
  }
  .p-block-xl-10 {
    padding-block: 100px !important;
  }
  .p-block-xl-11 {
    padding-block: 110px !important;
  }
  .p-block-xl-12 {
    padding-block: 120px !important;
  }
  .p-block-xl-13 {
    padding-block: 130px !important;
  }
  .p-block-xl-14 {
    padding-block: 140px !important;
  }
  .p-block-xl-15 {
    padding-block: 150px !important;
  }
}
@media (min-width: 1600px) {
  .mb-xxl-1 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-2 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-3 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-4 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-5 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-6 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-7 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-8 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-9 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 100px !important;
  }
  .mb-xxl-11 {
    margin-bottom: 110px !important;
  }
  .mb-xxl-12 {
    margin-bottom: 120px !important;
  }
  .mb-xxl-13 {
    margin-bottom: 130px !important;
  }
  .mb-xxl-14 {
    margin-bottom: 140px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 150px !important;
  }
  .mt-xxl-1 {
    margin-top: 10px !important;
  }
  .mt-xxl-2 {
    margin-top: 20px !important;
  }
  .mt-xxl-3 {
    margin-top: 30px !important;
  }
  .mt-xxl-4 {
    margin-top: 40px !important;
  }
  .mt-xxl-5 {
    margin-top: 50px !important;
  }
  .mt-xxl-6 {
    margin-top: 60px !important;
  }
  .mt-xxl-7 {
    margin-top: 70px !important;
  }
  .mt-xxl-8 {
    margin-top: 80px !important;
  }
  .mt-xxl-9 {
    margin-top: 90px !important;
  }
  .mt-xxl-10 {
    margin-top: 100px !important;
  }
  .mt-xxl-11 {
    margin-top: 110px !important;
  }
  .mt-xxl-12 {
    margin-top: 120px !important;
  }
  .mt-xxl-13 {
    margin-top: 130px !important;
  }
  .mt-xxl-14 {
    margin-top: 140px !important;
  }
  .mt-xxl-15 {
    margin-top: 150px !important;
  }
  .pb-xxl-1 {
    padding-bottom: 10px !important;
  }
  .pb-xxl-2 {
    padding-bottom: 20px !important;
  }
  .pb-xxl-3 {
    padding-bottom: 30px !important;
  }
  .pb-xxl-4 {
    padding-bottom: 40px !important;
  }
  .pb-xxl-5 {
    padding-bottom: 50px !important;
  }
  .pb-xxl-6 {
    padding-bottom: 60px !important;
  }
  .pb-xxl-7 {
    padding-bottom: 70px !important;
  }
  .pb-xxl-8 {
    padding-bottom: 80px !important;
  }
  .pb-xxl-9 {
    padding-bottom: 90px !important;
  }
  .pb-xxl-10 {
    padding-bottom: 100px !important;
  }
  .pb-xxl-11 {
    padding-bottom: 110px !important;
  }
  .pb-xxl-12 {
    padding-bottom: 120px !important;
  }
  .pb-xxl-13 {
    padding-bottom: 130px !important;
  }
  .pb-xxl-14 {
    padding-bottom: 140px !important;
  }
  .pb-xxl-15 {
    padding-bottom: 150px !important;
  }
  .pt-xxl-1 {
    padding-top: 10px !important;
  }
  .pt-xxl-2 {
    padding-top: 20px !important;
  }
  .pt-xxl-3 {
    padding-top: 30px !important;
  }
  .pt-xxl-4 {
    padding-top: 40px !important;
  }
  .pt-xxl-5 {
    padding-top: 50px !important;
  }
  .pt-xxl-6 {
    padding-top: 60px !important;
  }
  .pt-xxl-7 {
    padding-top: 70px !important;
  }
  .pt-xxl-8 {
    padding-top: 80px !important;
  }
  .pt-xxl-9 {
    padding-top: 90px !important;
  }
  .pt-xxl-10 {
    padding-top: 100px !important;
  }
  .pt-xxl-11 {
    padding-top: 110px !important;
  }
  .pt-xxl-12 {
    padding-top: 120px !important;
  }
  .pt-xxl-13 {
    padding-top: 130px !important;
  }
  .pt-xxl-14 {
    padding-top: 140px !important;
  }
  .pt-xxl-15 {
    padding-top: 150px !important;
  }
  .p-block-xxl-1 {
    padding-block: 10px !important;
  }
  .p-block-xxl-2 {
    padding-block: 20px !important;
  }
  .p-block-xxl-3 {
    padding-block: 30px !important;
  }
  .p-block-xxl-4 {
    padding-block: 40px !important;
  }
  .p-block-xxl-5 {
    padding-block: 50px !important;
  }
  .p-block-xxl-6 {
    padding-block: 60px !important;
  }
  .p-block-xxl-7 {
    padding-block: 70px !important;
  }
  .p-block-xxl-8 {
    padding-block: 80px !important;
  }
  .p-block-xxl-9 {
    padding-block: 90px !important;
  }
  .p-block-xxl-10 {
    padding-block: 100px !important;
  }
  .p-block-xxl-11 {
    padding-block: 110px !important;
  }
  .p-block-xxl-12 {
    padding-block: 120px !important;
  }
  .p-block-xxl-13 {
    padding-block: 130px !important;
  }
  .p-block-xxl-14 {
    padding-block: 140px !important;
  }
  .p-block-xxl-15 {
    padding-block: 150px !important;
  }
}
.container {
  max-width: var(--max-container);
  padding-inline: 15px;
  margin-inline: auto;
}

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

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.accent {
  color: var(--color-accent);
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.check-mark {
  display: flex;
  column-gap: 10px;
}
.check-mark:before {
  content: "\f00c";
  color: var(--color-accent);
  font-family: "FontAwesome", sans-serif;
  font-size: 12px;
  line-height: 200%;
}

body {
  font-family: "Ubuntu", "Roboto", sans-serif;
  color: var(--color-dark-1);
}

a {
  color: inherit;
}
a:hover {
  color: var(--color-accent);
}
a[class] {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

h2 {
  font-family: "Roboto", "Ubuntu", sans-serif;
  font-size: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-family: "Roboto", "Ubuntu", sans-serif;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  h3 {
    font-size: 22px;
  }
}

:focus-visible {
  outline: 2px dashed var(--color-black);
  outline-offset: 4px;
  transition-duration: 0s !important;
}

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

.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .header__body {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .header__body {
    flex-direction: row;
  }
}
.header__image {
  padding-block: 15px;
}
.header__image img {
  width: 323px;
}
.header__burger-menu {
  display: none;
  width: 50px;
  height: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.header__burger-menu span {
  height: 4px;
  width: 50%;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .header .header__burger-menu {
    display: flex;
  }
}
.header__mobile-nav {
  display: none;
}
.header__mobile-nav.is-open {
  display: block;
}
.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
}
.header__mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.header__mobile-nav-item a {
  font-weight: 700;
}
.header__mobile-nav-link.is-active {
  color: var(--color-accent);
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
}
@media (max-width: 992px) {
  .header__nav-list {
    justify-content: space-between;
  }
}
.header__nav-item:has(.header__nav-nested) {
  position: relative;
}
.header__nav-item:has(.header__nav-nested) .header__nav-link {
  display: flex;
  column-gap: 5px;
}
.header__nav-item:has(.header__nav-nested) .header__nav-link:after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 14px;
  display: inline-block;
}
.header__nav-item:has(.header__nav-nested):hover .header__nav-nested {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__nav-item:has(.header__nav-nested):hover .header__nav-nested .header__nav-link:after {
  content: none;
}
.header__nav-item:has(.header__nav-nested):hover .header__nav-nested .header__nav-link.is-active {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.header__nav-item:has(.header__nav-nested):hover > .header__nav-link {
  color: var(--color-accent);
}
.header__nav-item:has(.header__nav-nested):hover > .header__nav-link span {
  border-color: var(--color-accent);
}
.header__nav-link {
  padding: 30px 20px;
  color: var(--color-dark-2);
  text-transform: uppercase;
  font-weight: 700;
}
.header__nav-link.is-active {
  color: var(--color-accent);
}
.header__nav-link span {
  border-bottom: 2px solid transparent;
  transition-duration: inherit;
}
.header__nav-link:not(.is-active):hover span {
  border-color: var(--color-accent);
}
.header__nav-nested {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.2s ease;
}
.header__nav-nested .header__nav-link {
  padding: 12px 20px;
  font-weight: 400;
  text-transform: none;
  color: var(--color-white);
  white-space: nowrap;
}
.header__nav-nested .header__nav-link:hover {
  background-color: #007cd5;
}

.footer {
  background-color: var(--color-dark-1);
  color: var(--color-white);
  padding-block: 40px;
}
.footer__inner {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__description {
  color: var(--color-gray-4);
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer__contacts-phone, .footer__contacts-email, .footer__contacts-address {
  display: flex;
  column-gap: 10px;
  color: var(--color-gray-3);
}
.footer__contacts-phone:before, .footer__contacts-email:before, .footer__contacts-address:before {
  color: var(--color-accent);
  font: normal normal normal 14px/1 FontAwesome;
  line-height: 200%;
}
.footer__contacts-phone a, .footer__contacts-email a, .footer__contacts-address a {
  text-decoration: none;
}
.footer__contacts-phone:before {
  content: "\f095";
}
.footer__contacts-email:before {
  content: "\f003";
}
.footer__contacts-address:before {
  content: "\f05a";
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  padding-inline: 15px;
  background: url("/images/hero/1.jpg") center/cover no-repeat;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  max-width: 520px;
  padding: 20px;
  color: var(--color-accent);
  background-color: rgba(0, 0, 0, 0.75);
}
@media (min-width: 768px) {
  .hero__inner {
    padding: 30px;
  }
}

.types {
  padding-block: 20px;
  background-color: var(--color-accent);
}
.types__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.types__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .types__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .types__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.types .card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-1);
}
.types .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding: 20px;
}
.types .card__description {
  flex: 1;
  font-size: 14px;
  text-align: center;
}

.swiper {
  width: 100%;
  padding-block: 20px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide a img {
  width: 100%;
}
.swiper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
}
.swiper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-white);
  opacity: 1;
}
.swiper .swiper-container .swiper-button-next, .swiper .swiper-container .swiper-button-prev {
  background-image: none;
}
.swiper .swiper-container .swiper-button-next:after, .swiper .swiper-container .swiper-button-prev:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 50px;
  line-height: 50px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
}
.swiper .swiper-container .swiper-button-next:hover:after, .swiper .swiper-container .swiper-button-prev:hover:after {
  opacity: 0.8;
}
.swiper .swiper-container .swiper-button-next {
  right: 30px;
}
.swiper .swiper-container .swiper-button-prev {
  left: 30px;
}
.swiper .swiper-container .swiper-button-prev:after {
  transform: rotate(180deg);
}

.work-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  padding-block: 20px;
}
.work-steps__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .work-steps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .work-steps__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.work-steps .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding: 30px;
  background-color: var(--color-gray-2);
}
.work-steps .card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-color: var(--color-accent);
  border-radius: 50%;
}
.work-steps .card__icon:before {
  font-family: "FontAwesome", sans-serif;
  font-size: 48px;
  color: var(--color-dark-1);
}
.work-steps .card__icon--message:before {
  content: "\f086";
}
.work-steps .card__icon--truck:before {
  content: "\f0d1";
}
.work-steps .card__icon--team:before {
  content: "\f0c0";
}
.work-steps .card__icon--like:before {
  content: "\f164";
}
.work-steps .card__body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.work-steps .card__description {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center;
}

.calculate {
  background-color: var(--color-accent);
  padding-block: 20px;
}
.calculate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.calculate__body {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 430px;
  background: url("/images/calculate/1.jpg") center/cover no-repeat;
  padding: 15px 36px 15px 15px;
}
.calculate__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding: 30px;
  font-weight: 700;
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .calculate__content {
    padding: 30px;
  }
}
.calculate__text {
  font-size: 22px;
}

.dogovor-offer__header {
  background-color: var(--color-dark-1);
  color: var(--color-white);
  padding-block: 20px;
}
.dogovor-offer__title {
  font-size: 22px;
}
.dogovor-offer__offer {
  font-size: 14px;
  line-height: 162%;
  color: var(--color-dark-1);
  padding-block: 30px;
}
.dogovor-offer .offer {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.dogovor-offer .offer__edition {
  text-align: end;
}
.dogovor-offer .offer__link {
  color: var(--color-accent);
}
.dogovor-offer .offer__link:hover {
  text-decoration: underline;
}
.dogovor-offer .offer__section-title {
  font-size: 14px;
  line-height: 162%;
  text-transform: uppercase;
}
.dogovor-offer .downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  padding-block: 20px;
  border-top: 1px solid var(--color-dark-1);
}
.dogovor-offer .downloads__title {
  text-transform: uppercase;
}
.dogovor-offer .downloads__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .dogovor-offer .downloads__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .dogovor-offer .downloads__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dogovor-offer .downloads__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dogovor-offer .downloads__item-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
  padding: 20px;
  background-color: var(--color-gray-1);
  text-transform: uppercase;
  font-size: 24px;
}
.dogovor-offer .downloads__item-top a {
  text-decoration: none;
}
.dogovor-offer .downloads__item-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: var(--color-gray-1);
}

.dogovor-form {
  background-color: var(--color-accent);
  padding-block: 50px;
}
.dogovor-form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.dogovor-form__title .white {
  color: var(--color-white);
}
.dogovor-form__form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
@media (min-width: 768px) {
  .dogovor-form__form {
    flex-direction: row;
  }
}
.dogovor-form__label {
  position: relative;
  width: 100%;
}
.dogovor-form__input {
  width: 100%;
  min-height: 42px;
  padding-inline: 15px 30px;
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid #e4e4e4;
}
.dogovor-form .error-text {
  position: absolute;
  top: -16px;
  left: 0;
  display: none;
  font-size: 12px;
  color: #D0021B;
}

.not-found-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  padding-block: 60px;
  color: var(--color-dark-1);
}
.not-found-404__title {
  font-size: 180px;
}
.not-found-404__subtitle {
  font-size: 40px;
  font-weight: 400;
  text-transform: none;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 78px);
  padding-inline: 15px;
  background: url("/images/hero/1.jpg") center/cover no-repeat;
}
@media (min-width: 992px) {
  .thanks {
    height: calc(100vh - 164px);
  }
}
@media (min-width: 768px) {
  .thanks {
    height: calc(100vh - 86px);
  }
}
.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  max-width: 520px;
  padding: 20px;
  color: var(--color-accent);
  background-color: rgba(0, 0, 0, 0.75);
}
@media (min-width: 768px) {
  .thanks__inner {
    padding: 30px;
  }
}
.thanks__title {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding-inline: 35px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
}
.btn:hover {
  background-color: var(--color-dark-1);
}
.btn--transparent {
  background-color: transparent;
  color: var(--color-dark-1);
  border: 2px solid var(--color-dark-1);
}
.btn--transparent:hover {
  border-color: transparent;
  background-color: var(--color-accent);
}
.btn--transparent-white {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-accent);
}
.btn--transparent-white:hover {
  color: var(--color-black);
  background-color: var(--color-white);
  border-color: transparent;
}
.btn--submit {
  height: 42px;
  text-transform: none;
  padding-inline: 20px;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid var(--color-white);
}
.btn--submit:hover {
  color: var(--color-dark-1);
  background-color: var(--color-white);
}

/* ===== Overlay ===== */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal--active {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* ===== Content ===== */
.modal__content {
  position: relative;
  max-width: 420px;
  width: calc(100% - 32px);
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px 30px;
}

/* ===== Close ===== */
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

/* ===== Title ===== */
.modal__title {
  margin: 0 0 28px;
  font-size: 40px;
  line-height: 1.2;
  color: #4a4a4a;
  text-align: left;
  text-transform: none;
  font-weight: 400;
}

/* ===== Form ===== */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: #7a7a7a;
}

.modal__label.is-error {
  color: #D0021B;
}

.modal__label.is-error .modal__input {
  border-color: #D0021B;
}

/* ===== Inputs ===== */
.modal__input {
  position: relative;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 2px solid #dedede;
  font-size: 16px;
  outline: none;
  transition-duration: 0.2s;
}
.modal__input:hover {
  border-color: #bbb;
}

.modal__input:focus {
  border-color: #78c67a;
}

/* ===== Error-text ===== */
.modal__error {
  display: none;
  font-size: 12px;
  color: #D0021B;
}

.error-text {
  position: absolute;
  top: -16px;
  left: 0;
  display: none;
  font-size: 12px;
  color: #D0021B;
}

.modal__info {
  margin-top: 6px;
  color: #ADADAD;
  font-size: 12px;
}

/* ===== Note ===== */
.modal__note {
  margin: 4px 0 8px;
  font-size: 15px;
  color: #b5b5b5;
}

/* ===== Button ===== */
.modal__submit {
  margin-top: 8px;
  height: 56px;
  border-radius: 12px;
  border: none;
  background: #3ED076;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.modal__submit:hover {
  background: #67da93;
}

.modal__success {
  text-align: center;
  font-size: 17px;
  color: #777;
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .modal__title {
    font-size: 28px;
  }
  .modal__content {
    padding: 24px;
  }
}
.feedBack {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.video__preview {
  all: unset;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}

.video__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent white;
}

.soundcloud-player {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.soundcloud-player iframe {
  width: 100%;
  border: none;
}

.upbutton {
  border: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}
.upbutton:after {
  content: "\f062";
  font-family: "FontAwesome", sans-serif;
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.upbutton.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.upbutton:hover {
  background: rgba(0, 0, 0, 0.8);
}

/*# sourceMappingURL=main.css.map */
