.MIDDLE-SECTION-GALLERY {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background: black;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.focused {
    color: #f961af;
    border: #f961af solid 3px;
}

.ease {
    width: 0px;
    height: 74px;
    background-color: #f961af;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

.example {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    z-index: 5;
}

.example img {
    position: absolute;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    left: 100%;
    border-color: #ffffff;
    border-style: solid;
    border-width: 0.1vw;
    border-top: 0vw;
}