html, body {
    margin: 0;
    padding: 0;
    font-family: "Sofia Sans", sans-serif;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
}
.hero {
    background: url(images/hero.png) center bottom no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 90px 15px;
}
.hero .container {
    text-align: center;
    width: 1080px;
    max-width: 100%;
    color: #FFFFFF;
}
.hero .container img {
    width: 529px;
    height: auto;
}
.hero .container h1 {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    margin: 40px 0 25px 0;
}
.hero .container p {
    opacity: 0.8;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0 auto;
    max-widtH: 1020px;
}

@media(max-width: 767px) {
    .hero { 
        padding: 50px 15px;
    }
    .hero .container img {
        width: 300px;
    }
    .hero .container h1 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }
    .hero .container p { 
        font-size: 14px;
    }
}