#himage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vw;
  max-height: 620px;
  min-height: 400px;
  z-index: 1; }
  @media (min-width: 0px) and (max-width: 575px) {
    #himage {
      height: 200px; } }
  #himage .item {
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%; }
    #himage .item .overlay_shape {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      bottom: 0;
      z-index: 3; }
      #himage .item .overlay_shape #left {
        fill: var(--secondary-colour); }
      #himage .item .overlay_shape #right {
        fill: var(--primary-colour); }
    #himage .item picture {
      width: 100%;
      height: 100%;
      display: flex; }
      #himage .item picture img {
        object-fit: cover;
        height: auto;
        width: 100%; }
    #himage .item:before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      z-index: 2;
      top: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 71.9%, rgba(0, 0, 0, 0.8) 100.7%); }
    #himage .item:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      z-index: 2;
      top: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.81%, rgba(0, 0, 0, 0.75) 102.04%); }
