.gallery__container{
    margin-bottom: 10vh;
    padding: 0 8.333333%;
    position: relative;
    min-height: 100vh;
}

.mosaic-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -0.5rem;
}

.mosaic-gallery li {
    background-position: center center;
    background-size: cover;
    flex: auto;
    height: 40vh;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    position: relative;
}

.mosaic-gallery li:before {
    content: '';
    font-family: 'fontawesome';
    background-image: url('../icons/expand_icon.svg');
    background-size: 50px 50px;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    color: white;
    background-color: #555555d1;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: .5s all;
}

.mosaic-gallery li:hover:before {
    opacity: 1;
    transition: .5s all;
}

.mosaic-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
}

.mosaic-gallery li:hover:after {
    opacity: 1;
    transition: .5s all;
}

.f-button:nth-child(4){
    display: none;
}

.fancybox__thumbs{
    display: none;
}