.cards-with-text-section {
    background-color: #E9C107;
    padding: 48px 0;
}

.cards-with-text-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.cards-with-text-section .card {
    text-align: center;
}

.cards-with-text-wrapper h3 {
    margin-bottom: 16px;
}

.cards-with-text-wrapper p {
    font-weight: 500;
}

@media (max-width: 991.98px) {

    .cards-with-text-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }

}

@media (max-width: 767.98px) {

    .cards-with-text-section {
        padding: 64px 0;
    }

    .cards-with-text-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 64px;
        text-align: center;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

}