.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.about-us-section {
    text-align: center;
    padding: 5vw;
}

.about-section-header {
    font-size: clamp(1.2rem, 3vw, 3rem);
}

.about-section-subheader {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 500;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}
@media only screen and (max-width:  1156px) {        
    .about-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width:  768px) {
    .about-cards {
        grid-template-columns: auto;
    }
}

.card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.35);
}

.card-title {
    font-size: clamp(.9rem, 2vw, 1.5rem);
    font-weight: 600;
}

.card-title-svg {
    height: auto;
    width: clamp(1.2rem, 2vw, 1.9rem);
    vertical-align: bottom;
}

.card-title-svg.large {
    width: clamp(2rem, 4vw, 4rem);
}

.card-text {
    font-size: clamp(.9rem, 2vw, 1.5rem);
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5vw;
}

@media only screen and (max-width:  1156px) {        
    .why-cards {
        grid-template-columns: 1fr 1fr;

        & .card {
            margin: 3vw;
            padding: 1rem;

            &:nth-last-child(1) {
                grid-column: span 2;
            }
        }
    }
}
@media only screen and (max-width:  768px) {
    .why-cards {
        grid-template-columns: auto;

        & .card:nth-last-child(1) {
            grid-column: 1;
        }
    }
}