.block-hero {
  position: relative;
  margin-top: 20px;
  background-color: #f8f8f8;

  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: calc(~"(50% + 390px)");
    height: 100%;
    background-color: #fff;
  }
}

.block-hero-image {
  position: absolute;
  top: 0;
  right: 50%;
  z-index: 1;
  height: 100%;
  margin-right: 20px;

  > img {
    height: 100%;
  }
}

.block-hero-container {
  position: relative;
  z-index: 2;
}

.block-hero-main {
  padding: 110px 80px 110px 322px;
}

.block-hero-title {
  margin-bottom: 25px;
}

.block-hero-btn {
  margin-top: 30px;
}

// responsive

@media (max-width: @screen-lg) {
  .block-hero {
    margin-top: 0;

    &:before {
      content: none;
    }
  }
  .block-hero-image {
    display: none;
  }
  .block-hero-main {
    padding-left: 0;
    padding-right: 0;
  }
}
