#imageGroups{
    position: relative;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
}
#imageGroups .widthContainer{
    width: 100%;
}
.promoColumnImage{
    position: relative;
    float: left;
    width: calc((100% /3) - 5.5px);
    aspect-ratio: 1/1;
    overflow:hidden;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}
div#square:nth-of-type(3n-3) .promoColumnImage {
    margin: 0;
}
.fullScreenPromo{
    width: 100%;
}
.promoWideImage{
    margin-left: 45px;
    margin-right: 45px;
    height: 690px;
    width: 460px;
    overflow:hidden;
    margin-top: 20px;
    float: left;
    position: relative;
    display: inline-block;
    background-size: 100%;
    background-position: 50% 50%;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    cursor:pointer;
}
.promoColumnImage:hover .promoColumnBkg, .promoWideImage:hover .promoColumnBkg{
    opacity:1;
}
.promoColumnImage:hover .promoColumnText, .promoWideImage:hover .promoColumnText{
    left:0;
}
.promoColumnBkg{
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    opacity:0;
    background-color: rgba(0,0,0,0.6);
    display: block;
    transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -webkit-transition: .4s ease-out;
    -o-transition: top .4s ease-out;
}
.promoColumnText{
    position: relative;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 20px;
    height: 25px;
    line-height: 55px;
    letter-spacing: 1px;
    margin-top: calc(50% - 55px/2);
    text-transform: lowercase;
    left: -100%;
    transition: left .4s ease-out;
    -moz-transition: left .4s ease-out;
    -webkit-transition: left .4s ease-out;
    -o-transition: left .4s ease-out;
}
@media screen and (max-width:768px){
    #imageGroups{
        height:auto;
        overflow:hidden;
        margin-top: 34px;
    }

    .promoImageColumnBkg {
        position: absolute;
        height: 50px;
        display: block;
        opacity: 1;
        border: none;
    }

    .promoImageWhiteBkg {
        display: block;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        background-color: #b7a68f;
        display: none;
    }

    .promoColumnImage{
        width: 90%;
        height: 108vw;
        margin: 0 auto;
        display: block;
        float: none;
        margin-bottom: 70px;
        overflow: visible;
    }

    .promoImageColumnText{
        font-size: 23px;
        display: block;
    }
    .promoWideImage{
        width: 90%;
        height: 460px;
        margin: 0 auto;
        margin-bottom: 22px;
        float: none;
        display: block;
    }
    .promoColumnBkg {
        opacity: 1;
        background-color: transparent;
        position: absolute;
        /* top: -25px; */
    }
    .promoColumnText {
        left: 0px;
        color: black;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: unset;
        margin-top: 0px;
        display: none;
    }
    .promoColumnImage {
        margin-bottom: 0px;
        margin-top: 30px;
        width: 100%;
        aspect-ratio: 1/1;
        margin: 0;
        overflow: hidden;
    }
    div#square:nth-of-type(2n-1){
        margin-left: 1px !important;
        margin-right: 2px !important;
    }
     div#square:nth-of-type(2n-2){
        margin-left: 2px !important;
        margin-right: 1px !important;
    }
    #square{
        width: calc(50% - 3px);
        aspect-ratio: 1/1;
        float: left;
        margin-bottom: 2px;
    }
    

}

@media (max-width: 1024px) {
    #imageGroups{
        max-width: 1024px;
    }
}