/* ==================================================
   STEM BENEFITS
   ================================================== */

.stem-benefits {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 4rem 1.5rem 6rem;
    background: #f4f6f9;
}

.stem-benefits__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.stem-benefits__header {
    margin-bottom: 2rem;
}

.stem-benefits__header h2 {
    margin: 0;
    color: #004b87;
    font-family: "Oswald", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
}

.stem-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.stem-benefit-card {
    padding: 2rem;
    border: 1px solid #d8dee6;
    border-top: 4px solid #00529b;
    background: #ffffff;
}

.stem-benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin-bottom: 1.25rem;
    color: #287fc1;
    font-size: 3rem;
    line-height: 1;
}

.stem-benefit-card__icon svg {
    width: 64px;
    height: 64px;
}

.stem-benefit-card h3 {
    margin: 0 0 0.75rem;
    color: #00529b;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stem-benefit-card p {
    margin: 0;
   /* color: #5c6875; */
   color: #000;
    font-size: 1.05rem;
    line-height: 1.55;
}


/* Tablet */

@media (max-width: 900px) {

    .stem-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 600px) {

    .stem-benefits {
        padding: 3rem 1.25rem 4rem;
    }

    .stem-benefits__header h2 {
        font-size: 1.9rem;
    }

    .stem-benefits__grid {
        grid-template-columns: 1fr;
    }

    .stem-benefit-card {
        padding: 1.5rem;
    }

}




.fa-stem {
    color: #00529b;
}



.stem-benefits--design-icons .stem-benefit-card__icon {
    justify-content: flex-start;
    min-height: 36px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.stem-benefits--design-icons .stem-benefit-card__icon svg {
    width: 30px;
    height: 30px;
}