
.carousel{
    height: 284px;
    width: 100%;
    /* margin-top: 40px; */
    /* margin-bottom: 40px; */
    /* max-width: 678px; */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    /* border-radius: 13px; */
}
.carousel-inner{
    height: 100%;
    /* width: 400px; */
    display: flex;
    transition: all ease .5s;
}
.carousel-item{
    flex: 1;
    height: 100%;
    display: flex;
    /*flex-direction: column;
     align-items: center; */
    justify-content: center;
	width:100%;
    min-height: 284px;

	
}
.carousel-item h1,
.carousel-item h2
{
    /* opacity: .6; */
	font-size: 1.3em;
	display: block;
	/* background: black;  */
	position: absolute; 
	bottom: -15px; 
	color: white;
	width: 455px;
	/* padding: 10px; */
	border-radius: 3px;
	z-index: 12;
}
.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;
	float: right;
	margin-bottom : 5px;
}
.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;
    /* Flèche droite en CSS pur */
    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;

}
