/* FOOTER */
	#footer-section {
        min-height: 10vh;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        background-color: white;
        background-color: #eeeeee;
        padding: calc(var(--size-header-height) / 2) var(--size-header-height);
        font-size: 1.2rem;
    }

/* MOBILE LAYOUT */

    @media (max-width: 767px) and (hover: none) and (pointer: coarse),
    (max-width: 767px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 0) {
        #footer-section {
            justify-content: center;
            text-align: center;
        }
    }