.mgSlides {
    height: 100vh;
    position: relative;
}

.mgSlides picture {
    position: absolute;
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;

    transition: opacity 1s ease;
}

.mgSlides picture img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
/*    filter: brightness(.40);*/
}

.mgSlides picture section {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 15%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;

    color: #FFF;

    opacity: 0;
    transition: opacity 1s ease;
}

.mgSlides picture section a {
    color: #FFF;
    font-size: 24px;
}

.mgSlides picture section a:hover { color: #CCC; }

.mgSlides .items:not(.dots) { display: none; }

.mgSlides .items.dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
}

.mgSlides .items.dots > div {
    display: inline-block;
    border: 1px solid #999;
    background-color: #FFF3;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    margin: 5px;

    transition: width 0.3s ease;
}

.mgSlides .items.dots > div.current {
    background-color: #FFF6;
    width: 30px;
}

.mgSlides .items.dots > div:not(.current):hover {
    background-color: #FFF6;
    cursor: pointer;
}

.mgSlides a.scroll {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: move .7s infinite alternate ease-in-out;
    padding: 40px;
}

@keyframes move {
    from {
        transform: translate(-50%,-50%);
    }
    to {
        transform: translate(-50%,-60%);
    }
}