#first-person {
	border: 3px solid black;
	padding: 0;
	margin-bottom: 35px;
}

.thumbnail {
	width: 100%;
	height: 100%;
	display: block;
	line-height: 20px;
	padding: 0;
	overflow: hidden;
	position: relative;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	text-align: center;
	background: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.thumbnail > img {
	display: block;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.thumbnail .mask {
	opacity: 0.85;
	filter: alpha(opacity=85);
	top: calc(100% - 45px);
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffb716;
	position: absolute;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2 s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	padding: 0 15px;
}

.thumbnail .mask h2 {
	margin-top: 0;
	color: #191A1C;
	font-size: 25px;
	font-family: 'Oswald';
	text-transform: uppercase;
	line-height: 40px;
}

.thumbnail:hover .mask {
	top: 0;
}

.thumbnail:hover .mask-inner {
	height: auto;
	transform: translatey(-50%);
	top: 50%;
	position: relative;
}

.box-button {
	display: block;
	padding: 5px;
	color: #333 !important;
	background: orange;
	opacity: 1;
	border: 1px solid #333;
	max-width: 150px;
	margin: auto;
}