.at-imageAndText {
    position: relative;
    text-align: center;
}

/**
 * Intro
 */

.at-imageAndText__intro {
    position: relative;
    margin-bottom: 5em;
    padding: 4em 2em 0;
    color: #fff;
    background-position: center center;
    background-size: cover;
}

.at-imageAndText__text {
    max-width: 32em;
    margin: 0 auto;
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.at-imageAndText strong {
    color: #fff;
}

/** links */
.at-imageAndText a {
    text-decoration: none;
}

.at-imageAndText a:hover {
    text-decoration: underline;
}

.at-imageAndText a:after {
    font-family: 'icons';
    content: '\e808';
    display: inline-block;
    margin-left: .3em;
    font-size: .8em;
    transform: rotate(-90deg);
}

.at-imageAndText__mainImageWrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.at-imageAndText__mainImage {
    bottom: -3em;
}

.at-imageAndText__intro:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(32, 102, 122, .9);
}

.at-imageAndText__intro * {
    position: relative;
}

/**
 * Content two columns
 */

.at-imageAndText__twoCol {
    text-align: left;
}

@media (min-width: 568px) {
    .at-imageAndText__twoCol {
        display: flex;
        justify-content: space-between;
    }

    .at-imageAndText__col {
        width: 40%;
    }
}