footer { 
    bottom: 0;
    background-color: #00398F;
    margin: 0;
    padding: 40px 25px 0px 25px;
    width: 100%;
}
.footer-top {
    max-width: 1600px;
    margin: auto;
}
.footer-container {
    display: flex;
    padding-bottom: 20px;
    gap: 120px;
}
.about-container {
    flex: .35;
    padding: 0;
    margin: 0;
}
.about-container > img {
    margin-bottom: 20px;
}

.about-container > p {
    margin: 0;
    font-size: 13px;

}
.links-container {
    flex: .65;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
    padding: 0 20px;
    justify-content: space-between;
}
.links {
}
.links > h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 37px;
}
.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-list li {
    margin: 10px 0;
}

.links-list li:last-child {
    margin-bottom: 0;
}
.link > a { 
    text-decoration: none;
    font-size: 13px;
}


.footer-bottom {
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 20px 0;
    border-top: 0.5px solid #ffffff8e;
    width: 100%;
    gap: 120px;
    align-items: center;
}

.footer-bottom > p:nth-child(1){
    flex: .35;
    margin: 0;
    font-size: 14px;

}
.terms-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: .65;
    padding: 0 20px;
    
}


.terms-container a {
    text-decoration: none;
    font-size: 13px;
}
.language_selector {
    width: 88px;
    text-align: end;
    display: flex;
    align-items: center;
}
#language_selector {
    font-size: 13px;
    cursor: pointer;
    background-color: transparent;
    border: 0;
}

#language_selector:focus {
}

.terms-container a:hover,
.link > a:hover  {
}

/* Small screens */
@media screen and (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .links-container {
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: flex-start;
        row-gap: 35px;
        padding: 0;
    }
    .links {
        flex: 50%;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        row-gap: 20px;
    }
    .terms-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
        align-items: center;
        align-content: center;
        gap: 23px;

    }
    .terms-container>a:first-child {
        display: none;
    }
    .laguage-selector {
        text-align: center;
        row-gap: 20px;
    }
    .footer-container p,
    .link > a,
    .terms-container a,
    .footer-bottom > p:nth-child(1) {
        font-size: 12.5px;
    }

}