/* 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: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
  }

input {
  padding: 10px;
  width: 100%;
  margin: 5px;
  background-color: #f1f1f1;
  border-radius: 5px;
}
.emailbtn {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  background-color: #204080;
  color: #f1f1f1;
}
/* ZIG ZAG PANELS */
.zigZagFlex {
  display: flex;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.flexImgLeft {
  align-items: center;
  flex-direction: row;
}
.flexImgRight {
  align-items: center;
  flex-direction: row;
}
.zigZagRow {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 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;*/
  margin-top: 50px;
  margin-bottom: 50px;
}
.zigZagMobile {
  display: none;
  position: relative;
  border-radius: 10px;
  padding: 2rem;
  width: 50%; 
  left: 25%; 
}
.zigZagBorder {
  position: relative;
  float: left;
  width: 33%;
  height: 90%;
  max-height: 300px;
  /*top: 50%;
    transform: translateY(-50%);*/
  margin-top: 50px;
  margin-bottom: 50px;
  border-left: solid 2px #959595;
  border-top: none;
  padding-left: 15px;
}
@media screen and (max-height: 450px) {
}
@media screen and (max-width: 768px) {
  .flexImgLeft {
    align-items: center;
    flex-direction: column;
  }
  .flexImgRight {
    align-items: center;
    flex-direction: column-reverse;
  }
    .zigZagText {
    width: 100%;
    text-align: center;
  }
  .zigZagImage {
    width: 50%;
  }
  .zigZagBorder {
    border-left: none;
    border-top: solid 2px #959595;
    margin-top: 0px;
    width: 90%;
    left: 5%;
    max-height: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .zigZagText {
    width: 100%;
    text-align: center;
  }
}
