.at-tiles {
    position: relative;
    margin: auto;
    background-size: cover;
    background-position: 50%;
}

.at-tiles--hasBackgroundImage .at-tiles__title,
.at-tiles--hasBackgroundImage .at-tiles__intro {
    position: relative;
    color: #fff;
}

.at-tilesWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 25px;
}

.at-tiles__title {
    margin: 0 auto 50px;
    font-size: 6vw;
    text-shadow: 0 2px 9px rgba(0,0,0,0.4);
}

.at-tiles__tile {
    flex-basis: 100%;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 25px;
    background-size: cover;
}

.at-tiles__textContainer {
    padding: 1em;
}

.at-tiles__title,
.at-tiles__intro {
    text-align: center;
}

.at-tiles__intro {
    margin: 0 auto 50px;
}

.at-tiles__heading--noMargin {
    margin-top: 0;
}

.at-tiles__tileTitleElement--small {
    font-size: 22px;
}

.at-tiles__tileTitleElement--large {
    font-size: 32px;
    line-height: 1.2;
}

.at-tiles__tileLinkUrl {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: .1em 1em .3em;
    text-align: right;
    text-decoration: none;
    font: 700 .8em/1 "Open Sans", sans-serif;
    background: rgba(0,0,0,0.05);
}

.montserrat .at-tiles__tileLinkUrl {
    font-family: "Montserrat", sans-serif;
}

.at-tiles__tile--hasBackground .at-tiles__tileLinkUrl {
    background: rgba(0,0,0,0.5);
}

.at-tiles__tileLinkUrl:after {
    margin-left: .3em;
    font: normal 14px/1.6 "icons";
    content: "\27f6";
    opacity: .5;
}

.at-tiles__tileLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.at-tiles__tileLink.linkButton {
    margin: 0;
}

@media screen and (min-width: 760px) {
    .at-tiles__title,
    .at-tiles__intro {
        -webkit-flex-basis: 100%;
        -ms-flex-basis: 100%;
        flex-basis: 100%;
    }

    .at-tiles__title {
        font-size: 5vw;
    }

    .at-tilesWrapper .at-tiles__tile {
        -webkit-box-flex: 1 30%;
        -webkit-flex: 1 30%;
        -ms-flex: 1 30%;
        flex: 1 30%;
        margin-right: 3%;
    }
}