:root {
    --green: #30d158;
    --yellow: #ffcc00;
    --orange: #ff9500;
    --red: #f44235;

    --dark: #121e3f;
    --corp: #121e3f;
    --accent: #fdfb95;

    --grey: #5e6c94;
    --grey-light: #b2b3c4;
    --bg: #f0f4fd;
    --border: 1px solid #dde5e9;

    --status-blue-light: #dff3fc;
    --status-blue: #2b41f0;

    --status-green-light: #ecfdf3;
    --status-green: #30d158;

    --status-grey-light: #6d8297;
    --status-grey: #fff;

    --status-red-light: #fee8e7;
    --status-red: #f44235;

    --status-yellow-light: #fefaeb;
    --status-yellow: #f6ba53;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    position: relative;
    font-family: 'SF';
    overflow-x: hidden;
    color: var(--dark);
    scroll-behavior: smooth;
}

.pc {
    display: block !important;
}
.mobile {
    display: none !important;
}

* {
    font-family: 'SF', sans-serif;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    font-weight: normal;
    &::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    &::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    &::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3);
    }

    &::-webkit-scrollbar-thumb:hover {
        background: var(--corp);
    }
}

.margin-line {
    height: 1px;
    width: 100%;
    background-color: var(--grey-light);
    margin: 24px 0;
}

.margin {
    height: 86px;
}

.margin-small {
    height: 24px;
}

ul {
    padding-left: 16px;
    li {
        color: #050a41;
        margin: 4px 0;
        font-weight: 400;
    }
}

h1 {
    font-size: 100px;
    line-height: 1;
    font-weight: 600;
    font-family: 'Beni';
}

h2,
.h2 {
    display: block;
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    font-family: 'Beni';
}

h3,
.h3 {
    display: block;
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
    font-family: 'Beni';
}

h4,
.h4 {
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
    font-size: 48px;
    font-family: 'Beni';
}

h5,
.h5 {
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Beni';
    display: block;
    font-size: 40px;
}

h6,
.h6 {
    font-family: 'Beni';
    display: block;
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 500;
}

b {
    font-weight: 600;
}

p {
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
}

.big {
    font-size: 20px;
    line-height: 1.3;
}

.note {
    color: var(--grey) !important;
    font-size: 14px !important;
}

a {
    color: #050a41;
}

.text-circle {
    white-space: nowrap;
    line-height: 1;
    border-radius: 5px;
    padding: 4px 8px;
    font-weight: 600;
    font-size: 14px;
    background-color: var(--bg-2);
    color: var(--dark);
    border: 1px solid var(--bg-2);
    &.big {
        font-size: 15px !important;
        padding: 5px 12px !important;
    }
    &.blue {
        background-color: var(--status-blue-light);
        color: var(--status-blue);
        border-color: var(--status-blue);
    }
    &.green {
        background-color: var(--status-green-light) !important;
        border-color: var(--status-green) !important;
        color: var(--green) !important;
    }
    &.red {
        background-color: var(--status-red-light);
        color: var(--status-red);
        border-color: var(--status-red);
    }
    &.yellow {
        background-color: var(--status-yellow-light);
        color: var(--status-yellow);
        border-color: var(--status-yellow);
    }
    &.grey {
        background-color: #fff;
        color: var(--grey);
        border-color: var(--grey);
    }
    &.corp {
        border-color: var(--corp);
        background-color: var(--corp);
        color: #fff;
    }
}

.mobile-menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 69px;
    background-color: #fff;
    padding: 12px 20px 20px;
    z-index: 15;
    display: none;
    &.active {
        display: block !important;
    }
    .close-menu {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-align: center;
        margin-top: 24px;
        span {
            position: relative;
            color: var(--corp);
            font-size: 14px;
            line-height: 1;
            padding-bottom: 2px;
            cursor: pointer;
            display: inline-block;
            border-bottom: 1px solid var(--corp);
            margin-top: 0;
        }
    }

    button {
        width: 100%;
    }
    span {
        display: block;
        margin: 12px 0 0;
    }
    p {
        line-height: 1.6;
    }
    a {
        display: block;
        font-size: 22px;
        line-height: 1.5;
        font-weight: 400;
    }
}

header.white {
    a {
        color: #fff;
    }
    .left {
        .logo-file {
            background-image: url('/public/images/logo-white.svg');
        }
    }
}

header.black {
    button.empty.white {
        background-color: var(--corp) !important;
    }
}

.card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 28px;
    border-radius: 12px;
    background-color: var(--bg);
    .h2 {
        margin-bottom: 12px;
    }
}

.buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 6px;
    gap: 6px;
}

.button-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 6px;
    gap: 6px;
    button {
        padding: 9px 15px;
        font-size: 16px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        &:hover {
            color: #fff;
            background-color: #000;
        }
    }
}

button {
    overflow: hidden;
    font-size: 16px;
    padding: 12px 24px 11px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 6px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    position: relative;
    gap: 10px;
    grid-gap: 10px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    white-space: nowrap;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    &:disabled {
        background-color: var(--grey) !important;
        &:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            -webkit-animation-duration: 0.9s;
            animation-duration: 0.9s;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-name: loader-animate;
            animation-name: loader-animate;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            background: -webkit-gradient(
                linear,
                left top, right top,
                from(rgba(255, 255, 255, 0)),
                color-stop(30%, rgba(255, 255, 255, 0.6)),
                color-stop(81%, rgba(255, 255, 255, 0))
            );
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.6) 30%,
                rgba(255, 255, 255, 0) 81%
            );
        }
    }
    img {
        height: 18px;
        width: 18px;
        -o-object-fit: contain;
        object-fit: contain;
    }
    &.empty {
        border: 2px solid var(--corp);
        background: none;
        color: var(--corp);
        &.white {
            color: #fff !important;
            background: none !important;
            /* border-color: #fff!important; */
        }
        &:hover {
            border-color: var(--dark) !important;
            color: var(--dark) !important;
            background: none !important;
            background-color: none !important;
        }
    }
    &.small {
        padding: 8px !important;
    }
    &.white {
        background-color: #fff;
        color: #050a41 !important;
    }
    &.black {
        background-color: var(--corp);
        color: #fff !important;
        img {
            -webkit-filter: invert(1);
            filter: invert(1);
        }
    }
    &.circle {
        padding: 8px 14px;
        border-radius: 6px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #050a41;
        background-color: #fff;
        font-weight: 500;
        img {
            margin-right: 6px;
            height: 18px;
        }
    }
    &:hover {
        opacity: 0.75;
        -webkit-transform: scale(1.015);
        transform: scale(1.015);
    }
}

@-webkit-keyframes loader-animate {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes loader-animate {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.width {
    max-width: 1280px;
    width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    &.small {
        max-width: 940px;
        width: 940px;
    }
}

.width-small {
    max-width: 1000px;
    width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.width-form {
    width: 480px;
    max-width: 480px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

header {
    position: absolute;
    width: 100%;
    z-index: 10;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #fff;
        padding: 20px 0;
    }
    .left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        .list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            grid-gap: 24px;
            gap: 24px;
        }
        img {
            margin-right: 30px;
            height: 42px;
        }
    }
    .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        grid-gap: 12px;
        gap: 12px;
    }
    a {
        font-weight: 300;
        color: #fff;
    }
}

.modal-bg {
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    &.active {
        display: block;
    }
}

.mobile-header {
    position: fixed;
    width: 100%;
    height: 70px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 15;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    .width {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            img {
                height: 28px;
            }
        }
        .right {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            display: flex;
            align-items: center;
            img {
                padding: 12px;
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
        }
    }
}

.heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
    &.left {
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    dd {
        margin-top: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        grid-gap: 12px;
        gap: 12px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        white-space: nowrap;
        span {
            padding: 6px 10px;
            border: 2px solid #000;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
        }
    }
    &.left {
        text-align: left;
    }
    h2,
    .h2 {
        max-width: 30ch;
    }
    p {
        margin-top: 12px;
        color: var(--grey);
        max-width: 60ch;
    }
    i {
        font-style: normal;
        background: -webkit-linear-gradient(
            45deg,
            #7549f2,
            #df58d2,
            #ed787c,
            #ed787c
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
    margin-top: 12px;
    .input-wrapper {
        border-radius: 8px;
        height: 43px;
        margin-bottom: 12px;
        overflow: hidden;
        position: relative;
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff1a), to(#ffffff0f));
        background: linear-gradient(180deg, #ffffff1a, #ffffff0f);
        img {
            left: 14px;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            height: 16px;
            width: 16px;
            -o-object-fit: contain;
            object-fit: contain;
            z-index: 1;
        }
        input {
            position: absolute;
            background: transparent;
            color: #fff;
            border-radius: 8px;
            border: 1px solid transparent;
            &.red {
                background-color: #ca5f5838 !important;
                border: 1px solid var(--red) !important;
            }
            &:focus {
                border: 1px solid rgba(0, 125, 250, 0.6);
                -webkit-box-shadow: inset 0 0 0 4px rgba(0, 125, 250, 0.6);
                box-shadow: inset 0 0 0 4px rgba(0, 125, 250, 0.6);
                outline: none;
            }
        }
    }
    label {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 12px;
        gap: 6px;
        grid-gap: 6px;
        margin-top: 8px;
        span {
            font-size: 13px !important;
            font-weight: 100;
            color: #fff;
            opacity: 0.6;
        }
        input {
            margin-top: 0 !important;
        }
    }
    input[type='checkbox'] {
        border-radius: 100px;
        height: 16px;
        margin-bottom: 0;
        margin-right: 0;
        width: 16px;
        max-width: 16px;
        min-width: 16px;
    }
    input,
    select {
        border: none;
        bottom: 0;
        font-size: 15px;
        font-weight: 300;
        height: 100%;
        left: 0;
        padding-left: 40px;
        right: 0;
        top: 0;
        width: 100%;
        &::-webkit-input-placeholder {
            color: #fff;
        }
        &::-moz-placeholder {
            color: #fff;
        }
        &:-ms-input-placeholder {
            color: #fff;
        }
        &::-ms-input-placeholder {
            color: #fff;
        }
        &::placeholder {
            color: #fff;
        }
        &.red {
            border-color: red;
        }
        &:focus {
            border: 1px solid rgba(0, 125, 250, 0.6);
            -webkit-box-shadow: inset 0 0 0 4px rgba(0, 125, 250, 0.6);
            box-shadow: inset 0 0 0 4px rgba(0, 125, 250, 0.6);
            outline: none;
        }
    }
    label {
        font-size: 14px;
        color: var(--grey);
        margin-bottom: 8px;
    }
    button {
        margin-top: 15px;
        width: 100%;
    }
}

.inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.close {
    cursor: pointer;
    background-color: var(--bg);
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 8px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border: 2px solid transparent;
    img {
        width: 16px;
        height: 16px;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    &:hover {
        background-color: var(--bg);
    }
}

footer {
    padding-top: 50px;
    color: #fff;
    background: #181818;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    .logo {
        height: 80px;
    }
    .preview {
        width: 100%;
        -o-object-position: center center;
        object-position: center center;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: -120px;
        position: relative;
        z-index: 1;
    }
    a {
        color: #fff;
    }
    nav {
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        grid-gap: 24px;
        gap: 24px;
        .item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            b {
                font-size: 18px;
                display: block;
                margin-bottom: 24px;
            }
            a {
                opacity: 0.7;
                margin-bottom: 24px;
                &:hover {
                    opacity: 1;
                }
            }
            &:nth-child(1) {
                p {
                    margin-top: 18px;
                    max-width: 25ch;
                    font-size: 13px;
                }
                span {
                    display: block;
                    font-size: 13px;
                    margin-top: 150px;
                }
            }
        }
    }
}

.screen-loading {
    position: fixed;
    z-index: 12;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    &.active {
        display: block !important;
    }
    img {
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width: 1320px) {
    html {
        body {
            .width {
                width: 100%;
                max-width: 100%;
            }
            .margin {
                height: 60px;
            }
        }
    }
}

@media only screen and (max-width: 1040px) {
    html {
        body {
            .width-small,
            .width.small {
                width: 100%;
                max-width: 100%;
            }
            h1 {
                font-size: 80px;
            }

            h2,
            .h2 {
                font-size: 60px;
            }

            h3,
            .h3 {
                font-size: 48px;
            }

            h4,
            .h4 {
                font-size: 40px;
            }

            h5,
            .h5 {
                font-size: 30px;
            }

            h6,
            .h6 {
                font-size: 24px;
            }
        }
    }
}

@media only screen and (max-width: 800px) {
    html body {
        p {
            font-size: 13px !important;
        }
        .inner {
            padding: 40px 0 !important;
        }
        font-size: 14px;

        h1 {
            font-size: 60px;
        }

        h2,
        .h2 {
            font-size: 48px;
        }

        h3,
        .h3 {
            font-size: 40px;
        }

        h4,
        .h4 {
            font-size: 30px;
        }

        h5,
        .h5 {
            font-size: 28px;
        }

        h6,
        .h6 {
            font-size: 28px;
        }
        .text-circle {
            font-size: 11px;
            text-transform: uppercase;
        }
        .heading {
            text-align: left;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            margin-bottom: 18px;
            dd {
                grid-gap: 6px;
                gap: 6px;
                -webkit-box-pack: start;
                -ms-flex-pack: start;
                justify-content: flex-start;
                -webkit-box-align: start;
                -ms-flex-align: start;
                align-items: flex-start;
                span {
                    font-size: 13px;
                }
            }
        }
        button {
            &.circle {
                padding: 4px 8px;
                img {
                    margin-right: 3px;
                    height: 12px;
                }
            }
        }
        .margin {
            height: 36px;
        }
        .margin-line {
            margin: 16px 0;
        }
        .numbers {
            margin-top: 24px;
        }
        button {
            font-size: 13px;
        }
        .pc {
            display: none !important;
        }
        .mobile {
            display: block !important;
        }
        .width,
        .width-small,
        .width-form {
            width: 100%;
            min-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }

        p {
            font-size: 14px;
            line-height: 1.2;
        }

        .big {
            font-size: 18px;
        }

        .note {
            font-size: 12px !important;
        }
        footer {
        }
    }
}

.form-classic {
    padding: 24px;
    display: inline-block;
    background-color: rgba(17, 11, 51, 0.3);
    backdrop-filter: blur(12px);
    .title {
        font-size: 15px;
    }
}
