#imageGroups{
    overflow: hidden;
    width: 33%;
    margin: 0;
}
.promoColumnImage{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    aspect-ratio: 9/16;
    width: 100%;
    background-size: cover;
    height: 40vw;
    overflow: hidden;
    transition: all .7s;
    -moz-transition: all .7s;
    -webkit-transition:all .7s;
    -o-transition: all .7s;
}
.promoColumnImage:hover{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.promoImageColumnText{
    position: absolute;
    text-align: left;
    color: var(--secondary-color-one);
    transition: all .7s;
    -moz-transition: all .7s;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    background: rgb(0, 0, 0, 0.3);
}
.promoImageColumnText div{
    border-bottom: 1px solid var(--secondary-color-one);
    font-family: var(--font-two);
    font-weight: 100;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);;
}
.promoColumnImage:hover .promoImageColumnText {
    opacity: 1;
}
.groupsContainer {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#content{
    background-color: var(--violeta) !important;
}
.widthContainer{
    margin-bottom: 0px !important;
    margin-top: 1.2%;
}
.grayscaleImg{
    filter: gray;
    opacity:0;
}
.promoWideImage{
    position: relative;
    float: left;
    width: 335px;
    height: 335px;
    margin-bottom: 30px;
    margin-left: 30px;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor:pointer;
}
.fullScreenPromo{
    width: 100vw;
    margin: 0 auto;
    height: auto;
    position: relative;
    display: block;
    margin-bottom: 10px;
    margin-top:10px;
}
.fullScreenContainer{
    display: block;
    width: 100vw;
    position: relative;
    height: auto;
    overflow: hidden;
}

@media screen and (max-width:768px){
    .widthContainer{
        width: 100% !important;
        margin-top: 5vw;
    }
}


@media screen and (max-width:680px){
    .groupsContainer{
        flex-direction: column;
    }
    #imageGroups{
        width: 91vw;
        margin: auto;
    }
    .promoColumnImage{
        height: 100vw;
        margin-top: 3vw;
    }
    .promoImageColumnText{
        opacity: 1;
        font-size: calc(var(--title-font-size) - 4px);
    }
}
    