#imageGroups {
    position: relative;
    height: auto;
    top: 0px;
    width: 100vw;
    margin-top: 15px;
}

.promoColumnImage {
    position: relative;
    display: block;
    width: calc(60vw - 15px);
    margin-left:15px;
    height: 42vw;
    float: left;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom:15px;
}

.grayscaleImg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 42vw;
    /* margin-top: 30px; */
    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: cover;
    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: 40vw;
    height: 42vw;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.promoWideImage:nth-child(even) {
    float: right;
}

.fullScreenPromo {
    width: 100%;
    display: block;
}

.fullScreenContainer {
    width: 100%;
    position: relative;
    height: auto;
    overflow: hidden;
    display: block;
    margin-bottom:15px;
}

.promoImageColumnText {
    position: absolute;
    top: 20px;
    /* left: 20px; */
    text-align: left;
    color: #100f0f;
    float: left;
    margin-left: 5%;
    font-size: 24px;
    width: 100%;
    position: relative;
    text-transform: uppercase;
    font-weight: 900;
    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;
}

#containerSquareDiv {
    width: 50%;
    height: 700px;
    position: relative;
    background-color: #F6F5F3;
    color: #686767;
    float: right;
    margin: 0 auto;
    /*line-height: 700px;*/
    text-align: center;
}

.textoSquareDiv {
    text-align: center;
    position: relative;
    color: #686767;
    top: 50%;
    transform: translateY(-50%);
}

#textoNivel2 {
    font-weight: 300;
}

#textoNivel1 {
    font-weight: 900;
    text-transform: uppercase;
}

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


    #containerSquareDiv {
        width: 100%;
        height: 75px;
    }

    .promoColumnImage {
        width: 100%;
        height: 100vw;
        margin: 0 auto;
        display: block;
        /* float: none; */
        margin-bottom: 15px;
    }

    .promoWideImages {
        width: calc(50% - 10px);
        height: 167px !important;
        display: block;
        margin-bottom: 0px !important;
        float: left !important;
    }

    .promoWideImage {
        margin-left: 0;
        margin-right: 0px;
        height: 100vw;
        width: 100%;
        margin-bottom: 15px;
    }

    .promoImageColumnText {
        font-size: 17px;
        left: 0px;
        top: 13px;
        margin-left: 9px;
    }

    .promoColumnImage .promoImageColumnText {
        font-size: 25px;
    }

    .promoWideImage:nth-child(even) {
        float: left;
    }

    .fullScreenPromo {
        width: 100%;
    }
    .grayscaleImg{
        display:none !important;
    }
}