* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img, video {
	max-width: 100%;
	width: auto;
	height: auto;
}

a {
	text-decoration: none;
    color: inherit;
    transition: color .2s ease-out;
}

strong {
	font-weight: 700;
}

body {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
    color: #1c1c1b;
}

main {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	transition: filter 0.5s ease;
}

.container {
	margin: 0 auto;
	padding: 0 15px;
}

.boutons {
	display: flex;
	align-items: center;
}

.btn-container {
	display: flex;
}

a.btn {
	border: 1px solid white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    padding: 12px 16px;
    display: block;
}

a.btn-yellow {
	background-color: #dbb069;
	color: white;
}

section h2:before, section h2:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background-color: #dbb069;
}

section h2:before {
	top: 0;
}

section h2:after {
	bottom: 0;
}

section h3 {
	text-align: center;
    text-transform: uppercase;
    color: #4e403d;
    font-size: 28px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 32px;
}

p {
	margin-bottom: 24px;
	line-height: 1.5;
}

.center {
	text-align: center;
}

.jcenter {
	justify-content: center !important;
}

.fend {
	justify-content: flex-end !important;
}

@media (min-width: 992px){
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1270px;
    }
}

/** TITRES */

section h2 {
	color: #dbb069;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	padding: 8px 0;
	margin: 0;
	position: relative;
}

section h2:before, section h2:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background-color: #dbb069;
}

section h2:before {
	top: 0;
}

section h2:after {
	bottom: 0;
}

section h3 {
	text-align: center;
    text-transform: uppercase;
    color: #4e403d;
    font-size: 24px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 32px;
}

@media (min-width: 992px){
	section h3 {
		font-size: 28px;
	}
}

/** HEADER */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	padding-top: 24px;
}

.header_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header_content .logo {
	position: relative;
	width: 110px;
	padding-bottom: 16px;
}

.header_content .logo:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #dbb069;
}

.header_content h1 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 22px;
	margin-bottom: 32px;
	margin-top: 16px;
	color: #4e403d;
}

.header_menu {
	display: none;
}

@media (min-width: 992px){
	.header_content .logo {
		width: 180px;
	}

	.header_menu {
		display: flex;
		align-items: center;
		gap: 32px;
	}

	.header_menu li a {
		font-weight: 600;
	    color: #4e403d;
	    font-size: 20px;
	}

	.sous_menu {
		display: none;
	}
}

/** CONTENU */

.main_content section:not(.full) {
	padding: 64px 0;
}

.main_content section.gris {
	background-color: #f9f9f9;
}

.flex_contenu figure {
	margin-bottom: 25px;
}

.flex_contenu figure img {
	max-width: 100%;
}

.flex_contenu .flex_contenu_texte p:last-of-type {
 	margin-bottom: 0;   
}

.flex_contenu .flex_contenu_texte .boutons {
 	margin: 20px 0 0 0;   
    justify-content: flex-start;
}

@media (min-width: 992px){
 	.flex_contenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* SI LE CONTENU EST PLUS HAUT QUE L'IMAGE, PERMET D'AGRANDIR LE VISUEL SUR LA MÊME HAUTEUR */
    .flex_contenu.big {
        align-items: stretch;
    }

    .flex_contenu.big figure img {
	    height: 100%;
	    object-fit: cover;
	}
    
    .flex_contenu_texte {
        flex-basis: 55%;
    }
    
    .flex_contenu figure {
    	flex-basis: 40%;
        margin-bottom: 0;
    }
    
    /* PERMET DE GERER L'ALTERNANCE GAUCHE / DROITE SI PLUSIEURS BLOCS SUCCESSIFS */
    .flex_contenu.reverse figure {
        order: 1;
    }
}

/** BLOC ACCUEIL */

.main_content section.accueil {
	position: relative;
	height: 100vh;
}

section.accueil:after {
    content: "";
    background: linear-gradient(180deg, white 5%, rgba(0, 48, 73, 0) 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main_content section.accueil video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/** BLOC ESTIMATION  */

.flex_estimation .flex_contenu_texte {
    background-color: #dbb069;
    color: white;
    padding: 32px;
}

@media (min-width: 992px){
	.flex_contenu.flex_estimation {
	    align-items: stretch;
	}

	.flex_estimation .flex_contenu_texte {
		flex-basis: 50%;
		padding: 64px;
	}

	.flex_estimation figure {
	    flex-basis: 50%;
	}

	.flex_estimation figure img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}
}

/** BLOC SERVICES */

.services {
    background: linear-gradient(to bottom, #f9f9f9 0%, #f9f9f9 40%, #4e403d 40%, #4e403d 100%);
}

.swiperServices {
	width: 960px;
	height: 510px;
}

.service figure {
	font-size: 0;
}

.service_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    text-align: center;
    background-color: white;
}

.service_content h4 {
	color: #dbb069;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	padding: 8px 0;
	margin: 0;
	position: relative;
}

.service_content h4:before, .service_content h4:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background-color: #dbb069;
}

.service_content h4:before {
	top: 0;
}

.service_content h4:after {
	bottom: 0;
}

.service_content h5 {
	text-align: center;
    text-transform: uppercase;
    color: #4e403d;
    font-size: 22px;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.3;
}

.swiperServices .swiper-pagination-bullet {
	background: #dbb069;
	opacity: 1;
}

.swiperServices .swiper-pagination-bullet-active {
	background: white;
}

/** BLOC NEWS */

.flex_estimation .flex_contenu_texte h4 {
	font-weight: 600;
    font-size: 22px;
    margin-bottom: 32px;
}

.boutons {
	margin-top: 24px;
}

/** BLOC ANNONCES */

.biens {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.swiperPhoto {
	aspect-ratio: 1620 / 1080;
}

.swiper .prev, .swiper .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
}

.swiper .prev {
	left: 16px;
}

.swiper .next {
	right: 16px;
}

.bien_content {
	padding: 24px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
}

.bien_content .ref {
    font-size: 15px;
    margin-bottom: 16px;
}

.bien_content h4 {
    color: #4e403d;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.bien_content .bien_infos {
    display: flex;
    gap: 40px;
    font-size: 15px;
    margin-bottom: 16px;
}

.bien_content .bien_infos .bien_info {
    position: relative;
}

.bien_info + .bien_info:before {
    background-color: #1c1c1b;
    border-radius: 50%;
    content: "";
    height: 6px;
    opacity: .5;
    width: 6px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
}

.bien_content .bien_description {
    font-size: 15px;
    line-height: 1.5;
}

@media (min-width: 992px){
	.biens {
		flex-direction: row;
		gap: 32px 24px;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.bien {
		flex-basis: calc(50% - 12px);
		width: calc(50% - 12px);
	}
}

/** BLOC CONTACT */

.main_content section.contact {
	padding-top: 0;
}

.flex_contact {
	display: flex;
	flex-direction: column;
	color: white;
}

.flex_contact h2, .flex_contact h3 {
	color: white;
}

.flex_contact h2:before, .flex_contact h2:after {
	background-color: white;
}

.flex_contact .coordonnees {
	background-color: #dbb069;
	padding: 32px;
}

.flex_contact .coordonnees h4 {
	font-weight: 500;
    text-transform: uppercase;
    margin-top: 72px;
    padding-bottom: 24px;
    font-size: 18px;
    border-bottom: 1px solid white;
    margin-bottom: 32px;
}

.flex_contact .formulaire {
	background-color: #4e403d;
	padding: 32px;
}

form.contactForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contactForm .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 15px;
}

.field input {
    padding-left: 16px;
    height: 48px;
}

.field textarea {
    height: 112px;
}

@media (min-width: 992px){
	.flex_contact {
		flex-direction: row;
	}

	.flex_contact .coordonnees {
		flex-basis: 40%;
		padding: 80px;
	}

	.flex_contact .formulaire {
		flex-basis: 60%;
		padding: 64px 96px;
	}

	form.contactForm {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.contactForm .field {
		flex-basis: calc(50% - 12px);
	}

	.contactForm .field100 {
	    flex-basis: 100%;
	}
}