.cards_container {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    @media (min-width: 1300px) {
        width: 100%;
        max-width: unset;
    }
}
.card {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: left;
    img {
        width: 40px;
        height: 40px;
    }
    @media (min-width: 768px) {
        flex-direction: column;
        text-align: center;
        align-items: center;
        img {
            width: 80px;
            height: 80px;
        }
    }
}
.card_text_container {
    display: flex;
    flex-direction: column;
    @media (min-width: 768px) {
        gap: 10px;
        align-items: center;
    }
}
