* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Inter", sans-serif;
}

p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 16px;
}

p a {
    color: inherit;
}

p a:hover {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

p + h2 {
    margin-top: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1054px;
    padding: 0 15px;
    margin: 0 auto;
}

.header {
    height: 90px;
    padding: 15px 0;
}

.header__logo {
    height: 60px;
    width: 280px;
    margin: 0 auto;
}

.header__logo img {
    display: block;
    height: 60px;
    width: auto;
}

.hero {
    padding: 100px 0;
    background: white url(img/bg-hero.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.hero::before {
    content:"";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
}

.hero__content {
    color: white;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__heading {
    font-size: 30px;
    line-height: 135%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .75);
    letter-spacing: .5px;
}

.contact {
    padding: 40px 0;
    text-align: center;
}

.footer {
    padding: 20px 0;
    text-align: center;
    background-color: #eeeeee;
}

.footer p {
    font-size: 14px;
}

@media (min-width: 480px) {
    .hero__heading {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 140px 0;
    }
    .hero__heading {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }
    .contact {
         padding: 60px 0;
         text-align: center;
     }
}

@media (min-width: 992px) {
    .hero {
        padding: 180px 0;
    }
    .hero__heading {
        font-size: 48px;
    }

    h2 {
        font-size: 42px;
    }
}

@media (min-width: 1054px) {
    .hero {
        padding: 200px 0;
    }
    .hero__heading {
        font-size: 54px;
    }

    h2 {
        font-size: 48px;
    }
    .contact {
        padding: 80px 0;
        text-align: center;
    }
}