*
{
	margin: 0px;
	padding: 0px;
}
.accordion
{
	width: 100%;
	height: 350px;
	margin: 10px auto;
	overflow: hidden;
}
.accordion ul
{
	list-style: none;
	cursor: pointer;
}
.accordion ul li
{
	position: relative;
	width: calc(100% / 3);
	float: left;
	transition: all 0.5s;
	box-shadow: 0px 0px 30px black;
}
.accordion ul:hover li
{
	width: calc((100% - 700px) / 2);
}
.accordion ul li:hover
{
	width: 700px;
}

.accordion ul li a
{
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	padding: 15px 0px 15px 0px;
	color: white;
	text-decoration: none;
	width: 100%;
	font-size: 1em;
	font-family: 'Oswald',sans-serif;
	text-transform: uppercase;
	text-align:center;
}

.accordion ul li h1
{
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	padding: 15px;
	color: white;
	text-decoration: none;
	width: 90%;
	font-size: 18px;
	font-family: 'Oswald',sans-serif;
	text-align:center;
	
}




.hvrbox img {
	max-width: 100%;
}
.hvrbox .hvrbox-layer_bottom {
	display: block;
}
.hvrbox .hvrbox-layer_top {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
	padding: 5px;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
	opacity: 1;
}
.hvrbox .hvrbox-text {
	text-align: justify;
	font-size: 18px;
	display: inline-block;
	position: absolute;
	top: 40%;
	left: 49.5%;
	width: 80%;
	
	/*top: 40%;
	left: 50%;
	width: 80%;*/
	
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.hvrbox .hvrbox-text_mobile {
	font-size: 12px;
	border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
	border-top: 1px solid rgba(179, 179, 179, 0.7);
	margin-top: 5px;
	padding-top: 2px;
	display: none;
}
.hvrbox.active .hvrbox-text_mobile {
	display: block;
}