.bio-modal {
	margin-top: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}
.bio-modal .modal-content {
	display: none;
}
.bio-modal img {
	position: relative;
	z-index: 9;
	width: 100%;
	height: 100%;
}
.bio-modal .bio-title {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 100%;
	text-align: center;
	z-index: 10;
	background-color: rgba(0,175,160,0.3);
	transition: background-color 0.5s ease;
}
.career-title h3 {
	text-decoration: underline;
}
.career-title:hover h3 {
	text-decoration: none;
}
.bio-modal .bio-title.blackoverlay {
	background-color: rgba(0,0,0,0.3);
}
.bio-modal .bio-title:hover {
	background-color: rgba(0,175,160,0);
}
.bio-modal .bio-title h3 {
	position: absolute;
	bottom: 5px;
	left: 15px;
	right: 15px;
	text-align: center;
}
.bio-modal .bio-title h2, .bio-modal .bio-title h3, .bio-modal .bio-title small {
	color: #fff;
}
.cd-modal-content a, .cd-modal-content a i {
	color: #fff;
}
.cd-modal-content a:hover i.fa-twitter {
	color: #00aced;
	transition: color 0.5s ease;
}
.cd-modal-content a:hover i.fa-linkedin {
	color: #007bb6;
	transition: color 0.5s ease;
}
	
/* -------------------------------- 

Modal Window

-------------------------------- */
.cd-modal {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  -moz-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
}
.cd-modal svg {
  position: absolute;
  top: 0;
  left: 0;
}
.cd-modal svg > path {
  fill: #333333;
}
.cd-modal .modal-close {
  /* 'X' icon */
  position: absolute;
  z-index: 5001;
  top: 20px;
  right: 5%;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3) url('/images/cd-icon-close.svg') no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* Force hardware acceleration*/
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
.no-touch .cd-modal .modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.cd-modal.modal-is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.cd-modal.modal-is-visible .modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.cd-modal-content {
  position: relative;
  height: 100vh;
  overflow-y: auto;
  padding: 3em 5% 4em;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, transform 0.3s 0s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-modal-content h2, .cd-modal-content h3, .cd-modal-content h2 small, .cd-modal-content h3 small {
	color: #fff;
}
.cd-modal-content p {
  color: #f2f2f2;
  line-height: 1.25;
  margin: 2em 0;
}
.modal-is-visible .cd-modal-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -moz-transition: opacity 0.3s 0.3s, -moz-transform 0.3s 0.3s;
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}
@media only screen and (min-width: 768px) {
  .cd-modal-content {
    padding: 4em 10% 4em;
  }
  .cd-modal-content p {
    font-size: 1.75rem;
  }
}

/* -------------------------------- 

 Cover Layer - hide main content when modal is fired

-------------------------------- */
.cd-cover-layer {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f2f2f2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
  -moz-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
  transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
}
.cd-cover-layer.modal-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}


/** spm modal **/

.modal-brand {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: 150px;
	background-image: url('/images/spm-logo.jpg');
	background-size: 150px 150px;
	background-position: center;
	background-repeat: no-repeat;
	text-indent: -900px;
	overflow: hidden;
}

.career-title {
	text-align: center;
}