.cases__listContainer{
    display: flex;
    gap:2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: var(--max-sm-width);
    margin-bottom: 5rem;
}
.cases__card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}
.casesCard__image{
    width: 100%;
    height: 18rem;
}
.casesCard__image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.casesCard__Information{
    padding: 5rem;
    background-color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.casesCard__Information h3{
    color: var(--blue);
    text-align: center;
    font-size: var(--fs-medium);
    font-weight: 700;
    text-transform: uppercase;
}
.casesCard__Information p{
    color: var(--gray-50);
    text-align: center;
}
@media (min-width: 768px){
    .cases__card{
        flex-direction: row;
        height: 30rem;
    }
    .cases__card:hover{
        transform: scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }
    .cases__card:nth-child(even){
        flex-direction: row-reverse;
    }
    .casesCard__image{
        width: 100%;
        height: 40rem;
    }
    .casesCard__image,
    .casesCard__Information{
        width: 50%;
        height: 100%;
    }
}