@charset "UTF-8";
/* Переменные цветов */
:root {
  --ui-brand-main: #8D46F6;
  --ui-brand-secondary: #7E40DA;
  --ui-text-main: #191816;
  --ui-text-secondary: #7C8092;
  --ui-text-substrate: #FFFFFF;
  --ui-bg-main: #ffffff;
  --ui-bg-secondary: #EFF0F5;
  --ui-bg-surface: #E1E1E9;
  --ui-bg-surface-secondary: #F4F5FA;
  --ui-bg-icon: #1F222E;
  --ui-stroke-main: #D4D4DD;
  --ui-status-success: #00856D;
  --ui-status-warning: #E06800;
  --ui-status-danger: #E10007;
  --ui-colorful-beige: #F1EFE4;
  --ui-colorful-success-secondary: #D9F2E3;
  --ui-colorful-danger-secondary: #FEEDED;
  --ui-colorful-warning-secondary: #FCE9D9;
  --ui-colorful-violet: #E8E5F9;
  --ui-colorful-dark: #1B1C1F;
  --ui-colorful-success: #07AB8E;
  --ui-colorful-danger: #F65121;
  --ui-colorful-warning: #F68721;
  --ui-substrate-modal: rgba(0, 0, 0, 0.5);
}

/* Ресет файлы */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ui-text-main);
  font-weight: 400;
  background-color: #111219;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a,
a:visited {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  font-family: "GB Font", sans-serif;
}
button:focus {
  outline: none;
}

img {
  display: block;
}

@font-face {
  font-family: "GB Font";
  font-weight: 400;
  src: url("../fonts/GBFont-Regular.woff");
}
@font-face {
  font-family: "GB Font";
  font-weight: 400;
  src: url("../fonts/GBFont-Regular.woff2");
}
@font-face {
  font-family: "GB Font";
  font-weight: 700;
  src: url("../fonts/GBFont-Bold.woff");
}
@font-face {
  font-family: "GB Font";
  font-weight: 700;
  src: url("../fonts/GBFont-Bold.woff2");
}
@font-face {
  font-family: AB;
  font-weight: 400;
  src: url("https://zc.irkwood38.ru/assets/fonts/apple-braille.ttf");
}
/* Подключение стилей библиотеки */
/* Стилия для кнопок */
.ui-button {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  outline: none;
  border: 0;
  font-family: "GB Font", sans-serif;
  transition: 80ms ease-in-out;
}
.ui-button:focus {
  outline: none;
}
.ui-button span {
  display: block;
}
.ui-button span:not(.ui-button-text--secondary) {
  font-weight: 700;
}
.ui-button-view--1 {
  background-color: var(--ui-brand-main);
}
.ui-button-view--1 span,
.ui-button-view--1 svg {
  color: var(--ui-text-substrate);
}
.ui-button-view--1:focus, .ui-button-view--1:hover, .ui-button-view--1.active, .ui-button-view--1:active {
  background-color: var(--ui-brand-secondary);
}
.ui-button-view--1.disabled {
  background-color: var(--ui-bg-surface-secondary);
  cursor: default;
}
.ui-button-view--1.disabled span,
.ui-button-view--1.disabled svg {
  color: var(--ui-stroke-main);
}
.ui-button-view--1:focus-visible {
  box-shadow: 0px 0px 0px 2px #99c0f0;
}
.ui-button-view--1 .ui-button-text--secondary {
  opacity: 0.8;
}
.ui-button-view--2 {
  background-color: var(--ui-bg-secondary);
}
.ui-button-view--2 span,
.ui-button-view--2 svg {
  color: var(--ui-text-main);
}
.ui-button-view--2:hover {
  background-color: var(--ui-bg-surface);
}
.ui-button-view--2.active, .ui-button-view--2:active {
  background-color: var(--ui-stroke-main);
}
.ui-button-view--2.disabled {
  background-color: var(--ui-bg-surface-secondary);
}
.ui-button-view--2.disabled span,
.ui-button-view--2.disabled svg {
  color: var(--ui-stroke-main);
}
.ui-button-view--2:focus-visible {
  background-color: var(--ui-bg-secondary);
  box-shadow: 0px 0px 0px 2px #99c0f0;
}
.ui-button-view--2 .ui-button-icon-left {
  margin-right: 3;
  margin-left: -2;
}
.ui-button-view--2 .ui-button-text--secondary {
  color: #7C8092;
}
.ui-button-view--3 {
  background-color: #ffffff;
  border: 1px solid var(--ui-brand-main);
}
.ui-button-view--3 span,
.ui-button-view--3 svg {
  color: var(--ui-brand-main);
}
.ui-button-view--3:hover {
  background-color: var(--ui-bg-surface);
}
.ui-button-view--3.active, .ui-button-view--3:active {
  background-color: var(--ui-stroke-main);
}
.ui-button-view--3.disabled {
  background-color: var(--ui-bg-surface-secondary);
  opacity: 0.5;
}
.ui-button-view--3:focus {
  background-color: var(--ui-bg-secondary);
  border: 1px solid var(--ui-bg-secondary);
  box-shadow: 0px 0px 0px 2px #99c0f0;
}
.ui-button-view--3 .ui-button-icon-left {
  margin-right: 3;
  margin-left: -2;
}
.ui-button-view--3 .ui-button-text--secondary {
  opacity: 0.8;
}
.ui-button-view--4 {
  background-color: transparent;
}
.ui-button-view--4 span,
.ui-button-view--4 svg {
  color: var(--ui-text-main);
}
.ui-button-view--4:hover {
  background-color: var(--ui-bg-secondary);
}
.ui-button-view--4.active, .ui-button-view--4:active {
  background-color: var(--ui-bg-surface);
}
.ui-button-view--4.disabled {
  background-color: transparent;
  cursor: default;
}
.ui-button-view--4.disabled span,
.ui-button-view--4.disabled svg {
  color: var(--ui-stroke-main);
}
.ui-button-view--4:focus-visible {
  background-color: transparent;
  box-shadow: 0px 0px 0px 2px #99c0f0;
}
.ui-button-view--5 {
  background-color: #1F222E;
}
.ui-button-view--5 span,
.ui-button-view--5 svg {
  color: #FFFFFF;
}
.ui-button-view--5:focus, .ui-button-view--5:hover, .ui-button-view--5.active, .ui-button-view--5:active {
  background-color: rgba(31, 34, 46, 0.9);
}
.ui-button-view--5.disabled {
  background-color: var(--ui-bg-surface-secondary);
  cursor: default;
}
.ui-button-view--5.disabled span,
.ui-button-view--5.disabled svg {
  color: var(--ui-stroke-main);
}
.ui-button-view--5:focus-visible {
  box-shadow: 0px 0px 0px 2px #99c0f0;
}
.ui-button-view--5 .ui-button-text--secondary {
  color: #7F8399;
  opacity: 0.8;
}
.ui-button-size--32 {
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
}
.ui-button-size--32 svg {
  width: 16px;
  height: 16px;
}
.ui-button-size--32 svg + span {
  margin-top: 4px;
}
.ui-button-size--32 .ui-button-icon--left {
  margin-right: 8px;
}
.ui-button-size--32 .ui-button-icon--right {
  margin-left: 8px;
  order: 1;
}
.ui-button-size--32.ui-button--square {
  width: 32px;
}
.ui-button-size--32.ui-button--square svg {
  margin: 0;
}
.ui-button-size--48 {
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
}
.ui-button-size--48 svg {
  width: 24px;
  height: 24px;
}
.ui-button-size--48 svg + span {
  margin-top: 4px;
}
.ui-button-size--48 .ui-button-icon--left {
  margin-right: 12px;
}
.ui-button-size--48 .ui-button-icon--right {
  margin-left: 12px;
  order: 1;
}
.ui-button-size--48.ui-button--square {
  width: 48px;
}
.ui-button-size--48.ui-button--circle {
  width: 48px;
  border-radius: 48px;
  padding: 0;
  justify-content: center;
}
.ui-button-size--64 {
  height: 64px;
  padding: 0 32px;
  border-radius: 12px;
}
.ui-button-size--64 svg {
  width: 28px;
  height: 28px;
}
.ui-button-size--64 svg + span {
  margin-top: 4px;
}
.ui-button-size--64 .ui-button-icon--left {
  margin-right: 20px;
}
.ui-button-size--64 .ui-button-icon--right {
  margin-left: 20px;
  order: 1;
}
.ui-button-size--64.ui-button--square {
  width: 64px;
}
.ui-button-size--64.ui-button--circle {
  width: 64px;
  border-radius: 64px;
  padding: 0;
  justify-content: center;
}
.ui-button-size--96 {
  height: 96px;
  padding: 48px;
  border-radius: 12px;
}
.ui-button-size--96 svg {
  width: 28px;
  height: 28px;
}
.ui-button-size--96 svg + span {
  margin-top: 4px;
}
.ui-button-size--96 .ui-button-icon--left {
  margin-right: 20px;
}
.ui-button-size--96 .ui-button-icon--right {
  margin-left: 20px;
  order: 1;
}
.ui-button-size--96.ui-button--square {
  width: 96px;
}
.ui-button-size--96.ui-button--circle {
  width: 96px;
  border-radius: 96px;
  padding: 0;
  justify-content: center;
}
.ui-button--square {
  justify-content: center;
  padding: 0;
}
.ui-button--liquid {
  justify-content: center;
  flex-grow: 1;
}
.ui-button--full {
  width: 100%;
  justify-content: center;
}

.ui-button-shadow-view--1 {
  background-color: #ffffff;
  border: 2px solid #252525;
  box-shadow: -3px 3px 0px #000000;
}
.ui-button-shadow-view--1 span,
.ui-button-shadow-view--1 svg {
  color: #191816;
}
.ui-button-shadow-view--1:hover {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--1.active, .ui-button-shadow-view--1:active {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--1.disabled {
  background-color: #7C8092;
  box-shadow: none;
  opacity: 0.6;
  color: #4F5364;
}
.ui-button-shadow-view--1:focus-visible {
  border: 2px solid #99C0F0;
}
.ui-button-shadow-view--1 .ui-button-text--secondary {
  opacity: 0.8;
  color: #7F8399;
}
.ui-button-shadow-view--2 {
  background-color: #71E76E;
  border: 2px solid #252525;
  box-shadow: -3px 3px 0px #000000;
}
.ui-button-shadow-view--2 span,
.ui-button-shadow-view--2 svg {
  color: #191816;
}
.ui-button-shadow-view--2:hover {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--2.active, .ui-button-shadow-view--2:active {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--2.disabled {
  background-color: #7C8092;
  box-shadow: none;
  opacity: 0.6;
  color: #4F5364;
}
.ui-button-shadow-view--2:focus-visible {
  border: 2px solid #99C0F0;
}
.ui-button-shadow-view--2 .ui-button-text--secondary {
  opacity: 0.8;
  color: #191816;
}
.ui-button-shadow-view--3 {
  background-color: #FCB8FF;
  border: 2px solid #252525;
  box-shadow: -3px 3px 0px #000000;
}
.ui-button-shadow-view--3 span,
.ui-button-shadow-view--3 svg {
  color: #191816;
}
.ui-button-shadow-view--3:hover {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--3.active, .ui-button-shadow-view--3:active {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--3.disabled {
  background-color: #7C8092;
  box-shadow: none;
  opacity: 0.6;
  color: #4F5364;
}
.ui-button-shadow-view--3:focus-visible {
  border: 2px solid #99C0F0;
}
.ui-button-shadow-view--3 .ui-button-text--secondary {
  opacity: 0.8;
  color: #191816;
}
.ui-button-shadow-view--4 {
  background-color: #8D46F6;
  color: #fff;
  border: 2px solid #252525;
  box-shadow: -3px 3px 0px #000000;
}
.ui-button-shadow-view--4 span,
.ui-button-shadow-view--4 svg {
  color: #fff;
}
.ui-button-shadow-view--4:hover {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--4.active, .ui-button-shadow-view--4:active {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--4.disabled {
  background-color: #7C8092;
  color: #4F5364;
  box-shadow: none;
  opacity: 0.6;
}
.ui-button-shadow-view--4:focus-visible {
  border: 2px solid #99C0F0;
}
.ui-button-shadow-view--4 .ui-button-text--secondary {
  opacity: 0.8;
  color: #fff;
}
.ui-button-shadow-view--5 {
  background-color: #FD7B55;
  color: #fff;
  border: 2px solid #252525;
  box-shadow: -3px 3px 0px #000000;
}
.ui-button-shadow-view--5 span,
.ui-button-shadow-view--5 svg {
  color: #fff;
}
.ui-button-shadow-view--5:hover {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--5.active, .ui-button-shadow-view--5:active {
  box-shadow: -1px 1px 0px #000000;
}
.ui-button-shadow-view--5.disabled {
  background-color: #7C8092;
  box-shadow: none;
  opacity: 0.6;
  color: #4F5364;
}
.ui-button-shadow-view--5:focus-visible {
  border: 2px solid #99C0F0;
}
.ui-button-shadow-view--5 .ui-button-text--secondary {
  opacity: 0.8;
  color: #fff;
}

/* Стилия для типографики */
.ui-text-hero--1 {
  font-size: 36px;
  line-height: 48px;
}
@media (min-width: 1024px) {
  .ui-text-hero--1 {
    font-size: 76px;
    line-height: 90px;
  }
}
.ui-text-hero--2 {
  font-size: 35px;
  line-height: 40px;
}
@media (min-width: 1024px) {
  .ui-text-hero--2 {
    font-size: 68px;
    line-height: 88px;
  }
}
.ui-text-hero--3 {
  font-size: 32px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .ui-text-hero--3 {
    font-size: 54px;
    line-height: 70px;
  }
}

.ui-text-heading--1 {
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .ui-text-heading--1 {
    font-size: 36px;
    line-height: 48px;
  }
}
.ui-text-heading--2 {
  font-size: 24px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .ui-text-heading--2 {
    font-size: 36px;
    line-height: 48px;
  }
}
.ui-text-heading--3 {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .ui-text-heading--3 {
    font-size: 28px;
    line-height: 36px;
  }
}
.ui-text-heading--4 {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .ui-text-heading--4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.ui-text-heading--5 {
  font-size: 18px;
  line-height: 24px;
}
.ui-text-heading--6 {
  font-size: 16px;
  line-height: 22px;
}
.ui-text-heading--7 {
  font-size: 14px;
  line-height: 18px;
}

.ui-text-body--1 {
  font-size: 24px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .ui-text-body--1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.ui-text-body--2 {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .ui-text-body--2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.ui-text-body--3 {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .ui-text-body--3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.ui-text-body--4 {
  font-size: 18px;
  line-height: 24px;
}
.ui-text-body--5 {
  font-size: 16px;
  line-height: 22px;
}
.ui-text-body--6 {
  font-size: 14px;
  line-height: 18px;
}
.ui-text-body--7 {
  font-size: 12px;
  line-height: 16px;
}
.ui-text-body--8 {
  font-size: 10px;
  line-height: 14px;
}

.ui-text--medium {
  font-weight: 500;
}
.ui-text--bold {
  font-weight: 700;
}
.ui-text--uppercase {
  text-transform: uppercase;
}

/* Стилия для контейнеров и их инициализация */
.ui-grid-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .ui-grid-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.ui-grid-gap {
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .ui-grid-gap {
    grid-gap: 24px;
  }
}
.ui-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767.9px) {
  .ui-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (min-width: 768px) {
  .ui-container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .ui-container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .ui-container {
    max-width: 1140px;
  }
}
@media (min-width: 1536px) {
  .ui-container {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .ui-container {
    max-width: 1600px;
  }
}
.ui-container-fluid {
  width: 100%;
  padding: 0;
}

/* Стилия для сетки */
[class*=ui-col-] {
  grid-column: span 2;
}

@media (min-width: 768px) {
  [class*=ui-col-] {
    grid-column: span 12;
  }
}
.ui-col-xs-1 {
  grid-column: span 1;
}

.ui-col-xs-2 {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .ui-col-sm-1 {
    grid-column: span 1;
  }
  .ui-col-sm-2 {
    grid-column: span 2;
  }
  .ui-col-sm-3 {
    grid-column: span 3;
  }
  .ui-col-sm-4 {
    grid-column: span 4;
  }
  .ui-col-sm-5 {
    grid-column: span 5;
  }
  .ui-col-sm-6 {
    grid-column: span 6;
  }
  .ui-col-sm-7 {
    grid-column: span 7;
  }
  .ui-col-sm-8 {
    grid-column: span 8;
  }
  .ui-col-sm-9 {
    grid-column: span 9;
  }
  .ui-col-sm-10 {
    grid-column: span 10;
  }
  .ui-col-sm-11 {
    grid-column: span 11;
  }
  .ui-col-sm-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1024px) {
  .ui-col-md-1 {
    grid-column: span 1;
  }
  .ui-col-md-2 {
    grid-column: span 2;
  }
  .ui-col-md-3 {
    grid-column: span 3;
  }
  .ui-col-md-4 {
    grid-column: span 4;
  }
  .ui-col-md-5 {
    grid-column: span 5;
  }
  .ui-col-md-6 {
    grid-column: span 6;
  }
  .ui-col-md-7 {
    grid-column: span 7;
  }
  .ui-col-md-8 {
    grid-column: span 8;
  }
  .ui-col-md-9 {
    grid-column: span 9;
  }
  .ui-col-md-10 {
    grid-column: span 10;
  }
  .ui-col-md-11 {
    grid-column: span 11;
  }
  .ui-col-md-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1280px) {
  .ui-col-lg-1 {
    grid-column: span 1;
  }
  .ui-col-lg-2 {
    grid-column: span 2;
  }
  .ui-col-lg-3 {
    grid-column: span 3;
  }
  .ui-col-lg-4 {
    grid-column: span 4;
  }
  .ui-col-lg-5 {
    grid-column: span 5;
  }
  .ui-col-lg-6 {
    grid-column: span 6;
  }
  .ui-col-lg-7 {
    grid-column: span 7;
  }
  .ui-col-lg-8 {
    grid-column: span 8;
  }
  .ui-col-lg-9 {
    grid-column: span 9;
  }
  .ui-col-lg-10 {
    grid-column: span 10;
  }
  .ui-col-lg-11 {
    grid-column: span 11;
  }
  .ui-col-lg-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1536px) {
  .ui-col-xl-1 {
    grid-column: span 1;
  }
  .ui-col-xl-2 {
    grid-column: span 2;
  }
  .ui-col-xl-3 {
    grid-column: span 3;
  }
  .ui-col-xl-4 {
    grid-column: span 4;
  }
  .ui-col-xl-5 {
    grid-column: span 5;
  }
  .ui-col-xl-6 {
    grid-column: span 6;
  }
  .ui-col-xl-7 {
    grid-column: span 7;
  }
  .ui-col-xl-8 {
    grid-column: span 8;
  }
  .ui-col-xl-9 {
    grid-column: span 9;
  }
  .ui-col-xl-10 {
    grid-column: span 10;
  }
  .ui-col-xl-11 {
    grid-column: span 11;
  }
  .ui-col-xl-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1920px) {
  .ui-col-xxl-1 {
    grid-column: span 1;
  }
  .ui-col-xxl-2 {
    grid-column: span 2;
  }
  .ui-col-xxl-3 {
    grid-column: span 3;
  }
  .ui-col-xxl-4 {
    grid-column: span 4;
  }
  .ui-col-xxl-5 {
    grid-column: span 5;
  }
  .ui-col-xxl-6 {
    grid-column: span 6;
  }
  .ui-col-xxl-7 {
    grid-column: span 7;
  }
  .ui-col-xxl-8 {
    grid-column: span 8;
  }
  .ui-col-xxl-9 {
    grid-column: span 9;
  }
  .ui-col-xxl-10 {
    grid-column: span 10;
  }
  .ui-col-xxl-11 {
    grid-column: span 11;
  }
  .ui-col-xxl-12 {
    grid-column: span 12;
  }
}
.ui-start-xs-1 {
  grid-column-start: 1;
}

.ui-start-xs-2 {
  grid-column-start: 2;
}

.ui-start-xs-3 {
  grid-column-start: 3;
}

@media (min-width: 768px) {
  .ui-start-sm-1 {
    grid-column-start: 1;
  }
  .ui-start-sm-2 {
    grid-column-start: 2;
  }
  .ui-start-sm-3 {
    grid-column-start: 3;
  }
  .ui-start-sm-4 {
    grid-column-start: 4;
  }
  .ui-start-sm-5 {
    grid-column-start: 5;
  }
  .ui-start-sm-6 {
    grid-column-start: 6;
  }
  .ui-start-sm-7 {
    grid-column-start: 7;
  }
  .ui-start-sm-8 {
    grid-column-start: 8;
  }
  .ui-start-sm-9 {
    grid-column-start: 9;
  }
  .ui-start-sm-10 {
    grid-column-start: 10;
  }
  .ui-start-sm-11 {
    grid-column-start: 11;
  }
  .ui-start-sm-12 {
    grid-column-start: 12;
  }
  .ui-start-sm-13 {
    grid-column-start: 13;
  }
}
@media (min-width: 1024px) {
  .ui-start-md-1 {
    grid-column-start: 1;
  }
  .ui-start-md-2 {
    grid-column-start: 2;
  }
  .ui-start-md-3 {
    grid-column-start: 3;
  }
  .ui-start-md-4 {
    grid-column-start: 4;
  }
  .ui-start-md-5 {
    grid-column-start: 5;
  }
  .ui-start-md-6 {
    grid-column-start: 6;
  }
  .ui-start-md-7 {
    grid-column-start: 7;
  }
  .ui-start-md-8 {
    grid-column-start: 8;
  }
  .ui-start-md-9 {
    grid-column-start: 9;
  }
  .ui-start-md-10 {
    grid-column-start: 10;
  }
  .ui-start-md-11 {
    grid-column-start: 11;
  }
  .ui-start-md-12 {
    grid-column-start: 12;
  }
  .ui-start-md-13 {
    grid-column-start: 13;
  }
}
@media (min-width: 1280px) {
  .ui-start-lg-1 {
    grid-column-start: 1;
  }
  .ui-start-lg-2 {
    grid-column-start: 2;
  }
  .ui-start-lg-3 {
    grid-column-start: 3;
  }
  .ui-start-lg-4 {
    grid-column-start: 4;
  }
  .ui-start-lg-5 {
    grid-column-start: 5;
  }
  .ui-start-lg-6 {
    grid-column-start: 6;
  }
  .ui-start-lg-7 {
    grid-column-start: 7;
  }
  .ui-start-lg-8 {
    grid-column-start: 8;
  }
  .ui-start-lg-9 {
    grid-column-start: 9;
  }
  .ui-start-lg-10 {
    grid-column-start: 10;
  }
  .ui-start-lg-11 {
    grid-column-start: 11;
  }
  .ui-start-lg-12 {
    grid-column-start: 12;
  }
  .ui-start-lg-13 {
    grid-column-start: 13;
  }
}
@media (min-width: 1536px) {
  .ui-start-xl-1 {
    grid-column-start: 1;
  }
  .ui-start-xl-2 {
    grid-column-start: 2;
  }
  .ui-start-xl-3 {
    grid-column-start: 3;
  }
  .ui-start-xl-4 {
    grid-column-start: 4;
  }
  .ui-start-xl-5 {
    grid-column-start: 5;
  }
  .ui-start-xl-6 {
    grid-column-start: 6;
  }
  .ui-start-xl-7 {
    grid-column-start: 7;
  }
  .ui-start-xl-8 {
    grid-column-start: 8;
  }
  .ui-start-xl-9 {
    grid-column-start: 9;
  }
  .ui-start-xl-10 {
    grid-column-start: 10;
  }
  .ui-start-xl-11 {
    grid-column-start: 11;
  }
  .ui-start-xl-12 {
    grid-column-start: 12;
  }
  .ui-start-xl-13 {
    grid-column-start: 13;
  }
}
@media (min-width: 1920px) {
  .ui-start-xxl-1 {
    grid-column-start: 1;
  }
  .ui-start-xxl-2 {
    grid-column-start: 2;
  }
  .ui-start-xxl-3 {
    grid-column-start: 3;
  }
  .ui-start-xxl-4 {
    grid-column-start: 4;
  }
  .ui-start-xxl-5 {
    grid-column-start: 5;
  }
  .ui-start-xxl-6 {
    grid-column-start: 6;
  }
  .ui-start-xxl-7 {
    grid-column-start: 7;
  }
  .ui-start-xxl-8 {
    grid-column-start: 8;
  }
  .ui-start-xxl-9 {
    grid-column-start: 9;
  }
  .ui-start-xxl-10 {
    grid-column-start: 10;
  }
  .ui-start-xxl-11 {
    grid-column-start: 11;
  }
  .ui-start-xxl-12 {
    grid-column-start: 12;
  }
  .ui-start-xxl-13 {
    grid-column-start: 13;
  }
}
.ui-end-xs-1 {
  grid-column-end: 1;
}

.ui-end-xs-2 {
  grid-column-end: 2;
}

.ui-end-xs-3 {
  grid-column-end: 3;
}

@media (min-width: 768px) {
  .ui-end-sm-1 {
    grid-column-end: 1;
  }
  .ui-end-sm-2 {
    grid-column-end: 2;
  }
  .ui-end-sm-3 {
    grid-column-end: 3;
  }
  .ui-end-sm-4 {
    grid-column-end: 4;
  }
  .ui-end-sm-5 {
    grid-column-end: 5;
  }
  .ui-end-sm-6 {
    grid-column-end: 6;
  }
  .ui-end-sm-7 {
    grid-column-end: 7;
  }
  .ui-end-sm-8 {
    grid-column-end: 8;
  }
  .ui-end-sm-9 {
    grid-column-end: 9;
  }
  .ui-end-sm-10 {
    grid-column-end: 10;
  }
  .ui-end-sm-11 {
    grid-column-end: 11;
  }
  .ui-end-sm-12 {
    grid-column-end: 12;
  }
  .ui-end-sm-13 {
    grid-column-end: 13;
  }
}
@media (min-width: 1024px) {
  .ui-end-md-1 {
    grid-column-end: 1;
  }
  .ui-end-md-2 {
    grid-column-end: 2;
  }
  .ui-end-md-3 {
    grid-column-end: 3;
  }
  .ui-end-md-4 {
    grid-column-end: 4;
  }
  .ui-end-md-5 {
    grid-column-end: 5;
  }
  .ui-end-md-6 {
    grid-column-end: 6;
  }
  .ui-end-md-7 {
    grid-column-end: 7;
  }
  .ui-end-md-8 {
    grid-column-end: 8;
  }
  .ui-end-md-9 {
    grid-column-end: 9;
  }
  .ui-end-md-10 {
    grid-column-end: 10;
  }
  .ui-end-md-11 {
    grid-column-end: 11;
  }
  .ui-end-md-12 {
    grid-column-end: 12;
  }
  .ui-end-md-13 {
    grid-column-end: 13;
  }
}
@media (min-width: 1280px) {
  .ui-end-lg-1 {
    grid-column-end: 1;
  }
  .ui-end-lg-2 {
    grid-column-end: 2;
  }
  .ui-end-lg-3 {
    grid-column-end: 3;
  }
  .ui-end-lg-4 {
    grid-column-end: 4;
  }
  .ui-end-lg-5 {
    grid-column-end: 5;
  }
  .ui-end-lg-6 {
    grid-column-end: 6;
  }
  .ui-end-lg-7 {
    grid-column-end: 7;
  }
  .ui-end-lg-8 {
    grid-column-end: 8;
  }
  .ui-end-lg-9 {
    grid-column-end: 9;
  }
  .ui-end-lg-10 {
    grid-column-end: 10;
  }
  .ui-end-lg-11 {
    grid-column-end: 11;
  }
  .ui-end-lg-12 {
    grid-column-end: 12;
  }
  .ui-end-lg-13 {
    grid-column-end: 13;
  }
}
@media (min-width: 1536px) {
  .ui-end-xl-1 {
    grid-column-end: 1;
  }
  .ui-end-xl-2 {
    grid-column-end: 2;
  }
  .ui-end-xl-3 {
    grid-column-end: 3;
  }
  .ui-end-xl-4 {
    grid-column-end: 4;
  }
  .ui-end-xl-5 {
    grid-column-end: 5;
  }
  .ui-end-xl-6 {
    grid-column-end: 6;
  }
  .ui-end-xl-7 {
    grid-column-end: 7;
  }
  .ui-end-xl-8 {
    grid-column-end: 8;
  }
  .ui-end-xl-9 {
    grid-column-end: 9;
  }
  .ui-end-xl-10 {
    grid-column-end: 10;
  }
  .ui-end-xl-11 {
    grid-column-end: 11;
  }
  .ui-end-xl-12 {
    grid-column-end: 12;
  }
  .ui-end-xl-13 {
    grid-column-end: 13;
  }
}
@media (min-width: 1920px) {
  .ui-end-xxl-1 {
    grid-column-end: 1;
  }
  .ui-end-xxl-2 {
    grid-column-end: 2;
  }
  .ui-end-xxl-3 {
    grid-column-end: 3;
  }
  .ui-end-xxl-4 {
    grid-column-end: 4;
  }
  .ui-end-xxl-5 {
    grid-column-end: 5;
  }
  .ui-end-xxl-6 {
    grid-column-end: 6;
  }
  .ui-end-xxl-7 {
    grid-column-end: 7;
  }
  .ui-end-xxl-8 {
    grid-column-end: 8;
  }
  .ui-end-xxl-9 {
    grid-column-end: 9;
  }
  .ui-end-xxl-10 {
    grid-column-end: 10;
  }
  .ui-end-xxl-11 {
    grid-column-end: 11;
  }
  .ui-end-xxl-12 {
    grid-column-end: 12;
  }
  .ui-end-xxl-13 {
    grid-column-end: 13;
  }
}
/* Стилия для модалок */
.ui-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ui-substrate-modal);
  z-index: 9999;
}
.ui-modal-content {
  position: relative;
  background-color: #fff;
  padding: 40px;
  border-radius: 28px;
}
.ui-modal.ui-modal-default {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-modal.ui-modal-default .ui-modal-container {
  margin-right: 9;
  margin-left: 9;
  width: 100%;
}
@media (min-width: 1920px) {
  .ui-modal.ui-modal-default .ui-modal-container {
    width: 952px;
  }
}
.ui-modal.ui-modal-default .ui-modal-button-close {
  top: 9;
  right: 9;
}
.ui-modal:not(.active) {
  display: none;
}

/* Стилия для тултипа */
.ui-tooltip {
  position: absolute;
  color: var(--ui-text-main);
  font-weight: 400;
  cursor: default;
  max-width: 310px;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
.ui-tooltip--show {
  position: relative;
}
.ui-tooltip--show:hover .ui-tooltip {
  display: block;
}
.ui-tooltip--left {
  top: 100%;
  right: 0;
}
.ui-tooltip--center {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.ui-tooltip--right {
  top: 100%;
  left: 0;
}
.ui-tooltip-arrow {
  display: flex;
  align-items: flex-end;
}
.ui-tooltip-arrow svg {
  width: 36px;
  height: 10px;
  color: #ffffff;
}
.ui-tooltip-arrow--center {
  justify-content: center;
}
.ui-tooltip-arrow--right {
  justify-content: flex-end;
  margin-right: 16px;
}
.ui-tooltip-wrapper--24 {
  padding: 24px;
}
.ui-tooltip-content {
  border-radius: 16px;
  box-shadow: 0px 3px 25px rgba(0, 30, 69, 0.22);
  background-color: #FFFFFF;
}

.square-4 {
  width: 4px;
  height: 4px;
}
.square-8 {
  width: 8px;
  height: 8px;
}
.square-12 {
  width: 12px;
  height: 12px;
}
.square-16 {
  width: 16px;
  height: 16px;
}
.square-20 {
  width: 20px;
  height: 20px;
}
.square-24 {
  width: 24px;
  height: 24px;
}
.square-28 {
  width: 28px;
  height: 28px;
}
.square-32 {
  width: 32px;
  height: 32px;
}
.square-36 {
  width: 36px;
  height: 36px;
}
.square-40 {
  width: 40px;
  height: 40px;
}
.square-44 {
  width: 44px;
  height: 44px;
}
.square-48 {
  width: 48px;
  height: 48px;
}
.square-52 {
  width: 52px;
  height: 52px;
}
.square-56 {
  width: 56px;
  height: 56px;
}
.square-60 {
  width: 60px;
  height: 60px;
}

.__indent-small {
  margin-bottom: 24px;
}
.__indent-medium {
  margin-bottom: 40px;
}
.__indent-large {
  margin-bottom: 80px;
}

.__container:first-child {
  margin-top: 80px;
}

.__wrapper {
  margin-bottom: -16px;
  display: flex;
  flex-wrap: wrap;
}
.__wrapper-item {
  margin-right: 16px;
  margin-bottom: 16px;
}

.__column {
  background-color: #848484;
  color: wheat;
  padding: 12px;
  border-radius: 12px;
}

.__accordion {
  border-bottom: 1px solid gray;
}
.__accordion:not(.active) .__accordion-body {
  display: none;
}
.__accordion-header {
  padding: 12px 0;
}
.__accordion-title {
  flex-grow: 1;
}
.__accordion-body {
  transition: 100ms ease-in-out;
  padding-bottom: 12px;
}

.__scroll-wrapper {
  background-color: gray;
  padding: 20px;
  overflow-x: auto;
  display: flex;
}
.__scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.__scroll-item {
  background-color: darkgray;
  width: 200px;
  height: 200px;
  margin-right: 32px;
  flex-shrink: 0;
}

.header {
  position: relative;
  z-index: 2;
  background-color: #111219;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .header__container {
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .header__container {
    justify-content: start;
    gap: 56px;
  }
}
.header__logo img {
  height: 24px;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 32px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}
@media (min-width: 1280px) {
  .header__nav {
    gap: 24px;
  }
}
@media (max-width: 1023.9px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 1280px) {
  .header__nav a {
    font-size: 20px;
    line-height: 24px;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
}
.header__phone {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  transition: color 80ms ease-in-out;
}
@media (min-width: 768px) {
  .header__phone {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
  }
}
@media (min-width: 1024px) {
  .header__phone {
    font-size: 20px;
    line-height: 28px;
  }
}
.header__phone:hover {
  color: #b61010;
}
.header__icons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}
@media (max-width: 767.9px) {
  .header__icons {
    display: none;
  }
}
.header__icon {
  width: 32px;
  height: 32px;
}
.header__menu {
  width: 24px;
  height: 24px;
  color: #fff;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .header__menu {
    margin-left: 32px;
  }
}
@media (min-width: 1024px) {
  .header__menu {
    display: none;
  }
}

.header-new {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.header-new__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (min-width: 1024px) {
  .header-new__container {
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .header-new__container {
    justify-content: start;
    gap: 56px;
  }
}
.header-new__company {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.header-new__info span {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: serif;
}
.header-new__info p {
  font-size: 12px;
  line-height: 16px;
  color: #727272;
}
.header-new__logo {
  height: 80px;
}
@media (min-width: 1280px) {
  .header-new__logo {
    height: 100px;
  }
}
.header-new__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}
@media (max-width: 1279.9px) {
  .header-new__nav {
    display: none;
  }
}
@media (min-width: 1280px) {
  .header-new__nav {
    gap: 24px;
  }
}
.header-new__nav a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #111219;
}
@media (min-width: 1280px) {
  .header-new__nav a {
    font-size: 20px;
    line-height: 24px;
  }
}
.header-new__currency-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 1279.9px) {
  .header-new__currency-container {
    display: none;
  }
}
.header-new__currency-wrapper {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #111219;
}
.header-new__contacts {
  display: flex;
  align-items: center;
}
.header-new__phone {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111219;
  transition: color 80ms ease-in-out;
}
@media (max-width: 767.9px) {
  .header-new__phone {
    display: none;
  }
}
@media (min-width: 768px) {
  .header-new__phone {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
  }
}
@media (min-width: 1024px) {
  .header-new__phone {
    font-size: 20px;
    line-height: 28px;
  }
}
.header-new__phone:hover {
  color: #b61010;
}
.header-new__icons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}
@media (max-width: 767.9px) {
  .header-new__icons {
    display: none;
  }
}
.header-new__icon {
  width: 32px;
  height: 32px;
}
.header-new__menu {
  width: 24px;
  height: 24px;
  color: #111219;
  margin-left: 16px;
}
@media (min-width: 768px) {
  .header-new__menu {
    margin-left: 32px;
  }
}
@media (min-width: 1024px) {
  .header-new__menu {
    display: none;
  }
}
.header-new__body {
  flex-grow: 1;
}

.cover {
  overflow: hidden;
  position: relative;
}
.cover__decor-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 1280px) {
  .cover__decor-container {
    bottom: 0;
    height: 100%;
  }
}
.cover__decor-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.cover__decor-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 18, 25, 0.9);
  box-shadow: inset 0px 0px 100px 100px rgb(17, 18, 25), inset 0px 0px 30px 30px rgb(17, 18, 25);
}
.cover__decor-image {
  width: 100%;
}
@media (min-width: 1280px) {
  .cover__decor-image {
    position: absolute;
  }
}
.cover__decor-left, .cover__decor-right {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .cover__decor-left {
    background-color: #111219;
  }
}
@media (min-width: 1280px) {
  .cover__decor-right {
    background-color: rgba(17, 18, 25, 0.7);
    box-shadow: inset 0px 0px 100px 100px rgb(17, 18, 25), inset 0px 0px 30px 30px rgb(17, 18, 25);
  }
}
.cover__container {
  position: relative;
}
.cover__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .cover__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .cover__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1536px) {
  .cover__title {
    font-size: 56px;
    line-height: 64px;
  }
}
.cover__title span:first-child {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cover__title span:first-child {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1024px) {
  .cover__title span:first-child {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1536px) {
  .cover__title span:first-child {
    font-size: 100px;
    line-height: 100px;
  }
}
.cover__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  max-width: 600px;
}
@media (min-width: 768px) {
  .cover__description {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .cover__description {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1536px) {
  .cover__description {
    font-size: 24px;
    line-height: 32px;
  }
}
.cover__quote {
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
  border-left: 3px solid rebeccapurple;
  padding-left: 16px;
  color:#b9b9b9;
}
@media (min-width: 768px) {
  .cover__quote {
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
    border-left: 4px solid rebeccapurple;
    padding-left: 20px;
  }
}
.cover__wrapper {
  position: relative;
}
.cover__content {
  position: relative;
  padding: 56px 0;
}
@media (min-width: 1536px) {
  .cover__content {
    padding: 100px 0;
  }
}
.cover__content-container {
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}
@media (min-width: 1280px) {
  .cover__content-container {
    padding-bottom: 40px;
  }
}
@media (min-width: 1536px) {
  .cover__content-container {
    padding-bottom: 64px;
  }
}
@media (min-width: 1920px) {
  .cover__content-container {
    padding-bottom: 80px;
  }
}
.cover__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  background-color: red;
  background-color: #b61010;
  padding: 12px 20px;
  border-radius: 16px;
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .cover__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    background-color: red;
    background-color: #b61010;
    padding: 16px 24px;
    border-radius: 16px;
  }
}
.cover__utp-container {
  position: relative;
}
.cover__utp-wrapper {
  display: flex;
  position: relative;
  margin-top: 20px;
}
.cover__utp-left, .cover__utp-right {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #111219;
  border-radius: 50%;
  z-index: 3;
  margin-right: 8px;
}
.cover__utp-left svg, .cover__utp-right svg {
  width: 20px;
  height: 20px;
}
.cover__utp-left {
  left: -16px;
}
.cover__utp-right {
  right: -16px;
}
.cover__additional {
  background-color: rgba(17, 18, 25, 0.7);
  box-shadow: inset 0px 0px 100px 100px rgb(17, 18, 25);
}
.cover__currency-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cover__currency-wrapper {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}

.cover-utp-card {
  color: #fff;
  background-color: #242530;
  border-radius: 24px;
  padding: 20px 24px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(to right, #242530, #2b2e43);
}
.cover-utp-card._media span {
  color: #dddddd;
}
.cover-utp-card__layout {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(36, 37, 48), rgba(43, 46, 67, 0.8));
}
.cover-utp-card p, .cover-utp-card span {
  position: relative;
  z-index: 1;
}
.cover-utp-card p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .cover-utp-card p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }
}
.cover-utp-card img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cover-utp-card span {
  font-size: 16px;
  line-height: 24px;
  color: #8c8fa3;
}
@media (min-width: 1024px) {
  .cover-utp-card span {
    font-size: 18px;
    line-height: 24px;
  }
}

.car__action {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111219;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
}
.car__action-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.car__button-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #333;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 16px;
}
.car__button-catalog span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.car__button-catalog svg {
  width: 20px;
  height: 20px;
}
.car__button-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background-color: #b61010;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 16px;
}
.car__button-order span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.car__button-order svg {
  width: 20px;
  height: 20px;
}

.car-card {
  background-color: #191b25;
  padding: 24px;
  border-radius: 32px;
}
.car-card._hidden {
  display: none !important;
}
.car-card._order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.car-card._order p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .car-card._order p {
    height: 72px;
  }
}
.car-card__image {
  width: 100%;
}
.car-card__image._small {
  transform: scale(0.9);
}
.car-card__image._large {
  transform: scale(1.1);
}
.car-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
}
.car-card__info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  padding: 6px 8px 6px 6px;
  border-radius: 12px;
}
.car-card__info svg {
  width: 16px;
  height: 16px;
  color: #FF2F2F;
}
.car-card__info span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
}
.car-card__info span sup {
  font-size: 8px;
  line-height: 8px;
}
.car-card__info-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.car-card__car {
  color: #fff;
}
.car-card__name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1536px) {
  .car-card__name {
    font-size: 24px;
    line-height: 32px;
  }
}
.car-card__age {
  font-size: 16px;
  line-height: 24px;
  color: #ababab;
}
.car-card__description {
  display: flex;
  align-items: baseline;
}
.car-card__description-container {
  margin-top: 4px;
  color: #fff;
  text-align: center;
}
.car-card__price {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 8px;
}
@media (min-width: 1536px) {
  .car-card__price {
    font-size: 20px;
    line-height: 28px;
  }
}
.car-card__inside-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 24px 12px 8px 12px;
  background: linear-gradient(to top, rgba(17, 18, 25, 0.9), rgba(17, 18, 25, 0));
}

.scheme {
  padding: 80px 0;
}
.scheme__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
}

.scheme-card {
  padding: 32px;
  border-radius: 32px;
  background-color: #242530;
  position: relative;
}
.scheme-card h4, .scheme-card p {
  position: relative;
}
.scheme-card h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  margin-top: 40px;
}
.scheme-card p {
  font-size: 18px;
  line-height: 24px;
  color: #bfc1cd;
}
.scheme-card span {
  font-size: 100px;
  line-height: 100px;
  font-weight: 900;
  position: absolute;
  top: 12px;
  left: 32px;
  color: #323542;
}

.scheme-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  text-align: center;
}
.scheme-banner__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.scheme-banner__layout {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(17, 18, 25, 0.9), rgba(17, 18, 25, 0.3));
}
.scheme-banner__content {
  position: relative;
  z-index: 1;
  padding: 32px;
}
.scheme-banner__content h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.scheme-banner__content p {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 400px;
}
.scheme-banner__content button span {
  font-weight: 700;
}

.questions {
  padding: 80px 0;
}
.questions__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.question {
  background-color: #242530;
  border: 1px solid #111219;
  border-radius: 32px;
  padding: 24px;
}
.question:not(:last-child) {
  margin-bottom: 24px;
}
.question:not(.active) .question__body {
  display: none;
}
.question.active {
  border-color: #36394a;
}
.question.active .question__button {
  transform: rotate(45deg);
  background-color: #fff;
}
.question.active .question__button svg {
  color: #111219;
}
.question__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.question__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 768px) {
  .question__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
  }
}
.question__button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #525365;
  flex-shrink: 0;
  transition: 80ms ease-in-out;
}
.question__button:hover {
  background-color: #fff;
}
.question__button:hover svg {
  color: #111219;
}
.question__button svg {
  width: 20px;
  height: 20px;
}
.question__body {
  font-size: 16px;
  line-height: 24px;
  padding-top: 32px;
  color: #bfc1cd;
}
@media (min-width: 768px) {
  .question__body {
    font-size: 18px;
    line-height: 24px;
  }
}

.reviews {
  padding: 80px 0;
}
.reviews__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
}
.reviews__card-container {
  display: flex;
}

.review-card {
  background-color: #242530;
  border-radius: 32px;
  padding: 32px;
  flex-shrink: 0;
}
.review-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #525365;
}
.review-card__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.review-card__car {
  font-size: 16px;
  line-height: 24px;
  color: #bfc1cd;
}
.review-card__body p {
  font-size: 18px;
  line-height: 24px;
  color: #bfc1cd;
}

.banner__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .banner__title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
  }
}
.banner__container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 24px;
}
@media (min-width: 768px) {
  .banner__container {
    padding: 56px;
  }
}
@media (min-width: 1280px) {
  .banner__container {
    padding: 120px 80px;
  }
}
.banner__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner__layout {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(17, 18, 25, 0.9), rgba(17, 18, 25, 0.5));
}
.banner__content {
  position: relative;
  z-index: 1;
}
.banner__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #bfc1cd;
  max-width: 400px;
}
@media (min-width: 768px) {
  .banner__description {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }
}
.banner__description + button {
  margin-top: 56px;
}

.footer {
  padding: 80px 0;
}
.footer__description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  max-width: 300px;
  margin-bottom: 32px;
}
.footer__subtitle {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #626476;
}
.footer__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
}
.footer__button span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}
.footer__button svg {
  width: 20px;
  height: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a {
  color: #afafaf;
  position: relative;
  transition: width 160ms ease-in-out;
}
.footer__nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 160ms ease-in-out;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__nav a:hover:before {
  width: 24px;
}
.footer__phone {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #afafaf;
}

.footer-new {
  padding: 32px 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .footer-new {
    padding: 40px 0;
  }
}
.footer-new .footer__button {
  padding: 16px 24px;
}
@media (max-width: 767.9px) {
  .footer-new__container {
    row-gap: 40px;
  }
}
.footer-new__logo {
  height: 80px;
}
@media (min-width: 768px) {
  .footer-new__logo {
    height: 100px;
  }
}
.footer-new__description {
  font-size: 16px;
  line-height: 24px;
  max-width: 300px;
  color: #111219;
}
.footer-new__subtitle {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #626476;
}
.footer-new__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background-color: #111219;
  padding: 12px 20px;
  border-radius: 12px;
}
.footer-new__button span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}
.footer-new__button svg {
  width: 20px;
  height: 20px;
}
.footer-new__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-new__nav a {
  color: #111219;
  position: relative;
  transition: width 160ms ease-in-out;
}
.footer-new__nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #111219;
  transition: width 160ms ease-in-out;
}
.footer-new__nav a:hover:before {
  width: 24px;
}
.footer-new__phone {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #b61010;
  display: flex;
}
.footer-new__icons {
  display: inline-flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-new__icons img {
  width: 32px;
  height: 32px;
}
.footer-new__company {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: serif;
}
.footer-new__slogan {
  font-size: 14px;
  line-height: 20px;
  color: #727272;
}
.footer-new__info-container {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 767.9px) {
  .footer-new__info-container {
    flex-direction: column;
    align-items: start;
  }
}
.footer-new__hr {
  height: 1px;
  background-color: #dfdfdf;
  margin: 16px 0;
}
.footer-new__dis {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #333;
}

.layout {
  overflow: hidden;
}
.layout__lock {
  overflow: hidden;
}
.layout__field {
  padding: 32px 0;
}
@media (min-width: 1280px) {
  .layout__field {
    padding: 40px 0;
  }
}
@media (min-width: 1536px) {
  .layout__field {
    padding: 64px 0;
  }
}
@media (min-width: 1920px) {
  .layout__field {
    padding: 80px 0;
  }
}
.layout__panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .layout__panel {
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .layout__panel {
    margin-bottom: 48px;
  }
}
@media (min-width: 1536px) {
  .layout__panel {
    margin-bottom: 56px;
  }
}
.layout__navigation {
  display: inline-flex;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1023.9px) {
  .layout__navigation {
    display: none;
  }
}
.layout__navigation button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}
.layout__navigation button svg {
  width: 20px;
  height: 20px;
  color: #333;
}
.layout__content {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
.layout__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .layout__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .layout__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 1280px) {
  .layout__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.layout__description {
  font-size: 16px;
  line-height: 24px;
  color: #bdbdbd;
  max-width: 400px;
}
@media (min-width: 768px) {
  .layout__description {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .layout__description {
    font-size: 20px;
    line-height: 28px;
  }
}

.advantage-card {
  color: #fff;
  background-color: #242530;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .advantage-card {
    padding: 32px;
    border-radius: 32px;
  }
}
@media (max-width: 767.9px) {
  .advantage-card._media {
    min-height: 240px;
  }
}
.advantage-card__title {
  font-size: 24px;
  line-height: 32pxpx;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (min-width: 1280px) {
  .advantage-card__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
}
.advantage-card__description {
  font-size: 18px;
  line-height: 24px;
  max-width: 700px;
}
.advantage-card__icon {
  width: 40px;
  height: 40px;
  color: green;
  margin-bottom: 20px;
}
.advantage-card__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 18, 25, 0.8);
  z-index: 10;
}
.menu:not(.active) {
  display: none;
}
.menu__container {
  width: 100%;
  height: 100%;
  position: relative;
}
.menu__menu {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
  width: calc(100% - 24px);
  height: 100%;
  background-color: #262939;
  border-radius: 0 24px 24px 0;
  padding: 16px;
}
.menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__footer {
  display: flex;
  flex-direction: column;
}
.menu__footer .footer-new__icons {
  margin-bottom: 32px;
}
.menu__logo {
  height: 24px;
}
.menu__close {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}
.menu__separate {
  margin: 16px 0;
  height: 1px;
  background-color: #434863;
}
.menu__nav {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
}
.menu__nav a {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
.menu__catalog {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 16px;
  background-color: #fff;
  border-radius: 12px;
  color: #262939;
  width: -moz-fit-content;
  width: fit-content;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 18, 25, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.modal:not(.active) {
  display: none;
}
.modal__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal__container {
  background-color: #111219;
  padding: 16px;
  border-radius: 0 16px 16px 16px;
  max-width: 800px;
  width: 100%;
  scrollbar-width: none;
  overflow: auto;
  max-height: 100%;
  position: relative;
}
.modal__container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .modal__container {
    padding: 0 32px 32px 32px;
    border-radius: 32px;
    max-height: calc(100vh - 64px);
  }
}
.modal__container._small {
  max-width: 400px;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background-color: #111219;
  padding: 16px 0;
  margin: -16px 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .modal__header {
    padding: 32px 0;
    margin: -32px 0;
  }
}
.modal__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #525365;
  cursor: pointer;
  flex-shrink: 0;
}
.modal__close svg {
  width: 16px;
  height: 16px;
  color: #fff;
  transform: rotate(45deg);
}
.modal__body {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .modal__body {
    margin-top: 64px;
  }
}

.modal-scheme-card {
  background-color: #242530;
  padding: 64px 16px 16px;
  border-radius: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .modal-scheme-card {
    padding: 32px 32px 32px 84px;
    border-radius: 32px;
  }
}
.modal-scheme-card:not(:first-child) {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .modal-scheme-card:not(:first-child) {
    margin-top: 32px;
  }
}
.modal-scheme-card ul {
  list-style-type: disc;
}
.modal-scheme-card ul li {
  margin-top: 4px;
  margin-left: 20px;
}
.modal-scheme-card b {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-scheme-card__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .modal-scheme-card__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }
}
.modal-scheme-card__description {
  font-size: 16px;
  line-height: 24px;
  color: #bfc1cd;
}
@media (min-width: 768px) {
  .modal-scheme-card__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.modal-scheme-card__num {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal-scheme-card__num {
    left: 32px;
    top: 32px;
  }
}

.modal-scheme-info {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  gap: 16px;
  background-color: #022102;
  color: #008500;
  border: 1px solid #003b00;
  border-radius: 16px;
  padding: 16px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .modal-scheme-info {
    font-size: 16px;
    line-height: 24px;
    border-radius: 32px;
    padding: 32px;
  }
}
.modal-scheme-info svg {
  width: 24px;
  height: 24px;
  color: #008500;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .modal-scheme-info svg {
    width: 32px;
    height: 32px;
  }
}

.modal-callback__input {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  padding: 0 16px;
  background-color: #525365;
  color: #fff;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  border: none;
  margin-bottom: 12px;
  border: 1px solid #8f909f;
}
.modal-callback__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.modal-callback__input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.modal-callback__input:hover, .modal-callback__input:focus {
  background-color: #434453;
}
.modal-callback__separate {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 12px 0;
  text-align: center;
  color: #fff;
}
.modal-callback__call, .modal-callback__write {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 12px;
}
.modal-callback__write {
  display: inline-flex;
  align-items: center;
  color: #111219;
  background-color: #fff;
}
.modal-callback__write svg {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
.modal-callback__call {
  color: #fff;
  background-color: #b61010;
  margin-top: 32px;
}

.notification {
  display: flex;
  align-items: center;
  position: fixed;
  top: 8px;
  max-width: 100%;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: #74c174;
  padding: 12px 16px;
  border-radius: 12px;
}
.notification:not(._active) {
  display: none;
}
@media (min-width: 768px) {
  .notification {
    left: 50%;
    transform: translateX(-50%);
    right: initial;
    max-width: 360px;
  }
}
.notification__check, .notification__close {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.notification__check {
  color: #335933;
}
.notification__close {
  cursor: pointer;
}
.notification__text {
  flex-grow: 1;
  margin-left: 8px;
  margin-right: 16px;
  font-weight: 500;
  color: #254125;
}

.cover-utp-card:not(._media):not(._advert):after {
  content: '';
  position: absolute;
  height: 128px;
  width: 128px;
  right: -64px;
  bottom: -64px;
  background-color: #46475b;
  border-radius: 50%;
  transition: 320ms ease-in-out;
}

.cover-utp-card:not(._media):not(._advert):before {
  content: '';
  position: absolute;
  height: 256px;
  width: 256px;
  right: -128px;
  bottom: -128px;
  background-color: #33354d;
  border-radius: 50%;
  transition: 320ms ease-in-out;
}

.cover-utp-card:hover:before {
  height: 400px;
  width: 400px;
  right: -200px;
  bottom: -200px;
}

.cover-utp-card:hover:after {
  height: 200px;
  width: 200px;
  right: -100px;
  bottom: -100px;
}

.cover-utp-card._advert {
  background: none;
  background-color: #433e2c;
  border: 1px solid #6f6849;
}
.cover-utp-card._advert span {
  color:#9f9f9f;
}

.cover-utp-card._advert b {
  font-weight: 700;
}
