#event-gallery .uk-subnav li a{
    border-radius:6px !important;
}
.image-container{
    width: 100%;
    padding-bottom: 100%;
    border: 1px inset transparent;
    border-radius:4px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    position: relative;

    &:hover{
        /*border: 1px inset #ff1414;*/
        transition: all 0.2s ease-in-out;
        box-shadow: 0 0 14px rgba(0,0,0,0.3);
    }

    &:hover a{
        opacity: .5;
        box-shadow: inset 0 0 0 1000px rgba(255,255,255,0.3);
        background: linear-gradient(159deg, rgba(255,255,255,0) 32%, rgba(255,255,255,0.7525210767900911) 65%, rgba(255,255,255,0.5284314409357493) 67%, rgba(255,255,255,0) 100%);
    }
}

.image-container img{
    transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.image-container:hover img{
    transform: scale(1.04);
    transition: all 0.2s ease-in-out;
}

