#home-page .background {
	position: fixed;
	z-index: 0;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: url(img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}

#home-page .background:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(img/pattern.png) no-repeat;
    background-size: cover;
    background-position: bottom center;
    opacity: .2;
}

#main-page {
	height: 100vh;
}

.about-content {
	height: 100vh;
    position: absolute;
}

.about-content .inner {
	position: relative;
	color: #fff;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	text-shadow: 0px 0px 7px rgba(0,0,0,0.3);
}

.about-content .inner.fx {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
	transition: .3s;
}

.about-content .inner p {
	font-size: 18px;
}

.about-content .contact {
    background: #309cf4;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 10px 20px;
    border-left: 4px solid #fff;
}

.about-content .contact i {
	font-size: 12px;
}

.about-content .contact a {
	color: #fff;
}

.about-content .contact a:hover {
	text-decoration: underline;
}

.form-content {
	transform: translateX(20%);
	opacity: 0;
	visibility: hidden;
	background: rgba(255,255,255, .6);
	padding: 20px;
	border-radius: 20px;
	width: 100%;
	transition: .3s;
}

.about-content .contact em {
    font-style: normal;
}

.form-content.fx  {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	transition: .3s;
}

.form-content .inner {
	background: rgba(255,255,255, 1);
	padding: 25px 20px;
	border-radius: 10px;
	position: relative;
}

.form-content .title h3 {
	display: inline;
	flex: none;
	color: #1fc0c5;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 10px;
}

.form-content .title i {
	display: contents;
	font-size: 20px;
	color: #1fc0c5;
}

.form-content .title hr {
    width: 100%;
    box-sizing: border-box;
    margin-left: 5px;
    background: #1fc0c5;
    opacity: 1;
}

.form-content textarea {
    resize: none;
    height: 150px !important;
}

.form-content label {
	white-space: nowrap !important;
}


.form-content span.required {
    margin-left: 1px;
}

.bt-add-property {
    cursor: pointer;
    color: #1fc0c5;
    font-weight: 500;
}

.bt-add-property:hover {
    text-decoration: underline;
}

.copyright-content {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: #406573;
	font-size: 14px;
	font-weight: 500;
}

.copyright-content a {
	color: #406573;
}

.copyright-content a:hover {
	text-decoration: underline;
}

.rgpd-content {
    background: rgba(255,255,255, .6);
    padding: 20px;
    border-radius: 20px;
}

.rgpd-content .inner {
    background: rgba(255,255,255, 1);
    padding: 25px 20px;
    border-radius: 10px;
    width: 100%;
}

.list_estate {
    background: #f6f6f6;
    margin: 0 10px;
    width: calc(100% - 20px);
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

.list_estate ul {
    padding-left: 20px;
    list-style: auto;
    margin: 0;
    font-size: 14px;
}

.g-recaptcha {
    margin: auto;
    display: inline-block;
    margin-top: 10px !important;
}