*,*:after,*:before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body{
	font-family: arial;
	font-size: 16px;
	margin: 0;
	background: #fff;
}

.profile-container{
	display: flex;
}
.profile-box{
	flex-basis: calc(100%);
	position: relative;
	overflow: hidden;
	height: 100vh;
	background-size:  auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.6s ease-out;
	border-right: 0px solid #000;
	display: flex;
	align-items: flex-end;
	padding: 40px;
}
.profile-box-content{
	background:rgba(0,0,0,0.8);
	padding: 30px;
	color: #fff;
	font-size: 18px;
	opacity: 0;
	position: relative;
	left: -30px;
	
}
.profile-box-content h2{
	margin:0 0 20px;
}
.profile-box-content p:last-child{
	margin: 0;
}
.profile-box:hover .profile-box-content{
	opacity: 1;
	transition: all 0.3s ease-out 0.6s ;
	left: 0;
}
.profile-box:last-child{
	border:0px;
}
.profile-container:hover .profile-box{
	flex-basis: calc(30%);
}
.profile-container:hover .profile-box:hover{
	flex-basis: calc(80%);
	transition: all 0.4s ease-out;
	z-index: 1;
}



body {
font-variant-numeric: lining-nums;
font-feature-settings: 'lnum';
-moz-font-feature-settings: 'lnum=1';
-ms-font-feature-settings: 'lnum';
-webkit-font-feature-settings: 'lnum';
-o-font-feature-settings: 'lnum';
}



