/* по умолчанию все активные кружки скрыты */
.hs-active {
  opacity: 0;
  pointer-events: none;
}

/* обычные кружки кликабельны */
.hs-default {
  pointer-events: auto;
}
/* До 960px включительно */
.hs-title {
  font-family: 'HelveticaNeue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700; /* Bold */
  letter-spacing: 0.5px;
}

.hs-text {
  font-family: 'HelveticaNeue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300; /* Light */
  letter-spacing: 0.5px;
  line-height: 1.25;
}

/* После 960px */
@media screen and (min-width: 961px) {
  .hs-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
  }

  .hs-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.5;
  }
}
