@font-face {
    font-family: "Montserrat";
    src: url("./font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./font/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

body {
    background: #0D010C;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

a,p,span {
    font-size: 1em;
}

strong {
    font-weight: 700;
}

div {
    box-sizing: border-box;
}

p {
    margin: 0;
}

.wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

.top {
    position: relative;
    z-index: 10;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 0 5%;
}

h1 {
    font-size: 3em;
    font-weight: 900;
    letter-spacing: 1.47px;
    margin: 0 0 1rem;
}

.bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.btn {
    border-radius: 4px;
    background: #FFC600;
    text-decoration: none;
    display: block;
    width: 150px;
    text-align: center;
    padding: 0.6rem 0;
    color: #111928;
    transition: .3s;
}

.btn:hover {
    background: #e6b60a;
}

.btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link {
    color: #fff;
    text-decoration: none;
}

.link:hover {
    color: #e6b60a;
}

.steps {
    background: rgba(255, 0, 0, 0.24);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1372px;
    margin: 0 auto 3rem;
}

.step {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 440px;
}

.step p {
    line-height: 1.5em;
}

.step:last-child {
    border-right: none;
    padding-right: 0;
}

.number {
    color: #ffc600;
    font-weight: bold;
    font-size: 3rem;
}

.step-title {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.6em;
    font-weight: 700;
    margin: 1rem 0;
}

.top-content {
    position: relative;
    margin-bottom: -3%;
}

.top-content .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 5%;
}

.top-content .inner .btn {
    margin-top: 3rem;
    width: 300px;
    font-size: 1.3em;
    padding: .8em 0;
}

.top-content img {
    max-width: 54%;
    height: auto;
}

.lang-menu-wrap {
    height: 30px;
    overflow: hidden;
}

.lang-menu-wrap.show {
    overflow: visible;
}

.lang-menu {
    display: flex;
    flex-direction: column;
}

.lang {
    cursor: pointer;
    padding: 5px 0;
    color: #fff;
    text-decoration: none;
}

.lang.active {
    order: -1;
}

.lang:hover {
    color: #FFC600;
}

@media screen and (max-width: 992px) {

    .steps {
        flex-direction: column;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .top {
        padding: 1rem 5%;
    }

    .logo img {
        display: none;
    }

    .logo {
        background-image: url(../imgs/logo-small.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        width: 31px;
        height: 41px;
    }

    .top-content .inner {
        height: auto;
        top: unset;
        left: unset;
        position: relative;
        margin-top: -10rem;
    }

    .top-content img {
        max-width: unset;
        width: 135%;
        margin-left: -20%;
        margin-top: 2rem;
    }

    h1 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .top-content .inner p {
        font-size: 1rem;
    }

    .top-content .inner .btn {
        margin-top: 2rem;
        margin-bottom: 2rem;
        width: 230px;
        font-size: 1rem;
    }

    .top .btn {
        padding: 0.5rem 10px;
        width: auto;
    }

}