.lk__info {
    background: -webkit-linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    background: linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    color: #fff;
    padding: 25px 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.lk__info span {
    margin-left: 15px;
}
.bgmenu__inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    margin-top: 5px;
}
.bgmenu {
    padding-bottom: 150px;
}
.bgmenu__item {
    background: -webkit-linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    background: linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    padding: 10px 20px 10px 10px;
    width: calc(33.3333% - 10px);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    height: 150px;
    overflow: hidden;
    text-decoration: none;
}
.bgmenu__item span {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all .2s linear;
}
.bgmenu__item svg {
    position: absolute;
    right: -20px;
    bottom: -60px;
    z-index: 10;
    width: 30%;
    height: auto;
    opacity: .5;
    transition: all .2s linear;
}
.bgmenu__item:hover.bgmenu__item svg {
    opacity: 1;
    right: 0px;
    bottom: 0px;
}
.bgmenu__item:hover.bgmenu__item span {
    font-size: 22px;
}