* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.col {
    padding-left: 10px;
    padding-right: 10px;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.desktop {
    display: none;
}

#top-bar {
    width: 100%;
    height: 90px;
    background-color: rgb(86, 88, 91);
    z-index: 100;
    color: #ffffff;
}

#topbar-inner {
    position: relative;
    max-width: 960px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

#haw-bird {
    width: 64px;
    height: 52px;
}

#haw-word {
    width: 113px;
    height: 10px;
    -webkit-transform: translate(20%, -50%);
    transform: translate(20%, -50%);
}

.address {
    display: flex;
    font-size: 13px;
    text-align: left;
    color: #ffffff;
}

.address .address__email {
    padding-right: 0;
}

#top-bar .address {
    display: none;
}

.address--mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: rgb(86, 88, 91);
    line-height: 17px;
    font-size: 13px;
    padding: 1rem 30px 1rem;
}

.address--mobile .address__email {
    width: 100%;
    margin-top: 0.6rem;
    font-size: 13px;
}

#main-copy {
    flex: auto;
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    padding: 2rem 30px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    background: url(../img/cityscape.jpg) no-repeat center center;
    background-size: cover;
    background-position: bottom center;
}

.container {
    max-width: 1250px;
    margin: auto;
}

.email-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
}
.phone-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.mobileShow {
    max-width: 1250px;
    margin: auto;
    font-size: 12px;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 2rem;
}

.mobileHide {
    display: none;
}

@media only screen and (min-width: 411px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: inherit;
    }

    #top-bar {
        height: 100px;
    }

    #haw-logo {
        position: relative;
        width: 242px;
        height: 60px;
        display: block;
    }

    #main-copy {
        font-size: 17px;
    }
}

@media only screen and (min-width: 480px) {
    #main-copy {
        font-size: 18px;
    }

    .mobileShow {
        font-size: 13px;
    }
}

@media only screen and (min-width: 640px) {
    #top-bar {
        height: 110px;
    }

    #main-copy {
        font-size: 21px;
    }

    .container {
        max-width: 550px;
    }
}

@media only screen and (min-width: 768px) {
    #top-bar {
        height: 128px;
        position: fixed;
        top: 0;
        left: 0;
    }

    #top-bar .address {
        display: flex;
    }

    .address--mobile {
        display: none;
    }

    #haw-logo {
        width: 230px;
        height: 72px;
    }

    #main-copy {
        font-size: 24px;
        padding-top: 10rem;
    }

    .container {
        max-width: 650px;
    }
}

@media (min-height: 800px) {
    #main-copy {
        padding-top: 16rem;
    }
}

@media only screen and (min-width: 960px) {
    #haw-logo {
        width: 260px;
        height: 82px;
    }

    #main-copy {
        font-size: 32px;
        padding-top: 16rem;
    }

    .container {
        max-width: 800px;
    }
}

@media only screen and (min-width: 1224px) {
    #haw-logo {
        left: -125px;
    }

    #main-copy {
        font-size: 30px;
    }

    .container {
        max-width: 760px;
    }
}

@media only screen and (min-width: 1824px) {
    #top-bar {
        height: 120px;
    }

    #main-copy {
        font-size: 42px;
        padding-top: 17rem;
    }

    .container {
        max-width: 1040px;
    }
}
