.b-block-clubs{
  background: #f1f5f8;
  padding-top: 30px;
  padding-bottom: 40px;
  position: relative;
}

.b-block-clubs__sep-line{
  background: url(images/sep-line.gif) 0px 0px repeat-x;
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.b-block-clubs__sep-line._bottom{
  background-image: url(images/sep-line-b.gif);
  top: auto;
  bottom: 0px;
}

.b-block-clubs__row{
  margin-top: 30px;
}

.b-block-clubs__label{
  text-align: center;
  margin-bottom: 25px;
  color: #222d35;
  font-size: 28px;
}
@media (max-width: 767px){
  .b-block-clubs__label{
    font-size: 22px;
    font-weight: normal;
  }
}

.b-block-clubs__label._sub{
  border-bottom: #d1dce3 solid 1px;
  text-align: left;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.b-block-clubs__label-link {
  text-decoration: none;
  display: inline-block;
  color: #222d35;
}
.b-block-clubs__label-link:hover{
  color: #222d35;
}

/* Блоки второго уровня, у которых заголовок это ссылка: добавим стрелочку "вправо" */
.b-block-clubs__label a,
.b-block-clubs__label a:hover
{
  position: relative;
  color: #222d35;
}
.b-block-clubs__label a::after{
  content: ' ';
  border-right: #222d35 solid 2px;
  border-top: #222d35 solid 2px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
  right: -6px;
  transition: .3s;
}

.b-block-clubs__label a:hover::after{
  right: -10px;
}
