/*
*
* = PRESS LISTE --------------------------------------------------------------------------------------------------------
*
*/

.press-content {
	display: block;
	width: 1000px;
	margin: 45px auto 60px;
}

.press-liste {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	flex-wrap: wrap;
}

.press-liste-item {
	display: block;
	position: relative;
	margin-bottom: 90px;
	max-width: 238px;
	width: 238px;
	flex: 1 0 238px;
	margin-right: 16px;
	transform: translateY(50px);
	opacity: 0;
}


.visible .press-liste-item {
	transform: translateY(0px);
	opacity: 1;
	transition: .5s ease transform, .5s ease opacity;
}


.press-liste-item:nth-child(1) {
	transition-delay: .3s;
}

.press-liste-item:nth-child(2) {
	transition-delay: .6s;
}

.press-liste-item:nth-child(3) {
	transition-delay: .9s;
}

.press-liste-item:nth-child(4) {
	transition-delay: 1.2s;
}

.press-liste-item:nth-child(5) {
	transition-delay: 1.5s;
}

.press-liste-item:nth-child(6) {
	transition-delay: 1.8s;
}

.press-liste-item:nth-child(7) {
	transition-delay: 2.1s;
}

.press-liste-item:nth-child(8) {
	transition-delay: 2.4s;
}

.press-liste-item:nth-child(9) {
	transition-delay: 2.7s;
}

.press-liste-item:nth-child(10) {
	transition-delay: 3s;
}

.press-liste-item:nth-child(11) {
	transition-delay: 3.3s;
}

.press-liste-item:nth-child(12) {
	transition-delay: 3.6s;
}

.press-liste-item:nth-child(13) {
	transition-delay: 3.9s;
}

.press-liste-item:nth-child(14) {
	transition-delay: 4.2s;
}

.press-liste-item:nth-child(15) {
	transition-delay: 4.5s;
}

.press-liste-item:nth-child(16) {
	transition-delay: 4.8s;
}

.press-liste-item:nth-child(4n) {
	margin-right: 0px;
}

.press-liste-item-categorie {
	position: absolute;
	left: 12px;
	top: -20px;
	font-family: 'dosissemibold';
	text-align: center;
	text-transform: uppercase;
	width: 49px;
	line-height: 49px;
	border: 1px solid;
	z-index: 2;
}

.press-liste-item-categorie_press {
	color: white;
	background-color: #bdbcbc;
	border-color: #bdbcbc;
}

.press-liste-item-categorie_news {
	color: #bdbcbc;
	background-color: white;
	border-color: #bdbcbc;
}

.press-liste-item_image {
	position: relative;
	display: block;
	width: 238px;
	height: 178px;
	background: #999999;
	overflow: hidden;
}

.press-liste-item_image img {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.press-liste-item_titre {
	font-family: 'interstatebold';
	font-weight: 400;
	text-transform: uppercase;
	color: black;
	font-size: 16px;
	line-height: 22px;
	margin-top: 12px;
}

.press-liste-item_date {
	font-family: 'interstatelight';
	font-weight: 400;
	color: black;
	font-size: 14px;
	line-height: 20px;
}

@media screen and (max-width: 1024px) {
	.press-content {
		width: 800px;
	}

	.press-liste-item:nth-child(4n),
	.press-liste-item {
		margin-right: 28px;
	}
}

@media screen and (max-width: 850px) {
	.press-content {
		width: 533px;
	}

	.press-liste-item:nth-child(4n),
	.press-liste-item {
		margin-right: 14px;
		margin-left: 14px;
	}
}

@media screen and (max-width: 550px) {
	.press-content {
		width: calc(100% - 60px);
	}

	.press-liste {
		display: block;
	}

	.press-liste-item:nth-child(4n),
	.press-liste-item {
		margin-right: 0px;
		margin-left: 0px;
		width: 100%;
		max-width: 100%;
	}

	.press-liste-item_image {
		width: 100%;
		height: 0;
		padding-bottom: 75%;
	}

	.press-liste-item,
	.visible .press-liste-item {
		transform: rotateX(30deg) translateY(50px);
		opacity: 0;
		transition: .5s ease transform, .5s ease opacity;
	}

	.visible.press-liste-item {
		transform: rotateX(0deg) translateY(0px);
		opacity: 1;
		transition: .5s ease transform, .5s ease opacity;
	}

	.visible.press-liste-item:nth-child(1)
	{
		transition-delay: .5s;
	}

	.visible.press-liste-item:nth-child(2),
	.visible.press-liste-item:nth-child(3),
	.visible.press-liste-item:nth-child(4),
	.visible.press-liste-item:nth-child(5),
	.visible.press-liste-item:nth-child(6),
	.visible.press-liste-item:nth-child(7),
	.visible.press-liste-item:nth-child(8),
	.visible.press-liste-item:nth-child(9),
	.visible.press-liste-item:nth-child(10),
	.visible.press-liste-item:nth-child(11),
	.visible.press-liste-item:nth-child(12),
	.visible.press-liste-item:nth-child(13),
	.visible.press-liste-item:nth-child(14),
	.visible.press-liste-item:nth-child(15),
	.visible.press-liste-item:nth-child(16) {
		transition-delay: 0s;
	}
}


/*
*
* = PRESS SINGLE -------------------------------------------------------------------------------------------------------
*
*/

.press-single-content {
	width: 1000px;
	padding-top: 95px;
	margin: 0 auto;
	display: block;
}

.press-single-categorie {
	font-family: 'dosismedium';
	color: #bdbcbc;
	font-size: 32px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateX(-100px);
	transition: .5s .5s ease opacity, .5s .5s ease transform;
}

.visible .press-single-categorie {
	opacity: 1;
	transform: translateX(0px);
}

.press-single-titre {
	font-family: 'dosismedium';
	color: black;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateX(-100px);
	transition: .5s .75s ease opacity, .5s .75s ease transform;
}

.visible .press-single-titre {
	opacity: 1;
	transform: translateX(0px);
}

.press-single-image {
	position: relative;
	display: block;
	width: 636px;
	height: auto;
	background-color: #999999;
	transition: 1s 1s ease opacity, 1s 1s ease transform;
	opacity: 0;
	transform: rotateX(60deg);
}

.press-single-image img{
	position: relative;
	left: 0;
	width: 100%;
	display: block;
}

.visible .press-single-image {
	opacity: 1;
	transform: rotateX(0deg);
}

.press-single-date {
	position: absolute;
	opacity: 0;
	right: 0px;
	top: 40px;
	background-color: rgba(191, 190, 190, 0.8);
	width: 161px;
	height: 161px;
	transition: .5s 1.5s ease opacity, .5s 1.5s ease right;
}

.visible .press-single-date {
	right: -120px;
	opacity: 1;
}

.press-single-date {
	position: absolute;
	top: 40px;
	background-color: rgba(191, 190, 190, 0.8);
	width: 161px;
	height: 161px;
	font-family: 'interstatelight';
	color: white;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	padding: 12px;
}

.press-single-date span {
	/*font-family: 'interstatebold';*/
	font-family: 'interstateregular';
}

.press-single-texte {
	width: 700px;
	margin: 70px 0 80px;
	opacity: 0;
	transition: .5s 1s ease opacity;
}

.visible .press-single-texte {
	opacity: 1;
}

.question-panel_press {
	margin-bottom: 115px;
	opacity: 0;
	transition: .5s 1s ease opacity;
}

.visible .question-panel_press {
	opacity: 1;
}

@media screen and (max-width: 1024px) {
	.press-single-content {
		width: 800px;
		padding-top: 30px;
	}

	.press-single-categorie {
		font-size: 32px;
		margin-bottom: 10px;
	}

	.press-single-titre {
		font-size: 20px;
		line-height: 29px;
		margin-bottom: 40px;
	}

	.press-single-date {
		top: 20px;
		width: 90px;
		height: 90px;
		font-size: 12px;
		line-height: 15px;
	}

	.visible .press-single-date {
		right: -60px;
	}

	.press-single-texte {
		width: 100%;
		margin: 60px 0 70px;
		max-width: 635px;
	}

	.question-panel_press {
		margin-bottom: 90px;
	}
}

@media screen and (max-width: 850px) {
	.press-single-content {
		width: calc(100% - 60px);
	}

	.press-single-image {
		position: relative;
		display: block;
		width: 100%;
		height: auto;
		background-color: #999999;
		left: -30px;
	}

	.press-single-texte {
		width: 100%;
		margin: 60px 0 70px;
		max-width: 100%;
	}
}
