.at-callToAction {
    padding-top: 5em;
    padding-bottom: 5em;
    text-align: center;
    background-image: linear-gradient(to right, #ea516d, #ee7325);
}

.at-callToAction__title,
.at-callToAction__subTitle {
    color: #fff;
}

.at-callToAction__subTitle + .at-callToAction__title {
    margin-top: 1em;
}

.at-callToAction__title {
    margin-bottom: 1.5em;
}

.at-callToAction__subTitle {
    font-size: 0.9em;
    font-family: 'Asap', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.at-callToAction__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.at-callToAction__action {
    width: 100%;
    margin: 0 0 1em 0;
}

.at-callToAction__action:last-child {
    margin-right: 0;
}

.at-callToAction__action--active:hover::after {
    transform: none;
}

.at-callToAction__extraLink {
    display: inline-block;
    margin-top: 1.5em;
    font-size: 0.8em;
    color: #fff;
}

@media screen and (min-width: 550px) {
    .at-callToAction__action {
        width: auto;
        margin: 0 1em 1em 0;
    }
}

/* No Gradient */
.at-callToAction--noGradient {
    padding: 0;
    background-image: none;
}

.at-callToAction--noGradient .at-callToAction__action {
    background-color: #fff;
    color: #553769;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease-out;
}

.at-callToAction--noGradient .at-callToAction__action--active {
    background-color: #553769;
    color: #fff;
    border-color: #553769;
}

/* No Arrows */
.at-callToAction__actions--noArrows .at-callToAction__action::after {
    content: none;
}

.at-callToAction__action--active::after,
.at-callToAction__actions--noArrows .at-callToAction__action--active::after {
    content: '\2716';
    font-family: "fontello";
    display: inline-block;
    width: 5px;
    margin-left: 0.4em;
    margin-right: 0;
}

.at-callToAction__actions--noArrows .at-callToAction__action:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}