.mgSlideGallery {
    position: relative;
}

.mgSlideGallery > picture,
.mgSlideGallery > picture img {
    width: 100%;
    height: 100%;
}

.mgSlideGallery > picture img {
    object-fit: cover;
}

.mgSlideGallery .paging {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
}

.mgSlideGallery .paging > div {
    display: inline-block;
    border: 1px solid #999;
    background-color: #fff3;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    margin: 5px;
    transition: width .3s;
}

.mgSlideGallery .paging > div.current {
    background-color: #fff6;
    width: 30px;
}

.mgSlideGallery .paging > div:not(.current):hover {
    background-color: #fff6;
    cursor: pointer;
}


@media (max-width: 979.999px) {
    .mgSlideGallery {
        height: calc(100vh - 60px);
    }
}

/* Desktop */
@media (min-width: 980px) {
    .mgSlideGallery {
        height: calc(100vh - 80px);
    }
}