@font-face {
    font-family: 'RobotoFlex';
    src: url(../fonts/RobotoFlex.woff2);
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist Mono';
    src: url(../fonts/GeistMono-r.woff2);
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url(../fonts/icon.woff2);
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-bg: #f6f7f9;
    --bg-1: #010717;
    --bg-2: rgba(1, 7, 23, 0.70);
    --bg-3:  rgba(246, 247, 249, 0.102);
    --bg-4:  #777b86;
    --bg-gradient-1: linear-gradient(270deg, rgba(246, 247, 249, 0.6) 0%, #f6f7f9 49.54%, rgba(246, 247, 249, 0.6) 99.19%); 
    --border-1: #aeb0b4;
    --border-2: #f6f7f933;
    --border-3: #f6f7f94d;
    --border-4: #917234;
    --text-1: #f6f7f9;
    --text-2: #010717;
    --text-3: #f6f7f9b2;
    --text-4: #c9a84c;
    --text-5: rgba(1, 7, 23, 0.65);
    --text-6: #aeb0b4;
    --text-7: #777b86;
    --text-8: #0d1734;
    --text-9: #fefefe;
    --text-gradient: linear-gradient(69.96deg, #917234 0.32%, #e3ca96 49.92%, #cdb27c 100%);
    --transition-1: 1s cubic-bezier(0.2, 1.06, 0.4, 1);
    --transition-2: 1s cubic-bezier(0.2, 1.5, 0.3, 1);
    --transition-3: .3s cubic-bezier(0.2, 1.06, 0.4, 1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'RobotoFlex', sans-serif;
    color: var(--text-1);
    font-size: 16px;
    letter-spacing: 0.2px;
    font-weight: 400;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    min-height: 100dvh;
}
body {
    position: relative;
    min-height: 100dvh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--main-bg);
    &:has(.burger-menu.active) {
        overflow: hidden;
        padding-right: 8px;
    }
    &:has(.window-modal.active) {
        scrollbar-gutter: stable;
    }
}
a {
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
}
input,
button {
    border-radius: 0;
    touch-action: manipulation;
    appearance: none;
}
label, button {
    cursor: pointer;
    appearance: none;
    border: none;
}
button {
    cursor: pointer;
}
textarea {
    appearance: none;
    resize: none;
    overflow: auto;
    border: none;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px var(--main-bg) !important;
    box-shadow: inset 0 0 0 50px var(--main-bg) !important;
}
input.error {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, var(--error-text-2), var(--error-text-2), var(--error-text-2)) border-box;
}
input::placeholder, textarea::placeholder {
    opacity: 1;
    transition: opacity 0.3s ease;
}
input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0; 
}
::selection {
    background-color: rgba(205, 178, 124, 1);
    color: var(--bg-1);
}
*::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
*::-webkit-scrollbar-track {
    background: var(--main-bg);
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid var(--main-bg);
    background-color: var(--bg-1);
}
.wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}
.btn-blue, .btn-gold, .btn-white {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 42px;
    position: relative;
    &::before, &::after {
        content: '';
        position: absolute;
        z-index: 1;
        aspect-ratio: 1/1;
        top: 50%;
        bottom: 50%;
        transform: translateY(-50%);
        border: 122px solid rgba(0, 0, 0, 0);
    }
    &:before {
        border-left-width: 122px;
        border-top-width: 122px;
        transition: var(--transition-1);
        left: 0;
    }
    &::after {
        border-bottom-width: 122px;
        border-right-width: 122px;
        right: 0;
    }
    span {
        position: absolute;
        z-index: 4;
        font-weight: 500;
        letter-spacing: 0.2px;
        width: max-content;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        transition: var(--transition-1);
        white-space: nowrap;
        &:first-child {
            opacity: 0;
        }
        &:last-child {
            opacity: 1;
        }
    }
    &.active {
        &::before {
            animation: btn-active-before 0.6s forwards linear;
        }
        &::after {
            animation: btn-active-after 0.6s forwards linear;
        }
        span {
            &:first-child {
                opacity: 1;
                animation: btn-active-spanfirst 0.6s forwards linear;
            }
            &:last-child {
                opacity: 0;
                animation: btn-active-spanlast 0.6s forwards linear;
            }
        }
    }
    &.not-active {
        &::before {
            animation: btn-notactive-before 0.6s forwards linear;
        }
        &::after {
            animation: btn-notactive-after 0.6s forwards linear;
        }
        span {
            &:first-child {
                opacity: 0;
                animation: btn-notactive-spanfirst 0.86s forwards linear;
            }
            &:last-child {
                opacity: 1;
                animation: btn-notactive-spanlast 0.6s forwards linear;
            }
        }
    }
}
@keyframes btn-active-spanfirst {
    0% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-50%);

    }
    90% {
        transform: translateX(-51%);

    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes btn-active-spanlast {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-75%);
    }
}
@keyframes btn-notactive-spanfirst {
    0% {
        transform: translateX(-50%);

    }
    100% {
        transform: translateX(-75%);
        
    }
}
@keyframes btn-notactive-spanlast {
    0% {
        transform: translateX(-75%);

    }
    70% {
        transform: translateX(-50%);

    }
    90% {
        transform: translateX(-49%);

    }
    100% {
        transform: translateX(-50%);
        
    }
}
@keyframes btn-active-before {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}
@keyframes btn-active-after {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(100%);
    }
}
@keyframes btn-notactive-before {
    0% {
        transform: translateY(-50%) translateX(-100%);
    }
    60% {
        transform: translateY(-50%) translateX(0);

    }
    80% {
        transform: translateY(-50%) translateX(5px);

    }
    100% {
        transform: translateY(-50%) translateX(0);
        
    }
}
@keyframes btn-notactive-after {
    0% {
        transform: translateY(-50%) translateX(100%);

    }
    60% {
        transform: translateY(-50%) translateX(0);
        
    }
    80% {
        transform: translateY(-50%) translateX(-5px);
        
    }
    100% {
        transform: translateY(-50%) translateX(0);
        
    }
}
@keyframes btngold-active-before {
    0% {
        transform: translateY(-50%) translateX(-100%);
    }
    60% {
        transform: translateY(-50%) translateX(0);

    }
    80% {
        transform: translateY(-50%) translateX(8px);

    }
    100% {
        transform: translateY(-50%) translateX(0);
        
    }
}
@keyframes btngold-active-after {
    0% {
        transform: translateY(-50%) translateX(100%);

    }
    60% {
        transform: translateY(-50%) translateX(0);
        
    }
    80% {
        transform: translateY(-50%) translateX(-8px);
        
    }
    100% {
        transform: translateY(-50%) translateX(0);
        
    }
}
@keyframes btngold-notactive-before {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}
@keyframes btngold-notactive-after {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(100%);
    }
}
.btn-white {
    background: var(--bg-1);
    &::before {
        border-top: 122px solid var(--main-bg);
        border-left: 122px solid var(--main-bg);
    }
    &::after {
        border-bottom: 122px solid var(--main-bg);
        border-right: 122px solid var(--main-bg);
    }
    span {
        &:first-child {
            color: var(--main-bg);
        }
        &:last-child {
            color: var(--bg-1);
        }
    }
}
.btn-blue {
    border: 1px solid var(--main-bg);
    background: var(--main-bg);
    &::before {
        border-top: 122px solid var(--bg-1);
        border-left: 122px solid var(--bg-1);
    }
    &::after {
        border-bottom: 122px solid var(--bg-1);
        border-right: 122px solid var(--bg-1);
    }
    span {
        &:first-child {
            color: var(--text-2);
        }
    }
}
.btn-gold {
    border: 1px solid; 
    border-image-source: 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%);
    border-image-slice: 1;
    background: var(--text-gradient);
    transition: 0.3s;
    width: 200px;
    &::before {
        border-top: 122px solid var(--main-bg);
        border-left: 122px solid var(--main-bg);
        transform: translateY(-50%) translateX(-100%);
    }
    &::after {
        border-bottom: 122px solid var(--main-bg);
        border-right: 122px solid var(--main-bg);
        transform: translateY(-50%) translateX(100%);
    }
    span {
        &:first-child {
            color: var(--text-2);
        }
        &:last-child {
            color: var(--text-2);
        }
    }
    &.active {
        border-image-source: linear-gradient(74.17deg, var(--main-bg), var(--main-bg));
        &::before {
            animation: btngold-active-before 0.6s forwards linear;
        }
        &::after {
            animation: btngold-active-after 0.6s forwards linear;
        }
    }
    &.not-active {
        &::before {
            animation: btngold-notactive-before 0.6s forwards linear;
        }
        &::after {
            animation: btngold-notactive-after 0.6s forwards linear;
        }
    }
}

                
header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    transition: transform 1s ease-in-out;
    z-index: 100;
    transform: translateY(-220%);
    :is(.top, .bottom) .wrapper {
        align-items: center;
    }
    .top {
        padding: 6px 0;
        background: var(--bg-1);
        border-bottom: 1px solid rgba(246, 247, 249, 0.2);
        .wrapper {
            display: flex;
            align-items: center;
            padding-left: 108px;
            position: relative;
            .logo {
                position: absolute;
                left: 0;
                top: 0;
                width: 88px;
                transform: translateY(0);
                transition: 0.8s;
            }
            .logo-mini {
                display: flex;
                gap: 6px;
                position: absolute;
                left: 0;
                top: -3px;
                height: 48px;
                transform: translateY(-60px);
                transition: 0.8s;
                img {
                    transform: translateY(-60px);
                    transition: 0.6s;
                }
                img:first-child {
                    width: 41px;
                    position: relative;
                }
                img:last-child {
                    width: 48px;
                    transition-delay: 0.3s;
                }
            }
            .contact {
                display: flex;
                align-items: center;
                gap: 20px;
                position: relative;
                a,p {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    position: relative;
                    opacity: 1;
                    transform: translateY(0);
                    transition: 0.8s;
                    span {
                        position: absolute;
                        font-size: 14px;
                        line-height: 120%;
                        letter-spacing: 0.2px;
                        transition: var(--transition-1);
                        white-space: nowrap;
                        &:first-child {
                            left: -6px;
                            opacity: 0;
                        }
                        &:last-child {
                            left: 24px;
                            opacity: .7;
                        }
                    }
                    &::before {
                        font-family: 'icon';
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 20px;
                        height: 20px;
                    }
                    &.phone {
                        width: 143px;
                        &::before {
                            content: '\e007';
                        }
                    }
                    &.email {
                        width: 121px;
                        &::before {
                            content: '\e008';
                        }
                    }
                    &.point {
                        width: 343px;
                        &::before {
                            content: '\e009';
                        }
                    }
                }
            }
            &:has(form.open) {
                .contact { 
                    transform: translateY(-40px);
                    opacity: 0;
                }
            }
            .btns {
                display: flex;
                align-items: center;
                gap: 6px;
                margin-left: auto;
                .search-btn {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 42px;
                    height: 42px;
                    background: var(--bg-3);
                    border: 1px solid var(--bg-3);
                    transition: 0.3s;
                    &::before {
                        content: '\e002';
                        font-family: 'icon';
                        font-size: 20px;
                        color: var(--main-bg);
                        transition: color .3s linear;
                    }
                    &:hover {
                        background: var(--bg-1);
                        border-color: var(--main-bg);
                    }
                }
                form {
                    position: absolute;
                    right: 398px;
                    width: 0;
                    max-width: 744px;
                    z-index: 2;
                    height: 42px;
                    display: grid;
                    justify-content: flex-end;
                    grid-template-columns: 1fr 42px 42px;
                    transform: scaleX(1) translateX(0);
                    will-change: transform;
                    opacity: 0;
                    transition: 0.4s;
                    animation: close-search 0.8s forwards linear;
                    overflow: hidden;
                    pointer-events: none;
                    background: var(--main-bg);
                    label {
                        overflow: hidden;
                        width: 0;
                        transition: 0.8s;
                        transition-delay: 0.3s;
                    }
                    input,
                    button {
                        border: 1px solid var(--white);
                        height: 100%;
                        width: 100%;
                        background-color: var(--2);
                        color: var(--white);
                    }
                    input {
                        color: var(--white);
                        padding: 0 16px;
                        color: var(--text-2);
                        &::placeholder {
                            color: rgba(1, 7, 23, .5);
                        }
                    }
                    button {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-left: none;
                        width: 0;
                        opacity: 0;
                        transition: .8s;
                        &::before {
                            content: '\e002';
                            font-family: 'icon';
                            font-size: 18px;
                            color: var(--text-2);
                        }
                        &[type="reset"] {
                            border-left: 1px solid var(--border-1);
                            transition: 0.8s;
                            opacity: 0;
                            width: 0;
                            &::before {
                                content: '\e010';
                            }
                        }
                        &[type="submit"] {
                            background: var(--main-bg);
                            border: 1px solid var(--main-bg);
                            &:hover {
                                background: var(--bg-1);
                                &::before {
                                    color: var(--main-bg);
                                }
                            }
                        }
                    }
                    &.open {
                        transform: translateX(0);
                        opacity: 1;
                        pointer-events: all;
                        width: 100%;
                        animation: open-search 1s forwards cubic-bezier(0, 0.5, 0.5, 1);
                        label {
                            width: 100%;
                        }
                        label:has(button) {
                            width: 42px;
                            opacity: 1;
                        }
                        button {
                            width: 42px;
                            opacity: 1;
                        }
                        button[type="reset"] {
                            width: 42px;
                        }
                    }
                }
                .btn-blue {
                    width: 200px;
                }
                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 42px;
                    height: 42px;
                    background: var(--bg-3);
                    border: 1px solid var(--bg-1);
                    position: relative;
                    overflow: hidden;
                    transition: var(--transition-1);
                    &::before, &::after {
                        font-family: 'icon';
                        font-size: 18px;
                        position: absolute;
                        transition: var(--transition-1);
                    }
                    &::before {
                        background: var(--text-gradient);
                        background-clip: text;
                        color: transparent;
                        opacity: 0;
                    }
                    &::after {
                        opacity: 1;
                    }
                    &.telegram {
                        &::before, &::after {
                            content: '\e001';
                        }
                    }
                    &.viber {
                        &::before, &::after {
                            content: '\e003';
                            font-size: 20px;
                        }
                    }
                    &.whatsapp {
                        &::before, &::after {
                            content: '\e004';
                            font-size: 20px;
                        }
                    }
                }
                .burger {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 42px;
                    height: 42px;
                    background: var(--bg-3);
                    border: 1px solid var(--bg-1);
                    position: relative;
                    overflow: hidden;
                    transition: var(--transition-1);
                    .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);
                        }
                    }
                }
            }
        }
    }
    .bottom {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 14px 0;
        z-index: -1;
        transform: translateY(0);
        opacity: 1;
        transition: 0.8s;
        &::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            transition: opacity .3s linear;
            background: var(--bg-2);
            border-bottom: 1px solid rgba(246, 247, 249, 0.2);
            backdrop-filter: blur(30px);
        }
        .wrapper {
            display: flex;
            align-items: center;
            .ws-menu {
                display: flex;
                align-items: center;
                margin-left: auto;
                gap: 32px;
                & > .item {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    height: 32px;
                    overflow: hidden;
                    color: inherit;
                    font-size: inherit;
                    z-index: 1;
                    &.hide {
                        display: none;
                    }
                    &::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        right: 0;
                        bottom: -20px;
                        height: 2px;
                        background: var(--bg-gradient-1);
                        transition: var(--transition-2);
                    }
                    a {
                        font-weight: 500;
                        letter-spacing: .2px;
                        line-height: 1.2;
                        transition: var(--transition-2);
                    }
                    .sub-menu {
                        position: absolute;
                        top: -20px;
                        transform: translateY(-50%);
                        transition: var(--transition-2);
                    }
                }
            }
        }
    }
    &.move {
        .top {
            .logo {
                transform: translateY(-150px);
                opacity: 0;
            }
            .logo-mini {
                transform: translateY(0);
                img {
                    transform: translateY(0);
                }
            }
            .contact {
                .email, p {
                    transform: translateY(-40px);
                    opacity: 0;
                }
            }
        }
        .bottom {
            pointer-events: none;
            transform: translateY(-54px);
            opacity: 0;
        }
    }
    &.show {
        transform: translateY(0);
    }
}
@keyframes open-search {
    0% {
        transform: scaleX(1) translateX(0);
        width: 0;
    }
    50% {
        transform: scaleX(1.01) translateX(-5px);
        width: 100%;
    }
    70% {
        transform: scaleX(0.98) translateX(5px);
        width: 100%;
    }
    100% {
        transform: scaleX(1) translateX(0);
        width: 100%;
    }
}
@keyframes close-search {
    0% {
        transform: scaleX(1) translateX(0);
        width: 100%;
    }
    100% {
        transform: scaleX(1) translateX(0);
        width: 0;
    }
}
body:has(.burger-menu.active) {
    header {
        .top {
            .logo {
                transform: translateY(-150px);
                opacity: 0;
            }
            .logo-mini {
                transform: translateY(0);
                img {
                    transform: translateY(0);
                }
            }
            .contact {
                transform: translateY(-40px);
                opacity: 0;
            }
            .wrapper {
                .btns {
                    .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);
                            }
                        }
                    }
                }
            }
        }
        .bottom {
            pointer-events: none;
            transform: translateY(-54px);
            opacity: 0;
        }
    }
}
.burger-menu {
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 55px;
    width: 100vw;
    height: 100dvh;
    display: grid;
    pointer-events: none;
    opacity: 0;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    transform: translateY(-100%);
    &.close-menu {
        animation: close-burger-menu 1s forwards linear;
    }
    .left {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transform: translateY(-110%);
        /* opacity: 0; */
        background: rgba(1, 7, 23, 0.7);
        backdrop-filter: blur(30px);
        animation: close-burger-menu-left 1.5s forwards cubic-bezier(0, 0.5, 0.5, 1);
        &::before {
            position: absolute;
            content: '';
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(8, 16, 38, 0.85);
            backdrop-filter: blur(30px);
            z-index: -1;
            pointer-events: none;
        }
        &::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            height: 100%;
            pointer-events: none;
            background: url(/resource/themes/ur/assets/images/burger-bg.png) top right/ auto auto no-repeat;
            background-size: cover;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.8s;
            transition-delay: 0s;
        }
        img {
            width: 100%;
            max-width: 773px;
            position: absolute;
            top: 58px;
            bottom: 58px;
            height: 100%;
            object-fit: contain;
            right: 13vw;
            mix-blend-mode: color-dodge;
            transform: translateX(-50%) rotate(-75deg);
            transition: opacity 0.8s linear, transform 0.8s ease-out;
            opacity: 0;
            transition-delay: 0s;
            will-change: transform;
        }
        nav {
            display: flex;
            align-items: end;
            justify-content: end;
            padding-right: 76px;
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity .8s linear, transform 0.8s linear;
            transition-delay: 0s;
            >.ws-menu {
                display: flex;
                flex-direction: column;
                align-items: end;
                gap: 20px;
                .item {
                    a {
                        color: var(--text-4);
                        font-size: 30px;
                        font-weight: 500;
                        text-transform: uppercase;
                        transition: color .2s linear;
                        position: relative;
                        + :is(a, p) {
                            display: none;
                        }
                        &::after, &::before {
                            position: absolute;
                            content: '';
                            right: -14px;
                            height: 12px;
                            width: 4px;
                            background: var(--text-4);
                            transition: 0.2s linear;
                        }
                        &::before {
                            top: 6px;
                        }
                        &::after {
                            bottom: 6px;
                        }
                        &:hover {
                            color: var(--main-bg);
                            &::before {
                                transform: rotate(-45deg) translateY(3px);
                                background: var(--main-bg);
                            }
                            &::after {
                                transform: rotate(45deg) translateY(-3px);
                                background: var(--main-bg);
                            }
                        }
                    }
                    .sub-menu {
                        display: none;
                    }
                }
            }
        }
        .info {
            display: none;
            flex-direction: column;
            padding-right: 8px;
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity .8s linear, transform 0.8s linear;
            transition-delay: 0s;
            width: 100%;
            max-width: 355px;
            .contact {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: flex-end;
                gap: 10px;
                margin-bottom: 20px;
                a,p {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    opacity: 0.7;
                    span {
                        font-size: 14px;
                        white-space: nowrap;
                    }
                    &::before {
                        font-family: 'icon';
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 20px;
                        height: 20px;
                    }
                    &.phone {
                        &::before {
                            content: '\e007';
                        }
                    }
                    &.email {
                        &::before {
                            content: '\e008';
                        }
                    }
                    &.point {
                        &::before {
                            content: '\e009';
                        }
                    }
                }
                p {
                    span {
                        font-size: 12px;
                    }
                }
            }
            .btns {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-end;
                gap: 6px;
                width: 100%;
                .btn-blue {
                    width: 100%;
                    max-width: 210px;
                }
                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 42px;
                    min-width: 42px;
                    height: 42px;
                    min-height: 42px;
                    background: var(--bg-3);
                    position: relative;
                    overflow: hidden;
                    &::before, &::after {
                        font-family: 'icon';
                        font-size: 20px;
                        position: absolute;
                    }
                    &::before {
                        background: var(--text-gradient);
                        background-clip: text;
                        color: transparent;
                        opacity: 0;
                    }
                    &::after {
                        opacity: 1;
                    }
                    &.telegram {
                        &::before, &::after {
                            content: '\e001';
                        }
                    }
                    &.viber {
                        &::before, &::after {
                            content: '\e003';
                            font-size: 20px;
                        }
                    }
                    &.whatsapp {
                        &::before, &::after {
                            content: '\e004';
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
    .right {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        pointer-events: none;
        /* opacity: 0; */
        background: rgba(1, 7, 23, 0.7);
        backdrop-filter: blur(30px);
        border-left: 1px solid;
        padding-right: calc(((100vw - 1240px) / 2) - 8px);
        border-image: linear-gradient(180deg, rgba(246, 247, 249, 0.2) 0%, #F6F7F9 50%, rgba(246, 247, 249, 0.2) 100%) 1 100%;
        overflow: hidden;
        transform: translateY(100%);
        animation: close-burger-menu-right .5s forwards linear;
        &::before {
            position: absolute;
            content: '';
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(1, 7, 23, 0.8);
            backdrop-filter: blur(30px);
            z-index: -1;
            pointer-events: none;
        }
        .box-wrapper {
            transition: 1s ease-in-out;
            padding-left: 50px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding-top: 146px;
            height: calc(100% - 0px);
            opacity: 0;
            transform: translateX(30%);
            transition: opacity 1s linear, transform .8s linear;
            transition-delay: 0s;
            &::-webkit-scrollbar {
                height: 0px !important;
                width: 0px !important;
            }
            >span {
                color: transparent;
                background-clip: text;
                text-transform: uppercase;
                font-weight: 300;
                color: var(--text-4);
            }
            .top {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 20px;
                height: 40px;
                border-bottom: 1px solid #F6F7F94D;
                label {
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 1.5;
                    position: absolute;
                    text-transform: uppercase;
                    cursor: pointer;
                    width: fit-content;
                    color: var(--main-bg);
                    opacity: 0.7;
                    transition: .3s linear;
                    left: 100%;
                    transform: translateX(-100%);
                    transform: translateX(0);
                    animation: no-check 1s ease-out forwards;
                    height: 100%;
                    display: flex;
                    gap: 14px;
                    border-bottom: 1px solid rgba(246, 247, 249, 0);
                    user-select: none; 
                    &::after, &::before {
                        position: absolute;
                        content: '';
                        left: -15px;
                        height: 12px;
                        width: 2px;
                        background: var(--main-bg);
                        opacity: .7;
                        transition: 0.2s linear;
                    }
                    &::before {
                        top: 6px;
                    }
                    &::after {
                        top: 16px;
                    }
                    &:hover {
                        color: var(--main-bg);
                        &::before {
                            transform: rotate(45deg) translateY(2px);
                            background: var(--main-bg);
                        }
                        &::after {
                            transform: rotate(-45deg) translateY(-2px);
                            background: var(--main-bg);
                        }
                    }
                    input {
                        position: absolute;
                        left: 0;
                        top: 0;
                        z-index: -11;
                        opacity: 0;
                    }
                    &:has(input:checked) {
                        opacity: 1;
                        left: 0;
                        transform: translateX(0);
                        animation: check 1s ease-out forwards;
                        border-bottom: 1px solid rgba(246, 247, 249, 1);
                        &::after, &::before {
                            opacity: 0;
                        }
                    }
                }
            }
            .bottom {
                position: relative;
                display: flex;
                margin-bottom: 40px;
                height: calc(100% - 80px);
                overflow: hidden;
                overflow-y: scroll;
                nav {
                    position: absolute;
                    height: max-content;
                    width: 100%;
                    transform: translateX(-100%);
                    left: 100%;
                    opacity: 0;
                    animation: no-check-menu 1s linear forwards;
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                    pointer-events: none;
                    .ws-menu {
                        display: grid;
                        gap: 10px;
                        >.item {
                            display: grid;
                            justify-content: flex-start;
                            grid-template-rows: auto 0fr;
                            transition: 0.3s  linear;
                            overflow: hidden;
                            &.arbitration {
                                padding-top: 12px;
                                position: relative;
                                &::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 65px;
                                    height: 2px;
                                    background: #CDB296;
                                }
                            }
                            > p, > a {
                                position: relative;
                                display: inline-flex;
                                justify-content: flex-start;
                                cursor: pointer;
                                padding-right: 26px;
                                transition: 0.2s linear;
                                width: 100%;
                                max-width: max-content;
                                &::after, &::before {
                                    position: absolute;
                                    content: '';
                                    right: 0;
                                    height: 10px;
                                    width: 2px;
                                    background: var(--main-bg);
                                    transition: 0.2s linear;
                                }
                                &::before {
                                    top: 6px;
                                }
                                &::after {
                                    top: 16px;
                                }
                                &:hover {
                                    color: var(--main-bg);
                                    &::before {
                                        transform: rotate(-45deg) translateY(3px);
                                        background: var(--main-bg);
                                    }
                                    &::after {
                                        transform: rotate(45deg) translateY(-3px);
                                        background: var(--main-bg);
                                    }
                                }
                            }
                            > p {
                                &::after, &::before {
                                    right: 0;
                                    height: 2px;
                                    width: 10px;
                                    top: 15px;
                                }
                                &::before {
                                    right: 10px;
                                }
                                &:hover {
                                    opacity: 1;
                                    &::before {
                                        transform: rotate(45deg) translate(2px, -2px);
                                    }
                                    &::after {
                                        transform: rotate(-45deg) translate(-1px, -1px);
                                    }
                                }
                            }
                            .sub-menu {
                                overflow: hidden;
                                transition: 0.3s linear;
                                padding-left: 30px;
                                display: grid;
                                gap: 10px;
                                .item {
                                    display: flex;
                                    align-items: center;
                                    gap: 9px;
                                    position: relative;
                                    padding-left: 4px;
                                    transform: translateX(0px);
                                    transition: 0.2s linear;
                                    img {
                                        width: 5px;
                                    }
                                    &::after, &::before {
                                        position: absolute;
                                        content: '';
                                        left: 0;
                                        height: 5px;
                                        width: 1px;
                                        background: var(--text-4);
                                        transition: 0.2s linear;
                                    }
                                    &::before {
                                        top: calc(50% - 5px);
                                        transform: translateX(-50%);
                                    }
                                    &::after {
                                        bottom: calc(50% - 5px);
                                        transform: translateX(-50%);
                                    }
                                    &:hover {
                                        transform: translateX(10px);
                                        &::before {
                                            transform: rotate(-45deg) translateY(3px);
                                            height: 4px;
                                        }
                                        &::after {
                                            transform: rotate(45deg) translateY(-3px);
                                            height: 4px;
                                        }
                                        a {
                                            opacity: 1;
                                        }
                                    }
                                }
                                a {
                                    font-weight: 300;
                                    font-size: 16px;
                                    position: relative;
                                    display: flex;
                                    align-items: center;
                                }
                            }
                            &.open {
                                grid-template-rows: auto 1fr;
                                > p {
                                    margin-bottom: 10px;
                                    opacity: 1;
                                    &::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);
                                        }
                                    }
                                }
                            }
                        }
                    }
                    a,
                    p {
                        display: flex;
                        gap: 6px;
                        font-weight: 400;
                        font-size: 24px;
                        color: var(--main-bg);
                        opacity: 0.7;
                        transition: color .3s linear, transform .2s;
                        color: var(--main-bg);
                    }
                    p {
                        user-select: none; 
                    }
                }
            }
            &:has(input[value="legal"]:checked) .legal,
            &:has(input[value="personnel"]:checked) .personnel {
                left: 0;
                transform: translateX(0);
                opacity: 1;
                animation: check-menu 1s linear forwards;
            }
        }
    }
    &.active {
        pointer-events: all;
        opacity: 1;
        visibility: visible;
        transition: none;
        animation: open-burger-menu 1s forwards linear;
        .left {
            animation: active-burger-menu-left 1.2s .3s forwards ease-out;
            &::after {
                opacity: 1;
                transition-delay: 1.2s;
            }
            img {
                transform: translateX(0) rotate(0);
                opacity: 1;
                transition-delay: 1.2s;
            }
            nav {
                opacity: 1;
                transform: translateX(0);
                transition-delay: 1.2s;
            }
            .info {
                opacity: 1;
                transform: translateX(0);
                transition-delay: 1.2s;
            }
        }
        .right {
            pointer-events: all;
            animation: active-burger-menu-right 2s .3s forwards cubic-bezier(0, 0.4, 0.6, 1);
            .box-wrapper {
                opacity: 1;
                transform: translateX(0);
                transition-delay: 1.2s;
            }
        }
    }
}
.burger-menu .right .box-wrapper .bottom::-webkit-scrollbar {
    width: 0 !important;
}
header,
.burger-menu {
    .mobile {
        display: none !important;
    }
}
@keyframes open-burger-menu  {
    0% {
        opacity: 0;
        z-index: 100;
        transform: translateY(-100%);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    99% {
        z-index: 100;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        z-index: 99;
        transform: translateY(0);
    }
}
@keyframes close-burger-menu  {
    0% {
        opacity: 1;
        z-index: 100;
        transform: translateY(0);
    }
    99% {
        z-index: 100;
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        z-index: -100;
        transform: translateY(-100%);
    }
}
@keyframes active-burger-menu-left {
    0% {
        transform: translateY(-110%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes close-burger-menu-left {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-110%);
    }
    40% {
        transform: translateY(-105%);
    }
    50% {
        transform: translateY(-110%);
    }
    60% {
        transform: translateY(-108%);
    }
    100% {
        transform: translateY(-110%);
    }
}
@keyframes active-burger-menu-right {
    0% {
        transform: translateY(110%);
    }
    50% {
        transform: translateY(-20px);
    }
    90% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes close-burger-menu-right {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}
@keyframes check {
    0% {
        left: 100%;
        transform: translateX(-100%);
        opacity: 0.7;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    70% {
        left: 0;
        transform: translateX(-15px);
    }
    100% {
        left: 0;
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes no-check {
    0% {
        left: 0;
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0.7;
    }
    70% {
        left: 100%;
        transform: translateX(-90%);
    }
    100% {
        left: 100%;
        transform: translateX(-100%);
        opacity: 0.7;
    }
}
@keyframes no-check-menu {
    0% {
        transform: translateX(0);
        left: 0;
        opacity: 1;
        pointer-events: all;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateX(-30%);
        left: 40%;
        pointer-events: none;
    }
}
@keyframes check-menu {
    0% {
        transform: translateX(-30%);
        left: 40%;
        opacity: 0;
        pointer-events: none;
    }
    50% {
        transform: translateX(-5px);
        left: 0;
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        left: 0;
        opacity: 1;
        pointer-events: all;
    }
}

.breadcrumbs {
    display: flex;
    align-items: center;
    overflow: auto;
    gap: 11px;
    a {
        color: var(--text-7);
        line-height: 120%;
        letter-spacing: 0.2px;
    }
    span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 6px;
        height: 6px;
        background: var(--bg-4);
    }
    p {
        font-size: 16px;
        line-height: 120%;
        letter-spacing: 0.2px;
        opacity: 0.8;
    }
}
.cursor-box {
    position: relative;
    cursor: none;
    .cursor {
        position: absolute;
        width: 80px;
        aspect-ratio: 1/1;
        z-index: 5;
        opacity: 0;
        background: url(../images/cursor.svg) 0 0/ cover;
        pointer-events: none;
        transition: transform .2s, opacity .2s;
    }
    &:hover .cursor {
        opacity: 1;
        transform: scale(1);
    }
    &:has(a:hover) .cursor {
        opacity: 0;
        transform: scale(0);
    }
}
.consultation-block {
    .form {
        padding: 80px 60px;
        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;
        h2 {
            display: flex;
            align-items: center;
            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;
            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%;
        }
        & > p {
            margin-bottom: 40px;
            font-size: 20px;
            line-height: 118%;
            letter-spacing: 0.2px;
            opacity: 0.5;
            font-weight: 300;
        }
        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 24px;
            label, .select-box {
                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%;
                    letter-spacing: 0.2px;
                    &::placeholder {
                        color:  rgba(119, 123, 134, 0.6);
                        font-size: 16px;
                        font-weight: 300;
                        line-height: 118%;
                        eltter-spacing: 0.2px;
                    }
                }
                &: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%;
                            leltter-spacing: 0.2px;
                        }
                    }
                }
            }
            .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;
                margin-bottom: 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);
                        }
                    }
                    span {
                        color: var(--text-6);
                        font-size: 14px;
                        font-weight: 300;
                        a {
                            font-size: inherit;
                            font-weight: 300;
                        }
                    }
                }
            }
            button {
                grid-column: 1/-1;
                &::before {
                    border-left-width: 520px;
                    border-top-width: 520px;
                }
                &::after {
                    border-bottom-width: 520px;
                    border-right-width: 520px;
                }
            }
        }
    }
    .map {
        margin-top: -54px;
        height: 418px;
        .ymaps3x0--map-copyrights__logo,
        .ymaps3x0--map-copyrights__container,
        .ymaps3--map-copyrights.ymaps3--map-copyrights_bottom.ymaps3--map-copyrights_right {
            display: none;
        }
        canvas {
            filter: grayscale(1);
        }
        .marker {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 80px;
            left: -40px;
            top: -108px;
            filter: drop-shadow(10px, 10px, 10px rgba(0, 0, 0, .6))
        }
    }
}
.ymaps3--controls {
    z-index: 90 !important;
}
.window-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(1, 7, 23, 0.20);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: .3s linear;
    &.active {
        pointer-events: all;
        opacity: 1;
    }
    .window-body {
        display: flex;
        flex-direction: column;
        max-width: 520px;
        width: 100%;
        padding: 65px 60px;
        position: relative;
        background: url(../images/callback-form-bg.webp) center / 100% 100% no-repeat;
        span.close {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            position: absolute;
            top: 20px;
            right: 20px;
            background:rgba(246, 247, 249, 0.10);
            cursor: pointer;
            &::before {
                content: '\e010';
                font-family: 'icon';
                font-size: 14px;
                color: #f6f7f9;
                opacity: 0.7;
                transition: .3s linear;
            }
            &:hover::before {
                opacity: 1;
            }
        }
        h2 {
            display: flex;
            padding: 6px 10px;
            color:#f6f7f9;
            font-size: 24px;
            font-weight: 600;
            line-height: 100%;  
            letter-spacing: 0.2px;
            position: relative;
            margin-bottom: 16px;
            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 4px;
                background: linear-gradient(184.17deg, #e3ca96 9.76%, #a8894c 53.73%, #b28e42 77.78%, #93763a 86.51%, #98793b 95.7%);
            }
        }
        label {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 16px;
            span {
                color: #f6f7f9;
                font-size: 14px;
                line-height: normal;
                letter-spacing: 0.2px;
                opacity: 0.7;
            }
            input {
                height: 44px;
                padding: 5px 10px;
                border: 1px solid #fff;
                background: #f6f7f9;
                color: var(--text-2);
            }
            textarea {
                height: 100px;
                padding: 5px 10px;
                border: 1px solid #fff;
                background: #f6f7f9;
                color: var(--text-2);
            }
            &.checbox {
                flex-direction: row;
                gap: 10px;
                align-items: flex-start;
                margin-bottom: 30px;
                &:has(input:checked) {
                    &::before {
                        content: '\e030';
                        color: var(--text-2);
                    }
                }
                &::before {
                    content: '';
                    font-family: 'icon';
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 20px;
                    min-width: 20px;
                    height: 20px;
                    background: #f6f7f9;
                    margin-top: 2px;
                }
                input {
                    display: none;
                }
                span {
                    color: #aeb0b4;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 16px;
                    letter-spacing: 0.2px;
                    a {
                        color:#f6f7f9;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 16px;
                        letter-spacing: 0.2px;
                    }
                }
                
            }
        }
        button {
            &:before {
                border-top: 182px solid var(--main-bg);
                border-left: 182px solid var(--main-bg);
            }
            &::after {
                border-bottom: 182px solid var(--main-bg);
                border-right: 182px solid var(--main-bg);
            }
        }
    }
}
footer {
    margin-top: auto;
    background: #061435;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    >div {
        position: relative;
        backdrop-filter: blur(20px);
        &::before {
            content: "";
            position: absolute;
            top: 0; 
            left: 0; 
            right: 0; 
            bottom: 0;
            background-image: url("data:image/svg+xml,%3C!-- svg: first layer --%3E%3Csvg viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.2;
            mix-blend-mode: overlay;
            pointer-events: none;
        }
    }
    .left {
        display: flex;
        gap: 50px;
        align-items: flex-start;
        justify-content: space-between;
        padding: 100px 60px 20px calc(((100vw - 1240px) /2) - 8px);
        background-color: #01071733;
        border-right: 1px solid #F6F7F94D;
        height: 100%;
        width: 100%;
        .logo {
            max-width: 190px;
            opacity: 0.5;
        }
        .info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            & > a, & > p {
                display: grid;
                grid-template-columns: 20px 1fr;
                align-items: center;
                gap: 5px;
                font-size: 14px;
                opacity: 0.7;
                font-weight: 100;
                transition: .3s linear;
                &::before {
                    font-family: 'icon';
                    font-size: 16px;
                    color: var(--text-1);
                    opacity: 0.5;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 20px;
                    height: 20px;
                }
                &.phone::before {
                    content: '\e007';
                }
                &.email::before {
                    content: '\e008';
                }
                &.point {
                    align-items: flex-start;
                    &::before {
                        content: '\e009';
                    }
                }
                &.hours::before {
                    content: '\e011';
                }
            }
            .social {
                display: grid;
                grid-template-columns: repeat(3, 30px);
                grid-template-rows: 30px;
                gap: 6px;
                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: var(--bg-3);
                    position: relative;
                    overflow: hidden;
                    transition: .3s linear;
                    &::before, &::after {
                        font-family: 'icon';
                        font-size: 16px;
                        opacity: 0.6;
                        position: absolute;
                        transform: translateY(-50%);
                        transition: .3s;
                    }
                    &::before {
                        top: -70%;
                        background: var(--text-gradient);
                        background-clip: text;
                        color: transparent;
                    }
                    &::after {
                        top: 50%;
                    }
                    &.telegram {
                        &::before, &::after {
                            content: '\e001';
                        }
                    }
                    &.viber {
                        &::before, &::after {
                            content: '\e003';
                        }
                    }
                    &.whatsapp {
                        &::before, &::after {
                            content: '\e004';
                        }
                    }
                }
            }
            .line {
                width: 100%;
                height: 1px;
                background: var(--border-2);
            }
            .text {
                display: flex;
                flex-direction: column;
                gap: 6px;
                p {
                    font-size: 14px;
                    font-weight: 100;
                    opacity: 0.5;
                }
            }
        }
    }
    .right {
        display: flex;
        flex-direction: column;
        gap: 37px;
        padding: 100px 0 43px 60px;
        padding-right: calc(((100vw - 1240px) /2) - 8px);
        background: rgba(6, 20, 53, .4);
        nav {
            display: grid;
            grid-template-columns: 263px 270px;
            gap: 20px;
            .ws-menu {
                display: flex;
                flex-direction: column;
                gap: 5px;
                justify-content: space-between;
                &:first-child {
                    .item a {
                        font-size: 16px;
                    }
                }
                .item a, .item p {
                    font-size: 14px;
                    line-height: 17px;
                    letter-spacing: 0.2px;
                    opacity: 0.8;
                    transition: .3s linear;
                    cursor: pointer;
                }
            }
        }
        button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 42px;
            position: relative;
            border: 1px solid var(--border-3);
            background: rgba(0, 0, 0, 0);
            overflow: hidden;
            &::before {
                content: '';
                position: absolute;
                z-index: 2;
                left: 50%;
                right: 50%;
                height: 150%;
                width: 100%;
                opacity: 0;
                transform: translateX(-50%) rotate(-45deg);
                background: var(--main-bg);
                transition: var(--transition-1);
            }
            span {
                position: absolute;
                z-index: 4;
                font-weight: 500;
                letter-spacing: 0.2px;
                transform: translateX(-50%);
                transition: var(--transition-1);
                white-space: nowrap;
                &:first-child {
                    left: 40%;
                    opacity: 0;
                    color: var(--text-2);
                }
                &:last-child {
                    left: 50%;
                    opacity: 1;
                }
            }
        }
        .text {
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            p {
                font-size: 14px;
                font-weight: 100;
                opacity: 0.5;
            }
            p:last-child {
                text-align: center;
                width: 100%;
            }
        }
        & > a {
            display: flex;
            margin-top: 3px;
            opacity: 0.7;
            font-size: 14px;
            font-weight: 300;
            line-height: 120%;
            letter-spacing: 0.2px;
            transition: .3s linear;
            span {
                font-size: 14px;
                font-weight: 700;
                line-height: 120%;
                letter-spacing: 0.2px;
            }
        }
    }
}
@media (hover: none) and (pointer: coarse) {
    body:has(.burger-menu.active) {
        padding-right: 0;
    }
}
@media screen and (max-width: 1340px) {
    .wrapper {
        width: calc(100% - 80px);
    }
    header {
        .top {
            .wrapper {
                padding-left: 70px;
                .logo {
                    width: 60px;
                }
                .contact {
                    gap: 10px;
                    margin-left: auto;
                    margin-right: 10px;
                    a,p {
                        span {
                            font-size: 12px;
                        }
                        &.phone {
                            width: 130px;
                            &::before {
                                content: '\e007';
                            }
                        }
                        &.email {
                            width: 110px;
                            &::before {
                                content: '\e008';
                            }
                        }
                        &.point {
                            width: 303px;
                            &::before {
                                content: '\e009';
                            }
                        }
                    }
                }
                .btns {
                    form {
                        max-width: 540px;
                    }
                    .request-btn {
                        width: 160px;
                        height: 30px;
                        span {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
        .bottom {
            padding: 10px 0;
            .wrapper {
                .ws-menu {
                    gap: 20px;
                    & > .item {
                        height: 20px;
                        &::after {
                            bottom: -20px;
                            height: 2px;
                            background: var(--bg-gradient-1);
                            transition: var(--transition-2);
                        }
                        a {
                            font-size: 14px;
                        }
                        .sub-menu {
                            position: absolute;
                            top: -20px;
                            transform: translateY(-50%);
                            transition: var(--transition-2);
                        }
                    }
                }
            }
        }
    }
    .burger-menu {
        .right {
            padding-right: 40px;
        }
    }
    footer {
        .left {
            gap: 30px;
            padding-right: 30px;
            padding: 60px 30px 20px 40px;
            .logo {
                max-width: 120px;
                opacity: 0.5;
            }
        }
        .right {
            gap: 20px;
            padding: 60px 40px 25px 30px;
            padding-right: 40px;
            nav {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .wrapper {
        width: calc(100% - 40px);
    }
    .burger-menu {
        .left {
            nav {
                padding-right: 50px;
                > .ws-menu {
                    .item {
                        a {
                            font-size: 24px;
                            &::after, &::before {
                                height: 12px;
                                width: 2px;
                                right: -18px;
                            }
                            &::before {
                                transform: rotate(-45deg) translate(0px, -2px);
                            }
                            &::after {
                                transform: rotate(45deg) translate(0px, 2px);
                            }
                            &:hover {
                                &::after, &::before {
                                height: 12px;
                                width: 2px;
                                right: -18px;
                            }
                                &::before {
                                    transform: rotate(-45deg) translate(0px, -2px);
                                }
                                &::after {
                                    transform: rotate(45deg) translate(0px, 2px);
                                }
                            }
                        }
                    }
                }
            }
        }
        .right {
            .box-wrapper {
                padding-left: 40px;
                padding-top: 10vh;
                height: calc(100% - 10vh);
                margin: auto 0;
                .top {
                    label {
                        font-weight: 400;
                        font-size: 20px;
                        &::before {
                            top: 5px;
                            transform: rotate(45deg) translateY(2px);
                        }
                        &::after {
                            top: 15px;
                            transform: rotate(-45deg) translateY(-2px);
                        }
                    }
                }
                .bottom {
                    nav {
                        a, p {
                            font-size: 18px;
                        }
                        .ws-menu {
                            > .item {
                                > a {
                                    &::after, &::before {
                                        height: 8px;
                                    }
                                    &::before {
                                        top: 5px;
                                        transform: rotate(-45deg) translateY(1px);
                                    }
                                    &::after {
                                        top: 11px;
                                        transform: rotate(45deg) translateY(-1px);
                                    }
                                    &:hover {
                                        &::before {
                                            top: 5px;
                                            transform: rotate(-45deg) translateY(1px);
                                        }
                                        &::after {
                                            top: 11px;
                                            transform: rotate(45deg) translateY(-1px);
                                        }
                                    }
                                }
                                > p {
                                    &::after, &::before {
                                        width: 9px;
                                        height: 2px;
                                        transform: unset;
                                        bottom: unset;
                                        top: 12px;
                                    }
                                    &::before {
                                        transform: rotate(45deg) translate(2px, -2px);
                                    }
                                    &::after {
                                        transform: rotate(-45deg) translate(-1px, -1px);
                                    }
                                    &:hover {
                                        &::after, &::before {
                                            width: 9px;
                                            height: 2px;
                                            transform: unset;
                                            bottom: unset;
                                            top: 12px;
                                        }
                                        &::before {
                                            transform: rotate(45deg) translate(2px, -2px);
                                        }
                                        &::after {
                                            transform: rotate(-45deg) translate(-1px, -1px);
                                        }
                                    }
                                }
                                &.open {
                                    > p {
                                        &::before {
                                            transform: rotate(-45deg) translate(2px, 2px);
                                        }
                                        &::after {
                                            transform: rotate(45deg) translate(-1px, 1px);
                                        }
                                    }
                                }
                                .sub-menu {
                                    padding-left: 10px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    
    .breadcrumbs {
        a {
            font-size: 14px;
        }
        p {
            font-size: 14px;
        }
    }
    footer {
        .left {
            padding: 60px 30px 20px 20px;
        }
        .right {
            padding: 60px 20px 40px 30px;
        }
    }
}
@media (hover: none) and (pointer: coarse) {
    .cursor-box {
        cursor: auto;
        .cursor {
            display: none;
        }
    }
}
@media screen and (max-width: 1130px) {
    header {
        .top {
            padding: 6px 0;
            background: var(--bg-1);
            .wrapper {
                padding-left: 0px;
                .logo {
                    display: none;
                }
                .logo-mini {
                    position: static;
                    transform: translateY(0);
                    opacity: 1;
                    height: 42px;
                    img {
                        transform: translateY(0);
                        opacity: 1;
                    }
                    img:last-child {
                        width: 100%;
                        max-width: 42px;
                        min-width: 42px;
                    }
                }
                .contact {
                    display: none;   
                }
                .btns {
                    form {
                        max-width: 333px;
                    }
                }
            }
        }
        .bottom {
            display: none;
        }
    }
    .burger-menu {
        .left {
            flex-direction: column;
            align-items: flex-end;
            img {
                bottom: unset;
                top: 0;
            }
            nav {
                margin-top: auto;
            }
            .info {
                display: flex;
                margin-top: auto;
            }
        }
    }
    .consultation-block {
        .form {
            padding: 40px 20px;
            h2 {
                font-size: 28px;
                &::before {
                    height: 40px;
                }
            }
            & > p {
                margin-bottom: 30px;
                font-size: 18px;
            }
            form {
                gap: 15px 20px;
            }
        }
        .map {
            margin-top: -34px;
        }
    }
    footer {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        .left {
            gap: 20px;
            padding: 50px 40px 50px 20px;
            flex-direction: column;
            .logo {
                max-width: 170px;
                opacity: 0.5;
            }
            .info {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
        }
        .right {
            width: 100%;
            height: 100%;
            gap: 20px;
            justify-content: space-between;
            padding: 50px 20px 50px 40px;
            nav {
                margin-bottom: auto;
                .ws-menu {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    justify-content: space-between;
                    &:first-child {
                        .item a {
                            font-size: 16px;
                        }
                    }
                    .item a {
                        font-size: 14px;
                        line-height: 17px;
                    }
                }
            }
            button {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 42px;
                position: relative;
                border: 1px solid var(--border-3);
                background: rgba(0, 0, 0, 0);
                overflow: hidden;
                &::before {
                    content: '';
                    position: absolute;
                    z-index: 2;
                    left: 50%;
                    right: 50%;
                    height: 150%;
                    width: 100%;
                    opacity: 0;
                    transform: translateX(-50%) rotate(-45deg);
                    background: var(--main-bg);
                    transition: var(--transition-1);
                }
                span {
                    position: absolute;
                    z-index: 4;
                    font-weight: 500;
                    letter-spacing: 0.2px;
                    transform: translateX(-50%);
                    transition: var(--transition-1);
                    white-space: nowrap;
                    &:first-child {
                        left: 40%;
                        opacity: 0;
                        color: var(--text-2);
                    }
                    &:last-child {
                        left: 50%;
                        opacity: 1;
                    }
                }
            }
            & > a {
                display: flex;
                margin-top: 3px;
                opacity: 0.7;
                font-size: 14px;
                font-weight: 300;
                line-height: 120%;
                letter-spacing: 0.2px;
                span {
                    font-size: 14px;
                    font-weight: 700;
                    line-height: 120%;
                    letter-spacing: 0.2px;
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        width: calc(100% - 20px);
    }
    header {
        .top {
            padding: 10px 0;
            background: var(--bg-1);
            .wrapper {
                .btns {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    margin-left: auto;
                    .search-btn {
                        order: -3;
                        background: var(--bg-1);
                        border-color: var(--main-bg);
                        &::before {
                            font-size: 20px;
                        }
                    }
                    .btn-blue {
                        display: none;
                    }
                    form {
                        right: 48px;
                        max-width: 280px;
                        label {
                            width: 100%;
                        }
                        input,
                        button {
                            height: 100%;
                            width: 100%;
                        }
                        input {
                            padding: 0 16px;
                            &::placeholder {
                                color: inherit;
                            }
                        }
                        button {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border-left: none;
                            transition: color .3s linear, background-color .3s linear;
                            &::before {
                                content: '\e002';
                                font-family: 'icon';
                                font-size: 18px;
                                color: var(--text-2);
                            }
                            &[type="reset"] {
                                border-left: 1px solid var(--border-1);
                                &::before {
                                    content: '\e010';
                                }
                            }
                        }
                        &.open {
                            transform: translateX(0);
                            opacity: 1;
                            pointer-events: all;
                            grid-template-columns: 1fr 42px 42px;
                        }
                    }
                    .request-btn {
                        width: 180px;
                        height: 42px;
                        order: -5;
                        span {
                            font-size: 16px;
                            letter-spacing: 0.2px;
                        }
                    }
                    a {
                        display: none;
                    }
                    .burger {
                        width: 42px;
                        height: 42px;
                        border: 1px solid var(--main-bg);
                        background: var(--bg-1);
                        .icon {
                            width: 22px;
                            height: 21px;
                        }
                    }
                }
            }
        }
    }
    .burger-menu {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        align-items: start;
        opacity: 1;
        transform: translateX(100%);
        transition: transform .5s ease-in-out;
        background: rgba(1, 7, 23, 0.8);
        backdrop-filter: blur(12px);
        top: 63px;
        padding-top: 20px;
        overflow-y: auto;
        z-index: 100;
        &.close-menu {
            transform: translateX(100%);
            animation: unset;
    
        }
        .left {
            display: contents;
            animation: unset;
            &::before {
                display: none;
            }
            &::after {
                display: none;
            }
            img {
                display: none;
            }
            nav {
                grid-row: 1/2;
                padding: 0 10px;
                transform: none;
                opacity: 1;
                margin-bottom: 20px;
                padding-top: 20px;
                transition-delay: unset;
                margin-top: unset;
                transition-duration: .5s;
                >.ws-menu {
                    width: 100%;
                    gap: 0;
                    .item {
                        width: 100%;
                        display: flex;
                        justify-content: flex-end;
                        padding-right: 22px;
                        &:not(:nth-child(1), :nth-child(2)) {
                            margin-bottom: 20px;
                        }
                        &:first-child {
                            margin-bottom: 10px;
                            a {
                                color: var(--main-bg);
                            }
                        }
                        &:nth-child(2) {
                            margin-bottom: 10px;
                        }
                        &:nth-child(3) {
                            margin-bottom: 10px;
                            padding-bottom: 10px;
                            border-bottom: 1px solid #777B8633;
                        }
                        a {
                            font-size: 24px;
                            opacity: 0.7;
                            color: var(--main-bg);
                            &::after, &::before {
                                background: var(--main-bg);
                            }
                        }
                    }
                    .mobile p {
                        display: flex;
                        align-items: center;
                        color: rgba(0, 0, 0, 0);
                        background-image: linear-gradient(69.96deg, #917234 0.32%, #E3CA96 49.92%, #CDB27C 100%);
                        background-clip: text;
                        text-transform: uppercase;
                        position: relative;
                        &::after, &::before {
                            position: absolute;
                            content: '';
                            right: -18px;
                            height: 8px;
                            width: 2px;
                            background: linear-gradient(69.96deg, #917234 0.32%, #E3CA96 49.92%, #CDB27C 100%);
                            transition: 0.2s linear;
                        }
                        &::before {
                            transform: rotate(-45deg) translateY(-3px);
                        }
                        &::after {
                            transform: rotate(45deg) translateY(3px);
                        }
                    }
                }
            }
            .info {
                grid-row: 2/3;
                margin: 0 auto 50px;
                transform: unset;
                padding-right: 0;
                transition: .5s linear;
                .contact {
                    align-items: center;
                    p {
                        span {
                            font-size: 14px;
                        }
                    }
                }
                .btns {
                    flex-wrap: nowrap;
                }
            }
        }
        &:has(.box-wrapper.open) {
            .left nav {
                opacity: 0;
                transition-delay: unset;
            }
            .info {
                opacity: 0;
            }
        }
        .right {
            display: contents;
            animation: unset;
            background: none;
            &::before{
                display: none;
            }
            .box-wrapper {
                position: absolute;
                inset: 0;
                height: 100% !important;
                grid-area: 1/1/3/2;
                padding-inline: 10px;
                padding-bottom: 20px;
                margin-top: -20px;
                transform: translateX(100%);
                transition: transform .5s linear;
                transition-delay: unset;
                padding-top: 20px;
                &.open {
                    transform: translateX(0);
                }
                .back {
                    display: flex;
                    align-items: center;
                    position: relative;
                    gap: 11px;
                    font-weight: 300;
                    font-size: 16px;
                    color: var(--main-bg);
                    opacity: 0.7;
                    background: none;
                    margin-bottom: 20px;
                    &::before {
                        content: '\e019';
                        font-family: 'icon';
                        font-size: 13px;
                        transform: rotate(90deg);
                    }
                    &::after {
                        content: '';
                        position: absolute;
                        height: 14px;
                        width: 2px;
                        background: rgba(246, 247, 249, 0.7);
                        top: 50%;
                        bottom: 50px;
                        left: 14px;
                        transform: translateY(-50%);
                    }
                }
                .top,
                .bottom {
                    opacity: 1;
                    transform: none;
                }
                >span{
                    font-size: 14px;
                    color: rgba(0, 0, 0, 0);
                    background-image: linear-gradient(69.96deg, #917234 0.32%, #E3CA96 49.92%, #CDB27C 100%);
                    background-clip: text;
                }
                .bottom {
                    position: relative;
                    display: grid;
                    margin-bottom: 40px;
                    nav {
                        position: relative;
                        gap: 16px;
                        grid-area: 1 / 1 / 2 / 2;
                        .ws-menu {
                            display: contents;
                            .item {
                                justify-content: stretch;
                                >a, >p {
                                    width: 100%;
                                    justify-content: space-between;
                                    margin-right: 0;
                                    padding-right: 25px;
                                    &::before, &::after {
                                        right: 0;
                                    }
                                }
                                > a {
                                    &::before, &::after {
                                        height: 9px;
                                    }
                                    &::after {
                                        top: 11px;
                                        transform: rotate(45deg) translate(-2px, 2px);
                                    }
                                    &::before {
                                        top: 5px;
                                        transform: rotate(-45deg) translate(-2px, -2px);
                                    }
                                    &:hover {
                                        &::before, &::after {
                                            height: 9px;
                                        }
                                        &::after {
                                            top: 11px;
                                            transform: rotate(45deg) translate(-2px, 2px);
                                        }
                                        &::before {
                                            top: 5px;
                                            transform: rotate(-45deg) translate(-2px, -2px);
                                        }
                                    }
                                }
                                > p {
                                    &::before {
                                        transform: rotate(45deg) translate(-1px, -1px);
                                        right: 5px;
                                    }
                                    &::after {
                                        transform: rotate(-45deg) translate(1px, -1px);
                                    }
                                    &:hover {
                                        &::before {
                                            transform: rotate(45deg) translate(-1px, -1px);
                                            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);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                &:has(input[value="legal"]:checked) .legal, &:has(input[value="personnel"]:checked) .personnel {
                    animation: check-menu 1s cubic-bezier(0, 0.5, 0.5, 1) forwards;
                }
            }
        }
        &.active {
            transform: translateX(0);
            transition: transform .5s ease-in-out;
            animation: unset;
            opacity: 1;
            z-index: 100;
            .left {
                animation: unset;
                transform: translateY(0);
                nav {
                    transition-delay: unset;
                }
                .info {
                    transition-delay: unset;
                }
            }
            .right {
                animation: unset;
                .box-wrapper {
                    transform: translateX(100%);
                    transition-delay: unset;
                    &.open {
                        transform: translateX(0);
                    }
                }
            }
        }
    }
    body:has(.burger-menu.active) {
        & header {
            & .top {
                & .wrapper {
                    & .btns {
                        & .burger {
                            background: var(--main-bg);
                            & .icon {
                                &::before, &::after {
                                    background-color: var(--bg-1);
                                }
                                &::before {
                                    transform: scaleX(1) rotateZ(-45deg) translate(-7px, 7px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    header,
    .burger-menu {
        .mobile {
            display: flex !important;
        }
    }
    .breadcrumbs {
        a {
            font-size: 12px;
            white-space: nowrap;
        }
        span {
            width: 4px;
            height: 4px;
        }
        p {
            white-space: nowrap;
            font-size: 12px;
        }
    }
    .cursor-box .cursor {
        display: none;
    }
    .consultation-block {
        .form {
            padding: 30px 20px;
            position: relative;
            z-index: 3;
            h2 {
                font-size: 24px;
                max-width: 400px;
                &::before {
                    height: 60px;
                }
            }
            & > p {
                margin-bottom: 30px;
                font-size: 16px;
            }
            form {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
        }
        .map {
            margin-top: -15px;
            height: 686px;
            
        }
    }
    .window-modal {
        .window-body {
            width: calc(100% - 20px);
            padding: 25px 20px;
            span.close {
                width: 28px;
                height: 28px;
                top: 12px;
                right: 12px;
                &::before {
                    font-size: 12px;
                }
            }
            h2 {
                padding: 4px 6px;
                font-size: 18px;
                margin-bottom: 10px;
                &::before {
                    width: 2px;
                }
            }
            label {
                gap: 2px;
                margin-bottom: 10px;
                span {
                    font-size: 12px;
                }
                input {
                    height: 36px;
                }
                textarea {
                    height: 80px;
                }
                &.checbox {
                    gap: 6px;
                    margin-bottom: 20px;
                    &::before {
                        width: 16px;
                        min-width: 16px;
                        height: 16px;
                    }
                    input {
                        display: none;
                    }
                    span {
                        font-size: 12px;
                        line-height: 14px;
                        a {
                            font-size: 12px;
                            line-height: 14px;
                        }
                    }
                    
                }
            }
            button {
                &:before {
                    border-top: 222px solid var(--main-bg);
                    border-left: 222px solid var(--main-bg);
                }
                &::after {
                    border-bottom: 222px solid var(--main-bg);
                    border-right: 222px solid var(--main-bg);
                }
            }
        }
    }
    footer {
        grid-template-columns: 100%;
        .left {
            display: grid;
            grid-template-columns: .7fr 1fr;
            padding: 50px 10px 25px;
            border-right: none;
            border-bottom: 1px solid #F6F7F94D;
            gap: 30px;
            .info {
                & > a, & > p {
                    display: grid;
                    grid-template-columns: 24px 1fr;
                    font-size: 16px;
                    &::before {
                        font-size: 19px;
                        width: 24px;
                        height: 24px;
                    }
                }
                .social {
                    display: grid;
                    grid-template-columns: repeat(3, 40px);
                    grid-template-rows: 40px;
                    a {
                        &::before, &::after {
                            font-size: 14px;
                        }
                    }
                }
                .line {
                    display: none;
                }
                .text {
                    display: none;
                }
            }
        }
        .right {
            padding: 30px 10px 50px;
            nav {
                grid-template-columns: 0.7fr 1fr;
                .ws-menu {
                    .item {
                        a {
                            opacity: 1;
                        }
                    }
                }
            }
            button {
                margin-bottom: 10px;
                span {
                    font-weight: 400;
                }
            }
            .text {
                display: flex;
                margin-bottom: 10px;
            }
            >a {
                justify-content: center;
            }
        }
    }
}

@media screen and (max-width: 500px)  {
    footer {
        .left {
            display: flex;
            flex-direction: column;
            padding: 50px 10px 20px;
            gap: 12px;
            .logo {
                margin-bottom: 8px;
            }
        }
        .right {
            align-items: center;
            nav {
                grid-template-columns: 100%;
                .ws-menu {
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    .item {
                        a {
                            text-align: center;
                        }
                    }
                }
            }
            button {
                max-width: 355px;
            }
        }
    }
}
@media (hover:hover) {
    header {
        .top .wrapper {
            .contact {
                a:hover span, p:hover span {
                    &:first-child {
                        left: 24px;
                        opacity: 1;
                    }
                    &:last-child {
                        left: 64px;
                        opacity: 0;
                    }
                }
            }
            .btns {
                a:hover {
                    background: var(--bg-1);
                    border: 1px solid var(--main-bg);
                    &::before {
                        opacity: 1;
                    }
                    &::after {
                        opacity: 0;
                    }
                }
                .burger:hover {
                    border: 1px solid var(--main-bg);
                    background: var(--bg-1);
                    .icon {
                        &::before,
                        &::after {
                            content: '';
                            transform: scaleX(0.667);
                        }
                        > span {
                            transform: scaleX(1);
                        }
                    }
                }
            }
        }
        .bottom .wrapper {
            .ws-menu .item:hover {
                & > a {
                    transform: translateY(25px);
                } 
                &::after {
                    bottom: 0;
                }
                .sub-menu {
                    top: 50%;
                }
            }
        }
    }
    footer {
        .left {
            .info {
                & > a:hover, & > p:hover {
                    color: var(--text-1);
                    opacity: 1;
                }
                .social {
                    a:hover {
                        &::before, &::after {
                            color: var(--text-4);
                        }
                    }
                }
            }
        }
        .right {
            >a:hover {
                opacity: 1;
            }
            nav .ws-menu .item a:hover {
                opacity: 1;
            }
            button:hover {
                &::before {
                    opacity: 1;
                    transform: translateX(-50%) rotate(-45deg) scale(10);
                }
                span {
                    &:first-child {
                        left: 50%;
                        opacity: 1;
                    }
                    &:last-child {
                        left: 75%;
                        opacity: 0;
                    }
                }
            }
        }
    }
}