@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url(../fonts/JetBrainsMono-b.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-r.woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-m.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-sb.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url(../fonts/Oswald-b.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url(../fonts/icon.woff2);
    font-style: normal;
    font-display: swap;
}
:root {
    --main-bg: #1d1d1b;
    --header-bg: #0a0a0a73;
    --bg-1: #fff;
    --bg-2: #ee7203;
    --text-1: #fff;
    --text-2: #ee7203;
    --text-3: #1d1d1b;
    --border-1: #f5f3ee;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'JetBrains Mono', sans-serif;
    color: var(--text-1);
    font-size: 18px;
    letter-spacing: 0.2px;
    font-weight: 400;
}
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);
}
a {
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
    object-fit: cover;
}
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; 
}
*::-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: 1760px;
    margin: 0 auto;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    padding: 6px 5px;
    background: var(--bg-1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.28px;
    color: var(--text-3);
    &::before {
        content: '\e001';
        font-family: 'icon';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--bg-2);
        font-size: 14px;
        color: var(--text-1);
    }
}
header {
    background: var(--header-bg);
    padding: 11px 0;
    margin-bottom: 4px;
    .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        a.logo {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 151px;
        }
        nav {
            .ws-menu {
                display: flex;
                align-items: center;
                gap: 37px;
                .item {
                    a {
                        font-family: 'Inter';
                        font-size: 14px;
                        font-weight: 400;
                        letter-spacing: 0%;
                    }
                }
            }
        }
        & > a:last-child {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 25px;
            border: 1px solid var(--border-1);
            border-radius: 10px;
            opacity: .53;
            font-size: 13px;
            line-height: 17px;
            letter-spacing: 0%;
        }
    }
}
@media screen and (max-width: 1800px) {
    .wrapper {
        width: calc(100% - 80px);
    }
}