* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    background-color: #e7eef0;
}
@font-face {
    font-family: 'AvertaBold';
    src: url("../fonts/AvertaCyrillicSemiBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'AvertaRegular';
    src: url("../fonts/AvertaCyrillicRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
.wrapper {
    min-height: 100%;
    width: 100%;
    padding: 3% 0;
}
.logo {
    height: 370px;
    width: 370px;
    background: url('../img/MarketGID_Pop-up_Merge_Img.png') no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    margin: 0 auto;
}
.text {
    padding-top: 75px;
}
.text h1 {
    font-family: 'AvertaBold', sans-serif;
    font-size: 36px;
    color: #0033cc;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
.text p {
    font-family: 'AvertaRegular', sans-serif;
    font-size: 18px;
    color: #000;
    text-align: center;
}
.text p:last-child {
    margin-top: 40px;
}
.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 55px;
}
.buttons a {
    font-family: 'AvertaBold', sans-serif;
    color: #fff;
    font-size: 16px;
    padding: 20px 30px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 15px;
}
.buttons a:nth-child(1) {
    background: #0033cc;
}
.buttons a:nth-child(2) {
    background: #e33b2e;
}
.buttons a:nth-child(3) {
    color: #000;
    border: 2px solid #000;
}
#video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cross {
    position: absolute;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 36px;
    right: 0;
    top: 5px;
    z-index: 1;
    line-height: 40px;
}

@media (max-width: 768px) {
    .logo {
        width: auto;
        margin: 10px;
    }
    .text {
        padding: 0 10px;
    }
    .buttons a {
        font-size: 12px;
        padding: 20px 17px;
        width: 40%;
        text-align: center;
    }
    .buttons a:nth-child(3) {
        margin-top: 30px;
        width: 40%;
        text-align: center;
    }
}
