﻿
.infoCardListContainer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
    align-items: flex-start;
}

.infoCard {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.infoCardContentBg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    width: 100%;
    height: 100%;
}

.infoCardContent {
    width: 47%;
    float: right;

}

.infoCardContent > p {
    margin: 0;
}

.infoCardImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

/* Responsive styles */

@media screen and (max-width: 768px) {
    .infoCard {
        order: 2;
    }

    .infoCardImage {
        order: 1;
        position: relative;
        height: 250px;
        width: 100%;
    }

    .infoCardContent {
        width: 100%;
    }
}
