/* groupcards */

section.groupcards span {
    color: var(--ColorType1);
}

section.groupcards .groupcards__heading {
    max-width: 830px;
    width: 100%;
    margin-bottom: 60px;
}

section.groupcards h5 {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin-bottom: 0;
}

section.groupcards a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

section.groupcards .card {
    background: var(--ColorBlack);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    border: none;
}

section.groupcards .group_cards {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}

section.groupcards.duo .group_cards {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 2fr 2fr;
}

section.groupcards .card a,
section.groupcards .card p {
    color: white;
}

@media (max-width: 1440px) {
    section.groupcards.duo .group_cards,
    section.groupcards .group_cards {
        grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    }
    section.groupcards .card {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1199px) {
    section.groupcards .groupcards__heading {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    section.groupcards .groupcards__heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    section.groupcards.duo .group_cards,
    section.groupcards .group_cards {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}