@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    src: url("./fonts/Montserrat-Bold.ttf") format("truetype");
}

:root {
    --main-color: #1957FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
}

body {
    background: url("./img/bg.jpg") no-repeat center top;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 97vh;
    background-color: rgba(255, 255, 255, 0.4) !important;
    background: url("./img/close1.svg") no-repeat center center,
                url("./img/close2.svg") no-repeat center center;
    background-size: contain;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 772px;
    background: #151518 url("./img/banner-bg.png") no-repeat center bottom;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    padding: 36px 48px 64px;
    text-align: center;
    color: #fff;
}

.title {
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    margin: 50px 0 30px;
}

.description {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 50px;
}

.color-text {
    color: var(--main-color);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 24px;
    background: var(--main-color);
    width: 218px;
    height: 56px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    flex: none;
    transition: box-shadow 0.2s;
}

.btn:hover {
    box-shadow: 0 0 22px var(--main-color);
}

.btn img {margin-right: 12px}