.cards-wrapper {
    display: flex;
    justify-content: center;
}

.card img {
    object-fit: fill;
    border-radius: 5px;
}

.card-text-justified {
    text-align: justify;
}

.image-wrapper {
    border-radius: 5px;
    height: 175px;
    object-fit: cover;
}

.card-btn {
    text-align: center;
}

.card {
    width: 600px;
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    border-radius: 5px;
}

.carousel-inner {
    padding: 1em;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(22, 22, 26, 0.5);
    width: 8vh;
    height: 8vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .cards-wrapper {
        display: flex;
        justify-content: center;
    }
    .card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: fill;
    }
    .card {
        margin: 0 0.5em;
        box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
        border: none;
        border-radius: 5px;
    }
    .carousel-inner {
        padding: 1em;
    }
    .carousel-control-prev,
    .carousel-control-next {
        background-color: rgba(22, 22, 26, 0.5);
        width: 8vh;
        height: 8vh;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }
}