.footer-component {
    background: var(--palette-100);
}

.footer-wrapper {
    padding: 0 20px;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.footer-stay-connected {
    display: flex;
    max-width: 320px;
    color: var(--white);
    font-size: .875em;
    flex-wrap: wrap;
    flex-flow: column;
}

.footer-stay-connected-item {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.footer-stay-connected-title {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 0;
}

.footer-stay-connected-icon {
    width: 25px;
    margin-right: 30px;
    display: flex;
}

.footer-stay-connected-icon img {
    max-width: 100%;
    height: auto;
}

.footer-menu-links-wrapper {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.footer-menu-links-item {
    /* margin-right: 75px; */
    margin-right: 65px;
}

.footer-menu-links-item:last-child {
    margin-right: 0;
}

.footer-menu-list {
    list-style: none;
    font-size: .875em;
    margin: 0;
    margin-bottom: 20px;
}

.footer-menu-list > .menu-item {
    font-weight: 300;
}

.footer-menu-list .menu-item a {
    text-decoration: none;
    color: var(--white);
}

.footer-menu-list .menu-item .sub-menu {
    list-style: none;
    color: var(--white);
    margin-left: -20px;
}

.footer-menu-list .menu-item .sub-menu > .menu-item {
   font-weight: normal;
}

#site-footer a:focus, #site-footer a:hover {
    text-decoration: none;
}

.footer-menu-icons-wrapper {
    display: flex;
    margin: 0.5rem 0 0 2rem;
    min-height: 90px;
    align-items: flex-end;
}

.footer-menu-icons-wrapper .footer-menu-icon {
    height: 30px;
    width: 30px;
    background: var(--palette-700);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: all ease-out 0.3s;
}

.footer-menu-icons-wrapper .footer-menu-icon:hover {
    background-color: var(--palette-300);
}

.footer-menu-list 
.menu-item-btn {
    display: none;
}

/* @media (max-width: 960px) {} */

@media (max-width: 1024px) { 
    .footer-wrapper {
        flex-wrap: wrap;
        flex-direction: column; 
    }

    .footer-stay-connected {
        flex-direction: row;
        margin: 0 auto;
        margin-bottom: 20px;
        max-width: 800px;
        flex-wrap: wrap;
    }

    .footer-stay-connected-item {
        flex: 1;
        align-items: center;
        justify-content: center;
    }
    
    .footer-stay-connected-item:first-child {
        flex: 1 0 100%;
        justify-content: center;
    }

    .footer-menu-links-wrapper {
        flex-grow: unset;
        justify-content: center;
    }

    .footer-menu-links-item {
        margin-right: 35px;
    }

}

@media (max-width: 768px) { 
    .footer-wrapper {
        flex-wrap: wrap;
        flex-flow: column; 
    }

}

@media (max-width: 640px) { 
    .footer-wrapper {
        flex-wrap: wrap;
        flex-flow: column; 
        max-width: 250px;
    }

    .footer-stay-connected-item {
        flex: unset;
        justify-content: flex-start;
        flex-direction: column;
        text-align: center;
    }

    .footer-stay-connected-item:first-child {
        flex: unset;
    }

    .footer-stay-connected-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-menu-links-wrapper {
        justify-content: center;
        flex-direction: column;
    }

    .footer-menu-links-item {
        margin-right: 0;
        text-align: center;
    }

    .footer-menu-icons-wrapper {
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .footer-menu-list > .menu-item {
        margin: 0;
    }

    .footer-menu-list .menu-item .sub-menu {
        margin: 0;
        margin-top: 10px;
    }

    .footer-menu-list .menu-item .sub-menu > .menu-item {
        margin: 0;
    }
}