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

  &__img {
    margin-bottom: 19px;
  }

  &__absolute {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 80px;
    position: absolute;
    top: 37%;
    right: 17px;

    img {
      display: block;
      margin-bottom: 5px;
      object-fit: contain;
    }

    &Text {
      color: $c-gray;
      font-size: 10px;
      font-style: normal;
      font-weight: 500;
      line-height: 12px;
      text-align: center;
    }
  }

  &__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
}