#himage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vw;
  max-height: 800px;
  min-height: 600px;
  padding: 0; }
  @media (min-width: 0px) and (max-width: 575px) {
    #himage {
      height: 200px; } }
  #himage .item {
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 40vw;
    max-height: 800px;
    min-height: 640px; }
    @media (min-width: 0px) and (max-width: 575px) {
      #himage .item {
        height: 200px; } }
    #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: 55%;
      opacity: 0.6;
      position: absolute;
      left: 0;
      z-index: 1; }
    #himage .item:before {
      background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
      top: 0; }
    #himage .item:after {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
      bottom: 0;
      z-index: 1; }
