@font-face {
  font-family: "maaxbold";
  src: url("../fonts/maax-bold-webfont.woff2") format("woff2"), url("../fonts/maax-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "maaxmedium";
  src: url("../fonts/maax-medium-webfont.woff2") format("woff2"), url("../fonts/maax-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "maax";
  src: url("../fonts/maax-webfont.woff2") format("woff2"), url("../fonts/maax-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  outline: none;
}

body {
  font-size: 16px;
  font-family: "maax";
  color: #214C4B;
  background: #F4F0EA;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, ul, li {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.container.large {
  width: 95%;
  max-width: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.appear {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.appear > h2, .appear p, .appear div {
  position: relative;
  top: 40px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}
.appear > .bg {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center !important;
  transition: all 0.5s ease-in-out;
}
.appear.active {
  opacity: 1;
}
.appear.active .bg {
  transform: scale(1);
  opacity: 1;
}
.appear.active > h2, .appear.active p, .appear.active div {
  top: 0;
  opacity: 1;
}

header {
  width: 100%;
  height: 100vh;
  padding-top: 30px;
  position: relative;
  background: url(../img/bitmap/header.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}
header .container .telephone {
  float: left;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
header .container .contact {
  float: right;
  display: inline-block;
  background: #F4F0EA;
  color: #214C4B;
  border: 1px solid #214C4B;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "maaxmedium";
  font-size: 1.125em;
  text-transform: uppercase;
  vertical-align: middle;
}
header .logo {
  position: relative;
  top: -5px;
}
header h1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 50px;
  font-family: "maaxbold";
  font-size: 2.125em;
  font-weight: normal;
  line-height: 40px;
  color: white;
  text-transform: uppercase;
  background: url(../img/svg/arrow-bottom.svg) no-repeat center bottom;
  background-size: 60px auto;
  animation: 2s ease-in infinite arrow;
}
@media screen and (max-width: 780px) {
  header .container .contact {
    position: absolute;
    top: 250px;
    left: calc(50% - 105px);
  }
  header .container .telephone {
    position: absolute;
    top: 350px;
    left: calc(50% - 130px);
  }
}

@keyframes arrow {
  from {
    background-position: center bottom 10px;
  }
  50% {
    background-position: center bottom 0;
  }
  to {
    background-position: center bottom 10px;
  }
}
section.container h2 {
  font-family: "maaxbold";
  font-weight: normal;
  color: #214C4B;
  text-transform: uppercase;
}
section.container p {
  line-height: 20px;
  margin: 30px 0 0 0;
}
section.container.infos {
  padding-top: 75px;
  padding-bottom: 75px;
}
section.container.infos ul {
  text-align: center;
}
section.container.infos ul li {
  display: inline-block;
  padding: 0 5px;
  width: 25%;
  vertical-align: top;
  font-family: "maaxbold";
  font-weight: normal;
  font-size: 1.15em;
  color: #C65638;
  text-transform: uppercase;
}
section.container.infos ul li img {
  display: block;
  margin: 0 auto 20px auto;
}
section.container.infos ul li:nth-child(2) {
  position: relative;
  top: -10px;
}
@media screen and (max-width: 900px) {
  section.container.infos {
    padding-bottom: 0;
  }
  section.container.infos ul li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  section.container.infos ul li:last-child {
    margin-bottom: 0;
  }
}
section.container.situation {
  padding-top: 75px;
  position: relative;
}
section.container.situation .bg {
  position: absolute;
  top: -73px;
  right: -65px;
  z-index: -1;
}
section.container.situation p {
  padding-right: 60%;
}
section.container.situation .situation-map {
  padding-top: 20px;
}
section.container.situation .mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  section.container.situation .bg {
    display: none;
  }
  section.container.situation p {
    padding-right: 0;
  }
  section.container.situation .desktop {
    display: none;
  }
  section.container.situation .mobile {
    display: block;
  }
}
section.container.appartements {
  display: flex;
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
}
section.container.appartements .bg {
  position: absolute;
  z-index: -1;
}
section.container.appartements .bg.first {
  top: -75px;
  left: 200px;
}
section.container.appartements .bg.second {
  bottom: -150px;
  right: 1px;
}
section.container.appartements > div:first-child {
  width: 60%;
}
section.container.appartements > div:last-child {
  padding-top: 20px;
  width: 40%;
}
section.container.appartements a {
  margin-top: 30px;
  display: inline-block;
  background: #F4F0EA;
  color: #E0B46E;
  border: 1px solid #E0B46E;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "maaxmedium";
  font-size: 1.125em;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  section.container.appartements {
    display: block;
    text-align: center;
    padding-bottom: 0;
  }
  section.container.appartements .bg.first {
    width: auto !important;
    height: 400px !important;
    top: -75px;
    left: 200px;
  }
  section.container.appartements .bg.second {
    display: none;
  }
  section.container.appartements > div {
    width: 100% !important;
  }
}
section.container.house {
  display: flex;
  margin-top: -50px;
}
section.container.house > div:first-child {
  padding-top: 100px;
  width: 40%;
}
section.container.house > div:last-child {
  width: 60%;
}
section.container.house a {
  margin-top: 30px;
  display: inline-block;
  background: #F4F0EA;
  color: #E0B46E;
  border: 1px solid #E0B46E;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "maaxmedium";
  font-size: 1.125em;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  section.container.house {
    display: block;
    text-align: center;
  }
  section.container.house > div {
    width: 100% !important;
  }
}
section.container.harmony {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
}
section.container.harmony .bg {
  position: absolute;
  z-index: -1;
  top: -73px;
  right: -65px;
}
section.container.harmony h2, section.container.harmony p {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
section.container.harmony p {
  margin-top: 30px;
  padding-bottom: 100px;
}
section.container.harmony img {
  display: block;
  margin: 0 auto;
}
section.container.harmony img.harmony-view {
  margin: 50px auto;
}
@media screen and (max-width: 750px) {
  section.container.harmony {
    text-align: center;
  }
  section.container.harmony img {
    width: 100%;
  }
}

.contact {
  padding-bottom: 40px;
  color: #EDE9E2;
}
.contact h2 {
  font-family: "maaxbold";
  font-weight: normal;
  font-size: 1.4em;
  letter-spacing: 1px;
  padding-bottom: 40px;
}
.contact .success {
  padding: 40px;
  background: #C65638;
}
.contact form {
  padding: 40px;
  background: #C65638;
}
.contact form > div {
  width: 80%;
  margin: 0 auto;
  display: flex;
}
.contact form > div > div {
  width: 50%;
}
.contact form > div > div:first-child {
  padding-right: 5px;
}
.contact form > div > div:last-child {
  padding-left: 5px;
}
.contact form > div:last-child > div:first-child {
  width: 60%;
}
.contact form > div:last-child > div:last-child {
  width: 40%;
}
.contact form .form-element {
  padding-bottom: 15px;
}
.contact form .form-element:last-child {
  padding-bottom: 50px;
}
.contact form .form-element input[type=text],
.contact form .form-element input[type=email],
.contact form .form-element textarea {
  font-size: 1em;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #F2DACC;
  background: transparent;
  color: #F4F0EA;
  padding-bottom: 20px;
  outline: none;
}
.contact form .form-element input[type=text]::placeholder,
.contact form .form-element input[type=email]::placeholder,
.contact form .form-element textarea::placeholder {
  color: #F4F0EA;
  opacity: 1;
  line-height: normal;
}
.contact form .form-element input[type=text]:-ms-input-placeholder,
.contact form .form-element input[type=email]:-ms-input-placeholder,
.contact form .form-element textarea:-ms-input-placeholder {
  color: #F4F0EA;
  line-height: normal;
}
.contact form .form-element input[type=text]::-ms-input-placeholder,
.contact form .form-element input[type=email]::-ms-input-placeholder,
.contact form .form-element textarea::-ms-input-placeholder {
  color: #F4F0EA;
  line-height: normal;
}
.contact form .form-element .radio-container,
.contact form .form-element .checkbox-container {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
  cursor: pointer;
}
.contact form .form-element .radio-container {
  padding-left: 20px;
}
.contact form .form-element input[type=radio],
.contact form .form-element input[type=checkbox] {
  display: none;
}
.contact form .form-element input[type=radio] + .checkmark,
.contact form .form-element input[type=checkbox] + .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.contact form .form-element input[type=radio]:checked + .checkmark:before,
.contact form .form-element input[type=checkbox]:checked + .checkmark:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #214C4B;
  top: 4px;
  left: 4px;
}
.contact form .form-element input[type=radio] + .checkmark {
  border-radius: 50%;
  background: white;
}
.contact form .form-element input[type=radio]:checked + .checkmark:before {
  border-radius: 50%;
}
.contact form .form-element input[type=checkbox] + .checkmark {
  background: transparent;
  border: 1px solid #F4F0EA;
}
.contact form .form-element input[type=checkbox]:checked + .checkmark:before {
  background: url(../img/svg/checkbox.svg) no-repeat;
  background-size: auto 12px;
  top: 3px;
  left: 3px;
  fill: green;
}
.contact form .form-element textarea {
  resize: none;
}
.contact form .form-element > label:first-child {
  display: block;
  padding-bottom: 20px;
}
.contact form .form-element .error-msg {
  min-height: 30px;
  font-size: 10px;
  opacity: 0;
}
.contact form .form-element .error-msg.error {
  opacity: 1;
}
.contact form .form-submit {
  text-align: right;
  display: block;
}
.contact form .form-submit button.bzsubmit {
  display: inline-block;
  background: #F4F0EA;
  color: #EDE9E2;
  border: 1px solid #EDE9E2;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "maaxmedium";
  font-size: 1.125em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}
.contact form .line.error {
  text-align: right;
  font-size: 0.7em;
  padding-top: 10px;
}
.contact form .confidentialite {
  font-size: 0.8em;
  cursor: pointer;
}
.contact form .confidentialite a {
  color: white;
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .contact {
    padding: 0;
  }
  .contact h2 {
    font-size: 1em;
  }
  .contact form {
    padding: 40px 20px;
    margin-bottom: 0;
  }
  .contact form > div {
    width: 100%;
    display: block;
  }
  .contact form > div > div {
    width: 100% !important;
  }
}

footer {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  background: #214C4B;
  color: #F4F0EA;
  text-align: center;
}
footer a {
  color: #F4F0EA;
}
footer hr {
  display: block;
  width: 95%;
  color: white;
  margin: 30px auto;
}
@media screen and (max-width: 1120px) {
  footer hr {
    width: 98%;
  }
}
footer .container {
  text-align: center;
}
footer .container > div {
  display: inline-block;
  vertical-align: middle;
}
footer .container > div:first-child {
  text-align: left;
  width: 40%;
}
footer .container > div:nth-child(2) {
  width: 20%;
}
footer .container > div:last-child {
  text-align: right;
  width: 40%;
}
footer .container.legal {
  margin-top: 30px;
}
footer .container.legal ul {
  width: 70%;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 0.7em;
  text-align: left;
  vertical-align: middle;
}
footer .container.legal ul li {
  display: inline-block;
  padding-right: 30px;
}
footer .container.legal p {
  width: 30%;
  display: inline-block;
  font-size: 0.7em;
  text-align: right;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  footer .container > div {
    display: block;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 30px;
  }
  footer .container > div:last-child {
    margin-bottom: 0;
  }
  footer .container.legal ul, footer .container.legal p {
    display: block !important;
    width: 100% !important;
    text-align: center;
  }
  footer .container.legal ul {
    line-height: 28px;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=layout.css.map */
