.bottom-menu,
.bottom-menu-mob {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: var(--violet2-color);
    padding: 50px 40px 30px 40px;
}

.bottom-menu-mob {
    display: none;
}

.middle-block {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.bottom-menu-item {
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.bottom-menu-link {
    color: var(--white-text-color);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    text-wrap: nowrap;
    width: 100%;
    margin-bottom: 20px;
}


.child-bottom-menu-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
}


.child-bottom-menu-link {
    color: var(--white-text-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

@media (max-width: 1280px) {
    .middle-block {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 50px;
    }
}

@media (max-width: 780px) {
    .bottom-menu-mob {
        display: flex;
        justify-content: space-around;
        gap: 30px;
        padding: 50px 20px;
        padding-bottom: 150px;
    }

    .bottom-menu {
        display: none;
    }
    .bottom-menu-mob .left,
    .bottom-menu-mob .right{
        display: flex;
        flex-direction: column;
        width: 50%;
        gap:50px;
    }
    .bottom-menu-item {
        width: 100%;
    }
    .bottom-menu-link {
        font-size: 18px;
    }
    .child-bottom-menu-block {
        width: 100%;
    }
    .child-bottom-menu-link {
        font-size: 14px;
    }
}
