.tem_container {
	position: relative;
}

.tem_container::before {
	content: "";
    display: block;
    width: calc(100% - 40px);
    background-color: #ffffff82;
    height: calc(100% + 30px);
    position: absolute;
    left: 20px;
    top: -15px;
}

.tem_container::after {
	content: "";
    display: block;
    width: calc(100% - 80px);
    background-color: #ffffff4f;
    height: calc(100% + 60px);
    position: absolute;
    left: 40px;
    top: -30px;
}

.tem_container .slick-list {
	overflow: hidden;
}

.tem_container .slick-track {
	display: flex;
}

.tem_item {
	display: flex;
    flex-wrap: wrap;
	background-color: white;
    padding: 50px 50px;
}

.tem_img {
	width: 200px;
	height: 200px;
	border: 1px solid var(--oxy_color_8);
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 25px;
}

.tem_img img {
	max-width: 100%;
    height: auto;
}

.tem_content {
	width: calc(100% - 200px);
	padding-left: 50px;
	padding-right: 20%;
	position: relative;
	min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tem_more {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 70px;
}

.tem_more a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--oxy_color_6);
	font-size: 0;
	background-image: url(/wp-content/uploads/2022/06/cross-plus-white.svg);
	background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    transition: 0.3s;
}

.tem_more a:hover {
	opacity: 0.9;
}

/* Chiffres */

.tem_chiffres_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 45px;
	margin-top: 10px;
}

.tem_chiffre_item {
	width: auto;
    border-right: 1px solid var(--oxy_color_8);
    padding-right: 45px;
}

.tem_chiffre_item:last-child {
	border-right: none;
}

.tem_chiffre_chiffre {
	color: var(--oxy_color_9);
	font-size: 1.7em;
    line-height: 1;
	margin-bottom: 3px;
}

.tem_chiffre_label {
	font-size: 1.1em;
	line-height: 1.2;
}

/* Slider arrows */

.slick-arrow {
	width: 50px;
    height: 50px;
    background-color: var(--oxy_color_7) !important;
	/* background-image: url(/wp-content/uploads/2022/09/more-arrow-white-copie.svg) !important; */
	background-image: url(/wp-content/uploads/2025/04/more-arrow-night_blue.svg) !important;
	background-size: 15px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
	transition: 0.3s;
}

.slick-arrow::before {
	display: none;
}

.slick-arrow.slick-next {
	right: -80px;
}

.slick-arrow.slick-prev {
	left: -80px;
	transform: translate(0, -50%) rotate(180deg);
	z-index: 1000;
}

.slick-arrow:hover {
	/* opacity: 1; */
	opacity: .7;
}


@media screen and (max-width: 1450px) {
	
	.tem_container {
		margin-right: 100px;
		margin-left: 100px;
	}
	
}

@media screen and (max-width: 1200px) {
	
	.tem_content {
		padding-right: 100px;
	}
	
	.tem_chiffre_item {
		width: calc(33.333% - 20px);
		padding-right: 30px;
	}
	
	.tem_chiffres_wrap {
		gap: 20px 30px;
	}
	
	.slick-arrow.slick-prev {
		left: -60px;
	}
	
	.slick-arrow.slick-next {
		right: -60px;
	}
	
	.tem_container {
		margin-right: 60px;
		margin-left: 60px;
	}
	
}

@media screen and (max-width: 991px) {
	
	.tem_content {
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
		padding-right: 0;
		padding-bottom: 130px;
	}
	
	.tem_more {
		height: 70px;
		bottom: 0;
		top: auto;
		width: 100%;
	}
	.tem_img {
		width: 100%;
	}

	.tem_img img {
		max-width: 200px;
	}
}

@media screen and (max-width: 768px) {
	
	.tem_item {
		padding: 30px 30px;
	}
	
	.tem_chiffre_item {
		width: 100%;
		padding-right: 0;
		border-right: none;
		display: flex;
		align-items: first baseline;
	}
	
	.tem_chiffre_chiffre {
		/*min-width: 65px;*/
		text-align: center;
		font-size: 2.6em;
		margin-right: 12px;
		
	}
	
	
	.tem_container {
		margin: 0;
	}
	
	.slick-arrow.slick-prev {
		bottom: -120px;
		left: auto;
		right: 110px;
		top: auto;
	}
	
	.slick-arrow.slick-next {
		right: 40px;
    	bottom: -120px;
		top: auto;
	}
	
}




