:root {
    --bg: #F7F9FB;
    --blue: #0073ff;
    --dark-blue: #004292;
    --white: #fff;
    --white50: rgba(255, 255, 255, .5);
    --white96: rgba(255, 255, 255, 0.96);
    --bord: 1px solid #000;
    --text: #25314a;
    --muted: #556070;
    --shadow: 0 8px 24px rgba(11, 18, 32, 0.063);
    --z: 9999;
    --p10: 10px;
    --p20: 20px;
    --p40: 40px;
    --p60: 60px;
    --p80: 80px;
    --p180: 180px;
    --fz18: 18px;
    --fz24: 24px;
    --fz30: 30px;
    --fz36: 36px;
    --fz48: 48px;
    --fz64: 64px;
    --fz80: 80px;
    --fz100: 100px;
    --radius: 50px;
    --o50: 0.5;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #d5d5d5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 15px;
    border: 0px solid #d5d5d5;
    background-clip: padding-box;
}


::-webkit-scrollbar-track {
    background-color: #d5d5d5;
}

.box,
img,
.case {
    border-radius: var(--radius, 50px);

    @supports (corner-shape: squircle) {
        corner-shape: squircle;
        border-radius: calc(var(--radius, 50px) * 1.85);
    }
}

.norad {
    border-radius: 0;
}



/* FONTS */

@font-face {
    font-family: WixMadeforDisplay;
    src: url(/fonts/WixMadeforDisplay-Regular.woff2) format("woff2"),
        url(/fonts/WixMadeforDisplay-Regular.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: WixMadeforDisplay;
    src: url(/fonts/WixMadeforDisplay-ExtraBold.woff2) format("woff2"),
        url(/fonts/WixMadeforDisplay-ExtraBold.woff) format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: WixMadeforDisplay;
    src: url(/fonts/WixMadeforDisplay-Medium.woff2) format("woff2"),
        url(/fonts/WixMadeforDisplay-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: WixMadeforDisplay;
    src: url(/fonts/WixMadeforDisplay-Bold.woff2) format("woff2"),
        url(/fonts/WixMadeforDisplay-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: WixMadeforDisplay;
    src: url(/fonts/WixMadeforDisplay-SemiBold.woff2) format("woff2"),
        url(/fonts/WixMadeforDisplay-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}




/* RESET */

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* BODY */

body {
    font-family: WixMadeforDisplay, sans-serif;
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 1.5;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    color: var(--text);

    * {
        transition: all .2s ease-out allow-discrete;
        font-family: WixMadeforDisplay, sans-serif;
        font-weight: 300;

    }

}


ul,
ol {
    margin-bottom: 10px;
    padding-left: var(--p40);

    li {
        margin-bottom: 15px;
        padding-left: 20px;

        &::marker {
            content: "✦";
            font-size: 20px;

        }
    }
}

p a {
    color: var(--blue);
}

h1,
h2,
h3 {
    line-height: 1;
    color: var(--dark-blue);
}

h3+.btn {
    margin-top: var(--p40);
}

h1 {
    font-size: var(--fz100);
}

h1+.t36 {
    margin-bottom: 0;
    margin-top: var(--p60);
}

h2 {
    font-size: var(--fz80);
    padding-bottom: var(--p60);
    line-height: 0.9;

    a {
        color: var(--white);
        background: var(--blue);
        padding: var(--p20) var(--p40);
        text-decoration: none;
        border-radius: var(--p40);
        line-height: 2;
    }
}

h3 {
    font-size: var(--fz64);
    padding-bottom: var(--p40);
}

.t24 {
    font-size: var(--fz24);
    padding-bottom: 30px;
    line-height: 1.1;
    color: var(--text);
}

.t30 {
    font-size: var(--fz30);
    line-height: 1.1;
}

.t36 {
    font-size: var(--fz30);
    padding-bottom: 30px;
    line-height: 1.3;
    max-width: 1146px;

}


.sub_h2 {
    font-size: var(--fz36);
    opacity: var(--o50);
    font-weight: 500;
    padding-bottom: 10px;
}

img {
    max-width: 1146px;

    &.fs {
        max-width: 1760px;
    }
}

.o50 {
    opacity: var(--o50);
}

b {
    font-weight: 700;
}

.bg {
    background-color: var(--bg);
}

.bord {
    border: var(--bord) !important;
}

.fdc {
    display: flex;
    flex-direction: column;
}

.fdr {
    display: flex;
    flex-direction: row;
}

.jcsb {
    justify-content: space-between;
}

.jcfe {
    justify-content: flex-end;
}

.p0 {
    padding: 0;
}

.mt0 {
    margin-top: 0;
}


.s480 {
    display: none;
}

.g80 {
    gap: var(--p80);
}

.tac {
    text-align: center;
}

.fh {
    height: 100dvh;
    display: flex;
    align-items: center;
}

/* HEADER */

header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 99;
    padding: 10px var(--p60);
    background: var(--white50);
    backdrop-filter: blur(5px);
    align-items: center;

    a {
        text-decoration: none;
        color: var(--dark-blue);
        letter-spacing: 0;

        & svg {
            fill: var(--dark-blue);
            width: 100%;
            max-width: 108px;
            height: 24px;
            margin-right: var(--p20);
        }

        &:first-child {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 11px;
            font-weight: 500;
            line-height: 1.1;
        }

    }

    &:hover {
        background: var(--blue);
        transition: background .4s;

        a,
        a svg {
            color: var(--white);
            fill: var(--white);
        }
    }

}

.wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1760px;
    width: 100%;
    margin: 0 auto;

    @media (max-width: 1760px) {
        max-width: 90dvw;
    }

}


/* MAIN PAGE TOP SECTION */


.mpvid {
    position: fixed;
    inset: 0;
    z-index: -1000;
    overflow: hidden;
    background: var(--white);

    &>video {
        position: absolute;
        inset: 50% auto auto 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        opacity: .5;
    }
}

.first {
    height: 100dvh;
    gbackground: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 50%, #F7F9FB 100%);

    & .wrapper {
        height: 100dvh;
        align-content: center;
        flex-direction: column;
        justify-content: center;
    }

    @media (max-width: 768px) {
        container-type: inline-size;
        padding: 40px;
    }

    @media (max-width: 480px) {
        container-type: inline-size;
        padding: var(--p20);
    }


    .slogan {
        color: var(--dark-blue);
        font-size: 7.5cqw;
        line-height: 1;
        text-align: left;
        animation: slogan_anim 4s;
        text-transform: uppercase;


        @media (min-width: 1920px) {
            font-size: 5.5cqw;

        }

        @media (max-width: 1760px) {
            font-size: 7cqw;
            padding: 0;

        }

        @media (max-width: 768px) {
            font-size: 14cqw;
            font-weight: 500;
        }
    }

}


@keyframes slogan_anim {
    0% {
        opacity: 0;
        filter: blur(100px);
        filter: drop-shadow(0 0 0px #8aaed100);
    }

    50% {
        opacity: 0.5;
        filter: blur(50px);
        filter: drop-shadow(0 0 32px #8aaed100);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        filter: drop-shadow(0 0 32px #8aaed1);
    }
}

.textpage_content {
    padding: var(--p80);
}

.textpage_content .wrapper {
    flex-direction: column;
    min-height: calc(100vh - 140px);
    justify-content: flex-start;

    h1 {
        font-size: 48px;
        margin-bottom: 40px;
    }

    h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 10px;
        font-weight: 500;
        line-height: 1.15;
        padding-bottom: 0;
    }

    p {
        font-size: var(--fz18);
    }
}

/* SECTIONS */

.case_page section {
    margin-bottom: var(--p180);

    & .wrapper {

        h2 {
            max-width: 1146px;
        }
    }
}

.cases,
.manif {
    padding: var(--p80) var(--p20);
    background-color: var(--bg);


    .wrapper {
        height: 100%;
        display: grid;
        grid-auto-flow: row dense;
        grid-template-columns: repeat(12, 1fr);
        column-gap: 40px;
        row-gap: 140px;

    }
}

.case {
    background: #eee;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 740px;
    text-decoration: none;
    color: var(--white);
    font-size: 24px;
    line-height: 24px;
    container-type: inline-size;
    background-size: cover;


    .casetitle {
        padding: 40px;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--p20);
        backdrop-filter: blur(7px);

        @supports (corner-shape: squircle) {
            corner-shape: squircle;
            border-radius: calc(40px * 1.85);
        }

        h3 {
            font-size: 96px;
            font-weight: 700;
            letter-spacing: -3%;
            line-height: 96px;
            text-transform: uppercase;
            color: var(--white);
            padding-bottom: 0;
        }

        p {
            line-height: 1.2;
        }
    }

    .casedate {
        background-color: var(--white);
        color: var(--dark-blue);
        padding: var(--p20) var(--p40);
        border-radius: 40px;
        display: inline-block;
        width: fit-content;
        font-size: 36px;
    }


}


.btn {
    text-transform: uppercase;
    display: flex;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fz48);
    padding: 15px 30px;
    margin-right: var(--p40);
    color: var(--white);


    &:hover {
        background-color: var(--blue);
    }

}

.backbtn {
    display: flex;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;
    background: var(--white);
    color: var(--dark-blue);
    font-size: var(--fz18);
    padding: var(--p20);
    gap: var(--p10);
    align-items: center;

    svg {
        fill: var(--dark-blue);
    }

    &:hover {
        background: var(--blue);
        color: var(--white);

        svg {
            fill: var(--white)
        }
    }

}

.case_intro {
    padding: calc(var(--p80) * 2) 20px 0;

    .wrapper {
        gap: var(--p80);
    }


    .case_descr {
        max-width: 1167px;
        display: flex;
        flex-direction: column;
        gap: var(--p40);
        font-weight: 500;
        line-height: 1.2;
    }

}

.two_col {
    gap: var(--p80);

    &>div {
        flex: 1;
        width: 0;

        img {
            width: 100%;
        }

        .blue_plate {
            padding: var(--p40);
        }
    }
}

.two_img {
    display: flex;
    width: 100%;
    gap: var(--p80);
    margin: var(--p60) 0 var(--p80);

    &.mt0 {
        margin-top: 0;
    }

    div {
        position: relative;
        display: inline-block;
        width: 100%;
        height: auto;

        img {
            width: 100%;
        }

        .badge {
            position: absolute;
            top: var(--p40);
            left: var(--p40);
            padding: var(--p20) var(--p40);
            backdrop-filter: blur(4px);
            font-size: var(--fz24);

        }
    }

    a img {
        width: 100%;
    }

    img {
        flex: 1;
        width: 0;
    }
}

.three_blocks {
    margin-bottom: var(--p80);
    display: flex;
    gap: var(--p80);

    .txt_img_block {
        display: flex;
        flex-direction: column;

        .t24 {
            flex: 1;
            width: 100%;
            text-align: center;
        }

        img {
            width: 100%;
        }
    }
}

.txt_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.before {
    color: var(--white);
    background-color: var(--white50);

}

.before.dark {
    color: var(--text)
}


.after,
.blue_bg {
    color: var(--white);
    background-color: var(--blue);
}

.dblue_bg {
    background-color: var(--dark-blue);
    color: var(--white);
}

a.dblue_bg:hover {
    background-color: var(--blue);
}

.plate {
    padding: var(--p60);
    width: 100%;
    line-height: 1;
    font-size: var(--fz48);
    margin-top: var(--p40);
    text-decoration: none;

    &.mt0 {
        margin-top: 0;
    }
}

.white_bg {
    background-color: var(--white);
    color: var(--dark-blue);
}

a.white_bg:hover {
    color: var(--white);
    background-color: var(--blue);
}



.casenote {
    align-self: center;
    max-width: 400px;
    font-size: var(--fz48);
    line-height: 1;
}

.casedescr {
    align-self: center;
    max-width: 400px;
    font-size: var(--fz24);
    line-height: 1.2;

    h3 {
        font-weight: 700;
        font-size: var(--fz36);
        text-transform: uppercase;
    }

    ul li {
        padding-bottom: var(--p10);
    }
}

.mainnote {
    grid-column: 10 / 13;
}

.leftnote {
    grid-column: 2 / 6;
}

.rightnote {
    grid-column: 9 / 13;
}

.block_left_plus {
    grid-column: 1 / 9;
}

.block_left {
    grid-column: 1 / 8;
}

.block_right {
    grid-column: 6 / 13;
}



.ekb {
    background-image: url(/images/cases/ekb/bg.jpg);

    .casetitle {
        background: rgba(188, 45, 0, 0.74);
    }

}


.amm {
    background-image: url(/images/cases/amm/amm_44.jpg);

    .casetitle {
        background: rgba(33, 130, 129, 0.7);
    }
}


.ctt {
    background-image: url(/images/cases/stt/bg.jpg);

    .casetitle {
        background: rgba(42, 255, 238, 0.61);
    }
}


.asg {
    background-image: url(/images/cases/asg/bg.jpg);

    .casetitle {
        background: rgba(0, 89, 170, 0.96);

    }
}

.amm,
.asg,
.ctt {
    .casetitle {
        max-width: 60cqw;
    }
}




.manif {
    padding: var(--p80) 20px;
    background-color: var(--bg);

    .wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        line-height: 1;

        h2 {
            background-color: var(--white);
            display: block;
            width: 100%;
            text-align: center;
            padding: 4cqw 2cqw;
            font-size: 4cqw;
            border-radius: 70px;

            text-transform: uppercase;

            @supports (corner-shape: squircle) {
                corner-shape: squircle;
                border-radius: calc(70px * 1.85);
            }


        }

        .manif_steps {
            padding-left: 29vw;
            font-size: 48px;


        }

        h3 {
            font-size: 3cqw;
        }

    }
}



.cta {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 50%, #F7F9FB 100%);
    min-height: 100dvh;

    .wrapper {
        min-height: 100dvh;
        align-items: center;
    }

    h2 {
        text-transform: uppercase;
        font-size: 4cqw;
        font-weight: 300;
        line-height: 1;


    }


}





/* FOOTER */

footer {
    background: var(--white50);
    font-size: 12px;
    line-height: 1.2;
    padding: 40px var(--p80);

    &>div:first-of-type {
        margin: 0 auto;
        width: 100%;
        max-width: 1760px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "inn policy copy";
        gap: var(--p80);



        & div {
            margin: auto 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: center;


            &:first-child {
                grid-area: inn;
            }

            &:nth-child(2) {
                grid-area: policy;
                text-align: center;
            }

            &:nth-child(3) {
                grid-area: copy;
                align-items: end;
            }

            a {
                text-decoration: none;
                color: var(--dark-blue);

                &:hover {
                    color: var(--blue);
                }

            }

            img {
                max-width: var(--p80);
            }

        }

    }

}


/* COOKIE */

.cc-banner {
    position: fixed;
    inset: auto 20px 20px auto;
    z-index: var(--z);
    max-width: 960px;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 16px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--white96), #f7f8fb);
    transform: translateY(12px);
    transition: transform .28s ease, opacity .28s ease;
    opacity: 0;
    pointer-events: none;
}

.cc-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cc-banner__left {
    flex: 1 1 60%;
    min-width: 220px;
}

.cc-banner h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: var(--text);
}

.cc-banner p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
}

.cc-banner__actions {
    display: flex;
    gap: 8px;
}

.cc-btn {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform .12s ease;
}

.cc-btn:active {
    transform: translateY(1px);
}

.cc-btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(11, 132, 255, 0.16);
}

.cc-btn--ghost {
    border: 1px solid rgba(11, 18, 32, 0.06);
    background: #fff;
    color: var(--text);
}

.cc-btn--text {
    background: transparent;
    color: var(--muted);
}

.cc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 16, 0.45);
    z-index: calc(var(--z) + 1);
    display: none;
    align-items: center;
    justify-content: center;
}

.cc-modal-backdrop.show {
    display: flex;
}

.cc-modal {
    width: min(620px, calc(100% - 40px));
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.cc-modal h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--text);
}

.cc-modal p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.3;
}

.cc-category {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cc-category h4 {
    margin: 0;
    font-size: 15px;
}

.cc-category p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.cc-toggle input[type="checkbox"] {
    width: 44px;
    height: 24px;
    appearance: none;
    background: #e9eef8;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background .16s;
}

.cc-toggle input[type="checkbox"]::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left .16s;
    box-shadow: 0 2px 6px rgba(11, 18, 32, 0.08);
}

.cc-toggle input[type="checkbox"]:checked {
    background: var(--blue);
}

.cc-toggle input[type="checkbox"]:checked::after {
    left: 23px;
}

.cc-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 1920px) {
    .cta h2 {
        font-size: 7cqw;
    }

}





@media (max-width: 1760px) {

    .cta .wrapper {
        padding-left: 8vw;
    }

    .manif .wrapper h2 {
        font-size: 8cqw;
    }

    .manif .wrapper .manif_steps {
        padding-left: 9vw;
        font-size: 4cqw;
    }
}





@media (max-width: 1439px) {

    .manif .wrapper .manif_steps {
        padding-left: 8vw;
        font-size: 3cqw;
    }

    .case .casetitle h3 {
        line-height: 1;
        font-size: 12cqw;

    }

    .casenote {
        grid-column: auto !important;
        grid-row: auto !important;
        margin-top: 0 !important;
    }
}





@media (max-width: 1200px) {

    :root {
        --p80: 60px;
        --p180: 100px;
        --fz100: 80px;
        --radius: 50px;
    }

    header,
    .textpage_content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cases {

        .wrapper {
            grid-template-columns: 1fr;
            row-gap: 40px;
        }

        .case,
        .casenote {
            grid-column: auto !important;
            grid-row: auto !important;
            margin-top: 0 !important;
            max-width: 100%;
        }

        .case {
            min-height: clamp(550px, 60vh, 900px);
        }

        .casenote {
            font-size: 32px;
            margin-bottom: 120px;
            text-align: left;
        }
    }

    footer {
        padding: 40px;
    }

}





@media (max-width: 960px) {

    :root {
        --fz80: 60px;
        --radius: 40px;
    }

    .casenote {

        text-align: center;
    }

    .cts div:first-child {
        container-type: inline-size;
    }

    .cta h2 {
        font-size: 9cqw;
    }

    .cta .btns {
        width: 100%;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .cta .btns a {
        display: flex;
        justify-content: space-between;

    }

}


@media (max-width: 768px) {

    :root {
        --fz100: 40px;
        --fz80: 40px;
        --fz64: 36px;
        --fz48: 30px;
        --fz36: 24px;
        --fz30: 20px;
        --p180: 90px;
        --p80: 40px;
        --p60: 30px;
        --p40: 20px;
        --p20: 10px;
        --p10: 10px;
        --radius: 30px;
    }

    .h768 {
        display: none;
    }



    .two_img div .badge {
        font-size: 15px;
    }

    header {
        padding: 10px 40px;
    }

    .plate.fdr,
    .wrapper.two_col {
        flex-direction: column;
    }

    .two_col {
        &>div {
            width: 100%;
        }
    }

    h2.p0 {
        margin-bottom: var(--p40);
    }

    .cases,
    .manif {
        height: auto;
        padding: 30px;
    }

    .case {
        height: clamp(300px, 50vw, 420px);
        padding: 30px;
        height: 100%;
    }

    .case .casetitle {
        padding: 30px;
        gap: 30px;
    }

    .manif .wrapper .manif_steps {
        padding-left: 10vw;
        font-size: 5cqw;
    }

    .manif .wrapper h2 {
        font-size: 15cqw;
        text-align: left;
        padding: 10vw;
        line-height: 1.1;
    }

    .backbtn {
        font-size: 16px;
    }

    .cta .wrapper {
        padding-left: 10vw;
    }

    .cta h2 {
        font-size: 12cqw;
    }

    .textpage_content .wrapper {
        h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
    }

    footer {
        padding: 10px 40px;
    }

    footer div:first-of-type {
        gap: 40px;
    }

    .cc-banner {
        flex-direction: column;
        gap: 12px;
        left: var(--p40);
        right: var(--p40);
        bottom: 12px;

        p {
            text-align: center;
        }

    }
}




@media (max-width: 480px) {

    :root {
        --fz100: 40px;
        --fz80: 40px;
        --fz64: 36px;
        --fz48: 30px;
        --fz36: 24px;
        --fz30: 20px;
        --p180: 90px;
        --p80: 40px;
        --p60: 30px;
        --p40: 20px;
        --p10: 10px;
        --radius: 30px;
    }

    h1 {
        font-weight: 700;
    }

    .t24 {
        padding-bottom: var(--p40);
    }

    .g80 {
        gap: 0;
    }

    ul,
    ol {
        & li {
            margin-bottom: 5px;
            ;

            &::marker {
                font-size: 16px;
            }

            &:last-of-type {
                margin-bottom: 0;
            }
        }


    }

    .btn {
        line-height: 1;
        font-size: 18px;
    }

    .btn+.btn {
        margin-top: 20px;
    }

    .h480 {
        display: none;
    }

    .s480 {
        display: block;
    }

    .plate.white_bg h2 {
        font-size: var(--p64);
        margin-bottom: var(--p40);
        font-weight: 500;
        line-height: 1.2;
    }

    header {
        padding: 5px var(--p60);
    }

    .case_page section {
        padding-left: var(--p60);
        padding-right: var(--p60);
    }

    .case_intro {
        padding-left: 0;
        padding-right: 0;
    }

    .two_col,
    .two_img,
    .three_blocks,
    .fdr {
        flex-direction: column;
    }

    .two_img {

        & div {
            .badge {
                position: absolute;
                top: var(--p40);
                left: var(--p40);
                padding: var(--p10) var(--p20);
                backdrop-filter: blur(4px);
                font-size: 16px;
            }
        }

        img {
            flex: none;
            width: 100%;
        }

    }

    .two_col {
        &>div {
            flex: none;
            width: 100%;
        }

        &>div {
            img {
                width: 100%;
            }
        }

    }

    .three_blocks {
        margin-top: var(--p40);
    }


    .textpage_content {
        padding: 60px 20px;
    }

    header a:first-child {
        font-size: 0;

        svg {
            transform: scale(0.8);
            transform-origin: left center;
        }
    }

    .case .casetitle {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        border-radius: 40px;

        p {
            font-size: 18px;
        }
    }


    .case .casedate {
        width: 100%;
        text-align: center;
        font-size: 24px;
    }

    .cases .casenote {
        margin-bottom: var(--p80);
        font-size: 7cqw;
    }

    .ekb,
    .amm {
        background-position: top center;
    }

    .ctt {
        background-size: 400%;
    }

    .ctt .casetitle h3,
    .amm .casetitle h3,
    .asg .casetitle h3 {
        font-size: 20cqw;
    }

    .manif .wrapper {
        row-gap: 60px;
    }

    .manif .wrapper h2 {
        font-size: 15cqw;
        text-align: left;
        padding: 10vw;
        line-height: 1.3;
    }

    .manif .wrapper .manif_steps {
        padding-left: 9vw;
        font-size: 7cqw;
    }

    .cta {
        min-height: 80dvh;
    }

    .cta .wrapper {
        padding-left: 0;
        min-height: 80dvh;
    }

    .cta h2 {
        font-size: 15cqw;
    }


    .cts .btns a {

        width: 100%;
        padding: 20px 30px;
        font-size: 20px;
        height: auto;
    }

    .textpage_content .wrapper {
        h1 {
            font-size: 30px;

        }

        h2 {
            font-size: 20px;
        }

        p {
            font-size: 16px;
        }
    }


    footer {
        padding: 20px;
    }

    footer div:first-of-type {
        gap: 30px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "policy"
            "inn";

        div {
            text-align: center;

            &:nth-child(3) {
                align-items: center;
            }
        }
    }


    .cc-banner__actions {
        flex-direction: column-reverse;
    }
}