﻿
.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    
    
    /**/
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--footer-color);
    color: var(--footer-text-color);
    text-align: left;
    column-gap: 0.5em;
    padding: 0em;

}

    .footer .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3.5rem;
        padding: 0px;
    }

.footer-row .footer-col h4 {
    color: var(--footer-text-color);
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col {
    text-align: center;
}

.footer-col a {
    color: var(--footer-text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--footer-text-color);
}

    .footer-col a:hover {
        background-color: var(--navbar-hover-color);
        text-decoration: none;
    }

.footer-col p {
    margin: 20px 0;
    color: var(--footer-text-color);
    max-width: 300px;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
}

.footer ul {
    list-style: none;
    flex-direction: column;
    break-inside: avoid;
    page-break-inside: avoid;
}





