html,
body {
	background: #fff;
	font-family: 'Open Sans', arial, clean, helvetica;
	font-size: 0.9375rem;
	color: #6b6b73;
	line-height: 1.75;
}

a {
	color: #6b6b73;
	transition: all .3s ease-in-out;
}

a:hover,
a:focus {
	color: #6b6b73;
	transition: all .3s ease-in-out;
}

h1,h2,h3,h4,h5,h6,
.visual_h1,.visual_h2,.visual_h3,.visual_h4,.visual_h5,.visual_h6 {
	font-family: 'Anonymous Pro', 'Open Sans', arial, clean, helvetica;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.2;
}

h4,
.visual_h4 {
	font-size: 1.25rem;
	/* margin-bottom: 3rem; */
}

h5,
.visual_h5 {
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.bold {
	font-weight: 600;
}

.hero-area {
	height: 85vh;
	/* height: calc(100vh - 40px); */
	background: #2c2c2c;
	color: #9a9aa6;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-area a{
	color: #9a9aa6;
}

.hero-area h4,
.hero-area .visual_h4 {
	margin-bottom: 3rem;
}

.hero-area a:focus,
.hero-area a:hover{
	color: #fff;
	text-decoration: none;
}

.hero-area img {
	max-height: 18vh;
}

.hero-area p {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.2rem;
}

@media (min-width: 1200px) {
	.hero-area img {
		max-width: 9vw;
	}
}

@media (max-width: 1199px) {
	.centered-md {
		text-align: center;
	}
}

.hero-area_bg {
	text-align: center;
}

.hero-area_bg .top {
	padding-bottom: 3vh;
}

.hero-area_bg .bottom {
	padding-top: 3vh;
}

.main > section {
	margin: 5rem 0;
}

.lead {
	font-size: 1.5rem;
	font-weight: 300;
}

.text-lg {
	font-size: 1.2rem;
	font-weight: 300;
}

.margin-t-l {
	margin-top: 5rem;
}

#page-footer {
	margin: 5rem 0 1rem 0;
	text-align: center;
}

.hr {
	border-top: 1px solid #f2f2f0;
}

#page-footer .hr {
	padding-top: 3rem;
}

.no-wrap {
	display: inline-block;
	white-space: no-wrap;
}
/*
@media (max-width: 980px) {
	.persons-wrap {
		display: block;
	}
}

@media (min-width: 980px) {
	.persons-wrap {
		display: flex;
		justify-content: center;
	}
}
*/

.card {
	background: #fff;
	border-radius: 3px;
	border: 1px solid #e7ebeb;
}

.person-card-col {
	/* max-width: 320px; 
	margin: 0 auto; */
	margin-bottom: 32px;
}

.person-card-content {
	position: relative;
	overflow: hidden;
}

.person-card-top {
	height: 180px;
	position: relative;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-size: cover;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.person-card-bottom {
	position: relative;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border: 1px solid #e7ebeb;
	border-top: none;
	min-height: 180px;
	padding: 60px 16px 16px 16px;
	text-align: center;
}

.person-card-avatar {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: #fff;
	padding: 4px;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -50px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
}

.person-firstname {
	font-size: 32px;
	font-weight: 300;
}

.person-surname {
	font-size: 26px;
	margin-bottom: 8px;
	font-weight: 300;
	line-height: 1;
}

.person-card-content {
	overflow: hidden;
}

.person-card-slide {
	transition: all .3s ease-in-out;
}

.person-card-content:hover .person-card-slide {
	transform: translateX(-100%);
}

.visible-on-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: -1;
	transform: translateX(200%);
	transition: all .5s ease-in-out;
	background: #f7f7f7;
	padding: 20px;
	text-align: center;
	display: flex;
	align-items: center;
}

.person-card-content:hover .visible-on-hover {
	opacity: .95;
	z-index: 1;
	transform: translateX(100%);
	transition-delay: .1s;
}

.centered {
	text-align: center;
}

.responsive {
	max-width: 100%;
	height: auto;
}

.responsive img {
	max-width: 100%;
}

.img-reference img{
	max-width: 100px;
}

.reference-link {
	margin-top: 1rem;
	display: inline-block;
}

/*
.person-card-content img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.person-card-top {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
*/






