.tags-button-list {
    max-width: 1010px;
    margin: 0 auto;
    display: flex;
    column-gap: 25px;
    row-gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}
.tags-button-list .tag-link {
    color: #1B2482;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D1D3E6;
    border-radius: 34px 34px 34px 34px;

    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding: 12px 24px;
    display: inline-block;
}

.tags-button-list .tag-link:hover {
    border-color: #1B2482;
}

.tags-button-list .active .tag-link {
    color: #FFFFFF;
    background-color: #1B2482;
    border-color: #1B2482;
}

@media (max-width: 880px) {
    .tags-button-list .tag-link {
        font-size: 16px;
        padding: 16px 21px;
    }
}

  