/***** Important Notes Block *****/
.importantNotes-block-container {
    padding: 1rem 0 2rem;
    background-color: var(--secondary-color);
}

.importantNotes-grid {
    display: flex;
    max-width: 80%;
    justify-content: center;
    padding: 0;
    gap: 1rem;
    margin: auto;
}

.importantNotes-grid .note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0px 8px 10px var(--primary-color);
}

.importantNotes-grid .note img {
    height: 6rem;
    margin: 0;
}

.importantNotes-grid .note p {
    color: var(--primary-color);
    font-family: var(--primary-font);
}

.importantNotes-grid a {
    flex-grow: 1;
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

.importantNotes-grid .note a svg {
    width: .75rem;
    display: inline-block;
    margin-right: .65rem;
}

@media only screen and (max-width: 768px) {
    .importantNotes-grid {
        padding: 0;
        max-width: 90%;
        flex-direction: column;
    }
}