.footer-section {
    background-color: #fff;
    color: #000;
}
.footer-section .container{
    width: 70% !important;
    padding: 0 !important
}  
  
.footer-top {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
  
.footer-logo, .footer-navigation, .footer-contact {
    flex: 1;
    margin: 10px;
}
.footer-contact a:hover{
    color: #006EAB;
}
.footer-logo img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 350;
    color: #000;
}

.social-icons{
    display: flex;
    gap: 12px;
}

.footer-logo i {
    color: #006EAB;
    padding: 5px;
    border-radius: 5px;
    background-color: #006FAC1A;
    align-content: center;
    width: 34px;
    height: 34px;
    font-size: 24px;
} 

.footer-navigation a{
    color: #000;
}
.footer-navigation a:hover{
    color: #006EAB;
    text-decoration: underline;
}
.footer-navigation h3{
    margin-bottom: 0 !important;
}
.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 10px 
}
.footer-navigation h3, .footer-contact h3{
    color: #000;
}
.footer-middle {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}
  
.footer-middle h3, .footer-bottom p {
    margin: 5px 0;
}

.funding-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.funding-logos h3{
    color: #000;
    font-size: 16px;
    font-weight: 450;

}
  
.funding-logos img {
    width: 130px;
    margin: 5px;
}
  
.footer-bottom {
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: center;
    padding: 20px 20px 40px 20px;
    gap: 20px;
}

.footer-bottom a{
    text-decoration: underline !important;
    color: #000 !important;
}

.date-separator {
    margin-right: 16px !important;
    margin-left: 16px !important;
    font-weight: 300;
    color: #B9CAD4;
    font-size: 14px;
    margin-bottom: 0 !important;
}

.custom-hr-divisor-footer{
    border-top: 1px solid #006FAC33;
}

.top-hr-footer{
    margin-top: 120px;
}

.custom-hr-divisor-footer-insider{
    display: none;
    border-top: 1px solid #006FAC33;
    width: 100%;
}

@media (max-width: 1240px){
    .footer-section .container{
        width: 85% !important;
    }  
}
@media (max-width: 1024px){
    .footer-section .container{
        width: 100dvw !important;
    }
}
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .footer-top div:first-child {
        margin-right: 0px;
    }

    .social-icons{
        justify-content: center;
    }

    .custom-hr-divisor-footer-insider{
        display: block;
        width: 100vw;
        left: calc(-50vw + 50%);
        position: relative;
    }

    .funding-logos{
        flex-direction: column;
        gap: 0;
        text-align: center;
        margin-top: 26px;
    }

    .funding-logos img {
        width: 160px;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .data-separator{
        display: none;
    }
}
  