@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  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%;
  /**
   Убираем скачок интерфейса по горизонтали
   при появлении / исчезновении скроллбара
  */
  scrollbar-gutter: stable;
}

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

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

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

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

/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут fill со значением 'none' или начинается с 'url')
  */
/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут stroke со значением 'none')
  */
/**
   Чиним баг задержки смены цвета при взаимодействии с 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;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  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-Medium.woff2") format("woff2");
  font-weight: 500;
  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/InterBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-base: #f8f8f8;
  --color-light: #FFFFFF;
  --color-input-form: #cecece;
  --color-gray: #1e1e1e;
  --color-light-gray: #D9D9D9;
  --color-notes: #a3a3a3;
  --color-line: #6b6b6b;
  --color-blue: #0063c7;
  --color-accent: #003366;
  --font-family-base: "Montserrat",
      sans-serif;
  --font-family-accent: "Inter",
      sans-serif;
  --container-width: 102.5rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.4s;
  --box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.05);
  --100vw: calc(100vw - var(--scrollbar-width));
  --header-height: 130px;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}
@media (width <= 63.99875rem) {
  :root {
    --container-padding-x: 2rem;
    --header-height: 80px;
  }
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding-x: 1.5rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

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

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

body.no-scroll {
  overflow: hidden;
}

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

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

.wow {
  opacity: 0;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.wow[style*="visibility: visible;"] {
  opacity: 1;
}

body {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  color: var(--color-gray);
  background-color: var(--color-base);
}
@media (width <= 63.99875rem) {
  body {
    font-size: 18px;
  }
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h6,
.h6 {
  color: var(--color-gray);
}

h4,
.h4,
h6,
.h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(1.3333333333rem, 1rem + 1.6666666667vw, 2.7777777778rem);
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

h2,
.h2 {
  font-size: 2.625rem;
  text-transform: uppercase;
  line-height: 1.4;
}
@media (width <= 63.99875rem) {
  h2,
  .h2 {
    font-size: 2.25rem;
  }
}
@media (width <= 47.99875rem) {
  h2,
  .h2 {
    font-size: 1.625rem;
  }
}

.h1 span,
.h2 span {
  color: var(--color-blue);
}

.h1 span.cargo-types__item-tag,
.h2 span.cargo-types__item-tag {
  color: var(--color-light);
  font-size: clamp(1.3333333333rem, 1rem + 1.6666666667vw, 2.7777777778rem);
  padding: 10px 24px;
}

@media (width <= 47.9988rem) {
.h1 span.cargo-types__item-tag,
.h2 span.cargo-types__item-tag {
    margin: 0 auto;
    display: block;
}
}

h3,
.h3 {
  font-size: 2.25rem;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 700;
}
@media (width <= 63.99875rem) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}
@media (width <= 47.99875rem) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

h4,
.h4 {
  font-size: 1.5rem;
  font-family: var(--font-family-accent);
  font-weight: 700;
  color: var(--color-light);
}
@media (width <= 63.99875rem) {
  h4,
  .h4 {
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media (width <= 47.99875rem) {
  h4,
  .h4 {
    font-size: 0.875rem;
  }
}

h6,
.h6 {
  font-size: clamp(0.8888888889rem, 0.8376068376rem + 0.2564102564vw, 1.1111111111rem);
}

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

button,
button:active,
button:focus {
  border: none;
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-blue);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-blue);
  }
}
a[class] {
  text-decoration: none;
}

.section {
  padding-bottom: 150px;
}
@media (width <= 63.99875rem) {
  .section {
    padding-bottom: 130px;
  }
}
@media (width <= 47.99875rem) {
  .section {
    padding-bottom: 100px;
  }
}

.header-block {
  display: grid;
  row-gap: 30px;
  margin-bottom: 100px;
}
@media (width <= 47.99875rem) {
  .header-block {
    row-gap: 20px;
    margin-bottom: 75px;
  }
}

.header-block-on {
  margin-bottom: 100px;
}
@media (width <= 47.99875rem) {
  .header-block-on {
    margin-bottom: 75px;
  }
}

.desc {
  color: var(--color-notes);
}
@media (width <= 63.99875rem) {
  .desc {
    font-size: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .desc {
    font-size: 1.125rem;
  }
}

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

:focus-visible {
  outline: 0.125rem solid transparent;
  transition-duration: 0s !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
  transition: background-image 0.2s ease-in-out;
}
.icon::after {
  --size: 2.1875rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon--right-arrow::after {
  background-image: url("./../icons/arrow.svg");
}

.icon-close::after {
  --size: 2.8125rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-image: url("./../icons/close.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 47.99875rem) {
  .icon-close::after {
    --size: 1.875rem;
  }
}

.button-calc .icon::after {
  --size: 2.8125rem;
  width: var(--size);
  height: var(--size);
}

.icon-close1 {
  --size: 2.8125rem;
  --transition-duration: 0.4s;
  --transition-easing: ease-in-out;
  width: var(--size);
  height: var(--size);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--color-blue);
  cursor: pointer;
  transition: background-color var(--transition-duration) var(--transition-easing), transform 0.2s ease;
}
.icon-close1 svg {
  width: 17px;
  height: 17px;
  will-change: transform;
}
.icon-close1 svg path {
  stroke: var(--color-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-duration) var(--transition-easing);
}
@media (any-hover: hover) {
  .icon-close1:hover {
    background-color: var(--color-accent);
  }
  .icon-close1:hover svg path {
    stroke: var(--color-light);
    transition-delay: 0s;
  }
}
@media (any-hover: none) {
  .icon-close1:active {
    background-color: var(--color-accent);
  }
  .icon-close1:active svg path {
    stroke: var(--color-light);
    transition-delay: 0s;
  }
}
.icon-close1:active {
  transform: scale(0.95);
}

.icon-arrow {
  --size: 2.8125rem;
  width: var(--size);
  height: var(--size);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--color-light);
  /* Градиент для анимации заливки */
  background-image: linear-gradient(var(--color-blue), var(--color-blue));
  background-repeat: no-repeat;
  transition: background-size 0.4s ease-in-out, color 0.4s ease-in-out;
  cursor: pointer;
}
@media (any-hover: hover) {
  .icon-arrow:hover {
    background-size: 100% 100%;
  }
  .icon-arrow:hover svg path {
    stroke: var(--color-light);
  }
}
@media (any-hover: none) {
  .icon-arrow:active {
    background-size: 100% 100%;
  }
  .icon-arrow:active svg path {
    stroke: var(--color-light);
  }
}
.icon-arrow svg {
  transition: stroke 0.4s ease-in-out;
}

.hover-circle {
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.hover-circle::before {
  content: "";
  position: absolute;
  background-color: var(--color-blue);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
@media (width <= 63.99875rem) {
  .hover-circle::before {
    display: none;
  }
}
@media (any-hover: hover) {
  .hover-circle:hover {
    color: var(--color-light);
  }
  .hover-circle:hover h3 {
    color: var(--color-light);
  }
}
@media (any-hover: hover) and (width <= 63.99875rem) {
  .hover-circle:hover h3 {
    color: inherit;
  }
}
@media (any-hover: hover) and (width <= 63.99875rem) {
  .hover-circle:hover {
    color: inherit;
  }
}
@media (any-hover: none) {
  .hover-circle:active {
    color: var(--color-light);
  }
  .hover-circle:active h3 {
    color: var(--color-light);
  }
}
@media (any-hover: none) and (width <= 63.99875rem) {
  .hover-circle:active h3 {
    color: inherit;
  }
}
@media (any-hover: none) and (width <= 63.99875rem) {
  .hover-circle:active {
    color: inherit;
  }
}

.hover-circle-top::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-top-right-radius: 150%;
  border-top-left-radius: 150%;
}
.hover-circle-top:hover::before {
  height: 100%;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.hover-circle-left::before {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.hover-circle-left:hover::before {
  width: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.to-left {
  background-position: 100% 50%;
}

.to-right {
  background-position: 0% 50%;
}

.to-top {
  background-position: 50% 100%;
}

.to-bottom {
  background-position: 50% 0%;
}

.to-left,
.to-right {
  background-size: 0% 100%;
}

.to-top {
  background-size: 100% 0%;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  min-width: max-content;
  max-height: max-content;
  padding: 7px 7px 7px 20px;
  font-family: var(--font-family-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-light);
  white-space: nowrap;
  background-color: var(--color-blue);
  border-radius: 10px;
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.2s, color 0.2s ease-in-out;
}
.button:hover {
  background-size: 100% 100%;
  color: var(--color-light-gray);
}
@media (width <= 47.99875rem) {
  .button {
    font-size: 18px;
  }
}

/*---------HEADER (START)--------*/
.full-content {
  display: none;
}

.header__wrap {
  z-index: 100;
  position: sticky;
  top: 0;
  height: 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.2s ease-out, opacity 0.2s ease;
}

.header__wrap.visible {
  transform: translateY(0);
  opacity: 1;
}

.header {
  backdrop-filter: blur(20px);
  background-color: rgba(248, 248, 248, 0.9);
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}
.header__top {
  padding-block: 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-light-gray);
  transition: border-bottom 0s ease-in-out;
}
@media (width <= 63.99875rem) {
  .header__top {
    padding-block: 22px;
  }
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  margin-right: auto;
}
@media (width <= 63.99875rem) {
  .header__logo {
    width: 118px;
    height: 26px;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (width <= 63.99875rem) {
  .header__mail {
    display: none;
  }
}
.header__phone {
  align-items: center;
  padding-inline: 24px;
  height: 37px;
  background-color: var(--color-blue);
  color: var(--color-light);
  border-radius: 10px;
  font-weight: 500;
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.2s, color 0.2s ease-in-out;
}
@media (width <= 63.99875rem) {
  .header__phone {
    margin-right: 30px;
  }
}
@media (width <= 47.99875rem) {
  .header__phone {
    font-size: 16px;
  }
}
@media (width <= 30.06125rem) {
  .header__phone {
    padding-inline: 10px;
    height: 32px;
    font-size: 12px;
    font-weight: 400;
    margin-right: 20px;
  }
}
.header__phone:hover {
  background-size: 100% 100%;
  color: var(--color-light-gray);
}
.header__body {
  border-bottom: 1px solid var(--color-light-gray);
}
@media (width <= 63.99875rem) {
  .header__body {
    display: none;
  }
}
.header__body-inner {
  display: flex;
  align-items: center;
}
.header__menu {
  width: 100%;
}
@media (width <= 47.99875rem) {
  .header__menu {
    overflow-y: auto;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__menu-item {
  flex: 1;
  text-align: center;
  border-left: 1px solid var(--color-light-gray);
  font-weight: 500;
}
.header__menu-item:last-child {
  border-right: 1px solid var(--color-light-gray);
}
.header__menu-link {
  padding-block: 1.125rem;
}

a.is-active {
  color: var(--color-blue);
  pointer-events: none;
}

/*---------HEADER (END)--------*/
/*---------MOBILE MENU (START)--------*/
.menu-humb {
  display: none;
}
@media (width <= 63.99875rem) {
  .menu-humb {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease-in-out;
  }
}

.menu-mob {
  display: none;
}
@media (width <= 63.99875rem) {
  .menu-mob {
    display: block;
  }
}

.menu-humb.active .icon-humb__line {
  background: var(--color-light);
  transition: background 0.2s;
}

.header__wrap.menu_active .header__contacts {
  opacity: 0;
  transition: opacity 0s ease-in-out;
}

.header__wrap.menu_active .logo__image {
  filter: brightness(0) invert(1);
  transition: filter 0s ease-in-out;
}

.header__wrap.menu_active .header {
  background-color: var(--color-blue);
  transition: background-color 0.2s ease-in-out;
}

.header__wrap.menu_active .header__top {
  border-bottom: 1px solid var(--color-blue);
  transition: border-bottom 0s ease-out;
}

.icon-humb {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.icon-humb__line {
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  border-radius: 2px;
  transition: transform 0.2s ease-in-out;
}

.menu-humb.active .icon-humb {
  gap: 0;
}

.menu-humb.active .icon-humb__line:first-child {
  transform: translateY(-3px) rotate(45deg);
}

.menu-humb.active .icon-humb__line:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-mob {
  background: var(--color-blue);
  position: fixed;
  top: var(--js-header-height);
  width: 100%;
  height: 100vh;
  padding-bottom: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  overflow: hidden;
}
.menu-mob__inner {
  padding: 0px 30px 80px 30px;
  display: flex;
  flex-direction: column;
  gap: 10%;
  height: 100%;
  overflow-y: auto;
}
@media (width <= 47.99875rem) {
  .menu-mob__inner {
    padding: 0 25px 30px 25px;
  }
}
.menu-mob__list {
  display: flex;
  flex-direction: column;
}
.menu-mob__item {
  padding-block: 20px;
  border-bottom: 1px solid var(--color-light);
}
.menu-mob__item:nth-child(1) {
  border-top: 1px solid var(--color-light);
}
.menu-mob__bottom {
  display: flex;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .menu-mob__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 35px;
  }
}
.menu-mob__contacts {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  color: var(--color-light);
  font-weight: 500;
}
.menu-mob__phone {
  font-size: 32px;
}
@media (width <= 47.99875rem) {
  .menu-mob__phone {
    font-size: 1.75rem;
  }
}
.menu-mob__mail {
  font-size: 18px;
}
.menu-mob__socials-list {
  display: flex;
  column-gap: 20px;
}
.menu-mob__socials-item {
  display: block;
  position: relative;
}
.menu-mob__socials-item .menu-mob__socials-link::before {
  content: "";
  aspect-ratio: 1;
  width: 42px;
  height: 42px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width <= 47.99875rem) {
  .menu-mob__socials-item .menu-mob__socials-link::before {
    width: 35px;
    height: 35px;
  }
}
.menu-mob__socials-item:nth-child(1) .menu-mob__socials-link::before {
  background: url("./../icons/vk.svg") center/contain no-repeat;
}
.menu-mob__socials-item:nth-child(2) .menu-mob__socials-link::before {
  background: url("./../icons/whatsap.svg") center/contain no-repeat;
}
.menu-mob__socials-item:nth-child(3) .menu-mob__socials-link::before {
  background: url("./../icons/tg.svg") center/contain no-repeat;
}

.menu-mob.active {
  opacity: 1;
  visibility: visible;
  overscroll-behavior: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.menu-mob .menu-mob__item .menu-mob__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 500;
}

/*---------MOBILE MENU (END)--------*/
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F8F8F8;
  z-index: 1000;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.loading-screen__svg-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  overflow: visible;
  border-radius: 50%;
  background-color: transparent;
  z-index: 0;
}
@media (width <= 47.99875rem) {
  .loading-screen__svg-wrap {
    width: 220px;
    height: 220px;
  }
}
.loading-screen__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 304px;
  height: 303px;
  z-index: -1;
}
@media (width <= 47.99875rem) {
  .loading-screen__circle {
    width: 200px;
    height: 200px;
  }
}
.loading-screen__aim-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  overflow: visible;
  border-radius: 50%;
  background-color: transparent;
  z-index: 0;
  animation-name: rotation;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
@media (width <= 47.99875rem) {
  .loading-screen__aim-wrap {
    width: 220px;
    height: 220px;
  }
}
.loading-screen__text {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  white-space: nowrap;
  color: var(--color-blue);
  position: absolute;
  z-index: -2;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}
@media (width <= 47.99875rem) {
  .loading-screen__text {
    font-size: 16px;
  }
}
.loading-screen__plan {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (width <= 47.99875rem) {
  .loading-screen__plan {
    width: 22px;
    height: 24px;
    bottom: 1px;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.5, 0, 0.75, 1);
  }
  80%, 100% {
    transform: rotate(270deg);
  }
}
.tile {
  border-radius: 20px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  height: calc(100vh - var(--header-height));
}
.hero .header-block {
  justify-items: center;
  row-gap: 50px;
}
@media (width <= 47.99875rem) {
  .hero .header-block {
    row-gap: 25px;
  }
}
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 1fr;
}
@media (width <= 63.99875rem) {
  .hero__container {
    grid-template-columns: 1fr;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 5.9375rem;
}
@media (width <= 63.99875rem) {
  .hero__content {
    padding-right: 0;
  }
}
.hero__title {
  line-height: 1.6;
}
@media (width <= 63.99875rem) {
  .hero__title {
    color: var(--color-light);
    font-size: 50px;
  }
}
@media (width <= 47.99875rem) {
  .hero__title {
    font-size: 24px;
  }
}
@media (width <= 63.99875rem) {
  .hero__title span {
    color: var(--color-light);
  }
}
.hero__subtitle {
  width: 100%;
  max-width: 725px;
  text-align: center;
}
@media (width <= 63.99875rem) {
  .hero__subtitle {
    color: var(--color-light);  
  }
}
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.6vw;
  height: 100%;
  z-index: 1;
}
@media (width <= 63.99875rem) {
  .hero__media {
    width: 100%;
  }
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.transportation-cost {
  padding-top: 150px;
}
@media (width <= 63.99875rem) {
  .transportation-cost {
    padding-top: 100px;
  }
}
.transportation-cost__wrap {
  display: flex;
  flex-direction: column;
}

.form-request {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  row-gap: 50px;
  column-gap: 32px;
}
@media (width <= 63.99875rem) {
  .form-request {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .form-request {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto;
    row-gap: 25px;
    column-gap: 0;
  }
}
.form-request__cell:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.form-request__cell:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
@media (width <= 47.99875rem) {
  .form-request__cell:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
}
.form-request__cell:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
@media (width <= 47.99875rem) {
  .form-request__cell:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
}
.form-request__cell:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
@media (width <= 47.99875rem) {
  .form-request__cell:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
}
.form-request__cell:nth-child(5) {
  grid-column: 3;
  grid-row: 1/3;
}
@media (width <= 63.99875rem) {
  .form-request__cell:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3;
  }
}
@media (width <= 47.99875rem) {
  .form-request__cell:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
  }
}
.form-request__actions {
  grid-column: 1/3;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  color: var(--color-notes);
}
@media (width <= 63.99875rem) {
  .form-request__actions {
    grid-column: 1;
    grid-row: 4;
    padding-right: 68px;
  }
}
@media (width <= 63.99875rem) and (width <= 47.99875rem) {
  .form-request__actions {
    grid-column: 1;
    grid-row: 6;
    padding-right: 0;
  }
}
.form-request .button-calc {
  grid-column: 3;
  grid-row: 3;
  max-width: max-content;
  justify-self: flex-end;
}
@media (width <= 63.99875rem) {
  .form-request .button-calc {
    grid-column: 2;
    grid-row: 4;
  }
}
@media (width <= 47.99875rem) {
  .form-request .button-calc {
    grid-column: 1;
    grid-row: 7;
    justify-content: space-between;
    justify-self: center;
    max-width: 100%;
    width: 100%;
  }
}
.form-request .field {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 35px;
  font-weight: 500;
  caret-color: var(--color-blue);
}
@media (width <= 47.99875rem) {
  .form-request .field {
    row-gap: 25px;
  }
}
.form-request .field__control {
  width: 100%;
  height: 87px;
  padding-inline: 30px;
  background-color: var(--color-base);
  border: 1px solid var(--color-input-form);
  border-radius: 10px;
}
@media (width <= 63.99875rem) {
  .form-request .field__control {
    padding-inline: 30px 18px;
    height: 65px;
  }
}
@media (width <= 47.99875rem) {
  .form-request .field__control {
    padding-inline: 16px 18px;
    height: 50px;
  }
}
.form-request .field__control::placeholder {
  font-weight: 600;
  color: var(--color-input-form);
}
.form-request .field__control:focus-visible {
  border-color: var(--color-blue);
}
@media (any-hover: hover) {
  .form-request .field__control:hover {
    border-color: var(--color-blue);
  }
}
@media (any-hover: none) {
  .form-request .field__control:active {
    border-color: var(--color-blue);
  }
}
.form-request textarea.field__control {
  resize: vertical;
  min-height: 295px;
  padding: 30px 20px;
}
@media (width <= 63.99875rem) {
  .form-request textarea.field__control {
    padding: 18px 30px;
    min-height: 186px;
  }
}
@media (width <= 47.99875rem) {
  .form-request textarea.field__control {
    padding: 16px 18px;
    min-height: 240px;
  }
}

.about__inner {
  display: flex;
  flex-direction: column;
}
.about__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (width <= 90.06125rem) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .about__list {
    grid-template-columns: 1fr;
  }
}

.about-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  min-height: 558px;
  padding: 22px 13px 25px 25px;
  box-shadow: var(--box-shadow);
  background-color: var(--color-light);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-duration);
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-duration);
  z-index: 0;
}
.about-card * {
  position: relative;
  z-index: 1;
}
.about-card:hover {
  box-shadow: var(--box-shadow);
}
.about-card:hover .about-card__title,
.about-card:hover .about-card__description {
  color: var(--color-light);
}
.about-card:hover::before {
  opacity: 1;
}
.about__item:nth-child(1) .about-card::before {
  background-image: linear-gradient(rgba(0, 99, 199, 0.8), rgba(0, 99, 199, 0.8)), url(".././images/about/01.png");
}
.about__item:nth-child(2) .about-card::before {
  background-image: linear-gradient(rgba(0, 99, 199, 0.8), rgba(0, 99, 199, 0.8)), url(".././images/about/03.png");
}
.about__item:nth-child(3) .about-card::before {
  background-image: linear-gradient(rgba(0, 99, 199, 0.8), rgba(0, 99, 199, 0.8)), url(".././images/about/02.png");
}
.about__item:nth-child(4) .about-card::before {
  background-image: linear-gradient(rgba(0, 99, 199, 0.8), rgba(0, 99, 199, 0.8)), url(".././images/about/04.png");
}
@media (width <= 63.99875rem) {
  .about-card {
    min-height: 482px;
    padding: 18px 11px 25px 22px;
  }
  .about__item:nth-child(2) .about-card {
    background-color: var(--color-blue);
  }
}
@media (width <= 47.99875rem) {
  .about-card {
    min-height: 390px;
    padding: 18px 21px 25px 20px;
  }
}
@media (width <= 30.06125rem) {
  .about-card {
    min-height: 482px;
  }
}
.about-card__icon {
  aspect-ratio: 1;
  margin-bottom: 50px;
}
@media (width <= 63.99875rem) {
  .about-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 45px;
  }
}
.about-card__title {
  font-size: clamp(1.7777777778rem, 1.7264957265rem + 0.2564102564vw, 2rem);
}
@media (width <= 63.99875rem) {
  .about-card__title {
    font-size: 32px;
  }
  .about__item:nth-child(2) .about-card__title {
    color: var(--color-light);
  }
}
@media (width <= 47.99875rem) {
  .about-card__title {
    font-size: 28px;
  }
}
.about-card__description {
  font-size: 1.125rem;
  margin-top: auto;
}
@media (width <= 63.99875rem) {
  .about__item:nth-child(2) .about-card__description {
    color: var(--color-light);
  }
}

.faq__inner {
  display: flex;
  flex-direction: column;
}

.accordion-group {
  display: grid;
  row-gap: 30px;
}

.accordion__details {
  background-color: var(--color-blue);
  height: 60px;
  border-radius: 10px;
  padding: 7px 8px 7px 20px;
  margin-inline: auto;
}
.accordion__details[open] .accordion__title .square::before, .accordion__details[open] .accordion__title .square::after {
  background-color: var(--color-blue);
}
.accordion__details[open] .accordion__title .square::after {
  rotate: 0deg;
}
.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
}
.accordion__summary {
  color: var(--color-light);
  list-style: none;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-light);
  transition-duration: var(--transition-duration);
}
.accordion__title .square {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: 6px;
  background-color: var(--color-light);
  box-shadow: var(--box-shadow);
  margin-left: 10px;
}
.accordion__title .square::before, .accordion__title .square::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  right: 0;
  width: 1rem;
  height: 0.125rem;
  background-color: var(--color-blue);
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.accordion__title .square::after {
  rotate: 90deg;
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.accordion__content-inner {
  background-color: var(--color-light);
  overflow: hidden;
}
.accordion__content-body {
  font-size: 18px;
  padding: 40px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-top: -5px;
}

.our-clients__inner {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
@media (width <= 47.99875rem) {
  .our-clients__inner {
    row-gap: 75px;
  }
}
.our-clients__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (width <= 90.06125rem) {
  .our-clients__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 47.99875rem) {
  .our-clients__list {
    grid-template-columns: 1fr;
  }
}
.our-clients__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 25px 5px 25px 25px;
  border-radius: 20px;
  height: 200px;
  background-color: var(--color-blue);
  color: var(--color-light);
}
.our-clients__item::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 17px;
  width: 19px;
  height: 6px;
  background-color: var(--color-light);
}
@media (width <= 63.99875rem) {
  .our-clients__item {
    height: 165px;
    padding-right: 20px;
  }
}
@media (width <= 47.99875rem) {
  .our-clients__item {
    border-radius: 10px;
    padding: 15px 30px 15px 15px;
    height: 130px;
  }
}
.our-clients__item h3 {
  color: var(--color-light);
}
@media (width <= 63.99875rem) {
  .our-clients__item h3 {
    font-size: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .our-clients__item h3 {
    font-size: 1.375rem;
  }
}
.our-clients__item:nth-child(even) {
  background-color: var(--color-light);
  box-shadow: var(--box-shadow);
}
.our-clients__item:nth-child(even)::before {
  background-color: var(--color-blue);
}
.our-clients__item:nth-child(even) h3 {
  color: var(--color-gray);
}
@media (width <= 90.06125rem) {
  .our-clients__item:nth-child(1), .our-clients__item:nth-child(4), .our-clients__item:nth-child(5) {
    background-color: var(--color-blue);
    color: var(--color-light);
  }
  .our-clients__item:nth-child(1)::before, .our-clients__item:nth-child(4)::before, .our-clients__item:nth-child(5)::before {
    background-color: var(--color-light);
  }
  .our-clients__item:nth-child(1) h3, .our-clients__item:nth-child(4) h3, .our-clients__item:nth-child(5) h3 {
    color: var(--color-light);
  }
  .our-clients__item:nth-child(2), .our-clients__item:nth-child(3), .our-clients__item:nth-child(6) {
    background-color: var(--color-light);
    color: var(--color-gray);
  }
  .our-clients__item:nth-child(2)::before, .our-clients__item:nth-child(3)::before, .our-clients__item:nth-child(6)::before {
    background-color: var(--color-blue);
  }
  .our-clients__item:nth-child(2) h3, .our-clients__item:nth-child(3) h3, .our-clients__item:nth-child(6) h3 {
    color: var(--color-gray);
  }
}
@media (width <= 47.99875rem) {
  .our-clients__item:nth-child(odd) {
    background-color: var(--color-blue);
    color: var(--color-light);
  }
  .our-clients__item:nth-child(odd)::before {
    background-color: var(--color-light);
  }
  .our-clients__item:nth-child(odd) h3 {
    color: var(--color-light);
  }
  .our-clients__item:nth-child(even) {
    background-color: var(--color-light);
    color: var(--color-gray);
  }
  .our-clients__item:nth-child(even)::before {
    background-color: var(--color-blue);
  }
  .our-clients__item:nth-child(even) h3 {
    color: var(--color-gray);
  }
}

.work-process__inner {
  display: flex;
  flex-direction: column;
}
.work-process__description {
  font-size: 18px;
  line-height: 1.1;
  margin-top: auto;
}
@media (width <= 47.99875rem) {
  .work-process__description {
    font-size: 1rem;
  }
}
.work-process__list {
  display: grid;
  grid-template-columns: 1fr 60px 60px 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (width <= 63.99875rem) {
  .work-process__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
}
.work-process__item {
  display: flex;
  flex-direction: column;
  row-gap: 34px;
  padding: 35px 25px 30px 25px;
  border-radius: 20px;
  background-color: var(--color-light);
  color: var(--color-gray);
  box-shadow: var(--box-shadow);
}
@media (width <= 63.99875rem) {
  .work-process__item {
    row-gap: 10px;
    height: 300px;
    padding: 50px 35px 25px 25px;
  }
}
@media (width <= 47.99875rem) {
  .work-process__item {
    border-radius: 10px;
    padding: 50px 40px 25px 25px;
    height: auto;
    row-gap: 50px;
  }
}
.work-process__item h3 {
  color: var(--color-gray);
}
@media (width <= 63.99875rem) {
  .work-process__item h3 {
    font-size: 36px;
  }
}
@media (width <= 47.99875rem) {
  .work-process__item h3 {
    font-size: 1.25rem;
  }
}
.work-process__item:nth-child(1), .work-process__item:nth-child(4) {
  background-color: var(--color-blue);
  color: var(--color-light);
  box-shadow: none;
}
.work-process__item:nth-child(1) h3, .work-process__item:nth-child(4) h3 {
  color: var(--color-light);
}
.work-process__item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1;
}
@media (width <= 63.99875rem) {
  .work-process__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (width <= 47.99875rem) {
  .work-process__item:nth-child(1) .work-process__title {
    padding-right: 70px;
  }
}
.work-process__item:nth-child(2) {
  grid-column: 3/5;
  grid-row: 1;
}
@media (width <= 63.99875rem) {
  .work-process__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
}
.work-process__item:nth-child(3) {
  grid-column: 1/4;
  grid-row: 2;
}
@media (width <= 63.99875rem) {
  .work-process__item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
}
.work-process__item:nth-child(4) {
  grid-column: 4/5;
  grid-row: 2;
}
@media (width <= 63.99875rem) {
  .work-process__item:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
}
@media (width <= 47.99875rem) {
  .work-process__item:nth-child(4) .work-process__title {
    padding-right: 70px;
  }
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (width <= 90.06125rem) {
  .advantages__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
}
@media (width <= 47.99875rem) {
  .advantages__list {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  row-gap: 35px;
  padding: 50px 15px 50px 25px;
  overflow: hidden;
}
.advantages__item::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  z-index: -2;
}
@media (width <= 63.99875rem) {
  .advantages__item {
    padding-bottom: 25px;
  }
}
@media (width <= 47.99875rem) {
  .advantages__item {
    border-radius: 10px;
    height: 15.625rem;
  }
}
@media (width <= 30.06125rem) {
  .advantages__item {
    height: 22.25rem;
  }
}
.advantages__item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (width <= 63.99875rem) {
  .advantages__item:nth-child(1) {
    row-gap: 8.625rem;
  }
}
@media (width <= 47.99875rem) {
  .advantages__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1/2;
    row-gap: 2.8125rem;
  }
}
.advantages__item:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1;
}
@media (width <= 90.06125rem) {
  .advantages__item:nth-child(2) {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
@media (width <= 63.99875rem) {
  .advantages__item:nth-child(2) {
    row-gap: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .advantages__item:nth-child(2) {
    grid-column: 1;
    grid-row: 3/4;
  }
}
.advantages__item:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1/3;
}
@media (width <= 90.06125rem) {
  .advantages__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/3;
    background-color: var(--color-blue);
    color: var(--color-light);
  }
  .advantages__item:nth-child(3) h3 {
    color: var(--color-light);
  }
}
@media (width <= 63.99875rem) {
  .advantages__item:nth-child(3) {
    row-gap: 8.625rem;
  }
}
@media (width <= 47.99875rem) {
  .advantages__item:nth-child(3) {
    grid-column: 1;
    grid-row: 2/3;
    row-gap: 2.8125rem;
  }
}
.advantages__item:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}
@media (width <= 90.06125rem) {
  .advantages__item:nth-child(4) {
    grid-column: 1/3;
    grid-row: 4/5;
    background-color: var(--color-blue);
    color: var(--color-light);
  }
  .advantages__item:nth-child(4) h3 {
    color: var(--color-light);
  }
}
@media (width <= 63.99875rem) {
  .advantages__item:nth-child(4) {
    row-gap: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .advantages__item:nth-child(4) {
    grid-column: 1;
    grid-row: 4/5;
  }
}
.advantages__title {
  transition: color 0.4s ease-in-out;
  font-size: clamp(1.7777777778rem, 1.7264957265rem + 0.2564102564vw, 2rem);
}
@media (width <= 63.99875rem) {
  .advantages__title {
    font-size: 32px;
  }
}
@media (width <= 47.99875rem) {
  .advantages__title {
    font-size: 22px;
  }
}
.advantages__description {
  font-size: 18px;
  line-height: 1.1;
}
@media (width <= 47.99875rem) {
  .advantages__description {
    font-size: 16px;
  }
}

.workflow-gallery__wrap {
  width: 100%;
}
.workflow-gallery__swiper {
  position: relative;
}
.workflow-gallery__item {
  aspect-ratio: 12/5;
  max-height: 800px;
  width: 100%;
}
@media (width <= 63.99875rem) {
  .workflow-gallery__item {
    aspect-ratio: 48/35;
  }
}
@media (width <= 47.99875rem) {
  .workflow-gallery__item {
    aspect-ratio: 45/64;
  }
}
.workflow-gallery__slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workflow-gallery .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.workflow-gallery__nav {
  display: flex;
  column-gap: 15px;
  height: 45px;
  margin-bottom: 5rem;
}
@media (width <= 63.99875rem) {
  .workflow-gallery__nav {
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 63.99875rem) {
  .workflow-gallery__nav {
    margin-bottom: 2.1875rem;
  }
}
.workflow-gallery__nav img {
  cursor: pointer;
}

.banner__wrap {
  position: relative;
  display: flex;
  aspect-ratio: 96/25;
  height: 500px;
  width: 100%;
  background-image: url(".././images/banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width <= 63.99875rem) {
  .banner__wrap {
    aspect-ratio: 32/25;
    height: 600px;
  }
}
@media (width <= 47.99875rem) {
  .banner__wrap {
    aspect-ratio: 45/64;
    height: 500px;
  }
}
.banner__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 100px;
}
@media (width <= 47.99875rem) {
  .banner__inner {
    row-gap: 60px;
  }
}
.banner__title {
  font-size: clamp(2.7777777778rem, 2.6495726496rem + 0.641025641vw, 3.3333333333rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .banner__title {
    font-size: 28px;
  }
}
.banner__title span {
  display: inline-block;
}
@media (width <= 63.99875rem) {
  .banner__title span {
    display: inline;
  }
}

.airparnets {
  min-width: 0;
}
.airparnets__wrap {
  width: 100%;
}
.airparnets__swiper {
  overflow: visible;
}
.airparnets .swiper-wrapper {
  transition-timing-function: linear;
}
.airparnets .swiper-slide {
  width: auto;
}
.airparnets__item {
  width: auto;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.airparnets__slide-image {
  display: block;
  object-fit: cover;
  width: 300px;
  height: 103px;
  max-width: 100%;
  max-height: 100%;
}
@media (width <= 47.99875rem) {
  .airparnets__slide-image {
    width: 188px;
    height: 73px;
  }
}

.reviews__wrap {
  width: 100%;
  height: 555px;
}
@media (width <= 90.06125rem) {
  .reviews__wrap {
    height: auto;
  }
}
.reviews__swiper .swiper-pagination {
  text-align: right;
  right: 0;
}
.reviews__swiper .swiper-horizontal > .swiper-pagination-bullets,
.reviews__swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.reviews__swiper .swiper-pagination-custom,
.reviews__swiper .swiper-pagination-fraction {
  bottom: auto;
  top: 65px;
  left: auto;
  width: 100%;
}
@media (width <= 90.06125rem) {
  .reviews__swiper .swiper-horizontal > .swiper-pagination-bullets,
  .reviews__swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
  .reviews__swiper .swiper-pagination-custom,
  .reviews__swiper .swiper-pagination-fraction {
    top: 55px;
  }
}
@media (width <= 47.99875rem) {
  .reviews__swiper .swiper-horizontal > .swiper-pagination-bullets,
  .reviews__swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
  .reviews__swiper .swiper-pagination-custom,
  .reviews__swiper .swiper-pagination-fraction {
    top: 384px;
  }
}
@media (width <= 30.06125rem) {
  .reviews__swiper .swiper-horizontal > .swiper-pagination-bullets,
  .reviews__swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
  .reviews__swiper .swiper-pagination-custom,
  .reviews__swiper .swiper-pagination-fraction {
    top: 292px;
  }
}
.reviews__swiper .swiper-pagination-bullet {
  border-radius: 2px;
  width: 8px;
  height: 25px;
  background: var(--color-light-gray);
  transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.reviews__swiper .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: var(--color-light-gray);
  transition: background-color 0.4s ease-in-out;
}
.reviews__swiper .swiper-pagination-bullet-active {
  position: relative;
  background: var(--color-blue);
  transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.reviews__item {
  display: grid;
  grid-template-columns: 32.18vw 1fr;
  gap: 50px;
}
@media (width <= 63.99875rem) {
  .reviews__item {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }
}
@media (width <= 47.99875rem) {
  .reviews__item {
    grid-template-columns: 1fr;
  }
}
.reviews__item-left {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .reviews__item-left {
    border-radius: 10px;
  }
}
.reviews__item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media (width <= 47.99875rem) {
  .reviews__item-photo {
    height: 300px;
    object-position: center 16%;
  }
}
@media (width <= 30.06125rem) {
  .reviews__item-photo {
    height: 200px;
  }
}
.reviews__item-right {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.reviews__item-company {
  display: inline-flex;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-notes);
  margin-bottom: 30px;
}
@media (width <= 90.06125rem) {
  .reviews__item-company {
    font-size: 16px;
  }
}
.reviews__item-name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 50px;
}
@media (width <= 90.06125rem) {
  .reviews__item-name {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media (width <= 47.99875rem) {
  .reviews__item-name {
    max-width: 190px;
    line-height: 1.4;
    white-space: wrap;
  }
}
.reviews__item-quote {
  display: flex;
  row-gap: 25px;
  margin-block: auto;
  font-weight: 500;
  font-size: 24px;
  padding-top: 30px;
  height: 300px;
  margin-bottom: auto;
  border-top: 1px solid var(--color-light-gray);
}
@media (width <= 90.06125rem) {
  .reviews__item-quote {
    height: 250px;
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .reviews__item-quote {
    height: 200px;
    font-size: 14px;
  }
}
@media (width <= 30.06125rem) {
  .reviews__item-quote {
    height: 250px;
  }
}
.reviews__item-quote::before {
  width: 50px;
  height: 40px;
  margin-right: 25px;
  content: "";
  flex-shrink: 0;
  background-image: url(./../icons/quotes.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 47.99875rem) {
  .reviews__item-quote::before {
    width: 28px;
    height: 23px;
    margin-right: 10px;
  }
}
.reviews__item .button {
  max-width: max-content;
  margin-left: auto;
  text-transform: none;
  margin-top: 10px;
}
@media (width <= 47.99875rem) {
  .reviews__item .button {
    margin-left: 0;
    justify-content: space-between;
    justify-self: center;
    max-width: 100%;
  }
}

.process__list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  row-gap: 117px;
  column-gap: 10%;
}
@media (width <= 63.99875rem) {
  .process__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    row-gap: 70px;
  }
}
@media (width <= 47.99875rem) {
  .process__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    row-gap: 30px;
  }
}
.process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  align-self: end;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .process__item {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-light-gray);
  }
}
.process__item--active .process__text {
  color: var(--color-gray);
}
.process__item--active .process__circle {
  background-color: var(--color-blue);
  box-shadow: 0 0 10px rgba(0, 99, 199, 0.5);
}
.process__item--active .process__circle-inner {
  border: 1px solid var(--color-blue);
  background-color: transparent;
}
.process__text {
  width: 100%;
  color: var(--color-light-gray);
  align-content: end;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.4s ease-in-out;
  padding-bottom: 47px;
}
@media (width <= 63.99875rem) {
  .process__text {
    margin-bottom: 35px;
  }
}
@media (width <= 47.99875rem) {
  .process__text {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.process__circle {
  width: 24px;
  height: 24px;
  background-color: var(--color-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease-in-out;
}
.process__circle-inner {
  aspect-ratio: 1;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.cargo-types .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  content: "";
  cursor: pointer;
}
.cargo-types__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (width <= 90.06125rem) {
  .cargo-types__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__list {
    grid-template-columns: 1fr;
  }
}
.cargo-types__item {
  height: 344px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.cargo-types__item:hover .icon-arrow {
  background-size: 100% 100%;
}
.cargo-types__item:hover .icon-arrow svg path {
  stroke: var(--color-light);
}
@media (width <= 63.99875rem) {
  .cargo-types__item {
    height: 220px;
    padding: 24px 13px 16px 16px;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__item {
    border-radius: 10px;
  }
}
.cargo-types__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
}
@media (width <= 47.99875rem) {
  .cargo-types__item::before {
    border-radius: 10px;
  }
}
.cargo-types__item:nth-child(odd)::before {
  background: linear-gradient(125deg, #000 0%, #4a4a4a 100%);
}
.cargo-types__item:nth-child(odd) .cargo-types__item-title,
.cargo-types__item:nth-child(odd) .cargo-types__item-description {
  color: var(--color-light);
}
.cargo-types__item:nth-child(1) {
  background-image: url(".././images/cargo-types/1.png");
  order: 1;
}
.cargo-types__item:nth-child(2) {
  background-image: url(".././images/cargo-types/2.png");
  order: 2;
}
.cargo-types__item:nth-child(3) {
  background-image: url(".././images/cargo-types/3.png");
  order: 3;
}
@media (width <= 90.06125rem) {
  .cargo-types__item:nth-child(3) {
    order: 4;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__item:nth-child(3) {
    order: 3;
  }
}
.cargo-types__item:nth-child(4) {
  background-image: url(".././images/cargo-types/4.png");
  order: 4;
}
@media (width <= 90.06125rem) {
  .cargo-types__item:nth-child(4) {
    order: 3;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__item:nth-child(4) {
    order: 4;
  }
}
.cargo-types__item:nth-child(5) {
  background-image: url(".././images/cargo-types/5.png");
  order: 5;
}
.cargo-types__item:nth-child(6) {
  background-image: url(".././images/cargo-types/6.png");
  background-position-y: 35px;
  order: 6;
}
.cargo-types__item-title {
  width: 100%;
  max-width: 360px;
  margin-bottom: 30px;
}
@media (width <= 63.99875rem) {
  .cargo-types__item-title {
    font-size: 24px;
    margin-bottom: 16px;
    max-width: 285px;
  }
}
.cargo-types__item-tag {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-light);
  border-radius: 5px;
  padding: 5px 19px;
  background-color: var(--color-blue);
  max-width: max-content;
}
@media (width <= 63.99875rem) {
  .cargo-types__item-tag {
    padding: 1px 15px;
  }
  .h1 span.cargo-types__item-tag,
  .h2 span.cargo-types__item-tag {
    color: var(--color-light);
    font-size: 50px;
    padding: 10px 24px;
  }
}
@media (width <= 47.9988rem) {
  .h1 span.cargo-types__item-tag,
  .h2 span.cargo-types__item-tag {
      font-size: 24px;
  }
}
.cargo-types__item-description {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  font-size: 18px;
}
@media (width <= 63.99875rem) {
  .cargo-types__item-description {
    font-size: 14px;
  }
}
.cargo-types__item-description p {
  margin-bottom: 0;
  width: 100%;
  max-width: 275px;
  line-height: 1.1;
}
.cargo-types__item-description .icon-arrow {
  margin-left: auto;
}
@media (width <= 63.99875rem) {
  .cargo-types__item-description .icon-arrow {
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
  }
  .cargo-types__item-description .icon-arrow svg {
    width: 12px;
    height: 8px;
  }
}
.cargo-types__content {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.cargo-types__modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.cargo-types__modal::-webkit-scrollbar {
  width: 0;
}
.cargo-types__modal-inner {
  display: grid;
  justify-content: center;
  align-content: flex-start;
  background-color: var(--color-base);
  width: 100%;
  max-width: 1000px;
  padding-left: 3.125rem;
  padding-right: 15px;
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow-y: auto;
  order: 1;
}
@media (width <= 47.99875rem) {
  .cargo-types__modal-inner {
    order: 2;
    padding-left: 2.1875rem;
  }
}
.cargo-types__modal-close {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  right: 0;
  margin-left: 15px;
  order: 2;
}
@media (width <= 47.99875rem) {
  .cargo-types__modal-close {
    order: 1;
    margin-left: auto;
  }
}
.cargo-types__modal-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-inline: auto;
  height: 100%;
}
.cargo-types__modal-list ::marker {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-blue);
}
@media (width <= 63.99875rem) {
  .cargo-types__modal-list ::marker {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__modal-list ::marker {
    font-size: 14px;
  }
}
.cargo-types__modal-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.20833;
  color: var(--color-blue);
  margin-bottom: 30px;
}
@media (width <= 63.99875rem) {
  .cargo-types__modal-title {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__modal-title {
    font-size: 14px;
  }
}
.cargo-types__modal-sublist ::marker {
  font-weight: 400;
  color: var(--color-gray);
}
.cargo-types__modal-subitem {
  list-style-type: disc;
  font-weight: 400;
}
@media (width <= 47.99875rem) {
  .cargo-types__modal-subitem {
    font-size: 14px;
  }
}
.cargo-types__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 60px;
  justify-content: center;
  width: 98%;
  height: 100%;
  background-color: var(--color-base);
  padding-block: 6.25rem;
  border-radius: 20px;
}
@media (width <= 63.99875rem) {
  .cargo-types__wrapper {
    padding-block: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .cargo-types__wrapper {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding-block: 1.875rem 3.75rem;
    border-radius: 10px;
  }
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal.show .cargo-types__modal-inner {
  transform: scale(1);
}

.footer {
  background-color: var(--color-gray);
  color: var(--color-light);
  padding-block: 60px 45px;
}
@media (width <= 63.99875rem) {
  .footer {
    padding-block: 50px 100px;
  }
}
@media (width <= 47.99875rem) {
  .footer {
    padding-block: 25px 35px;
  }
}
.footer .footer-label {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-line);
  margin-bottom: 30px;
}
@media (width <= 47.99875rem) {
  .footer .footer-label {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 50px;
}
@media (width <= 47.99875rem) {
  .footer__top {
    padding-bottom: 25px;
  }
  .footer__top .visible-mobile-only .icon::after {
    --size: 2.8125rem;
  }
}
.footer__logo img {
  filter: brightness(0) invert(1);
}
.footer__body {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (width <= 63.99875rem) {
  .footer__body {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 90px;
    padding-top: 35px;
    padding-bottom: 120px;
  }
}
@media (width <= 47.99875rem) {
  .footer__body {
    row-gap: 60px;
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
.footer__left {
  display: flex;
}
@media (width <= 47.99875rem) {
  .footer__left {
    flex-direction: column;
    row-gap: 60px;
  }
}
.footer__navigation {
  padding-right: 7.5rem;
  border-right: 1px solid var(--color-line);
}
@media (width <= 63.99875rem) {
  .footer__navigation {
    padding-right: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__navigation {
    border-right: none;
    padding-right: 0;
  }
}
.footer__navigation-list {
  display: grid;
  row-gap: 30px;
  padding-block: 20px;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .footer__navigation-list {
    font-size: 16px;
    padding-block: 0px;
  }
}
.footer__contacts {
  padding-left: 7.5rem;
  padding-right: 20px;
}
@media (width <= 63.99875rem) {
  .footer__contacts {
    padding-left: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__contacts {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__contacts-list {
  display: grid;
  row-gap: 40px;
  padding-top: 20px;
}
@media (width <= 47.99875rem) {
  .footer__contacts-list {
    row-gap: 30px;
    padding-top: 0px;
  }
}
.footer__contacts-item {
  display: grid;
}
.footer__contacts-link {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--color-light);
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 20px;
}
@media (width <= 63.99875rem) {
  .footer__right {
    align-items: flex-start;
  }
}
.footer__social-link:hover svg circle {
  fill: var(--color-accent);
}
.footer__social-list {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer__ticker {
  overflow: hidden;
  position: relative;
}
.footer__marquee {
  display: flex;
  width: fit-content;
  margin-bottom: 80px;
  will-change: transform;
  animation: marquee 40s linear infinite;
}
@media (width <= 63.99875rem) {
  .footer__marquee {
    margin-bottom: 120px;
  }
}
@media (width <= 47.99875rem) {
  .footer__marquee {
    margin-bottom: 35px;
  }
}
.footer__marquee-text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(105px, 13.95vw, 268px);
  line-height: 0.7;
  color: #2b2b2b;
  white-space: nowrap;
  padding-right: 50px;
  flex-shrink: 0;
}
@media (width <= 63.99875rem) {
  .footer__marquee-text {
    font-size: 186px;
  }
}
@media (width <= 47.99875rem) {
  .footer__marquee-text {
    font-size: 105px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__copyright a {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
.discount {
    display: flex;                 /* ✅ вместо inline-flex */
    align-items: center;
    justify-content: center;       /* ✅ центрируем содержимое */
    gap: 8px;

    background: #6626D4;
    color: #fff;

    padding: 10px 22px;
    border-radius: 10px;

    font-size: 20px;
    font-weight: 900;

    margin: 0 auto 60px;           /* ✅ центр блока */
    width: fit-content;           /* ✅ чтобы не растягивался */
}

/* Обёртка под иконку */
.discount > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ИКОНКА */
.discount img {
    width: 18px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* ТЕКСТ */
.discount__text {
    color: #ffffff !important;
    white-space: normal;   
    text-transform: none; 
    text-align: center;
}

.discount__text strong {
    font-weight: 900;
}

@media (width <= 47.9988rem) {
    .discount {
        gap: 6px;
        font-size: 16px;          
        margin: 0 auto 30px;
        padding: 12px 16px;
    }

    .discount img {
        width: 30px;              
    }
    .discount > div {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 15px;
    }
}