


/***  UNIVERSAL STYLES  ***/

.bio-cols .bio, 
.bios-list .bio {
  position: relative;
  margin-bottom: 0;
}


/***  THUMB STYLES  ***/

.bio-thumb {
  position: relative;
  display: block;
	background: #f9f9f9;
  overflow: hidden;
  font-size: 0.85em;
	color: var(--dark-2);
	text-alight: center;
}

.bio.active a.bio-thumb, 
a.bio-thumb:hover {
  text-decoration: none;
	transform: scale(1.025) translateY(-5px);
	color: var(--primary-2);
}

.bio-thumb .bio-img {
  display: block;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.bio-thumb .bio-title {
  font-weight: bold;
	font-size: 1.2em;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.bio.active a.bio-thumb .bio-title, 
a.bio-thumb:hover .bio-title {color: var(--secondary-2);}

.bio-thumb .bio-content {
  display: flex;
	height: 130px;
	padding: 15px;
	justify-content: center;
	align-items: center;
	text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bio-thumb p {
  margin: 0;
  margin-top: 0.25em;
}

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

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

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;
	z-index: 1;
  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 {margin: 0;}

.bio-full .bio-title {color: #045A89;}

.bio-full .bio-position, 
.bio-full .bio-location {
  margin-top: 0.25em;
	margin-bottom: 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%;}

}


/***  BIOS LIST  ***/

.bios-list .bio {text-align: center;}

.bios-list .bio-inner {
  display: flex;
	height: 100%;
  background-color: #f9f9f9;
	padding: 20px;
	justify-content: center;
	align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bios-list .bio-title {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}

.bios-list p {
  margin: 0;
	margin-top: 0.25em;
}






