@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.woff2") format("woff2"), url("../fonts/roboto.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/roboto-mono.woff2") format("woff2"), url("../fonts/roboto-mono.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Italic";
  src: url("../fonts/roboto-italic.woff2") format("woff2"), url("../fonts/roboto-italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Signo Bold";
  src: url("../fonts/signo-bold.woff2") format("woff2"), url("../fonts/signo-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Acta Italic";
  src: url("../fonts/acta-italic.woff2") format("woff2"), url("../fonts/acta-italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  padding: 0;
  margin: 0;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 13px;
  }
}
@media screen and (max-width: 990px) {
  body {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
  position: relative;
}

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

h1 {
  margin: 0;
}

h2 {
  font-family: "Signo Bold", sans-serif;
  font-weight: normal;
  font-size: 3.12em;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #003B2B;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: normal;
  font-size: 1.56em;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #003B2B;
}

h4 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: normal;
  color: #003B2B;
  font-size: 1.56em;
  line-height: 1.3em;
}

ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 780px) {
  ul {
    flex-direction: column;
  }
}
ul li {
  width: calc(33.33% - 20px);
  font-family: "Acta Italic", sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  line-height: 1.4em;
  margin-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 990px) {
  ul li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 780px) {
  ul li {
    width: 80%;
    margin: 0 auto;
  }
}
ul li em {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  text-decoration: underline;
}

p {
  font-family: "Acta Italic", sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  line-height: 1.4em;
}
p em {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  text-decoration: underline;
}

section, header, footer {
  overflow-x: hidden;
}

.hide {
  display: none;
}

.center {
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 780px) {
  .flex {
    flex-direction: column;
  }
}

.container {
  width: 100%;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 990px) {
  .container {
    max-width: 780px;
    padding: 0;
  }
}
@media screen and (max-width: 780px) {
  .container {
    padding: 0 48px;
  }
}
@media screen and (max-width: 780px) {
  .container {
    padding: 0 24px;
  }
}

.maincolor {
  background: #F1F2EA;
}

.secondarycolor {
  background: #003B2B;
}

.green {
  color: #C8D868;
}

.bluegreen {
  color: #00A67F;
}

.blue {
  color: #00AAB1;
}

.pink {
  color: #DFC3DF;
}

.anim {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 0.7s ease-in-out, transform 0.5s ease-in-out;
}
.anim.active {
  transform: translateY(0);
  opacity: 1;
}

.button {
  display: inline-block;
  border: 1px solid #003B2B;
  padding: 15px 25px;
  font-family: "Roboto Mono", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  transition: background 0.3s ease-in-out, color 0.5s ease-in-out;
  cursor: pointer;
}
.button:hover {
  background: #003B2B;
  color: #FFF;
}

.pin {
  position: absolute;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  border: 2px solid #003B2B;
  left: -40px;
  bottom: 20px;
  font-family: "Signo Bold", sans-serif;
  font-size: 2.87em;
  line-height: 1em;
  font-weight: normal;
  padding-top: 50px;
}
.pin em {
  font-family: "Roboto Italic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  line-height: 1em;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1280px) {
  .pin {
    bottom: 40px;
    left: 100px;
    width: 180px;
    height: 180px;
    background: #F1F2EA;
  }
}
@media screen and (max-width: 990px) {
  .pin {
    bottom: 150px;
    left: 60px;
  }
}
@media screen and (max-width: 780px) {
  .pin {
    display: none;
  }
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 48px;
  text-align: right;
  z-index: 10;
}
.navbar a {
  display: inline-block;
  vertical-align: middle;
}
.navbar a:last-child {
  position: relative;
  top: 2px;
  margin-left: 24px;
}
@media screen and (max-width: 990px) {
  .navbar {
    position: relative;
    background: #F1F2EA;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .navbar .button {
    margin-bottom: 30px;
  }
}

.announcement {
  position: fixed;
  top: calc(50% - 100px);
  left: 0;
  background: #000;
  z-index: 10;
  border: 0;
  color: #FFF;
  padding: 10px 20px;
  transform: rotate(90deg);
  transform-origin: bottom left;
  font-family: "Roboto Mono", sans-serif;
  font-size: 1.25em;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .announcement {
    display: none;
  }
}

.announcement-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.announcement-container {
  background: white url(../img/popup.png) no-repeat right top 40px;
  background-size: 340px auto;
  margin: 0 auto;
  max-width: 960px;
  top: 50vh;
  margin-top: -25vh;
  padding: 60px;
  border: 2px solid #003B2B;
}
@media screen and (max-width: 780px) {
  .announcement-container {
    background: #FFF;
    padding: 30px 20px;
  }
}
.announcement-container p {
  margin-top: 20px;
}
.announcement-container p.infos {
  font-family: "Roboto Mono", sans-serif;
}
.announcement-container:after {
  content: "Portes Ouvertes";
  background: #000;
  z-index: 10;
  border: 0;
  color: #FFF;
  padding: 10px 20px;
  transform: rotate(90deg);
  transform-origin: bottom left;
  font-family: "Roboto Mono", sans-serif;
  font-size: 1.25em;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: -47px;
  right: -197px;
}
.announcement-container .announcement-close {
  position: absolute;
  top: -3px;
  right: 0;
  background: black;
  cursor: pointer;
  border: 0;
  width: 30px;
  height: 30px;
}
.announcement-container .announcement-close:after {
  content: "x";
  color: white;
  font-size: 20px;
}

.header {
  text-align: center;
  padding: 35px 0;
}
.header .container > img {
  z-index: 10;
}
.header .inner-img {
  margin: 35px auto 40px auto;
  max-width: 990px;
}
@media screen and (max-width: 1440px) {
  .header .inner-img {
    max-width: 780px;
  }
}
.header .inner-img img {
  width: 100% !important;
  height: auto !important;
}
.header .inner-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  transform: translateX(0) translateY(0) rotate(0);
  transform-origin: center center;
  border: 0 solid #003B2B;
  transition: transform 1s ease-in-out;
}
.header .inner-img.active:before, .header .inner-img.first:before {
  transform: translateX(200px) translateY(-100px) rotate(-7deg);
}
@media screen and (max-width: 1440px) {
  .header .inner-img {
    max-width: 990px;
  }
}
@media screen and (max-width: 1280px) {
  .header .inner-img {
    max-width: 780px;
  }
}

section {
  padding: 65px 0 90px 0;
}
section h3 {
  font-family: "Signo Bold", sans-serif;
  font-weight: normal;
  font-size: 3.12em;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 480px) {
  section h3 {
    font-size: 2em;
  }
}
section.owner h2 {
  text-align: center;
  margin-bottom: 65px;
}
section.owner .owner-picto {
  display: block;
  margin: 0 auto 70px auto;
}
section.owner .container-full h3 {
  position: absolute;
  top: 250px;
  z-index: 10;
}
@media screen and (max-width: 1280px) {
  section.owner .container-full h3 {
    top: 175px;
  }
}
@media screen and (max-width: 990px) {
  section.owner .container-full h3 {
    top: 0;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
  }
}
section.owner .container-full.left .inner-img {
  margin-right: auto;
  max-width: 990px;
}
section.owner .container-full.left .inner-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  section.owner .container-full.left .inner-img {
    max-width: 780px;
  }
}
section.owner .container-full.left .inner-img img {
  width: 100% !important;
  height: auto !important;
}
section.owner .container-full.left .inner-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F1F2EA;
  transform: translateX(0) translateY(0) rotate(0);
  transform-origin: center center;
  border: 0 solid #003B2B;
  transition: transform 1s ease-in-out;
}
section.owner .container-full.left .inner-img.active:before, section.owner .container-full.left .inner-img.first:before {
  transform: translateX(180px) translateY(20px) rotate(7.7deg);
}
@media screen and (max-width: 1280px) {
  section.owner .container-full.left .inner-img {
    max-width: 700px;
  }
}
@media screen and (max-width: 990px) {
  section.owner .container-full.left .inner-img {
    max-width: 780px;
    margin: 0 auto;
  }
}
section.owner .container-full.left h3 {
  right: 0;
}
section.owner .container-full.right .inner-img {
  margin-left: auto;
  max-width: 990px;
}
section.owner .container-full.right .inner-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  section.owner .container-full.right .inner-img {
    max-width: 780px;
  }
}
section.owner .container-full.right .inner-img img {
  width: 100% !important;
  height: auto !important;
}
section.owner .container-full.right .inner-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  transform: translateX(0) translateY(0) rotate(0);
  transform-origin: center center;
  border: 1px solid #003B2B;
  transition: transform 1s ease-in-out;
}
section.owner .container-full.right .inner-img.active:before, section.owner .container-full.right .inner-img.first:before {
  transform: translateX(-100px) translateY(0) rotate(-5.8deg);
}
@media screen and (max-width: 1280px) {
  section.owner .container-full.right .inner-img {
    max-width: 700px;
  }
}
@media screen and (max-width: 990px) {
  section.owner .container-full.right .inner-img {
    max-width: 780px;
    margin: 0 auto;
  }
}
section.owner .container > .left {
  padding-top: 45px;
  max-width: 360px;
}
@media screen and (max-width: 780px) {
  section.owner .container > .left {
    margin: 0 auto;
    max-width: 780px;
    padding-top: 30px;
  }
  section.owner .container > .left .button {
    background: #FFF;
  }
}
section.owner .container > .left h3 {
  margin-bottom: 50px;
}
section.owner .container > .left .button {
  margin-top: 60px;
}
section.owner .container > .inner-img {
  margin: 55px auto 0 auto;
  max-width: 990px;
}
section.owner .container > .inner-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  section.owner .container > .inner-img {
    max-width: 780px;
  }
}
section.owner .container > .inner-img img {
  width: 100% !important;
  height: auto !important;
}
section.owner .container > .inner-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  transform: translateX(0) translateY(0) rotate(0);
  transform-origin: center center;
  border: 1px solid #003B2B;
  transition: transform 1s ease-in-out;
}
section.owner .container > .inner-img.active:before, section.owner .container > .inner-img.first:before {
  transform: translateX(200px) translateY(-120px) rotate(-10deg);
}
section.owner ul {
  padding: 60px 0 10px 0;
}
section.owner ul li {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  section.owner ul li {
    margin-bottom: 20px;
  }
}
section.live h3 {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1280px) {
  section.live h3 {
    margin-bottom: 50px;
  }
}
section.live .container-full.right .inner-img {
  overflow: hidden;
  margin-right: auto;
}
@media screen and (max-width: 990px) {
  section.live .container-full.right .inner-img {
    margin: 0 auto;
  }
}
section.live .container-full.right .inner-img img {
  margin-left: -50px;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  section.live .container-full.right .inner-img {
    max-width: 800px;
  }
  section.live .container-full.right .inner-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1280px) {
  section.live .container-full.right .inner-img {
    max-width: 600px;
  }
}
section.live .container.txt > p {
  width: 400px;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 990px) {
  section.live .container.txt > p {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
}
section.live .container .img {
  margin-top: 90px;
  max-width: 560px;
}
@media screen and (max-width: 1280px) {
  section.live .container .img {
    max-width: 500px;
  }
  section.live .container .img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 990px) {
  section.live .container .img {
    max-width: 780px;
    margin: 0;
  }
}
section.live .container .bordered {
  width: 775px;
  height: 580px;
  background: url(../img/border.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -200px;
  right: 0;
  padding: 165px 110px 0 180px;
  text-align: center;
}
section.live .container .bordered h4 {
  margin-bottom: 40px;
}
section.live .container .bordered p {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.5em;
}
@media screen and (max-width: 1280px) {
  section.live .container .bordered {
    width: 500px;
    height: 370px;
    padding: 95px 75px 0 115px;
  }
  section.live .container .bordered h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  section.live .container .bordered p {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 990px) {
  section.live .container .bordered {
    position: relative;
    top: 0;
    margin: 0 auto;
    margin-top: -50px;
    width: 650px;
    height: 580px;
    padding: 135px 110px 0 180px;
  }
  section.live .container .bordered h4 {
    font-size: 1.56em;
    margin-bottom: 40px;
  }
  section.live .container .bordered p {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 780px) {
  section.live .container .bordered {
    padding: 0;
    background: none;
    width: auto;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
section.city .left {
  position: absolute;
  max-width: 500px;
}
section.city .left h3 {
  margin-bottom: 55px;
}
section.city .left p {
  max-width: 300px;
}
@media screen and (max-width: 780px) {
  section.city .left {
    position: relative;
    max-width: inherit;
  }
  section.city .left p {
    max-width: inherit;
  }
}
section.city .inner-img img {
  margin-top: -70px;
}
@media screen and (max-width: 1280px) {
  section.city .inner-img {
    max-width: 800px;
    margin-left: auto;
  }
  section.city .inner-img img {
    width: 100%;
    height: auto;
    z-index: -1;
  }
}
@media screen and (max-width: 780px) {
  section.city .inner-img {
    display: none;
  }
}
section.city .frame {
  border: 1px solid #003B2B;
  background: #FFF;
  margin: -140px 80px 0 80px;
  padding: 40px 100px 20px 50px;
}
section.city .frame .flex > div {
  width: 50%;
}
section.city .frame .flex > div ul {
  flex-direction: column;
}
section.city .frame .flex > div ul li {
  list-style: none;
  width: auto;
  font-family: "Roboto Mono", sans-serif;
  font-size: 1.56;
  padding-left: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 780px) {
  section.city .frame .flex > div ul li {
    margin: 0 0 40px 20px !important;
  }
}
section.city .frame .flex > div ul li span {
  font-family: "Signo Bold", sans-serif;
  font-size: 2em;
  position: absolute;
  top: 20px;
  left: 0;
}
section.city .frame .flex > div ul li em {
  font-family: "Roboto", sans-serif;
  font-size: 0.8em;
  display: block;
}
section.city .frame .flex > div:first-child ul li {
  margin-left: 40%;
}
section.city .frame .flex > div:last-child {
  padding-top: 30px;
  margin-left: 30px;
  width: calc(50% - 30px);
}
section.city .frame .pin {
  width: 200px;
  height: 200px;
  left: inherit;
  right: -100px;
  top: calc(50% - 100px);
  text-align: center;
  background: #FFF;
}
section.city .frame .pin em {
  display: block;
  top: 0;
}
@media screen and (max-width: 990px) {
  section.city .frame .pin {
    width: 150px;
    height: 150px;
    top: calc(50% - 75px);
    padding-top: 25px;
  }
}
@media screen and (max-width: 780px) {
  section.city .frame .pin {
    display: none;
  }
}
section.city .frame .legal {
  font-family: "Roboto", sans-serif;
  font-size: 0.75em;
}
@media screen and (max-width: 990px) {
  section.city .frame {
    padding: 30px 20px;
  }
  section.city .frame .flex {
    flex-direction: column;
  }
  section.city .frame .flex > div {
    width: 100%;
  }
  section.city .frame .flex > div:first-child ul li {
    margin-left: 20px;
  }
  section.city .frame .flex > div:last-child {
    padding-top: 0;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  section.city .frame {
    margin: 30px 0 0 0;
  }
}

.form {
  padding: 0 0 60px 0;
}
.form h2 {
  font-family: "Roboto Mono", sans-serif;
  font-size: 1.56em;
  margin-bottom: 10px;
}
.form h3 {
  font-family: "Acta Italic", sans-serif;
  font-size: 1.25em;
}
.form form {
  justify-content: space-between;
  width: 80%;
  margin: 75px auto 0 auto;
}
@media screen and (max-width: 480px) {
  .form form {
    width: 100%;
    margin-top: 30px;
  }
}
.form form > div {
  width: 42%;
}
@media screen and (max-width: 780px) {
  .form form > div {
    width: 100%;
  }
}
.form form > div.flex {
  width: 100%;
  padding-top: 50px;
}
@media screen and (max-width: 780px) {
  .form form > div.flex {
    flex-direction: column;
  }
}
.form form > div.flex label {
  font-family: "Roboto", sans-serif !important;
}
.form form > div.flex label:after {
  top: 1px !important;
}
.form form > div.flex label a {
  color: #003B2B;
}
.form form > div.flex label a:hover {
  text-decoration: none;
}
@media screen and (max-width: 990px) {
  .form form > div.flex > div:first-child {
    width: 70%;
  }
}
@media screen and (max-width: 780px) {
  .form form > div.flex > div:first-child {
    width: 100%;
  }
}
.form form > div.flex > div:last-child {
  flex-grow: 1;
  text-align: right;
}
@media screen and (max-width: 780px) {
  .form form > div.flex > div:last-child {
    text-align: center;
  }
}
.form form input[type=text],
.form form input[type=email] {
  display: block;
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid #003B2B;
  font-family: "Roboto", sans-serif;
  font-size: 1.25;
  outline: none;
  margin-bottom: 30px;
}
.form form input[type=text]::placeholder,
.form form input[type=email]::placeholder {
  opacity: 1;
  text-decoration: underline;
}
.form form input[type=text].error,
.form form input[type=email].error {
  border-color: red;
}
.form form legend {
  font-family: "Roboto", sans-serif;
  font-size: 1.25;
  text-decoration: underline;
  margin-bottom: 10px;
}
.form form input[type=checkbox],
.form form input[type=radio] {
  display: none;
}
.form form input[type=checkbox] + label,
.form form input[type=radio] + label {
  font-family: "Acta Italic", sans-serif;
  font-size: 1.25;
  padding-right: 20px;
  cursor: pointer;
}
.form form input[type=checkbox] + label:before,
.form form input[type=radio] + label:before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid #003B2B;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.form form input[type=checkbox]:checked + label:after,
.form form input[type=radio]:checked + label:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  left: 3px;
  display: block;
  background: #003B2B;
}
.form form input[type=radio] + label:before {
  border-radius: 50%;
  border-color: #F1F2EA;
  background: #F1F2EA;
}
.form form input[type=radio]:checked + label:after {
  border-radius: 50%;
}
@media screen and (max-width: 780px) {
  .form form .wish {
    margin-top: 30px;
  }
}
.form form input[type=submit] {
  display: inline-block;
  border: 1px solid #003B2B;
  padding: 15px 50px;
  font-family: "Roboto Mono", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  background: #FFF;
  margin-left: auto;
  top: -10px;
  transition: background 0.3s ease-in-out, color 0.5s ease-in-out;
  cursor: pointer;
}
.form form input[type=submit]:hover {
  background: #003B2B;
  color: #FFF;
}
@media screen and (max-width: 780px) {
  .form form input[type=submit] {
    top: 0;
    margin-top: 30px;
  }
}

.footer {
  padding: 60px 0 40px 0;
}
.footer .flex {
  align-items: center;
  justify-content: center;
}
.footer .flex > div {
  width: 33.33%;
}
@media screen and (max-width: 780px) {
  .footer .flex > div {
    width: 100%;
    margin-bottom: 30px;
    text-align: center !important;
  }
  .footer .flex > div:last-child {
    margin-bottom: 0;
  }
}
.footer .flex > div:nth-child(2) {
  text-align: center;
}
.footer .flex > div:nth-child(2) p {
  font-family: "Roboto Mono", sans-serif;
  font-size: 1.56em;
  margin-top: 35px;
}
.footer .flex > div:nth-child(2) p a {
  color: #FFF;
  text-decoration: none;
}
.footer .flex > div:last-child {
  text-align: right;
}
.footer .flex > div:last-child a {
  font-family: "Signo Bold", sans-serif;
  font-size: 2.5em;
  color: #FFF;
  text-decoration: none;
}

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