.hero {
  position: relative;
  margin-bottom: 25px;
  padding-top: 50px;
  &__container {
    padding-left: 18px;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  &__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    position: relative;
    padding-bottom: 24px;

    &::before {
      content: '';
      background: $c-red;
      width: 96px;
      height: 10px;
      border-radius: 5px;
      position: absolute;
      bottom: 0;
    }
  }
}