.grid_cards {
    .grid_cards_wrapper {
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
        @media screen and (min-width: 992px) {
            grid-template-columns: repeat(4, 1fr);
        }
        grid-template-rows: repeat(2, auto);
        .grid_cards_content {
            background-color: #FFFFFF;
            border: 1px solid #DDE1E6;
            padding: 16px;
            height: 100%;
            font-weight: bold;
            text-align: center;
            h2, h3, p {
                margin: 0;
            }
            h2, h3 {
                font-size: 16px;
            }
            h2 {
                color: #7E7BB4;
            }
            h3 {
                text-transform: capitalize;
            }
            .ativos {
                color: #3CB167;
            }
            .autodesistência {
                color: #FC6134;
            }
            .inativos {
                color: #7E7BB4;
            }
            p {
                color: #21272A;
                font-size: 54px;
            }
        }
    }
}