* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.bold {
	font-weight: 600;
}

.has-global-padding {
	padding: 0;
	margin: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: #FEF5E4;
}

.has-global-padding .bloc_01_defilement_global {
	padding: 0;
	margin: 0;
}

div .ds_bloc_01 {
	margin: 0;
	padding: 0;
}

.ds_bloc_01 {
	position: relative;
	overflow: hidden;
	min-height: 800px;
	color: #fff;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	width: 100%;
	background-position-y: bottom;
	background-size: cover;
	padding: 0;
}

/* texture legere */
.ds_bloc_01::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%,
			rgba(255, 255, 255, 0.08) 0,
			rgba(255, 255, 255, 0) 35%),
		radial-gradient(circle at 20% 80%,
			rgba(255, 255, 255, 0.05) 0,
			rgba(255, 255, 255, 0) 40%);
	pointer-events: none;
}


.ds_bloc_01_global {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 40px 70px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px;
}

/* pastille de fond / smartphone*/
.ds_bloc_01_pastille_smartphone {
	position: absolute;
	transform: translate(-50%, -50%);
	left: 97%;
	top: 5%;
}

/* COLONNE VISUEL */
.ds_bloc_01_bouteille {
	position: relative;
	min-height: 430px;
}

.ds_bloc_01_bouteille_avant {
	position: absolute;
	left: 100px;
	top: -106px;
	width: 340px;
	transform: rotate(-1deg);
	filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.25));
	z-index: 3;
}

.ds_bloc_01_bouteille_arriere {
	position: absolute;
	left: 74px;
	top: 72px;
	width: 117px;
	transform: rotate(-18deg);
	filter: blur(3px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
	opacity: 0.85;
	z-index: 1;
}


/* COLONNE TEXTE */
.ds_bloc_01_contenu {
	max-width: 560px;
	z-index: 5;
}

.ds_bloc_01_droite {
	display: flex;
	justify-content: end;
}

.ds_bloc_01_droite img {
	width: 118px;
	height: auto;
}

.ds_bloc_01_etoile {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	margin-bottom: 22px;
}

.ds_bloc_01_etoile_note {
	color: #ffe14d;
	letter-spacing: 2px;
	font-size: 16px;
}



.ds_bloc_01_titre .blanc {
	color: #fff;
	display: block;
}

.ds_bloc_01_titre .noir {
	color: #000;
	display: block;
}

.ds_bloc_01_text {
	font-family: 'roc-grotesk', sans-serif;
	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 28px;
	letter-spacing: 0;
}

.ds_bloc_01_actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 20px;
}

.ds_bloc_01_btn {
	font-size: 16px;
	line-height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 999px;
	background: #000;
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ds_bloc_01_btn:hover {
	transform: translatex(5px);
	opacity: 0.95;
}


/*bandeau defilant*/
.bloc_01_defilement_global {
	position: relative;
	padding: 50px 0;
}

.bloc_01_defilement_global img {
	width: 100%;
}

.bloc_01_defilement_bandeau {
	position: absolute;
	width: 100%;
	background-color: #00C5F1;
	overflow: hidden;
	top: -48px;
	transform: rotate(-1deg);
	z-index: 2;
}

.defilement {
	display: flex;
	width: max-content;
	animation: defilement 30s linear infinite;
}

.liste_defilante {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	white-space: nowrap;
}

.liste_defilante p {
	flex-shrink: 0;
	margin: 0;
	padding: 18px 40px;
	font-family: 'BaseNeue-WideBoldOblique', sans-serif;
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}

@keyframes defilement {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 980px) {
	.ds_bloc_01_global {
		grid-template-columns: 1fr;
		padding: 40px 22px 65px;
	}

	.ds_bloc_01_pastille_smartphone {
		display: none;
	}

	.ds_bloc_01_bouteille {
		min-height: 360px;
		order: 1;
	}

	.ds_bloc_01_contenu {
		order: 2;
	}

	.ds_bloc_01_bouteille_avant {
		left: 50%;
		top: -53px;
		width: 260px;
		transform: translateX(-50%) rotate(-1deg);
	}

	.ds_bloc_01_bouteille_arriere {
		left: -142px;
		top: 75px;
		width: 95px;
		transform: rotate(-12deg);
	}

}

@media (max-width: 580px) {
	.ds_bloc_01 {
		min-height: auto;
	}

	.ds_bloc_01_bouteille {
		min-height: 300px;
	}

	.ds_bloc_01_titre {
		font-size: 38px;
		line-height: 38px;
	}

	.ds_bloc_01_text {
		display: none;
		font-size: 16px;
		line-height: 20px;
	}

	.ds_bloc_01_actions {
		flex-direction: column;
		align-items: flex-start;
	}

	/*inversement image et texte*/
	.ds_bloc_01_global,
	.ds_bloc_01_contenu,
	.ds_bloc_01_contenu_inverse_mobile {
		display: flex;
		flex-direction: column-reverse;
	}

	.ds_bloc_01_contenu_inverse_mobile {
		margin-top: 20px;
	}

	.ds_bloc_01_droite {
		justify-content: start;
	}


	.bloc_01_defilement_bandeau {
		top: -50px;
	}

	.liste_defilante p {
		font-size: 26px;
		line-height: 26px;
	}
}