html {
  font-size: 62.5%;
  color: #787878;
  /* font-size:10px;*/
}
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
s,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  text-decoration: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
  padding: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
body {
  background: #fff;
}
* {
  box-sizing: border-box;
}
.icon-fill > span,
.icon-fill > i {
  position: relative;
}
.icon-fill:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  background: #59b9ad;
  opacity: 0;
}
.icon-fill.force:before,
.icon-fill:hover:before {
  opacity: 1;
}
.icon-fill.force {
  color: white !important;
  font-weight: 600;
}
.icon-fill.force span {
  color: white !important;
}
.photo img {
  transition: opacity 500ms;
  opacity: 0;
}
.photo.loaded img {
  opacity: 1;
}
header {
  width: 100%;
  padding: 15px 25px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
header.fixed:before {
  transform: scaleY(1);
}
header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 500ms ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
  background: #59b9ad;
}
header .content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  position: relative;
}
header .content .logo a {
  color: #fff;
  position: relative;
  display: block;
  width: 120px;
  min-height: 40px;
}
header .content .logo a img {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -25%);
  width: 100%;
}
header .content .nav {
  display: none;
}
header .content > input[type="checkbox"] {
  display: none;
}
header .content nav {
  flex: 1;
}
header .content nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .content nav > ul > li {
  margin: 0 50px;
}
header .content nav > ul > li.resa a {
  padding: 15px 25px;
  background-color: #59b9ad;
}
header .content nav > ul > li > a {
  color: #fff;
  position: relative;
  transition: all 500ms;
  letter-spacing: 0.2rem;
}
header .content nav > ul > li > a:hover:before,
header .content nav > ul > li > a.active:before,
header .content nav > ul > li > a:hover:after,
header .content nav > ul > li > a.active:after {
  transform: translate(-50%) scaleY(1);
}
header .content nav > ul > li > a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 15px;
  transform: translate(-50%) scaleY(0);
  background: rgba(255, 255, 255, 0.75);
  transform-origin: bottom;
  transition: inherit;
}
header .content nav > ul > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 15px;
  transform: translate(-50%) scaleY(0);
  background: rgba(255, 255, 255, 0.75);
  transform-origin: top;
  transition: inherit;
}
header .content .book a {
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: block;
  position: relative;
  overflow: hidden;
}
header .content .book a:before {
  border-radius: 25px;
}
body.intern header:not(.fixed) {
  background: #fff;
}
body.intern header:not(.fixed) .content .nav label span {
  background: #59b9ad;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav label span {
  background: #fff;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav .book a:hover {
  color: #59b9ad;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav .book a:hover::before {
  background: white;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav > ul > li.resa a {
  background-color: white;
  color: #59b9ad;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav > ul > li > a {
  color: #fff;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav > ul > li > a:before,
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ nav > ul > li > a:after {
  background: #fff;
}
body.intern header:not(.fixed) .content input[type="checkbox"]:checked ~ .nav ~ .book a {
  color: #fff;
  border-color: #fff;
}
body.intern header:not(.fixed) .content .book a {
  border: 1px solid #59b9ad;
  color: #59b9ad;
  transition: all 500ms;
}
body.intern header:not(.fixed) .content .book a:hover {
  color: #fff;
}
body.intern header:not(.fixed) .content nav > ul > li > a {
  color: #444;
}
body.intern header:not(.fixed) .content nav > ul > li > a:after,
body.intern header:not(.fixed) .content nav > ul > li > a:before {
  background: #444;
}
@media screen and (max-width: 1600px) {
  header .content > nav > ul > li {
    margin: 0 25px;
  }
}
@media screen and (max-width: 1200px) {
  header {
    padding: 15px;
  }
  header .content .logo {
    position: relative;
    z-index: 5;
  }
  header .content .logo a {
    width: 100px;
  }
  header .content nav {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #59b9ad;
    transition: all 500ms ease-in-out;
    z-index: 0;
    display: flex;
    flex-direction: column;
  }
  header .content nav ul {
    margin-top: 75px;
    height: 100%;
    display: flex;
    flex-wrap: unset;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
  header .content nav ul li {
    display: flex;
    flex-wrap: wrap;
  }
  header .content nav ul li a {
    padding: 0;
    font-size: 14px;
  }
  header .content nav ul li > ul {
    position: relative;
    top: 0;
    width: 100%;
    display: block;
    opacity: 1;
    transform: unset;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    height: auto;
    padding: 0;
    margin-top: 10px;
  }
  header .content nav ul li > ul li {
    margin-bottom: 0;
    transform: translate(0, 8px);
    display: flex;
  }
  header .content nav ul li > ul li:last-child a {
    padding-bottom: 0;
  }
  header .content nav ul li > ul li a {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: transparent;
  }
  header .content nav ul li > ul li a:hover {
    padding-left: 0;
    background: transparent;
  }
  header .content nav ul li > ul li a:before {
    content: "";
    width: 25px;
    height: 1px;
    background: #59b9ad;
    margin-right: 10px;
  }
  header .content nav ul li a span {
    display: none;
  }
  header .content nav ul li a span.menu {
    display: block;
  }
  header .content input[type="checkbox"]:checked ~ nav {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  header .content input[type="checkbox"]:checked + .nav label span:nth-of-type(1) {
    transform: rotate(-45deg) translate(0, -2px);
  }
  header .content input[type="checkbox"]:checked + .nav label span:nth-of-type(2) {
    transform: scaleX(0);
  }
  header .content input[type="checkbox"]:checked + .nav label span:nth-of-type(3) {
    transform: rotate(45deg) translate(0, 2px);
  }
  header .content .book {
    position: relative;
    z-index: 5;
  }
  header .content .book a {
    font-size: 14px;
  }
  header .content .nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-right: 25px;
    position: relative;
    z-index: 5;
  }
  header .content .nav label {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
  }
  header .content .nav label span {
    width: 25px;
    height: 1px;
    background: #fff;
    margin: 3px 0;
    transition: all 500ms;
    transform-origin: right;
  }
  header .content .nav label span:nth-of-type(2) {
    transform-origin: left;
  }
}
@media screen and (max-width: 600px) {
  header .content nav > ul {
    overflow: auto;
    justify-content: flex-start;
  }
  header .content nav > ul::-webkit-scrollbar {
    width: 50px;
  }
  header .content nav > ul::-webkit-scrollbar-thumb {
    background-clip: content-box;
    border-right: 3px solid #fff;
  }
  header .content nav > ul::-webkit-scrollbar-track {
    border-right: solid 3px rgba(133, 133, 133, 0.2);
  }
  header .content nav > ul > li {
    margin-bottom: 25px;
  }
  header .content nav > ul > li > ul {
    margin-bottom: 17px;
  }
  header .content nav ul {
    margin-top: 80px;
  }
  header .content nav ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 800px), screen and (max-height: 600px) {
  header .content nav > ul {
    overflow: auto;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 0;
  }
  header .content nav > ul > li {
    margin-bottom: 50px;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  header .content .logo {
    animation: opacity 500ms ease-in-out both;
  }
  header .content nav,
  header .content .book {
    animation: opacity 500ms ease-in-out 500ms both;
  }
}
footer {
  background: #59b9ad;
}
footer .content {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 14px;
  position: relative;
}
footer .content .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  opacity: 0.2;
}
footer .content > .part {
  position: relative;
  z-index: 1;
}
footer .content a {
  color: #fff;
  transition: all 500ms;
}
footer .content a:hover {
  font-weight: bold;
}
footer .content .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex: 1;
}
footer .content .logo img {
  max-width: 200px;
}
footer .content .part {
  padding: 0 50px;
  flex: 1;
}
footer .content .part:nth-child(4) > ul > li {
  display: block;
}
footer .content .part ul .sub_menu {
  flex: 1 1 100%;
  margin-top: 5px;
}
footer .content .part ul .sub_menu li a {
  font-size: 12px;
}
footer .content .part ul .sub_menu li a:before {
  content: "- ";
}
footer .content .part:last-child ul li {
  margin-bottom: 15px;
}
footer .content .part:last-child ul li i {
  margin-right: 5px;
}
footer .content .part .title {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}
footer .content .part .title:after {
  margin: 25px 0;
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}
footer .content .part ul li {
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  line-height: 2.4rem;
}
footer .content .part ul li > .rs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  width: 100%;
  align-items: center;
}
footer .content .part ul li > .rs li {
  margin-right: 10px;
  width: auto;
}
footer .content .part ul li > .rs li a {
  padding: 8px;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  transition: all 500ms;
  min-width: 30px;
  justify-content: center;
}
footer .content .part ul li > .rs li a:hover {
  color: #59b9ad;
  background: #fff;
}
footer .content .part ul li strong {
  margin-right: 5px;
}
footer .content .part ul li img {
  max-width: 160px;
}
@media screen and (max-width: 1200px) {
  footer .content {
    padding: 25px;
    font-size: 1.2rem;
  }
  footer .content .part {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1024px) {
  footer .content .logo {
    padding: 25px;
    flex: 1 1 100%;
  }
  footer .content .logo img {
    max-height: 80px;
  }
  footer .content .part {
    padding: 25px;
  }
}
@media screen and (max-width: 800px) {
  footer .content .logo {
    padding: 12px 0;
  }
  footer .content .part {
    padding: 12px;
  }
  footer .content .part:nth-of-type(2) ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .content .part:nth-of-type(2) ul li {
    flex: 1 1 50%;
    padding-right: 15px;
  }
  footer .content .part:last-child {
    flex: 1 1 100%;
    text-align: center;
  }
  footer .content .part:last-child ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .content .part:last-child ul li {
    justify-content: center;
  }
}
@media screen and (max-width: 560px) {
  footer .content .part {
    padding: 12px;
    flex: 1 1 100%;
  }
  footer .content .part .title {
    text-align: center;
  }
  footer .content .part ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .content .part ul li {
    display: block;
    text-align: center;
  }
  footer .content .part ul li strong {
    display: block;
  }
  footer .content .part:nth-of-type(2) ul li {
    flex: 1 1 100%;
    padding-right: 0px;
  }
}
.zone.diapo {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.zone.diapo > .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 5;
}
.zone.diapo > .content .background {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70%;
  opacity: 0.5;
}
.zone.diapo > .content .big-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12rem;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  max-width: 800px;
  line-height: 1;
  text-align: center;
}
.zone.diapo > .content .title {
  text-align: center;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  margin-top: -70px;
  margin-bottom: 25px;
  /*&:after{
        content:"";
        display: block;
        width:300px;
        height:2px;
        background-color:#fff;
        margin:40px auto;
      }*/
}
.zone.diapo > .content .desc {
  max-width: 400px;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}
.zone.diapo > .content .bot-nav {
  position: relative;
  margin-top: 50px;
  cursor: pointer;
}
.zone.diapo > .content .bot-nav span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.zone.diapo > .content .bot-nav span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  box-sizing: border-box;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
}
.zone.diapo > .content .bot-nav span::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: '';
  margin-left: -9px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.zone.diapo .swiper-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.zone.diapo .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.zone.diapo .swiper-container .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.zone.diapo .swiper-button-prev,
.zone.diapo .swiper-button-next {
  background-image: unset;
  width: 60px;
  height: 15px;
  margin: 0;
  align-items: center;
  transition: all 500ms;
  left: 50px;
  cursor: pointer;
}
.zone.diapo .swiper-button-prev span,
.zone.diapo .swiper-button-next span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-45deg);
  transition: all 500ms;
}
.zone.diapo .swiper-button-prev span:before,
.zone.diapo .swiper-button-next span:before {
  width: 60px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left bottom;
  transition: inherit;
}
.zone.diapo .swiper-button-prev.swiper-button-next,
.zone.diapo .swiper-button-next.swiper-button-next {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.zone.diapo .swiper-button-prev:hover span,
.zone.diapo .swiper-button-next:hover span {
  background: #fff;
}
.zone.diapo .swiper-button-prev:hover span:before,
.zone.diapo .swiper-button-next:hover span:before {
  background: #fff;
  width: 100px;
}
@keyframes sdb10 {
  from {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
@media screen and (max-width: 1200px), (max-height: 800px) {
  .zone.diapo {
    height: auto;
    flex-direction: column-reverse;
  }
  .zone.diapo > .content {
    flex-direction: column-reverse;
    padding-bottom: 50px;
  }
  .zone.diapo > .content .background {
    display: none;
  }
  .zone.diapo > .content .bot-nav {
    display: none;
  }
  .zone.diapo > .content .zone.resa {
    margin-top: -30px;
    order: 1;
  }
  .zone.diapo > .content .title {
    font-size: 4rem;
    color: #000;
    margin-top: 50px;
    order: 1;
  }
  .zone.diapo > .content .desc {
    order: -1;
    color: #444;
  }
  .zone.diapo > .content .big-title {
    /*position:absolute;
        z-index:-1;
        width:100%;
        color:rgba(0,0,0,.05);
        top:50%;
        transform:translate(0,-60%);
        font-size:8rem;
        max-width:600px;*/
    display: none;
  }
  .zone.diapo .swiper-controls {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-height: 60vh;
    width: 100%;
  }
  .zone.diapo .swiper-container {
    position: relative;
    height: auto;
    max-height: 60vh;
  }
  .zone.diapo .swiper-container .swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
  .zone.diapo .swiper-container:after {
    content: "";
    display: block;
    padding-top: 75%;
  }
}
@media screen and (max-width: 800px) {
  zone.diapo > .content .title {
    font-size: 3rem;
  }
}
@keyframes titleAnim {
  from {
    opacity: 0;
    transform: translate(0, 50%);
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes descAnim {
  from {
    opacity: 0;
    transform: translate(0, -50%);
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes bigTitle {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes background {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
@media screen and (min-width: 1200px) {
  .zone.diapo {
    opacity: 0;
  }
  .zone.diapo.onFlux {
    opacity: 1;
  }
  .zone.diapo.onFlux .photo img {
    animation: bigTitle 2000ms ease-in-out both;
  }
  .zone.diapo.onFlux .content .resa .content {
    animation: titleAnim 2000ms ease-in-out 500ms both;
  }
  .zone.diapo.onFlux .content .background {
    animation: background 2000ms ease-in-out 1500ms both;
  }
  .zone.diapo.onFlux .content .big-title {
    animation: bigTitle 2000ms ease-in-out 1000ms both;
  }
  .zone.diapo.onFlux .content .title {
    animation: titleAnim 2000ms ease-in-out both;
  }
  .zone.diapo.onFlux .content .desc {
    animation: descAnim 2000ms ease-in-out both;
  }
  .zone.diapo.onFlux .content .bot-nav {
    animation: titleAnim 2000ms ease-in-out 1000ms both;
  }
  .zone.diapo.onFlux .swiper-button-prev,
  .zone.diapo.onFlux .swiper-button-next {
    animation: bigTitle 2000ms ease-in-out 1500ms both;
  }
}
.zone.resa {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  z-index: 5;
}
.zone.resa form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.zone.resa form ::placeholder {
  color: #fff;
  font-size: 14px;
}
.zone.resa form :-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.zone.resa form ::-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.zone.resa form .elt {
  flex: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10000;
}
.zone.resa form .elt:first-child > * {
  border-radius: 30px 0 0 30px;
}
.zone.resa form .elt:nth-of-type(4):after {
  content: unset;
}
.zone.resa form .elt input {
  color: #fff;
  border: 0;
  flex: 1;
  position: relative;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  background-color: #59b9ad;
  letter-spacing: 0.1rem;
  padding: 20px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  /*background-repeat:no-repeat;
        background-position:95% 50%;
        background-size:20px 20px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4NCiAgICA8cGF0aCBmaWxsPSIjYzA5Zjc0IiBkPSJNMjQgMTEuMzA1bC03Ljk5NyAxMS4zOUw4IDExLjMwNXoiLz4NCjwvc3ZnPg==")*/
}
.zone.resa form .elt select {
  color: #fff;
  border: 0;
  background-color: #59b9ad;
  flex: 1;
  position: relative;
  font-weight: 300;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1rem;
  padding: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-align: center;
  cursor: pointer;
  text-align-last: center;
  /*background-repeat:no-repeat;
        background-position:95% 50%;
        background-size:20px 20px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4NCiAgICA8cGF0aCBmaWxsPSIjYzA5Zjc0IiBkPSJNMjQgMTEuMzA1bC03Ljk5NyAxMS4zOUw4IDExLjMwNXoiLz4NCjwvc3ZnPg==");*/
}
.zone.resa form .elt select::-ms-expand {
  display: none;
}
.zone.resa form .elt:after {
  content: "";
  height: 20px;
  background: #fff;
  opacity: 0.5;
  width: 1px;
  position: absolute;
  right: 0;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10000;
}
.zone.resa form > input {
  background: #008a77;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 10000;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 500ms;
  font-size: 14px;
  letter-spacing: 0.1rem;
  border-radius: 0 30px 30px 0;
  font-weight: bold;
}
.zone.resa form > input:hover {
  background: #fff;
  color: #008a77;
}
.zone.diapo .zone.resa {
  margin-top: 50px;
}
@media screen and (max-width: 860px) {
  .zone.resa .content form {
    align-items: center;
    justify-content: center;
  }
  .zone.resa .content form > input {
    border-radius: 30px;
    flex: none;
    padding: 20px 35px;
  }
  .zone.resa .content form > .elt {
    display: none;
  }
}
.zone.texte_photo {
  position: relative;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.zone.texte_photo.subtype2 {
  flex-direction: row-reverse;
}
.zone.texte_photo.subtype2 > .content .desc {
  direction: rtl;
  align-items: flex-end;
}
.zone.texte_photo.subtype2 > .content .desc::-webkit-scrollbar-thumb {
  border-left: 3px solid #59b9ad;
  border-right: 0;
}
.zone.texte_photo.subtype2 > .content .desc::-webkit-scrollbar-track {
  border-left: solid 3px rgba(133, 133, 133, 0.2);
  border-right: 0;
}
.zone.texte_photo.subtype2 > .content .desc > * {
  direction: ltr;
}
.zone.texte_photo > .content {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777;
  position: relative;
  z-index: 5;
  background: #f4f4f4;
  padding: 75px;
  height: 100%;
  min-width: 550px;
}
.zone.texte_photo > .content .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.5);
}
.zone.texte_photo > .content .title {
  text-align: center;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
  color: #000;
  /*&:after{
        content:"";
        display: block;
        width:300px;
        height:2px;
        background-color:#fff;
        margin:40px auto;
      }*/
}
.zone.texte_photo > .content .desc {
  width: 100%;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 2.2rem;
  overflow: auto;
}
.zone.texte_photo > .content .desc::-webkit-scrollbar {
  width: 50px;
}
.zone.texte_photo > .content .desc::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border-right: 3px solid #59b9ad;
}
.zone.texte_photo > .content .desc::-webkit-scrollbar-track {
  border-right: solid 3px rgba(133, 133, 133, 0.2);
}
.zone.texte_photo > .content .btn {
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #777;
  color: #777;
  margin-top: 50px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}
.zone.texte_photo > .content .btn:hover {
  color: #fff;
  border-color: #59b9ad;
}
.zone.texte_photo > .content .btn:before {
  border-radius: 25px;
}
.zone.texte_photo .slider {
  width: 66.6%;
  position: relative;
  overflow: hidden;
  flex: 1;
}
.zone.texte_photo .slider .swiper-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.zone.texte_photo .slider .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.zone.texte_photo .slider .swiper-container .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.zone.texte_photo .slider .swiper-container .swiper-pagination {
  color: #fff;
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev,
.zone.texte_photo .slider .swiper-container .swiper-button-next {
  background-image: unset;
  width: 60px;
  height: 15px;
  margin: 0;
  align-items: center;
  transition: all 500ms;
  left: 50px;
  cursor: pointer;
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev span,
.zone.texte_photo .slider .swiper-container .swiper-button-next span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-45deg);
  transition: all 500ms;
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev span:before,
.zone.texte_photo .slider .swiper-container .swiper-button-next span:before {
  width: 60px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left bottom;
  transition: inherit;
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev.swiper-button-next,
.zone.texte_photo .slider .swiper-container .swiper-button-next.swiper-button-next {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev:hover span,
.zone.texte_photo .slider .swiper-container .swiper-button-next:hover span {
  background: #fff;
}
.zone.texte_photo .slider .swiper-container .swiper-button-prev:hover span:before,
.zone.texte_photo .slider .swiper-container .swiper-button-next:hover span:before {
  background: #fff;
  width: 100px;
}
@media screen and (max-width: 1200px), (max-height: 800px) {
  .zone.texte_photo {
    height: auto;
  }
  .zone.texte_photo > .content {
    width: 100%;
    height: auto;
    min-width: unset;
    padding: 50px 25px;
  }
  .zone.texte_photo > .content .title {
    font-size: 4rem;
  }
  .zone.texte_photo .slider {
    width: 100%;
    max-height: 550px;
    flex: 1 1 100%;
  }
  .zone.texte_photo .slider .swiper-pagination {
    color: #fff;
  }
  .zone.texte_photo .slider:after {
    content: "";
    padding-top: 75%;
    display: block;
  }
}
@media screen and (max-width: 800px) {
  zone.texte_photo > .content .title {
    font-size: 3rem;
  }
}
@keyframes clipSlider {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: unset;
    clip-path: unset;
  }
}
@keyframes title {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes text {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 1200px) {
  .zone.texte_photo {
    opacity: 0;
  }
  .zone.texte_photo.onFlux {
    opacity: 1;
  }
  .zone.texte_photo.onFlux .content .title,
  .zone.texte_photo.onFlux .content .btn {
    animation: title 1000ms ease-in-out both;
  }
  .zone.texte_photo.onFlux .content .desc {
    animation: text 1000ms ease-in-out both;
  }
  .zone.texte_photo.onFlux .slider {
    animation: clipSlider 1000ms ease-in-out both;
  }
}
.zone.multiple_link {
  position: relative;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #f4f4f4;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}
.zone.multiple_link .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.5);
}
.zone.multiple_link > .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777;
  position: relative;
  padding-top: 50px;
}
.zone.multiple_link > .content .title {
  text-align: center;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  color: #000;
  /*&:after{
        content:"";
        display: block;
        width:300px;
        height:2px;
        background-color:#fff;
        margin:40px auto;
      }*/
}
.zone.multiple_link > .content .desc {
  width: 100%;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 2.2rem;
  overflow: auto;
}
.zone.multiple_link > .content .desc::-webkit-scrollbar {
  width: 50px;
}
.zone.multiple_link > .content .desc::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border-right: 3px solid #59b9ad;
}
.zone.multiple_link > .content .desc::-webkit-scrollbar-track {
  border-right: solid 3px rgba(133, 133, 133, 0.2);
}
.zone.multiple_link > .content .btn {
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #777;
  color: #777;
  margin-top: 50px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}
.zone.multiple_link > .content .btn:hover {
  color: #fff;
  border-color: #59b9ad;
}
.zone.multiple_link > .content .btn:before {
  border-radius: 25px;
}
.zone.multiple_link .slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex: 1;
  padding-top: 50px;
}
.zone.multiple_link .slider .swiper-container {
  height: 100%;
}
.zone.multiple_link .slider .swiper-container.swiper-disabled .swiper-wrapper {
  justify-content: center;
}
.zone.multiple_link .slider .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 33.3%;
  padding: 0 10px;
  display: flex;
  flex-direction: column-reverse;
}
.zone.multiple_link .slider .swiper-container .swiper-slide .subtitle {
  text-align: center;
  font-size: 3rem;
  font-family: 'Crimson Text', serif;
  margin-top: 25px;
  color: #444;
}
.zone.multiple_link .slider .swiper-container .swiper-slide .photo {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.zone.multiple_link .slider .swiper-container .swiper-slide .photo > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.zone.multiple_link .slider .swiper-container .swiper-slide .photo img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.zone.multiple_link .slider .swiper-button-prev,
.zone.multiple_link .slider .swiper-button-next {
  background-image: unset;
  width: 60px;
  height: 15px;
  margin: 0;
  align-items: center;
  transition: all 500ms;
  left: 50px;
  cursor: pointer;
}
.zone.multiple_link .slider .swiper-button-prev span,
.zone.multiple_link .slider .swiper-button-next span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-45deg);
  transition: all 500ms;
}
.zone.multiple_link .slider .swiper-button-prev span:before,
.zone.multiple_link .slider .swiper-button-next span:before {
  width: 60px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left bottom;
  transition: inherit;
}
.zone.multiple_link .slider .swiper-button-prev.swiper-button-next,
.zone.multiple_link .slider .swiper-button-next.swiper-button-next {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.zone.multiple_link .slider .swiper-button-prev:hover span,
.zone.multiple_link .slider .swiper-button-next:hover span {
  background: #fff;
}
.zone.multiple_link .slider .swiper-button-prev:hover span:before,
.zone.multiple_link .slider .swiper-button-next:hover span:before {
  background: #fff;
  width: 100px;
}
@media screen and (max-width: 1200px), (max-height: 800px) {
  .zone.multiple_link {
    height: auto;
    flex-direction: row;
    padding: 50px 25px 0;
  }
  .zone.multiple_link > .content {
    width: 100%;
    height: auto;
    min-width: unset;
    padding: 0 25px 50px;
    flex: 1 1 100%;
  }
  .zone.multiple_link > .content .title {
    font-size: 4rem;
    padding-top: 0;
  }
  .zone.multiple_link .slider {
    width: 100%;
    flex: 1 1 100%;
    padding-top: 0;
  }
  .zone.multiple_link .slider .swiper-container {
    height: auto;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper {
    height: auto;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide .photo {
    height: auto;
    max-height: 500px;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide .photo:after {
    content: "";
    padding-top: 75%;
    display: block;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide .subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .zone.multiple_link > .content .title {
    font-size: 3rem;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper {
    flex-wrap: wrap;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    padding: 0;
    padding-bottom: 25px;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide .subtitle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    margin-top: 0;
    color: #fff;
    pointer-events: none;
  }
  .zone.multiple_link .slider .swiper-container .swiper-wrapper .swiper-slide .photo {
    max-height: 360px;
  }
}
@keyframes clipSlide {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  99% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: unset;
    clip-path: unset;
  }
}
@keyframes title {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 1200px) {
  .zone.multiple_link {
    opacity: 0;
  }
  .zone.multiple_link.onFlux {
    opacity: 1;
  }
  .zone.multiple_link.onFlux .content .title {
    animation: title 1000ms ease-in-out both;
  }
  .zone.multiple_link.onFlux .subtitle {
    animation: title 1000ms ease-in-out 1000ms both;
  }
  .zone.multiple_link.onFlux .photo {
    animation: clipSlide 1000ms ease-in-out 500ms both;
  }
}
body.intern header + .zones > .zone.texte_grande_photo:nth-of-type(1) {
  padding-top: 125px;
}
.zone.texte_grande_photo {
  position: relative;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 50px;
}
.zone.texte_grande_photo.subtype2 {
  flex-direction: row-reverse;
}
.zone.texte_grande_photo.subtype2 > .content .desc {
  direction: rtl;
  align-items: flex-end;
}
.zone.texte_grande_photo.subtype2 > .content .desc::-webkit-scrollbar-thumb {
  border-left: 3px solid #59b9ad;
  border-right: 0;
}
.zone.texte_grande_photo.subtype2 > .content .desc::-webkit-scrollbar-track {
  border-left: solid 3px rgba(133, 133, 133, 0.2);
  border-right: 0;
}
.zone.texte_grande_photo.subtype2 > .content .desc > * {
  direction: ltr;
}
.zone.texte_grande_photo > .content {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777;
  position: relative;
  z-index: 5;
  padding: 0 25px 65px;
  height: 100%;
  min-width: 550px;
}
.zone.texte_grande_photo > .content .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.5);
}
.zone.texte_grande_photo > .content .title {
  text-align: center;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
  color: #000;
  /*&:after{
        content:"";
        display: block;
        width:300px;
        height:2px;
        background-color:#fff;
        margin:40px auto;
      }*/
}
.zone.texte_grande_photo > .content .desc {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  overflow: auto;
}
.zone.texte_grande_photo > .content .desc::-webkit-scrollbar {
  width: 50px;
}
.zone.texte_grande_photo > .content .desc::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border-right: 3px solid #59b9ad;
}
.zone.texte_grande_photo > .content .desc::-webkit-scrollbar-track {
  border-right: solid 3px rgba(133, 133, 133, 0.2);
}
.zone.texte_grande_photo > .content .btn {
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #777;
  color: #777;
  margin-top: 50px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}
.zone.texte_grande_photo > .content .btn:hover {
  color: #fff;
  border-color: #59b9ad;
}
.zone.texte_grande_photo > .content .btn:before {
  border-radius: 25px;
}
.zone.texte_grande_photo .slider {
  width: 66.6%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1;
}
.zone.texte_grande_photo .slider .zone.resa .content {
  transform: translate(0, -50%);
}
.zone.texte_grande_photo .slider .zone.resa + .swiper-controls {
  padding-top: 0;
}
.zone.texte_grande_photo .slider .swiper-controls {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-pagination {
  width: auto;
  margin: 0 25px;
  position: relative;
  bottom: auto;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5rem;
  line-height: 0.5;
  color: #444;
  transform: translate(-60%);
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next {
  background-image: unset;
  width: 60px;
  height: 15px;
  margin: 0;
  align-items: center;
  transition: all 500ms;
  left: auto;
  cursor: pointer;
  position: relative;
  top: auto;
  display: flex;
  margin: 0 25px;
  opacity: 0.6;
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev span,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #444;
  border-left: 1px solid #444;
  transform: rotate(-45deg);
  transition: all 500ms;
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev span:before,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next span:before {
  width: 60px;
  content: "";
  background: #444;
  height: 2px;
  display: block;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left bottom;
  transition: inherit;
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev.swiper-button-next,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next.swiper-button-next {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev:hover span,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next:hover span {
  background: #444;
}
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev:hover span:before,
.zone.texte_grande_photo .slider .swiper-controls .swiper-button-next:hover span:before {
  background: #444;
}
.zone.texte_grande_photo .slider .swiper-container {
  width: 100%;
  height: 100%;
  flex: 1;
}
.zone.texte_grande_photo .slider .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.zone.texte_grande_photo .slider .swiper-container .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px), (max-height: 800px) {
  body.intern header + .zones > .zone.texte_grande_photo:nth-of-type(1) {
    padding-top: 70px;
  }
  .zone.texte_grande_photo {
    height: auto;
    flex-direction: column-reverse !important;
    padding-top: 0;
  }
  .zone.texte_grande_photo .content {
    width: 100%;
    min-width: unset;
  }
  .zone.texte_grande_photo > .content {
    padding: 50px 25px;
  }
  .zone.texte_grande_photo .slider {
    flex: 1 1 100%;
    width: 100%;
  }
  .zone.texte_grande_photo .slider .zone.resa .content {
    transform: unset;
    margin-top: -30px;
  }
  .zone.texte_grande_photo .slider .swiper-container {
    flex: none;
    height: auto;
    max-height: 60vh;
  }
  .zone.texte_grande_photo .slider .swiper-container .swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
  .zone.texte_grande_photo .slider .swiper-container:after {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .zone.texte_grande_photo .slider .swiper-controls {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-height: 60vh;
    display: block;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-pagination {
    display: none;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev {
    left: 25px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev:hover span {
    background: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev:hover span:before {
    background: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev span {
    border-color: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-prev span:before {
    background: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-next {
    right: 25px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%) rotate(180deg) !important;
    margin: 0;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-next:hover span {
    background: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-next:hover span:before {
    background: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-next span {
    border-color: #fff;
  }
  .zone.texte_grande_photo .slider .swiper-controls .swiper-button-next span:before {
    background: #fff;
  }
}
@media screen and (max-width: 800px) {
  zone.texte_grande_photo > .content .title {
    font-size: 3rem;
  }
}
@keyframes clipSlider {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes title {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes text {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes resa {
  from {
    opacity: 0;
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1200px) {
  .zone.texte_grande_photo {
    opacity: 0;
  }
  .zone.texte_grande_photo.onFlux {
    opacity: 1;
  }
  .zone.texte_grande_photo.onFlux .content .title,
  .zone.texte_grande_photo.onFlux .content .btn {
    animation: title 1000ms ease-in-out both;
  }
  .zone.texte_grande_photo.onFlux .content .desc {
    animation: text 1000ms ease-in-out both;
  }
  .zone.texte_grande_photo.onFlux .slider .resa .content {
    animation: resa 1500ms ease-in-out 500ms both;
  }
  .zone.texte_grande_photo.onFlux .slider .swiper-controls {
    animation: text 1000ms ease-in-out 1000ms both;
  }
  .zone.texte_grande_photo.onFlux .slider .photo {
    animation: clipSlider 1000ms ease-in-out both;
  }
}
body.intern header + .zones > .zone.listing .item-elem:nth-of-type(1) {
  padding-top: 125px;
}
.zone.listing {
  width: 100%;
}
.zone.listing .item-elem {
  height: 100vh;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.zone.listing .item-elem:nth-of-type(even) {
  flex-direction: row-reverse;
}
.zone.listing .item-elem:nth-of-type(even) > .content .desc {
  direction: rtl;
  align-items: flex-end;
}
.zone.listing .item-elem:nth-of-type(even) > .content .desc::-webkit-scrollbar-thumb {
  border-left: 3px solid #59b9ad;
  border-right: 0;
}
.zone.listing .item-elem:nth-of-type(even) > .content .desc::-webkit-scrollbar-track {
  border-left: solid 3px rgba(133, 133, 133, 0.2);
  border-right: 0;
}
.zone.listing .item-elem:nth-of-type(even) > .content .desc > * {
  direction: ltr;
}
.zone.listing .item-elem > .content {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777;
  position: relative;
  z-index: 5;
  padding: 0 25px 65px;
  height: 100%;
  min-width: 550px;
}
.zone.listing .item-elem > .content .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.5);
}
.zone.listing .item-elem > .content .title {
  text-align: center;
  font-size: 7rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
  color: #000;
  /*&:after{
          content:"";
          display: block;
          width:300px;
          height:2px;
          background-color:#fff;
          margin:40px auto;
        }*/
}
.zone.listing .item-elem > .content .desc {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  overflow: auto;
}
.zone.listing .item-elem > .content .desc::-webkit-scrollbar {
  width: 50px;
}
.zone.listing .item-elem > .content .desc::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border-right: 3px solid #59b9ad;
}
.zone.listing .item-elem > .content .desc::-webkit-scrollbar-track {
  border-right: solid 3px rgba(133, 133, 133, 0.2);
}
.zone.listing .item-elem > .content .btn {
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #777;
  color: #777;
  margin-top: 50px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 500ms;
}
.zone.listing .item-elem > .content .btn:hover {
  color: #fff;
  border-color: #59b9ad;
}
.zone.listing .item-elem > .content .btn:before {
  border-radius: 25px;
}
.zone.listing .item-elem .slider {
  width: 66.6%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1;
}
.zone.listing .item-elem .slider .zone.resa .content {
  transform: translate(0, -50%);
}
.zone.listing .item-elem .slider .zone.resa + .swiper-controls {
  padding-top: 0;
}
.zone.listing .item-elem .slider .swiper-controls {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.zone.listing .item-elem .slider .swiper-controls .swiper-pagination {
  width: auto;
  margin: 0 25px;
  position: relative;
  bottom: auto;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5rem;
  line-height: 0.5;
  color: #444;
  transform: translate(-60%);
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next {
  background-image: unset;
  width: 60px;
  height: 15px;
  margin: 0;
  align-items: center;
  transition: all 500ms;
  left: auto;
  cursor: pointer;
  position: relative;
  top: auto;
  display: flex;
  margin: 0 25px;
  opacity: 0.6;
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev span,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #444;
  border-left: 1px solid #444;
  transform: rotate(-45deg);
  transition: all 500ms;
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev span:before,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next span:before {
  width: 60px;
  content: "";
  background: #444;
  height: 2px;
  display: block;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left bottom;
  transition: inherit;
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev.swiper-button-next,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next.swiper-button-next {
  left: auto;
  right: 50px;
  transform: rotate(180deg);
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev:hover span,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next:hover span {
  background: #444;
}
.zone.listing .item-elem .slider .swiper-controls .swiper-button-prev:hover span:before,
.zone.listing .item-elem .slider .swiper-controls .swiper-button-next:hover span:before {
  background: #444;
}
.zone.listing .item-elem .slider .swiper-container {
  width: 100%;
  height: 100%;
  flex: 1;
}
.zone.listing .item-elem .slider .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.zone.listing .item-elem .slider .swiper-container .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px), (max-height: 800px) {
  body.intern header + .zones > .zone.listing .item-elem:nth-of-type(1) {
    padding-top: 70px;
  }
  .zone.listing .item-elem {
    height: auto;
    flex-direction: column-reverse !important;
    padding-top: 0;
  }
  .zone.listing .item-elem .content {
    width: 100%;
    min-width: unset;
  }
  .zone.listing .item-elem > .content {
    padding: 50px 25px;
  }
  .zone.listing .item-elem .slider {
    flex: 1 1 100%;
    width: 100%;
  }
  .zone.listing .item-elem .slider .zone.resa .content {
    transform: unset;
    margin-top: -30px;
  }
  .zone.listing .item-elem .slider .swiper-container {
    flex: none;
    height: auto;
    max-height: 60vh;
  }
  .zone.listing .item-elem .slider .swiper-container .swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
  .zone.listing .item-elem .slider .swiper-container:after {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .zone.listing .item-elem .slider .swiper-controls {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-height: 60vh;
    display: block;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-pagination {
    display: none;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-prev {
    left: 25px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-prev:hover span {
    background: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-prev:hover span:before {
    background: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-prev span {
    border-color: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-prev span:before {
    background: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-next {
    right: 25px;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%) rotate(180deg) !important;
    margin: 0;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-next:hover span {
    background: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-next:hover span:before {
    background: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-next span {
    border-color: #fff;
  }
  .zone.listing .item-elem .slider .swiper-controls .swiper-button-next span:before {
    background: #fff;
  }
}
@media screen and (max-width: 800px) {
  zone.listing > .content .title {
    font-size: 3rem;
  }
}
@keyframes clipSlider {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes title {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes text {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes resa {
  from {
    opacity: 0;
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1200px) {
  .zone.listing .item-elem {
    opacity: 0;
  }
  .zone.listing .item-elem.onFlux {
    opacity: 1;
  }
  .zone.listing .item-elem.onFlux .content .title,
  .zone.listing .item-elem.onFlux .content .btn {
    animation: title 1000ms ease-in-out both;
  }
  .zone.listing .item-elem.onFlux .content .desc {
    animation: text 1000ms ease-in-out both;
  }
  .zone.listing .item-elem.onFlux .slider .resa .content {
    animation: resa 1500ms ease-in-out 500ms both;
  }
  .zone.listing .item-elem.onFlux .slider .swiper-controls {
    animation: text 1000ms ease-in-out 1000ms both;
  }
  .zone.listing .item-elem.onFlux .slider .photo {
    animation: clipSlider 1000ms ease-in-out both;
  }
}
body.intern header + .zones > .zone.galerie:nth-of-type(1) {
  padding-top: 125px;
}
.zone.galerie {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
  padding-top: 100px;
}
.zone.galerie .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.2);
}
.zone.galerie .content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.zone.galerie .content .text {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.zone.galerie .content .text .title {
  font-size: 7rem;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.2rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
}
.zone.galerie .content .text .desc {
  text-align: justify;
  line-height: 24px;
  max-width: 550px;
}
.zone.galerie .content .text .btn {
  padding: 15px 35px;
  border: 1px solid rgba(133, 133, 133, 0.3);
  margin-top: 50px;
  transition: all 500ms;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 12px;
  color: #444;
}
.zone.galerie .content .text .btn:hover {
  background: #59b9ad;
  color: #fff;
}
.zone.galerie .content .pager {
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.zone.galerie .content .pager li {
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone.galerie .content .pager li a {
  color: #777;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  transition: all 500ms;
  padding: 0 10px;
}
.zone.galerie .content .pager li a:after {
  content: "";
  display: block;
  height: 1px;
  background: #59b9ad;
  margin-top: 5px;
  transition: inherit;
  transform: scaleX(0);
}
.zone.galerie .content .pager li a:hover,
.zone.galerie .content .pager li a.active {
  color: #59b9ad;
}
.zone.galerie .content .pager li a:hover:after,
.zone.galerie .content .pager li a.active:after {
  transform: scaleX(1);
}
.zone.galerie .content .list_photo {
  padding: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 -12px;
}
.zone.galerie .content .list_photo .item {
  flex: 1 1 33.3%;
  max-width: 31%;
  margin-bottom: 40px;
}
.zone.galerie .content .list_photo .item.name {
  border: 1px solid #59b9ad;
  display: flex;
  flex-direction: column;
  color: #59b9ad;
  text-transform: uppercase;
  font-size: 3.2rem;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.2rem;
  font-weight: 300;
  font-family: "Montserrat", Sans-serif;
}
.zone.galerie .content .list_photo .item .photo {
  position: relative;
}
.zone.galerie .content .list_photo .item .photo:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 5;
  transition: all 500ms;
}
.zone.galerie .content .list_photo .item .photo:hover:before {
  background: rgba(255, 255, 255, 0.4);
}
.zone.galerie .content .list_photo .item .photo:hover img {
  transform: scale(1.05);
}
.zone.galerie .content .list_photo .item .photo > a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.zone.galerie .content .list_photo .item .photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 500ms;
  object-fit: cover;
}
.zone.galerie .content .list_photo .item .photo:after {
  content: "";
  padding-top: 100%;
  display: block;
}
@media screen and (max-width: 1600px) {
  .zone.galerie {
    max-width: unset;
    min-height: unset;
    padding: 25px;
  }
  .zone.galerie .content .text {
    margin-bottom: 0px;
  }
  .zone.galerie .content .text .desc {
    max-width: unset;
  }
  .zone.galerie .content .list_photo {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .zone.galerie .content .text .btn {
    margin-top: 25px;
  }
  .zone.galerie .content .text .title {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
  .zone.galerie .content .text .title:before {
    margin-bottom: 25px;
  }
  .zone.galerie .content .list_photo {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .zone.galerie .content .list_photo {
    margin: 0 -10px;
    justify-content: flex-start;
  }
  .zone.galerie .content .list_photo .item {
    max-width: 50%;
    flex: 1 1 50%;
    padding: 10px;
    margin: 0;
  }
  .zone.galerie .content .list_photo .item.name {
    border: 0;
    position: relative;
    font-size: 2rem;
  }
  .zone.galerie .content .list_photo .item.name:before {
    border: 1px solid #59b9ad;
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
  }
  .zone.galerie .content .list_photo .item .photo {
    max-height: 320px;
  }
}
@media screen and (max-width: 420px) {
  .zone.galerie .content .list_photo {
    margin: 0;
  }
  .zone.galerie .content .list_photo .item {
    max-width: unset;
    flex: 1 1 100%;
    padding: 10px 0;
    margin: 0;
  }
  .zone.galerie .content .list_photo .item.name:before {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .zone.galerie {
    opacity: 0;
  }
  .zone.galerie.onFlux {
    opacity: 1;
  }
  .zone.galerie.onFlux .text .title {
    animation: g_title 1000ms both;
  }
  .zone.galerie.onFlux .text .title:before {
    animation: g_clip_bar 1000ms 500ms both;
  }
  .zone.galerie.onFlux .text .desc {
    animation: g_desc 1000ms 1000ms both;
  }
  .zone.galerie.onFlux .text .btn {
    animation: g_desc 1000ms 1500ms both;
  }
  .zone.galerie.onFlux .list_photo .item {
    opacity: 0;
  }
  .zone.galerie.onFlux .list_photo .item .photo {
    opacity: 0;
  }
  .zone.galerie.onFlux .list_photo .item .photo a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #59b9ad;
  }
  .zone.galerie.onFlux .list_photo .item.onFlux {
    opacity: 1;
  }
  .zone.galerie.onFlux .list_photo .item.onFlux .photo {
    transition: all 500ms;
  }
  .zone.galerie.onFlux .list_photo .item.onFlux .photo.loaded {
    opacity: 1;
  }
  .zone.galerie.onFlux .list_photo .item.onFlux .photo a:after {
    animation: showItems 1000ms both;
  }
}
@keyframes g_title {
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes g_desc {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showItems {
  from {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
@keyframes g_clip_bar {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  99% {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
  to {
    clip-path: unset;
    -webkit-clip-path: unset;
  }
}
.zone.contact_form {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.zone.contact_form .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  filter: invert(0.5);
}
.zone.contact_form .success {
  margin-top: 10px;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 20px;
}
.zone.contact_form .error {
  margin-top: 10px;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
  border: 1px solid #f5c6cb;
  border-radius: 20px;
  color: #721c24;
  background-color: #f8d7da;
}
.zone.contact_form .content {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.zone.contact_form .content .gmap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.zone.contact_form .content .gmap .frame {
  position: relative;
  flex: 1;
}
.zone.contact_form .content .gmap iframe {
  width: 100%;
  height: 100%;
}
.zone.contact_form .content .gmap > p {
  padding: 25px 0;
  color: #777;
}
.zone.contact_form .content .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 650px;
  padding-right: 50px;
  position: relative;
}
.zone.contact_form .content .text a {
  color: #787878;
  transition: all 500ms;
}
.zone.contact_form .content .text a:hover {
  color: #59b9ad;
}
.zone.contact_form .content .text ul li {
  margin-bottom: 15px;
}
.zone.contact_form .content .text .title {
  font-size: 7rem;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.2rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}
.zone.contact_form .content .text .desc {
  text-align: center;
  line-height: 24px;
}
.zone.contact_form .content .text form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 50px -10px 0;
}
.zone.contact_form .content .text form .form-group {
  flex: 1 1 50%;
  padding: 0 10px 10px;
}
.zone.contact_form .content .text form .form-group.message {
  flex: 1 1 100%;
}
.zone.contact_form .content .text form .form-group.rgpd {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.zone.contact_form .content .text form .form-group.rgpd label {
  color: #444;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}
.zone.contact_form .content .text form .form-group.rgpd input {
  width: auto;
  margin-right: 25px;
}
.zone.contact_form .content .text form .form-group.submit {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.zone.contact_form .content .text form .form-group.submit button {
  padding: 15px 35px;
  background: #fff;
  color: #59b9ad;
  border: 1px solid #59b9ad;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  box-shadow: unset;
  transition: all 500ms;
  border-radius: 20px;
  margin-top: 50px;
}
.zone.contact_form .content .text form .form-group.submit button:hover {
  background: #59b9ad;
  color: #fff;
}
.zone.contact_form .content .text form .form-group textarea {
  min-height: 160px;
  resize: vertical;
}
.zone.contact_form .content .text form .form-group input,
.zone.contact_form .content .text form .form-group textarea {
  padding: 15px 15px 15px 25px;
  width: 100%;
  background: #eee;
  border: 0;
  box-shadow: none;
  color: #444;
  letter-spacing: 0.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.zone.contact_form .content .text form .form-group input ::placeholder,
.zone.contact_form .content .text form .form-group textarea ::placeholder {
  color: #212121;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.zone.contact_form .content .text form .form-group input :-ms-input-placeholder,
.zone.contact_form .content .text form .form-group textarea :-ms-input-placeholder {
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.zone.contact_form .content .text form .form-group input ::-ms-input-placeholder,
.zone.contact_form .content .text form .form-group textarea ::-ms-input-placeholder {
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 1600px) {
  .zone.contact_form {
    min-height: unset;
  }
  .zone.contact_form .content {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1200px) {
  .zone.contact_form .content .text {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .zone.contact_form {
    padding: 0 0 50px;
  }
  .zone.contact_form .content {
    flex-direction: row;
  }
  .zone.contact_form .content .gmap {
    margin-top: 25px;
    flex: 1 1 100%;
    display: block;
  }
  .zone.contact_form .content .gmap > p {
    text-align: center;
  }
  .zone.contact_form .content .gmap .frame {
    max-height: 320px;
    position: relative;
  }
  .zone.contact_form .content .gmap .frame:after {
    padding-top: 75%;
    content: "";
    display: block;
  }
  .zone.contact_form .content .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
  }
  .zone.contact_form .content .text {
    padding-left: 0;
    flex: 1 1 100%;
    max-width: unset;
    padding-right: 0;
    padding-top: 70px;
  }
  .zone.contact_form .content .text form {
    margin: 25px 0;
  }
  .zone.contact_form .content .text form .form-group {
    padding-left: 0;
  }
}
@media screen and (max-width: 560px) {
  .zone.contact_form .content .text form .form-group {
    padding: 0;
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .zone.contact_form {
    opacity: 0;
  }
  .zone.contact_form.onFlux {
    opacity: 1;
  }
  .zone.contact_form.onFlux .gmap {
    animation: c_clip_bar 1000ms 500ms both;
  }
  .zone.contact_form.onFlux .text .title {
    animation: c_title 1000ms both;
  }
  .zone.contact_form.onFlux .text .title:before {
    animation: c_clip_bar 1000ms 500ms both;
  }
  .zone.contact_form.onFlux .text .desc {
    animation: c_desc 1000ms 1000ms both;
  }
  .zone.contact_form.onFlux .text form {
    animation: c_desc 1000ms 1500ms both;
  }
}
@keyframes c_title {
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes c_desc {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes c_clip_bar {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  99% {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
  to {
    clip-path: unset;
    -webkit-clip-path: unset;
  }
}
.zone.widget {
  padding: 50px 25px;
  display: flex;
  justify-content: center;
}
.zone.widget .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.zone.widget .container > * {
  width: 100%;
}
.zone.widget .title {
  text-align: center;
  font-size: 7rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
  color: #000;
  /*&:after{
        content:"";
        display: block;
        width:300px;
        height:2px;
        background-color:#fff;
        margin:40px auto;
      }*/
}
.zone.widget .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}
.zone.widget .tabs > div {
  padding: 10px 20px;
  border: 1px solid #59b9ad;
  border-radius: 5px;
  background-color: white;
  color: #59b9ad;
  cursor: pointer;
}
.zone.widget .tabs > div.active {
  background-color: #59b9ad;
  color: white;
  cursor: default;
}
@media screen and (min-width: 768px) {
  .zone.widget {
    padding: 50px 50px;
  }
  .zone.widget .container .title {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .zone.widget {
    padding: 100px;
  }
  .zone.widget .container .title {
    font-size: 7rem;
  }
}
