#himage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 50vw;
  max-height: 650px;
  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 picture {
      width: 100%;
      height: 100%;
      display: flex; }
      #himage .item picture img {
        object-fit: cover;
        height: auto;
        width: 100%; }
    #himage .item:before, #himage .item:after {
      content: '';
      width: 100%;
      height: 35%;
      position: absolute;
      left: 0;
      z-index: 2; }
    #himage .item:before {
      top: 0;
      background: linear-gradient(180deg, var(--primary-colour) 0%, rgba(21, 44, 77, 0) 100%); }
    #himage .item:after {
      bottom: 0;
      background: linear-gradient(0deg, var(--primary-colour) 0%, rgba(21, 44, 77, 0) 100%); }
