.block_hero-area {
  background-repeat: no-repeat;
  background-size: cover;

  min-height: 100vh;
  height: auto;
  color: var(--off-white);

  &.front-page {
    background-position: bottom;
  }

  &.sub-page {
    background-position: center;
  }


  .container {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;

    &.top {
      justify-content: flex-end;
    }

    &.bottom {
      justify-content: flex-end;
    }

    .container-inner-wrapper {
      padding-top: 200px;
      padding-bottom: 120px;
      height: auto;
      display: flex;
      flex-direction: column;
    }


    .front-page {
      max-width: 700px;
      justify-content: flex-end;


    }

    .sub-page {
      top: 300px;
      max-width: 910px;

    }
    @media screen and (max-width: 767px) {
      .hero-scroll-btn {
        bottom: 180px;
      }

      .front-page {
        max-width: 700px;
        bottom: 160px;
      }

      .sub-page {
        top: 160px;
        max-width: 910px;


      }
    }
    .hero-container-inner {
      p {
        font-size: 21px;
        color: var(--off-white);
      }

      @media screen and (max-width: 767px) {
        margin-right: 70px;
      }

      @media screen and (max-width: 535px) {
        .button-block-wrapper {
          flex-direction: column;
        }
      }
    }
  }

  .hero-scroll-btn {
    border: solid 1px var(--off-white);
    padding: 21px 24px;
    display: block;
    width: fit-content;
    height: fit-content;
    border-radius: 50%;
    position: absolute;
    bottom: 100px;
    right: 0;

    svg {
      width: 15px;
      fill: var(--off-white);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(5px);
      }
      50% {
        transform: translateY(-5px);
      }
    }
  }
}