#footer .footer-content {
    font-size: 0.8rem;
    background-color: #f40;
    color: white;
    width: 100%;
}

#footer .footer-content > * {
    padding: 20px;
}

#footer .footer-content > * + * {
    border-top: 1px solid #fff;
}

#footer .footer-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

#footer .footer-content a {
    color: #fff;
    text-decoration: underline;
}

#footer .footer-content nav a {
    font-weight: 600;
    text-decoration: none;
}

#footer .footer-content a:hover {
    filter: brightness(0.9);
}

#footer .footer-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
}

#footer .footer-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #fff;
    background-color: #d3420d;
}

@media (min-width: 768px) {

    #footer .footer-content {
        display: flex;
        justify-content: space-between;
    }

    #footer .footer-content > * + * {
        border-top: none;
        margin-top: 0;
        border-left: 1px solid #fff;
    }

    #footer .footer-bottom{
        flex-direction: row;
    }
}

