.at-quote {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 500px;
}

.at-quote__content {
    position: relative;
    max-width: 80vw;
    color: #ffffff;
    z-index: 1;
}

.at-quote__content h1 {
    margin-top: 0;
    line-height: 1.5em;
    font-family: 'VAGRounded Bold', sans-serif;
}

.at-quote__content::before {
    content: '\e800';
    display: inline-block;
    margin-bottom: -1em;
    font-family: 'icons', sans-serif;
    font-size: 4em;
    color: #ffffff;
}

.at-quote__link {
    text-decoration: none;
    font-size: 1.2em;
    color: #ffffff;
}

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

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

@media screen and (min-width: 680px) {
    .at-quote__content h1 {
        font-size: 2.5em;
    }

    .at-quote__link {
        font-size: 1.4em;
    }
}

@media screen and (min-width: 1120px) {
    .at-quote__content h1 {
        font-size: 3.2em;
    }

    .at-quote__link {
        font-size: 1.7em;
    }
}

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

.at-quote__colorOverlay--blueLight:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(103, 210, 250, 0.75);
}

.at-quote__colorOverlay--orange:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(255, 173, 0, 0.75);
}

.at-quote__colorOverlay--green:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(157, 202, 0, 0.75);
}

.at-quote__colorOverlay--purple:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(163, 0, 132, 0.75);
}