
.carousel{
	margin-top: 80px;
	width: 100vw;
	height: 600px;
	
	
}

.carousel .banners .banner{
	height: 600px;
	padding: 200px 0 0px 80px;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	color: white;
	
}


.carousel .banners .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Overlay avec une couleur noire et une opacité de 50% */
    z-index: 1;
    /*filter: blur(5px); /* Appliquer un flou à l'overlay */
}

.text-block{
	position: relative;
	z-index: 2;
}


.carousel .banners .banner  .title{
	font-size: 30px;
	margin-bottom: 25px;
}

.carousel .banners .banner  .subtitle{
	font-size: 16px;
	margin-bottom: 25px;
}

.carousel .banners .banner  .description{
	font-size: 16px;
	margin-bottom: 80px;
}


.carousel .banners .banner  .btn-block button{
	height: 50px;
	width: 250px;
	color: white;
	background-color: #FF0000;
	border: 0;
	font-size: 16px;
}





/*

.carousel .nav{
	position: fixed;
	z-index: 10;
	top: 350px;
	cursor: pointer;
	opacity: 0.8;
}

.carousel .nav img{
	width: 40px;
	height: 40px;
}

.carousel .left-nav{
	left: 5px;
}

.carousel .right-nav{
	right: 5px;
}
*/



@media (max-width:768px)
{
	.carousel{
		margin-top: 0;
		max-height: 600px;
	}

	
	.carousel .banners .banner{
		padding: 100px 20px 0 20px;
		height: 600px;
	}
	
	.carousel .banners .banner .title{
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.carousel .banners .banner .subtitle{
		font-size: 16px;
		margin-bottom: 15px;

	}
	
	.carousel .banners .banner  .description{
		font-size: 14px;
		margin-bottom: 50px;
	}
	
	.carousel .banners .banner  .btn-block button{
		height: 40px;
		width: 200px;
		font-size: 14px;
	}
}
