/* =========================
   Reset
========================= */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
    background: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

textarea {
    resize: none;
}

/* =========================
   Fonts
========================= */
@font-face {
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 400;
    src: url('SBSansUI-Regular.woff2');
}

@font-face {
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 500;
    src: url('SBSansUI-Semibold.woff2');
}

@font-face {
    font-family: 'SB Sans Interface';
    font-style: normal;
    font-weight: 600;
    src: url('SBSansUI-Bold.woff2');
}

/* =========================
   Theme
========================= */
:root {
    --text: #303844;
    --muted: #989CA2;
    --bg-grey: #F5F7FA;
    --border: #E1EAF9;

    --accent-1: #38BDF8;
    --accent-2: #06B6D4;
    --accent-3: #3B82F6;

    --accent-gradient: linear-gradient(85.51deg, var(--accent-1) -25.07%, var(--accent-2) 58.03%, var(--accent-3) 105.71%);
    --btn-gradient: linear-gradient(88.21deg, #3B82F6 0.86%, #06B6D4 97.76%);

    --card-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    --card-shadow-hover: 0 22px 60px rgba(15, 23, 42, 0.12);
    --card-border: 1px solid rgba(15, 23, 42, 0.06);

    --loader-bg: #B7DDF3;
    --loader-fill: #2563EB;
}

/* =========================
   Base
========================= */
body {
    font-family: 'SB Sans Interface', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fff;
    color: var(--text);
}

/* лёгкий “совсем другой” фон (не ломает разметку) */
body::before {
    content: "";
    position: fixed;
    inset: -200px;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(56, 189, 248, 0.20), rgba(56, 189, 248, 0) 60%),
        radial-gradient(800px 450px at 85% 20%, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 65%),
        radial-gradient(900px 500px at 70% 90%, rgba(6, 182, 212, 0.14), rgba(6, 182, 212, 0) 60%);
    filter: blur(0px);
}

a {
    font-weight: 400;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: var(--accent-gradient);
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-weight: 400;
    font-family: 'SB Sans Interface', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
}

h3 {
    font-size: 24px;
    line-height: 120%;
}

h4 {
    font-size: 20px;
    line-height: 120%;
}

h5 {
    font-size: 14px;
    line-height: 120%;
}

p {
    font-size: 16px;
    line-height: 120%;
}

::-webkit-scrollbar {
    height: 4px;
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 0px;
}

.mt_50 {
    margin-top: 50px;
}

.mb20 {
    margin-bottom: 20px;
}

/* =========================
   Layout
========================= */
.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    /* поверх фонового body::before */
}

.bg_grey {
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 15px;
    background: linear-gradient(180deg, #F5F7FA 0%, #F2F7FF 100%);
    border-radius: 50px;
}

.bg_grey--flat {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* =========================
   Images must stay correct
========================= */
.logo img,
.burger img,
.close img,
.one_img img,
.tabs_col_img img,
.tabs_col_img2 img,
.three_min img,
.img_bg img {
    object-fit: contain;
    /* чтобы не растягивало картинки */
}

/* =========================
   Buttons (новая анимация)
========================= */
.btn {
    width: 265px;
    height: 55px;
    display: flex;

    background: var(--btn-gradient);
    background-size: 180% 180%;
    border-radius: 50px;

    color: #fff;
    -webkit-background-clip: border-box;
    background-clip: border-box;

    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 500;

    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.20);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background-position .4s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(59, 130, 246, 0.28);
    filter: saturate(1.05);
    background-position: 100% 0;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.18);
}

/* =========================
   Header
========================= */
.header {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(225, 234, 249, 0.8);
    padding-bottom: 20px;
}

/* важно: логотип не должен наследовать “градиентный” цвет от a */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;

    color: var(--text);
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.logo h4 {
    font-weight: 700;
    color: var(--text);
}

.logo h5 {
    font-weight: 400;
    width: 160px;
    color: var(--muted);
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.logo_text {
    display: flex;
    flex-direction: column;
}

.burger {
    display: flex;
    transition: transform .25s ease;
}

.burger.active {
    transform: rotate(90deg);
}

.burger img {
    height: 38px;
    width: 42px;
}

/* меню: чуть другой эффект появления */
.navigation {
    display: flex;
    width: 100%;
    justify-content: space-between;

    height: 0px;
    overflow: hidden;

    transition: height .35s ease, opacity .25s ease, transform .25s ease, border-color .25s ease;
    border-bottom: 0 solid transparent;
    margin-top: 0;

    opacity: 0;
    transform: translateY(-6px);
}

.navigation.active {
    height: 40px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(225, 234, 249, 0.8);
    opacity: 1;
    transform: translateY(0);
}

.navigation a {
    font-size: 16px;
    color: var(--text);

    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;

    margin-right: 40px;
    transition: 0.2s ease;
    position: relative;
}

/* лёгкая “подчёркивающая” анимация */
.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0%;
    background: var(--accent-gradient);
    transition: width .25s ease;
    border-radius: 2px;
}

.navigation a:hover::after {
    width: 70%;
}

.nav_enter a {
    margin-right: 0;
}

.close {
    display: none;
}

/* =========================
   Hero
========================= */
.one {
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: space-between;
}

.one_text {
    display: flex;
    width: 395px;
    flex-direction: column;
}

.hero_badge {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: var(--text);
    font-size: 12px;
    margin-bottom: 14px;
}

.one_text h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
}

.one_text h4 {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
    width: 350px;
}

.one_i {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-left: 20px;
    align-items: center;
}

.one_i img {
    margin-right: 6px;
}

.one_i h5 {
    font-size: 12px;
    color: var(--muted);
}

.one_img {
    display: flex;
    margin-top: -30px;
}

/* Размер сохранён как у тебя */
.one_img img {
    width: 680px;
    height: 441px;

    /* новая анимация (мягкое “плавание”) */
    animation: hero-float 4.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =========================
   Two
========================= */
.two {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 30px;
}

.two h2 {
    font-size: 36px;
    font-weight: 600;
    max-width: 720px;
    text-align: center;
}

/* =========================
   Subscription blocks
========================= */
.tabs_row {
    padding: 45px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabs_col_body {
    width: 990px;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tabs_col_all {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* карточки чуть “другие”: рамка + тень + hover */
.tabs_col_block {
    width: 455px;
    height: 365px;

    display: flex;
    background: #fff;
    flex-direction: column;

    border-radius: 30px;
    padding: 25px;

    border: var(--card-border);
    box-shadow: var(--card-shadow);

    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tabs_col_block:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(59, 130, 246, 0.16);
}

.tabs_col_body h3 {
    font-weight: 600;
    margin-bottom: 18px;
}

.tabs_col_body p {
    color: var(--muted);
}

/* размеры картинок оставлены */
.tabs_col_img,
.tabs_col_img2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: auto;
    padding-bottom: 15px;
}

.tabs_col_img img {
    cursor: pointer;
    width: 110px;
    height: 110px;
    margin-right: 15px;
}

.tabs_col_img2 img {
    cursor: pointer;
    width: 200px;
    height: 110px;
    margin-right: 15px;
}

/* улучшенный tabs_col_block_all (не пустой) */
.tabs_col_block_all {
    width: 100%;
    min-height: 365px;
    /* вместо “жёсткой пустоты” */
    border-radius: 30px;
    padding: 30px;

    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: center;

    border: var(--card-border);
    box-shadow: var(--card-shadow);

    /* фон остался, но теперь “ровный” и приятный */
    background:
        radial-gradient(600px 600px at 92% 90%, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0) 60%),
        url(../img/img_2.png) no-repeat right -60px bottom -40px / 560px,
        #fff;

    overflow: hidden;
}

.tabs_col_body span,
.answer span,
.footer_block span {
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: var(--accent-gradient);
}

.tabs_col_block_text {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* было 365px — из-за этого “пустота” сильнее чувствовалась */
}

.plan_subtitle {
    margin-bottom: 14px;
}

/* чеклист внутри тарифа */
.plan_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 6px 0 18px 0;
    padding: 0;
}

.plan_list li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 14px;
    line-height: 140%;
}

.plan_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--accent-gradient);
}

.plan_actions {
    margin-top: 6px;
}

/* правая мини-карточка цены */
.plan_side {
    display: flex;
    justify-content: flex-end;
}

.plan_side_card {
    width: 100%;
    border-radius: 24px;
    padding: 18px;

    background: rgba(245, 247, 250, 0.75);
    border: 1px solid rgba(59, 130, 246, 0.18);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);

    backdrop-filter: blur(6px);
}

.plan_side_badge {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.18);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.plan_side_price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.plan_side_amount {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
}

.plan_side_period {
    font-size: 14px;
    color: var(--muted);
}

.plan_side_note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}

.plan_side_hint {
    font-size: 12px;
    color: #667085;
    line-height: 140%;
}

/* текст под кнопкой */
.mb_10 {
    margin-top: 14px;
    display: flex;
    width: 100%;
}

.mb_10 h5 {
    font-size: 12px;
    width: 100%;
    color: var(--muted);
    line-height: 140%;
}

/* =========================
   Three
========================= */
.center {
    display: flex;
    justify-content: center;
}

.three {
    width: 990px;
    display: flex;
    flex-direction: row;
    margin: 50px 0;
    justify-content: space-between;
}

.three h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.three h5 {
    font-weight: 400;
    color: var(--muted);
}

.three_max {
    width: 600px;
    height: 340px;
    display: flex;
    flex-direction: row;

    padding: 25px;
    border-radius: 35px;

    border: var(--card-border);
    box-shadow: var(--card-shadow);

    background:
        radial-gradient(500px 300px at 75% 20%, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0) 60%),
        url(../img/img_3.png) no-repeat 190px -55px / 490px,
        var(--bg-grey);
}

.three_max.bg_img {
    background:
        radial-gradient(500px 300px at 75% 20%, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0) 60%),
        url(../img/img_6.png) no-repeat 190px -55px / 490px,
        var(--bg-grey);
}

.three_max_text {
    display: flex;
    flex-direction: column;
}

.step_label {
    margin-bottom: 0;
    color: var(--text);
    font-weight: 600;
}

.content_one,
.content_two {
    display: flex;
    flex-direction: column;
}

.content_one.off,
.content_two.off {
    display: none;
}

.three_max_text h5 {
    width: 250px;
    margin-bottom: 15px;
}

.loader_col {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.loader {
    width: 65px;
    height: 10px;
    border-radius: 2px;
    background: var(--loader-bg);
    margin-right: 10px;
    overflow: hidden;
}

.loader--small {
    width: 20px;
}

.load {
    width: 0%;
    height: 10px;
    border-radius: 2px;

    /* новая анимация “шиммер” */
    background: linear-gradient(90deg, #2563EB, #06B6D4, #2563EB);
    background-size: 200% 100%;
    animation: shimmer 1.1s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.three_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.three_min {
    width: 350px;
    height: 155px;
    display: flex;
    flex-direction: row;

    background: var(--bg-grey);
    padding: 25px;
    border-radius: 35px;

    border: var(--card-border);
    box-shadow: var(--card-shadow);

    align-items: center;
    justify-content: space-between;

    transition: transform .22s ease, box-shadow .22s ease;
}

.three_min:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.three_min img {
    width: 100px;
    height: 90px;
    margin-right: 10px;
}

/* =========================
   FAQ
========================= */
.faq_title {
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.question {
    width: 100%;
    display: flex;
    border-bottom: 1px solid var(--bg-grey);
    padding-bottom: 10px;
    cursor: pointer;
    justify-content: space-between;
}

.question h3 {
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
}

.question_svg {
    width: 24px;
    height: 24px;
}

.question svg {
    transition: transform .25s ease;
    width: 24px;
    height: 24px;
}

.answer {
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    display: flex;
    padding: 0px;
    transition: max-height .35s ease;
}

.answer p {
    font-size: 16px;
    line-height: 140%;
    padding: 18px 10px;
    color: var(--muted);
}

.accordion.active .answer {
    border-bottom: 1px solid var(--bg-grey);
    margin-bottom: 10px;
}

.accordion.active .question svg {
    transform: rotate(180deg);
}

/* =========================
   IMG block
========================= */
.img_bg {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: -50px;
}

/* размер сохранён */
.img_bg img {
    width: 350px;
    height: 250px;
}

/* =========================
   Footer (новая анимация и чуть другой вид)
========================= */
.footer_navi {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 30px 0;
    border-bottom: 1px solid #e1eaf9;
    justify-content: space-between;
}

.footer_navi a {
    font-size: 18px;
    color: var(--text);

    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;

    margin-right: 40px;
    transition: 0.2s ease;
    position: relative;
}

.footer_navi a:hover {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: var(--accent-gradient);
}

.footer_col {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 30px 0;
    justify-content: space-between;
}

.footer_block {
    display: flex;
    flex-direction: column;
}

.footer_block_right {
    align-items: flex-end;
    text-align: right;
}

.footer_block a {
    font-size: 18px;
    color: var(--text);

    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;

    transition: 0.2s ease;
}

.footer_block a:hover {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: var(--accent-gradient);
}

.footer_block h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer_block_img {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.footer_block_img_col {
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 10px;
    background: #fff;

    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);

    margin-right: 15px;
    margin-top: 15px;
    align-items: center;
    justify-content: center;

    transition: transform .2s ease, box-shadow .2s ease;
}

.footer_block_img_col:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.footer_block_img_col img {
    width: 30px;
    height: 30px;
}

.footer_legal {
    color: var(--muted);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
    .container {
        width: 938px;
    }

    .one_text h1 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .one_text h4 {
        margin-bottom: 22px;
    }

    .one_img img {
        width: 570px;
        height: 390px;
    }

    .three_max {
        width: 560px;
        height: 340px;
        background:
            radial-gradient(500px 300px at 75% 20%, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0) 60%),
            url(../img/img_3.png) no-repeat 190px -23px / 430px,
            var(--bg-grey);
    }

    .three_max.bg_img {
        background:
            radial-gradient(500px 300px at 75% 20%, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0) 60%),
            url(../img/img_6.png) no-repeat 190px -23px / 430px,
            var(--bg-grey);
    }

    .three_min {
        width: 310px;
        padding: 20px;
    }
}

@media (max-width: 990px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .one {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    .one_text {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .one_i {
        justify-content: center;
    }

    .one_img {
        margin-top: 0;
    }

    .one_img img {
        width: 460px;
        height: 292px;
    }

    .tabs_col_body {
        width: 100%;
    }

    .tabs_col_all {
        flex-direction: column;
        margin-bottom: 0;
    }

    .tabs_col_block {
        margin-bottom: 35px;
    }

    /* тариф: в колонку, фон-картинку уменьшаем, но сохраняем */
    .tabs_col_block_all {
        grid-template-columns: 1fr;
        min-height: auto;

        background:
            radial-gradient(500px 500px at 90% 90%, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0) 60%),
            url(../img/img_2.png) no-repeat center bottom / 420px,
            #fff;
    }

    .plan_side {
        justify-content: flex-start;
    }

    .three {
        width: 100%;
        flex-direction: column;
        margin: 50px 0;
        align-items: center;
    }

    .three_max {
        margin-bottom: 30px;
        width: 100%;
    }

    .three_min {
        margin-bottom: 30px;
        width: 100%;
        justify-content: flex-start;
    }

    .footer_navi {
        overflow: auto;
    }

    .footer_navi_col {
        width: 800px;
        display: flex;
    }

    .footer_col {
        flex-direction: column;
    }

    .footer_block {
        margin-bottom: 30px;
    }

    .footer_block_right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 550px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .header {
        margin-top: 20px;
    }

    .logo img {
        width: 50px;
        height: 50px;
        margin-right: 5px;
    }

    .logo h4 {
        font-size: 16px;
    }

    .logo h5 {
        font-size: 12px;
    }

    .burger img {
        height: 31px;
        width: 35px;
    }

    /* mobile menu — как было, но без прозрачности из desktop */
    .navigation {
        height: 0;
        transform: translate(100%, 0);
        top: 0;
        right: 0;
        position: fixed;
        background: rgb(255 255 255 / 97%);
        transition: transform .35s ease;
        opacity: 1;
        border-bottom: 0;
    }

    .navigation.active {
        width: 90%;
        height: 100%;
        margin-top: 0;
        padding: 20px;
        border: 1px solid #e1eaf9;
        border-top-left-radius: 20px;

        flex-direction: column;
        justify-content: flex-start;

        z-index: 2;
        transform: translate(0, 0);
    }

    .nav_col {
        display: flex;
        flex-direction: column;
    }

    .navigation a {
        margin-bottom: 25px;
        margin-right: 0;
        width: 150px;
    }

    .close {
        display: none;
    }

    .navigation.active .close {
        display: flex;
        position: absolute;
        top: 5px;
        right: 5px;
        padding: 10px;
    }

    .one_text h1 {
        font-size: calc(32px + (36 - 32) * ((100vw - 320px) / (480 - 320)));
        margin-bottom: 18px;
    }

    .one_text h4 {
        font-size: 16px;
        width: 100%;
    }

    .one_img img {
        width: 300px;
        height: 190px;
        margin-top: 25px;
        animation-duration: 5.5s;
    }

    .bg_grey {
        max-width: 100%;
        padding: 0;
        border-radius: 5px;
    }

    .two h2 {
        font-size: 24px;
        font-weight: 600;
    }

    .btn {
        width: 100%;
        font-size: 16px;
        max-width: 280px;
    }

    .tabs_col_body {
        align-items: center;
        padding: 0;
    }

    .tabs_col_block {
        width: 100%;
        height: auto;
    }

    .three_max {
        height: 489px;
        background:
            radial-gradient(420px 260px at 65% 20%, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0) 60%),
            url(../img/img_3.png) no-repeat center 220px / 320px,
            var(--bg-grey);
    }

    .three_max.bg_img {
        background:
            radial-gradient(420px 260px at 65% 20%, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0) 60%),
            url(../img/img_6.png) no-repeat center 220px / 320px,
            var(--bg-grey);
    }

    .img_bg img {
        width: 300px;
        height: 214px;
    }

    .question h3 {
        font-size: 18px;
        width: 90%;
    }

    .answer p {
        font-size: 16px;
        padding: 15px 10px;
    }
}

/* =========================
   Reduced motion
========================= */
@media (prefers-reduced-motion: reduce) {
    .one_img img {
        animation: none !important;
    }

    .load {
        animation: none !important;
    }

    .btn,
    .tabs_col_block,
    .three_min,
    .footer_block_img_col {
        transition: none !important;
    }
}