.fh5co-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /* Default position */
  }
  
  /* For portrait orientation (height > width) */
  @media screen and (orientation: portrait) {
    .fh5co-cover {
      background-position: center 30%; /* Adjust this percentage to show the middle section */
    }
  }
  
  /* For landscape orientation (width > height) */
  @media screen and (orientation: landscape) {
    .fh5co-cover {
      background-position: center center; /* Or your preferred landscape position */
    }
  }