.actualites {
	width: 100%;
	position: relative;
	padding-top: 100px;
}

.actualites__bg {
	position: absolute;
	top: 0;
	width: 100%;
	height: 950px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -1;
}

@media only screen and (max-width: 800px) {
	.actualites__bg {
		height: 100vh;
	}
}

.actualites__bg .image {
	width: 100%;
	height: 100%;
}

.actualites__content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 67px;
}

.actualites__voir {
	padding: 10px 20px 10px 20px;
	color: white;
	font-size: 14pt;
	background: black;
	border-radius: 30px;
	cursor: pointer;
}

.actualites__voir:hover {
	box-shadow: 0 0 10px black;
}
.actualites-list {
	width: 45%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

@media only screen and (max-width: 1700px) {
	.actualites-list {
		width: 50%;
	}
}

@media only screen and (max-width: 1590px) {
	.actualites-list {
		width: 55%;
	}
}

@media only screen and (max-width: 1450px) {
	.actualites-list {
		width: 65%;
	}
}

@media only screen and (max-width: 1200px) {
	.actualites-list {
		width: 90%;
	}
}

@media only screen and (max-width: 800px) {
	.actualites-list {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 70%;
	}
}

@media only screen and (max-width: 650px) {
	.actualites-list {
		width: 90%;
	}
}

.actualites-list__item {
	width: 250px;
	height: 357px;
	border-radius: 30px;
	position: relative;
	box-shadow: 0px 0px 15px rgb(100, 100, 100);
	overflow: hidden;
}

@media only screen and (max-width: 1200px) {
	.actualites-list__item {
		width: 30%;
	}
}

@media only screen and (max-width: 800px) {
	.actualites-list__item {
		width: 100%;
		height: 300px;
		margin-bottom: 20px;
	}
}

.actualites-list__item .image-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: white;
	border-radius: 20px;
	transition: all 0.2s ease-out;
	position: relative;
	top: 0;
	left: 0;
}

.actualites-list__item .image-container:hover {
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
}

.actualites-list__item .image-container-1 {
	background: url(../images/act0.png) top center no-repeat;
	background-size: cover;
}

.actualites-list__item .image-container-2 {
	background: url(../images/act1.png) top center no-repeat;
	background-size: cover;
}
.actualites-list__item .image-container-3 {
	background: url(../images/act2.png) top center no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 800px) {
	.actualites-list__item .image-container-1 {
		background: url(../images/act0.png) center center no-repeat;
		background-size: cover;
	}

	.actualites-list__item .image-container-2 {
		background: url(../images/act1.png) center center no-repeat;
		background-size: cover;
	}
	.actualites-list__item .image-container-3 {
		background: url(../images/act2.png) center center no-repeat;
		background-size: cover;
	}
}

.actualites-list__item .content {
	width: 100%;
	height: 80%;
	position: absolute;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
	padding-bottom: 20px;
	pointer-events: none;
}

.actualites-list__item .title {
	font-size: 11pt;
	padding: 0 30px 0 30px;
	text-align: justify;
}

@media only screen and (max-width: 650px) {
	.actualites-list__item .title {
		padding: 0 10px 0 10px;
	}
}

.actualites-list__item .text {
	padding: 0 30px 30px 30px;
	text-align: justify;
	color: rgb(100, 100, 100);
}

@media only screen and (max-width: 650px) {
	.actualites-list__item .text {
		padding: 0 10px 10px 10px;
	}
}

.actualites-list__item .button {
	padding: 5px 20px 5px 20px;
	background: white;
	border: 1px black solid;
	margin-left: 30px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.2s ease-out;
	pointer-events: auto;
	font-size: 10pt;
}

.actualites-list__item .button:hover {
	background: black;
	color: white;
}

.actualites-special {
	width: 100%;
	margin-bottom: 20px;
	height: 270px;
	box-shadow: none;
}

.actualites-special .image-container {
	width: 68%;
	height: 90%;
	background: url(../images/actualites-special.png) center center no-repeat;
	background-size: cover;
	border-radius: 30px 30px 150px 30px;
	overflow: hidden;
}

.actualites-special .image-container:hover {
	width: 68%;
	height: 90%;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 800px) {
	.actualites-special .image-container {
		width: 70%;
	}
}

@media only screen and (max-width: 600px) {
	.actualites-special .image-container {
		width: 100%;
	}
}

.actualites-special .content {
	width: 50%;
	height: 70%;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	right: 0;
}

@media only screen and (max-width: 800px) {
	.actualites-special .content {
		width: 70%;
	}
}

.section-title-2 {
	padding-bottom: 20px;
}
