footer {
    position: relative;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;

    color: var(--color-text-white);

    background-color: var(--color-yale-blue);
    background-image: url(../images/footer.bg-motif.jpg);
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: top right;
    border-radius: 32px 32px 0px 0px;
}


footer ul {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;

    list-style-type: none;
}
footer ul li {
    flex: 0 0 auto;
    position: relative;
    padding: 0;
    margin: 0;
}
footer ul li.main {
    margin-bottom: 8px;
}
footer ul li a,
footer ul li p {
    margin: 0;
    padding: 0;

    color: var(--color-text-white);
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-decoration: none;
}
footer ul li.main a,
footer ul li.main p {
    font-family: var(--font-family-title);
    font-size: 1.25rem;
    font-weight: 700;
}
footer ul li img {
    margin-right: 8px;
}


footer hr {
    height: 1px;
    width: 100%;
    margin: 64px 0;

    border-radius: 8px;
    background: var(--color-alice-white);
    opacity: 1;
    border: none;
}


footer .footer-legals {
    margin-top: 64px;
}
footer .footer-legals ul {
    width: 100%;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

footer .copyright {
    margin-top: 16px;
    margin-bottom: 0px;

    color: var(--color-text-white);
    font-family: var(--font-family-text);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
}