/* ============================================
   HEADER ROLEX - HBJO-WEB - Abder Kinane
   ============================================ */

.header-rolex__root {
	display: flex;
	min-height: 80px;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 0 8%;
	background: linear-gradient(90deg, rgb(11, 62, 39), rgb(25, 113, 73));
}

@media screen and (min-width: 768px) {
	.header-rolex__root {
		min-height: 100px;
		padding: 0 9.5%;
	}
}

@media screen and (min-width: 1025px) {
	.header-rolex__root {
		min-height: 110px;
	}
}

.header-rolex__container {
	width: 100%;
	display: flex;
	align-items: center;
}

/* Logo */
.header-rolex__logo {
	margin-right: auto;
}

.header-rolex__logo img {
	max-width: 100px;
	height: auto;
	display: block;
}

@media screen and (min-width: 768px) {
	.header-rolex__logo img {
		max-width: 120px;
	}
}

.header-rolex__plaque {
	display: block;
}

/* Bouton menu mobile / intermédiaire */
.header-rolex__resp {
	display: flex;
	margin: auto 0;
	cursor: pointer;
	align-items: center;
}

@media screen and (min-width: 1871px) {
	.header-rolex__resp {
		display: none;
	}
}

.header-rolex__resp p {
	color: #fff;
	font-family: "Helvetica W01", helvetica, sans-serif;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.1 !important;
	margin: 0;
}

.header-rolex__resp svg {
	width: 12px;
	height: 12px;
	margin-left: 10px;
	margin-top: 2px;
	transition: transform 0.3s;
}

.header-rolex__resp.is-close svg {
	transform: rotate(180deg);
}

/* Menu fermé par défaut sous 1871px */
@media only screen and (max-width: 1870px) {
	.header-rolex__menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(40%);
		transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
		background: linear-gradient(to right, rgb(11, 62, 39), rgb(25, 113, 73));
		z-index: 999;
	}

	.header-rolex__menu.show {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* Menu desktop large */
@media screen and (min-width: 1871px) {
	.header-rolex__menu {
		margin: auto 0;
		position: static;
	}
}

/* Liste du menu */
.header-rolex__ul {
	display: block;
	margin: 0;
	padding: 0 7%;
	list-style: none;
}

@media screen and (min-width: 768px) {
	.header-rolex__ul {
		padding: 0 8%;
	}
}

@media screen and (min-width: 1871px) {
	.header-rolex__ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		row-gap: 14px;
	}
}

.header-rolex__li {
	text-align: left;
	margin: 0 0 35px 0;
	padding: 0;
	border: none;
}

.header-rolex__li:first-child {
	margin-top: 40px;
}

@media screen and (min-width: 1025px) {
	.header-rolex__li:first-child {
		margin-top: 0;
	}
}

.header-rolex__li:last-child {
	margin-right: 0;
}

@media screen and (min-width: 1871px) {
	.header-rolex__li {
		margin: 0 1.25vw;
	}
}

.header-rolex__ul a {
	display: block;
	color: #fff;
	font-family: "Helvetica W01", helvetica, sans-serif;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.1 !important;
	text-decoration: none;
	transition: color 0.3s;
}

@media screen and (min-width: 1871px) {
	.header-rolex__ul a {
		display: inline-block;
	}
}

.header-rolex__ul a.current,
.header-rolex__ul a:hover {
	color: #9BF9CE !important;
}