@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):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]) {
  margin-left: 0;
  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%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

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

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

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

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Xolonium";
  src: url("../../fonts/Xolonium-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blue: #2a63df;
  --color-blue-dark: #184bba;
  --color-gray: #d9d9d9;
  --color-gray-dark: #272727;
  --color-gray-mid: #8f8f8f;
  --color-gray-bg: #f8f8f8;
  --color-glass: rgba(85, 85, 85, 0.33);
  --font-family-base: "Inter", sans-serif;
  --font-family-alt: "Xolonium", sans-serif;
  --transition-duration: 0.3s;
  --100vw: calc(100vw - var(--scrollbar-width));
  --container-width: 111rem;
  --container-padding-x: 2.5rem;
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding-x: 1.25rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
.container--expand-end {
  max-width: calc(50% + (var(--container-width) + var(--container-padding-x) * 2) / 2);
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.container--expand-end > * {
  -webkit-margin-end: calc(-1 * var(--container-padding-x));
          margin-inline-end: calc(-1 * var(--container-padding-x));
}

.is-lock {
  overflow: hidden !important;
}

.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 (width <= 79.99875rem) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width > 79.99875rem) {
  .visible-laptop {
    display: none !important;
  }
}

@media (width <= 89.99875rem) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (width > 89.99875rem) {
  .visible-desktop {
    display: none !important;
  }
}

@media (width <= 63.99875rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 63.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 36.24875rem) {
  .hidden-mobile-s {
    display: none !important;
  }
}

@media (width > 36.24875rem) {
  .visible-mobile-s {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

button {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  color: var(--color-black);
  font-weight: 400;
}

p {
  --paragraphMarginBottom: 1.5rem;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 2.5rem;
  background-color: var(--color-glass);
  margin-bottom: 1.625rem;
}
@media (width <= 79.99875rem) {
  .language {
    margin-bottom: 0.5rem;
  }
}
.language__button {
  padding: 0;
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2.5rem;
  background-color: transparent;
  color: var(--color-gray-mid);
  text-transform: uppercase;
}
.language__button.active {
  background-color: var(--color-blue);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .language__button:hover {
    background-color: var(--color-blue-dark);
  }
}
@media (any-hover: none) {
  .language__button:active {
    background-color: var(--color-blue-dark);
  }
}

.blue-button {
  padding: 0;
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  text-transform: uppercase;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .blue-button {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (any-hover: hover) {
  .blue-button:hover {
    background-color: var(--color-blue-dark);
  }
}
@media (any-hover: none) {
  .blue-button:active {
    background-color: var(--color-blue-dark);
  }
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.custom-checkbox__input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.0625rem;
  border-radius: 0.3125rem;
  border: 0.0625rem solid var(--color-white);
  overflow: hidden;
  cursor: pointer;
}
@media (any-hover: hover) {
  .custom-checkbox__input:hover {
    border: 0.0625rem solid var(--color-gray);
  }
}
@media (any-hover: none) {
  .custom-checkbox__input:active {
    border: 0.0625rem solid var(--color-gray);
  }
}
.custom-checkbox__input::after {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.125rem;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.custom-checkbox__input:checked::after {
  background-image: url("../../icons/tick.svg");
}
.guarantee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-black);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.guarantee.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.guarantee__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.guarantee__inner {
  position: relative;
  width: 100%;
  max-width: 73.5rem;
  padding: 3rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  max-height: calc(100% - 2.5rem);
  overflow: auto;
}
@media (width <= 47.99875rem) {
  .guarantee__inner {
    padding: 1.5rem;
  }
}
.guarantee__title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.25rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-family: var(--font-family-alt);
}
@media (width <= 63.99875rem) {
  .guarantee__title {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (width <= 47.99875rem) {
  .guarantee__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.guarantee__text {
  margin-bottom: 1.5rem;
}
.guarantee__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .guarantee__subtitle {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.guarantee__close-button {
  padding: 0;
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 10000;
  color: var(--color-gray-mid);
}
.guarantee__close-button svg {
  width: 3rem;
  height: 3rem;
}
@media (any-hover: hover) {
  .guarantee__close-button:hover {
    color: var(--color-black);
  }
}
@media (any-hover: none) {
  .guarantee__close-button:active {
    color: var(--color-black);
  }
}
@media (width <= 63.99875rem) {
  .guarantee__close-button svg {
    width: 2.625rem;
    height: 2.625rem;
  }
}
@media (width <= 47.99875rem) {
  .guarantee__close-button {
    top: 1.5rem;
    right: 1.5rem;
  }
  .guarantee__close-button svg {
    width: 2rem;
    height: 2rem;
  }
}

.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  border-top: var(--border-gray);
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding-block: 3rem 4.5rem;
}
@media (width <= 63.99875rem) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 2rem;
    padding-block: 2rem 4rem;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 20.625rem;
}
@media (width <= 63.99875rem) {
  .footer__menu:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.footer__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.footer__text {
  margin-bottom: 1.5rem;
}
.footer__copy {
  color: var(--color-gray-mid);
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .footer__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.footer__button {
  padding: 0;
  background-color: transparent;
  border: none;
  color: var(--color-white);
  text-align: left;
}
@media (width <= 63.99875rem) {
  .footer__button {
    text-align: center;
  }
}

.hero {
  height: 100vh;
  min-height: 67.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../../images/hero-bg.png);
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../images/hero-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (width <= 79.99875rem) {
  .hero {
    min-height: 64rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../../images/hero-bg-tab.png);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../images/hero-bg-tab.png);
  }
}
@media (width <= 47.99875rem) {
  .hero {
    min-height: 35.5rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../../images/hero-bg-mob.png);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../images/hero-bg-mob.png);
  }
}
.hero__container {
  height: 100%;
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 1.5rem 4.5rem;
  gap: 1rem;
  height: 100%;
  margin: 0 auto;
}
@media (width <= 79.99875rem) {
  .hero__inner {
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__inner {
    padding-block: 1.5rem;
  }
}
@media (width <= 79.99875rem) {
  .hero__logo {
    height: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__logo {
    height: 1.75rem;
  }
}
.hero__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
@media (width <= 79.99875rem) {
  .hero__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2.625rem;
  max-width: 48.3125rem;
}
@media (width <= 79.99875rem) {
  .hero__top-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}
.hero__title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: 0.375rem;
  text-transform: uppercase;
  font-family: var(--font-family-alt);
}
@media (width <= 79.99875rem) {
  .hero__title {
    font-size: 3rem;
    line-height: 3.25rem;
    letter-spacing: 0.3125rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__title {
    font-size: 1.75rem;
    line-height: 2.25rem;
    letter-spacing: 0.1875rem;
  }
}
.hero__subtitle {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.625rem;
  text-align: left;
}
@media (width <= 79.99875rem) {
  .hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.875rem;
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.hero__slider {
  max-width: 39.375rem;
  margin: 0;
}
@media (width <= 79.99875rem) {
  .hero__slider {
    display: none;
  }
}
.hero__slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  color: var(--color-black);
}
.hero__slider-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.hero__slider-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: uppercase;
}
.hero__slider-item-buttons {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero__slider-item-button {
  padding: 0;
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .hero__slider-item-button:hover {
    background-color: var(--color-gray-dark);
  }
}
@media (any-hover: none) {
  .hero__slider-item-button:active {
    background-color: var(--color-gray-dark);
  }
}
.hero__bottom {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: start;
}
@media (width <= 79.99875rem) {
  .hero__bottom {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (width <= 47.99875rem) {
  .hero__bottom {
    display: none;
  }
}
.hero__bottom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 31.5rem;
  gap: 1.5rem;
  text-align: center;
}
@media (width <= 79.99875rem) {
  .hero__bottom-list {
    max-width: none;
  }
}
.hero__bottom-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  background-color: var(--color-glass);
  -webkit-backdrop-filter: blur(7.25px);
          backdrop-filter: blur(7.25px);
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}
@media (width <= 79.99875rem) {
  .hero__bottom-item-inner {
    padding: 1rem;
  }
}
.hero__bottom-item:last-child .hero__bottom-item-inner {
  background-color: var(--color-blue);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .hero__bottom-item:last-child .hero__bottom-item-inner:hover {
    background-color: var(--color-blue-dark);
  }
}
@media (any-hover: none) {
  .hero__bottom-item:last-child .hero__bottom-item-inner:active {
    background-color: var(--color-blue-dark);
  }
}
.hero__bottom-item-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
}
@media (width <= 79.99875rem) {
  .hero__bottom-item-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
  }
}
.hero__bottom-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (width <= 79.99875rem) {
  .hero__bottom-item-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}
.hero__bottom-item-text {
  line-height: 1.25rem;
  text-transform: uppercase;
}
@media (width <= 79.99875rem) {
  .hero__bottom-item-text {
    font-size: 0.875rem;
  }
}
.hero__button {
  display: none;
}
@media (width <= 47.99875rem) {
  .hero__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    width: 100%;
  }
}
.hero__notif {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background-color: var(--color-glass);
  -webkit-backdrop-filter: blur(0.453125rem);
          backdrop-filter: blur(0.453125rem);
  padding: 0.75rem 4.5rem 0.75rem 1.5rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: slideInNotif 0.8s ease-out forwards;
          animation: slideInNotif 0.8s ease-out forwards;
}
@media (width <= 79.99875rem) {
  .hero__notif {
    bottom: unset;
    top: 21.375rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__notif {
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    max-width: 95%;
    font-size: 1rem;
    line-height: 1.5rem;
    bottom: 5.75rem;
    top: unset;
  }
}
.hero__price {
  position: absolute;
  right: 4.5rem;
  bottom: 9.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #f8f8f8;
  font-family: var(--font-family-alt);
  font-weight: 700;
}
@media (width <= 79.99875rem) {
  .hero__price {
    bottom: 22.625rem;
    right: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__price {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 10.25rem;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.hero__price-full {
  font-size: 1.75rem;
  line-height: 2.125rem;
  position: relative;
}
.hero__price-full::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0.125rem;
  width: 100%;
  background-color: #d12a1b;
}
@media (width <= 47.99875rem) {
  .hero__price-full {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.hero__price-discount {
  font-size: 3.25rem;
  line-height: 3.875rem;
}
@media (width <= 47.99875rem) {
  .hero__price-discount {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.prefs {
  color: var(--color-black);
}
.prefs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
  padding-block: 4.5rem;
}
@media (width <= 63.99875rem) {
  .prefs__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .prefs__inner {
    padding-block: 2rem;
  }
}
.prefs__image {
  max-width: 50%;
}
@media (width <= 63.99875rem) {
  .prefs__image {
    display: none;
  }
}
.prefs__image img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prefs__image-tablet {
  display: none;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}
@media (width <= 63.99875rem) {
  .prefs__image-tablet {
    display: block;
  }
}
@media (width <= 47.99875rem) {
  .prefs__image-tablet {
    -o-object-fit: cover;
       object-fit: cover;
    height: 15rem;
  }
}
.prefs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.prefs__title {
  font-size: 2.625rem;
  line-height: 3.25rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-family-alt);
  margin-bottom: 0.5rem;
}
@media (width <= 63.99875rem) {
  .prefs__title {
    font-size: 2rem;
    line-height: 2.625rem;
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .prefs__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.prefs__subtitle {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .prefs__subtitle {
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .prefs__subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.prefs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.prefs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background-color: var(--color-gray-bg);
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .prefs__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.prefs__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.prefs__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.prefs__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.why {
  background-color: var(--color-black);
  color: var(--color-white);
}
.why__container {
  max-width: 120rem;
  margin-inline: auto;
}
.why__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  padding-block: 4.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width <= 79.99875rem) {
  .why__inner {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 3rem;
    padding-inline: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .why__inner {
    padding-block: 2rem;
    padding-inline: 1.25rem;
  }
}
.why__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.why__title {
  font-size: 2.625rem;
  line-height: 3.25rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-family-alt);
  margin-bottom: 0.5rem;
  padding-left: 4.5rem;
}
@media (width <= 79.99875rem) {
  .why__title {
    font-size: 2rem;
    line-height: 2.625rem;
    text-align: center;
    padding-left: 0;
  }
}
@media (width <= 47.99875rem) {
  .why__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.why__subtitle {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: auto;
  padding-left: 4.5rem;
}
@media (width <= 79.99875rem) {
  .why__subtitle {
    text-align: center;
    padding-left: 0;
    margin-bottom: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .why__subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
  }
}
.why__image {
  height: 35.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  margin-top: auto;
}
@media (width <= 79.99875rem) {
  .why__image {
    height: auto;
    -o-object-position: center;
       object-position: center;
    width: 100%;
  }
}
.why__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width <= 79.99875rem) {
  .why__right {
    width: 100%;
  }
}
.why__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.why__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.why__item:not(:last-child) {
  padding-bottom: 3rem;
  border-bottom: 0.0625rem solid var(--color-gray-mid);
}
@media (width <= 79.99875rem) {
  .why__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.why__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 3.25rem;
}
@media (width <= 47.99875rem) {
  .why__item-title {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .why__item-text {
    text-align: center;
  }
}
.why__button {
  -ms-flex-item-align: start;
      align-self: start;
  margin-top: 4.5rem;
}
@media (width <= 79.99875rem) {
  .why__button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (width <= 63.99875rem) {
  .why__button {
    width: 100%;
  }
}

.address {
  color: var(--color-black);
}
.address__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding-block: 4.5rem;
}
@media (width <= 63.99875rem) {
  .address__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .address__inner {
    padding-block: 2rem;
  }
}
.address__body {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width <= 63.99875rem) {
  .address__body {
    width: 100%;
  }
}
.address__title {
  font-size: 2.625rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 3.25rem;
  font-family: var(--font-family-alt);
  margin-bottom: 0.5rem;
}
@media (width <= 63.99875rem) {
  .address__title {
    text-align: center;
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (width <= 47.99875rem) {
  .address__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.address__subtitle {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .address__subtitle {
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .address__subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.address__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (width <= 47.99875rem) {
  .address__list {
    gap: 1rem;
  }
}
.address__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--color-gray-bg);
}
@media (width <= 47.99875rem) {
  .address__item {
    padding: 1.5rem;
    gap: 1rem;
  }
}
.address__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}
@media (width <= 47.99875rem) {
  .address__item-title {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .address__item-title-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.address__map {
  width: 100%;
  max-width: 72rem;
}
@media (width <= 63.99875rem) {
  .address__map {
    display: none;
  }
}
.address__map_tablet {
  display: none;
}
@media (width <= 63.99875rem) {
  .address__map_tablet {
    max-width: none;
    display: block;
    height: 30rem;
    margin-bottom: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .address__map_tablet {
    height: 20rem;
  }
}
.address__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1rem;
}

.test-drive {
  background-image: url(../../images/from-bg.png);
  background-position: center;
  background-size: cover;
  -webkit-backdrop-filter: blur(0.28125rem);
          backdrop-filter: blur(0.28125rem);
  position: relative;
}
.test-drive::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}
.test-drive__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 54.75rem;
  margin-inline: auto;
  padding-block: 4.5rem;
}
@media (width <= 63.99875rem) {
  .test-drive__inner {
    padding-block: 3.5rem;
  }
}
@media (width <= 47.99875rem) {
  .test-drive__inner {
    padding-block: 3rem;
  }
}
.test-drive__title {
  margin-bottom: 0.5rem;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.25rem;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-family-alt);
}
@media (width <= 63.99875rem) {
  .test-drive__title {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (width <= 47.99875rem) {
  .test-drive__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.test-drive__subtitle {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}
@media (width <= 47.99875rem) {
  .test-drive__subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}
.test-drive__form {
  position: relative;
  width: 100%;
  background-color: var(--color-glass);
  -webkit-backdrop-filter: blur(0.375rem);
          backdrop-filter: blur(0.375rem);
  padding: 2rem 4rem;
  border-radius: 1rem;
}
@media (width <= 47.99875rem) {
  .test-drive__form {
    padding: 1rem;
  }
}
.test-drive__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  opacity: 1;
  opacity: 1;
  visibility: visible;
}
.test-drive__form-inner.active {
  opacity: 0;
  opacity: 0;
  visibility: hidden;
}
.test-drive__form-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1rem;
}
@media (width <= 47.99875rem) {
  .test-drive__form-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.test-drive__form-button {
  width: 100%;
}
.test-drive__form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.test-drive__form-control span.error {
  margin-top: 0.25rem;
  color: rgb(236, 55, 55);
}
.test-drive__form-control.error {
  color: rgb(236, 55, 55);
}
.test-drive__form-control.error .test-drive__form-input {
  outline: 0.0625rem solid rgb(236, 55, 55);
}
.test-drive__form-label {
  margin-bottom: 0.5rem;
  color: currentColor;
}
.test-drive__form-input {
  padding: 0;
  background-color: transparent;
  border: none;
  padding: 0.75rem 0.875rem;
  border-radius: 1rem;
  background-color: var(--color-white);
}
.test-drive__form-input_date {
  background-image: url(../../icons/calendar.svg);
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
}
.test-drive__form-input_date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0;
  z-index: 3;
}
.test-drive__form-input_textarea {
  min-height: 8.75rem;
}
@media (width <= 47.99875rem) {
  .test-drive__form-input {
    padding: 0.5625rem 0.875rem;
  }
}
.test-drive__form-input::-webkit-input-placeholder {
  color: var(--color-gray-mid);
}
.test-drive__form-input::-moz-placeholder {
  color: var(--color-gray-mid);
}
.test-drive__form-input:-ms-input-placeholder {
  color: var(--color-gray-mid);
}
.test-drive__form-input::-ms-input-placeholder {
  color: var(--color-gray-mid);
}
.test-drive__form-input::placeholder {
  color: var(--color-gray-mid);
}
.test-drive__form-checkbox {
  -ms-flex-item-align: start;
      align-self: start;
  margin-bottom: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.test-drive__form-checkbox span.error {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: rgb(236, 55, 55);
}
.test-drive__form-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-glass);
  border-radius: 1rem;
  opacity: 0;
  opacity: 0;
  visibility: hidden;
}
.test-drive__form-success.active {
  opacity: 0;
  opacity: 1;
  visibility: visible;
}
.test-drive__form-success-icon {
  margin-bottom: 2rem;
}
@media (width <= 47.99875rem) {
  .test-drive__form-success-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
}
.test-drive__form-success-title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.25rem;
  text-transform: uppercase;
  font-family: var(--font-family-alt);
  text-align: center;
}
@media (width <= 63.99875rem) {
  .test-drive__form-success-title {
    margin-bottom: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .test-drive__form-success-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}
.test-drive__form-success-text {
  font-size: 1.25rem;
  line-height: 2rem;
  max-width: 32.6875rem;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .test-drive__form-success-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.request {
  color: var(--color-black);
}
.request__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 4.5rem;
}
@media (width <= 63.99875rem) {
  .request__inner {
    padding-block: 3rem;
  }
}
.request__title {
  margin-bottom: 0.5rem;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 3.25rem;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-family-alt);
}
@media (width <= 63.99875rem) {
  .request__title {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (width <= 47.99875rem) {
  .request__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.request__subtitle {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 3rem;
}
@media (width <= 63.99875rem) {
  .request__subtitle {
    margin-bottom: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .request__subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.request__list {
  max-width: 81.25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (width <= 63.99875rem) {
  .request__list {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
}
.request__item {
  padding: 1rem;
  background-color: var(--color-blue);
  border-radius: 1rem;
  color: var(--color-white);
}
.request__item-num {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media (width <= 63.99875rem) {
  .request__item-num {
    margin-bottom: 2rem;
  }
}
.request__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 1rem;
}
@media (width <= 47.99875rem) {
  .request__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
}

@-webkit-keyframes slideInNotif {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideInNotif {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}/*# sourceMappingURL=index.css.map */