
.carousel{
    height: 284px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.carousel-inner{
    height: 100%;
    display: flex;
    transition: all ease .5s;
}
.carousel-item{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
	width:100%;
    min-height: 284px;

}
.carousel-item h1 a, .carousel-item h2 a, .carousel-item .siteslogo a{
	color: white;
}
.carousel-item .siteslogo {
	font-size: 0.7em;
	display: block;
	position: absolute; 
    bottom: -10px;
	color: white;
	text-align: right;
	margin-bottom : 5px;
    z-index: 20;
}
.carousel-item .siteslogo a.flexstart {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    min-height: 44px;
    min-width: 44px;
}

.carousel-controls .prev{
    display: inline-block;
    height: 32px;
    width: 32px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .5;
    z-index: 2;
    /* Flèche gauche en CSS pur */
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 10px;
    transform: translateY(-50%) rotate(135deg);
}

.carousel-controls .next{
    display: inline-block;
    height: 32px;
    width: 32px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .5;    
    z-index: 2;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 10px;
    transform: translateY(-50%) rotate(-45deg);
}

.prev:hover, .next:hover{
    opacity: 1;
}
.carousel-indicators{
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
	width: 95%;
	z-index: 2;
}
.carousel-indicators span{
    display: inline-block;
    background-color: #dadada;
    width: 10px;
    height: 8px;
    border-radius: 2px;
    opacity: .3;
    cursor: pointer;
    margin: 3px;
	z-index: 10;
    border-radius: 4px;
}
.carousel-indicators span.active{
    opacity: 1;
    background-color: #ffffff;
    width: 40px;
    border-radius: 4px;
}
.carousel-caption {
    position: static;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 22px;
}

.carousel-item h1,
.carousel-item h2 {
    position: absolute;
    top:60%;
    bottom: auto;
    width: 560px;
    max-width: 560px;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 1.3em;
    line-height: 1.3;
    font-weight: 700;
    z-index: 20;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.carousel-item h1 a,
.carousel-item h2 a {
    color: #ffffff !important;
    text-shadow: none !important;
}

.divnormalHP .carousel {
height: auto;
}