.w-list {
	min-height: 84.5vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.w-item {
	margin: 10px;
	padding: 5px;
	width: 350px;
	height: 20vh;
	background-color: #000;
	border-radius: 30px;
	border: 2px solid #DEE1E6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	-o-transition: 0.3s transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
	cursor: pointer;
}
.w-item:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.w-item h2 {
	font-size: 20px;
	text-transform: uppercase;
	color: #EBD98D;
	text-shadow: 0 0 10px;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 30px;
}

.info {
	display: none;
}
.info-act {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.info p {
	width: 70%;
	text-align: center;
	font-size: 20px;
	padding: 15px 0;
	border-bottom: 3px solid rgba(0,0,0,0.5);
}
.info ul {
	padding-top: 20px;
	text-align: center;
	list-style: none;
	line-height: 30px;
	font-size: 18px;
}
.no-active {
	display: none;
}
.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	width: 80%;
	height: 70vh;
	color: #000;
}
.active:hover {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}
