.carrousel_testimonials {
	position: relative;
}

.slick-track {
	display: flex;
	gap: 20px;
}

.slick-list {
	width: 100%;
    overflow: hidden;
}

.slick-arrow {
	position: absolute;
	top: calc(50% - 15px);
	width: 60px;
	height: 30px;
	background-image: url(/wp-content/uploads/2022/11/temoignage-arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	font-size: 0;
	display: block;
	background-color: transparent;
	border: none;
	opacity: .7;
	transition: .3s;
	cursor: pointer;
}

.slick-arrow:hover {
	opacity: 1;
}

.slick-prev {
	left: -100px;
	transform: rotate(180deg);
}

.slick-prev:hover {
	transform: rotate(180deg) translate(10px);
}

.slick-next {
	right: -100px;
}

.slick-next:hover {
	transform: translate(10px);
}

.carrousel_testimonials_item {
	background-color: #f3f5f9;
	padding: 50px 40px 20px;
}

.carrousel_testimonials_content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.carrousel_testimonials_img {
	width: 150px;
	background-color: var(--yjb_decoration);
    position: relative;
    margin-top: 0px;
    padding: 35px 30px;
    overflow: visible;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%, 0 50px);
    -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%, 0 50px);
}

.carrousel_testimonials_img::before {
	content: "";
    clip-path: polygon(49px 0, 100% 0, 100% 100%, 0% 100%, 0 49px);
    -webkit-clip-path: polygon(49px 0, 100% 0, 100% 100%, 0% 100%, 0 49px);
    background-color: white;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
}

.carrousel_testimonials_img img {
	width: 90px;
	position: relative;
	height: 90px;
}

.carrousel_testimonials_txt {
	width: calc(100% - 150px);
    padding-left: 50px;
    color: #1b1464;
    font-weight: 700;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
	position: relative;
	padding-bottom: 15px;
}

.carrousel_testimonials_txt::before {
	content: "";
    display: block;
	width: 40px;
    height: 34px;
    background-image: url(/wp-content/uploads/2022/11/temoignages-quote-1.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: -18px;
    top: -7px;
}

.carrousel_testimonials_txt::after {
	content: "";
    display: block;
	width: 40px;
    height: 34px;
    background-image: url(/wp-content/uploads/2022/11/temoignages-quote-2.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 10%;
    bottom: -7px;
}

.carrousel_testimonials_credits {
	margin-top: 25px;
}

.carrousel_testimonials_prenom {
	color: #f95c38;
	font-weight: 600;
}

.carrousel_testimonials_prenom::after {
	content: "/";
	color: #c9e265;
	font-weight: 900;
    margin-right: 10px;
    margin-left: 10px;
}

@media screen and (max-width: 1300px) {
	
	.slick-prev {
		left: -80px;
	}
	
	.slick-next {
		right: -80px;
	}
	
}

@media screen and (max-width: 767px) {
	
	.carrousel_testimonials {
		padding-bottom: 50px;
	}
	
	.carrousel_testimonials_txt {
		width: 100%;
		padding-left: 30px;
		font-size: 1.15rem;
	}
	
	.slick-arrow {
		top: auto;
		bottom: -20px;
	}
	
	.slick-prev {
		right: 55%;
		left: auto
	}
	
	.slick-next {
		left: 55%;
		right: auto;
	}
	
}

@media screen and (max-width: 480px) {
	
	.carrousel_testimonials_img {
		width: 120px;
		padding: 30px 25px 20px;
	}
	
	.carrousel_testimonials_img img {
		width: 70px;
		height: 70px;
	}
	
	.carrousel_testimonials_item {
		padding: 30px 25px 20px 40px;
	}
	
	.carrousel_testimonials_txt {
		font-size: 1.05rem;
		padding-left: 10px;
	}
	
	.carrousel_testimonials_txt::before {
		width: 30px;
    	height: 26px;
	}
	
	.carrousel_testimonials_txt::after {
		width: 30px;
    	height: 26px;
		bottom: 5px;
	}
	
}




