.lsg_another_service .lsg_as_tags {
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.lsg_another_service {
    padding-top: 0;
}

.lsg_another_service .lsg_as_tag {
    margin: 0;
    width: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 4.4rem;
    padding: 0 1.6rem;
    cursor: pointer;
    border: 1px solid #6B6B6B;
    color: #6B6B6B;
    transition: color .3s, background-color .3s, border .3s;
    text-transform: uppercase;
    font-size: 2.3rem;
    display: flex;
    align-items: center;
    flex-direction: unset;
    letter-spacing: -.02em;
}

.lsg_another_service .lsg_as_tag:hover {
    border-color: #303030;
    background-color: #303030;
    color: #fff;
}

@media (max-width: 768px) {
    .lsg_another_service .lsg_as_tags {
        gap: 8px;
        justify-content: revert-layer
    }

    .lsg_another_service .lsg_as_tag {
        text-transform: uppercase;
        flex-grow: 1;
        font-size: 23px;
        padding: 0 16px;
        text-align: center;
        font-size: 16px;
        align-items: center;
        height: 40px;
        display: flex;
        border: 1px solid #6B6B6B;
        color: #6B6B6B;
        letter-spacing: -.02em;
        transition: border .3s, border-color .3s, background-color .3s;
        justify-content: center;
        cursor: pointer;
    }
}