/* No table */
/* .card-row {
	display: none;
} */

.card-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 3rem; 
}
.card-item {
	text-align: center;
    width: 45%;
}

@media (max-width: 767px) {
	/* .table {
		display: none;
	} */
	
	.card-row {
		display: flex;
		flex-direction: column;
		justify-content: center;
        margin-bottom: 0; 
	}
    .card-item {
	    margin-bottom: 3rem;
        width: 100%;
    }
}