* {
  margin: 0;
  padding: 0;
}

/* header */
.contactUsHeaderContainer {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  background: url("../../Assets/Utilities/MST-BertelsmeyerHall.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contactUsHeaderContainer h1 {
  color: white;
  z-index: 10;
  margin: auto;
}
.darkLayout {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
}

/* main */

.contactUsCardsContainer {
  grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
}
/* Cards */
.contactUsCard {
  grid-column: 2/4;
  /* display: grid; */
  /* width: 500px; */
  grid-template-columns: repeat(6, 1fr);
  padding: 10px 5px;
  box-shadow: 0 0 10px #7b7b7b;
  border-radius: 20px;
  margin: 20px 0px;
  grid-gap: 10px;
  text-align: center;
  /* grid-template-rows: 1fr; */
}
.bioInfo {
  grid-column: 1/3;
}
.bioInfo .name {
  margin: 5px 0px;
}
.imgContainer {
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 0 5px #777;
}
.imgContainer img {
  width: 100%;
  height: 100%;
}
.infoContainer {
  grid-column: 3/7;
}
.infoContainer > * {
  margin: 10px 0px;
}

/* location */
.labLocation {
  align-self: center;
}
.labLocation > * {
  margin: 10px 0px;
}

#location {
  /* margin: 50px 0; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
#location #map {
  width: 100%;
  justify-self: flex-end;
}
#location #map iframe {
  width: 100%;
  height: 200px;
}
#location a {
  text-decoration: dotted;
  color: black;
}
#location a:hover {
  color: #c00404;
}
/* media screen */
@media screen and (max-width: 992px) {
  .contactUsCardsContainer {
    grid-template-columns: repeat(1, 1fr);
  }
  .contactUsCard {
    grid-column: 1/2;
  }
  #location {
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
  }
}
