


/***  UNIVERSAL STYLES  ***/

.bio {
  position: relative;
  margin-bottom: 1.5em;
}

.bio-title {font-weight: bold;}


/***  THUMB STYLES  ***/

.bio-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: none !important;
  font-size: 0.85em;
}

.bio-thumb .bio-img {
  display: inline-block;
  background: #333;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.bio .bio-thumb .bio-img:hover, 
.bio.active .bio-thumb .bio-img {border-color: #6db1c7;}

.bio-thumb p {margin: 0;}

.bio-thumb a {
  display: block;
  color: black;
}

.bio-expand {
  text-decoration: underline;
  color: #00a84f;
}

.bio-expand:hover {color: #0d3654;}

a.bio-thumb:hover {text-decoration: none;}

a.bio-thumb {cursor: pointer;}

@media screen and (max-width: 420px) {

.bio-thumb {
  padding-right: 0;
  text-align: center;
}

}


/***  FULL STYLES  ***/

.bio-full-wrapper {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.bio.active .bio-full-wrapper {
  max-height: 10000px;
}

.bio-full {
  position: relative;
  padding: 30px;
  margin-top: 1.5em;
  background: white;
  border: 1px solid #e9e9e9;
}

.bio-close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(images/icon-close-black.png) center center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.content .bio-full .grid {margin: 0;}

.bio-title, 
.bio-position {margin: 0;}

.bio-position {margin-top: 0.25em;}

/* Bio Full Sizing */

@media screen and (min-width: 901px) {

.bio-full-wrapper {width: calc(400% + 90px);}
.bio:nth-child(4n-2) .bio-full-wrapper {margin-left: calc(-100% + -30px);}
.bio:nth-child(4n-1) .bio-full-wrapper {margin-left: calc(-200% + -60px);}
.bio:nth-child(4n) .bio-full-wrapper {margin-left: calc(-300% + -90px);}

}

@media screen and (min-width: 601px) and (max-width: 900px) {

.bio-full-wrapper {width: calc(300% + 60px);}
.bio:nth-child(3n-1) .bio-full-wrapper {margin-left: calc(-100% + -30px);}
.bio:nth-child(3n) .bio-full-wrapper {margin-left: calc(-200% + -60px);}

}

@media screen and (min-width: 421px) and (max-width: 600px) {

.bio-full-wrapper {width: calc(200% + 30px);}
.bio:nth-child(even) .bio-full-wrapper {margin-left: calc(-100% + -30px);}

}

@media screen and (max-width: 420px) {

.bio-full-wrapper {width: 100%;}

}




