/*
.employee-bio {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    float: left;
    width: 50vw;
    height: 50vw;
   
}
*/



 .employee-link {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    position: relative;
    
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    float: left;
    width: 50vw;
    height: 50vw;
    background-color: #efefef;
}
a.employee-link:nth-of-type(even) .gray-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0,0,0,0.05);

}




 .employee-link img {
	-moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
	transform: scale(1);
	-moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    -ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    width: 100%;
    height: 100%;
}
 .employee-link .blue-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0,186,216,0.8);
	
	-moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
	
	opacity: 0;
		
}

 .employee-link .blue-overlay .employee-text-wrapper {
	position: absolute;
    
    display: table;
	width: 100%;
	height: 100%;
    
}

 .employee-link .blue-overlay .employee-text-wrapper .employee-text-wrapper-two {
	display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: 0 15px;
}

 .employee-link .blue-overlay .employee-text-wrapper h4 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1em;
}

 .employee-link .blue-overlay .employee-text-wrapper small {
    display: block;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Questrial', sans-serif;
    font-weight: 300;
}

 .employee-link .blue-overlay .employee-text-wrapper .portfolio-arrow {
	width: 19px;
	height: 10px;
	background: transparent url(img/btn-right-arrow.png) no-repeat center center;
	margin: 0 auto;
}



/* hover styles */

 .employee-link:hover .blue-overlay {
    opacity: 1;
    cursor: pointer;
}

 .employee-link:hover img {
	-moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    -webkit-transform: scale(1.03);
	transform: scale(1.03);

}




/* responsive styles */

@media screen and (min-width:480px) {
	.employee-link {
		width: 33vw;
		height: 33vw;
	}
}


@media screen and (min-width: 768px) {
	.employee-link {
		width: 25vw;
		height: 25vw;
	}
	
}

@media screen and (min-width: 992px) {
	 .employee-link {
		width: 20vw;
		height: 20vw;
	}
	
}

@media screen and (min-width: 1200px) {
	.employee-link .blue-overlay .employee-text-wrapper h4 {
		font-size: 1.875em;
	}
}

@media screen and (min-width: 2000px) {
	 .employee-link {
		width: 16vw;
		height: 16vw;
	}
}








/* Modal Styles */

 .modal .modal-header {
    border: none;
    padding: 15px 15px 0;
}
 .modal .modal-body {
    padding: 15px 15px 0 15px;
}

	
 .modal .modal-body h3 {
	margin-bottom: 0;
	font-weight: 700;
}
 .modal .modal-body .position {
	font-size: 21px;
	color: #777;
	margin-bottom: 20px;
}
 .modal .modal-body h4, .employee-bio .modal .modal-body h5, .employee-bio .modal .modal-body h6 {
	font-weight: 700;
}
 .modal .modal-body p {
    line-height: 1.5;
}
 .modal .modal-footer {
    border: none;
}

@media screen and (min-width: 768px) {
	 .modal .modal-body {
	    padding: 0 60px 0 15px;
	}
	.modal .modal-body h3 {
	margin-top: 0px;
	}
}

@media screen and (max-width: 992px) {
     .modal .modal-body small {
        display: block;
    }
}