.actus-slide {
	gap: 2em;
	display: flex;
	padding-top: 5%;
	overflow: hidden;
	padding-bottom: 5%;
	position: relative;
	flex-direction: column;
}

.actus-slide:after {
	left: 0;
	bottom: 0;
	height: 65%;
	content: "";
	width: 100%;
	position: absolute;
	background: var(--e-global-color-primary);
}

.actus-slide__title {
	margin: 0 auto;
	display: flex;
	width: fit-content;
	text-align: center;
	position: relative;
	padding-bottom: 1.5em;
	justify-content: center;
}

.actus-slide__title h2 {
	margin: 0;
	font-size: 4rem;
	line-height: 4rem;
	color: var(--e-global-color-primary);
	font-family: "The Seasons", Sans-serif;
}

.actus-slide__title:after {
	bottom: 0;
	height: 2px;
	width: 120px;
	content: "";
	position: absolute;
	background-color: #364A4E;
}

.actus-slide__slider {
	z-index: 10;
	display: flex;
	position: relative;
	align-items: center;
}

.swiper-actus {
	overflow: hidden;
}

.actus-slide__slider .swiper-slide {
	width: fit-content;
}

.actus-slide-button {
	z-index: 20;
	width: 40px;
	height: 40px;
	color: #ffffff;
	cursor: pointer;
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/wp-content/themes/astra-child/templates/assets/img/arrow-w.svg);
}

.actus-slide-button-prev {
	left: 0;
}

.actus-slide-button-next {
	right: 0;
	transform: rotate(180deg);
}


/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.actus-slide__title h2 {
		font-size: 2rem;
		line-height: 2rem;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

	.actus-slide__title h2 {
		font-size: 3rem;
		line-height: 3rem;
	}

}

/*mobile and tablet*/
@media (max-width: 1023px) {

	.actus-slide-button {
		background-size: 30%;
		background-color: var(--e-global-color-secondary);
	}

}

/*desktop*/
@media (min-width: 1025px) {

	.actus-slide-button-prev {
		left: -50px;
	}

	.actus-slide-button-next {
		right: -50px;
	}

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/
