/* Couleurs :	Rouge : #d6001c | Noir : #2c2a29 | Rouge foncé : #a50416 | Brun Espace : #685d59 | Orange : #ff6f00 */

/* GLOBAL */
body {
	font: 400 14px 'Roboto', Sans-serif;
	/*background-color: #2c2a29;*/
	background-color: #000;
}
section {
	background-color: #fff;
}
a, a:hover {
	color: #d6001c;
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
}
img {
	max-width: 100%;
}
h1 {
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 15px;
	color: #d6001c;
}
h2 {
	font-size: 20px;
	/*margin: 0 0 15px;*/
	color: #d6001c;
	text-transform: uppercase;
}
h3 {
	font-size: 17px;
	/*margin: 0 0 15px;*/
	color: #4c4c4c;
	text-transform: uppercase;
}
p {
	margin: 0 0 15px;
}
label {
	font-weight: 500;
}
select {
	/*margin-bottom: 15px;*/
}
small {
	display: inline-block;
	margin-top: 7.5px;
}

.button {
	display: inline-block;
	background-color: #d6001c;
	padding: 0 22.5px;
	margin: 0 7.5px;
	border-radius: 5px;
	color: #fff;
	line-height: 45px;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 500;
	text-shadow: 0 0 10px #a60808;
	border: none;
}
.button:hover, .button:active {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) inset;
	color: #fff;
}
button.button {
	display: block;
	margin: 22.5px auto;
}
button.button[disabled] {
	background-color: #ccc;
	text-shadow: none;
	box-shadow: none;
}

.notification {
	margin-bottom: 15px;
	padding: 15px;
	border-radius: 3px;
}
.notification p {
	margin: 0;
}
.error {
	background-color: #ffc9c9;
	color: #ac1818;
}
.success {
	background-color: #bdedbc;
	color: #045702;
}
input[name=email1], input[name=email2], input[name=email3] {
	display: none;
}

.mobile-on {
	display: block !important;
}
.mobile-off {
	display: none !important;
}


/* HEADER */
header {
	/*background-color: #d6001c;*/
	/*color: #fff;*/
	background-color: #eee;
	/*color: #555;*/
	padding-bottom: 0.75rem;
}
.header-top {
	/*background-color: #a50416;*/
	background-color: #d6001c;
	color: #fff;
	font-weight: 300;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}
.social a {
	color: #fff;
}

.logo {
	/*height: 45px;*/
	height: 55px;
}

.menu {
	display: none;
	margin: 0;
	line-height: 70px;
	/*line-height: 75px;*/
	font-size: 14px;
	font-weight: 500;
}
.menu li {
	display: inline-block;
}
.menu li a {
	display: inline-block;
	padding: 0 1rem;
	color: #2c2a29;
	/*color: #000;*/
}
.menu li:last-child a {
	margin-left: 4rem;
	line-height: 2.5;
	background-color: #fff;
	padding: 0 1rem;
	border-radius: 3px;
}
.toggle-menu, .my-space {
	display: inline-block;
	padding: 0 15px;
	margin-top: 5px;
	line-height: 45px;
	font-size: 21px;
	border-radius: 3px;
}
.toggle-menu.on, .my-space.on {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
}
.my-space, a.my-space:hover {
	color: #212529;
	/*margin-right: 7.5px;*/
}
.mobile-menu {
	display: none;
	position: absolute;
	/*top: 60px;*/
	top: 67px;
	right: 0;
	z-index: 10;
	width: 100%;
	background-color: #eee;
	font-size: 15px;
	/*box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);*/
}
.mobile-menu.on {
	display: block;
}
.mobile-menu li a {
	font-size: 14px;
	font-weight: 500;
	color: #2c2a29;
	display: block;
	padding: 15px 20px;
	border-bottom: solid 1px #fff;
}

.event {
	/*background-color: #000;*/
	background-color: #003c7a;
	text-align: center;
    font-size: 14px;
	/*font-style: italic;*/
    font-weight: bold;
	color: #fff;
	padding: 7.5px 0;
}
.event .fa {
	margin-right: 7.5px;
}

/*.event .container {
	display: block;
	margin: 3em auto;
	overflow: hidden;
	position: relative;
	table-layout: fixed;
	width: 1000px;
	height: 17px;
}
.event .container > div {
	display: block;
	width: 100%;
	-webkit-animation: linear marqueelike 20s infinite;
	-moz-animation: linear marqueelike 20s infinite;
	-o-animation: linear marqueelike 20s infinite;
	-ms-animation: linear marqueelike 20s infinite;
	animation: linear marqueelike 20s 20s infinite;
	margin-left: -100%;
	padding: 0 5px;
	text-align: left;
	height: 17px;
}*/
/*.event .container > div:after {
	content: attr(data-text);
	position: absolute;
	white-space: nowrap;
	padding-left: 150px;
}*/

/*@-webkit-keyframes marqueelike {
	0%, 100% {margin-left:0;}
	99.99% {margin-left:-100%;}
 }
@-moz-keyframes marqueelike {
	0%, 100% {margin-left:0;}
	99.99% {margin-left:-100%;}
 }
@-o-keyframes marqueelike {
	0%, 100% {margin-left:0;}
	99.99% {margin-left:-100%;}
 }
@-ms-keyframes marqueelike {
	0%, 100% {margin-left:0;}
	99.99% {margin-left:-100%;}
 }
@keyframes marqueelike {
	0%, 100% {margin-left:0;}
	99.99% {margin-left:-100%;}
 }*/

/* Popup */
.popup-wrap {
	position: fixed;
	z-index: 50;
	width: 100%;
	min-height: 100%;
	height: 100%;
	/*display: none;*/
}
.popup-wrap > div {
	height: 100%;
	display: flex;
}
.popup-bg {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 51;
}
#popup {
	width: calc(100% - 30px);
	max-width: 640px;
	margin: auto;
	padding: 22.5px;
	background-color: #d6001c;
	color: #fff;
	text-align: center;
	font-size: 17px;
	/*font-size: 24px;*/
	/*text-align: center;*/
	line-height: 1.4;
	/*padding: 30px;*/
	/*background-color: #fff;*/
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	z-index: 52;
}
#popup img {
	width: 60%;
	max-width: 240px;
	margin: 7.5px 0 30px;
}
#popup .popup-hide {
	display: inline-block;
	margin-top: 15px;
	color: #fff;
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
}

/* PAGE */
.banner {
	position: relative;
	overflow: hidden;
}
/* L’image floutée en arrière-plan */
.banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-image: var(--bg-url);
	background-size: cover;
	background-position: center;
	filter: blur(20px);
	transform: scale(1.05); /* pour couvrir les bords floutés */

	z-index: 0;
}
/* Le contenu de la section passe au-dessus */
.banner > img {
	position: relative;
	z-index: 1;
}

.page {
	background-color: #fff;
	padding: 15px 0;
	min-height: 300px;
}
.page img {
	margin-bottom: 20px;
}
.content ul {
	list-style: circle;
	padding-left: 30px;
}
.subscribe-block {
	background-color: #f7f7f7;
	padding: 30px 15px;
	text-align: center;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1) inset;
}
.map {
	margin: 30px 0px;
}
.carousel-inner img {
	width: 100%;
}
.carousel-inner {
	border-radius: 0.5rem;
}
.carousel-control-next, .carousel-control-prev {
	width: 8%;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	background-image: none;
	font-size: 25px;
	line-height: 25px;
	height: 25px;
}

/* HOME */
.home p {
	font-size: 15px;
}
.home strong {
	display: inline-block;
	background-color: #d6001c;
	color: #fff;
	line-height: 1.4;
	text-transform: uppercase;
}
.home .col-sm-8 {
	padding: 0;
}

.gray-section {
	background-color: #eee;
	color: #2c2a29;
	font-size: 15px;
	font-weight: 500;
}
.gray-section h1, h1.gray {
	color: #4c4c4c;
}

.house-types li {
	display: inline-block;
	background-color: #d6001c;
	color: #fff;
	padding: 0 5px;
	margin-bottom: 5px;
}

.houses {
	background: url(../images/houses-bg.jpg) no-repeat;
	background-size: cover;
/*	backdrop-filter: blur(5px);
	-webkit-filter: blur(5px);*/
}
.cover {
	background: url(../images/house-default.jpg) no-repeat;
	background-size: cover;
	border-radius: 5px 5px 0 0;
	color: #fff;
	padding-top: 140px;
	font-weight: 500;
}
.cover h2 {
	color: #fff;
	font-size: 17px;
}
.summary {
	background-color: #fff;
	color: #2c2a29;
	/*font-size: 13px;*/
	border-radius: 0 0 5px 5px;
	text-align: center;
}
.summary p {
	text-align: left;
}
.summary .button {
	margin: auto;
	line-height: 24px;
	font-size: 12px;
	padding: 0 15px;
}

.location p {
	text-align: justify;
	font-size: 15px;
}
.location ul {
	list-style: square;
	padding-left: 1rem;
	font-size: 15px;
}
.location ul li {
	margin-bottom: 1rem;
}
.location ul li::marker {
	color: #d6001c;
}

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.legend {
	position: absolute;
	bottom: 0px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.75);
	text-align: center;
	line-height: 37.5px;
	font-size: 15px;
}
.home-block {
	background-color: #f7f7f7;
	padding: 22.5px 15px;
	/*margin-bottom: 15px;*/
	text-align: center;
	font-size: 15px;
	color: #2c2a29;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1) inset;
}
.home-block h1 {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 600;
	color: #d6001c;
	margin-bottom: 10px;
}
.home-block p {
	margin-bottom: 10px;
}
.home-block b {
	font-size: 16px;
	font-weight: 500;
	color: #ff6f00;
}
.home-block .button {
	margin-top: 20px;
}


/* HOUSE TYPE */
.house {
	background-color: #eee;
	font-size: 13.5px;
	text-align: justify;
}
.house h1 {
	text-transform: uppercase;
	color: #2c2a29;
	font-weight: 600;
}
.house-price {
	text-transform: uppercase;
	color: #d6001c;
	font-weight: 500;
}
.house-price strong {
	display: inline-block;
	padding-top: 2px;
	background-color: #d6001c;
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
}
.house-price strong i {
	font-style: normal;
	font-weight: 100;
	font-size: 0.7rem;
}
.composition {
	background-color: #fff;
}
.composition ul {
	list-style: square;
	padding: 1.5rem 1.5rem 0.5rem 2.5rem;
	box-shadow: 0px 0px 15px 1px #d7d7d7;
}
.composition ul li {
	margin-bottom: 1rem;
}
.composition ul li::marker {
	color: #d6001c;
}


/* HOW TO */
.steps {
	box-shadow: 0px 0px 15px 1px #d7d7d7;
}
.steps h1 {
	color: #2c2a29;
}
.steps h2 {
	text-transform: none;
	font-size: 1.05rem;
	position: relative;
	z-index: 10;
	/*margin-left: -20px;*/
}
.steps h3 {
	text-transform: none;
	font-size: 0.9rem;
	font-weight: bold;
}
.steps p {
	position: relative;
	z-index: 10;
}
.step-number {
	position: absolute;
	left: 67%;
	font-weight: bolder;
	font-size: 5rem;
	color: #f4f4f4;
	z-index: 1;
}
.iban h3 {
	text-transform: none;
	font-size: 1.2rem;
	color: #d6001c;
}
.iban ul li {
	padding: 10px;
}
.iban ul li:nth-child(odd) {
	background-color: rgba(214, 0, 28, 0.1);
}
.iban ul li b {
	display: inline-block;
	width: 150px;
}


/* SUBSCRIPTION */
.card-type {
	padding-right: 0;
}
.card-type .form-control {
	padding: 6px 10px;
	margin-bottom: 0;
}
#no-email {
	margin: 3px 5px 0 0;
	vertical-align: top;
}
#phone-alert {
	margin: 7.5px 0 0;
	font-size: 13px;
	color: #d6001c;
	display: none;
}


/* USER */
.form-login, .form-forgotten, .form-reset {
	margin: 22.5px 0;
	text-align: center;
}

.dashboard {
	font-size: 12.5px;
	margin-bottom: 7.5px;
}
.dashboard h2 {
	margin-top: 30px;
}
.dashboard h3 {
	margin-top: 15px;
	color: #d6001c;
}
.dashboard table {
	width: 100%;
	margin-bottom: 22.5px;
}
.dashboard table td, .dashboard table th {
	padding: 7.5px 0;
	border-bottom: solid 1px #eee;
}
.dashboard .mention {
	margin: -7.5px 0 22.5px;
	font-size: 13px;
	line-height: 1.3;
}
.dashboard table .button {
	text-transform: none;
	margin: 0;
	padding: 7.5px 15px;
	font-size: 12px;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.buyer-action {
	text-align: center;
}
.buyer-action .button {
	display: inline-block;
	margin: 0px 5px 15px;
	/*padding: 10px 20px;*/
	font-size: 13px;
	letter-spacing: 0.5px;
}
.buyer-action button.button {
	margin-top: 7.5px;
}
.back {
	display: inline-block;
	margin-bottom: 7.5px;
	/*text-decoration: underline;*/
}

#progress {
	margin: 30px 0;
	padding-bottom: 30px;
}
#bar {
	margin-left: 8%;
	font-size: 12px;
}
#bar li {
	position: relative;
	background-color: #ccc;
	display: inline-block;
	width: 23%;
	height: 8px;
}
#bar li:last-child, #bar li.done:last-child {
	background-color: #fff;
	width: 8%;
}
#bar li strong {
	display: block;
	background-color: #ccc;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
	color: #fff;
	width: 24px;
	text-align: center;
	line-height: 24px;
	border-radius: 12px;
	margin-left: -12px;
	margin-top: -8px;
}
#bar li span {
	position: absolute;
	top: 22.5px;
	left: -45%;
	width: 90%;
	text-align: center;
	color: #aaa;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center; 
}
#bar li:last-child span {
	left: -130%;
	width: 260%;
}

#bar li.done, #bar li.done strong {
	background-color: #00a651;
}
#bar li.done span {
	color: #009641;
}

.user-infos {
	margin-bottom: 22.5px;
}
.user-infos .row {
	margin-bottom: 7.5px;
}

.tos {
	margin-bottom: 15px;
}
.tos input[type=checkbox] {
	margin: 2px 7.5px 2px 0;
}
.tos label {
	display: inline;
	vertical-align: top;
}
.tos select {
	max-width: 300px;
	margin: auto;
}

/* FOOTER */
footer {
	color: #fff;
	/*padding: 15px 0;*/
}
.footer-top {
	background-color: #eee;
	color: #2c2a29;
	font-size: 15px;
	font-weight: 500;
}
footer .col-sm-4 {
	margin-bottom: 15px;
}
footer h3 {
	color: #d6001c;
	color: #f6203c;
	font-size: 15px;
	font-weight: 400;
/*	padding: 15px 0 10px;
	border-bottom: solid 1px #887d79;*/
	
}
footer ul {
	list-style: circle;
	padding-left: 15px;
}
footer a {
	color: #fff;
}
.footer-bottom {
	border-top: solid 1px rgba(255, 255, 255, 0.35);
	padding-top: 15px;
	font-size: 13px;
	/*color: #d8cdc9;*/
}
.footer-bottom a {
	color: #f6203c;
}

#whatsapp {
	position: fixed;
	bottom: 7.5px;
	right: 7.5px;
	display: block;
	width: 55px;
	height: 55px;
	background: no-repeat url(../images/whatsapp.png);
	background-size: cover;
}


/* ESPACE CLIENT */
/*.my-space {
	display: inline-block;
    padding: 0 15px;
    line-height: 45px;
    font-size: 21px;
}*/

/* Couleurs :	Rouge : #d6001c | Brun Espace : #685d59 | Orange : #ff6f00 */