@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Plus+Jakarta+Sans:wght@400;700&display=swap');

/* 
font-family: 'Homemade Apple', cursive;
font-family: 'Plus Jakarta Sans', sans-serif;
*/
.tac.mt10{text-align: center;margin-top: 10px;clear: both;}
body{
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	color: #000;
	font-size: 16px;
}

.wrap{
	width: 1220px;
	max-width: 100%;
	margin: 0 auto;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #a6a6a6;
	font-style: italic;
	font-size:16px;
	text-transform: none;
}
input::-moz-placeholder, textarea::-moz-placeholder { /* Firefox 19+ */
	color: #a6a6a6;
	font-style: italic;
	font-size:16px;
	text-transform: none;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* IE 10+ */
	color: #a6a6a6;
	font-style: italic;
	font-size:16px;
	text-transform: none;
}
input:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 18- */
	color: #a6a6a6;
	font-style: italic;
	font-size:16px;
	text-transform: none;
}

header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	padding: 20px 0;
	transition: all .4s;
}

header:not(.open).scrolled{
	background-color: #fff;
	padding: 7px 0;
}
header.scrolled{
	position: fixed;
}
header .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menuico{
	background-color: #505358;
	display: block;
	border-radius: 50%;
	width: 75px;
	height: 75px;
	text-align: center;
	line-height: 75px;
	font-weight: bold;
	font-size: 15px;
	cursor: pointer;
	transition: all .4s;
	color: #FFF;
}

header.open .menuico{
    background-color: #505358;
    color: #FFF;
}

header .soc{
	margin-right: auto;
	margin-left: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

a.telh{
	text-decoration: none !important;
	font-weight: bold;
	font-size: 15px;
}

a.btnsoc{
	font-size: 20px;
	color: #000 !important;
	text-decoration: none !important;
	display: block;
	margin-left: 15px;
}

.btnh{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:20px;
}

header+nav{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 999;
}

header+nav>div{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

header+nav a{
	display: block;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0;
	color: #FFF !important;
}

header+nav a.sub{
	font-weight: normal;
	text-transform: uppercase;
	font-size: 15px;
	padding: 5px 0;
}

a.bouton{
	display: inline-block;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50vh;
    border: 2px solid #505358;
    background-color: #505358;
    color: #fff !important;
    text-decoration: none !important;
    padding: 15px 25px;
    transition: all .4s;
}

a.bouton.bouton2{
    background-color: transparent;
    color: #505358 !important;
}

a.bouton.bouton2.dark{color: #FFF !important;}

a.bouton:hover, header.open a.bouton.bouton2{
	border: 2px solid #505358;
	background-color: #505358;
	color: #FFF !important;
}

header.open a.bouton.bouton2:hover{
	color: #fff !important;
}

.banner{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 220px;
	padding-bottom: 185px;
	position: relative;
    background-color: #000;
	
}
.banner.nothome {
	background-image: url("../images2/banner.jpg");
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
    background-color: transparent;
	
}

.banner.nothome:after{
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.banner video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	object-position: center;
	opacity: 0.5;
}

.banner-info{
	text-align: center;
	width: 600px;
	max-width: 95%;
	position: relative;
	z-index: 2;
}
.banner-info P {
	color: #DFFF;
    font-size: 22px;
	margin: 0 0 30px;
}
.banner-info a.logob, .banner-info a.logob img, a.logobnothome img{
	display: block;
	width: 100%;
	transition: all .3s;
}

.banner-info a.logob{
    margin-bottom: 30px;
    width: 330px;
    margin-left: auto;
    margin-right: auto;
}

.banner-info a.logob:hover, a.logobnothome:hover{scale:1.06;}

a.logobnothome{
	position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    margin-left: -120px;
    margin-top: -60px;
    transition: all .3s;
    z-index: 99999;
}

footer{
	/*border-top:12px solid #ebbb14;*/
}

.temhome{
/*	border-bottom:12px solid #ebbb14;
	border-top:12px solid #ebbb14;*/
}

footer .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 80px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.footer_copy{
	text-align: center;
	width: 100%;
	padding: 15px 0;
}

.sidef{
	width: 33%;
	padding-right: 50px;
	border-right: 1px solid #d1d1d1;
	box-sizing: border-box;
	padding-top: 40px;
	padding-bottom: 20px;
}

a.logof, a.logof img{
	display: block;
	width: 100%;
}
a.logof{width: 65%;margin-left: auto;margin-right: auto;}

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

.socf a.telh i{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

img.royal{
	display: block;
	width: 70%;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.sidef p{
	font-weight: bold;
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 20px;
	text-align: center;
}

.courtiersf{
	box-sizing: border-box;
	width: 67%;
	padding-top: 50px;
	padding-left: 50px;
	padding-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.courtiersf h3{
	text-transform: uppercase;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 20px;
	width: 100%;
}

p.quartiers{
	width: 100%;
	margin-bottom: 10px;margin-top: 0;
	font-size: 14px;
}

.prixcont{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap:10px;
	margin-top: 20px;
}

.prixcont img{
	display: block;
	width: calc((100% - 40px) / 5);
}

.courtiersf .courtier{
	margin-right: 50px;
	margin-bottom: 50px;
}

.courtiersf .courtier p:first-child{
	font-family: 'Homemade Apple', cursive;
	margin-top: 0;
	margin-bottom: 0px;
	font-size: 20px;
	line-height: 1.3;
}

.courtiersf .courtier p:last-child{
	font-size: 14px;
	margin: 0;
}

.courtiersf .courtier i{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.profilhome, .temhome, .h1tit, .qprops, .statsq{
	background-color: #27282b;
}

.qprops, .statsq{border-bottom: 0;}

.propluxe{
	background-color: #27282b;
	/*border-top:12px solid #ebbb14;*/
}

.profilhome .wrap, .temhome .wrap, .propluxe .wrap, .h1tit .wrap, .qprops .wrap, .statsq .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 80px;
	padding-top: 40px;padding-bottom: 40px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.profilhome .wrap {
	padding-bottom: 0;
}
.temhome .wrap, .qprops .wrap, .statsq .wrap{display: block;}

.profilhome .txt{
	width: 50%;
	position: relative;
	padding-bottom: 40px;
}

.profilhome p, .propluxe p, .profilpage p, .quartiersect p, .qslidersect ul{
	font-size: 14px;
	line-height: 1.7;
	margin-top: 0;
	margin-bottom: 20px;
}
.quartiersect p, .qslidersect ul{font-size: 16px;}

.quartiersect p a, .quartiersect ul a, .quartiersect h3 a{
	text-decoration: underline;
}
.quartiersect p a:hover, .quartiersect ul a:hover, .quartiersect h3 a:hover{text-decoration: none;}

.profilhome a.bouton:last-child{margin-left: 15px;}

.profilhome img{
	width: 48%;
	display: block;
}

h2.sideways, h1.sideways{
	text-transform: uppercase;
	font-weight: normal;
	font-size: 10px;
	margin: 0;
	writing-mode: tb-rl;
    transform: rotate(-180deg);
	position: absolute;
	top: 0;
	left: -25px;
	white-space: nowrap;
}

.profilhome h2.sideways, .temhome h2.sideways, .propluxe h2.sideways, .qprops h3.h2 span{
	color: #FFF;
}

h2.h2, h3.h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 35px;
	line-height: 1.2;
	margin-bottom: 20px;
	margin-top: 0;
}

h2.h2 span, h3.h2 span{
	text-transform: none;
	font-weight: normal;
	font-family: 'Homemade Apple', cursive;
}

.titlecont{position: relative;}

.prophome{padding: 100px 0;}
.prophome .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 80px;
}

.propslide{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.propslidercont{position: relative;}

.propslidercont:after, .qslidercont:after{
	content: "";
	position: absolute;
	display: block;
	height: 160px;
	width: 160px;
	left: -60px;
	bottom: -45px;
	border-radius: 50%;
	border: 15px solid #505358;
	z-index: -1;
}

.prophome .img img{
	display: block;
	width: 100%;
	aspect-ratio:16/9;
	object-fit: cover;
	transition: all .4s;
}

.prophome .img{
	display: block;
	width: 50%;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	background-color: #000;
}

.prophome .img:hover img{opacity: .7;}

.propinfo{
	width: 50%;
	padding-left: 40px;
	box-sizing: border-box;
}

.propinfo a.bouton:last-child{
	margin-left: 10px;
}

.propinfo p{
	font-size: 20px;
	line-height: 1.5;
}

.propslidercont .bx-prev, .propslidercont .bx-next, .qslidercont .bx-next, .qslidercont .bx-prev{
	background-color: #FFF;
	background-image: url("../images2/next.png");
	background-size: 26px auto;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	position: absolute;
	bottom: 15px;
	left: 20px;
	z-index: 99;
	transition: all .4s;
}

.qslidercont.wcredit .bx-next, .qslidercont.wcredit .bx-prev{bottom: 40px;}

.propslidercont .bx-next{left: calc(50% - 20px);transform: translateX(-100%);}
.qslidercont .bx-next{left: 90px;}

.propslidercont .bx-prev:hover, .propslidercont .bx-next:hover, .qslidercont .bx-next:hover, .qslidercont .bx-prev:hover{
	background-color: #ededed;
}

.propslidercont .bx-prev, .qslidercont .bx-prev{
	transform: scale(-1);
}

.ctas{
	padding: 80px 0;
}
.ctashome h2 {
	text-align: center;
    color: #505358;
    margin-bottom: 60px;
	width:100%;
}
.ctas .wrap{
	box-sizing: border-box;
	padding-left: 80px;
	padding-right: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}

img.ctatitle{
	width: 90%;
	display: block;
	margin-left: auto;margin-right: auto;margin-bottom: 30px;
}

.ctas .cta{
	width: calc((100% - 175px) / 3);
	text-decoration: none !important;
	border-radius: 50%;
	position: relative;
	border:5px solid #fff;
	box-shadow: 0px 0px 0px 15px #000;
	background-color: #000;
	aspect-ratio:1;
	margin-bottom: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s;
}

.ctas .cta:hover{transform: scale(1.05);}

.ctas .cta:last-child{
	background-color: #000;
	box-shadow: 0px 0px 0px 15px #000;
	color: #fff !important;
	border: 5px solid #FFF;
}

.ctas .cta img{
	display: block;
	width: 55px;
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translate(-50%,50%);
	filter: invert(1);
}

.ctas .cta:last-child img{filter: invert(1);}

.ctas .cta p{
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1.2;
	font-size: 16px;
	color: #FFF;
}

.ctas .cta p span{
	font-size: 45px;
	font-family: 'Homemade Apple', cursive;
	text-transform: none;
}

img.ctamid{
	width: calc((100% - 60px) / 3);
}

.propluxe .txt{
	width: 50%;
}

.propluxe .img{
	width: 40%;
}

.propluxe .img img{display: block;width: 100%;}

.h1tit h1{
	text-transform: uppercase;
	margin: 0;
	font-size: 20px;
	color: #fff;
}

.profilpage .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 80px;
	padding-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.profilpage.dark{
	background-color: #000;
	color: #fff;
}
.profilpage.dark h3.h2 span{color: #505358;}

.profilpage .txt{
	width: 60%;
}

.profilpage .img{
	width: 30%;
}

.profilpage .img img{display: block;width: 100%;transform: translateY(12px);}

.popvid{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(0,0,0,.9);
}

.popvid .close{
	color: #fff;
	display: block;
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
}

.popvid>div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popvid video{
	max-width: 80vw;
	max-height: 80vh;
	display: block;
	aspect-ratio:16/9;
	object-fit: cover;
}

a.qlink{
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	border-radius: 30px;
	background-color: #000;
	margin-top: 40px;
	margin-bottom: 40px;
	overflow: hidden;
	position: relative;
	height: 250px;
}

a.qlink img{
	width: 100%;
	display: block;
	object-fit: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	transition: all .4s;
}

a.qlink:hover img{opacity: .7;}

a.qlink p{
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	margin: 0;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #000;
	font-size: 24px;
	text-align: center;
	z-index: 9;
	font-weight: bold;
	text-shadow: 0px 0px 10px #FFFFFF;
	transition: all .4s;
}

a.qlink:hover p{color: #fff !important;text-shadow: 0px 0px 10px #000;}
.quartiersect{padding: 60px 0;}
.quartiersect .wrap{
	box-sizing: border-box;
	padding-left: 80px;padding-right: 200px;
}

.quartiersect.blogsect .wrap{padding-right: 80px;}

.quartiersect p.qintro{
	font-size:25px;
}

.qslidersect{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 60px;
}

.qslidersect .txt{
	width: calc(50vw - 80px);
	box-sizing: border-box;
	padding-left: calc(50vw - 610px + 80px);
	margin-bottom: 20px;
	padding-right: 20px;
}

.qslidersect.reverse .txt{
	padding-right: calc(50vw - 610px + 80px);
	padding-left: 20px;
}

.qslidercont{
	width: calc(50vw + 80px);
	position: relative;
}

.qslidercont p{
	font-size: 12px; text-transform: uppercase;
	margin-top: 5px;
	margin-bottom: 0;
	text-align: right;
}

img.qslide{
	display: block;
	border-radius: 15px 0 0 15px;
	width: 100%;
	object-fit: cover;
	aspect-ratio:16/9;
}

.reverse img.qslide{
	border-radius: 0 15px 15px 0;
}

.qpropsgal{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:30px;
	margin-bottom: 30px;
}
.blogsect .qpropsgal{margin-top: 30px;}
.qpropsgal article img{display: block;width: 100%;}
.qpropsgal article{
	border-radius: 15px;
	background-color: #fff;
	overflow: hidden;
	text-align: center;
}
.qpropsgal article a{display: block;}
.qpropsgal article a:last-child{
	padding-left: 10px;padding-right: 10px;
	display: block;
}

.blogsect{background-color: #f0f0f0;}

a.qpropslide{
	border-radius: 15px;
	overflow: hidden;
	text-decoration: none;
	color: #000 !important;
	position: relative;
}

a.qpropslide img{
	display: block;width: 100%;
}

a.qpropslide .rollprop{
	background-color: rgba(255,255,255,.8);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .4s;
}

a.qpropslide:hover .rollprop{opacity: 1;}

a.qpropslide .rollprop p{
	font-size:14px;
	line-height: 1.8;
}
a.qpropslide .rollprop p span{
	display: inline-block;
	padding: 5px;
	background-color: #505358;
	text-transform: uppercase;
	margin-top: 5px;
}

.statsq{margin-top: 50px;}

.statsq .wrap{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:25px;
	padding-top: 80px;padding-bottom: 80px;
}

.statq{
	border:1px solid #505358;
	color: #fff;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	padding: 60px 10px 40px;
}

.statq p{
	margin-top: 0;
	margin-bottom: 10px;
}

.statq p.num{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 1 !important;
}

.statq p.num span{font-size: 40px;font-weight: bold;}

.statq img{
	display: block;
	margin-left: auto;margin-right: auto;
	width: 70px;
	margin-top: 30px;
}






























































a.btn_print:link, a.btn_print:visited, a.retour_maison:link, a.retour_maison:visited, .btn_wrapper i{
	color: #505358;
}

.indentmenu ul li a.selected {
    background-color: #505358;
    border-bottom: 1px solid #505358;
}

.box_tabs{
	border-bottom: 3px solid #505358;
}

button.btn_calcul4, a.btn_calculateurs:link, a.btn_calculateurs:visited, .form_infos a.btn_calcul4:link, .form_infos a.btn_calcul4:visited, a.btn_calcul4:link, a.btn_calcul4:visited, h3.stit_detail.stit_calcul, .wrapper_triger.active, .btn_eval.btn_calcul4, a.btn_download:link, a.btn_download:visited{
	background-color: #505358;
	border-radius: 0px;
	font-weight: 600;
	text-transform: uppercase;
	color:#FFF;
	border: none;
	outline: none;
}

button.btn_calcul4:hover, button.btn_calcul4:focus, .form_infos a.btn_calcul4:hover, a.btn_calcul4:hover, .wrapper_triger, .btn_eval.btn_calcul4:hover, a.btn_download:hover{
	background-color: #333;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
	font-weight: 600;
	text-transform: uppercase;
}

.wrapper_right_btns{right: 30px;}

.right_btn{
	background-color: #505358;
}

.right_btn:hover {
    background-color: #333;
}

a.btn_social, p.socialbtns a{
	transition: color .4s;
}

a.btn_social:hover, p.socialbtns a:hover{
	color: #505358 !important;
}

.vendreintro{
	text-align: center;
	background: #505358;
	color: #fff;
	padding: 30px 0;
}

.vendreintro h1{
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	font-weight: 600;
	color: #fff;
}

.vendreintro ul{
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 14px;
	margin-left: 30px;
	text-align: left;
}

.vendreintro li{
	margin-bottom: 5px;
}

h1.h1styled{
	text-transform: uppercase;
    font-weight: 800;
    color: #505358;
    font-size: 30px;
    line-height: 1;
    margin: 0;
    margin-bottom: 10px;
	text-align: center;
	padding-top: 40px;
}

#form_item{
	text-align: center;
}

.titre_ajouter_item{
	text-transform: uppercase;
    font-weight: 800;
    color: #333;
    font-size: 25px;
    line-height: 1;
    margin: 0;
    padding-bottom: 30px;
	text-align: center;
}

.page_temoin{max-width: 800px !important;}

.wrapper_btns_mobile > div:first-child, .btn_mobile {
    background-color: #505358;
}

.wrapper_btns_mobile > div:last-child, .wrapper_btns_mobile > div:last-child .btn_mobile{
    background-color: #333;
}
.sectcontent.sectcontact{
	/* background: linear-gradient(90deg, rgba(255,255,255,1) 51%, rgba(36,36,36,1) 51%); */
}
.sectcontent .wrap.flexwrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.sectcontent .intro{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:20px;
	padding: 30px 0;
}
.sectcontent .intro img{
	display: block;
	width: 80px;
}

.sectcontent h1, .sectcontent h2, .secttitleban h2, .sectcontent p.h2{
	font-weight: 700;
	font-size: 30px;
	margin: 0;
}
.sectcontent h1 span, .sectcontent h2 span, .secttitleban h2 span{
	color: #007ec3;
	font-family: 'Oooh Baby', cursive;
	font-weight: normal;
}
.secttitleban h2 span, .sectcontent.blue h2 span{color: #fff;}
.sectwrap{
	padding: 40px 80px;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.sectwrap>*{width: 100%;}
.sectwrap>.half, .sectcontent .half{
	width: calc(50% - 15px);
}
.sectwrap ul, .sectwrap p{
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 20px;
}
.sectwrap li{list-style-type: none;margin-bottom: 5px;}
.sectwrap li:before{
	content: "›";
	color: #007ec3;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
img.preh2{
	display: block;
	margin-left: auto;margin-right: auto;
	margin-bottom: 10px;
	width: 80px;
}
h2.centersect{
	text-align: center;
}

.sectpropcont{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:20px;
	padding: 50px 0;
}
.sectcontact .half {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 80px;
    box-sizing: border-box;
}

.sectcontact form.half{padding-left: 80px;}

.sectcontact .half p{
	padding-left: 80px;
	box-sizing: border-box;
	margin-top: 40px;
}

.sectcontact label{
	display: block;
	margin-bottom: 10px;
}

.sectcontact input:not([type=submit]), .sectcontact textarea{
	-webkit-appearance:none;
	appearance:none;
	border: 1px solid #7b7c7e;
	margin-bottom: 15px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-size: 16px;
	padding: 7px;
	border-radius:0px;
}

.sectcontact textarea{
	min-height: 150px;
	resize: vertical;
}

.sectcontact input[type=submit]{
	-webkit-appearance:none;
	appearance:none;
	color: #fff !important;
	background-color: #0072b0;
	border:none;
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px;
	border-radius:0px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	font-family: 'Arsenal', sans-serif;
}
.homequartiers {
	padding: 50px 0 60px 0;
}
.homequartiers h2 {
    text-align: center;
    color: #505358;
    margin-bottom: 10px;
}
.homequartiers-wrapper {
	display: flex;
    gap: 40px;
}
@media screen and (min-width: 1921px) {
	.wrap{
		max-width: 1650px;
		width: 95%;
	}
	
}
@media screen and (max-width: 1500px) {
	.qslidercont {
		width: calc(60vw + 80px);
	}	
}
@media screen and (max-width: 1300px) {
	.qslidercont {
		width: calc(70vw + 80px);
	}	
}
@media screen and (max-width: 1024px) {
	.qslidercont {
		width: calc(100vw - 180px);
	}	
	
}
@media screen and (max-width: 1240px) {
	.wrap{width: 1000px;}
	
	.prophome .wrap{padding-right: 0;}
	
	.qslidersect .txt {
		width: calc(50vw - 80px);
		padding-left: calc(50vw - 500px + 80px);
	}
	
}

@media screen and (max-width: 1100px) {
	.sectcontact .half {
		padding-left: 30px;
		padding-right: 30px;
	}
	.sectcontact .half p {
		padding-left: 0;
	}
	.sectcontact form.half {
		padding-left: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.sectcontact .half {
		padding-right: 30px;
		width: 50%;
	}
	.wrapper_right_btns{display: none;}
	
	.wrap {
    	width: calc(100% - 20px);
		padding: 0px 10px;
	}
	
	header .wrap, footer .wrap{padding-left: 0;padding-right: 0;}
	.ctas .wrap{padding-left: 20px;padding-right: 20px;}
	.profilhome .wrap, .temhome .wrap, .propluxe .wrap, .h1tit .wrap, .qprops .wrap, .prophome .wrap, .profilpage .wrap, .quartiersect .wrap, .quartiersect.blogsect .wrap{padding-left: 30px;padding-right: 0;}
	
	a.bouton{
		padding: 15px;font-size: 14px;
	}
	.ctas .cta p span{font-size: 30px;}
	.ctas .cta img{width: 40px;}
	
	.profilpage .img{width: 36%;}
	
	.qslidersect .txt{
		padding-left: 40px;
		width: calc(50vw - 80px);
	}
	.quartiersect p.qintro {
    	font-size: 22px;
	}
	
	a.qpropslide .rollprop{
		position: relative;
		height: auto;
		opacity: 1;
		background-color: #fff;
	}
	
}

@media screen and (max-width: 850px) {
	.banner-info{width: 280px;}
	.banner{padding-top: 120px;padding-bottom: 70px;}
	.banner.nothome {
		padding-top: 160px;
        padding-bottom: 100px;
	}
	
	.propinfo p{font-size: 17px;}
	.propinfo{padding-left: 15px;}
	a.bouton {
		padding: 10px;
		font-size: 13px;
	}
	.profilpage .txt{padding-bottom: 20px;}
	a.logobnothome {
        width: 180px;
        margin-left: -90px;
        margin-top: -40px;
    }
	.qslidersect .txt{margin-bottom: 20px;}
	
	.qslidersect .txt{width: 60vw;}
	.statq p{font-size: 13px;min-height: 44px;}
	.homequartiers-wrapper {
		display: block;
		width: 500px;
		margin: 0 auto;
		max-width: 100%;
	}
}

@media screen and (max-width: 750px) {
	.qpropsgal article{margin-bottom: 20px;max-width: 350px;width: 100%;}
	.sectcontent .half {
		width: 100%;
		padding: 60px 30px 30px 30px;
	}
	.sectcontact .half p {
		padding-left: 0;
		margin-top: 20px;
	}
	.sectcontact form.half {
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
		padding-top: 0;
	}
	.statq p{font-size: 15px;min-height: 0;}
	.statsq .wrap{display: block;padding-left: 15px !important;padding-right: 15px !important;}
	.statq{
	margin-top: 20px;margin-bottom: 20px;}
	.menuico{
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}
	
	.btnh{display: none;}
	
	.profilhome .txt, .profilhome img, .prophome .img, .propinfo, .propluxe .img, .propluxe .txt, .sidef, .profilpage .txt, .profilpage .img, .qslidersect .txt{width: 100%;}
	
	.profilhome img, .propluxe .img{max-width: 350px;margin-left: auto;margin-right: auto;margin-bottom: 40px;order:-1;}
	
	.propslidercont .bx-prev, .propslidercont .bx-next{bottom: auto;top: 15px;}
	.propinfo{padding-left: 0;}
	.prophome .img{border-radius: 15px;}
	
	img.ctatitle{width: 100%;}
	.ctas .cta, img.ctamid{width: 60%;margin-left: auto;margin-right: auto;}
	
	img.ctamid{
		margin: 30px auto 45px;
	}
	
	.courtiersf h3, p.quartiers{display: none;}
	
	.courtiersf{width: 100%;order: -1;padding-left: 0;text-align: center;}
	.courtiersf .courtier{width: 100%;margin-right: 0;}
	
	.sidef{
		padding-right: 0;
		border-right: 0;
		padding-top: 0;
	}
	a.logof, a.logof img{max-width: 280px;margin-left: auto;margin-right: auto;}
	img.royal{margin-left: auto;margin-right: auto;}
	.sidef p{text-align: center;}
	
	.profilpage .img{
		order:2;
		max-width: 350px;
		margin-left: auto;margin-right: auto;
	}
	
	a.qlink{height: 200px;}
	
	.qslidersect .txt, .qslidersect.reverse .txt{padding-left: 40px;padding-right: 10px;}
	.qslidercont{
		width: calc(100% - 10px);
	}
	.qslidersect{justify-content: flex-end;}
	.qslidersect.reverse{justify-content: flex-start;}
	.qpropsgal{display: block;gap:0;}
	a.qpropslide{
		display: block;
		width: 100%;
		max-width: 350px;
		margin-bottom: 20px;
	}
	.quartiersect p.qintro{font-size: 18px;}
	
	.ctas .wrap{padding-left: 0;padding-right: 0;}
	
	.prixcont{justify-content: center;margin-bottom: 20px;}
	
}

@media screen and (max-width: 370px) {
	
	.btn_social{
		width: 17px;
		margin: 0px 1px;
	}
	
	header nav.soc span{
		font-size: 14px;
	}
	
	.slider img {
    	width: 320% !important;
	}
	
	footer a.logo{
		width: 300px;
	}
}
.back_btn {
	text-align: right;
    position: relative;
    top: -55px;
}

@media screen and (max-width: 590px) { 
	.back_btn {
		top: 0;
		margin: 0 0 30px 0;
	}
	.back_btn a.btn_calcul4 {
		font-size: 12px;
	}
}

.mosaique .box_maison_img img:not(.marq_vendu){
   display: block;
   width: 100%;
   transition: all .4s;
}

.photo_vendu{background: #000 !important;overflow: hidden;}

.photo_vendu:hover img:not(.marq_vendu){transform: scale(1.1);opacity: .7;}
.prophome a:not(.btn) img.marq_vendu{
    width: 210px;
    height: auto;
}

