/*

	ITEM > MEDIAS (listing albums photos / videos)

*/
.medias-item {
	width: 300px;
	margin: 10px auto;
	display: block;
	position: relative;
	z-index: 12;
	border: 1px solid #c0bcbc;
	border-radius: 7px;
	padding: 20px 10px;
	overflow: hidden;
}
	.medias-item .picture {
		width: 100%;
		height: 180px;
		text-align: center;
		display: flex; display: -webkit-flex; 
		flex-flow: column; -webkit-flex-flow: column;
		justify-content: center; -webkit-justify-content: center;
	}
		.medias-item .picture img {
			margin: auto;
			max-width: 100%;
			max-height: 180px;
		}
	.medias-item .infos {
		height: 68px;
		padding: 10px;
		position: relative;
		color: #21211f;
		text-transform: uppercase;
	}
		.medias-item .infos .title {
			padding-top: 10px;
			padding-bottom: 2px;
			text-align: center;
			font-size: 19px;
			text-transform: uppercase;
			line-height: 0.9;
			font-family: 'Bebas Neue', cursive;
		}
		.medias-item .infos .date {
			text-align: center;
			font-size: 11px;
		}


/* 	HOVER 	*/
.medias-item:hover .picture-wrapper .picture {
  	-moz-transform: scale(1.2);
  	-webkit-transform: scale(1.2);
  	transform: scale(1.2);	
}
.medias-item:hover .infos {
}
	.medias-item:hover .infos .title {
	}


/*	COLORS 	*/
.medias-item.yellow-item {
	background-color: #ffcb05;
}



/* 	PARNERS */
.medias-item.partners-item .picture-wrapper {
	background: #FFF;
}
	.medias-item.partners-item .picture-wrapper {
		background: #FFF;
	}
.medias-item.partners-item .infos {
	background: none;
}
	.medias-item.partners-item .infos .title {
		font-size: 13px;
		text-align: center;
		color: #0d3885;
	}

