#btn-contact-header {
	position: relative;
}
#btn-contact-header button {
	border: none;
}
#btn-contact-header .menu-subs {
	position: absolute;
	top: 110%;
	transform: translateY(20%);
	right: 0;
	background-color: white;
	flex-direction: column;
	min-width: 200px;
	padding: 10px 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	transition: all 0.3s ease;
	display: flex;
	border-radius: 10px;
	border-top: 4px solid var(--primary-color);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#btn-contact-header .menu-subs::after {
	content: "";
	position: absolute;
	top: -10%;
	right: 0;
	height: 10%;
	width: 100%;
}

#btn-contact-header .menu-subs li {
	width: 100%;
}

#btn-contact-header .menu-subs a {
	display: block;
	padding: 8px 16px;
	text-decoration: none;
	white-space: nowrap;
	color: black;
	transition: all 0.3s ease;
}

#btn-contact-header .menu-subs a:hover {
	transform: translateX(5px);
	color: var(--primary-color);
}

/* ============================= */
/* AFFICHAGE AU HOVER */
/* ============================= */

#btn-contact-header:hover > .menu-subs {
	opacity: 1;
	transform: translateY(0);
	z-index: 1000;
	pointer-events: auto;
}

section#vous-etes {
	padding: 50px 0;
}

.container-vous-etes {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}

.container-vous-etes .card-vous-etes {
	width: 250px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid black;
	border-radius: 10px;
	padding: 20px;
	color: var(--dark-color);
	transition: ease-in 0.2s;
}

.container-vous-etes .card-vous-etes img {
	width: 80px;
	height: 80px;
	margin-bottom: 10px;
}

.container-vous-etes .card-vous-etes h4 {
	color: var(--primary-color);
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
}

@media (max-width: 1500px) {
	#btn-contact-header button {
		padding: 10px 20px;
		font-size: 15px;
	}

	#btn-contact-header button .pq-button-block {
		height: 30px;
	}
}

@media (max-width: 1400px) {
	.pq-bottom-header .pq-menu-contain .navbar-nav > li.menu-item > a {
		padding: 0 8px;
	}
}

.navbar-toggler {
	background-color: var(--primary-color)!important;
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
}

/* ============================= */
/* NO NEWS STATE                 */
/* ============================= */

.no-news-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 80px 20px;
	width: 100%;
	box-sizing: border-box;
}

.no-news-icon {
	font-size: 64px;
	color: var(--primary-color);
	margin-bottom: 24px;
	opacity: 0.8;
}

.no-news-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 16px;
}

.no-news-text {
	font-size: 16px;
	color: #666;
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 32px;
}

