/* =================================================
   EFFET ZOOM des 3 Images Homepage + 2 Images
   Nous contacter - HBJO-WEB - Abder Kinane
   ================================================= */

.rolex-editorial-section .rolex-image-card {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

.rolex-editorial-section .rolex-image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.14) 0%,
			rgba(0, 0, 0, 0.06) 45%,
			rgba(0, 0, 0, 0.02) 100%);
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.rolex-editorial-section .rolex-image {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.8s ease, filter 0.4s ease;
}

.rolex-editorial-section .rolex-image-card:hover .rolex-image {
	transform: scale(1.035);
	filter: brightness(0.93);
}

.rolex-editorial-section .rolex-image-card:hover::after {
	opacity: 1;
}

.rolex-contact-section .rolex-contact-image-card {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.rolex-contact-section .rolex-contact-image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.14) 0%,
			rgba(0, 0, 0, 0.06) 45%,
			rgba(0, 0, 0, 0.02) 100%);
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.rolex-contact-section .rolex-contact-image {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 0.8s ease, filter 0.4s ease;
}

.rolex-contact-section .rolex-contact-image-card:hover .rolex-contact-image {
	transform: scale(1.035);
	filter: brightness(0.93);
}

.rolex-contact-section .rolex-contact-image-card:hover::after {
	opacity: 1;
}
