/* Staff
-------------------------------------------*/
#staffDiv {
  padding: 48px 0 48px 0;
  text-align: center;
}
#staffDiv h2 {
  color: #666;
  font-size: 2.0rem;
  line-height: 2.4rem;
  font-weight: 100;
  text-align: center;
  border-bottom: 1px dotted #777;
  padding-bottom: 12px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  -ms-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  pointer-events: none;
  text-align: left;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog > div {
  width: 50%;
  height: 70vh;
  position: relative;
  margin: 2.5% auto;
  padding: 36px;
  background: #FFF;
  overflow-y: scroll;
}
.modalDialog h3 {
  color: #D41F32;
  font-size: 1.8rem;
  line-height: 2.0rem;
  margin: 0 0 12px 0;
  padding: 0 0 0 0;
  font-weight: 200;
}
.close {
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(24, 47, 51, .6);
  font-size: 2.6rem;
  line-height: 2.6rem;
  width: 24px;
  text-decoration: none;
  font-weight: 100;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.close:hover {
  color: rgb(165, 99, 39);
  text-decoration: none;
}
.staffBox {
  width: 22%;
  margin: 0 1.5% 36px 1.5%;
  background: #D41F32;
  display: inline-block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  border-radius: 6px;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
  color: #FFF;
}
.staffBox:hover,
.staffBox:focus {
  -webkit-transform: scale(.97);
  -moz-transform: scale(.97);
  -ms-transform: scale(.97);
  -o-transform: scale(.97);
  transform: scale(.97);
  text-decoration: none;
  color: #FFF;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.staffBoxImg {
  background-color: #555555;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  border-radius: 6px 6px 0 0;
}
.staffBoxImg:after {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.staffBoxTxt {
  padding: 12px;
}
.staffBox h3 {
  color: #FFF;
  font-weight: 700;
  margin: 12px;
}
.staffBox:hover h3,
.staffBox:focus h3 {
  color: #FFF;
}
.staffPortrait {
  width: 60%;
  float: right;
  margin: 0 0 24px 24px;
}

/* Mobile
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 749px) {

.staffBox {
  width: 47%;
  }
}