@charset "UTF-8";
/* CSS Document */

/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

/* Mobile - 360px - Contains hover state */
@media only screen and (min-width: 0rem) {
    #cs-footer-103 {
        padding: 2.5em 1em;
    }
    #cs-footer-103 .cs-container {
        width: 100%;
        max-width: 80em;
        margin: auto;
    }
    #cs-footer-103 .cs-ul {
        padding: 0;
        margin: auto;
        display: flex;
        /* make flexbox arrange top to bottom */
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #cs-footer-103 .cs-li {
        list-style: none;
        text-align: center;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #cs-footer-103 .cs-copyright {
        font-size: 0.9375rem;
        line-height: 1.5em;
        margin-top: 1.25rem;
        color: var(--bodyTextColor);
        display: block;
        /* send to first position at the bottom */
        order: 1;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #cs-footer-103 .cs-link {
        /* 15px - 17px */
        font-size: 0.9375rem;
        line-height: 1.5em;
        margin-top: 1.25rem;
        text-decoration: none;
        color: var(--bodyTextColor);
        position: relative;
    }
    #cs-footer-103 .cs-link:hover:before {
        width: 100%;
    }
    #cs-footer-103 .cs-link:before {
        /* top right box */
        content: "";
        width: 0%;
        height: 0.0625rem;
        background: var(--secondary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
    #cs-footer-103 .cs-ul {
        flex-direction: row;
        /* push everything to the left */
        justify-content: flex-start;
        /* 44px - 88px */
        gap: clamp(2.75rem, 7vw, 5.5rem);
    }
    #cs-footer-103 .cs-copyright {
        /* marign auto on the right pushes away from the rest of the flex children */
        margin: 0 auto 0 0;
        /* send to the left most position */
        order: -1;
    }
}