@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('fonts/hkgrotesk-bold-webfont.woff2') format('woff2'),
         url('fonts/hkgrotesk-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('fonts/hkgrotesk-medium-webfont.woff2') format('woff2'),
         url('fonts/hkgrotesk-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('fonts/hkgrotesk-regular-webfont.woff2') format('woff2'),
         url('fonts/hkgrotesk-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

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

html {
    -webkit-text-size-adjust: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'HK Grotesk', sans-serif;
    background-color: #fff;
    color: #3b3b3c;
    letter-spacing: .05em;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    text-decoration: underline;
}

header,
main,
footer {
    display: block;
}

p {
    font-size: 20px;
    line-height: 1.75;
    margin-top: 35px;
    font-weight: 500;
}

p:first-child {
    margin-top: 0;
}

p:not(.address) a {
    font-size: 16.5px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.header {
    background: #161515 url(images/hero.jpg) no-repeat 50% 50% / cover;
    min-height: 568px;
    position: relative;
    padding-top: 43.38541%; /* PICTURE RATIO */
}

.header__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    width: 166px;
    height: 60px;
    text-indent: -9999px;
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-size: 166px 60px;
    margin: 0 auto;
}

.quote {
    margin: 0 auto;
    max-width: 560px;
    color: #fff;
    pointer-events: none;
    position: relative;
}

.quote blockquote {
    opacity: 0;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    transition: opacity 1s ease-in;
}

.quote blockquote.is-active {
    opacity: 1;
}

.quote p {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.quote footer {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 20px;
}

.button {
    background-color: #fff;
    color: #3e3e3f;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding: 12px 35px;
    transition: opacity 0.2s;
    text-decoration: none;
    text-transform: uppercase;
}

.button:hover {
    opacity: 0.9;
}

.content {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 20px;
}

.footer {
    background-color: #161515;
    color: #fff;
}

.footer__inner {
    padding: 45px 20px;
    max-width: 560px;
    margin: 0 auto;
    color: #fff;
}

.footer a:not(.social__link) {
    transition: opacity 0.2s;
}

.footer a:not(.social__link):hover {
    opacity: 0.6;
}

.social {
    margin-top: 35px;
}

.social__link {
    background-color: #fff;
    background-size: 40px 40px;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    overflow: hidden;
    text-indent: -9999em;
    width: 40px;
    margin-left: 35px;
    transition: opacity 0.2s;
}

.social__link--instagram {
    background-image: url(images/icon-instagram.svg);
}

.social__link--facebook {
    background-image: url(images/icon-facebook.svg);
}

.social__link:hover {
    opacity: 0.9;
}

.social__link:first-child {
    margin-left: 0;
}

@media screen and (max-width: 991px) {

    p {
        font-size: 17px;
    }

    p:not(.address) a {
        font-size: 15.5px;
    }

    .quote p {
        font-size: 22px;
    }

    .logo {
        width: 125px;
        height: 45px;
        background-size: 125px 45px;
    }
}

@media screen and (max-width: 767px) {

    .logo {
        width: 83px;
        height: 30px;
        background-size: 83px 30px;
    }
}