.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
}
.MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
}
.MultiCarousel .MultiCarousel-inner .caritem {
    float: left;
}
.MultiCarousel .MultiCarousel-inner .caritem > div {
    text-align: center;
    padding: 10px;
    margin: 10px;
    color: #666;
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 20px);
}
.MultiCarousel .leftLst {
    left: 30px;
}
.MultiCarousel .rightLst {
    right: 30px;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #ccc;
}
.image-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.clip-first {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    margin-right: -10px;
}
.clip-last {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -10px;
}
.clip-default {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    margin-right: -10px;
    margin-left: -10px;
}