:root {
    /* footer */
    --lightest-blue: #E1F7F5;
    --light-blue: #1679AB;
    --blue: #102C57;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    bottom: 0;
    left: 0;

    background: var(--lightest-blue);
    padding: 8px 10%;
    width: 100%;
    height: 60px;

    font-weight: 400;
    box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

.nav-link.footer-nav {
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 500;
}

.nav-link.footer-nav.active,
.nav-link.footer-nav:hover {
    color: var(--blue);
    font-size: 14px;
}

footer p {
    font-size: 16px;
    text-align: center;
    color: var(--light-blue);
}



/* ------------------ responsiveness -------------------*/
@media all and (max-width: 1024px) {
    footer {
        padding: 8px 8%;
    }
}

@media only screen and (max-width: 850px) {
    footer {
        align-items: center;
        justify-content: center;
        height: 45px;
    }

    footer nav {
        display: none;
    }
}