<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------ CONTAINER ------------------------ */
.footer-container{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%), url(../../../../uploads/INNOMedX-Pattern-9.png), lightgray 50% / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ------------------------ FOOTER TITLE ------------------------ */
.footer-title-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.footer-title-wrapper p{
    color:  white;
    text-align: center;
    font-style: normal;
    line-height: normal;
}


/* ------------------------ FOOTER WHITE MENU ------------------------  */
.footer-menu-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    border-radius: 16px;
    background: var(--Blanc, #FFF);
}
/* ------------------------ LOGO ------------------------ */
.footer-logo{
    padding-left: 2.5rem;
}
.footer-logo img{
    height: 100%;
    max-width: fit-content;
}
/* ------------------------ FOOTER CONTENT MENU ------------------------ */
.footer-content{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 44px 40px;
}
.footer-content-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
/* Sub title */
.footer-content-menu p{
    color: #222223;
    font-size: var(--wp--preset--font-size--text-s);
    font-style: normal;
    font-weight: 500;
    line-height:  19.6px ;
    letter-spacing: 0.56px;
    opacity: 0.6;
    margin-top: 0;
}
/* Sub Links */
.footer-content-links{
    display: flex;
    flex-direction: column;
    
}
.footer-content-links a{
    color: #222223;
    font-size: var(--wp--preset--font-size--text-l);
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px ;
    text-decoration: none;
   
}
/* ------------------------ CONTACT ------------------------ */
.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 2.5rem;
}
.footer-contact-number{
    padding-top: 1rem;
}
.footer-contact-number a, .footer-contact-mail a {
    color: #222223;
    font-size: var(--wp--preset--font-size--text-s);   
    font-style: normal;
    font-weight: 600;
    line-height: 18.2px ;
    text-decoration: none;
}

/* ------------------------ CREDENTIALS ------------------------ */
.footer-credentials-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem 1rem 2.5rem;
}
.footer-credentials-wrapper p{
    color: white;
    font-size: var(--wp--preset--font-size--text-m);   
    font-style: normal;
    font-weight: 400;
    line-height:  21px ; 
}

.footer-credentials-wrapper a ,.footer-credentials-wrapper a:visited {
    text-decoration: none;
    color: white;
}


/* ------------------------ SVG BACK TO TOP ------------------------ */
.footer-back-to-top svg{
    border-radius: 100px;
    border: 1.5px solid var(--Blanc, #FFF);
    background: var(--Blanc, #FFF);
    display: flex;
    width: 41px;
    height: 41px;
    padding: 11px 10px 10px 11px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-menu-wrapper{
        flex-direction: column;
        /* max-width: 100%; */
        margin: 0 var(--container-space);
    }
    .footer-logo {
        padding-left: 0;
        padding-top: 2.5rem;
    }
    .footer-contact {
        align-items: center;
        padding-right: 0;
        padding-bottom: 2.5rem;       
    }
    .footer-credentials-wrapper {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0.6rem 1rem  ;
        flex-direction: column;
    }
    .footer-title-wrapper{
        padding: 0 var(--container-space);
    }
    .footer-title-wrapper span{
        font-size: 22px !important;
    }

    .footer-content-links{
        gap: 1em;
    }
}

@media (max-width:1200px){
    .footer-logo svg{
        width:100%
    }
}</pre></body></html>