footer{
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0 35px 0 0;
    width: 100%;
    z-index: 2;
    position: relative;
}

.footer--subimage,
.footer--subimage img{
    width: 100%;
}

.footer--nav-wrapper{
    display: flex;
    padding: 2rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    flex-direction: column;
}

.component-menu-item{
    list-style: none;
}

.component-menu-item a{
    font-weight: 400;
}

.footer--nav{
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}
.footer--nav a,
.footer--nav-description p{
    font-size: 0.75rem;
}



.footer--nav-description>p{
    text-align: center;
    margin-top: 3rem;
    font-weight: 200;
    font-style: normal;
}

@media screen and (min-width: 48rem) /* 768px */ {
    .footer--nav-wrapper{
        flex-direction: column;
    }

    .footer--nav{
        flex-direction: row;
        gap: 25px;
    }

    .footer--nav-description>p{
        margin-top: 1rem;
    }
}


@media screen and (min-width: 64rem) {
    .footer--nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}