/* The hero image */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.7)), url('../assets/biotechhero.webp');
    height: 66vh; /*percentage DOES NOT WORK*/
    max-height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
  }
  
  /* ZIG ZAG PANELS */
  .zigZagRow {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .zigZagRow::after {
    content: "";
    display: table;
    clear: both;
  }

  .zigZagText {
    float: left;
    width: 65%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .zigZagImage {
    position: relative;
    float: left;
    width: 33%;
    height: 90%;
    max-height: 300px;
    /*top: 50%;
    transform: translateY(-50%);*/
    margin-top: 50px;
    margin-bottom: 50px;
  }

  /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
  @media screen and (max-height: 450px) {
  }

  @media screen and (max-width: 768px) {
    .zigZagText {
      width:100%;
      text-align: center;
    }
    .zigZagImage {display: none;}
  }

  @media screen and (max-width: 576px) {
    .zigZagText {
      width:100%;
      text-align: center;
    }
  }
