/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Promotional Campaigns */

.promo-box {
    width: 80%;
    margin: 40px auto;
}
.promo-box-banner{
    width: 100%;
    position: relative;
    min-height: 170px;
}
.promo-image-banner{
    width: 100%;
    text-align: center;
    bottom: 0;
    position: absolute;
}
.banner-type-desktop img, .banner-type-tablet img{
    max-height: 150px;
}
.banner-type-mobile img{
    max-height: 170px;
}
.promo-image.desktop {
    display: inline-block;
    width: 40%;
    max-width: 204px;
}

.promo-image.mobile {
    display: inline-block;
    width: 40%;
    max-width: 100px;
}

.promo-image.desktop img {
    width: 100%;
    max-width: 204px;
    max-height: 112px;
}


.promo-image.mobile img {
    width: 100%;
    max-width: 100px;
    max-height: 92px;
}

.promo-content {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.3em;
    font-size: 15px;
    font-weight: lighter;
    color: #999 !important;
}

.promo-image:hover, .promo-content:hover {
    text-decoration: none !important;
}

.promo-content h2 {
    font-size: 22px;
    margin: 6px 0;
    font-weight: 500;
    color: #000;
    line-height: 1.3em;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {


    .promo-image.desktop, .promo-image.mobile {
        margin: 0 auto;
        display: block;
        width: 100%;
        text-align: center;
    }

    .promo-content {
        width: 100%;
        display: block;
        padding-left: 0;
    }

    .promo-content h2 {
        font-size: 17px;
    }

}


@media screen and (max-width: 599px) {

    .promo-box {
        width: 100%;
    }

    .promo-image.desktop, .promo-image.mobile {
        width: 30%;
    }

    .promo-content {
        width: 70%;
        font-size: 12px;
        padding-left: 10px;
    }

    .promo-content h2 {
        font-size: 17px;
        margin-top: 0;
    }

}

