.footer {
    background-color: #fff;
    display: flex;
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
    color: var(--Dark, #0a142f);
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.footer-div {
    display: flex;
    width: 100%;
    max-width: 90rem;
    gap: 1.25rem;
    font-size: 1em;
    justify-content: space-between;
    margin-top: 0;
    font-weight: 400;
}

.footer-div-bottom {
    display: flex;
    width: 100%;
    max-width: 90rem;
    gap: 1.25rem;
    font-size: 1em;
    justify-content: space-between;
    margin-top: 3.75rem;
    font-weight: 400;
}

.social-item {
    color: rgba(0, 0, 0, 0.5);
    font-family: Inter, sans-serif;
    align-self: stretch;
    margin: auto 0;
    text-decoration: none;
}

.footer-left {
    display: flex;
    flex-direction: column;
    font-weight: 400;
}

.footer-logo {
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    gap: 6px;
    font-size: 24px;
    color: #000;
    padding: 17px 0px;
}

.footer-logo-image {
    aspect-ratio: 1.03;
    object-fit: auto;
    object-position: center;
    width: 67px;
    border-radius: 50%;
}

.footer-logo-text {
    text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.24);
    font-family: Baskervville, sans-serif;
    flex-grow: 1;
    flex-basis: auto;
    margin: auto 0;
}

.footer-social {
    font-family: Inter, sans-serif;
    line-height: 150%;
    margin-top: 25px;
}

.footer-newsletter {
    letter-spacing: -0.2px;
    margin-top: 78px;
    font: 700 20px Inter, sans-serif;
}

.footer-email {
    font-family: Inter, sans-serif;
    margin-top: 30px;
}

.footer-icon {
    aspect-ratio: 1;
    object-fit: auto;
    object-position: center;
    width: 16px;
    align-self: end;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: auto 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    height: 5rem;
}

.socials-logo {
    width: 10px;
    height: 10px;
}

.footer-column-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 150%;
}

.footer-column-links {
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 29px;
    margin-top: 10px;
}


.footer-legal {
    flex-basis: auto;
    font: 16px/150% Inter, sans-serif;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 0 0 5px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}