body{
	font-family: Poppins;
	color: #333;
}

.pattern:nth-child(odd){
	background-color: white;
	color: #333;
}

.pattern:nth-child(even){
	background-color: var(--color_main);
	color: white;
}

.full-image > img{
	width: 100%;
	height: 80vh;
	object-fit: cover;
	object-position: center;
}


.image-text {
	display: flex;
	align-items: stretch;
	width: var(100% - 80px) ;
	max-height: 400px;

	margin: 0 40px;
}
.image-text img {
  	width: calc(50%);
}
.image-text > div {
	width: calc(50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
  
}
.image-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}
.image-text p {
	font-size: 1rem;
	line-height: 1.6;
	max-width: 500px;
}



.full-text {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 20px;
}
.full-text h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	margin: 0 0 20px 0;
}
.full-text p {
	font-size: 1rem;
	line-height: 1.8;
}



.portrait {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;

	padding: 40px 40px;

	margin: 0 40px;
}

.portrait > div {
	position: relative;
}

.portrait img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.portrait .card{
	position: absolute;
	bottom: -20px;
	left: 0;


	width: calc(100% - 40px);/* 40px pour le gap */
	margin: -40px 0 0 40px;
	padding: 0 0 0 20px;
}

.portrait.pattern:nth-child(odd) .card{
	background-color: var(--color_main);
	color: #fff;
}

.portrait.pattern:nth-child(even) .card{
	background-color: white;
	color: #333;
}

.portrait .card > h2 {
	padding-top: 15px;
	font-size: 1.3rem;
	font-weight: 400;

	margin: 0;
}

.portrait .card > h3 {
  	padding-bottom: 15px;
	font-weight: 300;
	font-size: 0.9rem;

	margin: 0;
}




.mosaique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 50px;
}

.mosaique > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
	background-color: white;
}

.mosaique > div > .card {
    width: 50%;
    display: block;
	padding: 40px;
}

.mosaique > div > img {
    width: 50%;
    object-fit: cover;
    max-height: 400px;
}

.mosaique > div > .card > h2 {
	font-size: 1.5em;
	font-weight: 600;
}




.mosaique > div:nth-child(4n+3),
.mosaique > div:nth-child(4n+4) {
    flex-direction: row-reverse;
}

.mosaique.pattern:nth-child(even) > div:nth-child(4n+1) > div,
.mosaique.pattern:nth-child(even) > div:nth-child(4n+2) > div {
    background-color: white;
    color: #333;
}

.mosaique.pattern:nth-child(even) > div:nth-child(4n+3) > div,
.mosaique.pattern:nth-child(even) > div:nth-child(4n+4) > div {
    background-color: var(--color_main);
    color: white;
}

.mosaique.pattern:nth-child(odd) > div:nth-child(4n+1) > div,
.mosaique.pattern:nth-child(odd) > div:nth-child(4n+2) > div {
    background-color: var(--color_main);
    color: white;
}

.mosaique.pattern:nth-child(odd) > div:nth-child(4n+3) > div,
.mosaique.pattern:nth-child(odd) > div:nth-child(4n+4) > div {
    background-color: white;
    color: #333;
}



.contact{
	display: flex;
	align-items: stretch;

	margin: 0 40px;
}

.contact > div {
	width: 50%;
	background-color: var(--color_main);

	
}

.contact > .info{
	text-align: center;
	padding: 50px;
	width: calc(50% - 100px);
}

.contact > .info > h2 {
	color: white;
	font-weight: 400;
}

.contact > .info > a > span {
	color: white;
	font-size: 100px;
}

.contact > .info > a > img {
	height: 100px;
}

#map{
	width: 100%;
	height: 100%;
}

.title > h1{
	font-size: 5em;
	text-align: center;
	font-weight: 100;
	padding: 50px 0;
}

.double-text{
	display: flex;
	align-items: stretch;
	width: var(100% - 80px) ;
	min-height: 400px;

	margin: 0 40px;
}
.double-text > div {
	width: calc(50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;

	padding: 50px;
}

.double-text > div:nth-child(1) {
	background-color: var(--color_main);
	color: white;
}

.double-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 500;
}
.double-text p {
	font-size: 1rem;
	line-height: 1.6;
	max-width: 500px;
}










.carousel {
	width: 100%;
	margin: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--lx-gap);
}
.carousel > div:nth-child(1) {
	aspect-ratio: 1.7777777778;
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 80vh;
}
.carousel > div:nth-child(1) > .item {
	opacity: 0;
	width: 100%;
	height: 100%;
	display: none;
	transition: opacity 0.5s ease-in-out;
}
.carousel > div:nth-child(1) > .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.carousel  > div:nth-child(1) > .item .caption {
	width: 100%;
	padding: var(--lx-space-01);
	position: absolute;
	bottom: 0;
	text-transform: uppercase;
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
}
.carousel  > div:nth-child(1) > .item.active {
	opacity: 1;
	display: block;
}
.carousel .btn {
	padding: 1em 2em;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	outline: none;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	background-color: var(--color_main);;
	transition: transform 0.2s ease-in-out;
}
.carousel .btn:active,
.carousel .btn:focus {
	transform: translateY(-50%) scale(0.9);
}
.carousel .btn:hover {
	transform: translateY(-50%) scale(0.96);
}
.carousel .prev {
	left: 0%;
}
.carousel .next {
	right: 0%;
}
.carousel .dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.carousel .dots .dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	background-color: #242421;
	transition: background-color 0.2s ease;
}
.carousel .dots .dot.active,
.carousel .dots .dot:hover {
	background-color: var(--color_main);
}

.leaflet-pane {
	z-index: 0 !important;
}

.leaflet-top, .leaflet-bottom {
	z-index: 0 !important;
}
.leaflet-control {
	z-index: 0 !important;
}