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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
p {
  margin-block: 0;
}

/* a,
button,
textarea,
svg * {
    transition: var(--transition-duration);
} */
/* svg * {
  transition-property: fill, stroke;
} */
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Light.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/Unbounded-Light.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/Unbounded-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/Unbounded-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
.anim {
  transition: all 0.4s ease;
}
.anim--fade {
  opacity: 0;
}
.anim.is-active.anim--fade {
  opacity: 1;
}
.anim--fade {
  opacity: 0;
}
.anim.is-active.anim--fade {
  opacity: 1;
}
.anim--scale {
  opacity: 0;
  transform: scale(0.8);
}
.anim.is-active.anim--scale {
  opacity: 1;
  transform: scale(1);
}
.anim--slide-up {
  opacity: 0;
  transform: translateY(80px);
}
.anim.is-active.anim--slide-up {
  opacity: 1;
  transform: translateY(0);
}
.anim--slide-down {
  opacity: 0;
  transform: translateY(-20px);
}
.anim.is-active.anim--slide-down {
  opacity: 1;
  transform: translateY(0);
}
.anim--bounce {
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease;
}
.anim.is-active.anim--bounce {
  opacity: 1;
  transform: scale(1);
}

:root {
  --font-alternate: "Unbounded", sans-serif;
  --font-main: "Manrope", sans-serif;
  --color-font-black: #222222;
  --color-red: #ff3127;
  --color-white: #f9f9f9;
  --color-yellow: #ffe780;
  --transition-duration: .2s;
  --container-width: 1160px;
  --container-padding: 1rem;
}

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  line-height: 1.375rem;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
  font-size: clamp(0.875rem, 0.8347107438rem + 0.1652892562vw, 1rem);
}
body.is-lock {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

textarea {
  width: 100%;
  border: 0.0625rem solid #c9c9c9;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  background-color: white !important;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
}

legend {
  font-family: var(--font-alternate);
  font-size: 0.75rem;
  font-weight: 300 !important;
}

input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #000;
}

input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  background-color: var(--color-white);
  border: none;
}

input::placeholder,
textarea::placeholder {
  font-size: 0.875rem;
  opacity: 0.8;
}

select {
  font-size: 0.875rem;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 0.625rem;
  background-image: url("../assets/icons/arrow_down_icon.svg");
  background-repeat: no-repeat;
  background-position: right 0.9375rem center;
  background-size: 0.625rem;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

button:not([class]) {
  border-bottom: 0.0625rem solid rgb(34, 34, 34);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
h6 {
  margin: 0;
  font-weight: 700;
  font-family: var(--font-alternate);
}

h1,
.h1 {
  font-size: 3.125rem;
  line-height: 3.125rem;
}
@media (width <= 47.99875rem) {
  h1,
  .h1 {
    font-size: 2.5rem;
    line-height: normal;
  }
}
@media (width <= 30.06125rem) {
  h1,
  .h1 {
    font-size: 1.5625rem;
  }
}

h2,
.h2 {
  font-size: clamp(1.5rem, 0.9762396694rem + 2.1487603306vw, 3.125rem);
  line-height: 3.4375rem;
}
@media (width <= 47.99875rem) {
  h2,
  .h2 {
    line-height: 1;
  }
}

h3,
.h3 {
  font-size: 1.125rem;
  line-height: 1.1875rem;
}
@media (width <= 47.99875rem) {
  h3,
  .h3 {
    font-size: 1rem;
    line-height: 1;
  }
}

p {
  padding: 0;
  margin: 0;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  padding-block: 2.5rem;
  background-color: #f9f9f9;
  transition: top 0.7s ease-in-out, box-shadow 0.3s, background-color 0.3s;
}
@media (width > 960px) {
  .header--fixed {
    position: fixed;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 500;
    top: -100%;
    left: 0;
    background-color: white;
    padding-block: 1.25rem;
    transition: all 0.3s ease-in-out;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__list {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
.header__list-item {
  position: relative;
}
.header__list-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: all;
}
.header__list-item:hover .header__list-link--dropdown::after {
  transform: rotate(180deg);
}
.header__list-link.is-active {
  color: var(--color-red);
}
.header__list-link--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
}
.header__list-link--dropdown::after {
  content: "";
  display: inline-block;
  background-image: url("../assets/icons/arrow_down_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all var(--transition-duration) ease-in-out;
  color: black;
  width: 0.375rem;
  height: 0.375rem;
}
.header__overlay {
  display: contents;
}
@media (max-width: 60rem) {
  .header__overlay {
    display: none;
  }
}
.header__button {
  height: 3.125rem;
}

.header--fixed.header--visible {
  top: 0;
}

.icon-logo img {
  width: clamp(5rem, 4.395661157rem + 2.479338843vw, 6.875rem);
  height: clamp(1.6875rem, 1.4659090909rem + 0.9090909091vw, 2.375rem);
}

.dropdown-menu {
  --margin-menu: 20px;
  position: absolute;
  top: calc(100% + var(--margin-menu));
  left: 50%;
  transform: translate(-50%, 10px);
  width: 12.5rem;
  padding: 1rem 1.25rem;
  background-color: white;
  border-radius: 0.625rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
  z-index: 100;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.875rem;
  height: 0.875rem;
  z-index: -1;
  background-color: white;
}
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--margin-menu));
  left: 0;
  width: 100%;
  height: var(--margin-menu);
  background: transparent;
}
.dropdown-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.dropdown-menu__link {
  text-decoration: none;
  font-size: 0.875rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  font-family: var(--font-alternate);
  text-transform: uppercase;
  transition-duration: 0.2s;
  padding: 0.5rem 1.875rem;
  font-weight: 700;
  border-radius: 2.1875rem;
  height: 3.125rem;
}
.button--transparent {
  color: #222222;
  letter-spacing: -0.5px;
  border: solid 0.125rem;
  border-color: currentColor;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.button--transparent:hover {
  color: var(--color-red);
}
.button--yellow {
  color: #222222;
  letter-spacing: -0.5px;
  background-color: var(--color-yellow);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.button--yellow:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}
.button--red {
  color: var(--color-white);
  background-color: var(--color-red);
  border: 0.125rem solid var(--color-red);
}
.button--red:hover {
  color: var(--color-red);
  background-color: transparent;
  border-color: currentColor;
}
.button--red-hover-white:hover {
  color: var(--color-white);
  background-color: transparent;
  border-color: currentColor;
}
.button--black {
  background-color: black;
  color: var(--color-white);
  font-size: 1rem;
  text-transform: none;
  font-weight: 500;
  border-radius: 0.25rem;
  padding: 1.125rem 2.75rem;
  height: 4.5rem;
}

.burger {
  position: fixed;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  right: 2rem;
  top: 2.5rem;
  z-index: 101;
  width: 1.375rem;
  height: 0.875rem;
}
.burger__wrapper {
  padding: 1.25rem;
  background-color: var(--color-white);
  border-radius: 50%;
}
.burger__line {
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-font-black);
  transition: all var(--transition-duration) ease-in-out;
  left: 0;
  transform-origin: center;
}
.burger__line:first-child {
  top: 0;
}
.burger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger__line:last-child {
  bottom: 0;
}
.burger.is-active {
  right: 1rem;
  top: 1rem;
}
.burger.is-active .burger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.is-active .burger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media (width > 960px) {
  .burger {
    display: none;
  }
}

.hero {
  padding-top: 3.125rem;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
}
.hero__title {
  max-width: 46.25rem;
  margin-bottom: 1.25rem;
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  row-gap: 0.625rem;
  max-width: 46.875rem;
}
.hero__list-item {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
@media (max-width: 60rem) {
  .hero__list {
    grid-template-columns: 1fr;
  }
}
.hero__list {
  margin-bottom: 1.875rem;
}
.hero__form {
  margin-bottom: 1.5625rem;
}
.hero__bg-wrapper {
  position: absolute;
  width: clamp(22.8125rem, 17.534607438rem + 21.652892562vw, 39.1875rem);
  height: clamp(18.4375rem, 13.2603305785rem + 21.2396694215vw, 34.5rem);
  margin-inline: auto;
  right: -15%;
  top: 0;
  transform: translateY(-8%);
  z-index: -1;
}
@media (max-width: 1055px) {
  .hero__bg-wrapper {
    position: relative;
    width: clamp(22.8125rem, 17.534607438rem + 21.652892562vw, 39.1875rem);
    height: clamp(18.4375rem, 13.2603305785rem + 21.2396694215vw, 34.5rem);
    transform: none;
    right: auto;
    top: auto;
    margin-inline: auto;
    transform: rotate(-15deg);
    margin-inline: auto;
  }
}
@media (max-width: 1055px) and (max-width: 340px) {
  .hero__bg-wrapper {
    margin-left: -40px;
  }
}
.hero__bg-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.hero__bg-icon:first-child {
  left: 15%;
  animation: breathe-rotate 5s ease-in-out infinite;
}
.hero__bg-icon:nth-child(2) {
  top: 50%;
  transform: translateY(-85%);
  left: 10%;
  animation: breathe-rotate 3s ease-in-out infinite;
}
@media (max-width: 1055px) {
  .hero__bg-icon:nth-child(2) {
    top: 60%;
    left: 5%;
  }
}
.hero__bg-icon:nth-child(3) {
  top: 10%;
  left: 65%;
  animation: breathe-rotate 4s ease-in-out infinite;
}
@media (max-width: 1055px) {
  .hero__bg-icon:nth-child(3) {
    top: 20%;
    left: 85%;
  }
}
@keyframes breathe-rotate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(-15deg);
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  75% {
    transform: scale(1.05) rotate(15deg);
  }
}

.text--red {
  color: var(--color-red);
}
.text--yellow {
  color: var(--color-yellow);
}
.text--bold {
  font-weight: 600;
}
.text--underline {
  position: relative;
}
.text--underline::after {
  content: "";
  display: block;
  background-image: url("../assets/icons/underline.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 21.25rem;
  height: 1.25rem;
  top: 100%;
  right: 0;
}
@media (width <= 30.06125rem) {
  .text--underline::after {
    width: 12.5rem;
  }
}

.form {
  background-color: var(--color-font-black);
  border-radius: 1.25rem;
  padding: 2.8125rem 3.4375rem;
  color: var(--color-white);
}
@media (width <= 47.99875rem) {
  .form {
    padding: 1.5625rem 2.1875rem;
  }
}
.form__title {
  font-size: clamp(1rem, 0.8388429752rem + 0.6611570248vw, 1.5rem);
  line-height: 1.625rem;
  margin-bottom: 1.25rem;
}
.form__subtitle {
  margin-bottom: 1.25rem;
}
.form__inputs {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1055px) {
  .form__inputs {
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
.form__input, .form__select {
  min-height: 3.125rem;
  flex-shrink: 0;
  max-width: 16.875rem;
  height: 100%;
  padding: 0.3125rem 1.25rem;
  border-radius: 1.875rem;
}
@media (max-width: 1055px) {
  .form__input, .form__select {
    max-width: 100%;
    width: 100%;
  }
}
.form__select {
  padding-right: 60px;
}
@media (max-width: 1055px) {
  .form__button {
    width: 100%;
  }
}
.form__privacy {
  color: white;
  opacity: 0.6;
  font-size: 0.75rem;
}
.form__privacy a {
  color: currentColor;
  text-decoration: underline;
}

.ticker {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-red);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding: 15px 0;
}
.ticker__track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker__track span {
  display: inline-block;
  padding: 0 2rem;
}
.ticker--reverse .ticker__track {
  animation: ticker-reverse 40s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes ticker-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.usage {
  padding-block: 6.875rem;
}
.usage__title {
  text-align: center;
  margin-bottom: 3.125rem;
}
.usage__content {
  display: grid;
  grid-template-columns: 1fr 480px;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.25rem;
  height: 600px;
}
@media (max-width: 1055px) {
  .usage__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
}
.usage__card {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2.1875rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.usage__card-title {
  text-align: start;
}
@media (width <= 47.99875rem) {
  .usage__card-title {
    max-width: 22.5rem;
  }
}
.usage__card-top {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.usage__card-image {
  opacity: 0.6;
  margin-top: 3.125rem;
  margin-inline: auto;
}
.usage__card--big {
  grid-column: 2/3;
  grid-row: 1/4;
}
@media (max-width: 1055px) {
  .usage__card--big {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

.tariff {
  background-color: var(--color-font-black);
}
.tariff__wrapper {
  background-color: #f9f9f9;
  border-end-end-radius: 2.5rem;
  border-end-start-radius: 2.5rem;
}
.tariff__inner {
  padding-block: 7.5rem;
}
.tariff__title {
  margin-bottom: 1.875rem;
}
.tariff__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.tariff__subtitle {
  font-family: var(--font-alternate);
  margin-bottom: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8367768595rem + 0.4132231405vw, 1.25rem);
  font-weight: 700;
}
.tariff__images-box {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.tariff__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .tariff__content {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .tariff__content .tariff__card:nth-child(3) {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .tariff__content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .tariff__content .tariff__card {
    grid-column: 1/-1;
  }
}
.tariff__card {
  background-color: white;
  border-radius: 0.9375rem;
  box-shadow: 0px 10px 30px -10px rgba(22, 21, 30, 0.1);
  overflow: hidden;
}
.tariff__card:last-child {
  align-self: start;
}
.tariff__card-header {
  font-family: var(--font-alternate);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-font-black);
  color: white;
  padding: 2.5rem 1.25rem;
  border-radius: 0.9375rem;
}
.tariff__card-content {
  padding: 1.25rem;
}
.tariff__card-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.tariff__card-list-item {
  display: flex;
  align-items: start;
  column-gap: 0.3125rem;
}
.tariff__card-list--features {
  background-color: #f0f2f2;
  border-radius: 0.9375rem;
  padding: 1.25rem;
  margin-block: 1.25rem;
  font-size: 0.875rem;
}
.tariff__card-features {
  font-family: var(--font-alternate);
  font-size: 0.875rem;
}
.tariff__card-btn-box {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
}

.line {
  height: 0.125rem;
  width: 100%;
  background-color: #d1d1d1;
  margin-block: 1.5625rem;
}

.process {
  padding-block: 7.5rem;
  background-color: var(--color-font-black);
}
.process__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .process__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (width <= 47.99875rem) and (width <= 47.99875rem) {
  .process__inner {
    gap: 1.25rem;
  }
}
.process__header {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
  color: var(--color-white);
  transform: translateY(-3.75rem);
}
@media (width <= 47.99875rem) {
  .process__header {
    transform: none;
    order: 1;
    margin-bottom: 1.25rem;
  }
}
.process__title {
  text-align: start;
}
.process__column {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .process__column {
    display: contents;
  }
}
.process__column:first-child > .process__card:nth-child(2) .process__card-icon {
  width: clamp(10.25rem, 8.5578512397rem + 6.9421487603vw, 15.5rem);
  height: clamp(11.1875rem, 9.7975206612rem + 5.7024793388vw, 15.5rem);
}
.process__column:first-child > .process__card:nth-child(3) .process__card-icon {
  width: clamp(12rem, 9.763946281rem + 9.173553719vw, 18.9375rem);
  height: clamp(9.8125rem, 8.4023760331rem + 5.7851239669vw, 14.1875rem);
}
@media (width <= 47.99875rem) {
  .process__column:first-child > .process__card:nth-child(3) {
    height: 23.75rem;
  }
}
.process__column:first-child .process__card-content {
  margin-top: 1.25rem;
  justify-content: flex-start;
}
.process__column:last-child > .process__card:nth-child(1) .process__card-icon {
  top: 30%;
  left: var(--padding-card-process);
  width: clamp(12.1875rem, 10.4752066116rem + 7.0247933884vw, 17.5rem);
  height: clamp(3.25rem, 2.7866735537rem + 1.9008264463vw, 4.6875rem);
}
@media (width <= 47.99875rem) {
  .process__column:last-child > .process__card:nth-child(1) .process__card-icon {
    top: 20%;
  }
}
@media (width <= 30.06125rem) {
  .process__column:last-child > .process__card:nth-child(1) .process__card-icon {
    visibility: hidden;
  }
}
.process__column:last-child > .process__card:nth-child(2) .process__card-icon {
  bottom: var(--padding-card-process);
  right: var(--padding-card-process);
  width: clamp(7.9375rem, 7.3935950413rem + 2.2314049587vw, 9.625rem);
  height: clamp(9.9375rem, 9.0108471074rem + 3.8016528926vw, 12.8125rem);
  transform: rotate(-10deg);
}
@media (width <= 47.99875rem) {
  .process__column:last-child > .process__card:nth-child(2) .process__card-icon {
    opacity: 0;
    visibility: hidden;
  }
}
.process__card {
  --padding-card-process: 40px;
  position: relative;
  background-color: var(--color-yellow);
  padding: var(--padding-card-process);
  border-radius: 1.25rem;
  height: clamp(18.75rem, 16.7355371901rem + 8.2644628099vw, 25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  row-gap: 2rem;
}
.process__card--big {
  height: clamp(21.25rem, 19.2355371901rem + 8.2644628099vw, 27.5rem);
}
.process__card:nth-child(even) {
  background-color: white;
}
.process__card-number {
  position: absolute;
  top: var(--padding-card-process);
  right: var(--padding-card-process);
  width: clamp(3.75rem, 2.944214876rem + 3.305785124vw, 6.25rem);
  height: clamp(3.75rem, 2.944214876rem + 3.305785124vw, 6.25rem);
}
.process__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  row-gap: clamp(1rem, 0.6776859504rem + 1.3223140496vw, 2rem);
  height: 100%;
}
.process__card-title {
  line-height: 1.8125rem;
  text-align: start;
  max-width: 13.75rem;
  font-size: clamp(1rem, 0.6373966942rem + 1.4876033058vw, 2.125rem);
}
@media (width <= 47.99875rem) {
  .process__card-title {
    line-height: 1.2;
  }
}
.process__card-description {
  max-width: clamp(12.5rem, 9.5790289256rem + 11.9834710744vw, 21.5625rem);
}
.process__card-icon {
  object-fit: contain;
  right: 0;
  bottom: -10px;
  position: absolute;
  z-index: 1;
}
@media (width <= 47.99875rem) {
  .process__card[data-step="1"] {
    order: 2;
    background-color: var(--color-yellow);
  }
  .process__card[data-step="2"] {
    order: 3;
    background-color: white;
  }
  .process__card[data-step="3"] {
    order: 4;
    background-color: var(--color-yellow);
  }
  .process__card[data-step="4"] {
    order: 5;
    background-color: white;
  }
}
.process__button {
  height: 4.375rem;
  margin-top: auto;
}
@media (width <= 47.99875rem) {
  .process__button {
    order: 6;
    margin-top: 1.25rem;
  }
}

.card-service {
  padding-block: clamp(5rem, 4.194214876rem + 3.305785124vw, 7.5rem);
}
.card-service .form__title {
  line-height: 2.3125rem;
  font-size: clamp(1rem, 0.6373966942rem + 1.4876033058vw, 2.125rem);
}
@media (width <= 47.99875rem) {
  .card-service .form__title {
    line-height: 1;
  }
}

.faq {
  padding-block: clamp(5rem, 4.597107438rem + 1.652892562vw, 6.25rem);
}
.faq__title {
  margin-bottom: 2.5rem;
}
@media (width <= 63.99875rem) {
  .faq__title {
    text-align: center;
  }
}
.faq__questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  column-gap: 2rem;
  row-gap: 1rem;
}
@media (width <= 47.99875rem) {
  .faq__questions {
    grid-template-columns: 1fr;
  }
}
.faq__question {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-color: var(--color-font-black);
  padding: 0.9375rem 1.5625rem;
  border-radius: 1.25rem;
  row-gap: 0;
  transition: all var(--transition-duration) ease-in-out;
}
.faq__question.is-active {
  row-gap: 0.625rem;
}
.faq__question:hover .faq__icon {
  background-color: var(--color-red);
  color: white;
}
.faq__question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-alternate);
  color: currentColor;
  font-weight: 700;
  width: 100%;
  column-gap: 1rem;
}
.faq__question-answer {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  max-height: 0;
}
.faq__question-answer button:not([class]) {
  color: #6681e6;
  border-bottom: solid 0.0625rem currentColor;
}
.faq__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-yellow);
  border-radius: 50%;
  color: var(--color-font-black);
  aspect-ratio: 1/1;
  transition: all var(--transition-duration) ease-in-out;
}
.faq__question.is-active .faq__icon {
  transform: rotate(-45deg);
}
.faq__icon {
  width: 2.5rem;
  height: 2.5rem;
}

.footer {
  padding-bottom: 8.125rem;
  font-size: 0.875rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr auto;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  column-gap: clamp(0.75rem, -0.0154958678rem + 3.1404958678vw, 3.125rem);
}
@media (width <= 47.99875rem) {
  .footer__grid {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.footer__img {
  flex-shrink: 0;
}
.footer__column:nth-child(2) {
  grid-column-start: 3;
}
.footer__column:nth-child(3) {
  grid-column-start: 5;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  align-items: start;
  row-gap: 1rem;
  column-gap: 2rem;
}
.footer__list-item {
  white-space: nowrap;
}
@media (width <= 63.99875rem) {
  .footer__list {
    display: flex;
    flex-direction: column;
  }
}
.footer__address {
  color: #222222;
  opacity: 0.5;
}
.footer__address-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.connection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  max-width: 23.75rem;
  margin-inline: auto;
  width: 100%;
}
.connection p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
}
.connection--data {
  row-gap: 1.25rem;
  color: black;
  font-family: var(--font-alternate);
}
.connection--data p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}
.connection--data img {
  filter: invert(38%) sepia(91%) saturate(3187%) hue-rotate(79deg) brightness(92%) contrast(92%);
}

.menu-burger {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  z-index: 100;
  transform: translateX(100%);
  transition: all var(--transition-duration) ease-in-out;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
}
@media (max-width: 960px) {
  .menu-burger.is-active {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
.menu-burger__content {
  font-weight: 400;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 2.625rem 1.5625rem;
  height: 100%;
  overflow: auto;
  row-gap: 1rem;
}
.menu-burger__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.menu-burger__list-item {
  position: relative;
}
.menu-burger__list-item[data-js-faq-title].is-active {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  transition: all 0.1s ease-in-out;
}
.menu-burger__list-item[data-js-faq-title] {
  row-gap: 0;
}
.menu-burger__list-link--dropdown {
  position: relative;
}
.menu-burger__list-sub {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  border-bottom: 0.0625rem solid gray;
  padding-bottom: 1rem;
}
.menu-burger__sub {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  max-height: 0;
}
.menu-burger__button {
  font-size: 0.875rem;
  margin-top: auto;
}

.error {
  position: relative;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: rgb(249, 93, 81);
  max-width: 25rem;
  height: 3.9375rem;
  opacity: 0.9;
  transition: all var(--transition-duration) ease-in-out;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.error.is-active {
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (width <= 47.99875rem) {
  .error {
    right: 0;
    bottom: 1rem;
  }
}
.error__content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 0.9375rem;
  color: var(--color-white);
  padding: 0.9375rem;
}
.error__icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  filter: brightness(0) invert(1);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.modal.is-active {
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal.is-active .modal__content {
  opacity: 1;
  transform: translateY(0);
}
.modal__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modal__title {
  font-size: clamp(1.75rem, 1.6089876033rem + 0.5785123967vw, 2.1875rem);
}
.modal__form {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.modal__form-label {
  font-family: var(--font-alternate);
  font-weight: 300;
}
.modal__section {
  display: none;
  position: relative;
  background-color: var(--color-white);
  border-radius: 1.5625rem;
  padding: 2.5rem 2.8125rem;
  max-height: 95vh;
  overflow-y: auto;
  width: 47.5rem;
}
.modal__section.is-active {
  display: block;
}
.modal__section fieldset label {
  font-family: var(--font-family);
}
@media (width <= 47.99875rem) {
  .modal__section {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}
.modal__section[data-modal=file] {
  overflow: hidden;
  width: 60rem;
  background-color: rgb(246, 247, 250);
}
.modal__section[data-modal=file] .modal__title {
  line-height: clamp(1.5625rem, 1.4617768595rem + 0.4132231405vw, 1.875rem);
  font-size: 1.5rem;
}
@media (width > 900px) {
  .modal__section[data-modal=file] .modal__title {
    max-width: 35rem;
  }
}
.modal__section[data-modal=file] .modal__form-label {
  font-size: 0.875rem;
}
.modal__section[data-modal=file] .modal__form {
  row-gap: 0.5rem;
}
@media (width > 900px) {
  .modal__section[data-modal=file] .modal__form {
    max-width: 22.5rem;
  }
}
.modal__section[data-modal=file] .modal__img {
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
  overflow: hidden;
}
@media (max-width: 900px) {
  .modal__section[data-modal=file] .modal__img {
    position: static;
    align-self: center;
    flex-shrink: 0;
  }
}
.modal__section[data-modal=file] .modal__form-policy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .modal__section[data-modal=file].is-active {
    display: flex;
    flex-direction: column;
    overflow: auto;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.modal__section[data-modal=policy] {
  flex-direction: column;
  align-items: start;
  row-gap: 1rem;
}
.modal__section[data-modal=policy] h2,
.modal__section[data-modal=policy] h3,
.modal__section[data-modal=policy] h4,
.modal__section[data-modal=policy] h5,
.modal__section[data-modal=policy] h6 {
  font-family: var(--font-family) !important;
  font-weight: 700;
}
.modal__section[data-modal=policy] h2 {
  text-align: start;
  font-size: 1.5rem;
}
.modal__section[data-modal=policy] p,
.modal__section[data-modal=policy] h3 {
  font-size: clamp(0.875rem, 0.8347107438rem + 0.1652892562vw, 1rem);
}
.modal__section[data-modal=policy].is-active {
  display: flex;
}
.modal__section[data-modal=connection] {
  max-width: 27.5rem;
  border-radius: 0.625rem;
}
@media (width <= 47.99875rem) {
  .modal__section[data-modal=connection].is-active {
    margin-top: auto;
    height: auto;
    max-width: 100%;
    border-end-end-radius: 0;
    border-end-start-radius: 0;
  }
}
.modal__section[data-modal=push-data] {
  max-width: 22.5rem;
  border-radius: 0.625rem;
}
@media (width <= 47.99875rem) {
  .modal__section[data-modal=push-data].is-active {
    height: auto;
  }
}
.modal__title {
  margin-bottom: 1.5rem;
}
.modal__subtitle {
  margin-bottom: 1rem;
}
.modal__form-option {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  column-gap: 0.3125rem;
  font-size: 0.9375rem;
}
.modal__form-error {
  color: var(--color-red);
  font-size: 0.8125rem;
  padding-top: 0.3125rem;
}
.modal__form-options-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  font-weight: 300;
}
.modal__form-options-wrapper label {
  font-size: 0.875rem;
}
.modal__form-select {
  border: 0.0625rem solid #c9c9c9;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  font-size: 1rem;
  width: 100%;
}
.modal__textarea {
  resize: vertical;
}
.modal__form-policy {
  font-size: 0.875rem;
}
.modal__form-options-wrapper.is-error {
  border: 0.0625rem solid var(--color-red);
  padding: 0.625rem;
  border-radius: 0.625rem;
}
.modal__input:not([type=checkbox]):not([type=radio]) {
  border: 0.0625rem solid #c9c9c9;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  height: 3.75rem;
  background-color: white;
}
.modal__input:not([type=checkbox]):not([type=radio])::placeholder {
  font-size: 1rem;
}
.modal__button-close {
  right: 0.5rem;
  top: 0.5rem;
  position: absolute;
}
.modal__button-close img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (width > 47.99875rem) {
  .modal__button-close {
    filter: brightness(0) invert(1);
  }
}

.is-error {
  border-color: var(--color-red) !important;
  outline: none;
}

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