.mySwiper {
    width: 98%;
    height: 64vh;
    margin-bottom: 15px;
    margin-top: 20px;
    border-radius: 10px;
}

.slider-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slider-image {
    object-fit: cover;
    width: 100vw;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiperDesc {
    position: absolute;
    bottom: 30px;
    background-color: var(--black-grey);
    opacity: 0.90;
    padding: 10px 20px;
    margin-left: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px
}

.swiper-pagination-bullet-active {
    background-color: var(--black-grey) !important;
}

@media only screen and (max-width: 768px) {
    .swiperDesc {
        max-width: 60%;
    }
}

@media only screen and (max-width: 600px) {

    .swiper {
        height: 20rem;
    }
}

@media only screen and (max-width: 480px) {

    .swiper {
        height: 20rem;
    }

    .swiper-slide img {
        width: auto;
    }
}