footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.top_footer {
    width: 100%;
    background-color: var(--default_orange_color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 25px 16px;
}

.logo_footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo_footer img {
    width: 150px;
}

.contact_footer {
    flex: 1;
}
.contact_footer ul{
    color: white;
    text-align: center;
    font-weight: 400;
    padding: 0;
}

.contact_footer ul li{
    list-style: none;
    padding: 0;
}

.spacing_footer {
    flex: 1;
    display: none;
}

.bottom_footer {
    background-color: white;
    display: flex;
    padding: 16px 16px;
    justify-content: center;
    align-items: center;
}

.bottom_footer ul {
    color: black;
    text-align: center;
    padding: 0;
    font-weight: 400;
}

.bottom_footer ul li{
    color: black;
    list-style: none;
}

.bottom_footer ul li a{
    color: black;
}



@media (min-width: 800px)  {
    .spacing_footer {
        display: block;
    }

    .top_footer {
        flex-direction: row;
    }
}