footer {
    /* background: var(--dark-color); */
    background: var(--black);
    width: 100%;
}

.footer-container {
    width: 100%;
    padding: 3% 5%;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.footer-content {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 1rem 2.5rem 2.5rem;
    width: 100%;
    position: relative;
}

.footer-logo {
    flex: 3 0 0;
    height: 100%;
}

.footer-logo svg {
    width: 100px;
    height: auto;
    fill: var(--white);
}

.footer-contact, .footer-vision {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.footer-contact {
    flex: 1 1 auto;
}

.footer-contact h2 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-contact-detail {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}   

.footer-contact-detail a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: max-content;
}

.footer-contact-detail h4 {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: #ffffff99;
}

.footer-contact-detail span {
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--white);
    transition: all .2s ease-out;
    width: max-content;
}

.footer-contact-detail a:hover span {
    color: var(--primary-color);
}

.footer-vision p{
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--white);
    width: max-content;
}

.footer-social-media {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.footer-social-media a, .footer-social-media a svg{
    --size: 32px;
    height: var(--size);
    width: var(--size);
    color: var(--white);
    fill: var(--white);
    text-decoration: none;
    transition: all .2s ease-out;
}

.footer-social-media a:hover, .footer-social-media a:hover svg {
    color: var(--primary-color);
    fill: var(--primary-color);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff33;
    padding: 2rem 2.5rem;
}

.footer-sectors {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.5rem;
}

.footer-sectors span {
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--white);
}

.footer-sectors-link {
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
}

.footer-sectors-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 40px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 80px;
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: all .2s ease-in-out;
    text-wrap: nowrap;
    
}

.footer-sectors-link a:hover,
.footer-sectors-link a:focus {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    outline: none;
}

.footer-allmass-copyright {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--white);
}


/* 
#MARK: Go-Up 
*/

.go-up {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    /* border-radius: 999px; */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */

    /* opacity: 0;
    pointer-events: none;
    transform: translateY(12px); */
    transition:
        opacity .5s cubic-bezier(.19, 1, .22, 1),
        transform .5s cubic-bezier(.19, 1, .22, 1);
}

/* .go-up.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
} */

.go-up button {
    border: none;
    outline: none;
    background: transparent;
    background: var(--primary-color);
    padding: 0.5rem;
    width: auto;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
}

.go-up button span {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.go-up button svg, .go-up button svg path {
    fill: var(--white);
    width: 2rem;
    height: 2rem;
}

@media screen and (max-width: 991px) {

    .footer-logo {
        flex: 2 0 0;
    }

    .footer-sectors-link {
        column-gap: 1rem;
    }
    .footer-sectors-link a {
        min-width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        row-gap: 0;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;
        row-gap: 2rem;
    }

    .footer-logo {
        flex: 0 0 100%;
    }
    .footer-logo svg {
        width: 80px;
    }

    .footer-contact {
        flex: 0 0 100%;
    }

    .footer-vision {
        flex: 0 0 100%;
        width: 100%;

        p {
            width: 100%;
            text-wrap: wrap;
        }
    }

    .footer-bottom {
        flex-direction: column;
        row-gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-sectors {
        width: 100%;
        flex-direction: column;
        align-items: start;
        row-gap: 1.5rem;
    }

     .footer-sectors-link {
        width: 100%;
    }

    .footer-sectors-link a {
        min-width: max-content;
        flex: 1 0 auto;
    }
    
}

@media screen and (max-width: 575px) {
    .footer-logo svg {
        width: 60px;
    }

    .footer-container {
        padding: 3% 3%;
    }

    .footer-sectors-link {
        column-gap: 0.25rem;
    }

    .footer-content, .footer-bottom {
        padding-left: 2%;
        padding-right: 2%;
    }

}