footer
{
    width: 100%;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    color: var(--black);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.058);
}

#footerInfosAndLinks
{
    width: 100%;
    background-color: var(--white);
    height: fit-content;
}
.footerWrap
{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    padding: 50px 10px;
    flex-wrap: wrap;
}
#footerInfos, #footerLinks, #footerValues
{
    min-width: 300px;
    width: 30%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
#footerLinksTitle, #footerValuesTitle
{
    font-weight: 400;
    text-transform: uppercase;
}
#footerLinks ul
{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
}
#footerValues table
{
    width: 100%;
}
#footerValues table tbody tr
{
    vertical-align: middle;
}
#footerValues table tbody tr td
{
    padding: 5px 2px;
}
#footerValues img
{
    width: 24px;
}


#footerInfos
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.footerSeparator
{
    width: 1px;
    height: 276px;
    background-color: rgb(69, 69, 69);
    border-radius: 100px;
}

#footerLegal
{
    width: 100%;
    height: 60px;
    display: flex;
    background-color: var(--whiteBg);
    color: var(--blackText);
    border-top: solid 1px rgb(69, 69, 69);
}
.footerLegal
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0px 10px;
}
.footerLegal ul
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.footerLegal p
{
    font-weight: 600;
}

#footerDevMaster
{
    width: 100%;
    height: fit-content;
    background-color: #000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 30px 0;
}
#footerDevMaster a
{
    height: fit-content;
    max-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footerDevMaster a b
{
    font-family: "Zalando Sans Expanded", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}


@media (max-width: 850px) {
    .footerWrap
    {
        gap: 40px;
        padding: 30px;
    }
    #footerInfos, #footerLinks, #footerValues
    {
        max-width: none;
        width: 100%;
        align-items: center;
        padding: 0px;
    }
    #footerLinks ul
    {
        align-items: center;
        list-style: none;
        text-align: center;
        width: fit-content;
    }
    #footerLegal
    {
        height: fit-content;
    }
    .footerLegal
    {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .footerLegal ul
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    #footerDevMaster
    {
        height: 60px;
        flex-direction: row;
        gap: 4px;
    }
    #footerDevMaster a
    {
        max-height: 30px;
    }
}