@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #015840;
    font-size: 16px;
    color:#FFF;
    font-family: "Roboto";
    font-weight: 300;
    overflow: auto;
}

.offer {
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    padding: 5vh 0;
    background: url("../img/bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.site-width {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    margin: 0 auto;
    width: 90%;
    height: 90vh;
}

.offer .logo {
    font-weight: 600;
    line-height: 1;
    font-size: 20px;
    text-transform: uppercase;
    border-top: 5px solid #e31a1a;
    border-bottom: 5px solid #e31a1a;
    width: fit-content;
    margin: 0 auto auto;
    padding: 10px 0;
    margin-bottom: auto;
}

.offer .logo .text1 {
    font-size: 52px;
    line-height: 1.1;
}

.offer .logo .text2 {
    font-size: 72px;
    line-height: 0.7;
}

.offer h1 {
    font-weight: 300;
    font-size: 50px;
    text-align: center;
    margin: 6vh 0 auto;
}


.desc {
    margin: 4vh 0 auto;
    text-align: center;
    font-size: 20px;
    display: none;
}

button {
    background: #e31a1a;
    color: #FFF;
    font-size: 25px;
    border: 0;
    width: 200px;
    margin: 4vh auto auto;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #be1818;
}


@media screen and (max-width:1024px) {
    .offer h1 {
        font-size: 35px;
    }

    button {
        font-size: 20px;
        width: 170px;
    }

}

