.collections{
    padding-top: 120px;
}

.collections-title{
    display: flex;
    column-gap: 32px;
    align-items: flex-end;
}

.collections-title h2 {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
}

.collections-title a{
    transition: 0.2s border;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    color: var(--blue-link);
    border-bottom: 1px solid transparent;
}

.collections-title a:hover{
    border-color: var(--blue-link);
}

.smart-tabs-title_title a{
    font-size: inherit;
    font-weight: inherit;
}
.collections .smart-tabs-wrap{
    padding-top: 40px;
}
@media (max-width: 576px) {
    .collections{
        padding-top: 25px;
    }
    .collections-title{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 16px;
        margin-bottom: -1px;
    }
    .collections-title a{
        font-size: 12px;
    }
    .collections-title h2{
        font-size: 20px;
        font-weight: 700;
    }
    .smart-tabs-title_title a{
        font-size: inherit;
        font-weight: inherit;
    }
}