#footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #2D2D2D;
    background: #212121;
    position: relative;
    z-index: 100;
}

.footer_wrapper {
    padding: 12px 32px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer_item {
    padding: 21.5px 32px;
    font-size: 14px;
    line-height: 21px;
}

@media (max-width: 600px) {
    .footer_item {
        padding: 21px 0px;
        font-size: 14px;
        line-height: 21px;
    }

    .footer_wrapper {
        padding: 12px 16px 9px;
    }
}