div.bannerItem {
    background-color: #3275B5;
    margin-bottom: 25px;
    height: 350px;
    transition: background-color 800ms;
}
div.bannerItem:hover {
    background-color: #98B9DA;
}
div.bannerItem:last-child {
    margin-bottom: 0;
}
div.bannerItem > div.left {
    float: left;
    padding: 40px;
    font-size: 20px;
    color: white;
    width:50%;
    line-height: 30px;
}
div.bannerItem > div.right {
    display: block;
    float: right;
    width:50%;
    height: 350px;
    background-size: cover;
    position: relative;
    line-height: 20px;
}
div.bannerItem > div.right > div.BannersContainer {
    background-color: rgba(50,50,50,0.68);
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
}
div.bannerItem > div.right > div.BannersContainer > span#spanBanner {
    display: block;
    color: white;
    width:100%;
    font-size: 32px;
    text-align: center;
    bottom:52px;
    padding: 7px;
}
div.bannerItem > div.right > div.BannersContainer > span#spanBannerSmall {
    display: block;
    color: white;
    width:100%;
    font-size: 20px;
    text-align: center;
    bottom:12px;
    padding: 7px;
}

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

    div.bannerItem {
        height: auto;
    }
    div.bannerItem > div.right {
        width:100%;
        float: none;
    }
    div.bannerItem > div.left {
        width:100%;
        float: none;
        text-decoration: none;
    }

}