html, body {
    width: 100%;
    height: 100%;
    min-width: 1280px;
}

.main {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
}

.main-header {
    position: absolute;
    box-sizing: border-box;
    padding: 35px 35px 0;
}

.main-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.main-block__img {
    width: 28%;
}

.main-block__title {
    font-family: montserrat_b;
    font-size: 15vw;
    color: #afe1f5;
}

.main-block__text {
    margin-top: 3.9%;
    font-size: 1.17vw;
    font-family: lato_r;
    color: #b3b3b3;
}

.main-block__text_top {
    margin: 0;
}

.main-block__button {
    margin-top: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8.2vw;
    height: 2vw;
    border-radius: 500px;
    background-color: #ffae5e;
    min-width: 105px;
    min-height: 25px;
    font-size: 1.17vw;
    color: #fff;
    font-family: lato_b;
}

.main-block__button:hover {
    opacity: .7;
}

.main-block__button:active {
    opacity: 1;
}

@media only screen and (max-width: 1279px) {
    .main-block__text, .main-block__button {
        font-size: 15px;
    }

    .main-block__title {
        font-size: 140px;
    }
}