.main-footer {
    text-align: center;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    border-top: unset;
    background-color: #f8f2ed;
}

.main-footer .child {
    flex: 1;
    min-width: 150px;
    margin: 10px 0;
}

.main-footer .copy {
    text-align: left;
}

.main-footer nav {
    height: 100%;
}

.main-footer small {
    font-size: 0.8em;
}

.main-footer li {
    font-size: 0.8em;
    color: #655547;
}


@media (max-width: 768px) {
    .content-wrapper{
        margin-top: 0px!important;
    }
    .main-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-footer .copy {
        text-align: center;
    }

    .main-footer .child {
        width: 100%;
    }

    .main-footer nav .footer-links {
        justify-content: center;
    }

    .main-footer li {
        font-size: 0.9em;
    }

    .main-footer small {
        font-size: 0.75em;
    }
}


.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: right;
    gap: 15px;
}


.footer-links li {
    display: inline;
}
.footer-links a {
    text-decoration: none;
    color: #007bff;
    font-size: .8em;
}
.footer-links a:hover {
    text-decoration: underline;
}