@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
    --bg-blue: #213A98;
    --bg-grey: #F0F0F0;
    --bg-white: #FFFFFF;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-muted: #54545A;
  --c-dark-blue: #1a2e78;
  --c-success: #14b30b;
  --c-red: #e10000;
  --c-white: #FFFFFF;
  --c-grey: #8B8B93;
  --c-grey-dark: #54545A;

}
html {
    box-sizing: border-box;
    font-family: 'Unbounded';
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* font */
[class^="f-u"] { font-family: 'Unbounded', sans-serif; }
[class^="f-u-700"] { font-weight: 700; }
[class^="f-u-700-24"] { font-size: 24px; }

[class^="f-i"] { font-family: 'Inter', sans-serif; }
[class^="f-i-500"] { font-weight: 500; }
[class^="f-i-500-16"] { font-size: 16px; }

.f-i20b {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;

}

.h6-18-b {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h5-20b {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h5-20r {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h4-24b {
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h3-30b {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h2-32b {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.h2-30b {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.txt-16m {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.txt-14m {
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.txt-14r {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.txt-12r {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.txt-12sb {
  font-family: Inter;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0%;
  vertical-align: middle;
}


.b-16-b {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.b-14-b {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Цвета */
.color-blue {
  color: var(--bg-blue);
}
.bg-grey {
  background-color: var(--bg-grey);
}
.c-grey { color: var(--c-grey); }
.c-grey-dark { color: var(--c-grey-dark); }


.pt-8 {padding-top: 8px;}
.pt-16 {padding-top: 16px;}
.pt-26 {padding-top: 26px;}
.pt-28 {padding-top: 28px;}
.pt-48 {padding-top: 48px;}
.pb-48 {
  padding-bottom: 48px;
}
.pt-64 {padding-top: 64px;}
.pb-64 {padding-bottom: 64px;}
.pt-80 {padding-top: 80px;}
.pt-40 {padding-top: 40px;}
.pb-80 {padding-bottom: 80px;}
.pt-96 {padding-top: 96px;}
.pb-96 {padding-bottom: 96px;}

.mt-12 {margin-top: 12px;}
.mt-24 {margin-top: 24px;}
.mt-26 {margin-top: 26px;}
.mt-28 {margin-top: 28px;}
.mt-32 {margin-top: 32px;}
.mt-40 {margin-top: 40px;}
.mt-52 {margin-top: 52px;}

/* header */
header {
  background: var(--bg-blue);
  padding: 20px 0px;
  position: sticky;
  top: 0;
}
header .menu-item {
  display: flex;
}
header a {
  margin-top: auto;
  margin-bottom: auto;
  color: var(--c-white);
  text-decoration: none;
}

.text-muted {
  color: var(--color-muted) !important;
}

img.logo-header {
  width: 118px;
  height: 34px;
  position: relative;
  left: -10px;
}

.mb-28 {
    margin-bottom: 28px;
}

/* ISIN code */
.isin {
    font-size: 24px;
    line-height: 30px;
    color: var(--color-muted);
}
.isin-code {
    font-size: 24px;
}
.isin-code {
font-size: 24px;
}


.text-white {
    color: var(--color-white);
}

a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: inherit;
}

/* Размер шрифта */
.fs-10 {font-size: 10px !important;}
.fs-12 {font-size: 12px !important;}
.fs-14 {font-size: 14px !important;}
.fs-16 {font-size: 16px !important;}
.fs-20 {font-size: 20px !important;}
.fs-28 {font-size: 28px !important;}
.fs-32 {font-size: 32px !important;}
.fs-40 {font-size: 40px !important;}
.fs-48 {font-size: 48px !important;}
.fs-60 {font-size: 60px !important;}

.fs-2 {font-size: 20px !important;}
.fs-3 {font-size: 24px !important;}

.h1-48-m {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0%;
}
.h1-48-sb {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.i-400-r-12 {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.i-400-r-20 {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}


.txt-1-bold {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}

.h-4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.f-2 {font-family: 'Inter';}
.t-2-bold, .txt-2-bold {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
}
.txt-2-bold-12 {
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
}

.t-2, .txt-2-light-bold {
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
}

.txt-2-regular {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* Бордюры */
[class^="b-"] {
  border-width: 1px;
  border-style: solid;
}

[class^="b-1-grey"] {
  border-color: #E8E8E9;
}

body {
    margin: 0;
}

h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    margin: 0;
}
h1.main-title {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 50.11px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.card-blue {
  box-sizing: border-box;
  padding: 32px;
  background: var(--bg-blue);
  border-top: 3px solid #000000;
  border-radius: 0px 0px 24px 24px;
  color: var(--color-white);
}
.card-blue .title {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.card-blue .content {
  text-wrap: pretty;
  margin-top: 12px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  color: #FFFFFF;
  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

[class^='card-white'] {
  background-color: var(--color-white);
  padding: 32px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 3px;
  border-top: 3px solid #000000;
  position: relative;
}
.card-white .avatar {
  border-color: var(--color-black);
  width: 112px;
  height: 112px;
  border-width: 3px;
  border-radius: 1000px;
  border-style: solid;
  position: absolute;
  top: -56px;
}



button {
  font-family: Unbounded;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: #213A98;
  cursor: pointer;
  color: var(--c-white);
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
}
button:hover {
  box-shadow: 0px 2px 10.4px 0px #02004666;
}
button:active {
  /*border: 2px solid var(--bg-blue);*/
  background-color: var(--c-dark-blue);
  /*padding: 14px 30px;*/
  /*color: var(--bg-blue);*/
}
button.clean {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

button:disabled,
button[disabled] {
  background-color: #ced4da; /* Нейтральный серый цвет фона */
  color: var(--color-white);            /* Серый цвет текста */
  cursor: not-allowed;       /* Курсор, показывающий запрет клика */
  box-shadow: none;          /* Убираем тень, если она была */
  pointer-events: none;      /* Отключаем любые ховеры и клики на уровне браузера */
}

/* копирование текста */
.copy-text {
  align-items: center; /* Выравнивает текст и иконку по центру по вертикали */
  gap: 8px;            /* Отступ между текстом и иконкой */
  cursor: pointer;     /* Меняет курсор при наведении */
}

.copy-text::after {
  content: "";
  display: inline-block;
  width: 16px;         /* Ширина иконки */
  height: 16px;        /* Высота иконки */

  /* Вставьте ваш SVG код внутрь url('data:image/svg+xml;utf8,...') */
  background-image: url('../icons/copy.svg');

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

/* Эффект при наведении (опционально) */
.copy-text:hover::after {
  transform: scale(1.1); /* Иконка слегка увеличится при наведении */
}



/* Синий круг */
.circle-badge {
  background-color: #1D3E9B;
  color: var(--color-white);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.5px;
  z-index: 2;
  font-family: Inter;
  font-weight: 500;
  font-size: 30.28px;
  line-height: 62.76px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* section 2 */
.section-2 {
    background-color: var(--bg-blue);
    padding-top: 96px;
    padding-bottom: 96px;
    color: var(--color-white);
}
.section-2 .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 20px;

    border-left: 4px solid #FFFFFF;
}
.section-2 .block .title {
  font-family: Unbounded;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.section-2 .block .title span {
  font-family: Unbounded;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.section-2 .block .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    letter-spacing: 0%;
    vertical-align: middle;
}

/* section 3 */
.section-3 {
    background-color: var(--bg-grey);
}
.section-3 .income-container {
  border-top: 3px solid #000000;
  gap: 48px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 3px;
  background-color: #ffffff;
  width: 100%;
  padding: 40px;
}

.section-3 .circle-badge .number {
  font-family: Unbounded;
  font-size: 40.37px;
  line-height: 62.76px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: bottom;
}



.section-3 [class^="block-"] {
  width: 50%;
  display: flex;
}
.section-3 .block-left .text {
  border-bottom-right-radius: 30px;
  border-bottom: 2px solid var(--bg-blue);
  border-right: 2px solid var(--bg-blue);
  padding-right: 50px;
  margin-right: -1px;
}
.section-3 .block-right .text {
  border-bottom-left-radius: 30px;
  border-bottom: 2px solid var(--bg-blue);
  border-left: 2px solid var(--bg-blue);
  padding-left: 50px;
  margin-left: -1px;
}


.section-3 .arrows-block {
  display: flex;
  width: 100%;
  position: relative;
  margin-top: 10px;
}
.section-3 .arrows-block img {
  position: absolute;
  top: -5px;
  left: calc(50% - 6.6px);
}
.section-3 [class^="block-"] .percent {
  font-weight: 500;
  font-size: 31.69px;
  line-height: 44.99px;
  letter-spacing: 0px;
  color: var(--bg-blue);
  padding-top: 20px;
}
.section-3 [class^="block-"] .percent .per-val {
  color: var(--color-black);
  font-family: Inter;
  font-weight: 500;
  font-size: 17.61px;
  line-height: 17.61px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  text-wrap-mode: nowrap;
}

.section-3 [class^="block-"] .text {
  font-family: Inter;
  font-weight: 700;
  font-size: 12.13px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #54545A;
  padding-bottom: 15px;
  padding-top: 20px;
  max-width: 350px;
}
.section-3 [class^="block-"] .text span {
  font-family: Inter;
  font-weight: 400;
  font-size: 12.13px;
}

.section-3 .chart-container {
  position: relative;
  width: 100%;
}

/* section 4 */
.section-4 .b-1-grey.block {
  padding: 24px;

}
.section-4 .b-1-grey.block .title {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--c-grey);
  margin-bottom: 3px;
}
.section-4 .b-1-grey.block .number {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0%;
  vertical-align: middle;
}

  /* section 5 */
.section-5 .card {
  background-color: #F0F0F0;
  gap: 16px;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 54px;
  padding-left: 32px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 3px;
  border-top: 3px solid #000000;
  height: 100%;
}
.section-5 .card .title {
  margin-top: 28px;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.section-5 .card .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  letter-spacing: 0%;
  vertical-align: middle;

}

.section-5 img {
  margin: 14px;
}
.section-5 .card:not(:last-child) {
  margin-right: 24px;
}
/* section 6 */
.section-6 {
  background-color: var(--bg-grey);
}
.section-6 .chart-label-2 {
  position: absolute;
  bottom: 70px;
}
.section-6 .chart-label-1 {
  position: absolute;
  top: calc(50% - 67px);
}
.section-6 .color-blue .number {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 60px;
  line-height: 71.11px;
  letter-spacing: 0px;
}

#chart-3 {
  position: relative;
  top: -25px;
}
.legend-chart-3 {
  display: flex;
  flex-wrap: wrap;          /* Запрещаем перенос, чтобы они всегда шли в одну строку */
  align-items: center;
  justify-content: space-between; /* Распределяет элементы от края до края контейнера */
  width: 100%;                /* Занимает всю доступную ширину */
  padding: 10px 0;
  row-gap: 12px;
}

/* Отдельный элемент легенды (маркер + текст) */
.legend-chart-3 .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;              /* Фиксированный отступ от маркера до текста */
  cursor: pointer;
  user-select: none;
}

/* Текст внутри легенды */
.legend-chart-3 .legend-text {
  font-family: Inter;
  font-weight: 600;
  font-size: 13.32px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}

/* ОБЩИЙ КЛАСС ДЛЯ МАРКЕРОВ */
.legend-chart-3 .legend-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;        /* Защита от сжатия маркера */
}

/* 1. МАРКЕР-ЛИНИЯ (Для "Объем рынка" и "Планируемый объем") */
.legend-chart-3 .legend-marker.type-line {
  width: 32px;           /* Ширина линии */
  height: 16px;          /* Высота контейнера для выравнивания */
  position: relative;
}
/* Сама горизонтальная линия */
.legend-chart-3 .legend-marker.type-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;           /* Толщина линии */
  background-color: currentColor; /* Цвет берется из инлайн-стиля (style="color: ...") */
}
/* Точка по центру линии */
.legend-chart-3 .legend-marker.type-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: currentColor;
}
/* Пунктирная линия (для планируемого объема) */
.legend-chart-3 .legend-marker.type-line.is-dashed::before {
  background-image: linear-gradient(to right, currentColor 60%, rgba(255,255,255,0) 40%);
  background-position: bottom;
  background-size: 6px 2px; /* Размер штриха */
  background-repeat: repeat-x;
  background-color: transparent;
}

/* 2. МАРКЕР-ПЛОЩАДЬ (Для "Объем ввода" и "Заявленный объем") */
.legend-chart-3 .legend-marker.type-rect {
  width: 32.26897048950195px;
  height: 15.185397148132324px;
  border-radius: 1.9px;
  background: currentColor;
}





.custom-legend {
  padding: 20px 10px;
  font-family: 'Inter', sans-serif;
}


/* Текст подписи */
.legend-text {
  font-size: 13px;
  font-weight: 600;           /* Полужирное начертание как в макете */
  color: #000000;
  white-space: nowrap;        /* Запрещает перенос текста внутри одного элемента */
}

/* Базовый класс для всех маркеров */
.legend-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1. Маркер: Синяя линия с точкой */
.legend-marker.line-blue {
  width: 40px;
  height: 2px;
  background-color: #1D3E9B;
}
.legend-marker.line-blue .marker-dot {
  width: 8px;
  height: 8px;
  background-color: #1D3E9B;
  border-radius: 50%;
  position: absolute;
}

/* 2. Маркер: Пунктирная серая линия с точкой */
.legend-marker.line-dashed-gray {
  width: 32px;
  height: 2px;
  /* Создаем идеальный пунктир через градиент */
  background: linear-gradient(to right, #CCCCCC 50%, transparent 50%);
  background-size: 6px 100%;
}
.legend-marker.line-dashed-gray .marker-dot {
  width: 8px;
  height: 8px;
  background-color: #CCCCCC;
  border-radius: 50%;
  position: absolute;
}

/* 3. Маркер: Синий прямоугольник */
.legend-marker.rect-blue {
  width: 24px;
  height: 14px;
  background-color: #1D3E9B;
  border-radius: 2px;         /* Легкое скругление углов */
}

/* 4. Маркер: Серый прямоугольник */
.legend-marker.rect-gray {
  width: 24px;
  height: 14px;
  background-color: #CCCCCC;
  border-radius: 2px;
}

/* section-7 */
.section-7 .sub-title {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #54545A;
  margin-top: 12px;
}

.custom-line-legend {
  display: flex;
  flex-wrap: wrap;            /* Перенос элементов на мобильных экранах */
  justify-content: center;    /* Центрирование элементов */
  padding: 35px 0 0 10px;
  font-family: 'Inter', sans-serif;
  row-gap: 10px;
}

/* Строка легенды (маркер + текст) */
.legend-item {
  display: flex;
  align-items: center;        /* Выравнивание по центру высоты */
  gap: 10px;                  /* Расстояние от маркера до текста */
}

/* Стили для текста подписи */
.legend-text {
  font-size: 13px;
  font-weight: 600;           /* Полужирный шрифт из макета */
  line-height: 1.3;           /* Межстрочный интервал для аккуратного переноса */
  color: #000000;
}

/* Базовый класс для линии маркера */
.legend-marker {
  position: relative;
  width: 40px;                /* Длина горизонтальной линии */
  height: 2px;                /* Толщина линии */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;             /* Запрещает линии сжиматься */
}

/* Синяя линия */
.legend-marker.line-blue {
  background-color: #1D3E9B;
}

/* Черная линия */
.legend-marker.line-black {
  background-color: #000000;
}

/* Базовый класс для круглой точки на линии */
.marker-dot {
  width: 10px;                /* Размер точки */
  height: 10px;
  border-radius: 50%;
  position: absolute;
}

/* Синяя закрашенная точка */
.marker-dot.filled-blue {
  background-color: #1D3E9B;
}

/* Черная полая точка (белая с черной рамкой) */
.marker-dot.hollow-black {
  background-color: #ffffff;
  border: 2px solid #000000;
}

/* Адаптивность для мобильных телефонов */
@media (max-width: 768px) {
  .custom-line-legend {
    flex-direction: column;   /* На смартфонах элементы встанут друг под друга */
    align-items: flex-start;  /* Выравнивание по левому краю */
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.section-7 .left-block {
  background-color: var(--bg-grey);
  padding: 39px 40px 40px 40px;
  height: 100%;
}



.charts-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.title-1 {
    font-size: 48px;
}



.card {
    background-color: var(--bg-white);
    gap: 40px;
    padding: 40px;
    border-radius: 4px;
}
.card.contact-form {
  padding: 40px 41px 40px 41px;
}

.figure-circle {
    width: 176.7252655029297px;
    height: 176.72528076171875px;
    gap: 10.27px;
    opacity: 1;
    padding-top: 10.27px;
    padding-right: 18.49px;
    padding-bottom: 10.27px;
    padding-left: 18.49px;
    border-radius: 102.75px;
    left: 471.47px;
    background-color: var(--bg-blue);
    display: flex;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 30.28px;
    leading-trim: NONE;
    line-height: 62.76px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: bottom;
    color: var(--color-white);
}




/*  ----------------------------------               */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Верхняя секция структуры */
.structure-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.contact-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0px 1px 2px -1px #0000001A;

}

/* Основной блок формы */
.contact-form {
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1px solid #C5C5C9;
  background-color: #ffffff;
  width: 100%;
  max-width: 570px;          /* Ограничение ширины карточки формы */
  padding: 45px 50px;
  border-radius: 20px;       /* Крупное скругление углов карточки */
}

/* Стили заголовка */
.contact-form .form-title {
  color: #000000;
  margin-bottom: 35px;
  font-family: Unbounded;
  font-weight: 500;
  font-size: 32px;
  leading-trim: NONE;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

/* Контейнеры полей ввода */
.input-group {
  margin-bottom: 16px;
}

/* Общие стили для инпутов и текстового поля */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 20px 18px 8px 16px;
  border: 1px solid #dcdcdc; /* Тонкая серая рамка */
  border-radius: 4px;        /* Легкое скругление полей */
  font-size: 14px;
  color: #000000;
  outline: none;
  font-family: 'Inter';
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* валидация */
.form-group-validate {
  margin-bottom: 1.5rem;
  position: relative;
}

/* Обычное состояние инпута */
.validate-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  outline: none;
}

/* Состояние ошибки (красная рамка) */
.form-group-validate.has-error .validate-input {
  border-color: #dc3545; /* Красный цвет */
}

/* Блок с текстом ошибки */
.error-text {
  color: #dc3545;       /* Красный цвет текста */
  font-size: 0.55rem;
  margin-top: 5px;
  display: none;        /* По умолчанию скрыт */
}

/* Показываем текст ошибки, только если есть класс ошибки */
.form-group-validate.has-error .error-text {
  display: block;
}

/* Изменение рамки при фокусе */
input:focus,
textarea:focus {
  border-color: #1D3E9B;
  box-shadow: 0 0 0 3px rgba(29, 62, 155, 0.1);
}

/* Стилизация плейсхолдеров */
::placeholder {
  color: #8e8e8e;
  opacity: 1;
}

/* Запрет ручного изменения размера textarea по горизонтали */
textarea {
  resize: vertical;
  min-height: 140px;
}

/* Блок согласия приватности */
.privacy-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Кастомный вид чекбокса */
.privacy-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Текст согласия */
.privacy-agreement label {
  font-size: 12px;
  line-height: 1.4;
  color: #666666;
  cursor: pointer;
}

/* Ссылка на политику */
.privacy-link {
  color: #666666;
  text-decoration: underline;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: #1D3E9B;
}

/* Кнопка отправки */
.btn-submit {
  width: 100%;
  background-color: var(--bg-blue);
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s, transform 0.1s;
}

/* Эффекты при наведении и нажатии */
.btn-submit:hover {
  background-color: #153077;
}

.btn-submit:active {
  transform: scale(0.99);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .contact-form {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .form-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
/*  footer */
footer {
  background-color: var(--bg-blue);
  color: var(--color-white);
}
footer .left-block {

}

footer .menu {
  margin-top: 20px;
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 500;
}
footer .menu-left {
  margin-top: 33px;
}
footer .menu .menu-item {
  margin-bottom: 20px;
}
footer .menu > .menu-item:last-child {
  margin-bottom: 0px;
}
footer hr {
  margin-top: 56px;
  margin-bottom: 56px;
}
footer p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 10px;
  margin-bottom: 16px;
  line-height: 1.6;
}
footer a {
  color: var(--color-white);
  text-decoration: none;
}


.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--color-white);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
  box-shadow: 0px 1px 3px 0px #0000001A;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  flex-shrink: 0;
  align-items: center;
  padding: 30px 15px 15px 15px;
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
  position: relative;
}
.modal-header .btn-close {
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
  background: none;
  padding: 6px;
  box-shadow: none;
  position: absolute;
  right: 12px;
  width: 30px;
  top: 17px;
}
.modal-header .btn-close svg {
  height: 12px;
  width: 12px;
}

.modal-title {
  margin-bottom: 0;
  margin-bottom: 0;
  font-family: Inter;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--bg-blue);
  width: 100%;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 15px 30px 15px;
  background-color: var(--bs-modal-footer-bg);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

/* Контейнер для поля */
.floating-form-group {
  position: relative;
  margin-bottom: 1rem;
}

/* Стили для самого инпута */
.floating-input {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem 1rem; /* Сверху делаем отступ больше, чтобы текст не перекрывал метку */
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  outline: none;
  transition: border-color 0.2s;
  height: 51px;
}

/* Изменение рамки при фокусе (синий цвет как на скриншоте) */
.floating-input:focus {
  border-color: #0d6efd;
}

/* Начальное состояние текстовой метки */
.floating-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 17px;
  pointer-events: none;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
  color: #6c757d;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* Магия: если инпут в фокусе ИЛИ в него уже что-то введено, поднимаем метку вверх */
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Если текст введен, но фокуса нет — возвращаем метке серый цвет, но оставляем её наверху */
.floating-input:not(:placeholder-shown):not(:focus) ~ .floating-label {
  color: #6c757d;
}

#modalKvalNotification .modal-header {
  line-height: 40px;
}
#modalKvalNotification .modal-header h2 {
  font-family: Inter;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  vertical-align: middle;
  line-height: 1.5;
}
#modalKvalNotification .text-bottom {
  font-size: 12px;
}



#modalKvalNotification .modal-body, #modalKvalNotification .modal-footer {
  font-family: 'Inter', sans-serif;
  line-height: 28px;
}

[class^="notify"] {
  border-color: #E8E8E9;
  border-width: 1px;
  border-style: solid;
  padding: 24px;
  font-size: 0.8rem;
}
[class^="notify-info"] {
  border-color: var(--bg-blue);
  color: var(--bg-blue);
}
[class^="notify-success"] {
  border-color: var(--c-success);
  color: var(--c-success);
}
[class^="notify-error"] {
  border-color: var(--c-red);
  color: var(--c-red);
}

/* 1. Контейнер */
.custom-checkbox-group {
  position: relative;
  margin-bottom: 1rem;
}

/* 2. Полностью скрываем стандартный чекбокс */
.custom-checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* 3. Стилизация лейбла (ГЛАВНОЕ ИЗМЕНЕНИЕ) */
.custom-checkbox-label {
  position: relative;
  padding-left: 40px;        /* 24px (ширина квадрата) + 16px (отступ до текста) */
  display: inline-block;     /* Текст и ссылка идут единым потоком */
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  cursor: pointer;
  user-select: none;         /* Запрещаем случайное выделение текста при клике */
}

/* 4. Квадрат чекбокса */
.custom-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border: 2px solid #ced4da;
  border-radius: 6px;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}

/* 5. Когда чекбокс выбран */
.custom-checkbox-input:checked + .custom-checkbox-label::before {
  background-color: #24429e;
  border-color: #24429e;
  background-image: url('../icons/check.svg');
}

/* 6. Ссылка внутри текста */
.custom-checkbox-label a {
  color: #333333;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline;
}

.custom-checkbox-label a:hover {
  opacity: 0.8;
}

/* 7. Доступность (фокус с клавиатуры) */
.custom-checkbox-input:focus-visible + .custom-checkbox-label::before {
  outline: 2px solid #24429e;
  outline-offset: 2px;
}
.phone-field {
  position: relative;
}

/* Статичный префикс (по умолчанию прозрачный) */
.phone-prefix {
  position: absolute;
  left: 1rem;
  top: 23px;
  font-size: 14px;
  color: #212529;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out;
  font-family: 'Inter';
}

/* Сдвигаем вводимый текст вправо, когда инпут активен или заполнен */
.phone-field .floating-input:focus,
.phone-field .floating-input:not(:placeholder-shown) {
  padding-left: 2.3rem; /* Освобождаем точное место под "+7 " */
}

/* Показываем "+7 ", когда инпут активен или заполнен */
.phone-field .floating-input:focus ~ .phone-prefix,
.phone-field .floating-input:not(:placeholder-shown) ~ .phone-prefix {
  opacity: 1;
}

/* Сдвигаем плавающий label чуть правее в активном состоянии, чтобы он не упирался в префикс */
.phone-field .floating-input:focus ~ .floating-label,
.phone-field .floating-input:not(:placeholder-shown) ~ .floating-label {
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

footer .row > .col-auto .txt-2-regular {
  height: 45px;
}
.chart-3-container {
  height: 530px;
}
.chart-3-labels {
  font-family: Inter;
  font-weight: 600;
  font-size: 13.32px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.chart-1-container, .chart-2-container {
  height: 165px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .chart-1-container, .chart-2-container {
    height: 230px;
  }
}
@media (min-width: 1400px) {
  .chart-1-container, .chart-2-container {
    height: 266px;
  }
}
.chart-3-container {
  width: 100%;
  position: relative;
  height: clamp(297px, 16vw + 240px, 545px);
}
.section-3 .circle-badge .txt span:nth-child(1), .section-3 .circle-badge .txt span:nth-child(3) {
  position: relative;
  top: 2px;
}


/* response */

@media (max-width: 992px) {
  .section-3 [class^="block-"] > .percent {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .pt-80 {padding-top: 40px;}
  .pb-80 {padding-bottom: 40px;}
  h1.main-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .h1-48-sb {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
  .h2-32b {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .income-container .circle-badge {
    width: 114px;
    height: 114px;
    padding: 7.81px 14.05px;
    border-radius: 78.05px;
    font-family: Inter;
    font-weight: 500;
    font-size: 18.55px;
    line-height: 38.45px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: bottom;
  }
  .section-3 .circle-badge .number {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 26px;
    line-height: 38.45px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: bottom;
  }
  .section-3 .circle-badge .txt {
    position: absolute;
    text-wrap-mode: nowrap;
  }
  .section-3 .block-right .text {
    padding-left: 25px;
  }
  .section-3 .block-left .text {
    padding-right: 25px;
  }
  .pt-48, .pt-64 {
    padding-top: 32px;
  }
  .section-4 .list-options {
    margin-top: 32px;
  }
  .section-5 .row {
    --bs-gutter-y: 24px;
  }
  .section-7 .h1-48-sb {
    text-align: left;
  }
  .pb-96, .pb-96 {
    padding-top: 48px;
  }
  .h5-20r {
    font-size: 16px;
  }
  .custom-line-legend {
    padding-top: 17px;
  }
  .section-7 .left-block {
    margin-top: 40px;
    padding: 46.83px 24px 48px;
    border-radius: 12px;
  }
  .section-7 .left-block .h2-32b {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-7 .left-block > .row {
    padding-top: 32px;
  }
  .section-7 .left-block > .row .color-blue {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px !important;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;

  }
  .section-7 .left-block > .row > div:nth-child(2) {
    margin-top: 24px;
  }
  .section-7 .left-block > .row div:nth-child(3) {
    padding-top: 24px;
  }
  .section-7 .left-block > .row div:nth-child(4) {
    padding-top: 32px;
  }
  .section-7 .left-block > .row .txt-14m {
    padding-top: 0px;
  }
  .section-7 .left-block > .row .color-blue span {
    font-family: Inter;
    font-weight: 700;
    font-size: 28px;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-8 .h1-48-sb {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: left;
  }
  .section-8 .container > .row > div > div:nth-child(2) {
    padding-top: 12px;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-8 .container > .row:nth-child(2) {
    padding-top: 40px;
    --bs-gutter-y: 20px;
  }
  .section-8 .container > .row .h3-30b {
    font-size: 24px;
  }
  .section-9 .card-white .h4-24b {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-9 .row {
    --bs-gutter-y: 84px;
  }
  .pb-96 {
    padding-bottom: 48px;
  }
  .section-10 > div img {
    height: 169px;
    object-fit: cover;
  }
  .section-10 .container .h1-48-sb {
    text-align: left !important;
    font-family: Unbounded;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-10 .container .pt-48.row {
    padding-top: 40px;
  }
  .section-10 .container .pt-48.row .col-12 {
    display: flex;
    --bs-gutter-y: 16px;
  }
  .section-10 .container .pt-48.row .col-12 img {
    max-height: 64px;
    max-width: 64px;
  }
  .section-10 .container .pt-48.row .col-12 > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    margin-left: 16px;
  }
  .section-10 .container .pt-48.row .col-12 > div:nth-child(2) .txt-14r {
    text-align: left !important;
    width: 100%;
    margin-top: auto !important;
  }
  .section-10 .container .pt-48.row .col-12 > div:nth-child(2) .txt-16m {
    margin-top: 4px !important;
    width: 100%;
    margin-bottom: auto !important;
    text-align: left;
  }
  .section-10 .container .contact-form-container {
    padding: 0;
  }
  .section-10 .container .contact-form-container .h2-30b {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: left;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer img {
    width: 80px;
    height: 22px;
  }
  header img {
    width: 80px;
    height: 22px;
  }
  header .menu-item a {
    font-size: 12px;
  }

  footer .menu {
    margin-top: 32px;
  }
  footer .menu .menu-item {
    margin-bottom: 16px;
  }
  footer .row > .col-auto .txt-2-regular {
    height: auto;
  }
  footer .row > .col-auto .menu {
    margin-top: 20px;
  }
  footer .row > .col-auto .menu img {
    width: 16px;
    height: 19px;
  }
  footer .row > .col-auto .menu span {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  footer p {
    font-family: Inter;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  footer hr.btm {
    margin-bottom: 40px;
    margin-top: 72px;
  }
  footer .row.down {
    --bs-gutter-y: 12px;
  }
  footer .row.down .col-12 {
    text-align: left !important;
    font-family: Inter;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .block-top > * {
    position: relative;
    z-index: 2;
  }
  .block-top .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    line-height: 1.2;
  }
  .block-top .block-grey {
    margin-top: 20px;
    width: 100%;
    font-family: Unbounded;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: center;
    display: block;
    padding: 18px 32px;
    height: 55px;
  }
  .block-top .isin-block {
    margin-top: 56px;
  }
  .block-top .row:nth-child(2) .pt-96 {
    padding-top: 32px;
  }
  .block-top .isin-block .isin {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    position: relative;
    bottom: -2px;
  }
  .block-top .isin-block .isin-code {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .block-top .isin-block .isin-code:after {
    width: 16px;
    height: 16px;
    bottom: -1px;
    position: relative;
    margin-left: 14px;
  }
  button {
    font-family: Unbounded !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
  .block-top button {
    width: 100%;
  }
  .section-2 .container .block {
    border-left: none;
    padding: 0;
    display: block;
  }
  .section-2 .container .row {
    --bs-gutter-y: 40px;
  }
  .section-2 .container .row .col-12:nth-child(1) .title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-2 .container .row .col-12:nth-child(1) .title .number {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-2 .container .row .col-12:nth-child(1) .title span:nth-child(1),
  .section-2 .container .row .col-12:nth-child(1) .title span:nth-child(3) {
    position: relative;
    top: 3px;
    font-family: Unbounded;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
  }

  .section-2 .container .row .col-12:nth-child(1) .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
  }

  .section-2 .container .row .col:nth-child(2) .title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0px;
    vertical-align: middle;

  }
  .section-2 .container .row .col:nth-child(2) .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-2 .container .row .col:nth-child(3) .title {
    font-family: Unbounded;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0px;
    vertical-align: middle;

  }
  .section-2 .container .row .col:nth-child(3) .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-2 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-3 .income-container {
    padding: 16px;
  }
  .section-3 [class^="block-"] .percent {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 23.87px;
    line-height: 43.19px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-align: left;
  }
  .section-3 [class^="block-"] .percent span {
    font-family: Inter !important;
    font-weight: 500 !important;
    font-size: 13.64px !important;
    line-height: 16.9px !important;
    letter-spacing: 0px !important;
    text-align: center !important;
    vertical-align: middle !important;
  }
  .structure-section {
    margin-bottom: 35px;
  }
  .section-3 .title-chart-1, .section-3 .title-chart-2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: var(--c-grey-dark)
  }
  .section-3 .title-chart-2 {
    margin-top: 31px;
  }
  .section-3 .income-container .description {
    padding-top: 25px;
  }
  .section-6 .h1-48-sb, .section-6 .h5-20b {
    text-align: left !important;
  }
  .section-6 .h5-20b {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
  }
  /*.chart-3-container {*/
  /*  height: 250px;*/
  /*}*/
  .chart-3-labels {
    font-family: Inter;
    font-weight: 600;
    font-size: 9px;
  }
  .section-6 .chart-label-1 {
    /*top: calc(50% - 10px);*/
    left: -10px;
  }
  .section-6 .mt-52 {
    margin-top: 32px;
  }
  .section-6 .legend-marker.line-blue {
    width: 22px;
  }
  .section-6 .legend-marker.rect-blue {
    width: 22px;
    height: 7px;
  }
  .section-6 .legend-marker.line-dashed-gray {
    width: 22px;
  }
  .section-6 .legend-marker.rect-gray {
    width: 22px;
    height: 7px;
  }
  .section-6 .legend-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-6 .custom-legend {
    --bs-gutter-y: 12px;
  }
  .section-6 .info-block {
    margin-top: 32px;
  }
  .section-6 .info-block .color-blue .fs-60 {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px !important;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-6 .info-block .color-blue .fs-32 {
    font-family: Inter;
    font-weight: 700;
    font-size: 28px;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-6 .info-block .txt-14m {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px !important;
    letter-spacing: 0%;
    vertical-align: middle;
    padding-top: 4px;
  }
  .section-6 .info-block .pt-40 {
    padding-top: 24px;
  }
  .section-6 .card-blue {
    margin-top: 24px !important;
  }
  .section-6 .card-blue .title {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-6 .card-blue .content {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-6 .footer-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--c-grey-dark);
    margin-top: 32px;
  }
  .section-7 .left-block {
    height: auto;
  }
  .logo-header {
    width: 126px !important;
    height: 38px !important;
  }
  .section-2 .block .title {
    font-size: 26px !important;
    line-height: 124%;
  }
  .section-2 .block .title span {
    font-family: inherit;
    font-weight: inherit;
    font-size: 23px;
    line-height: inherit;
    letter-spacing: inherit;
    vertical-align: inherit;
  }

  .section-2 .block .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 8px;
  }
  .section-4 .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
  }
  .section-5 .card .title-card {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .image-after-section-6 {
    height: 177px;
    object-fit: cover;
    object-position: calc(50% - -50px) center;
  }
  .section-6 .chart-label-2 {
    left: -10px;
    bottom: 60px;
  }
  .legend-chart-3 {
    flex-wrap: wrap;
    column-gap: 41px;
    align-items: unset;
    justify-content: unset;
    row-gap: 12px;
    padding-top: 0px;
  }
  .legend-chart-3 .legend-marker.type-line {
    width: 22px;
  }
  .legend-chart-3 .legend-marker.type-line::after {
    width: 7px;
    height: 7px;
  }
  .legend-chart-3 .legend-marker.type-rect {
    width: 22px;
    height: 7px;
    border-radius: 0.77px;
  }
  .section-6 .color-blue .number {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-6 .color-blue .number-after {
    font-family: Inter;
    font-weight: 700;
    font-size: 28px;
    line-height: 57.6px;
    letter-spacing: 0px;
    vertical-align: middle;
  }
  .section-7 .sub-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .section-9 .person-name {
    padding-top: 40px;
  }
  .section-7 .legend-marker.line-blue {
    width: 22px;
  }
  .section-7 .legend-marker.line-blue .marker-dot {
    width: 6.873874187469482px;
    height: 6.873874187469482px;
  }
  .section-7 .legend-marker.line-black {
    width: 22px;
  }
  .section-7 .marker-dot.hollow-black {
    width: 6.873874187469482px;
    height: 6.873874187469482px;
  }
  .custom-checkbox-label {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
@media (max-width: 767px) {
  .block-top .badge.top {
    margin-top: 42px;
    border: 1px solid #213A98;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-width: 1px;
    border-radius: 4px;
    color: #213A98;
    font-family: Inter;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    text-transform: uppercase;
  }
  .block-top:after {

  }
}
@media (min-width: 1441px) {

}
@media (min-width: 1024px) and (max-width: 1440px) {
  h1.main-title {
    font-size: 47px;
  }
}

@media (min-width: 1400px) {
  .xxl-d-block {
    display: block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .xl-d-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .lg-d-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .md-d-block {
    display: block !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .sm-d-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
@media (max-width: 767px) {
  footer .row > .col-auto {
    margin-top: 32px;
  }
}
canvas {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Состояние после появления на экране */
canvas.visible {
  opacity: 1;
  transform: translateY(0);
}
