.swiper {
    width: 100%;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
}

.slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slide-content {
    width: 80%;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 20px;
    margin-left: 5%;
}

@media screen and (min-width: 992px) {
    .slide-content {
        width: 40%;
        background: rgba(0, 0, 0, 0.4);
        padding: 2rem;
    }
}

.slide-content .slide-title {
    font-weight: bold;
    line-height: 55px;
}