.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding: 70% 0 0;
    background-position-y: center;
  }
  .hero-banner-copy h1, .hero-banner-copy p {
    color: #fff;
    padding: 5%;
  }
  .hero-banner-copy h1 {
    font-size: 12vw;
    font-weight: 400;
    margin: 0;
  }
  .hero-banner-copy p {
    font-size: 6vw;
    line-height: 1.4;
    position: relative;
    background-color: #d0343a;
  }
  .hero-banner img {
    width: 100%;
  }
  
  @media screen and (max-width: 979px) {
      .header~.container {
          margin-top: 0!important; 
      }
  }
  
  @media screen and (max-width: 678px) {
      .hero-banner {
          background-position-y: top;		
      }
  }
  
  @media screen and (min-width: 678px) {
    .hero-banner {
      background-size: cover;
      height: 29.7vw;
      padding: 0;
      
    }
    .hero-banner-copy {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      width: 32%;
    }
    .hero-banner-copy-inner {
      position: relative;
    }
    .hero-banner-copy h1, .hero-banner-copy p {
      padding: 5%;
    }
    .hero-banner-copy p:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: -15.2%;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7.35vw 4.85vw 0 0;
      border-color: #d0343a transparent transparent transparent;
    }
    .hero-banner-copy h1 {
      font-size: 3vw;
      margin: 0 0 2.5%;
    }
    .hero-banner-copy p {
      font-size: 1.5vw;
    }
  }
  