html, body {
    font-size: 18px;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

html *, body * {
    font-family: inherit;
}

.header {
    min-height: 100vh;
    background: url('images/business.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 0;
}

.text {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.text__title {
    flex: 0 0 auto;
    font-size: 6em;
    color: rgba(255, 255, 255, 0.8);
}

.text__title img {
   width: 480px;
   max-width: 100%;
}

.text__tagline {
    flex: 1 0 auto;
    font-size: 2em;
    color:#2a82a3;
    padding-left: 0.22em;
}

.text__footer {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.8);
    /* text-align: right; */
    /* padding-bottom: 1em; */
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 2;
}

.footer__contact > span:first-child {
    margin-right: 2em;
}

.footer a {
    color: white;
    border-bottom: solid 4px #05669f;
    padding-bottom: 0em;
}

.footer a:hover {
    text-decoration: none;
    border-bottom-width: 6px;
}

.banner-dark {
    background: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 576px) {
    html, body {
        font-size: 14px;
    }

    .text__footer {
        padding-bottom: 8em;
    }
}