.fs-carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.fs-carousel-slide {
    position: absolute;
    top: 0;
    height: 100%;
    opacity: 0;
    animation-name: fadeOutOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}

.fs-carousel-slide.fs-carousel-slide-active {
    position: relative;
    animation-name: fadeInOpacity;
    opacity: 1;
    z-index: 1;
}

.fs-carousel-slide-initial {
    animation-name: disableFade !important;
}

a.fs-carousel-slide.fs-carousel-slide-active:hover {
    filter: blur(1px) saturate(200%);
}

.fs-carousel-slide > img {
    height: 100%;
}

.fs-carousel-slide > img:nth-of-type(1) {
    display: block;
}

.fs-carousel-slide > img:nth-of-type(2) {
    display: none;
}

.fs-carousel-slide > img:nth-of-type(3) {
    display: none;
}

@keyframes disableFade {
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutOpacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (min-width: 600px) {
    .fs-carousel {
        height: 250px;
    }

    .fs-carousel-slide > img:nth-of-type(1) {
        display: none;
    }

    .fs-carousel-slide > img:nth-of-type(2) {
        display: block;
    }

    .fs-carousel-slide > img:nth-of-type(3) {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .fs-carousel-slide > img:nth-of-type(1) {
        display: none;
    }

    .fs-carousel-slide > img:nth-of-type(2) {
        display: none;
    }

    .fs-carousel-slide > img:nth-of-type(3) {
        display: block;
    }
}