/* ===== URBANIST ===== */

/* Urbanist Thin */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Extra Light */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Light */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Regular */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Medium */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Semi Bold */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Bold */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Extra Bold */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Urbanist Black */
@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ===== UBUNTU ===== */

/* Ubuntu Light */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Ubuntu Regular */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Ubuntu Medium */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Ubuntu Bold */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

* {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F1F1F1;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

.page-container {
    display: flex;
    flex-direction: column;
}

/* START HEADER */
.site-header {
    display: flex;
    justify-content: center;
    background: rgb(137 171 244 / 16%);
}
.site-header-container {
    display: flex;
    align-items: center;
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-between;
}
.site-header-menu {
    display: flex;
    column-gap: 50px;
}
.site-header-menu-item {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
}
.btn {
    display: flex;
    padding: 10px 24px;
    background: #FFFFFF;
    border-radius: 8px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    align-items: center;
    color: #1C1C1C;
    text-align: center;
    justify-content: center;
    width: fit-content;
}
/* END HEADER */

.section-container {
    display: flex;
    flex-direction: column;
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.main-banner {
    background: rgb(137 171 244 / 16%);
    padding-top: 120px;
    padding-bottom: 120px;
}
.main-banner .section-container {
    flex-direction: row;
    column-gap: 100px;
}
.main-banner h1 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 35px;
}
.main-banner-subtitle {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}
.main-banner-btn {
    background: #3462C4;
    color: #FFFFFF;
    margin-top: 28px;
    margin-bottom: 28px;
}
.main-banner-footer-text {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}

.site-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
}

.problem-section {
    padding-top: 52px;
    padding-bottom: 52px;
    background: #3462C4;
}
.section-subtitle {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    display: flex;
    margin-bottom: 10px;
    color: #3462C4;
}
.problem-section .section-subtitle {
    color: #FFFFFF;
}
.problem-section .section-title {
    color: #FFFFFF;
    max-width: 501px;
}
.problem-section .section-header-description {
    color: #FFFFFF;
    max-width: 444px;
}
.problem-section .section-header {
    margin-bottom: 80px;
}
.problems {
    display: flex;
    flex-wrap: wrap;
    row-gap: 9px;
    column-gap: 9px;
}
.problems-item {
    width: 394px;
    border-radius: 32px;
    padding: 40px;
    background: #FFFFFF;
}
.problems-item svg {
    margin-bottom: 25px;
}
.problems-item-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    display: flex;
    margin-bottom: 12px;
}
.problems-item-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}
.section-footer-text {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: #FFFFFF;
    display: flex;
    margin-top: 35px;
}

.section-header {
    display: flex;
}
.section-header-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.section-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
}
.section-header-title-column {
    display: flex;
    column-gap: 100px;
}

.solution-section {
    padding-top: 120px;
    padding-bottom: 120px;
}
.solution-section .section-header {
    margin-bottom: 80px;
}
.solution-section .section-title {
    max-width: 556px;
    width: 100%;
}
.solution-section .section-header-description {
    max-width: 551px;
}
.solutions-item {
    border-radius: 32px;
    display: flex;
    padding: 35px 40px;
    background: #FFFFFF;
    max-width: 596px;
    flex-direction: column;
}
.solutions-item svg {
    margin-bottom: 25px;
}
.solutions-item-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    display: flex;
    margin-bottom: 12px;
}
.solutions-item-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}
.solutions {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
}
.solutions-item-full {
    padding: 25px 40px;
    border-radius: 16px;
    background: #FFFFFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.solutions-item-full span {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
}

.steps-section {
    padding-bottom: 35px;
}
.steps-section .section-container {
    flex-direction: row;
    column-gap: 100px;
}
.steps-section h2 {
    margin-bottom: 35px;
}
.steps-section .section-header-description {
    display: flex;
    margin-bottom: 35px;
}
.steps-list {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.steps-list-item {
    display: flex;
    column-gap: 14px;
}
.steps-list-item-content {
    display: flex;
    flex-direction: column;
}
.steps-list-item-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    display: flex;
    margin-bottom: 8px;
}
.steps-list-item-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}
.steps-list-item svg {
    min-width: 24px;
    min-height: 24px;
    overflow: visible;
}
.line-with-text {
    padding-top: 25px;
    padding-bottom: 25px;
    background: #3462C4;
}
.line-with-text span {
    text-align: center;
    display: flex;
    justify-content: center;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
}

.charts-section {
    padding-top: 120px;
    padding-bottom: 120px;
}
.charts-section .section-title {
    margin-bottom: 35px;
}
.charts-section .section-header-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    display: flex;
    margin-bottom: 35px;
    max-width: 1140px;
}
.charts-content-wrapper {
    display: flex;
    column-gap: 60px;
}
.charts-tabs {
    background: #E6E6E6;
    border-radius: 8px;
    padding: 2px;
    display: flex;
    column-gap: 2px;
    width: fit-content;
    margin-bottom: 35px;
}
.chart-tab {
    display: flex;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #595959;
    transition: 0.3s;
    cursor: pointer;
}
.chart-tab:hover,
.chart-tab.active {
    background: #FFFFFF;
    color: #000000;
}
.chart-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    display: flex;
    margin-bottom: 35px;
}
.chart-description {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
.chart-description-header {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.chart-description-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
}
.chart-description-header svg {
    min-width: 24px;
    min-height: 24px;
}
.chart-description-text {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
}
.chart-btn-wrapper {
    display: flex;
    width: fit-content;
    padding: 2px;
    border-radius: 8px;
    background: #E6E6E6;
    margin-bottom: 35px;
}
.chart-btn {
    display: flex;
    padding: 10px;
    border-radius: 8px;
    background: #FFFFFF;
    color: #000000;

    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}
.charts-content {
    display: none;
    flex-direction: column;
}
.charts-content.active {
    display: flex;
}

.ecosystem-section {
    padding-bottom: 120px;
}
.ecosystem-section .section-header {
    margin-bottom: 80px;
}
.ecosystem-section .section-title {
    max-width: 600px;
    width: 100%;
}
.ecosystem-section .section-header-description {
    max-width: 389px;
}
.ecosystems {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 8px;
}
.ecosystem-item {
    border-radius: 32px;
    padding: 40px;
    background: #FFFFFF;
}
.ecosystem-item svg {
    margin-bottom: 25px;
}
.ecosystem-item.w33 {
    max-width: 394px;
}
.ecosystem-item-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    display: flex;
    margin-bottom: 12px;
}
.ecosystem-item-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}
.ecosystem-item.w50 {
    max-width: 596px;
}

.practice-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(90deg, #284078 0%, #553D85 50.48%, #3462C4 100%);
}
.practice-section h2 {
    color: #FFFFFF;
    margin-bottom: 80px;
}
.practices {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}
.practices-item {
    padding: 40px;
    border-radius: 32px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    max-width: 394px;
}
.practices-item svg {
    margin-bottom: 25px;
}
.practices-item h3 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
}
.practices-item-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}

.contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #5581E3 0%, #E6E6E6 100%);
}
.contact-section .section-container {
    flex-direction: row;
    column-gap: 150px;
}
.contact-section .section-title {
    color: #FFFFFF;
}
.contact-form-wrapper {
    max-width: 693px;
}
.contact-form-subtitle {
    color: #FFFFFF;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-top: 35px;
    position: relative;
}
.form-row {
    display: flex;
    column-gap: 13px;
    width: 100%;
}
input,
textarea {
    background: #E6E6E6;
    border-radius: 10px;
    height: 44px;
    padding-left: 16px;
    padding-right: 16px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #000000;
    width: 100%;
}
input::placeholder,
textarea::placeholder {
    color: #595959;
}

textarea {
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 64px;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.checkbox-label:hover {
    opacity: 0.7;
}

.checkbox-custom {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid #000000;
    border-radius: 6px;
    margin-right: 12px;
    transition: all 0.3s ease;
    background: #E6E6E6;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.3s ease;
    opacity: 0;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background: #000000;
    border-color: #000000;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.checkbox-input:focus + .checkbox-label .checkbox-custom {
    border-color: #000;
}

.checkbox-input:disabled + .checkbox-label {
    cursor: not-allowed;
    opacity: 0.6;
}

.checkbox-input:disabled + .checkbox-label .checkbox-custom {
    background: #E6E6E6;
    border-color: #E6E6E6;
}

/* Состояние при наведении на кастомный чекбокс */
.checkbox-label:hover .checkbox-custom {
    border-color: #000;
}

/* Активное состояние при нажатии */
.checkbox-input:active + .checkbox-label .checkbox-custom {
    transform: scale(0.95);
}

.submit-btn {
    background: #000000;
    border-radius: 8px;
    padding: 17px 20px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    width: fit-content;
    display: flex;
    align-items: center;
    height: unset;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    opacity: 0.7;
}
.form-text {
    display: flex;
    margin-top: -15px;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.1;
    color: #000000;
}

form .alert {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 30px;
    border-radius: 28px;
    box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 1%);
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
}
form .alert span {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    align-items: center;
    color: #000000;
}
form .alert.active {
    display: flex;
}

.faq-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #E6E6E6;
}
.faq-section .section-title {
    margin-bottom: 40px;
}
.faq {
    display: flex;
    flex-direction: column;
}
.faq-item {
    padding-top: 17px;
    padding-bottom: 17px;
    border-top: 1.5px solid #B0B0B0;
}
.faq-item:last-child {
    border-bottom: 1.5px solid #B0B0B0;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    align-items: center;
    cursor: pointer;
}
.faq-item.active .faq-content {
    padding-top: 20px;
}
.faq-content {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}
.faq-header span {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
}

.faq-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease 0.1s,
                transform 0.3s ease 0.1s;
    padding-top: 0;
}

.faq-item.active .faq-content {
    max-height: 2000px; /* Очень большое значение */
    opacity: 1;
    transform: translateY(0);
    padding-top: 20px;
    transition: max-height 0.7s cubic-bezier(0.7, 0, 0.3, 1), 
                opacity 0.6s ease,
                padding 0.6s ease,
                transform 0.6s ease;

}

/* Остальные стили для иконок остаются прежними */
.faq-header-plus-minus {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-header-plus-minus .plus,
.faq-header-plus-minus .minus {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.faq-header-plus-minus .plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-header-plus-minus .minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-header-plus-minus {
    transform: rotate(180deg);
}

.faq-item.active .faq-header-plus-minus .plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-header-plus-minus .minus {
    opacity: 1;
    transform: rotate(0deg);
    margin-top: 7px;
}

.site-footer {
    padding-top: 100px;
    background: #000000;
}
.site-footer-container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer span,
.site-footer a {
    color: #FFFFFF;
}
.site-footer-copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}
.site-footer-copyright
.copyright-link {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #FFFFFF;
}
.footer-logo {
    margin-top: 80px;
    margin-bottom: 80px;
}
.site-footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    column-gap: 60px;
}
.site-footer-legal {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    max-width: 686px;
}
.site-footer-legal-title,
.site-footer-contact-title {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: #FFFFFF;
}
.site-footer-legal-description {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
}
.site-footer-contact {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.site-footer-contact-socials {
    display: flex;
    column-gap: 20px;
}
.site-footer-contact-social {
    display: flex;
}

.site-header.mobile {
    display: none;
}

@media screen and (max-width:1240px) {
    .site-header.mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #E0E5F1;
        z-index: 999;
    }
    .site-header.desktop {
        display: none;
    }
    .mobile-header-menu {
        display: none;
        width: 100%;
        margin-top: 30px;
    }
    .site-header-header {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .site-header.mobile .site-header-btn {
        margin-left: auto;
        margin-right: 20px;
    }
    .site-header.mobile .site-header-container {
        flex-direction: column;
    }
    .mobile-header-menu {
        display: flex;
        flex-direction: column;
    }
    .mobile-header-menu-item {
        padding-top: 8px;
        padding-bottom: 8px;
        border-top: 1px solid #FFFFFF;

        font-family: 'Urbanist';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.4;
        color: #000000;
    }
    .mobile-header-menu-item:last-child {
        border-bottom: 1px solid #FFFFFF;
    }

    .main-banner h1 {
        margin-bottom: 20px;
        font-size: 32px;
    }
    .main-banner-subtitle {
        font-size: 14px;
    }
    .main-banner-btn {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .main-banner-footer-text {
        font-size: 12px;
    }
    .main-banner .section-container {
        flex-wrap: wrap;
        row-gap: 26px;
    }
    .chart-wrapper-svg {
        width: fit-content;
        display: flex;
        justify-content: flex-start;
        max-width: 100%;
        height: auto;
    }
    .charts {
        width: 100%;
    }
    .chart-diamond {
        width: 100%;
    }
    .charts-content-wrapper {
        flex-wrap: wrap;
        row-gap: 30px;
    }
    .steps-section .section-container {
        flex-wrap: wrap;
        row-gap: 40px;
    }
    .footer-logo,
    .steps-section-scheme {
        width: fit-content;
        max-width: 100%;
    }
    .main-banner {
        padding-top: 110px;
        padding-bottom: 36px;
    }
    .section-header-title-column {
        flex-wrap: wrap;
        row-gap: 22px;
    }
    .section-subtitle {
        font-size: 15px;
        font-weight: 600;
    }
    .problem-section .section-title {
        font-size: 30px;
    }
    .problem-section .section-header-description {
        font-size: 14px;
    }
    .problem-section .section-header {
        margin-bottom: 40px;
    }
    .problems-item {
        width: 100%;
        padding: 30px;
        border-radius: 26px;
    }
    .problems-item svg {
        margin-bottom: 20px;
    }
    .problems-item-title {
        font-size: 16px;
    }
    .problems-item-description {
        font-size: 14px;
    }
    .section-footer-text {
        font-size: 14px;
        margin-top: 22px;
    }
    .solution-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 30px;
    }
    .solution-section .section-header {
        margin-bottom: 40px;
    }
    .solutions-item {
        max-width: unset;
        width: 100%;
        border-radius: 26px;
        padding: 30px;
    }
    .solutions-item svg {
        width: 30px;
        height: 30px;
        margin-bottom: 20px;
    }
    .solutions-item-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .solutions-item-description {
        font-size: 14px;
    }
    .solutions-item-full {
        max-width: unset;
        width: 100%;
        border-radius: 26px;
        padding: 30px;
        font-size: 16px;
    }
    .solutions-item-full span {
        font-size: 16px;
    }
    .steps-section h2 {
        margin-bottom: 22px;
    }
    .steps-list-item-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .steps-list-item-description {
        font-size: 14px;
    }
    .line-with-text span {
        font-size: 16px;
    }
    .charts-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .charts-section .section-title {
        margin-bottom: 22px;
    }
    .charts-section .section-header-description {
        font-size: 14px;
    }
    .chart-tab,
    .chart-btn {
        font-size: 14px;
        padding: 8px;
    }
    .chart-title {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .chart-description-title {
        font-size: 16px;
    }
    .chart-description-header {
        margin-bottom: 14px;
    }
    .chart-description-text {
        font-size: 14px;
    }
    .chart-btn-wrapper {
        margin-bottom: 22px;
    }
    .charts-tabs {
        margin-bottom: 22px;
    }
    .ecosystem-section .section-header {
        margin-bottom: 40px;
    }
    .ecosystem-item {
        border-radius: 26px;
        padding: 30px;
        max-width: unset !important;
        width: 100%;
    }
    .ecosystem-item svg {
        margin-bottom: 20px;
    }
    .ecosystem-item-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .ecosystem-item-description {
        font-size: 14px;
    }
    .ecosystem-section {
        padding-bottom: 60px;
    }
    .practice-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .practice-section h2 {
        margin-bottom: 40px;
    }
    .practices {
        row-gap: 8px;
    }
    .practices-item {
        padding: 30px;
        border-radius: 26px;
    }
    .practices-item svg {
        margin-bottom: 20px;
        width: 30px;
        height: 30px;
    }
    .practices-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .practices-item-description {
        font-size: 14px;
    }
    .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .contact-section .section-container {
        flex-direction: column;
    }
    .contact-section .section-title {
        margin-bottom: 22px;
    }
    .contact-form-subtitle {
        font-size: 14px;
    }
    .form-row {
        flex-wrap: wrap;
        row-gap: 22px;
    }
    .contact-section form {
        row-gap: 22px;
    }
    .form-text {
        margin-top: -5px;
    }
    .faq-section {
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .faq-header span {
        font-size: 16px;
    }
    .faq-item.active .faq-content {
        font-size: 14px;
    }
    .site-footer {
        padding-top: 60px;
    }
    .site-footer-content {
        flex-wrap: wrap;
        row-gap: 40px;
    }
    .site-footer-legal-title, .site-footer-contact-title {
        font-size: 20px;
    }
    .site-footer-legal,
    .site-footer-contact {
        row-gap: 16px;
    }
    .site-footer-contact-socials {
        margin-top: 12px;
    }
    .site-footer-copyright {
        flex-wrap: wrap;
        row-gap: 10px;
        flex-direction: column;
    }
    .site-footer span, .site-footer a {
        font-size: 12px;
    }
    .main-banner-image {
        max-width: 100%;
    }
    .footer-logo {
        margin-bottom: 20px;
        max-width: 80%;
    }
    form .alert {
        text-align: center;
    }
    form .alert span {
        font-size: 16px;
    }
}

@media screen and (max-width:600px) {
    .submit-btn {
        width: 100%;
    }
}