.colored-cards-container-v2 .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
}

.colored-cards-container-v2 .card {
    width: calc(20% - 0.8rem);
    padding: 30px 24px;
    border-radius: 8px;
}

.colored-cards-container-v2 .card.theme1 {
    background-color: #DBFFEC;
}

.colored-cards-container-v2 .card.theme2 {
    background-color: #FFFBE1;
}

.colored-cards-container-v2 .card.theme3 {
    background-color: #D8F4FA;
}

.colored-cards-container-v2 .card.theme4 {
    background-color: #FFE1FF;
}

.colored-cards-container-v2 .card.theme5 {
    background-color: #FFF1E9;
}

.colored-cards-container-v2.take-presedence .card .card-title {
    margin: 0;
    margin-top: revert;
}

.colored-cards-container-v2 .card-title {
    font-size: initial;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0;
}

.colored-cards-container-v2 .card-title > .bold-text {
    font-weight: 700;
}

.colored-cards-container-v2 .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 16px;
    box-shadow: 0 0 32.14px 0 rgba(29, 136, 237, 0.15);
}

.colored-cards-container-v2 .icon-box > img {
    width: 25px;
    height: 25px;
}

@media (max-width: 1080px) {
    .colored-cards-container-v2 .card {
        width: calc(50% - 0.5rem);
    }

    .colored-cards-container-v2 .icon-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .colored-cards-container-v2 .card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .colored-cards-container-v2 .title {
        margin-bottom: 30px;
    }
}