.info-page-hero-image {
  height: 90vh;
}

.info-page-main-photo {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .info-page-hero-image {
    width: 100%;
  }
  
  .info-page-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;

  }  
}

.page-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 80vw;
  max-height: 100%;

}

@media screen and (min-width: 481px) {
  .page-header {
    min-width: unset;
    max-height: 100%;

  }
}



.info-page-list-text-image-blocks {
    padding: 3rem 0 3rem 0;
  }
  
.info-text-image-block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
  }

  
  .info-text-image-block-image {
    max-width: 500px;
    max-height: 500px;
    aspect-ratio: 1/1;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
  
  }
  

  
  .info-text-image-block-image img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      overflow: clip;
      border-radius: inherit;
  
    }
  
  .info-text-image-block-text-container {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .info-text-image-block-text {
    max-width: 100%;
  
  }
    
  @media screen and (min-width: 768px) {
    .info-text-image-block {
      flex-direction: row;
      align-items: center;
    }
    .info-text-image-block:nth-child(even) {
      flex-direction: row-reverse;
    }
    .info-text-image-block-text-container {
      max-width: 60%;
      padding: 1.5rem;
    }
    
  }