.Carousel {
    width: 100%;
    height: 100%;
}

.Carousel__imageList {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}

.Carousel__image {
    width: 100%;
    height: 100%;
}

.Carousel__image-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    max-width: inherit;
    height: 100%;
    max-height: inherit;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.Carousel__image--portrait {
    top: 75%;
    width: 100%;
    max-width: 100%;
    height: auto;
}



