.mobile {
    display: flex;
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    align-items: center;
    flex-wrap: wrap;
    background: #121314;
}
.mobile-menu_items {
    width: 55%;
    justify-content: space-around;
    display: flex;
}
.mobile-buy  .config__btn {
    margin: 0px 80px;
    min-width: 200px;
}
@media screen and (max-width: 1490px) {
    .mobile {
        justify-content: center;
    }
}

@media screen and (max-width: 1000px) {
    .mobile {
        height: 150px;
        flex-direction: column;
    }
    .mobile-menu_items {
        width: 100%;
        margin-bottom: 4%;
        margin-top: 3%;
    }
}

@media screen and (max-width: 780px) {
    .mobile-buy {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobile {
        justify-content: center;
    }
    .mobile-menu_items {
        display: none;
    }
    .mobile-buy  .config__btn {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .config__info {
        min-height: 700px;
    }
}

