/* RESET CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button,
a {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Загальний клас для Montserrat */
.montserrat-main {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Regular - 401 layer */
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Medium - 225 layers */
.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* SemiBold - 44 layers */
.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* Bold - 129 layers */
.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ExtraBold - 144 layers */
.montserrat-extrabold {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* Italic - 9 layers */
.montserrat-italic {
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* або інша вага, якщо Italic має бути жирним */
  font-style: italic;
}

body,
button,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
}

:root {
  --container-width: 1440px;

  --font-main: "Montserrat", sans-serif;

  --color-light: #ffffff;
  --color-dark: #000000;
  --color-dblue: #0b0b33;
  --color-bg: #171717;
  --color-border-blue: #0254fd;
  --color-bg-blue: #091136;
  --color-red: #f40f3e;

  --fs-h4: 20px;
  --fs-body: 16px;

  --lh: 1.5;
}

:root {
  /* 1. Від 320px до 768px (Ріст від 21px до 36px) */
  /* Швидкість росту тут висока: ~3.35vw */
  --fs-h1: clamp(21px, 3.348vw + 10.28px, 36px);
  --fs-h2: clamp(27px, calc(14.857px + 3.795vw), 44px);
  --fs-h3: clamp(20px, calc(17.143px + 0.893vw), 24px);
}

@media (min-width: 768px) {
  :root {
    /* 2. Від 768px до 1200px (Ріст від 36px до 40px) */
    /* Тут ріст сповільнюється: ~0.93vw */
    --fs-h1: clamp(36px, 0.926vw + 28.89px, 40px);
  }
}

@media (min-width: 1200px) {
  :root {
    /* 3. Від 1200px до 1440px (Ріст від 40px до 48px) */
    /* Ріст знову прискорюється: ~3.33vw */
    --fs-h1: clamp(40px, 3.333vw + 0px, 48px);
    --fs-h2: clamp(40px, calc(-10px + 4.167vw), 50px);
    --fs-h3: clamp(24px, calc(-16px + 3.333vw), 32px);
  }
}

@media (min-width: 1440px) {
  :root {
    /* 4. Від 1440px до 1920px (Ріст від 48px до 60px) */
    /* Фінальний відрізок: 2.5vw */
    --fs-h1: clamp(48px, 2.5vw + 12px, 60px);
    --fs-h2: clamp(26px, 4vw, 50px);
  }
}

/* BASE */

/* ==========================================
   GLOBAL LAYOUT
   ========================================== */
body {
  background-color: var(--color-bg); /* Темний фон для всього сайту */
  color: var(--color-light); /* Білий текст за замовчуванням */
  font-family: var(--font-main); /* Шрифт Inter */
  font-size: 16px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: var(--container-width); /* 1440px */
  margin: 0 auto;
  padding: 0 15px; /* За замовчуванням мобілка */
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 100px; /* На 1200px (1200-200=1000px ширина контенту) */
  }
}

@media (min-width: 1440px) {
  .container {
    /* ТУТ УВАГА: Оскільки екран досяг 1440px, далі padding 
       можна взагалі не збільшувати. margin: 0 auto сам 
       відсуне контент від країв на великих моніторах. */
    padding: 0 170px;
  }
}
@media (min-width: 1920px) {
  .container {
    padding: 0 15px;
  }
}

/* Глобальний стиль для кнопок (у нас така в хедері) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  background-color: var(--color-red);
  color: var(--color-light);
  border-radius: 6px;
  transition: background-color 0.3s ease;
  /* width: 100%; */
  min-width: 270px;
  max-width: 290px;
  font-size: 20px;
}

.btn:hover {
  background-color: #b8092c; /* Трохи темніший червоний для ховеру */
}
/* TYPO */

h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
}
h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
}
h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}
h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
}

p {
  margin-bottom: 16px;
}

nav {
  text-transform: uppercase;
}

/* ==============================================================================================================================
   HEADER
   ============================================================================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(23, 23, 23, 0.9);
  transition:
    background-color 0.3s ease,
    border-bottom 0.3s ease;
}

body {
  padding-top: 60px;
}

.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: 20px;
}

.header__logo {
  width: 113px;
  width: 100%;
}

.header__box {
  display: flex;
  gap: 15px;
  @media (min-width: 700px) {
    gap: 21px;
  }
}

/* МОБІЛЬНЕ МЕНЮ */
.header__menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: max-content;
  min-width: 224px;
  background-color: var(--color-bg);
  padding: 30px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
}
.header__menu .header__menu--wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.header__menu .header__menu--wrapper li a {
  text-transform: uppercase;
  font-size: 14px;
}

.header__menu.is-active {
  transform: translateX(0);
}

.header__social .social__item--mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
}
.header__social .social__item--mail svg {
  width: 20px;
  height: 14px;
}
/* 1. МАГІЯ ПЛАВНОГО СКРОЛУ ДЛЯ ВСЬОГО САЙТУ */
html {
  scroll-behavior: smooth;
  /* Якщо шапка при скролі "прилипає" до верху (fixed), розкоментуй рядок нижче 
       і впиши реальну висоту шапки, щоб вона не перекривала заголовок блоку */
  scroll-padding-top: 60px;
  @media (min-width: 768px) {
    scroll-padding-top: 80px;
  }
}

/* 2. Базові стилі для підкреслення (використовуємо твій клас header__menu--wrapper) */
.header__menu--wrapper li a {
  position: relative;
  text-decoration: none;
}

/* Сама червона лінія */
.header__menu--wrapper li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: width 0.3s ease;
}

/* Ховер ефект */
.header__menu--wrapper li a:hover::after {
  width: 100%;
}

/* 3. Логіка активних пунктів */
/* Підсвічуємо звичайні сторінки (Careers), АЛЕ ігноруємо кастомні лінки, 
   щоб WordPress не підсвічував усі якорі одночасно */
.header__menu--wrapper li.current-menu-item:not(.menu-item-type-custom) > a::after,
.header__menu--wrapper li.current-page-ancestor > a::after,
/* Підсвічуємо пункт від нашого JavaScript під час скролу */
.header__menu--wrapper li a.is-active::after {
  width: 100%;
}

/* БУРГЕР */
.custom-menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.custom-menu-trigger span {
  display: block;
  width: 100%;
  height: 2.8px;
  background-color: var(--color-light);
  transition: 0.3s;
}
/* ==============================================================================================================================
   SECTION TOP 
   ============================================================================================================================== */
.careers-page section.top {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #091136;
}

.careers-page section.top .top__inner {
  display: flex;
  flex-direction: column;
}
.careers-page section.top .top__content {
  text-align: center;
  padding-top: 28px;
  margin-bottom: -40%;
  z-index: 2;
}
.careers-page section.top .top__content h1 {
  text-transform: uppercase;
}
.careers-page section.top .top__content p {
  font-size: clamp(14px, calc(11.143px + 0.893vw), 18px);
}
.careers-page section.top .btn-wrapp {
  position: absolute;
  width: 100%;
  height: 187px;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 23, 0) 0%,
    rgba(23, 23, 23, 1) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.careers-page section.top .top__img {
  display: flex;
  align-items: flex-end;
  width: 210%;
  margin-left: -55%;
  margin-bottom: -60%;
  z-index: -1;
}

.careers-page section.top .top__img img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .careers-page section.top .top__img {
    margin-left: -45%;
  }
  .careers-page section.top .top__img img {
    /* На планшеті можна трохи підняти картинку, щоб вона не була такою "втопленою" */
    transform: translateY(2%);
  }
}

/* ==========================================
   TABLET (від 768px)
   ========================================== */

@media (min-width: 768px) {
  .header__inner {
    height: 80px;
  }

  body {
    padding-top: 80px; /* Збільшуємо відступ для контенту на ПК */
  }

  /* ВИПРАВЛЕНО: .header__menu замість .hheader__menu */
  .header__menu {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    transform: translateX(0);
    padding: 0;
  }
  .header__logo {
    width: 166px;
  }

  .header__menu .header__menu--wrapper {
    flex-direction: row;
    gap: 20px;
    font-size: 16px;
  }

  .header__social {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .header__soc-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .custom-menu-trigger {
    display: none;
  }

  .careers-page section.top .top__inner {
    flex-direction: row;
  }
  .careers-page section.top .top__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 70px;
    padding-bottom: 150px;
    width: 37%;
    max-width: 540px;
    margin-bottom: 0;
  }
  .careers-page section.top .top__content h1 {
    margin-bottom: 45px;
    line-height: 110%;
  }
  .careers-page section.top .top__content p {
    margin-bottom: 60px;
    line-height: 110%;
    font-size: clamp(18px, calc(14.444px + 0.463vw), 20px);
  }
  .careers-page section.top .btn-wrapp {
    position: relative;
    background: none;
    padding: 0;
    margin-top: 30px;
    height: auto;
    max-width: 250px;
  }
  .careers-page section.top .top__img {
    margin: 0;
    width: 63%;
  }
  .careers-page section.top .top__img img {
    position: absolute;
    max-width: none;
    width: 900px;
    transform: translate(-20%, 28%);
  }
}

@media (min-width: 1200px) {
  .header__menu .header__menu--wrapper {
    gap: 30px;
  }
  .careers-page section.top .top__content {
    width: 35%;
    padding-top: 90px;
    padding-bottom: 188px;
  }
  .careers-page section.top .top__content h1 {
    margin-bottom: 63px;
  }
  .careers-page section.top .top__img img {
    width: 1130px;
    transform: translate(-17%, 28%);
  }
  .careers-page section.top .top__content p {
    font-size: clamp(20px, calc(12.889px + 0.926vw), 24px);
  }
}

@media (min-width: 1440px) {
  .careers-page section.top .top__content {
    padding-top: 136px;
    padding-bottom: 239px;
  }
  .careers-page section.top .top__content h1 {
    margin-bottom: 70px;
  }
  .careers-page section.top .top__content p {
    margin-bottom: 70px;
  }
  .careers-page section.top .top__img img {
    width: 1260px;
    transform: translate(-14%, 28%);
  }
}
@media (min-width: 1920px) {
  .careers-page section.top {
    min-height: 700px;
  }
  .careers-page section.top .top__content {
    padding-top: 119px;
    padding-bottom: 149px;
  }
  .careers-page section.top .top__content h1 {
    margin-bottom: 60px;
    text-transform: capitalize;
  }
  .careers-page section.top .top__content p {
    margin-bottom: 119px;
  }
  .careers-page section.top .top__img img {
    width: 1410px;
    transform: translate(-9%, 35%);
  }
}
/* ==============================================================================================================================
   SECTION POSITIONS 
   ============================================================================================================================== */

.positions {
  padding: 40px 0;
  background-color: var(--color-light);
  position: relative;
}

h2 {
  color: var(--color-dark);
  text-align: center;
  font-weight: bold;
  font-size: var(--fs-h2);
}

.after--title__line {
  position: relative;
  width: 100%;
  max-width: 660px;
  height: 2px;
  background-color: var(--color-red);
  margin: auto;
}

.after--title__line::before,
.after--title__line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 6px;
  height: 6px;
  background-color: var(--color-red);
  transform: rotate(45deg);
}

.after--title__line::after {
  right: 0;
}

.positions__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.positions__list > div {
  flex-direction: column;
}

.positions .swiper-button-prev,
.positions .swiper-button-next {
  display: none;
}
.positions__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 10px 20px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

/* Ховаємо картинку на мобілці і планшеті */
.positions__item-img {
  display: none;
}

.positions__item h3 {
  text-transform: uppercase;
  color: var(--color-dblue);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 100%;
  grid-column: 1 / 5;
  grid-row: 1 / 2;
  margin: 0;
  font-weight: 800;
}

.positions__item-link {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-border-blue);
  border-style: solid;
  border-width: 1px;
  border-radius: 6px;
}
.positions__item-link span {
  display: flex;
  color: var(--color-border-blue);
  font-size: 0;
  width: 20px;
  height: 1px;
  background-color: var(--color-border-blue);
  position: relative;
}
.positions__item-link span::before,
.positions__item-link span::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 1px;
  height: 5px;
  background-color: var(--color-border-blue);
}
.positions__item-link span::before {
  transform: rotate(45deg);
}
.positions__item-link span::after {
  transform: rotate(-45deg);
  top: -4px;
}

.positions__item .positions__item-info {
  font-size: clamp(14px, calc(9.714px + 1.339vw), 20px);
  color: var(--color-dark);
  grid-column: 1 / 6;
  grid-row: 2 / 3;
  display: block;
  gap: 15px;
}

.positions__item .positions__item-info span:first-child {
  border-right: 1px solid rgba(0, 0, 0, 1);
  padding-right: 10px;
  margin-right: 10px;
}
.positions .btn-wrapp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ==========================================
   TABLET (від 768px - підстав свій брейкпоінт)
   ========================================== */
@media (min-width: 768px) {
  /* Виправляємо обрізання (Скрін 5) */
  /* .positions {
    overflow: hidden;
  } */
  .positions .container {
    overflow: visible !important;
  }
  .positions .positions__list .slick-list {
    overflow: visible;
  }
  .positions .positions__list .slick-list .slick-track {
    display: flex;
    align-items: center;
    min-height: 240px;
  }

  /* Ширина всього слайда */
  .positions .positions__list .slick-slide {
    width: 193px;
    margin: 0 5px; /* Відступи між картками (можеш регулювати) */
    transform: none !important; /* Перебиваємо старий scale, якщо лишився */
  }

  /* Розміри картки у спокої */
  .positions .positions__item {
    width: 100%;
    height: 196px;
    transition: height 0.4s ease; /* Плавна зміна висоти */
  }

  /* Збільшена висота АКТИВНОЇ картки */
  .positions .positions__list .slick-center .positions__item {
    height: 240px;
  }
  .positions::before {
    content: "";
    position: absolute;
    display: flex;
    top: -38px;
    left: 0;
    width: 100%;
    height: 38px;
    background-color: var(--color-light);
    z-index: 2;
    border-radius: 50px 50px 0 0;
  }

  .positions .positions__item--wrapp {
    background-color: #d1d2d6;
    border-radius: 14px;
  }

  .positions .positions__list .positions__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 195px;
    padding: 8%;
    color: var(--color-light);
  }
  .positions .positions__list .positions__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 45%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(9, 17, 54, 0) 0%,
      rgba(11, 11, 51, 1) 100%
    );
    transition: opacity 0.4s ease;
  }

  .positions .positions__list .slick-center .positions__item::before {
    height: 55%;
    background: linear-gradient(
      180deg,
      rgba(9, 17, 54, 0) 0%,
      rgba(244, 15, 62, 1) 100%
    );
  }
  .positions .positions__list .positions__item h3,
  .positions .positions__list .positions__item .positions__item-info {
    color: var(--color-light);
    font-weight: 500;
    line-height: 110%;
  }
  .positions .positions__list .positions__item h3 {
    font-size: 22px;
    z-index: 2;
  }
  .positions .positions__list .slick-center .positions__item h3 {
    font-size: 21px;
    font-weight: 800;
  }
  .positions .positions__list .positions__item .positions__item-info {
    font-size: 10px;
    display: none;
  }
  .positions .positions__list .positions__item a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: none;
  }
  .positions .positions__list .positions__item a span {
    display: none;
  }

  .positions
    .positions__list
    .slick-center
    .positions__item
    .positions__item-info {
    display: flex;
    z-index: 2;
    gap: 0;
    width: 100%;
  }
  .positions .positions__list .slick-center .positions__item-info span {
    width: min-content;
  }
  .positions
    .positions__list
    .slick-center
    .positions__item-info
    span:first-child {
    border-right: 1px solid rgba(255, 255, 255, 1);
  }
  .positions .positions__item-img {
    display: flex;
    position: absolute;
    z-index: 0;
    width: 100%;
    top: -20%;
  }

  .positions .slick-center .positions__item-img {
    top: -15%;
  }

  .positions .btn-wrapp {
    width: 100%;
    justify-content: space-between;
    margin-top: 50px;
  }
  .positions .slick-btns {
    display: flex;
    gap: 10px;
  }
  .positions .slick-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, 1);
  }
  .positions .slick-btns button span {
    display: flex;
    width: 19px;
    height: 1px;
    position: relative;
    background-color: #000;
  }
  .positions .slick-btns button.slick-next span {
    transform: rotate(180deg);
  }
  .positions .slick-btns button span::before,
  .positions .slick-btns button span::after {
    content: "";
    display: flex;
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #000;
    left: -2px;
  }
  .positions .slick-btns button span::before {
    transform: rotate(40deg);
    top: 3px;
  }
  .positions .slick-btns button span::after {
    transform: rotate(-40deg);
    top: -3px;
  }
}
/* =========================================
   ЕКРАНИ 1200px і більше (Обмежуємо слайдер)
   ========================================= */
@media (min-width: 1200px) {
  .positions .container {
    overflow: hidden !important; /* Повертаємо обрізання по краях контейнера */
  }

  /* Якщо хочеш, щоб слайди всередині рівномірно розподілилися без виходу за межі: */
  .positions .positions__list .slick-list {
    overflow: hidden;
    padding: 0 !important; /* Прибираємо centerPadding, якщо він був */
  }
}
/* ==========================================
   DESKTOP (від 1440px)
   ========================================== */
@media (min-width: 1440px) {
  .positions .positions__list .slick-list .slick-track {
    min-height: 264px;
  }
  .positions .positions__list .slick-slide {
    width: 213px;
  }
  .positions .positions__item {
    height: 216px;
  }
  .positions .positions__list .slick-center .positions__item {
    height: 264px;
  }
}

/* =========================================
   ЕКРАНИ 1920px і більше
   ========================================= */
@media (min-width: 1920px) {
  .positions .positions__list .slick-list .slick-track {
    min-height: 345px;
  }
  .positions .positions__list .slick-slide {
    width: 276px;
  }
  .positions .positions__item {
    height: 280px;
  }
  .positions .positions__list .slick-center .positions__item {
    height: 345px; /* Задав пропорційно. Якщо в макеті є точна цифра — зміни її тут */
  }
}

/* ==============================================================================================================================
   SECTION WHO WE 
   ============================================================================================================================== */

.who-we {
  background-color: var(--color-bg-blue);
  overflow: hidden; /* Обрізає все, що вилазить за межі секції (низ та боки) */
  padding-top: 34px; /* Зверху відступ є, знизу забираємо (буде на inner) */
}

.who-we__inner {
  /* НАЙГОЛОВНІШЕ: Це тримає кубок в межах 1440px, щоб він не літав по всьому монітору */
  position: relative;
  /* Твій точний відступ для мобілки від тексту до низу */
  padding-bottom: 210px;
}

.who-we__content {
  position: relative;
  z-index: 2; /* Текст завжди поверх усього */
}

.who-we h2 {
  margin-bottom: 20px;
  color: var(--color-light);
}

.who-we__text {
  margin-bottom: 15px;
  color: var(--color-light);
  font-size: clamp(14px, calc(9.714px + 1.339vw), 20px);
  line-height: 110%;
}

/* АБСОЛЮТНИЙ КУБОК (Мобілка - по центру знизу) */
.who-we__img {
  position: absolute;
  bottom: -205px;
  left: 40%;
  transform: translateX(-50%);
  width: 360px;
  z-index: 1;
}

.who-we__img img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2; /* ВАЖЛИВО: Кубок поверх плями */
}

/* ЧЕРВОНА ПЛЯМА */
.who-we__img::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background-color: var(--color-red);
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.8;
}

/* ==========================================
   TABLET (від 768px)
   ========================================== */
@media (min-width: 768px) {
  .who-we {
    padding: 45px 0; /* Повертаємо класичні відступи секції */
  }

  .who-we__inner {
    padding-bottom: 0; /* Забираємо мобільну дірку знизу */
    min-height: 400px; /* Задаємо висоту, щоб кубку було де стати і він не наліз на текст */
    display: flex;
    align-items: center; /* Центруємо текст по вертикалі */
  }

  .who-we__content {
    max-width: 54%; /* Строго обмежуємо текст, щоб він не ліз на кубок */
  }

  .who-we__content h2 {
    text-align: left;
  }
  .who-we__img {
    left: auto;
    transform: none;
    right: -100px;
    bottom: -175px;
    width: 490px;
  }

  .who-we__img::before {
    width: 300px;
    height: 300px;
    filter: blur(100px);
  }
}

/* ==========================================
   DESKTOP (від 1200px)
   ========================================== */
@media (min-width: 1200px) {
  .who-we {
    padding: 80px 0;
  }

  .who-we__content {
    max-width: 55%;
  }
  .who-we__content h2 {
    margin-bottom: 50px;
  }
  .who-we__img {
    right: 0;
    bottom: 0;
    width: 510px;
    transform: translate(-5%, 34%);
  }
  .who-we__img::before {
    width: 550px;
    height: 550px;
    filter: blur(160px);
    opacity: 0.8;
    top: 40%;
  }
}

/* ==========================================
   DESKTOP LARGE (від 1440px)
   ========================================== */
@media (min-width: 1440px) {
  .who-we {
    padding: 152px 0 130px; /* Збільшуємо відступи, щоб кубок не ліз на текст і не був таким "втопленим" */
  }
  .who-we__content {
    max-width: 50%;
  }

  .who-we__img {
    right: -10px; /* Кубок солідно вилазить за 1440px контейнер */
    bottom: -80px;
    width: 750px; /* Максимальний розмір */
  }

  .who-we__img::before {
    width: 550px;
    height: 550px;
    filter: blur(140px); /* Розмазуємо пляму сильніше */
  }
}

@media (min-width: 1920px) {
  .who-we {
    padding: 142px 0 100px; /* Збільшуємо відступи, щоб кубок не ліз на текст і не був таким "втопленим" */
  }
  .who-we__img::before {
    width: 650px;
    height: 650px;
  }
}

/* ==============================================================================================================================
   SECTION WHY US 
   ============================================================================================================================== */
.why-us {
  padding: 40px 0;
  background-color: var(--color-light);
}
.why-us h2 {
  line-height: 110%;
  margin-bottom: 20px;
}
.whyUsSlider {
  padding-bottom: 52px !important;
}
.whyUsSlider .slick-slide {
  margin: 0 5px;
}
.whyUsSlider .why-us--block {
  color: var(--color-dark);
}
.whyUsSlider .why-us--block h4 {
  display: flex;
  align-items: center;
  align-items: center;
  font-size: 12px;
  line-height: 110%;
  font-weight: 800;
  background-color: var(--color-red);
  min-height: 100px;
  max-width: 230px;
  border-radius: 10px;
  padding: 10px;
  text-transform: uppercase;
  color: var(--color-light);
  transition: all 0.4s ease;
}

.whyUsSlider .why-us--block h4:hover {
  background-color: var(--color-bg-blue);
}

.whyUsSlider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.whyUsSlider .slick-dots li {
  display: flex;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: var(--color-border-blue);
  opacity: 1;
  font-size: 0;
}
.whyUsSlider .slick-dots li.slick-active {
  background-color: var(--color-bg-blue);
  width: 12px;
  height: 12px;
}

/* ==========================================
   TABLET (від 768px)
   ========================================== */
@media (min-width: 768px) {
  .why-us h2 {
    margin-bottom: 40px;
    text-align: left;
  }
  .whyUsSlider {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25%;
  }
  .whyUsSlider .why-us--block {
    width: 32.5%;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .whyUsSlider .why-us--block h4 {
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
/* ==========================================
   DESKTOP (від 1200px)
   ========================================== */
@media (min-width: 1200px) {
  .whyUsSlider {
    gap: 0.8%;
  }
  .whyUsSlider {
    justify-content: space-between;
  }
  .whyUsSlider .why-us--block {
    width: 16%;
  }
  .whyUsSlider .why-us--block h4 {
    min-height: 140px;
  }
}

/* ==========================================
   DESKTOP LARGE (від 1440px)
   ========================================== */
@media (min-width: 1440px) {
  .why-us h2 {
    margin-bottom: 60px;
  }
  .whyUsSlider .why-us--block h4 {
    min-height: 166px;
  }
}

/* ==============================================================================================================================
   SECTION CONTACTS 
   ============================================================================================================================== */

section.contacts {
  background-color: var(--color-bg-blue);
  color: var(--color-light);
  padding-bottom: 30px;
  position: relative;
}
section.contacts::before {
  content: "";
  display: flex;
  height: 38px;
  width: 100%;
  position: absolute;
  top: -37px;
  border-radius: 50px 50px 0 0;
  background-color: var(--color-bg-blue);
}

section.contacts h2 {
  color: var(--color-light);
  margin-bottom: 15px;
}

section.contacts .after--title__line {
  margin-bottom: 30px;
}
section.contacts li {
  margin-bottom: 24px;
}
section.contacts li.soc-media a {
  display: flex;
  gap: 15px;
  font-size: 14px;
}
section.contacts li.soc-media .soc-media_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 100%;
  background-color: var(--color-light);
}
section.contacts li.soc-media .soc-media_icon svg {
  width: 60%;
}
@media (min-width: 768px) {
  section.contacts h2 {
    text-align: left;
    margin-bottom: 48px;
  }
  .after--title__line {
    display: none;
  }
  section.contacts ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  section.contacts li.soc-media a {
    gap: 10px;
  }
}

@media (min-width: 1200px) {
  section.contacts li.soc-media a {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  section.contacts li.soc-media a {
    font-size: 20px;
  }
}
/* ==============================================================================================================================
   PAGE LIST CAREER
   ============================================================================================================================== */
.careers {
  padding: 40px 0;
  background-color: var(--color-light);
}

/* ==============================================================================================================================
   SECTION FOOTER
   ============================================================================================================================== */

footer {
  padding: 30px 0 70px;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

footer nav li {
  margin-bottom: 20px;
}

footer nav li a {
  font-size: 18px;
}

footer .custom-logo-link {
  display: flex;
  justify-content: center;
}
.footer .footer__inner .custom-logo-link img {
  max-width: 192px;
  height: auto;
}
.footer .footer__inner .soc-netw {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.footer .footer__inner .soc-netw a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: var(--color-light);
}

.footer .footer__inner .soc-netw a svg {
  width: 50%;
}
@media (min-width: 768px) {
  footer {
    padding: 75px 0 48px;
  }
  .footer .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer .footer__inner nav {
    order: 2;
  }
  footer nav li a {
    font-size: 20px;
  }
  .footer .footer__inner .footer-menu {
    display: flex;
    gap: 20px;
  }
  .footer .footer__inner .custom-logo-link {
    order: 1;
  }
  .footer .footer__inner .custom-logo-link img {
    width: 170px;
  }
  .footer .footer__inner .soc-netw {
    order: 3;
    justify-content: flex-end;
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .footer .footer__inner .custom-logo-link img {
    width: 192px;
  }
}

/* ==========================================================================
   SECTION: HOME PAGE ONLY (Isolating via body.home)
   ========================================================================== */
/* ==========================================
   SECTION TOP: HOME ONLY (CORRECTED BG)
   ========================================== */
.home .top {
  position: relative;
  z-index: 0;
  min-height: 480px;
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 68px;
  text-align: center;
  background-image: url("../images/wandu/bg/compressed-new/xs-320x470.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

@media (min-width: 576px) {
  .home .top {
    min-height: 613px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .home .top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
    background-image: -webkit-image-set(
      url(../images/wandu/bg/compressed-new/sm-768x615.avif) 1x,
      url(../images/wandu/bg/compressed-new/sm-768x615.webp) 2x,
      url(../images/wandu/bg/compressed-new/sm-768x615.jpg) 2x
    );
    background-image: -webkit-image-set(
      "../images/wandu/bg/compressed-new/sm-768x615.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/sm-768x615.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/sm-768x615.jpg" 2x type("image/jpg")
    );
    background-image: -webkit-image-set(
      url("../images/wandu/bg/compressed-new/sm-768x615.avif") 1x
        type("image/avif"),
      url("../images/wandu/bg/compressed-new/sm-768x615.webp") 2x
        type("image/webp"),
      url("../images/wandu/bg/compressed-new/sm-768x615.jpg") 2x
        type("image/jpg")
    );
    background-image: image-set(
      "../images/wandu/bg/compressed-new/sm-768x615.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/sm-768x615.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/sm-768x615.jpg" 2x type("image/jpg")
    );
    background-position: center;
  }
}

@media (min-width: 1200px) {
  .home .top {
    min-height: 610px;
    background-image: -webkit-image-set(
      url(../images/wandu/bg/compressed-new/lg-1200x614.avif) 1x,
      url(../images/wandu/bg/compressed-new/lg-1200x614.webp) 2x,
      url(../images/wandu/bg/compressed-new/lg-1200x614.jpg) 2x
    );
    background-image: -webkit-image-set(
      "../images/wandu/bg/compressed-new/lg-1200x614.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/lg-1200x614.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/lg-1200x614.jpg" 2x type("image/jpg")
    );
    background-image: -webkit-image-set(
      url("../images/wandu/bg/compressed-new/lg-1200x614.avif") 1x
        type("image/avif"),
      url("../images/wandu/bg/compressed-new/lg-1200x614.webp") 2x
        type("image/webp"),
      url("../images/wandu/bg/compressed-new/lg-1200x614.jpg") 2x
        type("image/jpg")
    );
    background-image: image-set(
      "../images/wandu/bg/compressed-new/lg-1200x614.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/lg-1200x614.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/lg-1200x614.jpg" 2x type("image/jpg")
    );
  }
}

@media (min-width: 1440px) {
  .home .top {
    min-height: 750px;
    background-image: -webkit-image-set(
      url(../images/wandu/bg/compressed-new/dt-1441x751.avif) 1x,
      url(../images/wandu/bg/compressed-new/dt-1441x751.webp) 2x,
      url(../images/wandu/bg/compressed-new/dt-1441x751.jpg) 2x
    );
    background-image: -webkit-image-set(
      "../images/wandu/bg/compressed-new/dt-1441x751.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/dt-1441x751.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/dt-1441x751.jpg" 2x type("image/jpg")
    );
    background-image: -webkit-image-set(
      url("../images/wandu/bg/compressed-new/dt-1441x751.avif") 1x
        type("image/avif"),
      url("../images/wandu/bg/compressed-new/dt-1441x751.webp") 2x
        type("image/webp"),
      url("../images/wandu/bg/compressed-new/dt-1441x751.jpg") 2x
        type("image/jpg")
    );
    background-image: image-set(
      "../images/wandu/bg/compressed-new/dt-1441x751.avif" 1x type("image/avif"),
      "../images/wandu/bg/compressed-new/dt-1441x751.webp" 2x type("image/webp"),
      "../images/wandu/bg/compressed-new/dt-1441x751.jpg" 2x type("image/jpg")
    );
  }
}

@media (min-width: 1920px) {
  .home .top {
    background-image: -webkit-image-set(
      url(../images/wandu/bg/compressed-new/fhd-1920x750-22.avif) 1x,
      url(../images/wandu/bg/compressed-new/fhd-1920x750-22.webp) 2x,
      url(../images/wandu/bg/compressed-new/fhd-1920x750-22.jpg) 2x
    );
    background-image: -webkit-image-set(
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.avif" 1x
        type("image/avif"),
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.webp" 2x
        type("image/webp"),
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.jpg" 2x
        type("image/jpg")
    );
    background-image: -webkit-image-set(
      url("../images/wandu/bg/compressed-new/fhd-1920x750-22.avif") 1x
        type("image/avif"),
      url("../images/wandu/bg/compressed-new/fhd-1920x750-22.webp") 2x
        type("image/webp"),
      url("../images/wandu/bg/compressed-new/fhd-1920x750-22.jpg") 2x
        type("image/jpg")
    );
    background-image: image-set(
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.avif" 1x
        type("image/avif"),
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.webp" 2x
        type("image/webp"),
      "../images/wandu/bg/compressed-new/fhd-1920x750-22.jpg" 2x
        type("image/jpg")
    );
  }
}

.home .top::before {
  --radius: 20px;
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  width: 100%;
  height: var(--radius);
  background-color: #fff;
}

@media (min-width: 576px) {
  .home .top::before {
    --radius: 40px;
  }
}

@media (min-width: 1200px) {
  .home .top::before {
    bottom: -1px;
  }
}

.home .top__absolute-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(34.79%, rgba(0, 0, 0, 0)),
    color-stop(49.4%, rgba(0, 0, 0, 0.53)),
    color-stop(103.09%, rgba(0, 0, 0, 0.6))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 34.79%,
    rgba(0, 0, 0, 0.53) 49.4%,
    rgba(0, 0, 0, 0.6) 103.09%
  ); */

  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(35.79%, rgba(0, 0, 0, 0)),
    color-stop(48.4%, rgba(0, 0, 0, 0.63)),
    color-stop(103.09%, rgba(0, 0, 0, 0.6))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 35.79%,
    rgba(0, 0, 0, 0.63) 48.4%,
    rgba(0, 0, 0, 0.6) 103.09%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35.79%,
    rgba(0, 0, 0, 0.63) 48.4%,
    rgba(0, 0, 0, 0.6) 103.09%
  );
}

@media (min-width: 768px) {
  .home .top__absolute-bg {
    display: none;
  }
}

.home .top__inner {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .home .top__inner {
    max-width: 380px;
  }
}

@media (min-width: 1200px) {
  .home .top__inner {
    max-width: 400px;
  }
}

@media (min-width: 1440px) {
  .home .top__inner {
    max-width: 520px;
  }
}

@media (min-width: 1920px) {
  .home .top__inner {
    max-width: 540px;
  }
}

.home .top p,
.home .top h1 {
  color: #fff;
}

.home .top h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: calc(21px + 23 * ((100vw - 320px) / 1600));
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .home .top h1 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .home .top h1 {
    max-width: 100%;
    margin-bottom: 16px;
    margin-left: 0;
    text-shadow:
      0 0 1px black,
      0 0 1px black;
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .home .top h1 {
    margin-bottom: 30px;
    font-size: 40px;
  }
}

@media (min-width: 1440px) {
  .home .top h1 {
    margin-bottom: 20px;
    font-size: 48px;
  }
}

.home .top h1 + p {
  margin-bottom: 20px;
  font-size: calc(13px + 17 * ((100vw - 320px) / 1600));
  line-height: 1.28;
  /* 128% */
}

@media (min-width: 768px) {
  .home .top h1 + p {
    margin-bottom: 50px;
    line-height: 1.1;
    font-size: 18px;
    max-width: 80%;
  }
}

@media (min-width: 1200px) {
  .home .top h1 + p {
    font-size: 20px;
  }
}

@media (min-width: 1440px) {
  .home .top h1 + p {
    font-size: 24px;
  }
}

.home .top .button {
  max-width: 280px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .home .top .button {
    margin-bottom: 0px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 0;
    line-height: 52px;
  }
}

@media (min-width: 1200px) {
  .home .top .button {
    line-height: 58px;
    max-width: unset;
  }
}

@media (min-width: 1920px) {
  .home .top .button {
    line-height: 48px;
  }
}

.home .top .flip-anim {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}

.home .top .animated {
  -webkit-animation: flipAnim 0.5s ease forwards;
  animation: flipAnim 0.5s ease forwards;
}

@-webkit-keyframes flipAnim {
  0% {
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
  }
  50% {
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
}

@keyframes flipAnim {
  0% {
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
  }
  50% {
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
}

/* ==========================================================================
   ADVANTAGES SECTION: ТОЧНА КОПІЯ ОРИГІНАЛУ (body.home)
   ========================================================================== */

.home .advantages {
  padding-bottom: 30px;
  color: #000;
  background-color: #fff;
  scroll-margin-top: 60px;
}

@media (min-width: 576px) {
  .home .advantages {
    scroll-margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .home .advantages {
    padding-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .home .advantages {
    padding-bottom: 20px;
  }
}

@media (min-width: 1920px) {
  .home .advantages {
    padding-bottom: 70px;
  }
}

.home .advantages h2 {
  position: relative;
  text-align: center;
}

.home .advantages h2,
.home .advantages h3 {
  color: #000;
  text-align: center;
}

.home .advantages h2,
.home .advantages h3 {
  margin-bottom: 20px;
}

.home .advantages__absolute-bg {
  position: relative;
  height: clamp(130px, 35vw, 180px);
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
}

@media (min-width: 576px) {
  .home .advantages__absolute-bg {
    padding-left: 20px;
  }
}

@media (min-width: 1200px) {
  .home .advantages__absolute-bg {
    height: clamp(180px, 18vw, 240px);
    padding-left: 25px;
  }
}

@media (min-width: 1920px) {
  .home .advantages__absolute-bg {
    height: clamp(240px, 18vw, 280px);
    padding-left: 30px;
  }
}

.home .advantages__absolute-bg img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home .advantages h4 {
  --lh: 1.1em;
  --max-lines: 3;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: var(--lh);
}

@media (min-width: 768px) {
  .home .advantages h4 {
    font-size: 10.5px;
  }
}

@media (min-width: 1200px) {
  .home .advantages h4 {
    font-size: 12.2px;
  }
}

@media (min-width: 1440px) {
  .home .advantages h4 {
    font-size: 16px;
  }
}

.home .advantages h4 span.fade-ended {
  display: inline-block;
  position: relative;
  height: calc(var(--lh) * var(--max-lines));
}

.home .advantages h4 span.fade-ended::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: var(--lh);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, white)
  );
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%);
}

.home .advantages h4 span.dotts-ended {
  display: inline-block;
  /* стили для мноточия '…' */
  /* спрятать текст если у более N строк */
  overflow: hidden;
  /* для установки '…' в абсолютную позицию */
  position: relative;
  /* используйте это значение для расчёта высоты блока */
  line-height: var(--lh);
  /* max-height = line-height (1.2) * число строк (3) */
  max-height: calc(var(--lh) * var(--max-lines));
  /* исправлиление проблемы когда последнее слово не соединяется с правой стороны */
  /* место для многоточия '…' */
  padding-right: 1em;
}

.home .advantages h4 span.dotts-ended::after {
  content: "";
  position: absolute;
  /* установить позицию в правый нижний угол блока */
  right: 0;
  /* установить width и height */
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  /* цвет фона перед блоком */
  background: white;
}

.home .advantages h4 span.dotts-ended::before {
  /* многоточие в конце */
  content: "…";
  /* абсолютное позиционирование */
  position: absolute;
  /* установить позицию в правый нижний угол блока */
  right: 0;
  bottom: 0;
}

.home .advantages p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

@media (min-width: 768px) {
  .home .advantages p {
    font-size: 10.5px;
  }
}

@media (min-width: 1200px) {
  .home .advantages p {
    font-size: 12.2px;
  }
}

@media (min-width: 1440px) {
  .home .advantages p {
    font-size: 16px;
  }
}

.home .advantages .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.home .advantages .slick-list {
  overflow: hidden;
}

@media (min-width: 768px) {
  .home .advantages .slick-list {
    overflow: hidden;
  }
}

.home .advantages .slick-list.draggable {
  margin-left: -10px;
}

@media (min-width: 576px) {
  .home .advantages .slick-list.draggable {
    margin-left: -20px;
  }
}

@media (min-width: 768px) {
  .home .advantages .slick-list.draggable {
    margin-left: 0px;
  }
}

.home .advantages .slick-slide > div {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.home .advantages__image {
  margin-bottom: 16px;
  min-height: 102px;
}

@media (min-width: 768px) {
  .home .advantages__image {
    min-height: auto;
  }
}

.home .advantages__slide {
  min-width: 0;
  padding: 20px 0 0;
}

@media (min-width: 768px) {
  .home .advantages__slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
  }
}

.home .advantages__item {
  padding: 0 5px 0 5px;
  max-width: 50%;
  text-align: center;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  margin-bottom: 40px;
}
.home .advantages__item svg {
  margin: auto;
}

@media (min-width: 768px) {
  .home .advantages__item {
    padding: 5px 10px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    max-width: unset;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .home .advantages__item {
    margin-bottom: 35px;
  }
}

.home .advantages__item .home .advantages__svg-anim {
  fill: #f40f3e;
}

@media (min-width: 768px) {
  .home .advantages__item .home .advantages__svg-anim {
    fill: #fff;
  }
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(1)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(2)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(3)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(4)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(5)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(6)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(7)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.home
  .advantages__item.home
  .advantages__item--animated:nth-child(8)
  .home
  .advantages__svg-anim {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.home
  .advantages__item.home
  .advantages__item--animated
  svg
  .home
  .advantages__svg-anim {
  -webkit-animation-name: moveColor;
  animation-name: moveColor;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes moveColor {
  0% {
    -webkit-transform: translate(-3px, -3px);
    transform: translate(-3px, -3px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    fill: #f40f3e;
  }
}

@keyframes moveColor {
  0% {
    -webkit-transform: translate(-3px, -3px);
    transform: translate(-3px, -3px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    fill: #f40f3e;
  }
}

.home .advantages__item.home .advantages__item--1 .home .advantages__image svg {
  width: 107px;
  height: 108px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--1
    .home
    .advantages__image
    svg {
    width: 69px;
    height: 70px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--1
    .home
    .advantages__image
    svg {
    width: 82px;
    height: 83px;
  }
}

.home .advantages__item.home .advantages__item--2 .home .advantages__image svg {
  width: 103px;
  height: 107px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--2
    .home
    .advantages__image
    svg {
    width: 67px;
    height: 69px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--2
    .home
    .advantages__image
    svg {
    width: 79px;
    height: 82px;
  }
}

.home .advantages__item.home .advantages__item--3 .home .advantages__image svg {
  width: 109px;
  height: 100px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--3
    .home
    .advantages__image
    svg {
    width: 70px;
    height: 64px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--3
    .home
    .advantages__image
    svg {
    width: 83px;
    height: 76px;
  }
}

.home .advantages__item.home .advantages__item--4 .home .advantages__image svg {
  width: 102px;
  height: 97px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--4
    .home
    .advantages__image
    svg {
    width: 67px;
    height: 64px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--4
    .home
    .advantages__image
    svg {
    width: 79px;
    height: 76px;
  }
}

.home .advantages__item.home .advantages__item--5 .home .advantages__image svg {
  width: 90px;
  height: 96px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--5
    .home
    .advantages__image
    svg {
    width: 76px;
    height: 81px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--5
    .home
    .advantages__image
    svg {
    width: 91px;
    height: 85px;
  }
}

@media (min-width: 1440px) {
  .home
    .advantages__item.home
    .advantages__item--5
    .home
    .advantages__image
    svg {
    width: 115px;
    height: 108px;
  }
}

.home .advantages__item.home .advantages__item--6 .home .advantages__image svg {
  width: 102px;
  height: 96px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--6
    .home
    .advantages__image
    svg {
    width: 56px;
    height: 71px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--6
    .home
    .advantages__image
    svg {
    width: 66px;
    height: 85px;
  }
}

@media (min-width: 1440px) {
  .home
    .advantages__item.home
    .advantages__item--6
    .home
    .advantages__image
    svg {
    width: 84px;
    height: 108px;
  }
}

.home .advantages__item.home .advantages__item--7 .home .advantages__image svg {
  width: 102px;
  height: 96px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--7
    .home
    .advantages__image
    svg {
    width: 66px;
    height: 82px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--7
    .home
    .advantages__image
    svg {
    width: 87px;
    height: 105px;
  }
}

.home .advantages__item.home .advantages__item--8 .home .advantages__image svg {
  width: 99px;
  height: 96px;
}

@media (min-width: 768px) {
  .home
    .advantages__item.home
    .advantages__item--8
    .home
    .advantages__image
    svg {
    width: 67px;
    height: 64px;
  }
}

@media (min-width: 1200px) {
  .home
    .advantages__item.home
    .advantages__item--8
    .home
    .advantages__image
    svg {
    width: 79px;
    height: 75px;
  }
}

@media (min-width: 1440px) {
  .home
    .advantages__item.home
    .advantages__item--8
    .home
    .advantages__image
    svg {
    width: 100px;
    height: 95px;
  }
}

.home .advantages__reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 100%;
}

@media (min-width: 768px) {
  .home .advantages__reg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.home .advantages__reg button,
.home .advantages__reg a {
  min-width: 280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home .advantages__reg button,
  .home .advantages__reg a {
    padding: 18px 10px;
    margin: 0;
  }
}

.home .advantages__reg button {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .home .advantages__reg button {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.home .advantages__reg a.button {
  background: transparent;
  border: 2px solid #0253fd;
  color: #000;
  font-weight: 400;
  -webkit-transition:
    background-color 0.3s linear,
    color 0.3s linear;
  transition:
    background-color 0.3s linear,
    color 0.3s linear;
}

.home .advantages__reg a.button:hover {
  background-color: #0253fd;
  color: #fff;
}

.home .advantages .slick-dots {
  position: relative;
  z-index: 1;
  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;
  width: 100%;
}

.home .advantages .slick-dots li {
  margin: 0 5px;
}

@media (min-width: 768px) {
  .home .advantages .slick-dots li {
    margin: 0 7px;
  }
}

.home .advantages .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-size: 0;
  background-color: #d9d9d9;
  border: none;
  -webkit-transition:
    background-color 0.3s linear,
    width 0.3s linear,
    height 0.3s linear;
  transition:
    background-color 0.3s linear,
    width 0.3s linear,
    height 0.3s linear;
  cursor: pointer;
}

@media (min-width: 768px) {
  .home .advantages .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}

.home .advantages .slick-dots li.slick-active button {
  width: 15px;
  height: 15px;
  background-color: #454545;
}

@media (min-width: 768px) {
  .home .advantages .slick-dots li.slick-active button {
    width: 20px;
    height: 20px;
  }
}
/* ==========================================================================
   PRODUCTS SECTION: ПОВНЕ ВІДНОВЛЕННЯ ТВОЄЇ ЛОГІКИ
   ========================================================================== */

.products {
  position: relative;
  scroll-margin-top: 50px;
}

@media (min-width: 768px) {
  .products__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.bu {
  padding: 40px 0;
}

.bu .content {
  padding-top: 120px;
}

@media (min-width: 768px) {
  .bu .content {
    padding-top: 0;
  }
}

@media (min-width: 1440px) {
  .bu .content {
    margin-left: 0;
  }
}
.cu .logo__svg,
.bu .logo__svg {
  width: auto;
  height: 29px;
}

@media (min-width: 768px) {
  .cu .logo__svg,
  .bu .logo__svg {
    height: 36px;
  }
}

@media (min-width: 1200px) {
  .cu .logo__svg,
  .bu .logo__svg {
    /* width: 233px; */
    height: 42px;
    max-height: 40px;
  }
}

.cu {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .cu .content {
    margin-left: 30px;
  }
}

@media (min-width: 1200px) {
  .cu .content {
    margin-left: 50px;
  }
}

.cu,
.bu {
  min-height: 500px;
}

@media (min-width: 768px) {
  .cu,
  .bu {
    min-height: 600px;
  }
}

@media (min-width: 1440px) {
  .cu,
  .bu {
    min-height: 720px;
  }
}

@media (min-width: 1920px) {
  .cu,
  .bu {
    min-height: 730px;
  }
}

@media (min-width: 1200px) {
  .cu .content,
  .bu .content {
    padding-top: 133px;
  }
}

@media (min-width: 1440px) {
  .cu .content,
  .bu .content {
    padding-top: 160px;
  }
}

@media (min-width: 1440px) {
  .cu .content,
  .bu .content {
    padding-top: 150px;
  }
}

.cu .logo,
.bu .logo {
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .cu .logo,
  .bu .logo {
    margin-bottom: 47px;
  }
}

@media (min-width: 1200px) {
  .cu .logo,
  .bu .logo {
    margin-bottom: 50px;
  }
}

@media (min-width: 1920px) {
  .cu .logo,
  .bu .logo {
    margin-bottom: 40px;
  }
}

.cu h2,
.bu h2 {
  margin-bottom: 40px;
  font-size: calc(14px + 16 * ((100vw - 320px) / 1600));
  line-height: 1.1;
  max-width: clamp(70%, 360px, 500px);
  color: #fff;
  text-align: left;
}

@media (min-width: 993px) {
  .cu h2,
  .bu h2 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .cu h2,
  .bu h2 {
    margin-bottom: 30px;
  }
}

@media (min-width: 1440px) {
  .cu h2,
  .bu h2 {
    font-size: 24px;
  }
}

.cu .button,
.bu .button {
  text-align: center;
  font-size: 20px;
  background:
    linear-gradient(0deg, #f40f3e 0%, #f40f3e 100%),
    linear-gradient(266deg, #0254fd -5.06%, #0453fe 100.77%);
  max-width: 280px;
  width: 100%;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .cu .button,
  .bu .button {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.cu .button:disabled,
.bu .button:disabled {
  background: unset;
  background-color: #787878;
  cursor: not-allowed;
}

.cu .button:disabled::after,
.cu .button:disabled::before,
.bu .button:disabled::after,
.bu .button:disabled::before {
  display: none;
}

.cu .button:disabled span::after,
.cu .button:disabled span::before,
.bu .button:disabled span::after,
.bu .button:disabled span::before {
  display: none;
}

.cu .button:disabled:hover,
.bu .button:disabled:hover {
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.card {
  @media (min-width: 768px) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.card-content {
  @media (min-width: 768px) {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

.spacer {
  @media (min-width: 768px) {
    flex-grow: 1;
    max-height: 100px;
  }
  @media (min-width: 1200px) {
    max-height: 120px;
  }
  @media (min-width: 1440px) {
    max-height: 140px;
  }
}

.decor {
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .decor {
    width: 50%;
    height: 100%;
  }
}

.decor.decor--bu {
  top: 0;
  background:
    linear-gradient(244deg, #060be3 -6.57%, #0b41b3 132.83%),
    linear-gradient(246deg, #f40f3e -4.61%, #c9062e 110.4%), #f40f3e;
}

.decor.decor--cu {
  top: 50%;
  background: #0b0b33;
}

@media (min-width: 768px) {
  .decor.decor--cu {
    top: 0;
    right: 0;
    left: auto;
  }
}

.decor.decor--cu.decor--cu-loto .decor__item--loto {
  display: none;
}

.decor.decor--cu.decor--cu-loto .decor__item--loto-front {
  display: block;
}

.decor__item {
  position: absolute;
  background-repeat: no-repeat;
}

.decor__item img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.decor__item--football {
  top: -4%;
  right: -43px;
  width: 146px;
  height: 146px;
}

@media (min-width: 768px) {
  .decor__item--football {
    top: auto;
    right: 33px;
    bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .decor__item--football {
    top: -25px;
    right: auto;
    left: -25px;
    width: 170px;
    height: 170px;
  }
}

@media (min-width: 1440px) {
  .decor__item--football {
    width: 190px;
    height: 190px;
  }
}

@media (min-width: 1920px) {
  .decor__item--football {
    width: 228px;
    height: 228px;
  }
}

.decor__item--basketball {
  top: 10%;
  left: 40px;
  width: 72px;
  height: 72px;
}

@media (min-width: 576px) {
  .decor__item--basketball {
    left: 50px;
  }
}

@media (min-width: 768px) {
  .decor__item--basketball {
    right: 28px;
    left: auto;
    top: 26px;
  }
}

@media (min-width: 1200px) {
  .decor__item--basketball {
    top: 34px;
    left: 46%;
    width: 90px;
    height: 91px;
  }
}

@media (min-width: 1440px) {
  .decor__item--basketball {
    left: 62%;
    top: 54px;
    width: 100px;
    height: 94px;
  }
}

@media (min-width: 1920px) {
  .decor__item--basketball {
    left: 76%;
    top: 62px;
    width: 90px;
    height: 90px;
  }
}

.decor__item--volleyball {
  right: 8%;
  bottom: 8%;
  width: 88px;
  height: 88px;
}

@media (min-width: 768px) {
  .decor__item--volleyball {
    left: 40px;
    bottom: 204px;
  }
}

@media (min-width: 1200px) {
  .decor__item--volleyball {
    left: auto;
    right: 87px;
    bottom: 47px;
  }
}

@media (min-width: 1440px) {
  .decor__item--volleyball {
    right: 116px;
    bottom: 50px;
    width: 137px;
    height: 137px;
  }
}

@media (min-width: 1920px) {
  .decor__item--volleyball {
    right: 145px;
    bottom: 70px;
    width: 164px;
    height: 164px;
  }
}

.decor__item--amfootball {
  bottom: -20px;
  left: -28px;
  width: 167px;
  height: 111px;
  rotate: -129deg;
}

@media (min-width: 768px) {
  .decor__item--amfootball {
    bottom: -5px;
    left: -16px;
    width: 163px;
    height: 109px;
  }
}

@media (min-width: 1200px) {
  .decor__item--amfootball {
    width: 192px;
    height: 128px;
    bottom: 0px;
    left: 15px;
  }
}

@media (min-width: 1440px) {
  .decor__item--amfootball {
    width: 213px;
    height: 142px;
  }
}

@media (min-width: 1920px) {
  .decor__item--amfootball {
    width: 217px;
    height: 144px;
  }
}

.decor__item--tenis {
  display: none;
}

@media (min-width: 1200px) {
  .decor__item--tenis {
    top: 138px;
    right: 38px;
    display: block;
    width: 77px;
    height: 78px;
  }
}

@media (min-width: 1440px) {
  .decor__item--tenis {
    right: 47px;
    top: 41%;
    width: 98px;
    height: 100px;
  }
}

@media (min-width: 1920px) {
  .decor__item--tenis {
    right: 97px;
    top: 32%;
    width: 118px;
    height: 120px;
  }
}

.decor__item--cherry {
  bottom: 20px;
  left: 60px;
  width: 102px;
  height: 97px;
  -webkit-transform: rotate(-142deg);
  -ms-transform: rotate(-142deg);
  transform: rotate(-142deg);
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

@media (min-width: 768px) {
  .decor__item--cherry {
    width: 80px;
    height: 76px;
  }
}

@media (min-width: 1200px) {
  .decor__item--cherry {
    width: 170px;
    height: 161px;
    bottom: -20px;
    left: 32%;
  }
}

@media (min-width: 1440px) {
  .decor__item--cherry {
    left: 50px;
  }
}

@media (min-width: 1920px) {
  .decor__item--cherry {
    left: 60px;
    width: 189px;
    height: 179px;
  }
}

.decor__item--triangle {
  bottom: 30%;
  left: 4%;
  width: 75px;
  height: 64px;
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

@media (min-width: 768px) {
  .decor__item--triangle {
    left: 30px;
  }
}

@media (min-width: 1200px) {
  .decor__item--triangle {
    left: auto;
    top: 37px;
    right: 36%;
    width: 104px;
    height: 89px;
  }
}

@media (min-width: 1440px) {
  .decor__item--triangle {
    top: auto;
    bottom: 100px;
  }
}

@media (min-width: 1920px) {
  .decor__item--triangle {
    width: 115px;
    height: 99px;
  }
}

.decor__item--star {
  display: none;
}

@media (min-width: 1440px) {
  .decor__item--star {
    display: block;
    top: 80px;
    left: 40%;
    width: 90px;
    height: 86px;
  }
}

@media (min-width: 1920px) {
  .decor__item--star {
    top: 66px;
    left: 60%;
  }
}

.decor__item--loto {
  bottom: 60px;
  right: -89px;
  width: 214px;
  height: 204px;
  rotate: -24deg;
}

@media (min-width: 768px) {
  .decor__item--loto {
    right: -113px;
    width: 286px;
    height: 275px;
  }
}

@media (min-width: 1200px) {
  .decor__item--loto {
    right: -183px;
    bottom: 110px;
    width: 366px;
    height: 351px;
  }
}

@media (min-width: 1440px) {
  .decor__item--loto {
    right: -160px;
    bottom: 150px;
    width: 418px;
    height: 402px;
  }
}

@media (min-width: 1920px) {
  .decor__item--loto {
    width: 465px;
    height: 446px;
  }
}

.decor__item--loto-front {
  bottom: 60px;
  right: -89px;
  width: 205px;
  height: 204px;
  rotate: -24deg;
}

@media (min-width: 768px) {
  .decor__item--loto-front {
    right: -113px;
    width: 275px;
    height: 275px;
  }
}

@media (min-width: 1200px) {
  .decor__item--loto-front {
    right: -163px;
    bottom: 110px;
    width: 351px;
    height: 351px;
  }
}

@media (min-width: 1440px) {
  .decor__item--loto-front {
    right: -160px;
    bottom: 150px;
    width: 402px;
    height: 402px;
  }
}

@media (min-width: 1920px) {
  .decor__item--loto-front {
    width: 446px;
    height: 446px;
  }
}

.decor__item--trefa {
  width: 45px;
  height: 50px;
  rotate: 140deg;
  right: 19%;
  top: 11%;
}

@media (min-width: 768px) {
  .decor__item--trefa {
    right: 21px;
    top: 66px;
  }
}

@media (min-width: 1200px) {
  .decor__item--trefa {
    right: auto;
    left: 42px;
    top: 20px;
    width: 63px;
    height: 69px;
  }
}

@media (min-width: 1920px) {
  .decor__item--trefa {
    top: 66px;
    left: 106px;
    width: 70px;
    height: 77px;
  }
}

.decor__item--gradient {
  width: 193px;
  height: 192px;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  bottom: 12%;
  right: -50px;
  background-color: #0253fd;
}

@media (min-width: 768px) {
  .decor__item--gradient {
    width: 226px;
    height: 225px;
  }
}

@media (min-width: 1200px) {
  .decor__item--gradient {
    width: 294px;
    height: 294px;
  }
}

@media (min-width: 1920px) {
  .decor__item--gradient {
    width: 326px;
    height: 326px;
  }
}

.underLine {
  margin: auto;
}

/* ==========================================================================
   ALL VACANCY
   ========================================================================== */
.all-vacancy .top {
  display: flex;
  justify-content: center;
  min-height: 300px;
  background-color: var(--color-red);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}
.all-vacancy .top__content {
  display: flex;
  justify-content: flex-start;
}
.all-vacancy .top__content h1 {
  font-size: 47px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 100%;
  text-align: center;
}

.all-vacancy .top .top_img {
  position: absolute;
  width: 100%;
  max-width: 320px;
  right: -7%;
  bottom: -80%;
  transform: translate(-2%, -23%);
}
.all-vacancy .top .top_img::before {
  content: "";
  position: absolute;
  top: 50%; /* Вирівнювання по центру, або ставиш свої % */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 369px;
  height: 355px;
  background-color: #ff7592; /* Твій новий колір */
  border-radius: 50%; /* Робить його овалом згідно ширини/висоти */
  filter: blur(140px); /* Та сама магія розмиття */
  z-index: -1; /* Ховаємо на задній фон */
  opacity: 0.8; /* Інтенсивність світіння */
}

.all-vacancy__list {
  background-color: var(--color-light);
  padding: 20px 0 70px;

  @media (min-width: 768px) {
    padding: 30px 0 90px;
  }
  @media (min-width: 1200px) {
    padding: 40pх 0 100px;
  }
  @media (min-width: 1440px) {
    padding: 50px 0 120px;
  }
  @media (min-width: 1920px) {
    padding: 60px 0 120px;
  }
}
.all-vacancy__list .positions__filters form label span {
  color: var(--color-bg);
}
@media (min-width: 768px) {
  .all-vacancy .top {
    min-height: 260px;
    align-items: center;
  }
  .all-vacancy .top .top_img {
    max-width: 330px;
    bottom: -91%;
    right: 2%;
  }
  .all-vacancy .top__content h1 {
    font-size: clamp(36px, calc(-13.778px + 6.481vw), 64px);
  }
  .all-vacancy__list .positions__item-link {
    width: max-content;
  }
  .all-vacancy__list .positions__item-link span {
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 16px;
    padding: 9px 17px;
  }
  .all-vacancy__list .positions__item-link span::before,
  .all-vacancy__list .positions__item-link span::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .all-vacancy .top {
    min-height: 380px;
  }
  .all-vacancy .top__content {
    max-width: 40%;
  }
  .all-vacancy .top__content h1 {
    font-size: clamp(64px, calc(-16px + 6.667vw), 80px);
    text-align: left;
  }
  .all-vacancy .top .top_img {
    max-width: 490px;
    transform: translate(-17%, -22%);
  }
  .all-vacancy__list .positions__item-link span {
    font-size: clamp(16px, calc(-4px + 1.667vw), 20px);
  }
}
@media (min-width: 1440px) {
  .all-vacancy .top {
    min-height: 450px;
  }
  .all-vacancy .top__content h1 {
    font-size: clamp(80px, calc(32px + 3.333vw), 96px);
  }
  .all-vacancy .top .top_img {
    max-width: 590px;
    transform: translate(-10%, -20%);
  }
  .all-vacancy .positions__item {
    gap: 0 20px;
  }
  .all-vacancy .positions__item .positions__item-link {
    grid-row: 1/3;
  }
}

@media (min-width: 1920px) {
  .all-vacancy .top {
    min-height: 478px;
  }
  .all-vacancy .top__content {
    max-width: 60%;
  }
  .all-vacancy .top .top_img {
    max-width: 710px;
    transform: translate(-10%, -4%);
  }
}

/* ==========================================================================
   JOB SINGLE
   ========================================================================== */
.job-single {
  background-color: var(--color-light);
  color: var(--color-dark);
}
.job-single .top {
  display: flex;
  position: relative;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
  background-color: var(--color-bg-blue);
  overflow: hidden;
}

.job-single .top .main-title {
  position: relative;
  z-index: 2;
}

.job-single .top::before,
.job-single .top::after {
  content: "";
  position: absolute;
  width: 202px;
  height: 202px;
  background-color: #014ad8;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.8;
  z-index: 1;
}
.job-single .top::before {
  top: -80%;
  right: -30%;
}
.job-single .top::after {
  left: -30%;
  bottom: -70%;
}

.job-single .top h1 {
  text-align: center;
  font-size: 40px;
  color: var(--color-light);
  text-transform: uppercase;
}
.job-single .job-content {
  padding: 5px 0 60px;
  font-size: clamp(14px, calc(9.714px + 1.339vw), 20px);
  @media (min-width: 768px) {
    padding: 25px 0 90px;
  }
  @media (min-width: 1200px) {
    padding: 50px 0 145px;
  }
  @media (min-width: 1440px) {
    padding: 60px 0 105px;
  }
  @media (min-width: 1920px) {
    padding: 60px 0 130px;
  }
}
.job-single .job-content h2 {
  text-align-last: left;
  margin: 15px 0 20px;
  font-size: clamp(25px, calc(14.286px + 3.348vw), 40px);
}
.job-single .job-content ul {
  padding-left: 23px;
}
.job-single .job-content ul li {
  list-style: disc;
}

@media (min-width: 768px) {
  .job-single .top {
    min-height: 260px;
    justify-content: flex-start;
  }
  .job-single .top::before,
  .job-single .top::after {
    width: 301px;
    height: 301px;
    filter: blur(110px);
  }
  .job-single .top::before {
    top: -80%;
    right: -10%;
  }
  .job-single .top::after {
    left: -10%;
    bottom: -80%;
  }
  .job-single .top h1 {
    font-size: clamp(36px, calc(-13.778px + 6.481vw), 64px);
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .job-single .top {
    min-height: 380px;
  }
  .job-single .top::before,
  .job-single .top::after {
    width: 496px;
    height: 496px;
    filter: blur(150px);
  }
  .job-single .top h1 {
    font-size: clamp(64px, calc(-16px + 6.667vw), 80px);
  }
  .job-single .job-content h2 {
    font-size: clamp(40px, calc(-10px + 4.167vw), 50px);
  }
}
@media (min-width: 1440px) {
  .job-single .top {
    min-height: 450px;
  }
  .job-single .top::before,
  .job-single .top::after {
    width: 620px;
    height: 620px;
  }
  .job-single .top h1 {
    font-size: clamp(80px, calc(36.923px + 3.077vw), 96px);
  }
}
@media (min-width: 1920px) {
  .job-single .top {
    min-height: 478px;
  }
}

.langCheck {
  top: 0px;
  height: 26px;
  z-index: 11;
}

@media (min-width: 576px) {
  .langCheck {
    height: 30px;
  }
}

@media (min-width: 993px) {
  .langCheck {
    display: block;
    position: relative;
    z-index: 10;
    right: 10px;
  }
}

.langCheck__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  background-color: transparent;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 111;
  border: 1px solid #fff;
}

.langCheck__wrapper::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background-color: transparent;
  z-index: 1;
}

@media (min-width: 576px) {
  .langCheck__wrapper::after {
    width: 27px;
  }
}

@media (min-width: 768px) {
  .langCheck__wrapper::after {
    width: 27px;
  }
}

.langCheck__wrapper:hover {
  padding-bottom: 5px;
  -webkit-animation-name: bgShow;
  animation-name: bgShow;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bgShow {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: #171717;
  }
}

@keyframes bgShow {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: #171717;
  }
}

.langCheck__wrapper:hover::after {
  -webkit-animation-name: bgShow2;
  animation-name: bgShow2;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bgShow2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: #171717;
  }
}

@keyframes bgShow2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: #171717;
  }
}

.langCheck__wrapper:hover .langCheck__item.selected {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  opacity: 1;
}

.langCheck__wrapper:hover .langCheck__item.selected .arrow {
  -webkit-transform-origin: center top 40%;
  -ms-transform-origin: center top 40%;
  transform-origin: center top 40%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.langCheck__wrapper:hover .langCheck__item:not(.selected) {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-animation-name: showItem;
  animation-name: showItem;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1;
  padding: 3px 0;
}

@media (min-width: 768px) {
  .langCheck__wrapper:hover .langCheck__item:not(.selected) {
    -webkit-animation-name: showItemDesc;
    animation-name: showItemDesc;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    margin-left: 5px;
  }
}

.langCheck__wrapper:hover .langCheck__item:not(.selected):hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  background-color: #c8c8c8;
}

.langCheck__wrapper:hover .langCheck__item:not(.selected):hover .langContext {
  color: black;
}

@-webkit-keyframes showItem {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000;
  }
}

@keyframes showItem {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000;
  }
}

@-webkit-keyframes showItemDesc {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes showItemDesc {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

.langCheck__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  opacity: 0.5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.langCheck__item:hover {
  opacity: 1 !important;
}

.langCheck__item .icon {
  width: 20px;
  height: 20px;
  margin: 3px 6px 3px 4px;
  background-size: 31px;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media (min-width: 576px) {
  .langCheck__item .icon {
    margin: 3px 6px 3px 6px;
  }
}

@media (min-width: 768px) {
  .langCheck__item .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.langCheck__item .langContext {
  color: white;
  font-style: normal;
  font-family: "Arial", serif;
  font-size: 10px;
  text-transform: uppercase;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

@media (min-width: 768px) {
  .langCheck__item .langContext {
    margin: 5px 0;
  }
}

.langCheck__item .langContext font {
  font-style: normal;
  font-family: "Arial", serif;
}

.langCheck__item input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}

.langCheck__item.selected {
  height: 33px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media (min-width: 576px) {
  .langCheck__item.selected {
    height: 30px;
  }
}

.langCheck__item.selected .icon {
  width: 20px;
  height: 20px;
  background-size: 31px;
}

@media (min-width: 768px) {
  .langCheck__item.selected .icon {
    margin-left: 11px;
  }
}

.langCheck__item.selected .langContext {
  font-size: 11px;
  margin: 5px;
}

@media (min-width: 768px) {
  .langCheck__item.selected .langContext {
    font-size: 12px;
    margin: 5px 0;
  }
}

@media (min-width: 1200px) {
  .langCheck__item.selected .langContext {
    font-size: 14px;
  }
}

.langCheck__item.selected .arrow {
  width: 20px;
  height: 100%;
  -webkit-box-shadow: inset 0px 1.80193px 10.2109px rgba(0, 0, 0, 0.14);
  box-shadow: inset 0px 1.80193px 10.2109px rgba(0, 0, 0, 0.14);
  margin-left: auto;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition:
    transform 0.3s linear,
    -webkit-transform 0.3s linear;
}

@media (min-width: 576px) {
  .langCheck__item.selected .arrow {
    width: 27px;
  }
}

@media (min-width: 768px) {
  .langCheck__item.selected .arrow {
    margin-left: auto;
  }
}

.langCheck__item.selected .arrow::before,
.langCheck__item.selected .arrow::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  height: 2px;
  width: 5px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
}

@media (min-width: 576px) {
  .langCheck__item.selected .arrow::before,
  .langCheck__item.selected .arrow::after {
    width: 7px;
  }
}

@media (min-width: 768px) {
  .langCheck__item.selected .arrow::before,
  .langCheck__item.selected .arrow::after {
    width: 9px;
  }
}

.langCheck__item.selected .arrow::before {
  left: 28%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .langCheck__item.selected .arrow::before {
    left: 24%;
  }
}

.langCheck__item.selected .arrow::after {
  right: 28%;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media (min-width: 768px) {
  .langCheck__item.selected .arrow::after {
    right: 24%;
  }
}

.langCheck__item.active {
  display: none;
}

.langCheck__item:not(.selected) {
  position: absolute;
  top: 0;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  opacity: 0;
}

.langCheck__item > a.langContext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #fff;
}

.langCheck__item > a.langContext .icon {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

/*!*****************************************************

Freak Flags, Copyright ©2021 Michael P. Cohen. Freak flags is licenced under the MIT licence.  

For complete information visit: www.freakflagsprite.com 

******************************************************/
.fflag {
  background-image: url("../images/flagSprite42.png");
  background-repeat: no-repeat;
  background-size: 100% 49494%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.fflag-ch,
.fflag-np {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.fflag-dz {
  background-position: center 0.2287%;
}

.fflag-dz {
  background-position: center 0.2287%;
}

.fflag-ao {
  background-position: center 0.4524%;
}

.fflag-bj {
  background-position: center 0.6721%;
}

.fflag-bw {
  background-position: center 0.8958%;
}

.fflag-bf {
  background-position: center 1.1162%;
}

.fflag-bi {
  background-position: center 1.3379%;
}

.fflag-cm {
  background-position: center 1.5589%;
}

.fflag-cv {
  background-position: center 1.7805%;
}

.fflag-cf {
  background-position: center 2.0047%;
}

.fflag-td {
  background-position: center 2.2247%;
}

.fflag-cd {
  background-position: left 2.4467%;
}

.fflag-dj {
  background-position: left 2.6674%;
}

.fflag-eg {
  background-position: center 2.8931%;
}

.fflag-gq {
  background-position: center 3.1125%;
}

.fflag-er {
  background-position: left 3.3325%;
}

.fflag-et {
  background-position: center 3.5542%;
}

.fflag-ga {
  background-position: center 3.7759%;
}

.fflag-gm {
  background-position: center 4.0015%;
}

.fflag-gh {
  background-position: center 4.2229%;
}

.fflag-gn {
  background-position: center 4.441%;
}

.fflag-gw {
  background-position: left 4.66663%;
}

.fflag-ci {
  background-position: center 4.8844%;
}

.fflag-ke {
  background-position: center 5.1061%;
}

.fflag-ls {
  background-position: center 5.3298%;
}

.fflag-lr {
  background-position: left 5.5495%;
}

.fflag-ly {
  background-position: center 5.7712%;
}

.fflag-mg {
  background-position: center 5.994%;
}

.fflag-mw {
  background-position: center 6.2156%;
}

.fflag-ml {
  background-position: center 6.4363%;
}

.fflag-mr {
  background-position: center 6.658%;
}

.fflag-mu {
  background-position: center 6.8805%;
}

.fflag-yt {
  background-position: center 7.1038%;
}

.fflag-ma {
  background-position: center 7.3231%;
}

.fflag-mz {
  background-position: left 7.5448%;
}

.fflag-na {
  background-position: left 7.7661%;
}

.fflag-ne {
  background-position: center 7.98937%;
}

.fflag-ng {
  background-position: center 8.2099%;
}

.fflag-cg {
  background-position: center 8.4316%;
}

.fflag-re {
  background-position: center 8.6533%;
}

.fflag-rw {
  background-position: right 8.875%;
}

.fflag-sh {
  background-position: center 9.0967%;
}

.fflag-st {
  background-position: center 9.32237%;
}

.fflag-sn {
  background-position: center 9.5426%;
}

.fflag-sc {
  background-position: left 9.7628%;
}

.fflag-sl {
  background-position: center 9.9845%;
}

.fflag-so {
  background-position: center 10.2052%;
}

.fflag-za {
  background-position: left 10.4269%;
}

.fflag-ss {
  background-position: left 10.6486%;
}

.fflag-sd {
  background-position: center 10.8703%;
}

.fflag-sr {
  background-position: center 11.0945%;
}

.fflag-sz {
  background-position: center 11.3135%;
}

.fflag-tg {
  background-position: left 11.5354%;
}

.fflag-tn {
  background-position: center 11.7593%;
}

.fflag-ug {
  background-position: center 11.9799%;
}

.fflag-tz {
  background-position: center 12.2005%;
}

.fflag-eh {
  background-position: center 12.4222%;
}

.fflag-ye {
  background-position: center 12.644%;
}

.fflag-zm {
  background-position: center 12.8664%;
}

.fflag-zw {
  background-position: left 13.0873%;
}

.fflag-ai {
  background-position: center 13.309%;
}

.fflag-ag {
  background-position: center 13.5307%;
}

.fflag-ar {
  background-position: center 47.6725%;
}

/* argentina
.fflag-ar { 
  background-position: center 13.7524%;
} */
.fflag-aw {
  background-position: left 13.9741%;
}

.fflag-bs {
  background-position: left 14.1958%;
}

.fflag-bb {
  background-position: center 14.4175%;
}

.fflag-bq {
  background-position: center 14.6415%;
}

.fflag-bz {
  background-position: center 14.8609%;
}

.fflag-bm {
  background-position: center 15.0826%;
}

.fflag-bo {
  background-position: center 15.306%;
}

.fflag-vg {
  background-position: center 15.528%;
}

.fflag-br {
  background-position: center 15.7496%;
}

.fflag-ca {
  background-position: center 15.9694%;
}

.fflag-ky {
  background-position: center 16.1911%;
}

.fflag-cl {
  background-position: left 16.4128%;
}

.fflag-co {
  background-position: left 16.6345%;
}

.fflag-km {
  background-position: center 16.8562%;
}

.fflag-cr {
  background-position: center 17.0779%;
}

.fflag-cu {
  background-position: left 17.2996%;
}

.fflag-cw {
  background-position: center 17.5213%;
}

.fflag-dm {
  background-position: center 17.743%;
}

.fflag-do {
  background-position: center 17.968%;
}

.fflag-ec {
  background-position: center 18.1864%;
}

.fflag-sv {
  background-position: center 18.4081%;
}

.fflag-fk {
  background-position: center 18.6298%;
}

.fflag-gf {
  background-position: center 18.8515%;
}

.fflag-gl {
  background-position: left 19.0732%;
}

.fflag-gd {
  background-position: center 19.2987%;
}

.fflag-gp {
  background-position: center 19.518%;
}

.fflag-gt {
  background-position: center 19.7383%;
}

.fflag-gy {
  background-position: center 19.96%;
}

.fflag-ht {
  background-position: center 20.1817%;
}

.fflag-hn {
  background-position: center 20.4034%;
}

.fflag-jm {
  background-position: center 20.6241%;
}

.fflag-mq {
  background-position: center 20.8468%;
}

.fflag-mx {
  background-position: center 21.0685%;
}

.fflag-ms {
  background-position: center 21.2902%;
}

.fflag-ni {
  background-position: center 21.5119%;
}

.fflag-pa {
  background-position: center 21.7336%;
}

.fflag-py {
  background-position: center 21.9553%;
}

.fflag-pe {
  background-position: center 22.177%;
}

.fflag-pr {
  background-position: left 22.4002%;
}

.fflag-bl {
  background-position: center 22.6204%;
}

.fflag-kn {
  background-position: center 22.8421%;
}

.fflag-lc {
  background-position: center 23.0638%;
}

.fflag-pm {
  background-position: center 23.2855%;
}

.fflag-vc {
  background-position: center 23.5072%;
}

.fflag-sx {
  background-position: left 23.732%;
}

.fflag-tt {
  background-position: center 23.9506%;
}

.fflag-tc {
  background-position: center 24.1723%;
}

.fflag-en {
  background-position: center 24.394%;
}

.fflag-vi {
  background-position: center 24.6157%;
}

.fflag-uy {
  background-position: left 24.8374%;
}

.fflag-ve {
  background-position: center 25.0591%;
}

.fflag-ab {
  background-position: center 25.279%;
}

.fflag-af {
  background-position: center 25.5025%;
}

.fflag-az {
  background-position: center 25.7242%;
}

.fflag-bn {
  background-position: center 25.9459%;
}

.fflag-bt {
  background-position: center 26.1676%;
}

.fflag-bd {
  background-position: center 26.3885%;
}

.fflag-kh {
  background-position: center 26.611%;
}

.fflag-cn {
  background-position: left 26.8327%;
}

.fflag-ge {
  background-position: center 27.0544%;
}

.fflag-hk {
  background-position: center 27.2761%;
}

.fflag-in {
  background-position: center 27.4978%;
}

.fflag-id {
  background-position: center 27.7195%;
}

.fflag-jp {
  background-position: center 27.9412%;
}

.fflag-kz {
  background-position: center 28.1615%;
}

.fflag-la {
  background-position: center 28.3846%;
}

.fflag-mo {
  background-position: center 28.6063%;
}

.fflag-my {
  background-position: center 28.829%;
}

.fflag-mv {
  background-position: center 29.0497%;
}

.fflag-mn {
  background-position: left 29.2714%;
}

.fflag-mm {
  background-position: center 29.4931%;
}

.fflag-np {
  background-position: left 29.7148%;
}

.fflag-kp {
  background-position: left 29.9365%;
}

.fflag-mp {
  background-position: center 30.1582%;
}

.fflag-pw {
  background-position: center 30.3799%;
}

.fflag-pg {
  background-position: center 30.6016%;
}

.fflag-ph {
  background-position: left 30.8233%;
}

.fflag-sg {
  background-position: left 31.045%;
}

.fflag-kr {
  background-position: center 31.2667%;
}

.fflag-lk {
  background-position: right 31.4884%;
}

.fflag-tw {
  background-position: left 31.7101%;
}

.fflag-tj {
  background-position: center 31.9318%;
}

.fflag-th {
  background-position: center 32.1535%;
}

.fflag-tl {
  background-position: left 32.3752%;
}

.fflag-tm {
  background-position: center 32.5969%;
}

.fflag-vn {
  background-position: center 32.8186%;
}

.fflag-al {
  background-position: center 33.0403%;
}

.fflag-ad {
  background-position: center 33.25975%;
}

.fflag-am {
  background-position: center 33.4837%;
}

.fflag-at {
  background-position: center 33.7054%;
}

.fflag-by {
  background-position: left 33.9271%;
}

.fflag-be {
  background-position: center 34.1488%;
}

.fflag-ba {
  background-position: center 34.3705%;
}

.fflag-bg {
  background-position: center 34.5922%;
}

.fflag-hr {
  background-position: center 34.8139%;
}

.fflag-cy {
  background-position: center 35.0356%;
}

.fflag-cz {
  background-position: left 35.2555%;
}

.fflag-dk {
  background-position: center 35.479%;
}

.fflag-ee {
  background-position: center 35.7007%;
}

.fflag-fo {
  background-position: center 35.9224%;
}

.fflag-fi {
  background-position: center 36.1441%;
}

.fflag-fr {
  background-position: center 36.3658%;
}

.fflag-de {
  background-position: center 36.5875%;
}

.fflag-gi {
  background-position: center 36.8092%;
}

.fflag-gr {
  background-position: left 37.0309%;
}

.fflag-hu {
  background-position: center 37.2526%;
}

.fflag-is {
  background-position: center 37.4743%;
}

.fflag-ie {
  background-position: center 37.696%;
}

.fflag-im {
  background-position: center 37.9177%;
}

.fflag-it {
  background-position: center 38.1394%;
}

.fflag-je {
  background-position: center 38.3611%;
}

.fflag-xk {
  background-position: center 38.5828%;
}

.fflag-lv {
  background-position: center 38.8045%;
}

.fflag-li {
  background-position: left 39.0262%;
}

.fflag-lt {
  background-position: center 39.2479%;
}

.fflag-lu {
  background-position: center 39.4696%;
}

.fflag-mt {
  background-position: left 39.6913%;
}

.fflag-md {
  background-position: center 39.913%;
}

.fflag-mc {
  background-position: center 40.1347%;
}

.fflag-me {
  background-position: center 40.3564%;
}

.fflag-nl {
  background-position: center 40.5781%;
}

.fflag-mk {
  background-position: center 40.7998%;
}

.fflag-no {
  background-position: center 41.0215%;
}

.fflag-pl {
  background-position: center 41.2432%;
}

.fflag-pt {
  background-position: center 41.4649%;
}

.fflag-ro {
  background-position: center 41.6866%;
}

.fflag-ru {
  background-position: center 41.9083%;
}

.fflag-sm {
  background-position: center 42.13%;
}

.fflag-rs {
  background-position: center 42.3517%;
}

.fflag-sk {
  background-position: center 42.5734%;
}

.fflag-si {
  background-position: center 42.7951%;
}

.fflag-es {
  background-position: left 43.0168%;
}

.fflag-se {
  background-position: center 43.2385%;
}

.fflag-ch {
  background-position: center 43.4602%;
}

.fflag-tr {
  background-position: center 43.6819%;
}

.fflag-ua {
  background-position: center 43.9036%;
}

.fflag-gb {
  background-position: center 44.1253%;
}

.fflag-va {
  background-position: right 44.347%;
}

.fflag-bh {
  background-position: center 44.5687%;
}

.fflag-ir {
  background-position: center 44.7904%;
}

.fflag-iq {
  background-position: center 45.0121%;
}

.fflag-il {
  background-position: center 45.2338%;
}

.fflag-kw {
  background-position: left 45.4555%;
}

.fflag-jo {
  background-position: left 45.6772%;
}

.fflag-kg {
  background-position: center 45.897%;
}

.fflag-lb {
  background-position: center 46.1206%;
}

.fflag-om {
  background-position: left 46.3423%;
}

.fflag-pk {
  background-position: center 46.561%;
}

.fflag-ps {
  background-position: center 46.7857%;
}

.fflag-qa {
  background-position: center 47.0074%;
}

.fflag-sa {
  background-position: center 47.2291%;
}

.fflag-sy {
  background-position: center 47.4508%;
}

.fflag-ae {
  background-position: center 47.6725%;
}

.fflag-uz {
  background-position: left 47.8942%;
}

.fflag-as {
  background-position: right 48.1159%;
}

.fflag-au {
  background-position: center 48.3376%;
}

.fflag-cx {
  background-position: center 48.5593%;
}

.fflag-cc {
  background-position: center 48.781%;
}

.fflag-ck {
  background-position: center 49.002%;
}

.fflag-fj {
  background-position: center 49.2244%;
}

.fflag-pf {
  background-position: center 49.4445%;
}

.fflag-gu {
  background-position: center 49.6678%;
}

.fflag-ki {
  background-position: center 49.8895%;
}

.fflag-mh {
  background-position: left 50.1112%;
}

.fflag-fm {
  background-position: center 50.3329%;
}

.fflag-nc {
  background-position: center 50.5546%;
}

.fflag-nz {
  background-position: center 50.7763%;
}

.fflag-nr {
  background-position: left 50.998%;
}

.fflag-nu {
  background-position: center 51.2197%;
}

.fflag-nf {
  background-position: center 51.4414%;
}

.fflag-ws {
  background-position: left 51.6631%;
}

.fflag-sb {
  background-position: left 51.8848%;
}

.fflag-tk {
  background-position: center 52.1065%;
}

.fflag-to {
  background-position: left 52.3282%;
}

.fflag-tv {
  background-position: center 52.5499%;
}

.fflag-vu {
  background-position: left 52.7716%;
}

.fflag-wf {
  background-position: center 52.9933%;
}

.fflag-eu {
  background-position: center 53.215%;
}

.fflag-jr {
  background-position: center 53.4315%;
}

.fflag-oly {
  background-position: center 53.6584%;
}

.fflag-un {
  background-position: center 53.875%;
}

.fflag-be.ff-round,
.fflag-ci.ff-round,
.fflag-fr.ff-round,
.fflag-gn.ff-round,
.fflag-ie.ff-round,
.fflag-it.ff-round,
.fflag-ml.ff-round,
.fflag-ng.ff-round,
.fflag-ro.ff-round,
.fflag-td.ff-round {
  background-size: 100% 50000%;
}

.ff-round {
  background-size: 160%;
  background-clip: content-box;
  border-radius: 50%;
}

.ff-round.ff-sm {
  width: 12px;
  height: 12px;
}

.ff-round.ff-md {
  width: 18px;
  height: 18px;
}

.ff-round.ff-lg {
  width: 24px;
  height: 24px;
}

.ff-round.ff-xl {
  width: 32px;
  height: 32px;
}

.home .contacts {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #313131;
  scroll-margin-top: 50px;
}

@media (min-width: 768px) {
  .home .contacts {
    padding-top: 26px;
  }
}

@media (min-width: 1200px) {
  .home .contacts {
    padding-top: 10px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1440px) {
  .home .contacts {
    padding-top: 50px;
  }
}

.home .contacts h2 {
  color: white;
  margin-bottom: 5px;
  text-align: center;
}

@media (min-width: 768px) {
  .home .contacts h2 {
    text-align: left;
    margin-bottom: 40px;
    grid-column: 1 / 3;
  }
}

@media (min-width: 1200px) {
  .home .contacts h2 {
    padding-bottom: 20px;
  }
}

@media (min-width: 1440px) {
  .home .contacts h2 {
    padding-bottom: 0px;
    margin-bottom: 0;
  }
}

.home .contacts h2 + svg {
  margin-bottom: 30px;
  fill: #f40f3e;
  stroke: #f40f3e;
  width: 100%;
}

@media (min-width: 768px) {
  .home .contacts h2 + svg {
    display: none;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .home .contacts__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.home .contacts address {
  font-style: normal;
}

@media (min-width: 768px) {
  .home .contacts address {
    grid-column: 1 /2;
    grid-row: 2;
    align-self: center;
  }
}

.home .contacts__box {
  display: none;
}

@media (min-width: 768px) {
  .home .contacts__box {
    position: relative;
    display: block;
    grid-column: 2 /3;
    grid-row: 2;
  }
}

.home .contacts__absolute-book-wrap {
  position: relative;
  z-index: 10;
}

.home .contacts__absolute-book {
  position: relative;
  width: 277px;
  height: 250px;
}

@media (min-width: 768px) {
  .home .contacts__absolute-book {
    width: 335px;
    height: 333px;
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-book {
    width: 433px;
    height: 388px;
  }
}

@media (min-width: 1440px) {
  .home .contacts__absolute-book {
    width: 488px;
    height: 440px;
  }
}

.home .contacts__absolute-book img {
  position: relative;
  z-index: 10;
  width: 100%;
  -webkit-transition: -webkit-transform 1s linear;
  transition: -webkit-transform 1s linear;
  transition: transform 1s linear;
  transition:
    transform 1s linear,
    -webkit-transform 1s linear;
  height: 100%;
}

.home .contacts__absolute-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home .contacts__absolute-bg .perspective {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.home .contacts__absolute-bg .card {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.home .contacts__circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.home .contacts__absolute-circle {
  position: absolute;
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--11 {
    background: linear-gradient(31deg, #f40f3e 10%, #fff 137%);
    border-radius: 50%;
    right: 6%;
    width: 22px;
    height: 22px;
    bottom: 18%;
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--11 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    right: 7%;
    bottom: 80px;
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--12 {
    right: 1%;
    bottom: 27%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(31deg, #f40f3e 10%, #fff 137%);
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--12 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    bottom: 15%;
    right: 0%;
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--13 {
    bottom: 15%;
    right: -2%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(31deg, #f40f3e 10%, #fff 137%);
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--13 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    right: 2%;
    bottom: 25%;
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--14 {
    top: 11px;
    left: 14%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(31deg, #bf8f99 10%, #fff 137%);
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--14 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    top: 15px;
    left: 15%;
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--15 {
    width: 20px;
    height: 20px;
    left: 4%;
    top: 4px;
    border-radius: 50%;
    background: linear-gradient(31deg, #bf8f99 10%, #fff 137%);
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--15 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    width: 24px;
    height: 24px;
    left: 5%;
    top: 5px;
  }
}

@media (min-width: 768px) {
  .home .contacts__absolute-circle--16 {
    width: 9px;
    height: 9px;
    left: 12%;
    top: -1px;
    border-radius: 50%;
    background: linear-gradient(31deg, #bf8f99 10%, #fff 137%);
  }
}

@media (min-width: 1200px) {
  .home .contacts__absolute-circle--16 {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    width: 12px;
    height: 12px;
    left: 13%;
    top: 0px;
  }
}

.home .contacts__soc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 0;
  color: transparent;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.home .contacts__soc-item use {
  -webkit-transition: fill 0.3s ease-in;
  transition: fill 0.3s ease-in;
}

.home .contacts__soc-item:not(.home .contacts__soc-item--time):hover {
  opacity: 0.8;
}

.home .contacts__soc-item:not(.home .contacts__soc-item--time):hover use {
  fill: #f40f3e;
}

@media (min-width: 1200px) {
  .home .contacts__soc-item:last-child {
    margin-bottom: 30px;
  }
}

@media (min-width: 1920px) {
  .home .contacts__soc-item:last-child {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .home .contacts__soc-item:first-child {
    margin-top: 30px;
  }
}

@media (min-width: 1440px) {
  .home .contacts__soc-item:first-child {
    margin-top: 70px;
  }
}

@media (min-width: 1920px) {
  .home .contacts__soc-item:first-child {
    margin-top: 110px;
  }
}

.home .contacts__soc-item:not(:last-child) {
  margin-bottom: 20px;
}

.home .contacts__soc-item div:first-child {
  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;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}

@media (min-width: 768px) {
  .home .contacts__soc-item div:first-child {
    min-width: 45px;
    height: 45px;
  }
}

@media (min-width: 1200px) {
  .home .contacts__soc-item div:first-child {
    min-width: 54px;
    height: 54px;
  }
}

.home .contacts__soc-item > span {
  color: #fff;
  margin-left: 15px;
  font-size: 12px;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  display: inline-block;
  font-size: calc(13px + 11 * ((100vw - 320px) / 1600));
  font-weight: 500;
  line-height: 1.4;
  /* 18.852px */
}

@media (min-width: 768px) {
  .home .contacts__soc-item > span {
    margin-left: 45px;
  }
}

@media (min-width: 1200px) {
  .home .contacts__soc-item > span {
    font-size: 20px;
  }
}

.home .contacts__soc-item > span > span {
  display: block;
}

.home .contacts__soc-item--skype svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .home .contacts__soc-item--skype svg {
    width: 28px;
    height: 28px;
  }
}

.home .contacts__soc-item--skype use {
  fill: #313131;
}

.home .contacts__soc-item--telegram svg {
  width: 19px;
  height: 15px;
}

@media (min-width: 768px) {
  .home .contacts__soc-item--telegram svg {
    width: 28px;
    height: 22px;
  }
}

.home .contacts__soc-item--telegram use {
  fill: #313131;
}

.home .contacts__soc-item--mail svg {
  width: 17px;
  height: 13px;
}

@media (min-width: 768px) {
  .home .contacts__soc-item--mail svg {
    width: 28px;
    height: 22px;
  }
}

.home .contacts__soc-item--mail use {
  fill: #313131;
}

.home .contacts__soc-item--time svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

@media (min-width: 768px) {
  .home .contacts__soc-item--time svg {
    width: 28px;
    height: 28px;
  }
}

.contacts__soc-item--time use {
  stroke: #313131;
}
.home section.contacts::before {
  background-color: #313131;
}
