.search-block__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    color: #101011;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.search-block__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.search-block__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    background: #F8F8F8;
    border-radius: 84px;
    margin: 0 8px 8px 0;
    transition: all 0.3s;
    position: relative;
}

.search-block__item:after {
    content: '';
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 3px;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.search-block__item:hover {
    background: #F3F3F3;
}

@media screen and (max-width: 767px) {
    .search-block__title {
        font-size: 24px;
    }
}
