@font-face {
  font-family: "abc_gravity";
  src: url("../fonts/abcgravity-expanded-webfont.woff2") format("woff2"), url("../fonts/abcgravity-expanded-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "maaxitalic";
  src: url("../fonts/maax-italic-webfont.woff2") format("woff2"), url("../fonts/maax-italic-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;
  margin: 0;
  padding: 0;
}

body {
  background: #F2E6D4;
}

.container {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.container-full {
  max-width: inherit;
  border: 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 760px) {
  .container {
    padding: 0 15px;
    width: 90%;
  }
}

.white-space .container {
  padding: 5px 0;
}
@media (max-width: 760px) {
  .white-space {
    display: none;
  }
}

.img-full-width {
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.img-full-width.img-01 {
  background-image: url(../img/img-full-width-01.jpg);
}
.img-full-width.img-02 {
  background-image: url(../img/img-full-width-02.jpg);
}
.img-full-width.img-03 {
  background-image: url(../img/img-content.jpg);
}
@media (max-width: 760px) {
  .img-full-width {
    height: 200px;
    background-size: 100% auto;
    background-attachment: inherit;
    background-position: inherit;
    background-position: center center;
  }
}

.cta {
  display: inline-block;
  border: 1px solid #000;
  padding: 18px 30px;
  color: #000;
  text-decoration: none;
  font-family: "abc_gravity";
  font-size: 12px;
  background: #F2E6D4;
  transition: all 0.5s ease-in-out;
}
.cta:hover {
  background: #000;
  color: #F2E6D4;
}

@media (max-width: 760px) {
  .title {
    display: none;
  }
}

h1 {
  text-align: center;
  font-family: "abc_gravity";
  font-size: 60px;
  letter-spacing: 2px;
  color: #000;
  padding: 20px 0;
  font-weight: normal;
}

h2 {
  font-family: "sigurd";
  font-weight: normal;
  line-height: 70px;
  font-size: 68px;
}
@media (max-width: 760px) {
  h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
h2 span {
  font-family: "abc_gravity";
}

h3 {
  text-align: left;
  font-family: "abc_gravity";
  font-size: 24px;
  letter-spacing: 2px;
  color: #000;
  padding: 0 0 20px 0;
  font-weight: bold;
}
@media (max-width: 760px) {
  h3 {
    font-size: 15px;
    font-weight: normal;
  }
}

h4 {
  width: 120px;
  height: 120px;
  background: #84CFEF;
  border-radius: 50%;
  text-align: center;
  font-family: "abc_gravity";
  font-size: 11px;
  padding-top: 50px;
  margin-bottom: 20px;
  position: relative;
  font-weight: normal;
}
h4:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  background: url(../img/svg/dispositif.svg) no-repeat center top 10px;
  background-size: 40% auto;
}
@media (max-width: 760px) {
  h4 {
    margin: 0 auto 20px auto;
  }
}

p {
  text-align: left;
  font-family: "maax";
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  color: #000;
  padding: 0 0 20px 0;
  font-weight: normal;
}
p strong {
  font-family: "maaxmedium";
}
@media (max-width: 760px) {
  p {
    font-size: 15px;
  }
}

ol {
  padding: 0 0 20px 0;
}
ol li {
  margin-left: 20px;
  list-style: decimal;
  text-align: left;
  font-family: "maax";
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  color: #000;
  font-weight: normal;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F2E6D4;
  z-index: 100;
}
.menu menu {
  display: flex;
  margin: 0 auto;
}
.menu li {
  width: 33.33%;
  list-style: none;
  text-align: center;
}
.menu li:nth-child(2) {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.menu li a {
  font-family: "abc_gravity";
  font-size: 12px;
  color: #000;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  padding: 50px 0 25px 0;
  transition: all 0.5s ease-in-out;
}
.menu li a:hover {
  background: #000;
  color: #F2E6D4;
}
@media (max-width: 760px) {
  .menu menu {
    display: block;
  }
  .menu menu li {
    width: 100% !important;
    border: 0 !important;
  }
  .menu menu li a {
    padding: 15px 0;
  }
}

.banner {
  margin-top: 93px;
  cursor: crosshair;
}
@media (max-width: 760px) {
  .banner {
    margin-top: 0;
  }
}
.banner .container {
  position: relative;
}
@media (max-width: 760px) {
  .banner .grey img {
    display: none;
  }
}
.banner .colored img {
  position: absolute;
  -webkit-mask-image: url(../img/svg/mask.svg);
  mask-image: url(../img/svg/mask.svg);
  -webkit-mask-size: 20%;
  mask-size: 20%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 760px) {
  .banner .colored img {
    -webkit-mask: inherit;
    mask: inherit;
    position: relative;
  }
}
.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile {
  display: none;
}
@media (max-width: 760px) {
  .mobile {
    display: block;
  }
}

@media (max-width: 760px) {
  .desktop {
    display: none;
  }
}

#dispositifs .r50-50,
#caserne .r50-50 {
  align-items: stretch;
}

.content {
  position: relative;
}
@media (max-width: 760px) {
  .content.desktop {
    display: none;
  }
}
.content .mobile, .content.mobile {
  display: none;
}
@media (max-width: 760px) {
  .content .mobile, .content.mobile {
    display: block;
  }
}
.content .no-padding {
  padding: 0;
}
.content .r50-50 {
  display: flex;
  align-items: center;
}
.content .r50-50.cambresis {
  align-items: stretch;
}
.content .r50-50 > div {
  width: 50%;
}
.content .r50-50 > div:first-child {
  border-right: 1px solid #000;
}
.content .r50-50.align-top {
  align-items: inherit;
}
@media (max-width: 760px) {
  .content .r50-50 {
    display: block;
  }
  .content .r50-50 > div {
    width: 100%;
  }
  .content .r50-50 > div:first-child {
    border: 0;
  }
  .content .r50-50.cambresis {
    padding: 0 !important;
  }
}
.content .r60-40 {
  display: flex;
  align-items: center;
}
.content .r60-40 > div:first-child {
  width: 65%;
  border-right: 1px solid #000;
}
.content .r60-40 > div:last-child {
  width: 40%;
}
@media (max-width: 550px) {
  .content .r60-40 > div:first-child {
    width: 50%;
  }
  .content .r60-40 > div:last-child {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .content .r60-40 {
    padding: 0;
    display: block;
  }
  .content .r60-40 > div {
    width: 100% !important;
  }
  .content .r60-40 > div:first-child {
    margin-bottom: 30px;
    border: 0;
  }
}
.content img {
  display: block;
  width: 100%;
  height: auto;
}
.content .residence {
  padding: 0 0 0 10px;
}
@media (max-width: 760px) {
  .content .residence {
    padding: 0 0 40px 0;
  }
  .content .residence br {
    display: none;
  }
  .content .residence h3 {
    padding-top: 40px;
  }
  .content .residence h2 {
    padding-bottom: 20px;
  }
}
@media (max-width: 760px) {
  .content .residence p {
    padding: 50px 30px 0 30px;
  }
}
.content .presentation-img {
  background: url(../img/img-content.jpg) no-repeat center center;
  background-position: cover;
  background-attachment: fixed;
  height: 450px;
}
.content .presentation {
  padding: 0 20px 40px 20px;
  text-align: center;
}
.content .presentation h3 {
  padding: 40px 0 60px 0;
  text-align: center;
  color: #5057EB;
}
@media (max-width: 760px) {
  .content .presentation h3 {
    padding: 20px 0 100px 0;
  }
}
@media (max-width: 520px) {
  .content .presentation h3 {
    padding: 20px 0 50px 0;
  }
}
.content .dispositifs {
  padding: 20px;
}
.content .dispositifs.bordered {
  padding-top: 90px;
  border-bottom: 1px solid #000;
  min-height: 440px;
}
.content .dispositifs h3 {
  letter-spacing: 1px;
  padding-bottom: 0;
}
.content .dispositifs h3.purple {
  color: #5057EB;
}
.content .dispositifs p {
  padding-bottom: 0;
}
@media (max-width: 760px) {
  .content .dispositifs {
    padding-top: 40px;
  }
  .content .dispositifs.bordered {
    border-right: 0 !important;
    min-height: inherit;
    padding: 30px 0;
  }
  .content .dispositifs h3 {
    font-size: 20px;
  }
  .content .dispositifs p {
    margin-top: 20px;
  }
}
.content .swiper-button-next,
.content .swiper-button-prev {
  width: 10px !important;
  color: #000 !important;
}
.content .quartier {
  padding: 0 20px;
  position: relative;
}
@media (max-width: 760px) {
  .content .quartier {
    padding: 20px 0 0 0;
  }
}
@media (max-width: 760px) {
  .content .quartier h2 {
    padding-bottom: 20px;
  }
  .content .quartier h3 {
    font-size: 20px;
    padding-bottom: 0;
  }
  .content .quartier h3 br {
    display: none;
  }
  .content .quartier p {
    width: 80%;
  }
  .content .quartier img {
    width: 250px;
    position: absolute;
    right: -35px;
    bottom: 0;
  }
  .content .quartier .cta {
    margin: 100px 0;
    font-size: 20px;
    padding: 15px 10px;
  }
}
@media (max-width: 420px) {
  .content .quartier img {
    width: 220px;
  }
  .content .quartier .cta {
    margin: 25px 0 175px 0;
  }
}
.content .desc img {
  width: 300px;
  margin: -40px 0 -1px 40px;
}
.content .desc .bordered {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  padding: 50px;
}
.content .desc .bordered p {
  padding: 0;
}
@media (max-width: 760px) {
  .content .desc img {
    margin: -40px 0 -1px 0;
  }
  .content .desc .bordered {
    position: relative;
    left: 15px;
    padding: 25px;
  }
}
.content .map {
  padding: 100px 40px;
}
.content .map h2, .content .map h3 {
  padding-bottom: 0;
}
@media (max-width: 760px) {
  .content .map {
    padding: 40px 0;
  }
  .content .map h2, .content .map h3 {
    text-align: center;
  }
}
.content .curieux {
  position: relative;
  top: 0 !important;
}
.content .curieux .cta {
  position: absolute;
  right: 10px;
  bottom: 20px;
}
.content .curieux img {
  width: 100%;
  margin: 0 auto;
}
.content .caserne {
  text-align: center;
}
.content .caserne img {
  position: relative;
  top: 73px;
  left: -1px;
  width: calc(100% + 3px);
}
.content .caserne p, .content .caserne h2 {
  text-align: left;
  padding: 50px 30px 0 30px;
}
.content .caserne .cta {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .content .caserne img {
    top: 96px;
  }
}
@media (max-width: 760px) {
  .content .caserne {
    text-align: left;
  }
  .content .caserne p {
    padding-top: 10px;
  }
  .content .caserne .cta {
    margin-left: 30px;
  }
  .content .caserne img {
    top: 34px;
  }
}
@media (max-width: 480px) {
  .content .caserne img {
    top: 29px;
  }
}
@media (max-width: 430px) {
  .content .caserne img {
    top: 26px;
  }
}
@media (max-width: 400px) {
  .content .caserne img {
    top: 24px;
  }
}
@media (max-width: 320px) {
  .content .caserne img {
    top: 19px;
  }
}
@media (max-width: 420px) {
  .content .caserne {
    text-align: center;
  }
  .content .caserne p, .content .caserne h2 {
    padding-left: 0;
  }
  .content .caserne .cta {
    margin-left: 0;
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content .pictos {
  padding: 60px 40px 40px 40px;
}
.content .pictos ul {
  display: flex;
}
.content .pictos ul li {
  width: 20%;
  list-style: none;
  text-align: center;
  font-family: "abc_gravity";
  font-size: 11px;
  color: #000;
}
.content .pictos ul li:first-child img {
  height: 70px;
  margin: 15px auto 35px auto;
}
.content .pictos ul li img {
  width: auto;
  height: 100px;
  margin: 0 auto 20px auto;
}
@media (max-width: 760px) {
  .content .pictos ul {
    flex-wrap: wrap;
  }
  .content .pictos ul li {
    margin: 0 auto 40px auto;
  }
  .content .pictos ul li:nth-child(1) {
    width: 33.33%;
  }
  .content .pictos ul li:nth-child(2) {
    width: 33.33%;
  }
  .content .pictos ul li:nth-child(3) {
    width: 33.33%;
  }
  .content .pictos ul li:nth-child(4) {
    width: 50%;
  }
  .content .pictos ul li:nth-child(5) {
    width: 50%;
  }
  .content .pictos ul li img {
    width: auto;
    height: 80px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 420px) {
  .content .pictos li {
    width: 50% !important;
  }
}
.content .no-border {
  border: 0 !important;
}

.form {
  padding: 40px;
}
@media (max-width: 760px) {
  .form {
    padding: 40px 20px;
  }
}
.form h2 {
  margin-bottom: 20px;
}
.form h2, .form h3 {
  text-align: center;
}
.form form {
  width: 80%;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
}
.form form > div:first-child {
  display: flex;
}
.form form > div:first-child > div {
  width: 50%;
}
@media (max-width: 760px) {
  .form form > div:first-child {
    display: block;
  }
  .form form > div:first-child > div {
    width: 100%;
  }
}
.form form label,
.form form legend {
  font-family: "abc_gravity";
  font-size: 12px;
  color: #000;
  display: block;
}
.form form label[for],
.form form legend[for] {
  font-family: "maax";
  display: inline;
  margin-left: 0;
  margin-right: 30px;
}
.form form label[for]:before,
.form form legend[for]:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #F2E6D4;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 10px;
  vertical-align: middle;
}
.form form label[for=form_wish_invest]:before, .form form label[for=form_wish_dwell]:before,
.form form legend[for=form_wish_invest]:before,
.form form legend[for=form_wish_dwell]:before {
  border-radius: 50%;
}
.form form label[for=form_rgpd],
.form form legend[for=form_rgpd] {
  margin-top: 5px;
}
.form form label a,
.form form legend a {
  color: #000;
  text-decoration: none;
}
.form form label a:hover,
.form form legend a:hover {
  text-decoration: underline;
}
.form form legend {
  padding-bottom: 10px;
}
.form form .form-item {
  padding-bottom: 30px;
}
.form form input[type=text],
.form form input[type=email] {
  border: 0;
  border-bottom: 1px solid #000;
  font-family: "abc_gravity";
  font-size: 12px;
  color: #000;
  width: 80%;
  background: #F2E6D4;
  outline: none;
}
@media (max-width: 760px) {
  .form form input[type=text],
.form form input[type=email] {
    width: 100%;
  }
}
.form form textarea {
  border: 0;
  border-bottom: 1px solid #000;
  font-family: "abc_gravity";
  font-size: 12px;
  color: #000;
  width: 100%;
  height: 101px;
  line-height: 25px;
  background: #F2E6D4;
  resize: none;
  outline: none;
  background: url(../img/textarea.png) repeat-x center left;
}
.form form input[type=radio],
.form form input[type=checkbox] {
  display: none;
}
.form form input[type=radio]:checked + label:before,
.form form input[type=checkbox]:checked + label:before {
  background: #000 !important;
}
.form form .cta {
  background: #F2E6D4;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.form form .cta:hover {
  background: #000;
  color: #F2E6D4;
}
@media (max-width: 760px) {
  .form form .cta {
    position: inherit;
    bottom: inherit;
    right: inherit;
    display: block;
    margin: 30px auto 0 auto;
  }
}
.form form .error input[type=text],
.form form .error input[type=email] {
  border-color: red;
}
.form form .error label {
  color: red;
}

.footer {
  background: #644548;
  border: 0;
}
.footer .container {
  border: 0;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
@media (max-width: 760px) {
  .footer .container {
    display: block;
    padding: 40px 20px 0 20px;
  }
  .footer .container > div {
    width: 100% !important;
  }
  .footer .container > div:nth-child(2) {
    border: 0 !important;
  }
}
.footer .container > div {
  width: 33.33%;
}
.footer .container > div:first-child {
  text-align: left;
}
.footer .container > div:first-child h2 {
  font-size: 30px;
}
.footer .container > div:first-child h2, .footer .container > div:first-child p, .footer .container > div:first-child a {
  color: white;
  font-family: "abc_gravity";
  font-weight: normal;
}
.footer .container > div:first-child h2 span, .footer .container > div:first-child p span, .footer .container > div:first-child a span {
  font-size: 12px;
  position: relative;
  top: -4px;
  display: inline-block;
}
.footer .container > div:first-child h2 span:before, .footer .container > div:first-child p span:before, .footer .container > div:first-child a span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  background: white;
  position: relative;
  top: -3px;
  margin: 0 5px;
}
.footer .container > div:first-child p {
  padding-top: 20px;
  font-size: 12px;
}
.footer .container > div:first-child a {
  text-decoration: none;
}
.footer .container > div:first-child a.tel {
  font-size: 26px;
}
@media (max-width: 760px) {
  .footer .container > div:first-child {
    text-align: center;
  }
  .footer .container > div:first-child h2 {
    font-size: 20px;
  }
  .footer .container > div:first-child p {
    text-align: center;
  }
  .footer .container > div:first-child a.tel {
    font-size: 20px;
  }
}
.footer .container > div:nth-child(2) {
  text-align: center;
  border-left: #F2E6D4 1px solid;
  border-right: #F2E6D4 1px solid;
  margin: 40px 0;
}
.footer .container > div:nth-child(2) img {
  width: 80%;
}
@media (max-width: 760px) {
  .footer .container > div:nth-child(2) img {
    width: 200px;
  }
}
.footer .container > div:last-child {
  text-align: right;
  overflow: hidden;
}
.footer .container > div:last-child a:first-child {
  position: relative;
  z-index: 10;
}
.footer .container > div:last-child a:first-child img {
  height: 80px;
  width: auto;
}
@media (max-width: 760px) {
  .footer .container > div:last-child a img {
    display: block !important;
    margin: 0 auto !important;
  }
}
.footer .legal a {
  color: white;
}
.footer .legal p {
  width: 100%;
  font-size: 10px;
  text-align: right;
  color: white;
}

.appear {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1), top 1.5s cubic-bezier(0.61, 1, 0.88, 1);
  position: relative !important;
  top: 50px;
}
@media (max-width: 760px) {
  .appear {
    opacity: 1;
    top: 0;
  }
}
.appear.animshow {
  opacity: 1;
  top: 0;
}
.appear.scaleAnim {
  opacity: 1;
  top: 0;
  overflow: hidden;
}
.appear.scaleAnim img {
  display: block;
  transform-origin: center;
  transform: scale(1.05);
  transition: transform 3s cubic-bezier(0.61, 1, 0.88, 1);
}
.appear.scaleAnim.animshow img {
  transform: scale(1);
}

.annonce {
  margin-top: 93px;
  background: #5057EB;
  padding: 5px 0;
  color: white;
  font-family: "maax";
  font-size: 14px;
  overflow: hidden;
}
@media (max-width: 760px) {
  .annonce {
    margin-top: 0;
  }
}
.annonce > div {
  width: 1000000px;
}
.annonce span {
  display: inline-block;
  animation: scrolling 30s linear infinite;
}

@keyframes scrolling {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1250px);
  }
}

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