.footer {
    background: var(--grey-850);
    padding: 15px;
    @media (min-width: 480px) {
        padding: 50px 15px 10px 15px;
    }
    @media (min-width: 1300px) {
        padding: 50px 0 10px 0;
    }
}
.footer_container {
    display: flex;
    gap: 30px;
    flex-direction: column;
    @media (min-width: 1300px) {
        flex-direction: row;
    }
}
.footer_items_container {
    display: flex;
    gap: 30px;
    flex: 1;
}
.footer_logo_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    width: 100%;
    text-align: left;
}
.footer_logo {
    width: 146px;
    height: 30px;
}
.footer_text {
    color: var(--grey-400);
    font-size: 14px;
}

.footer_menu_item {
    display: none;
    @media (min-width: 768px) {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 162px;
        width: 100%;
        text-align: left;
    }
    @media (min-width: 768px) {
        max-width: 189px;
        width: 100%;
    }
}

.footer_orange_text {
    color: var(--orange-800);
}
.preise_link {
    margin-bottom: 20px;
}

.footer_contacts_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 20px;
    border-top: 1px solid var(--grey-800);
}
.footer_contact {
    display: flex;
    gap: 10px;
    color: var(--grey-400);
    align-items: center;
    img {
        width: 15px;
        height: 15px;
    }
}

.footer_bottom {
    height: 60px;
    display: flex;
    align-items: flex-start;
    border-top: 1px solid var(--grey-800);
    margin-top: 30px;
    gap: 10px;
    flex-direction: column;
    padding-top: 4px;
    @media (min-width: 768px) {  gap: 30px;
        flex-direction: row;
        padding-top: unset;
        align-items: center;
    }
}
.footer_bottom_links_container {
    display: flex;
    flex-wrap: wrap;
}
.footer_bottom_link {
    padding: 0 10px;
    color: var(--grey-400);
    border-left: 1px solid var(--grey-800);
    border-right: 1px solid var(--grey-800);
    height: 15px;
    display: flex;
    align-items: center;
    &:first-of-type {
        border-right: unset;
    }
    &:last-of-type {
        border-left: unset;
    }
}

.footer_link {
    color: var(--grey-400);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
