* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-style: solid;
    border-color: #222;
    border-width: 2px;
}

.carousel-item .slide-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-item {
    position: absolute;
    width: 40%;
    height: 440px;
    border: none;
    top: 0;
    left: 100%;
}

.carousel-item.active {
    left: 40%;
    transition: all 0.3s ease-out;
}

.carousel-item.left {
    left: 0;
    transition: all 0.3s ease-out;
}

.carousel-item.right {
    left: 80%;
    transition: all 0.3s ease-out;
}

.carousel-item div {
    height: 100%;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}

.yellow {
    background-color: yellow;
}

.violet {
    background-color: violet;
}
