.slider {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: visible;

    position: relative;
}

.slideshow {
    width: 100%;
    height: 80%;

    margin-top: 5%;

    position: relative;

    overflow-x: hidden;
    overflow-y: hidden;
}

.slides-wrapper {
    display: flex;

    transition: transform 0.5s ease-in-out;

    align-items: center;
}

.slideimg {
    width: 25%;
    height: 70%;

    flex: 0 0 20%;

    display: inline-flex;

    border-radius: 5px;

    margin-top: 5%;
    margin-left: 2.5%;
    margin-right: 2.5%;

    transition: transform 0.5s;
}

.slideimg.center {
    /*transform: scale(1.3);*/
    z-index: 1;
}

.arrows {
    margin-top: 3%;
}

.prev, .next {
    width: 20%;
    height: 20%;

    font-size: 5vh;

    color: rgb(210, 210, 210);
}

.prev {
    float: left;
}

.next {
    float: right;
}

.prev:hover, .next:hover {
    cursor: pointer;

    color: rgb(0, 0, 0);;

    transition: ease-in 0.3s;
}