#footer {
    margin-top: 100px;
    background: white;
    padding: 45px 0px;
    box-shadow: var(--box-shadow);
}

#footer .footer__logo {
}

#footer .footer__logo img {
    cursor: pointer;
    height: 50px;
    max-width: 100%;
}

#footer .footer__social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

#footer .footer__language {
    margin-top: 20px;
}

#footer .footer__language .nice-select {
    border-radius: 10px !important;
}

#footer .footer__language .nice-select ul {
    margin-bottom: 0px !important;
}

#footer .footer__language .nice-select li {
    line-height: 2.5 !important;
}

#footer .footer__language .nice-select li.selected {
    font-weight: 400 !important;
}

#footer .footer__language select {
    padding: 8px 10px;
    appearance: none;
    border-radius: 10px;
    background: #fff;
}

#footer .footer__social .footer__icon {
    width: 30px;
    height: 30px;

    padding: 4px;
    border-radius: 13px;
    margin-right: 5px;
    cursor: pointer;
    background: var(--color-primary);

    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .footer__social .footer__icon img {
    width: 100%;
    filter: invert(100%);
}

#footer .footer__columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#footer .footer__menu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}

#footer .footer__menu h3 {
    font-size: 20px;
    font-weight: 500;
    color: #161617;
    margin-bottom: 0px;
}

#footer .footer__menu hr {
    width: 20px;
    margin: 10px 0px 15px 0px;
    border-width: 2px;
    border-color: var(--color-primary);
    opacity: 1;
}

#footer .footer__menu .footer__info {
    margin-top: 10px;
    margin-bottom: 10px;
}

#footer .footer__menu .footer__info .desc {
    font-size: 12px;
    font-weight: 300;
    color: #343a40;
    margin-bottom: 5px;
}

#footer .footer__menu .footer__info .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

#footer .footer__chat {
    margin-top: 15px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    transition: all 300ms;
}

#footer .footer__chat p {
    margin-bottom: 0px;
    margin-top: -1px;
}

#footer .footer__chat svg {
    width: 23px;
    stroke: #000000;
    stroke-width: 1.5;
    margin-right: 10px;
    transition: all 300ms;
}

#footer .footer__chat:hover {
    color: var(--color-title);
    background: var(--color-primary);
}

#footer .footer__chat:hover svg {
    stroke: var(--color-title) !important;
    stroke-width: 2;
}

#footer .footer__menu .footer__link {
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 5px;
    color: #343a40;
    transition: color 200ms;
}

#footer .footer__menu .footer__link:hover {
    color: var(--color-primary);
}

#footer .footer__description {
    margin-top: 20px;
}

.footer__copy {
    padding: 5px;
    font-size: 12px;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-title);
}

.footer__copy p {
    margin-bottom: 0px;
}

@media (max-width: 855px) {

    #footer .footer__columns {
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    #footer .footer__columns .footer__menu {
        width: 100%;
        margin-bottom: 45px;
        text-align: center;
        align-items: center;
    }

    #footer .footer__columns .footer__menu:last-child {
        margin-bottom: 0px;
    }

    #footer .footer__mobile__hide {
        display: none;
    }

    #footer .footer__logo,
    #footer .footer__description {
        text-align: center;
    }

    #footer .footer__language {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .footer__copy {
        font-size: .7em;
        white-space: nowrap;
        font-weight: 300;
        line-height: 1;
    }

}