<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------------------------*/
/* Ancre dans la page principale */
/*-------------------------------*/
.anchor {
	scroll-margin-top: 150px; /* DÃ©cale l'ancre de 150px */
}
.anchorcontact {
	scroll-margin-top: 110px; /* DÃ©cale l'ancre de 150px */
}
/*-----------------------*/
/* Background spÃ©cifique */
/*-----------------------*/
.full-width-grey {
  width: 100vw;
  height: auto;
  background-color: grey;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*---------------*/
/* Fleche to top */
/*--------------*/
#scrollTopBtn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #eeeeee;
	color: #aeaeae;
	border: 1px solid #ccc;
	padding: 12px 12px;
	font-size: 18px;
	border-radius: 50%;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out;
	z-index: 9999;
}
#scrollTopBtn:hover {
	background-color: #FFFFFF;
	color: #6a6a6a;
	border: 1px solid #6a6a6a;
	opacity: 0.8;
}
/*----------------------*/
/*  Responsive Tableau  */
/*----------------------*/
.table-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}

.table-item {
	flex: 1;
	min-width: 300px;
	padding: 10px;
	text-align: left;
}

.table-item-contact {
	flex: 1;
	min-width: 320px;
	padding: 10px;
	text-align: center;
}

.table-item img {
	width: 100%;
	height: auto;
	text-align: center;
}

.split {
	margin-left: -30px;
}
/*-----------------------------------------------*/
/* Mode responsive : empile les blocs en colonne */
/*-----------------------------------------------*/
@media (max-width: 768px) {
	.table-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.table-item {
		width: 100%;
		text-align: center;
	}
	
	.table-item img {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.bg-grey {
        display: none; /* Cache l'Ã©lÃ©ment */
    }
	
	.split {
		margin-left: 0px;
	}
	.xoffre {
		margin-left: 10px;
	}
	
	.xcontact {
		margin-left: 10px;
		margin-top: 80px;
	}
	
	.xwrap {
		margin-top: 100px;
	}
	
	.xphilo {
		margin-top: -120px;
	}	
}</pre></body></html>