footer {
    /*margin-top: 50px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--background-footer);
    padding-top: 50px;
}

footer .high {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto 30px auto;
}

footer .high div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-transform: none;
    color: var(--white-color);
    margin-left: 5px;
    margin-right: 5px;
}

footer .high div .title {
    color: grey;
    margin-bottom: 5px;
}

footer .high div a {
    margin-top: 4px;
}

footer .high div a:hover {
    text-decoration: underline;
}

footer .bottom {
    margin: 30px auto;
    color: var(--white-color);
}