body {
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow-x: hidden;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0 !important;
	overflow: hidden;
}

li {
	display: flex;
	justify-content: center;
}

h1 {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 36px;
	color: #0D0D0D;
	margin: 0;
	margin-bottom: 16px;
}

h2 {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 28px;
	color: #0D0D0D;
	margin: 0;
}

p {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	color: #0D0D0D;
	margin: 0;
}

.stone-presentation, .content-intro, .realisations-overview {
	text-align: center;
}


a {
	text-decoration: none;
	color: inherit;
}

a.primary {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 12px;
	font-style: normal;
	text-decoration: none;
	text-transform: uppercase;
	color: #0D0D0D;
	border: 1px solid #0D0D0D;
	padding: 12px 40px;
}

a.primary:hover, #button-submit:hover {
	background-color: #0D0D0D;
	color: white;
	transition: 0.3s linear !important;
}

.CTA {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

li > a.secondary {
	font-size: 13px;
}


a.secondary {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 10px;
	font-style: normal;
	text-decoration: none;
	text-transform: uppercase;
	color: #0D0D0D;
}

a.secondary:hover {
	font-weight: 500;
}

.fgAiij {
	font-weight: 500 !important;
}


/* ========================================
Header */

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
	padding: 24px 60px;
}

header.scrolled {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

#header-content, #menu-links {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

#header-logo {
	max-height: 32px;
	display: flex;
}

#header-logo a {
	display: flex;

}

#header-logo img {
	height: -webkit-fill-available;
}

#menu-links {
	gap: 20px;
}

.burger-menu {
	display: none;
	position: relative;
	cursor: pointer;
	width: 24px;
	height: 18px;
}

.burger-line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0D0D0D;
	border-radius: 20px;
	transition: 0.3s;
	transform-origin: center;
}

.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-line:nth-child(3) { bottom: 0; }


.burger-menu.active .burger-line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
	opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

/* ------ Mobile Menu */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	width: 100%;
	height: 100vh;
	background-color: white;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 999;
	padding-top: 80px;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
}

.mobile-menu li {
	border-bottom: 1px solid #C3C3C3;
	justify-content: flex-start !important;
}

.mobile-menu a {
	display: block;
	padding: 20px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
}


.mobile-menu .social-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mobile-menu .social-link img {
	height: 20px;
	width: 20px;
}

.font-L {
	font-size: 16px !important;
}

/* ------ Overlay */

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}



/* ========================================
Footer */

footer {
	margin: 60px 60px 0px 60px;
}


p.txt-footer {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 12px;
	font-style: normal;
	text-decoration: none;
	color: #0D0D0D;
	text-align:left;
}

p.txt-mentions {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 10px;
	font-style: normal;
	text-decoration: none;
	text-transform: uppercase;
	color: #0D0D0D;
}

#footer-mentions, .footer-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

#footer-mentions {
	padding: 20px 0;
}

.footer-col {
	width: calc(100%/3);
	display: flex;
}

#footer-col-1 {
	flex-direction: column;
	gap: 12px;
}

#footer-col-2 { 
	justify-content: center;
}

#footer-col-3 { 
	justify-content: flex-end;
}

.footer-content {
	padding: 32px 0px;
	border-top: 1px solid #C3C3C3 !important;
	border-bottom: 1px solid #C3C3C3 !important;
	display: flex;
	flex-direction: row;
}

#footer-row-IG, #footer-row-links {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

#footer-row-links {
	gap: 12px;
}

#footer-row-links > a.secondary {
	font-size: 12px;
}

/* ========================================
Slider */

.slider {
	position: relative;
	max-width: 100%;
	overflow: hidden;
	margin-top: 20px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.slides {
	display: flex;
	transition: none;
	transform: none;
	gap: 8px;
	backface-visibility: hidden;
	will-change: transform;
	touch-action: pan-y;
}

.slide {
	min-width: calc(100% / 3); 
}

.pagination {
	display: none; 
}

.slide, .tile-realisation {
	position: relative;
	display: block;
	overflow: hidden;
}

.dot {
	display: block;
	height: 4px;
	width: 4px;
	border-radius: 50%;
	background: #0D0D0D;
	opacity: 0.3;
	transition: all 0.3s ease;
	cursor: pointer;
}

.dot.active {
	width: 16px;
	border-radius: 20px;
	opacity: 1;
}

/* ========================================
Projets - tiles */

.tile-visuel-overview {
	position: relative;
	overflow: hidden !important;
	aspect-ratio: 3/4;
}

.tile-visuel-overview::before {
	content: "Découvrir";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(13, 13, 13, 0.6); 
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Work Sans", sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.tile-visuel-overview img.tile-visuel {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide:hover .tile-visuel-overview::before, .tile-realisation:hover .tile-visuel-overview::before {
	opacity: 1;
}

.slide.offline:hover .tile-visuel-overview::before, .tile-realisation.offline:hover .tile-visuel-overview::before {
	opacity: 0;
}

.slide:hover .tile-visuel, .tile-realisation:hover .tile-visuel {
	transform: scale(1.02);
}

.tile-visuel {
	transition: transform 0.3s ease;
	display: block;
	width: 100%;
	overflow: hidden;
}

.tile-description h2 {
	text-align: left;
}

.tile-description {
	padding: 20px 0 0 0;
}

.row-description {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
	border-bottom: 1px solid #C3C3C3 !important;
	padding-bottom: 20px;
}

.txt-description {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 11px;
	font-style: normal;
	text-decoration: none;
	color: #0D0D0D;
	text-transform: uppercase;
}

/* ------ Projet en cours */

.offline > a > .tile-visuel-overview > img {
	filter: grayscale(100%);
}

.offline > a {
	cursor: default;
}

.arrow-hide {
	opacity: 0;
}

.tag-in-progress {
	background-color: rgba(255 255 255 / 0.8);
	padding: 8px 20px;
	position: absolute;
	z-index:100;
	bottom:0;
	left: 20px;
}

.txt-tag {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 11px;
	font-style: normal;
	text-decoration: none;
	color: #0D0D0D;
	text-transform: uppercase;
}


/* ========================================
Formulaire */

form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

fieldset {
	border: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 !important;
}

label {
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
	text-transform: uppercase;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("img/Stone_Architecture_Componant_Arrow_Form.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	cursor: pointer;
	height: 100%;
}

.fields-column {
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.form {
	width: 60%;
}

.form-row {
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.form-row > div, #message-fieldset > div {
	width: -webkit-fill-available;
	width: -moz-available;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form-row input, textarea, select {
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
}

.input-contact {
	border: 1px solid #C3C3C3;
	box-shadow: none;
	border-radius: 2px;
	padding: 8px !important;
	width: 100%;
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
	background-color: transparent;
}

.champs-required {
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
	text-transform: uppercase;
}

#button-submit {
	color:#0D0D0D;
	font-size: 14px;
	padding: 12px 40px;
	text-transform: uppercase;
	border: 1px solid #0D0D0D;
	background-color: transparent;
	cursor: pointer;
	transition: opacity 0.3s ease;
	width: auto;
}

#button-submit:disabled {
	opacity: 0.5;
}

#button-submit:enabled {
	opacity: 1;
}

#button-submit:disabled:hover {
	background-color: inherit;
	color: inherit ;
}

.submit {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.error {
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
}

.success, .message-error {
	font-family: "Work Sans", sans-serif;
	color: #0D0D0D;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	box-sizing: border-box;
}

/* ========================================
Hero-banner */

.hero-banner {
	width: 100%;
	height: 100vh;
	position: relative;
}

.hero-banner-img {
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-banner img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

/* ========================================
Accueil */

.accueil-content {
	margin: 120px 60px 0 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 120px;
}

.encart-contact {
	border: 1px solid #C3C3C3;
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	padding: 0 !important;
	max-height: 800px ;
}

.form-visuel {
	display: flex;
	width: 40%;
}

.form-visuel img {
	width: 100%;
	height: auto;
}

.encart-contact-mobile {
	display: none;
}

/* ========================================
Réalisations */

.content-intro {
	margin-top: 120px;
}

.grid-realisations {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	align-content: flex-start;
	gap: 40px;
	margin: 40px 60px;
}

.grid-realisations > .CTA {
	margin-top: 0px;
}

.row-realisations {
	width: 65%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
}

.tile-realisation {
	width: calc(100%/2);
}


/* ========================================
Projet */

.nom-projet {
	position: absolute;
	z-index: 100;
	bottom: 80px;
	right: 80px;
	font-size: 200px;
	line-height: 50%;
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	color: #0D0D0D;
	margin: 0;
}

.projet-content {
	margin: 120px 60px 0 60px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.wrapper-intro {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.col-visuel {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.col-visuel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.col-description {
	padding-left: 60px;
}

.col-description p {
	text-align: left;
}

.tag-resume {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	margin: 12px 0 20px 0;
}

.tag-resume p {
	font-family: "Work Sans", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 400;
	display: flex;
	align-items: center;
}

.bold {
	font-weight: 500;
}

.resume:after {
	content: url("img/Stone_Architecture_Componant_line.svg");
	display: inline-block;
	padding-left: 20px;
}

.credit-photos {
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	margin-top: 40px;
}

.wrapper-visuels {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.row-visuels {
	display: flex;
	flex-direction: row;
	gap: 4px;
	width: 100%;
	overflow: hidden;
}

.row-visuels img {
	width: 100%;
	height: auto;
}

.col-visuels {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.projet-content > .realisations-overview {
	margin-top: 40px;
}

/* ========================================
Agence */

#container-agence {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0!important;
}

#container-agence h2 {
	font-size: 36px;
	margin-bottom: 16px;
}

.row-agence {
	display: flex;
	flex-direction: row;
	gap: 0;
	align-items: center;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
}

.wrapper-agence {
	width: 50%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.wrapper-txt {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
}

.wrapper-agence img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

.wrapper-txt > .CTA {
	justify-content: left;
}

/* ========================================
Contact */

.contact-container {
	height: 100vh;
	display: flex;
	flex-direction: row;
	overflow: hidden;
}

.contact-container img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

.contact-container > div {
	width: 50%;
}

.form-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-wrapper > .form {
	width: 100%;
}

.contact-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.info-contact {
	background-color: #FFFFFF;
	position: absolute;
	z-index: z-index;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 120px 40px;
}

.txt-contact {
	font-family: "Work Sans", sans-serif;
	font-size: 15px;
	font-weight: 500;
}

/* ========================================
Légal */

.content-legal {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 120px 60px 60px 60px;
}

.content-legal h2 {
	font-family: "Work Sans", sans-serif;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 8px;
}

.content-legal a {
	font-weight: 400;
}

.content-legal p {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-size: 13px;
	font-style: normal;
	color: #0D0D0D;
}

.content-legal ul {
	list-style: disc;
	margin-block-start: 1em !important;
	margin-block-end: 1em !important;
	padding-inline-start: 20px !important;
}

.content-legal li {
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-size: 13px;
	font-style: normal;
	color: #0D0D0D;
	text-align: left;
	display: list-item;
}

/* ================================================================================
DESKTOP S */

@media (max-width: 1366px) {

	.wrapper-intro > div {
		width: calc(100%/2);
	}

	.tag-resume {
		gap: 8px;
	}

	.tag-resume p {
		font-size: 11px !important;
	}

	.resume:after {
		padding-left: 8px;
	}
}

/* ================================================================================
TABLETTE PORTRAT */

@media (max-width: 1024px) {

	header {
		padding: 20px 40px;
	}

	footer {
		margin: 40px 40px 0 40px;
	}

	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
	}

	fieldset {
		gap: 12px;
	}

	.burger-menu {
		display: flex;
	}

	#menu-links {
		display: none;
	}

	#header-logo img {
		height: 24px;
	}

	.hero-banner {
		height: 60vh;
	}

	.hero-banner-img {
		display: flex;
		justify-content: center;
	}

	.hero-banner-img img {
		width: 100%;
		height: 60vh;
		object-fit: cover;
	}

	.accueil-content {
		margin: 80px 40px 0 40px;
		gap: 80px;
	}

	.CTA {
		margin-top: 24px;
	}

	#wrapper-hero {
		height: 60vh;
	}

	#wrapper-hero img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.encart-contact {
		height: auto;
	}

	.form-visuel {
		display: none;
	}

	.form {
		width: 100%;
		padding: 40px;
	}

	.wrapper-intro {
		flex-direction: column-reverse;
		gap: 20px;
	}

	.wrapper-intro > div {
		width: 100%;
	}

	.col-description {
		padding-left: 0px;
	}

	.content-legal {
		margin: 92px 40px 40px;
	}

	.nom-projet {
		font-size: 160px;
		bottom: -10px;
		right: 40px;
	}

	.row-agence {
		flex-direction: column;
	}

	.wrapper-agence {
		width: 100%;
		height: auto;
	}

	.wrapper-txt {
		padding: 80px 40px;
	}

	#row-reverse {
		flex-direction: column-reverse;
	}

	.content-intro {
		margin: 92px 40px 0 40px;
	}

	.grid-realisations {
		margin: 40px 0px;
	}

	.row-realisations {
		width: 80%;
	}

	.projet-content {
		margin: 80px 40px 0 40px;
	}

	.wrapper-intro {
		gap: 40px;
	}

	.wrapper img, 
	.contact-container img {
		width: 100%;
		height: auto;
	}

	.contact-container {
		flex-direction: column;
		height: auto;
		margin-bottom: 40px;
	}

	.contact-container > div {
		width: auto;
	}

	.contact-wrapper {
		height: 60vh;
	}

	.contact-wrapper > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.form-wrapper {
		padding: 0px 40px;
		margin-top: 40px;
	}

	.info-contact {
		padding: 40px;
		gap: 20px;
	}

	.fields-column {
		padding: 0px;
	}

}

/* ================================================================================
MOBILE */

@media (max-width: 700px) {

	footer {
		margin: 40px 20px 0 20px;
	}


	header {
		padding: 16px 20px;
	}

	h1 {
		text-align: left;
	}

	h2 {
		text-align: left;
	}

	p {
		text-align: left;
	}

	.mobile-menu {
		width: 100%;
	}

	.CTA {
		width: 100%;
	}

	.CTA > a.primary {
		width: 100%;
		text-align: center;
	} 

	.footer-content {
		flex-direction: column;
		gap: 20px;
		border: none !important;
		padding: inherit;
	}

	.footer-col {
		width: 100%;
	}

	p.txt-footer {
		text-align: center;
	}

	#footer-col-1 {
		order: 2;
	}

	#footer-col-2 {
		order: 1;
	}

	div#footer-col-3 {
		justify-content: center;
		padding: 20px 0;
		border-top: 1px solid #C3C3C3 !important;
		border-bottom: 1px solid #C3C3C3 !important;
		order: 3;
	}

	#footer-row-links {
		flex-direction: row;
		justify-content: center;
		gap: 0px;
		width: 100%;
	}

	#footer-row-IG {
		justify-content: center;
	}

	#footer-row-links > a {
		width: calc(100%/3);
		text-align: center;
	}

	#footer-mentions {
		flex-wrap: wrap;
		column-gap: 12px;
	}

	.display-mob {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.display-none-mob {
		display: none;
	}

	.encart-contact {
		display: none;
	}

	.encart-contact-mobile {
		display: flex;
		width: 100%;
		justify-content: center;
		align-items: center;
		position: relative;
		margin-bottom: 40px;
	}

	.encart-contact-mobile > .CTA {
		position: absolute;
		margin-top: 0px;
		width: auto;
	}

	.encart-contact-mobile > .CTA > a.primary {
		color: white !important;
		background-color: #0D0D0D !important;
		width: auto;
	}

	.encart-contact-mobile img {
		width: 100%;
	}

	.wrapper-intro > div {
		width: 100%;
	}

	#button-submit {
		width: 100%;
	}

	.accueil-content {
		margin: 40px 20px 0 20px;
		gap: 80px;
	}

	.wrapper-txt {
		padding: 20px;
	} 

	.content-legal, .content-intro {
		margin: 80px 20px 0px 20px;
	}

	.col-visuel {
		display: flex;
	}

	.grid-realisations {
		margin: 20px 20px;
	}

	.tag-resume {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.resume:after {
		content: "";
		display: none;
	}

	.row-realisations {
		width: 100%;
	}

	.nom-projet {
		font-size: 100px;
		bottom: -10px;
		right: 20px;
	}

	.projet-content {
		margin: 80px 20px 0 20px;
		gap: ;
	}

	.wrapper-intro {
		gap: 20px;
	}

	.wrapper-visuels, .projet-content {
		gap: 4px;
	}

	.row-visuels {
		flex-direction: column;
	}

	#row-sables-3 {
		flex-direction: row;
	}

	#row-albert-2 {
		flex-direction: column-reverse;
	}

	.row-visuels > div {
		display: flex;
	}

	.col-visuels {
		flex-direction: row !important;
		flex-wrap: nowrap;
	}

	.col-visuels > img {
		width: calc(100%/2);
		height: 100%;
	}

	.info-contact {
		padding: 20px;
		margin: 40px;
		gap: 20px;
	}

	.form-row {
		flex-direction: column;
		gap: 12px;
	}

	.form-wrapper {
		padding: 0 20px;
	}

	.form {
		padding: 0;
	}

	.tile-visuel-overview {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.tag-in-progress {
		left: inherit !important;
		bottom: inherit !important;
	}

	.slider {
		position: relative;
		max-width: 100%;
		overflow: hidden;
		margin-top: 20px;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}


	.slides {
		display: flex;
		gap: 0px;
		transition: transform 0.5s ease;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		will-change: transform;
		touch-action: pan-y;
	}

	.slide {
		min-width: 100%;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	.slide img {
		width: 100%;
		display: block;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.tile-visuel-overview::before { 
		content: none;
	}

	.pagination {
		display: flex;
		justify-content: center;
		gap: 4px;
		margin: 16px 0 0 0;
	}

}
