footer {
    background-color: #1B386D;
    display: flex;
    flex-direction: row;
}

#footer_content {
    margin-left: 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer_heading {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 1.5em;
    font-weight: 500;
}

.footer_link {
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
    color: white;
    text-decoration: none;
}

.footer_link:hover {
    text-decoration: underline;
}

.footer_links_list {
    line-height: 2;
    list-style: none;
    padding: 0;
}

#helpful_links_list {
    column-count: 1;
}

.white_line {
    border: 1px solid white;
    width: 100%;
    min-width: 100px;
}

#online_services_container, #taxes_container, #helpful_links_container {
    margin-right: 30px;
}

#taxes_links_list {
    column-count: 2;
}

/* This is outside the 3 screen definition to accomodate the links lists */
@media (max-width: 1206px) {
    #taxes_links_list {
        column-count: 1;
    }
}