* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background-color: #232322;
    overflow-y: auto;
}

a {
    text-decoration: none;
    color: #eb7100;
}

a:not(.not_border):hover {
    border-bottom: 1px dashed #eb7100;
}

.header {
    width: 100vw;
    padding: 20px;
}

.logo {
    display: inline-block;
    width: 400px;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/LogoMolodtsovGames.svg);
}

.main_section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
}

.main_header {
    display: flex;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.main_footer {
    position: relative;
    display: flex;
    max-width: 1280px;
    padding: 0 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    margin: 0 auto;
}

.row-title {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}

.row-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main_header .logo {
    width: 300px;
    height: 80px;
    background-size: contain;
}

.game_section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: 105% 105%;
}

.first {
    height: calc(100vh - 81px);
}

.game_content {
    position: relative;
    max-width: 1280px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}

.vm-game {
    background-image: url(../images/dark_back_blur.jpg);
}

.sm-game {
    position: relative;
    background-image: url(../images/main_background_4.png);
}

.sm-game::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .55);
}

.left_content,
.right_content {
    width: 50%;
}

.game_title {
    padding: 30px 10px 0;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

.game_title.vm span {
    color: #eb7100;
}

.game_description {
    padding: 10px 10px 0;
    color: #fff;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.5;
}

.game_logo {
    margin: 0 10px;
    width: 150px;
    height: 150px;
}

.game_logo img {
    width: 100%;
    border-radius: 22.5%;
}

.video_player {
    width: 100%;
}

.video_player video {
    width: 100%;
    border-radius: 20px;
}

.game_download-info {
    display: flex;
    align-items: center;
    padding: 20px 10px;
}

.or {
    padding: 0 10px;
    color: #fff;
}

.game_text {
    font-size: 24px;
}

.qr-code {
    height: 52px;
}

.qr-code img {
    max-width: 52px;
    border-radius: 6px;
}

@media (max-width: 750px) {
    .main_section {
        overflow-y: auto;
        background-size: cover;
    }

    .game_section {
        height: auto;
    }

    .main_header .logo {
        height: 50px;
    }

    .game_logo {
        width: 100px;
        height: 100px;
    }

    .game_title {
        font-size: 2.5rem;
        padding-top: 20px;
    }

    .game_content {
        height: auto;
        display: block;
        padding: 20px;
    }

    .left_content,
    .right_content {
        width: 100%;
    }

    .right_content {
        padding: 0 10px;
    }

    .main_footer {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        padding: 50px 0;
        gap: 20px;
    }
}

.ios-download {
    outline: none;
    display: block;
    width: calc(120px * 1.3);
    height: calc(40px * 1.3);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/Download_on_the_App_Store_Badge_US-UK_RGB_wht_092917.svg);
}