/**
 * Banner article template
 */

.at-banner {
	position: relative;
	overflow: hidden;
	width: 100%;
    min-height: 250px;
    background-color: #004f91;
    background-repeat: no-repeat;
    background-size: cover;
}

.at-banner__content {
    position: relative;
    z-index: 1;
    float: left;
    padding: 2em 1em;
    width: 100%;
}

.at-banner__title {
    padding: 0;
    font-size: 2.5em;
}

.at-banner__title,
.at-banner__intro {
    color: #ffffff;
}

.at-banner__button {
    margin-top: 1em;
}

.at-banner__overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
	width: 100%;
    background: url(./swoosh.svg) no-repeat 0 0;
    background-size: cover;
}

@media screen and (min-width: 450px) {
    .at-banner {
        min-height: 280px;
    }

    .homepage .at-banner {
        min-height: 345px;
    }

    .at-banner__content {
        width: 75%;
    }
}

@media screen and (min-width: 806px) {
    .at-banner__overlay {
        width: 460px;
    }
}

@media screen and (min-width: 850px) {
    .at-banner__content {
        width: 45%;
    }
}

@media screen and (min-width: 1200px) {
    .at-banner__content {
        padding-left: 0;
        padding-right: 0;
    }
}
