
.promo {
    padding-top: 135px;
    padding-bottom: 53px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-size: 100%;
    background-size: cover;
    position: relative;
    z-index: 2;
    background-position: bottom right;
    &::after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(270deg, rgba(6, 20, 53, 0) 44.71%, rgba(6, 20, 53, 0.5) 85.16%);
        z-index: -1;
        pointer-events: none;
    }
    .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 12px;
        padding: 10px 10px 10px 20px;
        gap: 10px;
        border-left: 4px solid;
        border-image: linear-gradient(184.17deg,  #E3CA96 9.76%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%) 1 100%;
        >span {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px 8px;
            min-height: 24px;
            background: rgba(1, 7, 23, 0.1);
            border: 1px solid var(--text-4);
            font-weight: 300;
            font-size: 14px;
            line-height: 140%;
            color: rgba(239, 240, 244, 0.65);
        }
        h1 {
            font-weight: 600;
            font-size: 50px;
            line-height: 100%;
            max-width: 675px;
            color: rgba(0, 0, 0, 0);
            background-clip: text;
            background-image: linear-gradient(74.17deg, #917234 7.74%, #E3CA96 26.76%, #CDB27C 47.44%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%);
        }
        h2 {
            font-weight: 500;
            font-size: 20px;
            line-height: 120%;
            color: var(--main-bg);
            max-width: 675px;
        }
        p {
            font-weight: 300;
            font-size: 20px;
            line-height: 120%;
            color: rgba(239, 240, 244, 0.85);
            max-width: 675px;
        }
        .btns {
            display: flex;
            justify-content: flex-start;
            width: 100%;
            gap: 10px;
            a, button {
                span {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    &::after {
                        content: '\e006';
                        font-family: 'icon';
                        font-size: 12px;
                        width: 16px;
                        height: 16px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                }
            }
            button {
                max-width: 260px;
                &::before, &::after {
                    border-width: 132px;
                }
                &:before {
                    border-top-width: 132px;
                    border-left-width: 132px;
                }
                &::after {
                    border-bottom-width: 132px;
                    border-right-width: 132px;
                }
            }
            a {
                max-width: 225px;
            }
        }
    }
}
.page-content {
    display: grid;
    grid-template-columns: 34% 66%;
    aside {
        position: relative;
        width: 100%;
        height: 100%;
        background: #EFF0F4;
        padding: 40px;
        padding-left: calc(((100vw - 1240px) / 2) - 8px);
        .burger {
            display: none;
            justify-content: center;
            align-items: center;
            width: 42px;
            height: 42px;
            background: var(--bg-1);
            border: 1px solid var(--bg-1);
            position: relative;
            overflow: hidden;
            transition: var(--transition-1);
            position: absolute;
            left: calc(100% + 2px);
            top: 2px;
            .icon {
                pointer-events: none;
                width: 22px;
                height: 22px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                &::before,
                &::after {
                    content: '';
                    transform: scaleX(1);
                }
                > span {
                    transform: scaleX(0.667);
                }
                &::before,
                &::after,
                >span {
                    width: 100%;
                    height: 1px;
                    background-color: var(--main-bg);
                    transition: var(--transition-1);
                }
            }
        }
        &.open {
            .burger {
                .icon {
                    >span {
                        background: rgba(0, 0, 0, 0);
                    }
                    &::before {
                        transform: scaleX(1) rotateZ(-45deg) translate(-8px, 8px);
                    }
                    &::after {
                        transform: scaleX(1) rotateZ(45deg) translate(-7px, -7px);
                    }
                }
            }
        }
        > .content {
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 40px;

        }
        .top {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            position: relative;
            &::before, &::after {
                content: '';
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                height: 20px;
            }
            &::before {
                backdrop-filter: blur(2px);
                mask-image: linear-gradient(to bottom, rgba(239, 240, 244, 0.96) 70%, rgba(239, 240, 244, 0));
                z-index: 10;
                }
            &::after {
                background: linear-gradient(to bottom, rgba(239, 240, 244, 0.9), rgba(239, 240, 244, 0));
            }
            div {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: 2px;
                aspect-ratio: 1/1;
                transition: .35s linear;
                border: 1px solid rgba(1, 7, 23, 0.1);
                background: var(--main-bg);
                position: relative;
                padding: 20px 4px 14px;
                cursor: pointer;
                &:not(.active):hover {
                    border-color: rgba(201, 168, 76, 1);
                }
                &::before {
                    font-family: 'icon';
                    width: 56px;
                    height: 56px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: .35s;
                    color: rgba(0, 0, 0, 0);
                    background-clip: text;
                    background-image: linear-gradient(74.17deg, rgba(1, 7, 23, .6), rgba(1, 7, 23, .6) 95.7%);
                }
                &.legal {
                    &::before {
                        content: '\e015';
                        font-size: 46px;
                    }
                }
                &.personnel {
                    &::before {
                        content: '\e016';
                        font-size: 50px;
                    }
                }
                &::after {
                    content: '';
                    position: absolute;
                    bottom: -1px;
                    left: -1px;
                    right: -1px;
                    height: 4px;
                    background: linear-gradient(74.17deg, rgba(0,0,0,0), rgba(0,0,0,0) 100%);
                    transition: .35s linear;
                }
                p {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 120%;
                    text-align: center;
                    text-transform: uppercase;
                    color: var(--text-2);
                    opacity: 0.6;
                    transition: .35s linear;
                }
                &.active {
                    background: var(--text-9);
                    border-color: rgba(0,0,0,0);
                    &::before {
                    background-image: linear-gradient(74.17deg, #917234 7.74%, #E3CA96 26.76%, #CDB27C 47.44%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%);
                    }
                    &::after {
                        background: linear-gradient(74.17deg, #917234 7.74%, #E3CA96 26.76%, #CDB27C 47.44%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%);
                    }
                    p {
                        opacity: 1;
                    }
                }

            }
        }
        nav {
            width: 100%;
            display: none;
            opacity: 0;
            transition: .35s linear;
            overflow-y: auto;
            max-height: calc(100dvh - 210px);
            padding-bottom: 20px;
            &::-webkit-scrollbar {
                width: 0;
            }
            &.active {
                display: flex;
                opacity: 1;
            }
            .ws-menu {
                display: grid;
                grid-auto-rows: auto;
                grid-auto-flow: row;
                width: 100%;
                height: 100%;
                >.item {
                    display: grid;
                    grid-template-rows: minmax(52px, auto) 0fr;
                    transition: 0.3s  linear;
                    overflow: hidden;
                    border-bottom: 1px solid rgba(119, 123, 134, 0.2);
                    > p, > a {
                        position: relative;
                        display: inline-flex;
                        justify-content: space-between;
                        align-items: center;
                        cursor: pointer;
                        transition: 0.2s linear;
                        width: 100%;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 100%;
                        opacity: 0.7;
                        color: var(--bg-1);
                        padding: 18px 24px 18px 0;
                        &::after, &::before {
                            position: absolute;
                            content: '';
                            right: 0;
                            height: 7px;
                            width: 1px;
                            opacity: 1;
                            background: var(--text-4);
                            transition: 0.2s linear;
                        }
                        &::before {
                            top: 19px;
                        }
                        &::after {
                            top: 26px;
                        }
                        &:hover {
                            opacity: 1;
                            &:before, &::after {
                                height: 8px;
                            }
                            &::before {
                                transform: rotate(-45deg) translate(-2px, -2px);
                            }
                            &::after {
                                transform: rotate(45deg) translate(-3px, 1px);
                            }
                        }
                    }
                    > p {
                        &::after, &::before {
                            right: 0;
                            height: 1px;
                            width: 7px;
                            top: 25px;
                        }
                        &::before {
                            right: 7px;
                        }
                        &:hover {
                            &:before, &::after {
                                height: 1px;
                            }
                            &::before {
                                transform: rotate(45deg) translate(1px, -1px);
                            }
                            &::after {
                                transform: rotate(-45deg) translate(-1px, -1px);
                            }
                        }
                    }
                    &.arbitration {
                        p {
                            opacity: 1;
                            font-weight: 700;
                        }
                    }
                    .sub-menu {
                        overflow: hidden;
                        transition: 0.3s linear;
                        display: grid;
                        grid-auto-flow: row;
                        grid-auto-rows: minmax(32px, auto);
                        border-left: 1px solid rgba(201, 168, 76, 0.3);
                        justify-content: flex-start;
                        .item {
                            display: flex;
                            align-items: center;
                            justify-content: flex-start;
                            gap: 15px;
                            position: relative;
                            padding-left: 12px;
                            transform: translateX(0px);
                            transition: 0.35s linear;
                            border-left: 3px solid rgba(0,0,0,0);
                            border-image: linear-gradient(184.17deg,  rgba(0,0,0,0), rgba(0,0,0,0) 100%) 1 100%;
                            img {
                                width: 5px;
                            }
                            a {
                                font-weight: 300;
                                font-size: 16px;
                                position: relative;
                                display: flex;
                                align-items: center;
                                text-align: left;
                                color: var(--bg-1);
                                opacity: 0.7;
                                font-weight: 300;
                                transition: .35s linear;
                            }
                                &::after {
                                    content: '';
                                    right: 0;
                                    height: 6px;
                                    aspect-ratio: 1/1;
                                    background: var(--text-4);
                                    transition: 0.35s linear;
                                    opacity: 0;
                                }
                            &:hover {
                                border-image: linear-gradient(184.17deg,  #E3CA96 9.76%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%) 1 100%;
                                a {
                                    text-shadow: 0 0 1px currentColor;
                                }
                                &::after {
                                    opacity: 1;
                                }
                            }
                        }
                    }
                    &.open {
                        grid-template-rows: minmax(52px, auto) 1fr;
                        padding-bottom: 16px;
                        > p {
                            &::before, &::after {
                                width: 8px;
                            }
                            &::before {
                                transform: rotate(-45deg) translate(5px, -4px);
                            }
                            &::after {
                                transform: rotate(45deg) translate(-5px, -4px);
                            }
                            &:hover {
                                &::before, &::after {
                                    width: 8px;
                                }
                                &::before {
                                    transform: rotate(-45deg) translate(5px, -4px);
                                }
                                &::after {
                                    transform: rotate(45deg) translate(-5px, -4px);
                                }
                            }
                        }
                    }
                }
            }
            p {
                user-select: none; 
            }
        }
    }
    .service {
        width: 100%;
        display: flex;
        flex-direction: column;
        >div {
            padding: 60px;
            padding-right: calc(((100vw - 1240px) / 2) - 8px);
            &:nth-child(2n + 1) {
                background: var(--text-9);
                * {
                    color: var(--text-2);
                }
                p, span, a, b, blockquote, li {
                    color: rgba(1, 7, 23, 0.65);
                }
            }
            &:nth-child(2n) {
                background-size: cover;
                background-position: center;
                *:not(h2, h3) {
                    color: #EFF0F4;
                }
                p, span, a, b, blockquote, li {
                    color: rgba(239, 240, 244, 0.65);

                }
                h2, h3 {
                    color: var(--text-1);
                }
            }
            >* {
                margin-bottom: 10px;
                line-height: 1.18;
            }
            h2, h3, b, strong {
                opacity: 1;
            }
            strong {
                font-weight: 500;
                opacity: 1;
            }
            h2 {
                font-weight: 600;
                font-size: 24px;
                line-height: 120%;
            }
            h3 {
                font-weight: 500;
                font-size: 20px;
                line-height: 100%;
            }
            ul,
            ol {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            ol {
                margin-left: 24px;
            }
            li {
                &::marker {
                    color: var(--text-4);
                }
            }
            hr {
                border: none;
                border-bottom: 2px solid #CDB296;
            }
            a:hover {
                color: var(--text-4);
            }
            .btn-white {
                span {
                    &:first-child {
                        color: var(--main-bg);
                    }
                    &:last-child {
                        color: var(--bg-1);
                    }
                }
            }
            .btn-blue {
                span {
                    &:first-child {
                        color: var(--text-2);
                    }
                    &:last-child {
                        color: var(--bg-1);
                    }
                }
            }
            .btn-gold {
                span {
                    &:first-child {
                        color: var(--text-2);
                    }
                    &:last-child {
                        color: var(--text-2);
                    }
                }
            }
        }
        .title {
            display: flex;
            align-items: center;
            padding-left: 6px;
            width: 100%;
            min-height: 26px;
            border-left: 4px solid rgba(174, 176, 180, 0.5);
            font-weight: 400;
            font-size: 12px;
            line-height: 120%;
            text-transform: uppercase;
            color: var(--text-6);
            opacity: 0.5;
        }
        .attention {
            width: 100%;
            padding: 30px 20px 30px 53px;
            margin-top: 40px;
            border-left: 2px solid #C9A84C4D;
            background: #C9A84C0D;
            align-items: center;
            position: relative;
            &::before {
                content: '\e020';
                font-family: 'icon';
                position: absolute;
                top: 50%;   
                transform: translateY(-50%);
                left: 20px;
                width: 24px;
                height: 24px;
                font-size: 24px;
                color: #7C7F88;
            }
        }
        .items {
            margin-top: 40px;
        }
        .about {
            p.first {
                position: relative;
                padding-bottom: 10px;
                &::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0; 
                    width: 60px;
                    height: 1px;
                    background: var(--text-4);
                }
            }
        }
        .important {
            .items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                .item {
                    backdrop-filter: blur(40px);
                    background: rgba(246, 247, 249, 0.05);
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    padding: 30px;
                    border-left: 2px solid var(--text-4);
                    h3 {
                        display: inline-flex;
                        align-items: center;
                        gap: 10px;
                        color: var(--text-4);
                        &::before {
                            content: '\e021';
                            font-family: 'icon';
                            width: 24px;
                            height: 24px;
                            font-size: 24px;
                        }
                    }
                    &:last-child {
                        border-color: #E35E5E;
                        h3 {
                            color: #E35E5E;
                            &::before {
                                content: '\e020';
                            }
                        }
                        strong {
                            color: #E35E5E;
                        }
                    }
                    strong {
                        color: var(--text-4);
                    }
                    p {
                        font-weight: 300;
                    }
                }
            }
        }
        .tariffs {
            .items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                .item {
                    padding: 30px;
                    border: 1px solid rgba(1, 7, 23, 0.15);
                    background: #EFF0F4;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    z-index: 1;
                    .top {
                        display: flex;
                        flex-direction: column;
                        padding-bottom: 30px;
                        position: relative;
                        background: #EFF0F4;
                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            height: 2px;
                            border-bottom: 1px solid;
                            border-image: linear-gradient(to right, rgba(246, 247, 249, 0.2) 0%, #F6F7F9 50%, rgba(246, 247, 249, 0.2) 100%) 100% 1;
                        }
                        &::after {
                            content: '';
                            position: absolute;
                            left: 25px;
                            right: 25px;
                            top: calc(100% - 10px);
                            height: 20px;
                            background: rgba(13, 23, 52, 0.4);
                            border-radius: 50%;
                            filter: blur(20px);
                            z-index: -1;
                        }
                        span {
                            line-height: 1.2;
                            text-transform: uppercase;
                            color: var(--text-4);
                        }
                        div {
                            display: flex;
                            align-items: baseline;
                            gap: 4px;
                            span:first-child {
                                font-weight: 900;
                                font-size: 40px;
                                line-height: 120%;
                                color: var(--text-2);
                            }
                            span:last-child {
                                font-weight: 400;
                                font-size: 14px;
                                line-height: 120%;
                                color: #777B86;
                            }
                        }
                        p {
                            font-weight: 500;
                            font-size: 20px;
                            line-height: 120%;
                            color: var(--text-2);
                        }
                    }
                    ul {
                        margin-top: 20px;
                        gap: 12px;
                        margin-bottom: 40px;
                        list-style: none;
                        li {
                            display: inline-flex;
                            align-items: first baseline;
                            gap: 8px;
                            &::before {
                                content: '\e023';
                                font-family: 'icon';
                                width: 16px;
                                height: 16px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-size: 13px;
                                color: var(--text-4);
                            }

                        }
                    }
                    button {
                        margin-top: auto;
                        width: 100%;
                        max-width: unset;
                        &::before, &::after {
                            border-width: 190px;
                        }
                        &::before {
                            border-top-width: 190px;
                            border-left-width: 190px;
                        }
                        &::after {
                            border-bottom-width: 190px;
                            border-right-width: 190px;
                        }
                    }
                    &:first-child {
                        button {
                            border: 1px solid rgba(10, 35, 92, 1);
                        }
                    }
                    &:last-child {
                        border-color: var(--text-8);
                        background: var(--text-8);
                        position: relative;
                        span.recommendation {
                            position: absolute;
                            top: -1px;
                            right: -1px;
                            width: 180px;
                            height: 32px;
                            background: linear-gradient(74.17deg, #917234 7.74%, #E3CA96 26.76%, #CDB27C 47.44%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 6px;
                            font-weight: 600;
                            font-size: 14px;
                            line-height: 120%;
                            text-transform: uppercase;
                            color: var(--text-2);
                            z-index: 3;
                            &::before {
                                content: '\e022';
                                font-family: 'icon';
                                width: 16px;
                                height: 16px;
                                font-size: 16px;
                            }
                        }
                        .top {
                            background: var(--text-8);
                            &::after {
                                background: rgba(201, 168, 76, 0.4);

                            }
                            div {
                                span:first-child {
                                    color: var(--text-1);
                                }
                                span:last-child {
                                    color: var(--text-1);
                                }
                            }
                            &+span {
                                font-weight: 400;
                                font-size: 14px;
                                line-height: 120%;
                                text-transform: uppercase;
                                text-align: center;
                                color: var(--text-6);
                                span {
                                    color: var(--text-4);
                                }
                            }
                            p {
                                color: var(--text-1);
                            }
                        }
                        ul {
                            li {
                                color: #EFF0F4D9;
                            }
                        }
                    }
                }
            }
        }
        .extra-costs {
            .items {
                margin-bottom: 20px;
                display: grid;
                grid-auto-flow: row;
                grid-auto-rows: minmax(59px, auto);
                width: 100%;
                .item {
                    display: flex;
                    justify-content: space-between;
                    gap: 20px;
                    align-items: center;
                    padding: 20px 30px;
                    backdrop-filter: blur(40px);
                    span {
                        font-weight: 300;
                        &:first-child {
                            max-width: 380px;
                        }
                        &:last-child {
                            text-align: right;
                        }
                    }
                    &:nth-child(odd) {
                        background: rgba(246, 247, 249, 0.02);

                    }
                    &:nth-child(even) {
                        background: rgba(246, 247, 249, 0.05);
                    }
                    &.head {
                        padding: 12px 30px;
                        border-bottom: 1px solid rgba(201, 168, 76, 0.5);
                        background: rgba(246, 247, 249, 0.1);
                        span {
                            color: rgba(201, 168, 76, .7);
                            text-transform: uppercase;
                        }
                    }
                }
                &+p {
                    font-size: 14px;
                    font-weight: 300;
                }
            }
        }
        .steps {
            .items {
                display: grid;
                grid-template-rows: minmax(29px, auto) 0fr;
                transition: .5s linear;
                .head {
                    display: flex;
                    justify-content: space-between;
                    cursor: pointer;
                    position: relative;
                    margin-bottom: 0;
                    &::after, &::before {
                        position: absolute;
                        content: '';
                        right: 0;
                        height: 2px;
                        width: 10px;
                        top: 15px;
                        background: var(--text-2);
                        transition: 0.2s linear;
                    }
                    &::before {
                        right: 10px;
                    }
                    &:hover {
                        opacity: 1;
                        &::before {
                            transform: rotate(45deg) translate(2px, -2px);
                        }
                        &::after {
                            transform: rotate(-45deg) translate(-1px, -1px);
                        }
                    }
                }
                &.open {
                    grid-template-rows: minmax(29px, auto) 1fr;
                    .head {
                        margin-bottom: 40px;
                        &::before {
                            transform: rotate(-45deg) translate(2px, 2px);
                        }
                        &::after {
                            transform: rotate(45deg) translate(-1px, 1px);
                        }
                        &:hover {
                            &::before {
                                transform: rotate(-45deg) translate(2px, 2px);
                            }
                            &::after {
                                transform: rotate(45deg) translate(-1px, 1px);
                            }
                        }
                    }
                }
                .item:last-child {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    overflow: hidden;
                    position: relative;
                    transition: .5s linear;
                    .step {
                        display: grid;
                        grid-template-columns: 33% 65%;
                        padding: 30px;
                        gap: 10px 30px;
                        position: relative;
                        border: 1px solid;
                        border-image-source: radial-gradient(54.75% 73% at 100% 100.35%, rgba(46, 49, 146, 0) 0%, rgba(46, 49, 146, 0.1) 100%);
                        border-image-slice: 1;
                        overflow: hidden;
                        >span {
                            position: absolute;
                            bottom: -20px;
                            left: -40px;
                            font-weight: 700;
                            font-size: 280px;
                            line-height: 199px;
                            letter-spacing: -10px;
                            color: rgba(1, 7, 23, 0.03);
                        }
                        div:first-of-type {
                            grid-row: 1/-1;
                            font-weight: 500;
                            font-size: 20px;
                            line-height: 118%;
                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            gap: 4px;
                            span {
                                height: 24px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                background: rgba(255, 255, 255, 0.1);
                                border: 1px solid rgba(201, 168, 76, 0.5);
                                padding: 2px 8px;
                                font-weight: 600;
                                font-size: 14px;
                                line-height: 140%;
                                color: var(--text-4);
                            }
                            &~div {
                                font-weight: 300;
                                color: rgba(1, 7, 23, 0.65);

                            }
                        }
                        &:has(div:nth-of-type(3)) {
                            div:first-of-type ~ div {
                                padding: 20px;
                                display: inline-flex;
                                flex-direction: column;
                                gap: 10px;
                                background: rgba(201, 168, 76, 0.05);
                                border-left: 2px solid rgba(201, 168, 76, 0.3);
                                grid-column: 2;
                                span {
                                    font-weight: 400;
                                    font-size: 14px;
                                    line-height: 120%;
                                    color: var(--text-4);
                                }
                            }
                        }
                    }
                }
            }
        }
        .faq {
            .links {
                display: flex;
                align-items: center;
                gap: 20px;
                a {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 120%;
                    display: inline-flex;
                    align-items: center;
                    transition: .3s;
                    gap: 4px;
                    &::before {
                        font-family: 'icon';
                        width: 20px;
                        aspect-ratio: 1/1;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 16px;
                        color: var(--text-4);
                    }
                    &.phone::before {
                        content: '\e007';
                    }
                    &.email::before {
                        content: '\e008';
                    }
                }
            }
            .items {
                display: flex;
                flex-direction: column;
                width: 100%;
                .item {
                    display: grid;
                    grid-template-rows: minmax(36px, auto) 0fr;
                    padding: 20px 30px;
                    backdrop-filter: blur(40px);
                    position: relative;
                    border: 1px solid rgba(246, 247, 249, 0);
                    transition: .3s linear;
                    &.open {
                        grid-template-rows: minmax(36px, auto) 1fr;
                        border: 1px solid rgba(246, 247, 249, 0.3);
                        .head {
                            p {
                                transform: translateY(-10px);
                            }
                            span {
                                background: rgba(217, 202, 157, 0.9);
                                &::after {
                                    opacity: 0;
                                }
                            }
                        }
                    }
                    &:nth-child(even) {
                        background: rgba(246, 247, 249, 0.02);

                    }
                    &:nth-child(odd) {
                        background: rgba(246, 247, 249, 0.05);
                    }
                    .head {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        cursor: pointer;
                        p {
                            font-weight: 500;
                            font-size: 20px;
                            line-height: 120%;
                            color: rgba(239, 240, 244, 0.85);
                            transition: .3s linear;
                            transform: translateY(0);
                        }
                        span {
                            width: 36px;
                            aspect-ratio: 1/1;
                            background: rgba(234, 236, 239, 1);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            cursor: pointer;
                            transition: .2s linear;
                            position: relative;
                            &:hover {
                                background: rgba(217, 202, 157, 0.9);
                            }
                            &::before, &::after {
                                content: '';
                                position: absolute;
                                background: #0B1738;
                                transition: .2s linear;
                                top: 50%;
                                left: 50%;
                                transform: translate(-50%, -50%);
                                opacity: 1;
                            }
                            &::before {
                                width: 10px;
                                height: 1px;
                            }
                            &::after {
                                width: 2px;
                                height: 10px;
                            }
                        }
                    }
                    .content {
                        transition: .3s linear;
                        overflow: hidden;
                        width: 85%;
                        p, a, li, h2, h3, h4 {
                            font-weight: 300;
                            font-size: 16px;
                            line-height: 120%;
                            color: rgba(239, 240, 244, 0.85);
                            margin-bottom: 20px;
                            &:last-child {
                                margin-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
        .related {
            .items {
                display: flex;
                gap: 20px;
                .item {
                    padding: 30px;
                    border: 1px solid;
                    border-image-source: radial-gradient(54.75% 73% at 100% 100.35%, rgba(46, 49, 146, 0) 0%, rgba(46, 49, 146, 0.1) 100%);
                    border-image-slice: 1;
                    display: flex;
                    flex-direction: column;
                    align-items: stretch;
                    &::before {
                        font-family: 'icon';
                        width: 24px;
                        height: 31px;
                        display: flex;
                        align-items: flex-start;
                        justify-content: center;
                        border-bottom: 1px solid rgba(205, 178, 150, 1);
                        color: var(--text-7);
                        font-size: 22px;
                        margin-bottom: 6px;
                    }
                    &:first-child::before {
                        content: '\e024';
                    }
                    &:nth-child(2)::before {
                        content: '\e025';
                    }
                    &:last-child::before {
                        content: '\e026';
                    }
                    h3 {
                        margin-bottom: 10px;
                    }
                    p {
                        font-weight: 300;
                        margin-bottom: 24px;
                    }
                    a {
                        margin-top: auto;
                        margin-left: auto;
                        color: rgba(119, 123, 134, .5);
                        display: flex;
                        align-items: center;
                        gap: 4px;
                        transition: .2s;
                        &::after {
                            content: '\e006';
                            font-family: 'icon';
                            font-size: 12px;
                            width: 16px;
                            aspect-ratio: 1/1;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }
                        &:hover {
                            color: var(--text-4);
                        }
                    }
                }
            }
        }
    }
}
.form {
    padding: 100px 0;
    filter: drop-shadow(0 34px 80px rgba(32, 34, 43, 0.40));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
    z-index: 3;
    margin-bottom: 10px;
    position: relative;
    &::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 10px;
        background: var(--bg-4);
        opacity: .7;
    }
    form {
        display: flex;
        flex-direction: column;
        .title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
            margin-bottom: 10px;
            color: var(--text-1);
            font-size: 32px;
            font-weight: 600;
            line-height: 100%;
            letter-spacing: 0.2px;
            padding: 6px 10px;
            margin-bottom: 10px;
            border-left: 4px solid;
            border-image: linear-gradient(180deg,  #E3CA96 9.76%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%) 1 100%;
            span {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 6px 12px;
                border: 1px solid rgba(201, 168, 76, 0.5);
                font-weight: 300;
                font-size: 20px;
                line-height: 118%;
                &::before {
                    content: '\e011';
                    font-family: 'icon';
                    font-size: 22px;
                    width: 24px;
                    height: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: rgba(0, 0, 0, 0);
                    background-clip: text;
                    background-image: linear-gradient(74.17deg, #917234 7.74%, #E3CA96 26.76%, #CDB27C 47.44%, #A8894C 53.73%, #B28E42 77.78%, #93763A 86.51%, #98793B 95.7%);
                }

            }
        }
        >p {
            font-weight: 300;
            font-size: 20px;
            line-height: 118%;
            margin-bottom: 40px;
            color: var(--text-1);
            opacity: 0.7;
        }
        .inputs {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 20px;
            margin-bottom: 30px;
            label:has(textarea) {
                grid-column: 1/-1;
            }
            label {
                display: flex;
                flex-direction: column;
                gap: 4px;
                & > span {
                    font-size: 14px;
                    font-weight: 300;
                    line-height: 16px;
                    opacity: 0.7;
                }
                input {
                    padding: 10px 20px;
                    height: 44px;
                    background: var(--main-bg);
                    border: none;
                    color:  rgba(119, 123, 134, 1);
                    font-size: 16px;
                    font-weight: 300;
                    line-height: 118%;
                    &::placeholder {
                        color:  rgba(119, 123, 134, 0.6);
                        font-size: 16px;
                        font-weight: 300;
                        line-height: 118%;
                    }
                }
                &:has(textarea) {
                    grid-column: 1/ -1;
                    textarea {
                        height: 100px;
                        padding: 12px 20px;
                        color:  rgba(119, 123, 134, 1);
                        font-size: 16px;
                        font-weight: 300;
                        line-height: 118%;
                        letter-spacing: 0.2px;
                        &::placeholder {
                            color:  rgba(119, 123, 134, 0.6);
                            font-size: 16px;
                            font-weight: 300;
                            line-height: 118%;
                        }
                    }
                }
            }
            .select {
                position: relative;
                .head {
                    height: 44px;
                    background: var(--main-bg);
                    padding: 10px 20px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    cursor: pointer;
                    span {
                        color: var(--text-2);
                        font-size: 16px;
                        line-height: 118%;
                        font-weight: 300;
                        letter-spacing: 0.2px;
                    }
                    &::after {
                        content: '\e019';
                        font-family: 'icon';
                        font-size: 10px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 20px;
                        min-width: 20px;
                        height: 20px;
                        color: var(--text-2);
                        transition: .3s linear;
                    }
                }
                .list {
                    display: flex;
                    flex-direction: column;
                    position: absolute;
                    top: calc(100% - 1px);
                    left: 0;
                    right: 0;
                    z-index: 9;
                    background: var(--main-bg);
                    max-height: 0px;
                    transition: .3s linear;
                    overflow: auto;
                    p {
                        color: var(--text-2);
                        padding: 10px 20px;
                        cursor: pointer;
                    }
                }
                &.open {
                    .head::after {
                        transform: scaleY(-1)
                    }
                    .list {
                        max-height: 300px;
                    }
                }
            }
            .agree {
                grid-column: 1/-1;
                display: flex;
                align-items: center;
                gap: 10px;
                label {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 10px;
                    &::before {
                        content: '\e030';
                        font-family: 'icon';
                        font-size: 10px;
                        color: rgba(174, 176, 180, 0);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 18px;
                        min-width: 18px;
                        height: 18px;
                        border: 1px solid var(--border-1);
                        transition: .3s linear;
                    }
                    input {
                        display: none;
                    }
                    &:has(input:checked) {
                        &::before {
                            color: rgba(174, 176, 180, 1);
                        }
                    }
                }
                p {
                    color: var(--text-6);
                    font-size: 14px;
                    font-weight: 300;
                    a {
                        font-size: inherit;
                        color: var(--text-1);
                        font-weight: 300;
                        transition: .2s;
                        &:hover {
                            color: var(--text-4);
                        }
                    }
                }
            }
        }
        button {
            grid-column: 1/-1;
            &::before {
                border-left-width: 620px;
                border-top-width: 620px;
            }
            &::after {
                border-bottom-width: 620px;
                border-right-width: 620px;
            }
        }
    }
}
@media screen and (max-width: 1340px) {
    .page-content {
        aside {
            padding-left: 40px;
        }
        .service {
            >div {
                padding-right: 40px;
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .promo {
        padding-top: 110px;
        background-position: 60% center;
        .content {
            h1 {
                font-size: 44px;
            }
            h2 {
                font-size: 18px;
            }
            p {
                font-size: 18px;
            }
        }
    }
    .page-content {
        grid-template-columns: 27% 73%;
        aside {
            padding: 20px;
            .top {
                div {
                    &::before {
                        width: 50px;
                        height: 50px;
                    }
                    &.legal::before {
                        font-size: 42px;
                    }
                    &.personnel {
                        &::before {
                            font-size: 42px;
                        }
                    }
                    p {
                        font-size: 12px;
                    }
                }
            }
            nav {
                .ws-menu {
                    >.item {
                        > a {
                            &::after, &::before {
                                height: 10px;
                                right: 5px;
                            }
                            &::before {
                                top: 18px;
                                transform: rotate(-45deg) translateY(1px);
                            }
                            &::after {
                                top: 26px;
                                transform: rotate(45deg) translateY(-1px);
                            }
                            &:hover {
                                &::before {
                                    top: 18px;
                                    transform: rotate(-45deg) translateY(1px);
                                }
                                &::after {
                                    top: 26px;
                                    transform: rotate(45deg) translateY(-1px);
                                }
                            }
                        }
                        > p {
                            &::after, &::before {
                                width: 9px;
                                height: 1px;
                                transform: unset;
                                bottom: unset;
                                top: 26px;
                                right: -2px;
                            }
                            &::before {
                                transform: rotate(45deg) translate(0px, 0px);
                                right: 5px;
                            }
                            &::after {
                                transform: rotate(-45deg) translate(-1px, -1px);
                            }
                            &:hover {
                                &::after, &::before {
                                    width: 9px;
                                    height: 1px;
                                    transform: unset;
                                    bottom: unset;
                                    top: 26px;
                                    right: -2px;
                                }
                                &::before {
                                    transform: rotate(45deg) translate(0px, 0px);
                                    right: 5px;
                                }
                                &::after {
                                    transform: rotate(-45deg) translate(-1px, -1px);
                                }
                            }
                        }
                        &.open {
                            > p {
                                &::before {
                                    transform: rotate(-45deg) translate(1px, 1px);
                                }
                                &::after {
                                    transform: rotate(45deg) translate(-1px, 1px);
                                }
                                &:hover {
                                    &::before {
                                        transform: rotate(-45deg) translate(1px, 1px);
                                    }
                                    &::after {
                                        transform: rotate(45deg) translate(-1px, 1px);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .service {
            >div {
                padding: 40px;
                padding-right: 20px;
            }
        }
    }
}
@media screen and (max-width: 1130px) {
    .promo {
        padding-bottom: 150px;
        background-position: 77% center;
    }
    .page-content {
        grid-template-columns: 100%;
        position: relative;
        aside {
            position: absolute;
            top: 0;
            bottom: 0;
            z-index: 10;
            max-width: 305px;
            transition: .3s linear;
            left: -305px;
            height: auto;
            .burger {
                display: flex;
            }
            &.open {
                left: 0;
            }
            .content {
                position: static;
            }
            nav {
                overflow-y: unset;
            }
        }
        .service {
            .about {
                padding-top: 50px;
            }
            .important {
                .items {
                    gap: 10px;
                }
            }
            .tariffs {
                .items {
                    gap: 10px;
                    & .item {
                        padding: 22px;
                        & button {
                            &::before, &::after {
                                border-width: 240px;
                            }
                            &::after {
                                border-bottom-width: 240px;
                                border-right-width: 240px;
                            }
                            &::before {
                                border-bottom-width: 240px;
                                border-right-width: 240px;
                            }
                        }
                    }
                }
            }
            .steps {
                .items {
                    .item:last-child {
                        .step {
                            grid-template-columns: 40% 58%;
                            padding: 20px;
                            gap: 10px 20px;
                        }
                    }
                }
            }
            .related {
                .items {
                    gap: 10px;
                    overflow: auto;
                    .item {
                        width: 275px;
                        min-width: 275px;
                    }
                }
            }
        }
    }
    .form {
        padding: 40px 0;
        form {
            .title {
                font-size: 28px;
                flex-direction: column-reverse;
                align-items: flex-start;
                span {
                    font-size: 16px;
                    padding: 2px 10px;
                    &::before {
                        font-size: 18px;
                        width: 20px;
                        height: 20px;
                    }
                }
            }
            & > p {
                margin-bottom: 30px;
                font-size: 18px;
            }
            .inputs {
                gap: 15px 20px;
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .promo {
        padding-top: 73px;
        .content {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 16px;
            }
            p {
                font-size: 16px;
            }
            .btns {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
                button {
                    max-width: unset;
                    &::before, &::after {
                        border-width: 240px;
                    }
                    &::after {
                        border-bottom-width: 240px;
                        border-right-width: 240px;
                    }
                    &:before {
                        border-top-width: 240px;
                        border-left-width: 240px;
                    }
                }
                a {
                    max-width: unset;
                    &::before, &::after {
                        border-width: 240px;
                    }
                    &::after {
                        border-bottom-width: 240px;
                        border-right-width: 240px;
                    }
                    &:before {
                        border-top-width: 240px;
                        border-left-width: 240px;
                    }
                }
            }
        }
    }
    .page-content {
        .service {
            >div {
                padding: 30px 10px;
            }
            .items {
                margin-top: 30px;
            }
            .attention {
                margin-top: 30px;
            }
            .important {
                .items {
                    grid-template-columns: 100%;
                    gap: 20px;
                    .item {
                        padding: 20px;
                        gap: 10px;
                    }
                }
            }
            .tariffs {
                .items {
                    grid-template-columns: 100%;
                    .item {
                        gap: 4px;
                        .top {
                            padding-bottom: 20px;
                            p {
                                font-size: 18px;
                            }
                        }
                        ul {
                            gap: 8px;
                            margin-bottom: 20px;
                            li {
                                font-size: 14px;
                            }
                        }
                        & button {
                            &::before, &::after {
                                border-width: 350px;
                            }
                            &::after {
                                border-bottom-width: 350px;
                                border-right-width: 350px;
                            }
                            &::before {
                                border-bottom-width: 350px;
                                border-right-width: 350px;
                            }
                        }
                    }
                }
            }
            .extra-costs {
                .items {
                    .item {
                        padding: 10px;
                        &.head {
                            padding: 8px 10px;
                        }
                        span {
                            font-size: 12px;
                        }
                    }
                    &+p {
                        font-size: 12px;
                    }
                }
            }
            .steps {
                .items {
                    .item:last-child {
                        .step {
                            grid-template-columns: 100%;
                            div:first-of-type {
                                grid-row: unset;
                            }
                            &:has(div:nth-of-type(3)) {
                                & div:first-of-type ~ div {
                                    grid-column: unset;
                                }
                            }
                        }
                    }
                }
            }
            .faq {
                .items {
                    .item {
                        padding: 20px;
                        .head {
                            gap: 10px;
                            display: grid;
                            grid-template-columns: 1fr 36px;
                            margin-bottom: 0;
                            transition: .3s linear;
                            p {
                                font-size: 18px;
                            }
                        }
                        .content {
                            width: 100%;
                            p, a, li, h2, h3, h4 {
                                font-size: 14px;
                            }
                        }
                        &.open {
                            & .head {
                                margin-bottom: 20px;
                                p {
                                    transform: translateY(0px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .form {
        padding: 30px 0;
        form {
            .title {
                font-size: 24px;
                max-width: 400px;
            }
            & > p {
                margin-bottom: 30px;
                font-size: 16px;
            }
            .inputs {
                display: flex;
                flex-direction: column;
                gap: 20px;
                .file {
                    flex-direction: column;
                    gap: 10px;
                    align-items: flex-start;
                }
            }
        }
    }
}
