.tagline {
	font-size: 0.9rem;
	color: var(--primary-color);
}

.hero {
	text-align: center;
	color:#FFF;
}
.hero h2 {
	font-family: var(--font-che);
	font-size: 2rem;
}
.content_right h2{
	font-size: 3.4rem;
	text-wrap: balance;
}
.content_right p{
	font-size: 1.2rem;
	line-height:2rem;
	text-wrap: balance;
}

/*Parallax*/
.section.top_product {
    position: relative;
    background: linear-gradient(45deg, #b9b7a9 0%, #939183 100%);
    color: #fff;
   
}
section.git a{
	color:#FFF;
}
.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* pour ne pas bloquer l'interaction avec le texte */
}

.parallax-item {
    position: absolute;
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: 1; /* derrière le texte */
}

.top_product h2, 
.top_product p {
    position: relative;
    z-index: 2; /* au-dessus des images */
}
img.title_img{
	position:relative;
	width:100%;
	max-width:436px;
	margin:30px auto;
	display:block;
}
.flacon1 {
	position:absolute;
    left: 5%;
    top: 30%;
    width: 300px;
}
.flacon2 {
    right: 5%;
    top: 45%;
    width: 150px;
    transform: rotate(15deg);
}
.creme {
	position:relative;
	width:90%;
	max-width:491px;
	margin:70px auto 20px auto;
	display:block;
    /*left: calc(50% - 275px);
    top: 10%;
    width: 551px;
    transform: translateX(-50%);*/
}
/*Fin Parallax*/
.section.top_product {
	padding-bottom:10px;
}
section.top_product ul{
	position:absolute;
	right:5%;
	font-size:2rem;
	font-weight:bold;
	top:40%;
	z-index:1000;
}
section.top_product li{
    list-style: none; /* Désactive l'icône par défaut */
    background: url("../img/general/check_box.png") no-repeat left center;
    background-size: 35px; /* Ajuste la taille de l'icône si nécessaire */
    padding-left: 45px; /* Espacement pour éviter que le texte chevauche l'icône */
    line-height: 23px;
    height: 46px;
    display: flex;
    align-items: center; /* Aligne verticalement */
}
/*empowered*/
section.empowered {
    position: relative;
    width: 100%;
    height: 591px; /* Fix hauteur */
    overflow: hidden;
}

section.empowered .int_empowered {
    position: absolute;
    top: 0;
    left: 0;
    color: #FFF;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    z-index: 1; /* Pour passer devant la vidéo */
}
section.empowered .int_empowered h2{
	font-size:2.2rem;
	letter-spacing: 3px;
	font-weight:normal;
	padding-bottom:20px;
}
.cta-btn {
	background: linear-gradient(180deg, #0d6c87 0%, #0d5064 100%);
	color: #fff;
	padding: 20px 24px;
	text-decoration: none;
	border-radius: 8px;
	display: inline-block;
	transition: background 0.5s;
	box-shadow:0 0 5px #000000;
	border-top:2px solid #5292a3;
	border-bottom:1px solid #08313e;
	max-width:700px;
	margin:0 auto;
	letter-spacing:3px;
}
.cta-btn:hover {
	background: #0d6c87;
}
.product-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
}
.product-card {
	background: #f0f0f0;
	border-radius: 8px;
	padding: 20px;
	flex: 1 1 250px;
	max-width: 300px;
	text-align: center;
	box-shadow: 0 0px 4px rgba(0,0,0,0.3);
}
.product-card:hover {
	background: #d2d2d2;
}
.product-card img {
	max-width: 80px;
	margin-bottom: 15px;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    min-width: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}
/*video*/
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplissage sans déformer */
    z-index: 0;
	/*transform: rotate(180deg);*/
}
/*Fin video*/

@keyframes fadeInError {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1500px) {
	.section.section-light .content_right {
		padding: 5% 5%;
		width:50%;
	}
	.content_right h2 {
		font-size: 2.5rem;
	}
}
@media (max-width: 1250px) {
	.creme {
		max-width:400px;
	}
}
@media (max-width: 950px) {
	.section.section-light .content_right {
		padding: 0% 5%;
	}
	img.title_img {
		max-width:250px;	
	}
	.creme {
		max-width:350px;
	}
	.flacon1 {
		width: 136px;
		top:60%;
	}
	.flacon2 {
		width: 100px;
		top:50%;
	}
}
@media (max-width: 768px) {
	.section.section-light .content_right{
		width:90%;
		padding:10% 5%;
	}
	.section.section-light .img_left {
	  width: 100%;
	}
	.flacon2{
		display:none;
	}
	.creme {
		max-width:300px;
	}
}
@media (max-width: 500px) {
	section.top_product li{
		font-size:1.6rem;
		right:10%;
	}
}
@media (max-width: 400px) {
	section.top_product li{
		position:relative;
		text-align:center;
		font-size:1.2rem;
	}
	.cta-btn {
		width:auto;
		margin:0 3%;
	}
	.flacon1{
		display:none;
	}
	.section top_product{
		
	}
	section.empowered .int_empowered h2 {
		font-size:1.5rem;	
	}
}
