/* CSS for Cards flexible section */ 
/* Import Main Css */
.cards__image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

    .cards__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

.cards__row {
    border-top: 1px solid var(--color-muted);
}

.cards__row .col-md-6:first-child {
    border-right: 1px solid var(--color-muted);
}