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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-272 {
        padding: var(--sectionPadding);
        /* Navigation Links */
        /* Contact Links */
    }
    #cs-footer-272 .cs-container {
        width: 100%;
        /* reset on tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 5.5rem;
        row-gap: 2rem;
    }
    #cs-footer-272 .cs-logo-group {
        /* takes up all the space, lets the other ul's wrap below it */
        width: 100%;
        position: relative;
    }
    #cs-footer-272 .cs-logo {
        /* 210px - 240px */
        width: clamp(13.125rem, 8vw, 15rem);
        height: auto;
        display: block;
        /* 28px - 44px */
        margin-bottom: clamp(1.75rem, 4.17vw, 2.75rem);
    }
    #cs-footer-272 .cs-logo-img {
        width: 100%;
        height: auto;
    }
    #cs-footer-272 .cs-logo-img.dark {
        display: none;
    }
    #cs-footer-272 .cs-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 2rem;
        width: 78%;
        /* changes to 305px at desktop */
        max-width: 33.75rem;
        color: var(--bodyTextColor);
    }
    #cs-footer-272 .cs-social {
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.75rem;
        position: absolute;
        top: 0;
        right: 0;
    }
    #cs-footer-272 .cs-social-link {
        width: 1.5rem;
        height: 1.5rem;
        background-color: #4e4b66;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        transition:
            transform 0.3s,
            background-color 0.3s;
    }
    #cs-footer-272 .cs-social-link:hover {
        background-color: #1a1a1a;
        transform: translateY(-0.1875rem);
    }
    #cs-footer-272 .cs-social-img {
        height: 0.8125rem;
        width: auto;
        display: block;
    }
    #cs-footer-272 .cs-nav {
        padding: 0;
        margin: 0;
    }
    #cs-footer-272 .cs-nav-li {
        list-style: none;
        margin-bottom: 1rem;
    }
    #cs-footer-272 .cs-nav-li:last-of-type {
        margin-bottom: 0;
    }
    #cs-footer-272 .cs-header {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        color: var(--bodyTextColor);
        position: relative;
    }
    #cs-footer-272 .cs-header:after {
        content: "";
        width: 2rem;
        height: 0.25rem;
        margin: 1rem auto 1.5rem 0;
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #cs-footer-272 .cs-nav-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        color: var(--bodyTextColor);
        position: relative;
    }
    #cs-footer-272 .cs-nav-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 0.125rem;
        background: var(--bodyTextColor);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    #cs-footer-272 .cs-nav-link:hover:before {
        width: 100%;
    }
    #cs-footer-272 .cs-contact {
        margin: 0;
        padding: 0;
        width: 35%;
    }
    #cs-footer-272 .cs-contact-li {
        list-style: none;
        margin-bottom: 0rem;
    }
    #cs-footer-272 .cs-contact-li:last-of-type {
        margin-bottom: 0;
    }
    #cs-footer-272 .cs-contact-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        text-align: left;
        color: var(--bodyTextColor);
        display: inline-block;
    }
    #cs-footer-272 .cs-contact-link:hover {
        text-decoration: underline;
    }
    #cs-footer-272 .cs-address {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-footer-272 .cs-container {
        max-width: 80rem;
        row-gap: 0;
    }
    #cs-footer-272 .cs-contact {
        flex-direction: row;
        justify-content: space-between;
        border-top: none;
    }
    #cs-footer-272 .cs-contact-li {
        margin: 0;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-272 .cs-container {
        /* pushes all flex children to the top */
        align-items: flex-start;
        justify-content: flex-end;
    }
    #cs-footer-272 .cs-logo-group {
        /* pushes everything to the right of it as far as possible in a flexbox */
        margin-right: auto;
        width: auto;
        max-width: 19.0625rem;
    }
    #cs-footer-272 .cs-text {
        width: 100%;
    }
    #cs-footer-272 .cs-social {
        flex-direction: row;
        position: relative;
        top: auto;
        right: auto;
    }
    #cs-footer-272 .cs-contact {
        width: auto;
    }
}

                                /* Dark, elegant footer (platinum/charcoal scheme) */
#cs-footer-272{
  background:var(--platinumDark); color:#4e4b66
;
}
#cs-footer-272 .cs-nav-link:before{ background:#fafbfc; opacity:.4; }
#cs-footer-272 .cs-social-link:hover{ background:var(--primary); }

/* Bottom bar */
#cs-footer-272 .cs-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:2rem;
}
#cs-footer-272 .cs-bottom-inner{
  max-width:80rem; padding:.75rem 1rem; margin:0 auto;
  display:flex; gap:1rem; justify-content:space-between; align-items:center;
  font-size:.9375rem; color:rgb(78, 75, 102);
}
#cs-footer-272 .cs-bottom a{ color:#cfd3dc; text-decoration:none; }
#cs-footer-272 .cs-bottom a:hover{ text-decoration:underline; }
