.at-homepageHeader {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(88vh - 65px);
}

.colorOverlayBlue:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(3, 142, 176, 0.25);
}

.at-homepageHeader__content {
    position: relative;
    padding: 0 2em;
    line-height: 1.2;
    color: #ffffff;
    z-index: 1;
}

.at-homepageHeader__text {
    margin: 0 0 .5em 0;
    font-family: 'VAGRounded Bold', Arial, sans-serif;
    font-size: calc(5vw + 1.5em);
}

.at-homepageHeader__subText {
    margin: .5em 0;
    font-family: 'VAGRounded Light', Arial, sans-serif;
    font-size: calc(5vw + .7em);
}

@media (min-width: 1120px) {
    .at-homepageHeader__text {
        font-size: 5em;
    }

    .at-homepageHeader__subText {
        font-size: 4.2em;
    }
}

.at-homepageHeader__content a {
    text-decoration: none;
    color: #ffffff;
}

.at-homepageHeader__button {
    display: inline-block;
    margin: .5em 0;
    padding: 10px 30px;
    font-size: calc(3vw + .5em);
    border-radius: 100px;
    background-color: #FFAD00;
    font-family: 'VAGRounded', Arial, sans-serif;
    transition: all .2s ease-in-out;
}

.at-homepageHeader__link {
    display: inline-block;
    margin: .5em;
    font-family: 'VAGRounded', Arial, sans-serif;
    font-size: calc(3vw + .5em);
}


@media screen and (min-width: 980px) {
    .at-homepageHeader__button {
        font-size: 2em;
    }

    .at-homepageHeader__link {
        font-size: 2em;
        margin-left: 2em;
    }
}

.at-homepageHeader__button:hover {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
}

.at-homepageHeader__link::after {
    content: '\276f';
    display: inline-block;
    text-decoration: none;
    font-family: 'icons', sans-serif;
    font-size: .8em;
    padding-left: 8px;
}

.at-homepageHeader__link:hover {
    text-decoration: underline;
    text-shadow: 4px 4px 3px rgba(0,0,0,0.18);
}

@media screen and (min-width: 860px) {
    .at-homepageHeader_content {
        padding: 0;
    }
}