#imageGroups{
    position:relative;
    height: auto;
    overflow: hidden;
}
.promoColumnImage:nth-child(even){
    float: left;
}
.promoColumnImage{
    position: relative;
    display: block;
    width: 47%;
    height: 463px;
    float: right;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor:pointer;
    margin-top: 50px;
    margin-bottom: 50px;
}

.grayscaleImg{
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity:0;
    transition: opacity .4s ease-out;
    -moz-transition: opacity .4s ease-out;
    -webkit-transition: opacity .4s ease-out;
    -o-transition: opacity .4s ease-out;
}
/*.promoWideImage:hover .grayscaleImg, .promoColumnImage:hover .grayscaleImg{
    opacity:1;
}*/
.promoWideImage:hover .promoImageColumnText, .promoColumnImage:hover .promoImageColumnText{
    color: #58595b;
}

.promoWideImage{
    position: relative;
    float: left;
    width: 47%;
    height: 270px;
    margin-bottom: 30px;
    margin-left: 30px;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor:pointer;
}

.fullScreenPromo{
    width: 100%;
    margin: 0 auto;
    height: auto;
    position: relative;
    display: block;
    margin-bottom: 10px;
    margin-top:10px;
}
.fullScreenContainer{
    display: block;
    width: 100%;
    position: relative;
    height: auto;
    overflow: hidden;
}
.promoImageColumnText{
    position: absolute;
    top: 20px;
    /* left: 20px; */
    text-align: left;
    color: #100f0f;
    float: left;
    margin-left: 5%;
    font-size: 24px;
    width: 38%;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    overflow: hidden;
    transition: color .4s ease-out;
    -moz-transition: color .4s ease-out;
    -webkit-transition: color .4s ease-out;
    -o-transition: color .4s ease-out;
    display: none;
}

.bkgHovered{
    opacity: 0.8;
}

.textHovered{
    opacity: 1;
}

@media screen and (max-width:768px){
    .promoColumnImage{
        width: 100%;
        height: 83vw;
        margin: 0 auto;
        display: block;
        float: none;
        margin-bottom: 20px;
        float: left;
        margin-top: 20px;
    }
    .promoWideImage{
        width: 101%;
        height: 43vw;
        margin-left: 0px;
        margin-right: 2.5%;
        display: block;
        margin-bottom: 30px;
    }
    .promoWideImage:nth-child(odd){
        margin-left: 0;
        margin-right:0px;
    }
    .promoImageColumnText{
        font-size:17px;
        left: 0px;
        top: 13px;
        margin-left: 9px;
    }
    .promoColumnImage .promoImageColumnText{
        font-size:25px;
    }
    .fullScreenContainer{
        margin-bottom:10px
    }
}