/* Footer */
.footer-container {
    border: unset;
    text-align: center;
    color: var(--sidebar-bg-color);
}

.footer-block-wrapper a {
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.footer-block-wrapper a.footer-border {
    border: 1px solid white;
    border-radius: 100px;
}

.footer-block-wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 1rem 0;
}

.footer-block-wrapper a {
    color: white !important;
}

@media only screen and (min-width: 1024px) {
    .footer-block-wrapper {
        flex-direction: row;
    }
}

.footer-left,
.footer-right {
    text-align: left;
}

.footer-left {
    height: 2rem;
}

.footer-right {
    line-height: 3;
    align-self: center;
}

@media only screen and (min-width: 768px) {
    .footer-left {
        align-self: center;
    }
}

.footer-middle {
    padding-top: 1rem;
    flex-grow: 1;
    padding-bottom: 1rem;
    font-size: 2.5rem;
    font-family: var(--title-font);
    font-weight: 700;
}