/*http://www.technicalkeeda.com/demo/creating-a-grid-of-images-using-div-and-css*/
.tk-container{
	margin: 0 auto;
	padding: 2em 0;
}
.tk-column{
	width:105px;
	padding:0;    
	margin:5px;
	background:#fff;
	font-size:14px;
	display:inline-block;
	position:relative;
	float:left;
	-webkit-box-shadow: 0 1px 3px rgba(30,25,25,0.9);
	-moz-box-shadow: 0 1px 3px rgba(30,25,25,0.9);
	box-shadow: 0 1px 3px rgba(30,25,25,0.9);
	-webkit-transition: top 1s ease, left 1s ease;
	-moz-transition: top 1s ease, left 1s ease;
	transition:top 1s ease, left 1s ease;
}
.tk-column span {
	border-bottom:1px solid lightgray;
	margin:10px 0px 10px 0px;
	padding:10px 0px 10px 0px;
	display:block;    
	font-size:22px;
	color:#ff9900;
	font-weight:bold;
}
.tk-column .tk-imgcontainer img{
	max-width:100%;
	display:block;
}

/* -------------------------------- 

  Bio's panel 
  
-------------------------------- */
main {
	position: relative;
	z-index: 2;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
main.slide-out {
	/* the main element slides to the left when the author bio is visible */
	-webkit-transform: translateX(-270px);
	-moz-transform: translateX(-270px);
	-ms-transform: translateX(-270px);
	-o-transform: translateX(-270px);
	transform: translateX(-270px);
}
main.slide-out .bio-overlay {
	/* the overlay layer gets visible when the author bio slides in */
	display: block;
	-webkit-animation: bio-fade-in 0.3s;
	-moz-animation: bio-fade-in 0.3s;
	animation: bio-fade-in 0.3s;
	z-index: 1;
}
@media only screen and (min-width: 1024px) {
	main.slide-out {
		/* change in size of the author bio section */
		-webkit-transform: translateX(-600px);
		-moz-transform: translateX(-600px);
		-ms-transform: translateX(-600px);
		-o-transform: translateX(-600px);
		transform: translateX(-600px);
	}
}
@media only screen and (min-width: 1200px) {
	main.slide-out {
		-webkit-transform: translateX(-800px);
		-moz-transform: translateX(-800px);
		-ms-transform: translateX(-800px);
		-o-transform: translateX(-800px);
		transform: translateX(-800px);
	}
}

@media only screen and (min-width: 1170px) {
	.cd-section h2 {
		margin-bottom: 2em;
	}
}
#contact-us li {
	margin-bottom: 2em;
	border-radius: 0.25em;
	box-shadow: 0 0 10px rgba(92, 75, 81, 0);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.no-touch #contact-us li:hover {
	box-shadow: 0 0 10px rgba(92, 75, 81, 0.3);
}
.no-touch #contact-us li:hover .bio-link-overlay {
	opacity: 1;
}
#contact-us figure {
	position: relative;
}
#contact-us img {
	display: block;
	width: 100%;
	border-radius: .25em .25em 0 0;
}
#contact-us .bio-link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.7);
	opacity: 0;
	border-radius: .25em .25em 0 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
#contact-us .bio-link-overlay span {
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	width: 100%;
	text-align: center;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);	
}
#contact-us .member-info {
	height: 80px;
	background: #fff;
	text-align: center;
	font-family: "Droid Sans", sans-serif;
	font-weight: bold;
	padding-top: 10px;
	border-radius: 0 0 .25em .25em;
}
#contact-us .member-info span {
	display: block;
	font-weight: normal;
	color: #999999;
	font-size: 12px;
	font-size: 1.2rem;
	margin-top: .5em;
}
@media only screen and (min-width: 568px) {
	#contact-us li {
		width: 30%;
		float: left;
		margin-right: 3.5%;
	}
	#contact-us li:nth-child(3) {
		margin-right: 0;
	}
}
.bio {
	position: fixed;
	top: 50px;
	right: 0;
	width: 270px;
	height: 100%;
	overflow-y: auto;
	/* smooth scrolling on mobile phones and tablets */
	-webkit-overflow-scrolling: touch;
	background: #333333;
	z-index: 4;
	/* this how we move the author bio section off the canvas */
	-webkit-transform: translateX(270px);
	-moz-transform: translateX(270px);
	-ms-transform: translateX(270px);
	-o-transform: translateX(270px);
	transform: translateX(270px);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
/* called by js */
.bio.slide-in {
	/* the author bio section slides in when the user clicks on the team member picture */
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.bio .bio-pic {
	position: relative;
}
.bio .bio-pic::after {
	/* gradient at the bottom of the image - same color of the background of the section */
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: -webkit-linear-gradient( bottom , #333333, rgba(92, 75, 81, 0));
	background: -moz-linear-gradient( bottom , #333333, rgba(92, 75, 81, 0));
	background: -o-linear-gradient( bottom , #333333, rgba(92, 75, 81, 0));
	background: -ms-linear-gradient( bottom , #333333, rgba(92, 75, 81, 0));
	background: linear-gradient(to top, #333333, rgba(92, 75, 81, 0));
}
.no-cssgradients .bio .bio-pic::after {
	display: none;
}
.bio img {
	width: 100%;
	display: block;
}
.bio .bio-details {
	padding: 1em;
	color: #fff;
}
.bio .bio-details h1 {
	font-family: "Droid Sans", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
}
.bio .bio-details p {
	font-size: 14px;
	font-size: 1.375rem;
	margin: 1em 0;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}
.bio .bio-details p:last-of-type {
	margin-bottom: 150px;/*make room for fixed bottom bar */
}
.bio .bio-details p a{
	color: rgba(255, 255, 255, 0.625);
}
@media only screen and (min-width: 1024px) {
	.bio {
		width: 600px;
		top: 80px;
		-webkit-transform: translateX(600px);
		-moz-transform: translateX(600px);
		-ms-transform: translateX(600px);
		-o-transform: translateX(600px);
		transform: translateX(600px);
	}
	.bio .bio-details {
		padding: 2em;
	}
	.bio .bio-details p {
		line-height: 1.6;
		margin: 2em 0;
	}
}
@media only screen and (min-width: 1200px) {
	.bio {
		width: 800px;
		-webkit-transform: translateX(800px);
		-moz-transform: translateX(800px);
		-ms-transform: translateX(800px);
		-o-transform: translateX(800px);
		transform: translateX(800px);
	}
	.bio .bio-pic::after {
		height: 150px;
	}
	.bio .bio-details {
		padding: 4em;
		/* we move the content up so the title is over the color gradient */
		-webkit-transform: translateY(-80px);
		-moz-transform: translateY(-80px);
		-ms-transform: translateY(-80px);
		-o-transform: translateY(-80px);
		transform: translateY(-80px);
	}
	.bio .bio-details h1 {
		font-size: 40px;
		font-size: 2.5rem;
	}
	.bio .bio-details p {
		font-size: 14px;
		font-size: 1.4rem;
	}
	.no-cssgradients .bio .bio-details {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}
.bio-close{
	display: block;
	z-index: 1;
	width: 44px;
	height: 44px;
	/* image replacement */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	visibility: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-clip: padding-box;
	-webkit-transition: -webkit-transform 1s 0s, visibility 0s 1s;
	-moz-transition: -moz-transform 1s 0s, visibility 0s 1s;
	transition: transform 1s 0s, visibility 0s 1s;
}
.bio-close {
	position: fixed;
	top: 50px;
	right: 5%;
	background: url("../img/cd-icon-close-mobile.svg") rgba(255, 255, 255, 0.50) no-repeat center center;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
@media only screen and (min-width: 1024px) {
	.bio-close {
		top: 80px;
	}
}
@media only screen and (min-width: 1170px) {
	.bio-close {
		background-image: url("../img/cd-icon-close-desktop.svg");
	}
}

.bio-close {
	visibility: hidden;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
	-moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
	transition: transform 0.4s 0s, visibility 0s 0s;
}
.bio-close:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
@-webkit-keyframes bio-translate {
	0% {
		-webkit-transform: translateX(-50%) scale(1);
	}
	50% {
		-webkit-transform: translateY(10px) translateX(-50%) scale(1);
	}
	100% {
		-webkit-transform: translateX(-50%) scale(1);
	}
}
@-moz-keyframes bio-translate {
	0% {
		-moz-transform: translateX(-50%) scale(1);
	}
	50% {
		-moz-transform: translateY(10px) translateX(-50%) scale(1);
	}
	100% {
		-moz-transform: translateX(-50%) scale(1);
	}
}
@keyframes bio-translate {
	0% {
		-webkit-transform: translateX(-50%) scale(1);
		-moz-transform: translateX(-50%) scale(1);
		-ms-transform: translateX(-50%) scale(1);
		-o-transform: translateX(-50%) scale(1);
		transform: translateX(-50%) scale(1);
	}
	50% {
		-webkit-transform: translateY(10px) translateX(-50%) scale(1);
		-moz-transform: translateY(10px) translateX(-50%) scale(1);
		-ms-transform: translateY(10px) translateX(-50%) scale(1);
		-o-transform: translateY(10px) translateX(-50%) scale(1);
		transform: translateY(10px) translateX(-50%) scale(1);
	}
	100% {
		-webkit-transform: translateX(-50%) scale(1);
		-moz-transform: translateX(-50%) scale(1);
		-ms-transform: translateX(-50%) scale(1);
		-o-transform: translateX(-50%) scale(1);
		transform: translateX(-50%) scale(1);
	}
}
.bio-close.is-visible {
	visibility:visible;
	z-index: 4;
	display: block;
	-webkit-animation: bio-move-in 0.8s;
	-moz-animation: bio-move-in 0.8s;
	animation: bio-move-in 0.8s;
}
.bio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.5);
	cursor: pointer;
	display: none;
}


@-webkit-keyframes bio-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes bio-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes bio-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bio-move-in {
	0% {
		-webkit-transform: translateX(100px);
	}
	100% {
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes bio-move-in {
	0% {
		-moz-transform: translateX(100px);
	}
	100% {
		-moz-transform: translateX(0);
	}
}
@keyframes bio-move-in {
	0% {
		-webkit-transform: translateX(100px);
		-moz-transform: translateX(100px);
		-ms-transform: translateX(100px);
		-o-transform: translateX(100px);
		transform: translateX(100px);
	}
	100% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}
.bio-details {
	font-size:1em;
}
.bio-details ul {
	overflow: auto;
}
.bio-details ul li {
	list-style-type: none;
	float: left;
}
.bio-details ul li a i {
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	font-size: 25px;
	text-align: center;
	margin-right: 10px;
	padding-top: 15%;
	transition: all 0.2s ease-in-out;
}
.bio-details ul li a i:hover {
	opacity: .7;
}
.cd-find-content{
	background-color: #f2f2f2;
	width: 100%;
}