.section-cat .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.cat__item {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1.5rem;
    height: 100%;
}

.cat__item img {
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: 0.5s;
    height: 100%;
}


.cat__item:hover img {
    transform: scale(1.05);
}

@media (max-width:575.98px) {
    .cat__item img {
        aspect-ratio: 4 / 1;
        object-position: center;
    }
}