/* Grid Block */
.gridBlock {
  padding-top: 60px;
  padding-bottom: 60px;
}
.gridBlock-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.gridBlock-wrapper .singlegridItem {
  width: 23%;
  margin: 1%;
  text-align: center;
  padding: 1.25%;
  border: 1px solid #c1c1c1;
  box-shadow: inset 0px 0px 10px #e9e9e9;
}
.gridBlock-wrapper .singlegridItem img {
  width: auto;
  height: auto;
  box-shadow: 0px 0px 10px white;
}
@media only screen and (max-width: 800px) {
  .gridBlock-wrapper .singlegridItem {
    width: 45%;
    margin: 2.5%;
  }
}
/* Nav Breakpoint */
@media only screen and (max-width: 1200px) {
  .nav li a {
    font-size: 14px;
  }
}
.flex-center {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .flex-center {
    flex-direction: column;
  }
}
/* Open Position */
#job_detail_list a {
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c4dae9;
}