/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */

.footer {
    position: relative;
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 2.6rem 0;
    color: var(--footer-text-color-base);
;
    font-size: 1.5rem;
    line-height: 1.2;
}

.footer .footer__logo {
    display: inline-block;
    margin-bottom: 2.2rem;
}

.footer .footer__inner {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .footer__content {
    flex: 0 0 16.3%;
    max-width: 16.3%;
    padding-right: 1rem;
}

.footer .footer__cols {
    display: flex;
    flex: 1;
    margin: 0rem -1rem;
}

.footer .footer__col {
    padding: 0rem 1rem;
    flex: 1;
}

.footer .footer__col--size1 {
    flex: 0 0 26.2%;
    max-width: 26.2%;
}

.footer .footer__col--size2 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer .footer__col--size3 {
    flex: 0 0 31.8%;
    max-width: 31.8%;
}

.footer h5 {
    font-size: 2.2rem;
    color: var(--footer-text-color-base);
    margin-bottom: 1rem;
    font-family: var(--header-text-font);
}

.footer .footer__nav ul {
    list-style: none;
}

.footer .footer__nav li + li {
    margin-top: 1.2rem;
}

.footer .footer__nav li a {
    color: var(--footer-text-color-anchor);
    text-decoration: none;
    font-size: 14px;
    font-family: var(--body-text-font-alt);
}

.footer .footer__nav a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.5rem 0 1.8rem;
    }

    .footer .footer__inner {
        display: block;
    }

    .footer .footer__nav {
        text-align: left;
    }

    .footer .footer__logo {
        max-width: 4.3rem;
        margin-bottom: 3rem;
    }

    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__cols {
        display: block;
        margin: 0 0 -4.5rem;
    }

    .footer .footer__col {
        text-align: left;
        padding: 0;
        margin-bottom: 4.5rem;
    }

    .footer .footer__col--size1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.copyright {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: var(--body-text-font-alt);
}

.copyright span {
    display: block;
}

@media only screen and (max-width: 767px) {
    .copyright {
        text-align: left;
    }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.socials li + li {
    margin-left: 1.6rem;
}

.socials li a {
    transition: opacity 0.3s;
}

.socials li:hover a {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .socials li {
        transform: scale(0.95);
    }
    .socials li + li {
        margin-left: 1.6rem;
    }
    .socials ul {
        justify-content: flex-start;
    }
}

.line {
    width: 1px;
    height: 7px;
    flex-grow: 0;
    background-color: rgba(187, 187, 187, 0.5);
}