/* ////////////////////////// VARS  ///// */
/* ////////////////////////// FONTS ///// */
@font-face {
  font-family: "Futura LT Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Futura LT Regular"), url("../fonts/FuturaLT.woff") format("woff");
}
@font-face {
  font-family: "Monument Extended";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/MonumentExtendedBold.woff2") format("woff2"), url("../fonts/MonumentExtendedBold.woff") format("woff");
}
/* ////////////////////////// BASE ///// */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Futura LT Regular", sans-serif;
  letter-spacing: 1px;
  color: #24378C;
  overflow-x: hidden;
}

.ontop {
  position: absolute;
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 720px) {
  .ontop {
    width: 175px;
    position: relative;
    top: inherit;
    right: inherit;
    margin: 30px auto 0 auto;
    display: block;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Monument Extended";
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2 {
  font-size: 1em;
}
@media screen and (max-width: 720px) {
  h2 {
    font-size: 0.8em;
  }
  h2 br {
    display: none;
  }
}

h3 {
  font-size: 0.8em;
}

p {
  font-size: 0.8em;
  margin: 0;
}

img {
  display: block;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-full {
  width: 100%;
  padding: 0 40px;
}

.button {
  border: 2px solid #29A2A2;
  color: #29A2A2;
  background: none;
  text-transform: uppercase;
  font-family: "Monument Extended";
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 15px;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.button:hover {
  background: #29A2A2;
  color: white;
}

.line {
  display: flex;
}
@media screen and (max-width: 780px) {
  .line {
    display: block;
  }
}
.line .col-3 {
  width: 25%;
}
@media screen and (max-width: 780px) {
  .line .col-3 {
    width: 100%;
  }
}
.line .col-4 {
  width: 33.33%;
}
@media screen and (max-width: 780px) {
  .line .col-4 {
    width: 100%;
  }
}
.line .col-6 {
  width: 50%;
}
@media screen and (max-width: 780px) {
  .line .col-6 {
    width: 100%;
  }
}
.line .col-8 {
  width: 66.66%;
}
@media screen and (max-width: 780px) {
  .line .col-8 {
    width: 100%;
  }
}
.line .col-9 {
  width: 75%;
}
@media screen and (max-width: 780px) {
  .line .col-9 {
    width: 100%;
  }
}

.disable {
  display: none;
}

/* ////////////////////////// IMPORT ///// */
.header > .s1.active {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  left: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-title {
  text-align: center;
  padding: 45px 0;
}
.header-title .logo {
  width: 200px;
  height: auto;
  margin: 0 auto 60px auto;
}
.header-title h2 {
  margin-bottom: 20px;
}
.header-banner {
  position: relative;
  margin-top: -10px;
}
.header-banner img {
  width: 100%;
  height: auto;
}
.header-banner img.hb-building {
  position: absolute;
  z-index: 50;
}
.header-banner.active .s1 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -120px;
  left: -50px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.2s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s2 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -120px;
  left: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.4s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s3 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -120px;
  right: -50px;
  border: 5px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.2s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s4 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -25px;
  left: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s5 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -25px;
  right: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.5s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s6 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 70px;
  left: 140px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.6s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s7 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 70px;
  right: 140px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.6s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s8 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 165px;
  left: 235px;
  border: 5px solid #29A2A2;
  border-radius: 12px;
  animation: moveLeft 0.8s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s9 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 165px;
  right: 235px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.8s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s10 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 165px;
  right: 140px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.7s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s11 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 260px;
  right: 140px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.6s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s12 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 355px;
  left: 140px;
  border: 5px solid #EF8239;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s13 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 355px;
  right: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.6s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.header-banner.active .s14 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 450px;
  left: -50px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.header-banner.active .s15 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 450px;
  left: 45px;
  border: 5px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
@media screen and (max-width: 820px) {
  .header-banner.active .s2 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .header-banner.active .s1 {
    display: none;
  }
  .header-banner.active .s3 {
    display: none;
  }
  .header-banner.active .s4 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -25px;
    left: -25px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveLeft 0.5s ease-in-out forwards;
  }
  @keyframes moveLeft {
    from {
      top: -50px;
      left: -200px;
    }
  }
  .header-banner.active .s5 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -25px;
    right: -25px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.5s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s6 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 70px;
    left: 80px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveLeft 0.6s ease-in-out forwards;
  }
  @keyframes moveLeft {
    from {
      top: -50px;
      left: -200px;
    }
  }
  .header-banner.active .s7 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 70px;
    right: 80px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.6s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s8 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 165px;
    left: 175px;
    border: 5px solid #29A2A2;
    border-radius: 12px;
    animation: moveLeft 0.8s ease-in-out forwards;
  }
  @keyframes moveLeft {
    from {
      top: -50px;
      left: -200px;
    }
  }
  .header-banner.active .s9 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 165px;
    right: 175px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.8s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s10 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 165px;
    right: 120px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.7s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s11 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 260px;
    right: 80px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.6s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s12 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 355px;
    left: 80px;
    border: 5px solid #EF8239;
    border-radius: 12px;
    animation: moveLeft 0.5s ease-in-out forwards;
  }
  @keyframes moveLeft {
    from {
      top: -50px;
      left: -200px;
    }
  }
  .header-banner.active .s13 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 355px;
    right: -25px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveRight 0.6s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s14 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 450px;
    left: -110px;
    border: 5px solid #24378C;
    border-radius: 12px;
    animation: moveLeft 0.5s ease-in-out forwards;
  }
  @keyframes moveLeft {
    from {
      top: -50px;
      left: -200px;
    }
  }
  .header-banner.active .s15 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header > .s1.active {
    display: none;
  }
  .header-title {
    padding: 45px 20px;
  }
  .header-banner.active .s10 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 165px;
    right: 120px;
    border: 5px solid #EF8239;
    border-radius: 12px;
    animation: moveRight 0.7s ease-in-out forwards;
  }
  @keyframes moveRight {
    from {
      top: 50px;
      right: -200px;
    }
  }
  .header-banner.active .s12 {
    display: none;
  }
  .header-banner.active .s13 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header-banner.active > div {
    display: none;
  }
}

.grande-construction .animated-title {
  transform: translateY(-40px);
}
.grande-construction .animated-title .content {
  display: flex;
  transform: translateZ(0) rotate(0.1deg);
  overflow-x: hidden;
  width: 100%;
}
.grande-construction .animated-title .content .text {
  pointer-events: none;
  padding: 0 40px;
  font-size: 120px;
  font-weight: normal;
  animation: animTitle 10s linear infinite;
  text-transform: uppercase;
}
.grande-construction .animated-title .content .text img {
  height: 80px;
  width: auto;
}
@keyframes animTitle {
  0% {
    transform: translate3d(0, 0.125px, 0.125px) rotate(-0.01deg);
  }
  100% {
    transform: translate3d(-100%, -0.125px, -0.125px) rotate(-0.01deg);
  }
}
.grande-construction h2 {
  padding: 60px 0 75px 0;
  text-align: center;
}
.grande-construction h3 {
  color: #29A2A2;
  padding-bottom: 15px;
}
.grande-construction ul {
  display: flex;
  padding: 0 40px;
  margin: 0;
  padding-bottom: 150px;
}
.grande-construction ul li {
  list-style: none;
  width: 33.33%;
  padding-right: 5%;
}
@media screen and (max-width: 780px) {
  .grande-construction ul {
    display: block;
    text-align: center;
  }
  .grande-construction ul li {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .grande-construction ul li:last-child {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .grande-construction ul li {
    width: 100%;
  }
}
.grande-construction-img {
  border: 2px solid #24378C;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.grande-construction-img img {
  width: 100%;
  height: auto;
}
.grande-construction .square-block {
  position: absolute;
  z-index: 100;
}
.grande-construction .square-block.active .s1 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -97px;
  left: 211px;
  border: 3px solid #29A2A2;
  border-radius: 12px;
  animation: moveLeft 0.9s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s2 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 117px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.8s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s3 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  left: 97px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.5s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s4 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  left: 174px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.9s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s5 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: -40px;
  border: 3px solid #29A2A2;
  border-radius: 12px;
  animation: moveLeft 0.2s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s6 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 77px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.6s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s7 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 154px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.8s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s8 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 231px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 1.2s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s9 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  left: -20px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.6s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s10 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  left: 57px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.7s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s11 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  left: 134px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 0.8s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block.active .s12 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  left: 211px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveLeft 1s ease-in-out forwards;
}
@keyframes moveLeft {
  from {
    top: -50px;
    left: -200px;
  }
}
.grande-construction .square-block > div {
  opacity: 0.8;
  transition: transform 0.2s ease-in-out;
}
.grande-construction .square-block > div:hover {
  transform: scale(1.1) rotateY(180deg);
  opacity: 0.4;
}

.vivre-au-grand-bleu .animated-title {
  transform: translateY(-40px);
}
.vivre-au-grand-bleu .animated-title .content {
  display: flex;
  transform: translateZ(0) rotate(0.1deg);
  overflow-x: hidden;
  width: 100%;
}
.vivre-au-grand-bleu .animated-title .content .text {
  pointer-events: none;
  padding: 0 40px;
  font-size: 120px;
  font-weight: normal;
  animation: animTitle 10s linear infinite;
  text-transform: uppercase;
}
.vivre-au-grand-bleu .animated-title .content .text img {
  height: 80px;
  width: auto;
}
@keyframes animTitle {
  0% {
    transform: translate3d(0, 0.125px, 0.125px) rotate(-0.01deg);
  }
  100% {
    transform: translate3d(-100%, -0.125px, -0.125px) rotate(-0.01deg);
  }
}
.vivre-au-grand-bleu h2 {
  text-align: center;
  padding: 60px 0 75px 0;
}
.vivre-au-grand-bleu-img {
  border: 2px solid #24378C;
  border-radius: 20px;
  overflow: hidden;
}
.vivre-au-grand-bleu-img img {
  width: 100%;
  height: auto;
}
.vivre-au-grand-bleu .line.last {
  padding-top: 20px;
}
.vivre-au-grand-bleu .line.last h2 {
  padding: 130px 0 0 0;
  width: 95%;
  text-align: center;
  float: left;
}
@media screen and (max-width: 780px) {
  .vivre-au-grand-bleu .line.last h2 {
    padding: 30px 0;
  }
}
.vivre-au-grand-bleu-icons {
  padding: 100px 0 75px 0;
  margin: 0;
  text-align: center;
}
.vivre-au-grand-bleu-icons li {
  width: 250px;
  display: inline-block;
  font-size: 0.8em;
  color: #9D609F;
  vertical-align: top;
  font-family: "Monument Extended";
}
.vivre-au-grand-bleu-icons li img {
  width: auto;
  height: 65px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .vivre-au-grand-bleu-icons {
    padding-top: 50px;
  }
  .vivre-au-grand-bleu-icons li {
    width: 100%;
    padding-bottom: 30px;
  }
}
.vivre-au-grand-bleu .square-block {
  position: absolute;
  z-index: 100;
}
.vivre-au-grand-bleu .square-block.first {
  width: 60%;
  max-width: 620px;
}
.vivre-au-grand-bleu .square-block.first.active .s1 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: 67px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.first.active .s2 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: -10px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.first.active .s3 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: 47px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.first.active .s4 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: -30px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.first.active .s5 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: -50px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.first.active .s6 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  right: -70px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
@media screen and (max-width: 780px) {
  .vivre-au-grand-bleu .square-block.first {
    width: 100%;
  }
}
.vivre-au-grand-bleu .square-block.second {
  width: 100%;
  max-width: 1040px;
}
.vivre-au-grand-bleu .square-block.second.active .s0 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -177px;
  right: 20px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.3s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s1 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -157px;
  right: 40px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.2s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s2 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -137px;
  right: 137px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.4s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s3 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -137px;
  right: 60px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.3s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s4 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -100px;
  right: 331px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 1s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s5 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: 311px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.8s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s6 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: 234px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.7s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s7 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: 157px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.6s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s8 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: 80px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.5s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s9 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: 291px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s10 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: 214px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.7s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s11 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: 137px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.6s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s12 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -60px;
  right: 60px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.5s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s13 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: 194px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.9s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s14 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: 117px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.7s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s15 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: 40px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.5s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s16 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  right: 97px;
  border: 3px solid #9D609F;
  border-radius: 12px;
  animation: moveRight 0.3s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block.second.active .s17 {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -20px;
  right: 20px;
  border: 3px solid #24378C;
  border-radius: 12px;
  animation: moveRight 0.1s ease-in-out forwards;
}
@keyframes moveRight {
  from {
    top: 50px;
    right: -200px;
  }
}
.vivre-au-grand-bleu .square-block > div {
  opacity: 0.8;
  transition: transform 0.2s ease-in-out;
}
.vivre-au-grand-bleu .square-block > div:hover {
  transform: scale(1.1) rotateY(180deg);
  opacity: 0.4;
}

.projet-marina {
  padding: 0 0 75px 0;
}
.projet-marina .animated-title {
  transform: translateY(-40px);
}
.projet-marina .animated-title .content {
  display: flex;
  transform: translateZ(0) rotate(0.1deg);
  overflow-x: hidden;
  width: 100%;
}
.projet-marina .animated-title .content .text {
  pointer-events: none;
  padding: 0 40px;
  font-size: 120px;
  font-weight: normal;
  animation: animTitle 10s linear infinite;
  text-transform: uppercase;
}
.projet-marina .animated-title .content .text img {
  height: 80px;
  width: auto;
}
@keyframes animTitle {
  0% {
    transform: translate3d(0, 0.125px, 0.125px) rotate(-0.01deg);
  }
  100% {
    transform: translate3d(-100%, -0.125px, -0.125px) rotate(-0.01deg);
  }
}
.projet-marina > .container {
  padding-top: 60px;
}
.projet-marina h3 {
  color: #EF8239;
  padding-bottom: 15px;
}
@media screen and (max-width: 920px) {
  .projet-marina h3 {
    padding-bottom: 5px;
    font-size: 0.7em;
  }
}
@media screen and (max-width: 780px) {
  .projet-marina h3 {
    padding-bottom: 15px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 920px) {
  .projet-marina p {
    font-size: 0.7em;
    line-height: 14px;
  }
}
@media screen and (max-width: 780px) {
  .projet-marina p {
    font-size: 0.8em;
    line-height: 16px;
  }
}
.projet-marina .line .border {
  border: 2px solid #EF8239;
  border-radius: 15px;
  overflow: hidden;
}
.projet-marina .line img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 780px) {
  .projet-marina .line > div {
    margin: 20px 0;
  }
}
.projet-marina .line > div:nth-child(2) {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .projet-marina .line > div:nth-child(2) {
    padding: 40px 30px;
  }
}

.contact {
  padding-bottom: 75px;
}
.contact h2, .contact h3 {
  text-align: center;
}
.contact h2 {
  padding: 75px 0 15px 0;
}
.contact h3 {
  padding-bottom: 75px;
}
.contact-thanks, .contact-sorry {
  display: none;
}
.contact-form {
  padding: 0 15%;
  font-family: "Futura LT Regular", sans-serif;
  font-size: 0.8em;
}
.contact-form img {
  width: 100%;
  height: auto;
}
.contact-form .line > div:first-child {
  padding-right: 20px;
}
.contact-form .line > div:last-child {
  padding-left: 20px;
}
.contact-form .line:last-child {
  padding-top: 20px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #24378C;
  color: #24378C;
  margin: 0;
  padding: 10px 0;
  outline: none;
  margin-bottom: 20px;
  border-radius: 0;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form textarea::placeholder {
  color: #24378C;
  opacity: 1;
}
.contact-form input[type=text].error,
.contact-form input[type=email].error,
.contact-form textarea.error {
  border-color: red;
}
.contact-form .error-widgets legend,
.contact-form .error-widgets label {
  color: red;
}
.contact-form textarea {
  resize: none;
  height: 120px;
}
.contact-form legend {
  padding: 0 0 5px 0;
}
.contact-form input[type=radio],
.contact-form input[type=checkbox] {
  display: none;
}
.contact-form input[type=radio] + label,
.contact-form input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  margin-left: 30px;
}
.contact-form input[type=radio] + label:before,
.contact-form input[type=checkbox] + label:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #EAEAEA;
  position: relative;
  top: 5px;
  margin-right: 10px;
  border-radius: 50%;
}
.contact-form input[type=radio]:checked + label:after,
.contact-form input[type=checkbox]:checked + label:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #24378C;
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 50%;
}
.contact-form input[type=checkbox] + label {
  margin-left: 0;
}
.contact-form input[type=checkbox] + label a {
  color: #24378C;
}
.contact-form input[type=checkbox] + label a:hover {
  text-decoration: none;
}
.contact-form input[type=checkbox] + label:before {
  background: white;
  position: relative;
  top: 5px;
  margin-right: 10px;
  margin-bottom: 50px;
  border-radius: 0;
  border: 1px solid #24378C;
  float: left;
}
.contact-form input[type=checkbox]:checked + label:after {
  top: 8px;
  left: -28px;
  border-radius: 0;
}
.contact-form .button {
  float: right;
}
@media screen and (max-width: 780px) {
  .contact-form {
    padding: 0;
  }
  .contact-form .line > div:first-child {
    padding-right: 0;
  }
  .contact-form .line > div:last-child {
    padding-left: 0;
  }
  .contact-form .button {
    margin-top: 30px;
    float: inherit;
    position: relative;
    left: -30px;
  }
}

.footer {
  padding: 40px 0 20px 0;
  background: #24378C;
}
.footer-address {
  padding-top: 30px;
  color: white;
  font-family: "Monument Extended";
  font-size: 0.8em;
}
.footer-logo img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
.footer-logo a {
  cursor: pointer;
}
.footer-contact {
  text-align: right;
  color: white;
  font-family: "Monument Extended";
  font-size: 0.8em;
}
.footer-contact a {
  color: white;
  text-decoration: none;
}
.footer-contact img {
  width: 75px;
  height: auto;
  display: inline-block;
  margin: 15px 0;
}
.footer-contact span {
  font-family: "Futura LT Regular", sans-serif;
  font-size: 9px;
}
@media screen and (max-width: 780px) {
  .footer {
    padding-top: 0;
  }
  .footer-address {
    text-align: center;
    padding-bottom: 30px;
  }
  .footer-contact {
    text-align: center;
    padding-top: 30px;
  }
}

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