header input + .burger {
  position: fixed;
  right: 2rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 6rem;
  height: 6rem;
  border: 1px white solid;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: rgba(148, 134, 113, 0.4);
}
header input + .burger span {
  font-size: 1.2rem;
  color: white;
  padding: 0rem 0;
  transition: 0.5s all;
}
header input + .burger #line_before,
header input + .burger #line_after {
  position: absolute;
  width: 60%;
  height: 1px;
  background: white;
}
header input + .burger #line_before {
  top: 1.9rem;
}
header input + .burger #line_after {
  bottom: 2rem;
}
header .burger:hover {
  cursor: pointer;
}
header input {
  z-index: -1;
  position: absolute;
}
header input:not(:checked) + label #text {
  transition-delay: 0.5s;
}
header input:checked + label #line_after,
header input:checked + label #line_before {
  transition-delay: 0.5s;
}
header input:checked + label span#text {
  opacity: 0;
}
header input:checked + label #line_after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  bottom: 50%;
}
header input:checked + label #line_before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: 50%;
}
header input ~ .img_deco {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  z-index: 97;
  transition: 0.5s;
  transition-delay: 0.5s;
  background: white;
}
header input ~ .img_deco .photo {
  width: 100%;
  height: 100%;
  display: flex;
}
header input ~ .img_deco .photo img {
  object-fit: cover;
  transition: 0.3s all;
}
header input ~ nav {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0rem;
  left: 2rem;
  right: 2rem;
  height: 0px;
  z-index: 98;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header input ~ nav > ul {
  text-align: center;
  position: absolute;
  max-width: 450px;
  width: 30%;
  min-width: 300px;
}
header input ~ nav > ul > li {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
}
header input ~ nav > ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 100;
  font-family: sans-serif;
  display: block;
  padding: 2rem;
  border-bottom: 1px white solid;
  transition: 0.3s all;
}
header input ~ nav > ul > li > a:hover {
  color: #948671;
}
header input:checked ~ nav {
  height: calc(100% - 4rem);
  top: 2rem;
  transition-delay: 0s;
}
header input:checked ~ nav > ul > li {
  opacity: 1;
  transition-delay: 0.5s;
}
header input:checked ~ .img_deco {
  height: 100%;
  transition-delay: 0s;
  padding: 2rem;
}
header .limit {
  position: fixed;
}
@media all and (max-width: 1024px) {
  header input + .burger {
    top: 6rem;
  }
}
@media all and (max-width: 600px) {
  header input ~ nav > ul > li a {
    padding: 1rem;
  }
}
@media all and (min-width: 1024px) {
  header input ~ nav > ul > li > a {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  header input ~ nav > ul > li > a:hover {
    font-size: 2rem;
  }
}
.rec2 {
  padding: 25px 0;
  text-align: center;
}
.rec2 li {
  margin: 0 5px;
  display: inline-block;
}
.rec2 li img {
  max-width: 75px;
}
footer {
  padding: 4rem;
  background: #efeeee;
  border-top: 1px rgba(192, 168, 107, 0.5) solid;
}
footer a:hover {
  color: #948671;
}
footer .limit {
  display: flex;
  flex-direction: row;
  color: black;
  justify-content: center;
}
footer .limit .infos,
footer .limit .pages {
  padding: 0 4rem;
  position: relative;
}
footer .limit .infos:after,
footer .limit .pages:after {
  content: '';
  position: absolute;
  right: 0;
  top: 1rem;
  bottom: 1rem;
  background: rgba(192, 168, 107, 0.5);
  width: 1px;
}
footer .limit .infos {
  display: flex;
  flex-direction: column;
}
footer .limit .infos .name {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
}
footer .limit .pages {
  display: flex;
  flex-direction: row;
}
footer .limit .pages > div {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
  justify-content: space-evenly;
  text-transform: uppercase;
}
footer .limit .follow_rea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 4rem;
  font-weight: bold;
}
footer .limit .follow_rea .follow {
  text-transform: uppercase;
}
footer .limit .follow_rea .follow .rs {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}
footer .limit .follow_rea .follow .redirect {
  display: flex;
  margin: 0 0.5rem;
}
footer .limit .follow_rea .follow .redirect i {
  width: 3rem;
  border-radius: 100%;
  background: #948671;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: white;
}
footer .limit .follow_rea .follow .redirect i:hover {
  background: rgba(192, 168, 107, 0.8);
}
footer .limit .follow_rea .rea {
  font-size: 1.2rem;
}
footer .limit .follow_rea .rea a {
  font-weight: normal;
}
@media all and (max-width: 1024px) {
  footer .limit {
    text-align: center;
    flex-direction: column;
  }
  footer .limit .follow_rea .follow {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  footer .limit .follow_rea .follow .rs {
    justify-content: center;
  }
  footer .limit .follow_rea .follow > a {
    margin: 10px 0 0 0 !important;
  }
  footer .limit > * {
    padding-bottom: 1.5rem !important;
  }
  footer .limit .pages {
    justify-content: center;
    margin-top: 10px;
  }
  footer .limit .pages > div > a {
    margin-bottom: 10px;
  }
  footer .limit .infos:after,
  footer .limit .pages:after {
    display: none;
  }
}
@media all and (max-width: 599px) {
  footer .limit .pages {
    padding: 0;
  }
}
.diapo {
  overflow: hidden;
  width: 100vw;
}
.diapo .rec {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 2;
}
.diapo .rec li {
  margin: 0 5px;
  display: inline-block;
}
.diapo .rec li img {
  max-width: 100px;
}
.diapo .limit {
  overflow: hidden;
}
.diapo .limit .slider {
  overflow: hidden;
}
.diapo .limit .slider .slide {
  overflow: hidden;
  display: flex;
  height: 100vh;
  width: 100%;
}
.diapo .limit > .logo {
  max-width: 100vw;
  position: absolute;
  top: 2rem;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 2;
  height: 22vh;
  display: flex;
}
.diapo .limit > .logo a {
  display: flex;
  width: 100%;
  height: 100%;
}
.diapo .limit > .logo a img {
  object-fit: contain;
  height: 100%;
}
.diapo .limit .content_box {
  position: absolute;
  top: 30vh;
  bottom: 10vh;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  color: white;
}
.diapo .limit .content_box .intern_box {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  text-align: center;
}
.diapo .limit .content_box .intern_box:after,
.diapo .limit .content_box .intern_box:before {
  content: '';
  position: relative;
  width: 240px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  border: 1px rgba(255, 255, 255, 0.8) solid;
}
.diapo .limit .content_box .intern_box:after {
  bottom: 0;
  height: 50%;
  border-top: 0;
  margin-top: 2rem;
  flex: 3;
}
.diapo .limit .content_box .intern_box:before {
  margin-bottom: 1rem;
  top: 0;
  height: 15%;
  border-bottom: 0;
  flex: 1;
}
.diapo .limit .content_box .intern_box .title {
  text-transform: uppercase;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 7rem;
}
.diapo .limit .content_box .intern_box .title span {
  font-size: 8rem;
}
.diapo .limit .content_box .intern_box .arrow,
.diapo .limit .content_box .intern_box .arrow_end {
  position: absolute;
  left: 50%;
  bottom: 10%;
  top: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.diapo .limit .content_box .intern_box .arrow:before {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 1px;
  background: 1px rgba(255, 255, 255, 0.8);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.diapo .limit .content_box .intern_box .arrow_end:after,
.diapo .limit .content_box .intern_box .arrow_end:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 20px;
  bottom: -1.5rem;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
.diapo .limit .content_box .intern_box .arrow_end:after {
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: rotate(-55deg);
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  transform: rotate(-55deg);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
.diapo .limit .content_box .intern_box .arrow_end:before {
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
}
.diapo .limit .contact {
  position: absolute;
  left: 0;
  top: 50%;
  background: rgba(192, 168, 107, 0.34);
  -webkit-transform: rotate(-90deg) translate(50%, -100%);
  -moz-transform: rotate(-90deg) translate(50%, -100%);
  -ms-transform: rotate(-90deg) translate(50%, -100%);
  -o-transform: rotate(-90deg) translate(50%, -100%);
  transform: rotate(-90deg) translate(50%, -100%);
  z-index: 2;
  padding: 2rem 1.5rem 1rem 1.5rem;
  text-transform: uppercase;
  color: white;
  font-size: 1.2rem;
  line-height: 2rem;
  transition: 0.3s all;
}
.diapo .limit .contact:hover {
  background: #948671;
}
.diapo .limit .contact span {
  color: white;
  padding: 0.5rem;
}
@media all and (max-width: 1024px) {
  .diapo .rec li img {
    max-width: 50px;
  }
}
@media all and (max-width: 800px) {
  .diapo.subtype2 .limit .slider .slide {
    height: 75vw;
  }
}
@media all and (max-width: 600px) {
  .diapo .rec {
    display: none;
  }
  .diapo .limit .contact {
    top: 35%;
  }
  .diapo .limit .content_box .intern_box .title {
    font-size: 3.5rem;
  }
  .diapo .limit .content_box .intern_box .title span {
    font-size: 5rem;
  }
}
.zone.double_content .limit .content_box {
  display: flex;
  flex-direction: row;
  height: 65vh;
}
.zone.double_content .limit .content_box .content {
  overflow: auto;
  padding: 0 10rem 6rem 10rem;
  width: 45%;
}
.zone.double_content .limit .content_box .content .title {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  margin-top: 7rem;
  position: relative;
  font-family: "Playfair Display";
}
.zone.double_content .limit .content_box .content .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #948671;
}
.zone.double_content .limit .content_box .content .text {
  text-align: justify;
}
.zone.double_content .limit .content_box .content h3 {
  font-weight: 700;
}
.zone.double_content .limit .content_box .photo_box {
  width: 55%;
  padding-top: 8rem;
  height: 100%;
  display: flex;
  position: relative;
}
.zone.double_content .limit .content_box .photo_box .photo {
  display: flex;
  width: 100%;
}
.zone.double_content .limit .content_box .photo_box:after {
  content: '';
  position: absolute;
  left: 6rem;
  right: 0;
  top: 0;
  height: 8rem;
  background: #948671;
}
@media all and (max-width: 1600px) {
  .zone.double_content .limit .content_box {
    flex-direction: column;
    height: auto;
  }
  .zone.double_content .limit .content_box .content {
    width: 100%;
  }
  .zone.double_content .limit .content_box .photo_box {
    width: 100%;
    height: 75vw;
    max-height: 75vh;
  }
}
@media all and (max-width: 1024px) {
  .zone.double_content .limit .content_box .photo_box {
    width: 100%;
    height: 75vw;
  }
}
@media all and (max-width: 800px) {
  .zone.double_content .limit .content_box {
    flex-direction: column;
    height: auto;
  }
  .zone.double_content .limit .content_box .content {
    padding: 0 2rem 6rem 2rem;
  }
}
.double_content_part2 .limit .content_box {
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.double_content_part2 .limit .content_box .left {
  width: 45%;
}
.double_content_part2 .limit .content_box .left .photo {
  height: 55%;
  width: 100%;
}
.double_content_part2 .limit .content_box .left .video_box {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.double_content_part2 .limit .content_box .left .video_box:after {
  content: '';
  position: relative;
  width: 100%;
  display: block;
  padding-top: 60%;
}
.double_content_part2 .limit .content_box .left .video_box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.double_content_part2 .limit .content_box .left .outlink {
  height: 45%;
  background: #948671;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.double_content_part2 .limit .content_box .left .outlink h2 {
  font-size: 5rem;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.double_content_part2 .limit .content_box .left .outlink h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 30px;
  background: white;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.double_content_part2 .limit .content_box .left .outlink p {
  font-size: 1.6rem;
  padding-bottom: 5%;
  display: block;
}
.double_content_part2 .limit .content_box .left .outlink .know_more {
  padding: 1rem;
  color: white;
  border: 1px white solid;
  font-family: 'Playfair Display', serif;
  transition: 0.3s all;
}
.double_content_part2 .limit .content_box .left .outlink .know_more:hover {
  background: rgba(255, 255, 255, 0.3);
}
.double_content_part2 .limit .content_box .right {
  width: 55%;
}
.double_content_part2 .limit .content_box .right .quote_box {
  height: 30%;
  padding-left: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}
.double_content_part2 .limit .content_box .right .quote_box .quote {
  padding: 3vh 8%;
  height: 100%;
  width: 100%;
  background: #948671;
  color: white;
  font-family: 'Playfair Display', serif;
}
.double_content_part2 .limit .content_box .right .quote_box .quote p {
  line-height: 4rem;
  font-style: italic;
  font-size: 4rem;
  text-align: left;
}
.double_content_part2 .limit .content_box .right .quote_box .quote span {
  font-size: 2rem;
}
.double_content_part2 .limit .content_box .right .photo {
  height: 70%;
}
@media all and (max-width: 1600px) {
  .double_content_part2 .limit .content_box .right .quote_box .quote p {
    font-size: 2.6rem;
  }
  .double_content_part2 .limit .content_box .left .outlink h2 {
    text-align: center;
  }
}
@media all and (max-width: 1024px) {
  .double_content_part2 .limit .content_box .right .quote_box .quote p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .double_content_part2 .limit .content_box .left .outlink h2 {
    padding-bottom: 5%;
    margin-bottom: 5%;
  }
}
@media all and (max-width: 800px) {
  .double_content_part2 .limit .content_box {
    height: auto;
    flex-direction: column;
  }
  .double_content_part2 .limit .content_box .left {
    width: 100%;
    flex-direction: column-reverse;
    display: flex;
  }
  .double_content_part2 .limit .content_box .left .photo {
    height: 75vw;
  }
  .double_content_part2 .limit .content_box .left .outlink {
    height: auto;
    padding: 4rem 2rem;
  }
  .double_content_part2 .limit .content_box .left .outlink a {
    padding-bottom: 1rem;
  }
  .double_content_part2 .limit .content_box .left .outlink a .know_more {
    display: block;
  }
  .double_content_part2 .limit .content_box .right {
    position: relative;
    display: block;
    width: 100%;
  }
  .double_content_part2 .limit .content_box .right .photo {
    height: 75vw;
  }
  .double_content_part2 .limit .content_box .right .quote_box {
    height: auto;
    padding: 0;
  }
  .double_content_part2 .limit .content_box .right .quote_box .quote {
    padding: 4rem 2rem;
  }
  .double_content_part2 .limit .content_box .right .quote_box h4 {
    padding: 2rem;
  }
}
.paralax {
  height: 40vh;
  margin-bottom: 10vh;
  position: relative;
}
.paralax .limit {
  left: 20%;
  right: 20%;
  min-width: 300px;
  position: absolute;
  top: 50%;
  bottom: -8vh;
  background: #efeeee;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}
.paralax .limit:before {
  background: #efeeee;
}
.paralax .limit h2 {
  font-size: 5rem;
  font-family: "Playfaire Display", serif;
  font-style: italic;
  padding-bottom: 2vh;
  margin-bottom: 2vh;
  position: relative;
  color: #948671;
}
.paralax .limit h2:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: #948671;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.paralax .limit p {
  color: black;
  padding-bottom: 3vh;
}
.paralax .limit .know_more {
  padding: 1rem;
  color: #948671;
  border: 1px #948671 solid;
  font-family: 'Playfair Display', serif;
  transition: 0.3s all;
}
.paralax .limit .know_more:hover {
  background: rgba(192, 168, 107, 0.3);
}
@media all and (max-width: 1024px) {
  .paralax {
    height: 75vw;
  }
}
@media all and (max-width: 800px) {
  .paralax {
    margin-bottom: 0;
    height: auto;
  }
  .paralax .paralax {
    display: none;
  }
  .paralax .limit {
    height: auto;
    bottom: 0;
    padding: 4rem 2rem;
    position: relative;
    left: 0;
    right: 0;
  }
  .paralax .limit a {
    padding-bottom: 1rem;
    padding-top: 2rem;
  }
  .paralax .limit a span {
    display: block;
  }
}
.tridisplay .limit .content_box {
  height: 80vh;
  display: flex;
  flex-direction: row;
}
.tridisplay .limit .content_box .left {
  width: 50%;
}
.tridisplay .limit .content_box .left .photo {
  height: 100%;
}
.tridisplay .limit .content_box .right {
  width: 50%;
}
.tridisplay .limit .content_box .right .photo {
  height: 60%;
}
.tridisplay .limit .content_box .right .outlink {
  height: 40%;
  background: #948671;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.tridisplay .limit .content_box .right .outlink h2 {
  font-size: 5rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.tridisplay .limit .content_box .right .outlink h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 30px;
  background: white;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.tridisplay .limit .content_box .right .outlink p {
  font-size: 1.6rem;
  padding-bottom: 5%;
  display: block;
}
.tridisplay .limit .content_box .right .outlink .know_more {
  padding: 1rem;
  color: white;
  border: 1px white solid;
  font-family: 'Playfair Display', serif;
  transition: 0.3s all;
}
.tridisplay .limit .content_box .right .outlink .know_more:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media all and (max-width: 1600px) {
  .tridisplay .limit .content_box .right .outlink h2 {
    padding-bottom: 5%;
    margin-bottom: 5%;
  }
  .tridisplay .limit .content_box .right .outlink p {
    padding-bottom: 5%;
  }
}
@media all and (max-width: 800px) {
  .tridisplay .limit .content_box {
    height: auto;
  }
  .tridisplay .limit .content_box .right {
    width: 100%;
  }
  .tridisplay .limit .content_box .right .photo {
    height: 75vw;
  }
  .tridisplay .limit .content_box .right .outlink {
    height: auto;
    padding: 4rem 0;
  }
  .tridisplay .limit .content_box .right .outlink a {
    padding-bottom: 1rem;
  }
  .tridisplay .limit .content_box .right .outlink a span {
    display: block;
  }
  .tridisplay .limit .content_box .left {
    display: none;
  }
}
.text_alone {
  padding: 8rem 2rem;
}
.text_alone .limit {
  margin: 0 auto;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.text_alone .limit h2 {
  font-size: 5rem;
  font-family: "Playfair Display";
  font-style: italic;
  padding-bottom: 2vh;
  margin-bottom: 2vh;
  position: relative;
  color: #948671;
}
.text_alone .limit h2:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: #948671;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.text_alone .limit p {
  color: black;
  padding-bottom: 3vh;
  text-align: center;
  font-weight: 700;
}
.text_alone .limit .know_more {
  padding: 1rem;
  color: #948671;
  border: 1px #948671 solid;
  font-family: 'Playfair Display', serif;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.text_alone .limit .know_more:hover {
  background: rgba(192, 168, 107, 0.3);
}
@media all and (max-width: 800px) {
  .text_alone .limit a {
    padding-top: 2rem;
  }
  .text_alone .limit a .know_more {
    display: block;
  }
}
.text_plus_elems.subtype2 .limit .photos_box .left .in_box .photo:nth-child(1) {
  height: calc(75% - 1rem);
  margin-bottom: 1rem;
}
.text_plus_elems.subtype2 .limit .photos_box .left .in_box .photo:nth-child(2) {
  height: 25%;
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .photo.special_case {
  height: calc(70% - 1rem);
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box {
  padding: 2vh 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #efeeee;
  height: 30%;
  text-align: center;
  color: #948671;
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box .title {
  font-size: 1.4rem;
  padding-bottom: 4vh;
  margin-bottom: 2vh;
  position: relative;
  font-family: "Playfair Display";
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box .title span {
  border: 1px #948671 solid;
  padding: 1rem;
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: #948671;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box .content p {
  line-height: 2rem;
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .photo {
  height: 75%;
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box {
  padding: 4rem;
  background: #948671;
  color: white;
  text-align: center;
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box .download {
  background: white;
  padding: 1rem 3rem;
  color: #948671;
  transition: 0.3s all;
  font-family: "Playfair Display";
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box .download a {
  color: #948671;
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box .download:hover {
  background: rgba(255, 255, 255, 0.9);
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box p {
  margin-bottom: 4rem;
  line-height: 2rem;
}
.text_plus_elems.subtype3 .limit .photos_box .left .in_box .sub_content_box p strong {
  font-style: italic;
  font-family: "Playfair Display";
}
.text_plus_elems .limit {
  padding: 4rem;
  position: relative;
  color: black;
}
.text_plus_elems .limit .photos_box {
  display: flex;
  flex-direction: row;
}
.text_plus_elems .limit .photos_box .left,
.text_plus_elems .limit .photos_box .right {
  width: 50%;
}
.text_plus_elems .limit .photos_box .left .in_box,
.text_plus_elems .limit .photos_box .right .in_box {
  height: 127vh;
}
.text_plus_elems .limit .photos_box .left .in_box .photo,
.text_plus_elems .limit .photos_box .right .in_box .photo {
  display: flex;
  height: 100%;
  width: 100%;
}
.text_plus_elems .limit .photos_box .left .in_box {
  padding-right: 0.5rem;
}
.text_plus_elems .limit .photos_box .left .in_box .photo {
  height: 85%;
}
.text_plus_elems .limit .photos_box .right .in_box {
  padding-left: 0.5rem;
}
.text_plus_elems .limit .photos_box .right .in_box .photo:nth-child(1) {
  height: calc(60% - 1rem);
  margin-bottom: 1rem;
}
.text_plus_elems .limit .photos_box .right .in_box .photo:nth-child(2) {
  height: 40%;
}
.text_plus_elems .limit .content_box {
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  padding: 4rem;
  background: white;
  -webkit-transform: translate(0, -20%);
  -moz-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  -o-transform: translate(0, -20%);
  transform: translate(0, -20%);
  z-index: 2;
  max-height: 127vh;
  overflow: auto;
}
.text_plus_elems .limit .content_box span {
  display: block;
}
.text_plus_elems .limit .content_box h1 {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  /*margin-top: 7rem;*/
  position: relative;
  font-family: "Playfair Display";
  text-align: center;
}
.text_plus_elems .limit .content_box h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  width: 30px;
  height: 1px;
  background: #948671;
}
.text_plus_elems .limit .content_box p {
  text-align: justify;
}
.text_plus_elems .limit .content_box .photo_box,
.text_plus_elems .limit .content_box video {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}
.text_plus_elems .limit .content_box .photo_box:after,
.text_plus_elems .limit .content_box video:after {
  content: '';
  position: relative;
  width: 100%;
  display: block;
  padding-top: 60%;
}
.text_plus_elems .limit .content_box .photo_box .photo,
.text_plus_elems .limit .content_box video .photo {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
}
.text_plus_elems .limit .special_content_box {
  display: flex;
}
.text_plus_elems .limit .special_content_box .left,
.text_plus_elems .limit .special_content_box .right {
  width: 50%;
  text-align: center;
}
.text_plus_elems .limit .special_content_box .left .title,
.text_plus_elems .limit .special_content_box .right .title {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 9rem;
  margin-bottom: 4rem;
  margin-top: 7rem;
  position: relative;
  font-family: "Playfair Display";
}
.text_plus_elems .limit .special_content_box .left .title:after,
.text_plus_elems .limit .special_content_box .right .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 7rem;
  background: rgba(192, 168, 107, 0.5);
}
.text_plus_elems .limit .special_content_box .left .content,
.text_plus_elems .limit .special_content_box .right .content {
  padding: 4rem 2rem;
}
.text_plus_elems .limit .special_content_box .left .content .download,
.text_plus_elems .limit .special_content_box .right .content .download {
  background: white;
  padding: 1rem 3rem;
  color: #948671;
  transition: 0.3s all;
}
.text_plus_elems .limit .special_content_box .left .content .download:hover,
.text_plus_elems .limit .special_content_box .right .content .download:hover {
  background: rgba(255, 255, 255, 0.9);
}
.text_plus_elems .limit .special_content_box .left p,
.text_plus_elems .limit .special_content_box .right p {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.text_plus_elems .limit .special_content_box .left p strong,
.text_plus_elems .limit .special_content_box .right p strong {
  padding: 1rem 3rem;
  margin: 2rem;
  display: inline-block;
  font-family: "Playfair Display";
  letter-spacing: 1px;
  min-width: 130px;
}
.text_plus_elems .limit .special_content_box .left p em,
.text_plus_elems .limit .special_content_box .right p em {
  font-family: "Playfair Display";
}
.text_plus_elems .limit .special_content_box .left p:not(.no_after):after,
.text_plus_elems .limit .special_content_box .right p:not(.no_after):after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 3rem;
  height: 1px;
  background: white;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.text_plus_elems .limit .special_content_box .left p:last-of-type:after,
.text_plus_elems .limit .special_content_box .right p:last-of-type:after {
  display: none;
}
.text_plus_elems .limit .special_content_box .left {
  margin-right: 0.5rem;
  color: white;
  -webkit-transform: translate(0, -23vh);
  -moz-transform: translate(0, -23vh);
  -ms-transform: translate(0, -23vh);
  -o-transform: translate(0, -23vh);
  transform: translate(0, -23vh);
  position: relative;
}
.text_plus_elems .limit .special_content_box .left .content {
  background: #948671;
}
.text_plus_elems .limit .special_content_box .left p strong {
  border: 1px rgba(255, 255, 255, 0.5) solid;
}
.text_plus_elems .limit .special_content_box .left .contact span {
  padding: 1rem;
  text-transform: uppercase;
  color: #948671;
  position: absolute;
  bottom: -21vh;
  border: 1px #948671 solid;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.text_plus_elems .limit .special_content_box .left .contact span:hover {
  background: rgba(192, 168, 107, 0.3);
}
.text_plus_elems .limit .special_content_box .right {
  margin-left: 0.5rem;
  color: #948671;
}
.text_plus_elems .limit .special_content_box .right .content {
  background: #efeeee;
}
.text_plus_elems .limit .special_content_box .right p strong {
  border: 1px #948671 solid;
}
.text_plus_elems .limit .special_content_box .right p:after {
  background: #948671 !important;
}
@media all and (max-width: 1200px) {
  .text_plus_elems .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .text_plus_elems .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-height: 800px) {
  .text_plus_elems .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .text_plus_elems .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-width: 900px) {
  .text_plus_elems .limit {
    padding: 2rem;
  }
  .text_plus_elems .limit .content_box {
    padding: 4rem 0;
  }
  .text_plus_elems .limit .photos_box .left .in_box,
  .text_plus_elems .limit .photos_box .right .in_box {
    height: 110vw;
  }
  .text_plus_elems .limit .special_content_box {
    flex-direction: column;
  }
  .text_plus_elems .limit .special_content_box .left,
  .text_plus_elems .limit .special_content_box .right {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .text_plus_elems .limit .special_content_box .left .contact {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box {
    flex-direction: column;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box {
    padding-left: 0;
    height: auto;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .photo {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box {
    height: auto;
    padding: 4rem;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box {
    height: auto;
    padding-right: 0;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box .photo {
    height: 75vw;
  }
}
.grid-item--width20 {
  width: 20%;
}
.grid-item--width30 {
  width: 30%;
}
.grid-item--width40 {
  width: 40%;
}
.grid-item--width50 {
  width: 50%;
}
.grid-item--width60 {
  width: 60%;
}
.grid-item--width100 {
  width: 100%;
}
.grid-item--ratio100 {
  padding-top: 100%;
}
.grid-item--ratio80 {
  padding-top: 80%;
}
.grid-item--ratio75 {
  padding-top: 75%;
}
.grid-item--ratio60 {
  padding-top: 60%;
}
.grid-item--ratio50 {
  padding-top: 50%;
}
.grid-item--ratio40 {
  padding-top: 40%;
}
.grid-item--ratio30 {
  padding-top: 30%;
}
.grid-item--ratio20 {
  padding-top: 20%;
}
.absolute_top_left {
  position: absolute;
  top: 0;
  left: 0;
}
.gallery {
  position: relative;
  padding: 0 2rem;
}
.gallery.subtype1 .title {
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  position: relative;
}
.gallery.subtype1 .title h1 {
  padding: 0 4rem 4rem;
  text-align: center;
  font-size: 5rem;
}
.gallery .title {
  position: absolute;
  top: 0;
  background: white;
  z-index: 2;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  left: 50%;
  width: 300px;
}
.gallery .title h1 {
  color: #948671;
  padding: 4rem 4rem;
  font-family: "Playfair Display";
  font-style: italic;
  position: relative;
  text-align: center;
  font-size: 5rem;
}
.gallery .title h1:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2rem;
  background: #c0a86b;
  height: 1px;
  width: 30px;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.gallery .grid:after {
  content: '';
  display: block;
  clear: both;
}
.gallery .grid .grid-item {
  float: left;
  width: 20%;
  height: 100px;
  position: relative;
}
.gallery .grid .grid-item .photo {
  position: absolute;
  top: 0;
  left: 0;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.gallery .grid .grid-item .photo a {
  width: 100%;
  height: 100%;
}
.gallery .grid .grid-item.subtype1:nth-child(3n - 2) {
  width: 50%;
  padding-top: 40%;
}
.gallery .grid .grid-item.subtype1:nth-child(3n - 1) {
  width: 50%;
  padding-top: 60%;
}
.gallery .grid .grid-item.subtype1:nth-child(3n) {
  width: 50%;
  padding-top: 20%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 7) {
  width: 50%;
  padding-top: 40%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 6) {
  width: 50%;
  padding-top: 60%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 5) {
  width: 50%;
  padding-top: 60%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 4) {
  width: 50%;
  padding-top: 40%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 3) {
  width: 50%;
  padding-top: 40%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 2) {
  width: 50%;
  padding-top: 60%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n - 1) {
  width: 50%;
  padding-top: 20%;
}
.gallery .grid .grid-item.subtype2:nth-child(8n) {
  width: 100%;
  padding-top: 20%;
}
@media all and (max-width: 800px) {
  .gallery .title {
    padding-top: 4rem;
  }
  .gallery .grid .grid-item:nth-child(3n - 2),
  .gallery .grid .grid-item:nth-child(3n - 1),
  .gallery .grid .grid-item:nth-child(3n),
  .gallery .grid .grid-item:nth-child(8n),
  .gallery .grid .grid-item:nth-child(8n - 1),
  .gallery .grid .grid-item:nth-child(8n - 2),
  .gallery .grid .grid-item:nth-child(8n - 3),
  .gallery .grid .grid-item:nth-child(8n - 4),
  .gallery .grid .grid-item:nth-child(8n - 5),
  .gallery .grid .grid-item:nth-child(8n - 6),
  .gallery .grid .grid-item:nth-child(8n - 7) {
    width: 100%;
    padding-top: 75%;
  }
}
.team .limit {
  padding: 4rem;
  position: relative;
  color: black;
}
.team .limit .photos_box {
  display: flex;
  flex-direction: row;
}
.team .limit .photos_box .left,
.team .limit .photos_box .right {
  width: 50%;
}
.team .limit .photos_box .left .in_box,
.team .limit .photos_box .right .in_box {
  height: 80vh;
}
.team .limit .photos_box .left .in_box .photo,
.team .limit .photos_box .right .in_box .photo {
  display: flex;
  height: 100%;
  width: 100%;
}
.team .limit .photos_box .left .in_box {
  padding-right: 0.5rem;
}
.team .limit .photos_box .left .in_box .photo {
  height: 100%;
}
.team .limit .photos_box .right .in_box {
  padding-left: 0.5rem;
  height: 80vh;
}
.team .limit .content_box {
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  padding: 4rem;
  background: white;
  -webkit-transform: translate(0, -20%);
  -moz-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  -o-transform: translate(0, -20%);
  transform: translate(0, -20%);
  z-index: 2;
  max-height: 127vh;
  overflow: auto;
  text-align: center;
}
.team .limit .content_box h1 {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  /*margin-top: 7rem;*/
  position: relative;
  font-family: "Playfair Display";
}
.team .limit .content_box h1.main_title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 1px;
  background: #948671;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.team .limit .content_box h1 strong {
  font-family: Lato;
  font-size: 1.6rem;
  font-style: normal;
  padding-top: 2rem;
  display: block;
  text-transform: uppercase;
}
.team .limit .content_box p {
  text-align: center;
}
.team .limit .content_box .photo_box {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}
.team .limit .content_box .photo_box:after {
  content: '';
  position: relative;
  width: 100%;
  display: block;
  padding-top: 60%;
}
.team .limit .content_box .photo_box .photo {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
}
.team .limit .all_team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}
.team .limit .all_team .item {
  width: 33%;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 300px;
}
.team .limit .all_team .item:nth-child(3n - 2),
.team .limit .all_team .item:nth-child(3n) {
  background: #948671;
}
.team .limit .all_team .item:nth-child(3n - 2):before,
.team .limit .all_team .item:nth-child(3n):before {
  background: rgba(255, 255, 255, 0.5);
}
.team .limit .all_team .item:nth-child(3n - 2) .item_box .content h3,
.team .limit .all_team .item:nth-child(3n) .item_box .content h3,
.team .limit .all_team .item:nth-child(3n - 2) .item_box .content span,
.team .limit .all_team .item:nth-child(3n) .item_box .content span {
  color: white;
}
.team .limit .all_team .item:nth-child(3n - 1):before {
  background: rgba(192, 168, 107, 0.5);
}
.team .limit .all_team .item:nth-child(3n - 1) .item_box {
  flex-direction: column-reverse;
}
.team .limit .all_team .item:nth-child(3n - 1) .item_box .content h3,
.team .limit .all_team .item:nth-child(3n - 1) .item_box .content span {
  color: #948671;
}
.team .limit .all_team .item:after {
  content: '';
  position: relative;
  padding-top: 120%;
}
.team .limit .all_team .item:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 1px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
}
.team .limit .all_team .item .item_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.team .limit .all_team .item .item_box .content,
.team .limit .all_team .item .item_box .photo_box {
  height: 50%;
}
.team .limit .all_team .item .item_box .content {
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.team .limit .all_team .item .item_box .content h3 {
  font-size: 3rem;
  font-family: "Playfair Display";
  font-style: italic;
}
.team .limit .all_team .item .item_box .content span {
  font-size: 1.6rem;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
.team .limit .all_team .item .item_box .content .team_desc {
  font-size: 1.2rem;
  padding: 0 1rem;
  max-width: 300px;
}
.team .limit .all_team .item .item_box .content .team_desc p {
  line-height: 1.8rem;
}
.team .limit .all_team .item .item_box .photo_box {
  position: relative;
  display: flex;
}
.team .limit .all_team .item .item_box .photo_box .photo {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 1200px) {
  .team .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .team .limit .content_box h1 {
    margin-top: 0;
  }
}
.zone.contact_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 2rem;
}
.zone.contact_form .limit {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  background: #948671;
}
.zone.contact_form .limit .form_box {
  position: relative;
}
.zone.contact_form .limit .form_box .form {
  background-size: cover;
  width: 80%;
  min-width: 300px;
  margin: 4rem auto 4rem auto;
}
.zone.contact_form .limit .form_box .form span {
  font-family: "Amatic SC";
  font-size: 6rem;
  text-align: center;
  color: #f7e7d0;
  display: block;
  padding-top: 6rem;
  text-transform: uppercase;
}
.zone.contact_form .limit .form_box form {
  padding: 3rem;
  flex-wrap: wrap;
  z-index: 1;
  color: white;
}
.zone.contact_form .limit .form_box form .success {
  float: left;
  width: 100%;
  margin-top: 25px;
  padding: 1rem;
  border: 1px solid #fff;
  text-align: center;
}
.zone.contact_form .limit .form_box form .error {
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.zone.contact_form .limit .form_box form:after {
  display: block;
  content: "";
  clear: both;
}
.zone.contact_form .limit .form_box form .form-group {
  width: calc(50% - 1.4rem);
  margin: 0.7rem;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(1) {
  float: left;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(2) {
  float: right;
  margin-right: 0;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(3) {
  float: left;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(3) input {
  padding-bottom: 9rem;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(4) {
  float: right;
  margin-right: 0;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(5) {
  float: right;
  margin-right: 0;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(6) {
  width: 100%;
  float: left;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(7) {
  float: left;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(7) label {
  flex: 1;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(7) input {
  flex: 0;
  min-width: 15px;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(7) > div input {
  order: -1;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(7) > div label {
  display: inline-block;
  width: 100%;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(8) {
  width: 100%;
  text-align: left;
  justify-content: left;
  float: left;
  overflow: hidden;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(8) > div label {
  display: block;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(9) {
  width: 150px;
  justify-content: center;
  align-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 30% 0 0;
  float: left;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(9) button {
  height: auto;
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  background: white;
  padding: 1rem 3rem;
  color: #948671;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Playfair Display";
  transition: 0.3s all;
}
.zone.contact_form .limit .form_box form .form-group:nth-child(9) button:hover {
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}
.zone.contact_form .limit .form_box form .form-group > div {
  display: flex;
}
.zone.contact_form .limit .form_box form .form-group > div label {
  display: none;
  width: 100px;
  color: #f7e7d0;
  font-style: italic;
}
.zone.contact_form .limit .form_box form .form-group input,
.zone.contact_form .limit .form_box form .form-group textarea {
  width: 100%;
  padding: 2rem;
  background: transparent;
  border: 1px rgba(255, 255, 255, 0.5) solid;
  color: #fff;
}
.zone.contact_form .limit .form_box form .form-group input::placeholder,
.zone.contact_form .limit .form_box form .form-group textarea::placeholder {
  color: white;
  font-family: "Playfair Display";
}
.zone.contact_form .limit .form_box form .form-group textarea {
  height: 10rem;
  width: calc(100% - 0.7rem);
  resize: vertical;
}
.zone.contact_form .limit .title {
  position: absolute;
  top: 0;
  background: white;
  z-index: 2;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  left: 50%;
  width: 40%;
  min-width: 300px;
}
.zone.contact_form .limit .title h1 {
  color: #948671;
  padding: 4rem 10rem;
  font-family: "Playfair Display";
  font-style: italic;
  position: relative;
  text-align: center;
  font-size: 5rem;
}
.zone.contact_form .limit .title h1:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2rem;
  background: #c0a86b;
  height: 1px;
  width: 30px;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.zone.contact_form .limit .content_box {
  position: relative;
  top: 0;
  padding: 0 4rem 4rem 4rem;
  background: white;
  z-index: 2;
  overflow: auto;
  width: calc(40% + 4rem);
  min-width: 300px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
}
.zone.contact_form .limit .content_box p {
  text-align: center;
  line-height: 2.6rem;
}
@media all and (max-width: 1200px) {
  .contact_form .limit .content_box {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .contact_form .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-width: 1024px) {
  .zone.contact_form .limit .title {
    position: relative;
    top: 0;
    left: 0;
    width: calc(100% - 4rem);
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    transform: unset;
    margin: -150px auto 0;
  }
  .zone.contact_form .limit .content_box {
    width: calc(100% - 4rem);
  }
}
@media all and (max-width: 800px) {
  .zone.contact_form .limit .title {
    margin-top: -50px;
  }
  .zone.contact_form .limit .title h1 {
    font-size: 4rem;
  }
  .zone.contact_form .limit .form_box .form {
    padding: 0rem;
    min-width: 0;
  }
  .zone.contact_form .limit .form_box .form form {
    padding: 0;
  }
  .zone.contact_form .limit .form_box .form form .form-group {
    float: left!important;
    margin: 0.7rem 0 !important;
    width: 100%!important;
  }
  .zone.contact_form .limit .form_box .form form .form-group textarea {
    width: 100%;
    padding-left: 10%;
  }
}
@media all and (min-width: 800px) {
  .zone.contact_form {
    padding: 4rem;
  }
  .zone.contact_form .limit .form_box {
    justify-content: center;
    display: flex;
  }
  .zone.contact_form .limit .form_box .form {
    max-width: 80%;
  }
  .zone.contact_form .limit .form_box .form .form-group:nth-child(8) {
    justify-content: left;
    display: flex;
  }
}
.text_only_plus_elems {
  position: relative;
  z-index: 2;
}
.text_only_plus_elems .limit {
  padding: 4rem;
  position: relative;
  color: black;
}
.text_only_plus_elems .limit .content_box {
  position: relative;
  background: #fff;
  margin-top: -15vh;
  padding: 4rem;
  background: white;
}
.text_only_plus_elems .limit .content_box > span {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.text_only_plus_elems .limit .content_box > span > p {
  text-align: center;
}
.text_only_plus_elems .limit .content_box h1 {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding: 0 4rem 2rem;
  margin-bottom: 4rem;
  /*margin-top: 7rem;*/
  position: relative;
  font-family: "Playfair Display";
  text-align: center;
}
.text_only_plus_elems .limit .content_box h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  width: 30px;
  height: 1px;
  background: #948671;
}
.text_only_plus_elems .limit .content_box p {
  text-align: justify;
}
.text_only_plus_elems .limit .content_box .photo_box,
.text_only_plus_elems .limit .content_box video {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}
.text_only_plus_elems .limit .content_box .photo_box:after,
.text_only_plus_elems .limit .content_box video:after {
  content: '';
  position: relative;
  width: 100%;
  display: block;
  padding-top: 60%;
}
.text_only_plus_elems .limit .content_box .photo_box .photo,
.text_only_plus_elems .limit .content_box video .photo {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
}
.text_only_plus_elems .limit .special_content_box {
  display: flex;
  flex-direction: row;
}
.text_only_plus_elems .limit .special_content_box .subtitle {
  font-family: "Playfair Display";
  margin-bottom: 4rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #948671;
}
.text_only_plus_elems .limit .special_content_box .left,
.text_only_plus_elems .limit .special_content_box .right {
  width: 50%;
  text-align: center;
}
.text_only_plus_elems .limit .special_content_box .left .title,
.text_only_plus_elems .limit .special_content_box .right .title {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 9rem;
  margin-bottom: 4rem;
  margin-top: 7rem;
  position: relative;
  font-family: "Playfair Display";
}
.text_only_plus_elems .limit .special_content_box .left .title:after,
.text_only_plus_elems .limit .special_content_box .right .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 7rem;
  background: rgba(192, 168, 107, 0.5);
}
.text_only_plus_elems .limit .special_content_box .left .content,
.text_only_plus_elems .limit .special_content_box .right .content {
  padding: 4rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text_only_plus_elems .limit .special_content_box .left .content .download,
.text_only_plus_elems .limit .special_content_box .right .content .download {
  background: white;
  padding: 1rem 3rem;
  color: #948671;
  transition: 0.3s all;
}
.text_only_plus_elems .limit .special_content_box .left .content .download:hover,
.text_only_plus_elems .limit .special_content_box .right .content .download:hover {
  background: rgba(255, 255, 255, 0.9);
}
.text_only_plus_elems .limit .special_content_box .left p,
.text_only_plus_elems .limit .special_content_box .right p {
  position: relative;
}
.text_only_plus_elems .limit .special_content_box .left p strong,
.text_only_plus_elems .limit .special_content_box .right p strong {
  padding: 1rem 3rem;
  margin: 2rem;
  display: inline-block;
  font-family: "Playfair Display";
  letter-spacing: 1px;
  min-width: 130px;
}
.text_only_plus_elems .limit .special_content_box .left p em,
.text_only_plus_elems .limit .special_content_box .right p em {
  font-family: "Playfair Display";
}
.text_only_plus_elems .limit .special_content_box .left p:not(.no_after):after,
.text_only_plus_elems .limit .special_content_box .right p:not(.no_after):after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 3rem;
  height: 1px;
  background: white;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.text_only_plus_elems .limit .special_content_box .left p:last-of-type:after,
.text_only_plus_elems .limit .special_content_box .right p:last-of-type:after {
  display: none;
}
.text_only_plus_elems .limit .special_content_box .left {
  margin-right: 0.5rem;
  color: white;
  position: relative;
}
.text_only_plus_elems .limit .special_content_box .left .content {
  background: #948671;
}
.text_only_plus_elems .limit .special_content_box .left p strong {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  display: block;
}
.text_only_plus_elems .limit .special_content_box .left .contact span {
  padding: 1rem;
  text-transform: uppercase;
  color: #948671;
  position: absolute;
  bottom: -21vh;
  border: 1px #948671 solid;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.text_only_plus_elems .limit .special_content_box .left .contact span:hover {
  background: rgba(192, 168, 107, 0.3);
}
.text_only_plus_elems .limit .special_content_box .right {
  margin-left: 0.5rem;
  color: #948671;
}
.text_only_plus_elems .limit .special_content_box .right .content {
  background: #efeeee;
}
.text_only_plus_elems .limit .special_content_box .right p strong {
  border: 1px #948671 solid;
}
.text_only_plus_elems .limit .special_content_box .right p:after {
  background: #948671 !important;
}
@media all and (max-width: 1200px) {
  .text_only_plus_elems .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .text_only_plus_elems .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-height: 800px) {
  .text_only_plus_elems .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .text_only_plus_elems .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-width: 900px) {
  .text_only_plus_elems .limit {
    padding: 2rem;
  }
  .text_only_plus_elems .limit .content_box {
    padding: 4rem 0;
  }
  .text_only_plus_elems .limit .photos_box .left .in_box,
  .text_only_plus_elems .limit .photos_box .right .in_box {
    height: 110vw;
  }
  .text_only_plus_elems .limit .special_content_box {
    flex-direction: column;
  }
  .text_only_plus_elems .limit .special_content_box .left,
  .text_only_plus_elems .limit .special_content_box .right {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .text_only_plus_elems .limit .special_content_box .left .contact {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box {
    flex-direction: column;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box {
    padding-left: 0;
    height: auto;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .photo {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box {
    height: auto;
    padding: 4rem;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box {
    height: auto;
    padding-right: 0;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box .photo {
    height: 75vw;
  }
}
.texte_for_doc {
  position: relative;
  z-index: 2;
}
.texte_for_doc .contact {
  margin: 25px auto 50px;
  text-align: center;
}
.texte_for_doc .contact a {
  display: inline-block;
}
.texte_for_doc .contact span {
  padding: 1rem;
  text-transform: uppercase;
  color: #948671;
  border: 1px #948671 solid;
  transition: all 500ms;
}
.texte_for_doc .contact span:hover {
  background: rgba(192, 168, 107, 0.3);
}
.texte_for_doc .limit {
  padding: 4rem;
  position: relative;
  color: black;
}
.texte_for_doc .limit .content_box {
  position: relative;
  background: #fff;
  margin-top: -15vh;
  padding: 4rem;
  background: white;
}
.texte_for_doc .limit .content_box > span {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.texte_for_doc .limit .content_box > span > p {
  text-align: center;
}
.texte_for_doc .limit .content_box h1 {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding: 0 1rem 4rem;
  margin-bottom: 4rem;
  /*margin-top: 7rem;*/
  position: relative;
  font-family: "Playfair Display";
  text-align: center;
}
.texte_for_doc .limit .content_box h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  width: 30px;
  height: 1px;
  background: #948671;
}
.texte_for_doc .limit .content_box p {
  text-align: justify;
}
.texte_for_doc .limit .content_box .photo_box,
.texte_for_doc .limit .content_box video {
  width: 100%;
  position: relative;
  margin-top: 4rem;
}
.texte_for_doc .limit .content_box .photo_box:after,
.texte_for_doc .limit .content_box video:after {
  content: '';
  position: relative;
  width: 100%;
  display: block;
  padding-top: 60%;
}
.texte_for_doc .limit .content_box .photo_box .photo,
.texte_for_doc .limit .content_box video .photo {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
}
.texte_for_doc .limit .special_content_box {
  display: flex;
  flex-direction: row;
}
.texte_for_doc .limit .special_content_box .subtitle {
  font-family: "Playfair Display";
  margin-bottom: 4rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #948671;
}
.texte_for_doc .limit .special_content_box .left,
.texte_for_doc .limit .special_content_box .right {
  width: 50%;
  text-align: center;
}
.texte_for_doc .limit .special_content_box .left .title,
.texte_for_doc .limit .special_content_box .right .title {
  font-size: 5rem;
  font-style: italic;
  color: #948671;
  padding-bottom: 9rem;
  margin-bottom: 4rem;
  position: relative;
  font-family: "Playfair Display";
}
.texte_for_doc .limit .special_content_box .left .title:after,
.texte_for_doc .limit .special_content_box .right .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 7rem;
  background: rgba(192, 168, 107, 0.5);
}
.texte_for_doc .limit .special_content_box .left .content,
.texte_for_doc .limit .special_content_box .right .content {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.texte_for_doc .limit .special_content_box .left .content .download,
.texte_for_doc .limit .special_content_box .right .content .download {
  background: white;
  padding: 1rem 3rem;
  color: #948671;
  transition: 0.3s all;
}
.texte_for_doc .limit .special_content_box .left .content .download:hover,
.texte_for_doc .limit .special_content_box .right .content .download:hover {
  background: rgba(255, 255, 255, 0.9);
}
.texte_for_doc .limit .special_content_box .left p,
.texte_for_doc .limit .special_content_box .right p {
  position: relative;
}
.texte_for_doc .limit .special_content_box .left p strong,
.texte_for_doc .limit .special_content_box .right p strong {
  padding: 1rem 3rem;
  margin: 2rem;
  display: inline-block;
  font-family: "Playfair Display";
  letter-spacing: 1px;
  min-width: 130px;
}
.texte_for_doc .limit .special_content_box .left p em,
.texte_for_doc .limit .special_content_box .right p em {
  font-family: "Playfair Display";
}
.texte_for_doc .limit .special_content_box .left p:not(.no_after):after,
.texte_for_doc .limit .special_content_box .right p:not(.no_after):after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 3rem;
  height: 1px;
  background: white;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
.texte_for_doc .limit .special_content_box .left p:last-of-type:after,
.texte_for_doc .limit .special_content_box .right p:last-of-type:after {
  display: none;
}
.texte_for_doc .limit .special_content_box .left {
  margin-right: 0.5rem;
  color: white;
  position: relative;
}
.texte_for_doc .limit .special_content_box .left .content {
  background: #948671;
}
.texte_for_doc .limit .special_content_box .left p strong {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  display: block;
}
.texte_for_doc .limit .special_content_box .right {
  margin-left: 0.5rem;
  color: #948671;
}
.texte_for_doc .limit .special_content_box .right .content {
  background: #efeeee;
}
.texte_for_doc .limit .special_content_box .right p strong {
  border: 1px #948671 solid;
}
.texte_for_doc .limit .special_content_box .right p:after {
  background: #948671 !important;
}
@media all and (max-width: 1200px) {
  .texte_for_doc .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .texte_for_doc .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-height: 800px) {
  .texte_for_doc .limit .content_box {
    position: relative;
    left: 0;
    right: 0;
    max-height: none;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .texte_for_doc .limit .content_box h1 {
    margin-top: 0;
  }
}
@media all and (max-width: 900px) {
  .texte_for_doc .limit {
    padding: 2rem;
  }
  .texte_for_doc .limit .content_box {
    padding: 4rem 0;
  }
  .texte_for_doc .limit .photos_box .left .in_box,
  .texte_for_doc .limit .photos_box .right .in_box {
    height: 110vw;
  }
  .texte_for_doc .limit .special_content_box {
    flex-direction: column;
  }
  .texte_for_doc .limit .special_content_box .left,
  .texte_for_doc .limit .special_content_box .right {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .texte_for_doc .limit .special_content_box .left .contact {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box {
    flex-direction: column;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box {
    padding-left: 0;
    height: auto;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .photo {
    display: none;
  }
  .text_plus_elems.subtype3 .limit .photos_box .right .in_box .sub_content_box {
    height: auto;
    padding: 4rem;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left {
    width: 100%;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box {
    height: auto;
    padding-right: 0;
  }
  .text_plus_elems.subtype3 .limit .photos_box .left .in_box .photo {
    height: 75vw;
  }
}
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;
}
.inline-block,
ul.hack-inline > li {
  display: inline-block;
}
ol,
ul {
  list-style: none;
}
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 * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.hack-inline {
  letter-spacing: -0.5em !important;
}
.hack-inline > * {
  letter-spacing: normal;
  display: inline-block;
}
.block {
  display: block;
}
.none {
  display: none;
}
.flex {
  display: flex;
  -webkit-display: -webkit-flex;
}
.flex > * {
  flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.clear {
  clear: both;
}
.padding_top_0 {
  padding-top: 0 !important;
}
.padding_bottom_0 {
  padding-bottom: 0 !important;
}
.margin_top_0 {
  margin-top: 0 !important;
}
.margin_0_auto {
  margin: 0 auto;
}
.centerblock {
  margin: 0 auto;
  display: block;
}
.uppercase {
  text-transform: uppercase;
}
.justify {
  text-align: justify;
}
.photo {
  overflow: hidden;
  justify-content: center;
  object-position: 50% 50%;
}
.photo img {
  flex: 1;
  object-fit: cover;
}
.photo img.contain {
  object-fit: contain;
}
.centerX,
.centerXY,
.centerY {
  position: absolute;
}
.centerXY {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.centerX {
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
.centerY,
.trigger:after {
  transform: translate(0, -50%);
}
.centerY {
  top: 50%;
  -webkit-transform: translate(0, -50%);
}
.grid_2 > .element {
  width: 50%;
}
.grid_3 > .element {
  width: 33.3%;
}
.grid_4 > .element {
  width: 25%;
}
.grid_5 > .element {
  width: 20%;
}
.flex_wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.align_content_center {
  align-content: center;
  -webkit-align-content: center;
  -ms-align-content: center;
}
.justify_center {
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.flex_0 {
  flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
}
.flex_column {
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}
.element {
  position: relative;
}
.mailto {
  cursor: pointer;
}
.container,
.small_container,
.big_container {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.container {
  max-width: 100rem;
}
.big_container {
  max-width: 160rem;
}
.small_container {
  max-width: 80rem;
}
.opa0 {
  opacity: 0;
}
.opa1 {
  opacity: 1;
}
@media all and (min-width: 1024px) {
  .apparition {
    transition: all 1000ms;
  }
  .apparition.hide {
    opacity: 0 !important;
  }
  .apparition_right.hide {
    transform: translate(15rem);
    -webkit-transform: translate(15rem);
    position: relative;
  }
  .apparition_right.hide:after {
    width: 100%;
  }
  .apparition_left.hide {
    transform: translate(-15rem);
    -webkit-transform: translate(-15rem);
    position: relative;
  }
  .apparition_left.hide:after {
    width: 100%;
  }
  .apparition_top.hide {
    transform: translate(0, -15rem);
    -webkit-transform: translate(0, -15rem);
    position: relative;
  }
  .apparition_top.hide:before {
    height: 100%;
  }
  .apparition_bottom.hide {
    transform: translate(0, 15rem);
    -webkit-transform: translate(0, 15rem);
  }
  .apparition_bottom.hide:after {
    height: 100%;
  }
  .apparition_bottom {
    transform: translate(0);
    -webkit-transform: translate(0);
  }
  .apparition_bottom:after {
    content: '';
    position: absolute;
    z-index: 1;
    background: white;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0%;
    transition: 0.8s all;
  }
  .apparition_top {
    transform: translate(0);
    -webkit-transform: translate(0);
  }
  .apparition_top:before {
    content: '';
    position: absolute;
    z-index: 1;
    background: white;
    right: 0;
    top: 0;
    left: 0;
    height: 0%;
    transition: 0.8s all;
  }
  .apparition_left {
    transform: translate(0);
    -webkit-transform: translate(0);
  }
  .apparition_left:after {
    content: '';
    position: absolute;
    z-index: 1;
    background: white;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    transition: 0.8s all;
  }
  .apparition_right {
    transform: translate(0);
    -webkit-transform: translate(0);
  }
  .apparition_right:after {
    content: '';
    position: absolute;
    z-index: 1;
    background: white;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    transition: 0.8s all;
  }
  .apparition_bottom_absolute {
    margin-top: 5rem;
  }
  .apparition_bottom_absolute.show {
    margin-top: 0;
  }
  .apparition_top_absolute {
    margin-bottom: 5rem;
  }
  .apparition_top_absolute.show {
    margin-bottom: 0;
  }
  .apparition_left_absolute {
    margin-right: 5rem;
  }
  .apparition_left_absolute.show {
    margin-right: 0;
  }
  .apparition_right_absolute {
    margin-left: 5rem;
  }
  .apparition_right_absolute.show {
    margin-left: 0;
  }
}
.main.no_diapo {
  margin-top: 15rem;
}
.delay_0 {
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
  transition: all 0s !important;
  -webkit-transition: all 0s !important;
}
.overflow {
  overflow: hidden;
}
.popup {
  width: 800px;
}
.popup.document {
  height: 90vh;
}
.popup.document > iframe {
  height: 100%;
}
.popup iframe {
  width: 100%;
}
.mw1000 {
  max-width: 100rem;
}
.mw1200 {
  max-width: 120rem;
}
.mw1600 {
  max-width: 160rem;
}
.mw800 {
  max-width: 80rem;
}
.mw900 {
  max-width: 90rem;
}
.w1 {
  width: 1%;
}
.h1 {
  height: 1%;
}
.mw1 {
  max-width: 1%;
}
.w2 {
  width: 2%;
}
.h2 {
  height: 2%;
}
.mw2 {
  max-width: 2%;
}
.w3 {
  width: 3%;
}
.h3 {
  height: 3%;
}
.mw3 {
  max-width: 3%;
}
.w4 {
  width: 4%;
}
.h4 {
  height: 4%;
}
.mw4 {
  max-width: 4%;
}
.w5 {
  width: 5%;
}
.h5 {
  height: 5%;
}
.mw5 {
  max-width: 5%;
}
.w6 {
  width: 6%;
}
.h6 {
  height: 6%;
}
.mw6 {
  max-width: 6%;
}
.w7 {
  width: 7%;
}
.h7 {
  height: 7%;
}
.mw7 {
  max-width: 7%;
}
.w8 {
  width: 8%;
}
.h8 {
  height: 8%;
}
.mw8 {
  max-width: 8%;
}
.w9 {
  width: 9%;
}
.h9 {
  height: 9%;
}
.mw9 {
  max-width: 9%;
}
.w10 {
  width: 10%;
}
.h10 {
  height: 10%;
}
.mw10 {
  max-width: 10%;
}
.w11 {
  width: 11%;
}
.h11 {
  height: 11%;
}
.mw11 {
  max-width: 11%;
}
.w12 {
  width: 12%;
}
.h12 {
  height: 12%;
}
.mw12 {
  max-width: 12%;
}
.w13 {
  width: 13%;
}
.h13 {
  height: 13%;
}
.mw13 {
  max-width: 13%;
}
.w14 {
  width: 14%;
}
.h14 {
  height: 14%;
}
.mw14 {
  max-width: 14%;
}
.w15 {
  width: 15%;
}
.h15 {
  height: 15%;
}
.mw15 {
  max-width: 15%;
}
.w16 {
  width: 16%;
}
.h16 {
  height: 16%;
}
.mw16 {
  max-width: 16%;
}
.w17 {
  width: 17%;
}
.h17 {
  height: 17%;
}
.mw17 {
  max-width: 17%;
}
.w18 {
  width: 18%;
}
.h18 {
  height: 18%;
}
.mw18 {
  max-width: 18%;
}
.w19 {
  width: 19%;
}
.h19 {
  height: 19%;
}
.mw19 {
  max-width: 19%;
}
.w20 {
  width: 20%;
}
.h20 {
  height: 20%;
}
.mw20 {
  max-width: 20%;
}
.w21 {
  width: 21%;
}
.h21 {
  height: 21%;
}
.mw21 {
  max-width: 21%;
}
.w22 {
  width: 22%;
}
.h22 {
  height: 22%;
}
.mw22 {
  max-width: 22%;
}
.w23 {
  width: 23%;
}
.h23 {
  height: 23%;
}
.mw23 {
  max-width: 23%;
}
.w24 {
  width: 24%;
}
.h24 {
  height: 24%;
}
.mw24 {
  max-width: 24%;
}
.w25 {
  width: 25%;
}
.h25 {
  height: 25%;
}
.mw25 {
  max-width: 25%;
}
.w26 {
  width: 26%;
}
.h26 {
  height: 26%;
}
.mw26 {
  max-width: 26%;
}
.w27 {
  width: 27%;
}
.h27 {
  height: 27%;
}
.mw27 {
  max-width: 27%;
}
.w28 {
  width: 28%;
}
.h28 {
  height: 28%;
}
.mw28 {
  max-width: 28%;
}
.w29 {
  width: 29%;
}
.h29 {
  height: 29%;
}
.mw29 {
  max-width: 29%;
}
.w30 {
  width: 30%;
}
.h30 {
  height: 30%;
}
.mw30 {
  max-width: 30%;
}
.w31 {
  width: 31%;
}
.h31 {
  height: 31%;
}
.mw31 {
  max-width: 31%;
}
.w32 {
  width: 32%;
}
.h32 {
  height: 32%;
}
.mw32 {
  max-width: 32%;
}
.w33 {
  width: 33%;
}
.h33 {
  height: 33%;
}
.mw33 {
  max-width: 33%;
}
.w34 {
  width: 34%;
}
.h34 {
  height: 34%;
}
.mw34 {
  max-width: 34%;
}
.w35 {
  width: 35%;
}
.h35 {
  height: 35%;
}
.mw35 {
  max-width: 35%;
}
.w36 {
  width: 36%;
}
.h36 {
  height: 36%;
}
.mw36 {
  max-width: 36%;
}
.w37 {
  width: 37%;
}
.h37 {
  height: 37%;
}
.mw37 {
  max-width: 37%;
}
.w38 {
  width: 38%;
}
.h38 {
  height: 38%;
}
.mw38 {
  max-width: 38%;
}
.w39 {
  width: 39%;
}
.h39 {
  height: 39%;
}
.mw39 {
  max-width: 39%;
}
.w40 {
  width: 40%;
}
.h40 {
  height: 40%;
}
.mw40 {
  max-width: 40%;
}
.w41 {
  width: 41%;
}
.h41 {
  height: 41%;
}
.mw41 {
  max-width: 41%;
}
.w42 {
  width: 42%;
}
.h42 {
  height: 42%;
}
.mw42 {
  max-width: 42%;
}
.w43 {
  width: 43%;
}
.h43 {
  height: 43%;
}
.mw43 {
  max-width: 43%;
}
.w44 {
  width: 44%;
}
.h44 {
  height: 44%;
}
.mw44 {
  max-width: 44%;
}
.w45 {
  width: 45%;
}
.h45 {
  height: 45%;
}
.mw45 {
  max-width: 45%;
}
.w46 {
  width: 46%;
}
.h46 {
  height: 46%;
}
.mw46 {
  max-width: 46%;
}
.w47 {
  width: 47%;
}
.h47 {
  height: 47%;
}
.mw47 {
  max-width: 47%;
}
.w48 {
  width: 48%;
}
.h48 {
  height: 48%;
}
.mw48 {
  max-width: 48%;
}
.w49 {
  width: 49%;
}
.h49 {
  height: 49%;
}
.mw49 {
  max-width: 49%;
}
.w50 {
  width: 50%;
}
.h50 {
  height: 50%;
}
.mw50 {
  max-width: 50%;
}
.w51 {
  width: 51%;
}
.h51 {
  height: 51%;
}
.mw51 {
  max-width: 51%;
}
.w52 {
  width: 52%;
}
.h52 {
  height: 52%;
}
.mw52 {
  max-width: 52%;
}
.w53 {
  width: 53%;
}
.h53 {
  height: 53%;
}
.mw53 {
  max-width: 53%;
}
.w54 {
  width: 54%;
}
.h54 {
  height: 54%;
}
.mw54 {
  max-width: 54%;
}
.w55 {
  width: 55%;
}
.h55 {
  height: 55%;
}
.mw55 {
  max-width: 55%;
}
.w56 {
  width: 56%;
}
.h56 {
  height: 56%;
}
.mw56 {
  max-width: 56%;
}
.w57 {
  width: 57%;
}
.h57 {
  height: 57%;
}
.mw57 {
  max-width: 57%;
}
.w58 {
  width: 58%;
}
.h58 {
  height: 58%;
}
.mw58 {
  max-width: 58%;
}
.w59 {
  width: 59%;
}
.h59 {
  height: 59%;
}
.mw59 {
  max-width: 59%;
}
.w60 {
  width: 60%;
}
.h60 {
  height: 60%;
}
.mw60 {
  max-width: 60%;
}
.w61 {
  width: 61%;
}
.h61 {
  height: 61%;
}
.mw61 {
  max-width: 61%;
}
.w62 {
  width: 62%;
}
.h62 {
  height: 62%;
}
.mw62 {
  max-width: 62%;
}
.w63 {
  width: 63%;
}
.h63 {
  height: 63%;
}
.mw63 {
  max-width: 63%;
}
.w64 {
  width: 64%;
}
.h64 {
  height: 64%;
}
.mw64 {
  max-width: 64%;
}
.w65 {
  width: 65%;
}
.h65 {
  height: 65%;
}
.mw65 {
  max-width: 65%;
}
.w66 {
  width: 66%;
}
.h66 {
  height: 66%;
}
.mw66 {
  max-width: 66%;
}
.w67 {
  width: 67%;
}
.h67 {
  height: 67%;
}
.mw67 {
  max-width: 67%;
}
.w68 {
  width: 68%;
}
.h68 {
  height: 68%;
}
.mw68 {
  max-width: 68%;
}
.w69 {
  width: 69%;
}
.h69 {
  height: 69%;
}
.mw69 {
  max-width: 69%;
}
.w70 {
  width: 70%;
}
.h70 {
  height: 70%;
}
.mw70 {
  max-width: 70%;
}
.w71 {
  width: 71%;
}
.h71 {
  height: 71%;
}
.mw71 {
  max-width: 71%;
}
.w72 {
  width: 72%;
}
.h72 {
  height: 72%;
}
.mw72 {
  max-width: 72%;
}
.w73 {
  width: 73%;
}
.h73 {
  height: 73%;
}
.mw73 {
  max-width: 73%;
}
.w74 {
  width: 74%;
}
.h74 {
  height: 74%;
}
.mw74 {
  max-width: 74%;
}
.w75 {
  width: 75%;
}
.h75 {
  height: 75%;
}
.mw75 {
  max-width: 75%;
}
.w76 {
  width: 76%;
}
.h76 {
  height: 76%;
}
.mw76 {
  max-width: 76%;
}
.w77 {
  width: 77%;
}
.h77 {
  height: 77%;
}
.mw77 {
  max-width: 77%;
}
.w78 {
  width: 78%;
}
.h78 {
  height: 78%;
}
.mw78 {
  max-width: 78%;
}
.w79 {
  width: 79%;
}
.h79 {
  height: 79%;
}
.mw79 {
  max-width: 79%;
}
.w80 {
  width: 80%;
}
.h80 {
  height: 80%;
}
.mw80 {
  max-width: 80%;
}
.w81 {
  width: 81%;
}
.h81 {
  height: 81%;
}
.mw81 {
  max-width: 81%;
}
.w82 {
  width: 82%;
}
.h82 {
  height: 82%;
}
.mw82 {
  max-width: 82%;
}
.w83 {
  width: 83%;
}
.h83 {
  height: 83%;
}
.mw83 {
  max-width: 83%;
}
.w84 {
  width: 84%;
}
.h84 {
  height: 84%;
}
.mw84 {
  max-width: 84%;
}
.w85 {
  width: 85%;
}
.h85 {
  height: 85%;
}
.mw85 {
  max-width: 85%;
}
.w86 {
  width: 86%;
}
.h86 {
  height: 86%;
}
.mw86 {
  max-width: 86%;
}
.w87 {
  width: 87%;
}
.h87 {
  height: 87%;
}
.mw87 {
  max-width: 87%;
}
.w88 {
  width: 88%;
}
.h88 {
  height: 88%;
}
.mw88 {
  max-width: 88%;
}
.w89 {
  width: 89%;
}
.h89 {
  height: 89%;
}
.mw89 {
  max-width: 89%;
}
.w90 {
  width: 90%;
}
.h90 {
  height: 90%;
}
.mw90 {
  max-width: 90%;
}
.w91 {
  width: 91%;
}
.h91 {
  height: 91%;
}
.mw91 {
  max-width: 91%;
}
.w92 {
  width: 92%;
}
.h92 {
  height: 92%;
}
.mw92 {
  max-width: 92%;
}
.w93 {
  width: 93%;
}
.h93 {
  height: 93%;
}
.mw93 {
  max-width: 93%;
}
.w94 {
  width: 94%;
}
.h94 {
  height: 94%;
}
.mw94 {
  max-width: 94%;
}
.w95 {
  width: 95%;
}
.h95 {
  height: 95%;
}
.mw95 {
  max-width: 95%;
}
.w96 {
  width: 96%;
}
.h96 {
  height: 96%;
}
.mw96 {
  max-width: 96%;
}
.w97 {
  width: 97%;
}
.h97 {
  height: 97%;
}
.mw97 {
  max-width: 97%;
}
.w98 {
  width: 98%;
}
.h98 {
  height: 98%;
}
.mw98 {
  max-width: 98%;
}
.w99 {
  width: 99%;
}
.h99 {
  height: 99%;
}
.mw99 {
  max-width: 99%;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.mw100 {
  max-width: 100%;
}
.object-fit {
  object-fit: cover;
  object-position: 50% 50%;
}
html {
  font-size: 62.5%;
  color: #787878;
  /* font-size:10px;*/
}
body {
  font: 1.4rem/1.42 'Lato', sans-serif;
  overflow-x: hidden;
  transition: all 150ms;
  -webkit-transition: all 150ms;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", Arial, Helvetica, sans-serif;
}
.align_content_right {
  align-content: right;
}
.text_right {
  text-align: right;
}
.top0 {
  top: 0;
}
.left0 {
  left: 0;
}
.right0 {
  right: 0;
}
.photo {
  justify-content: center;
  background: #ededed;
}
.photo > img {
  object-fit: cover;
  object-position: 50% 50%;
  transition: all 500ms;
  width: 100%;
  height: 100%;
}
.photo.loaded {
  opacity: 1;
}
p {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
a {
  color: #000;
  transition: color 500ms;
}
a:hover {
  color: #e13536;
}
@keyframes loader {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    z-index: 99999;
  }
  100% {
    visibility: hidden;
    z-index: -10;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes loader_extras {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  99% {
    visibility: visible;
    z-index: 99998;
  }
  100% {
    visibility: hidden;
    z-index: -10;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes dots_anim_adds {
  0% {
    bottom: 0.75rem;
  }
  25% {
    bottom: 0rem;
  }
  50% {
    bottom: -0.75rem;
  }
  75% {
    bottom: 0rem;
  }
  100% {
    bottom: 0.75rem;
  }
}
@keyframes dots_anim_adds2 {
  0% {
    bottom: 0rem;
  }
  25% {
    bottom: -0.75rem;
  }
  50% {
    bottom: 0rem;
  }
  75% {
    bottom: 0.75rem;
  }
  100% {
    bottom: 0rem;
  }
}
@keyframes dots_anim_adds3 {
  0% {
    bottom: -0.75rem;
  }
  25% {
    bottom: 0rem;
  }
  50% {
    bottom: 0.75rem;
  }
  75% {
    bottom: 0rem;
  }
  100% {
    bottom: -0.75rem;
  }
}
@keyframes dots_anim_adds4 {
  0% {
    bottom: 0rem;
  }
  25% {
    bottom: 0.75rem;
  }
  50% {
    bottom: 0rem;
  }
  75% {
    bottom: -0.75rem;
  }
  100% {
    bottom: 0rem;
  }
}
.chargement .volet,
.chargement .volet_extra,
.chargement .volet_extra2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.chargement .volet {
  background: #948671;
  animation-name: loader;
  animation-duration: 2s;
  z-index: 99999;
}
.chargement .volet_extra {
  background: rgba(192, 168, 107, 0.8);
  animation-name: loader_extras;
  animation-duration: 2.2s;
  z-index: 99998;
}
.chargement .volet_extra2 {
  background: rgba(239, 238, 238, 0.8);
  animation-name: loader_extras;
  animation-duration: 2.5s;
  z-index: 99998;
}
.chargement .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  width: 300px;
  height: 15vh;
}
.chargement .logo .moving_dots,
.chargement .logo .moving_dots2 {
  position: absolute;
  bottom: -2rem;
  width: 1rem;
  height: 1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 150%);
  -moz-transform: translate(-50%, 150%);
  -ms-transform: translate(-50%, 150%);
  -o-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
}
.chargement .logo .moving_dots:after,
.chargement .logo .moving_dots2:after,
.chargement .logo .moving_dots:before,
.chargement .logo .moving_dots2:before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: white;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
  animation-timing-function: linear;
}
.chargement .logo .moving_dots:after {
  left: -3rem;
  animation-name: dots_anim_adds;
}
.chargement .logo .moving_dots:before {
  left: -1rem;
  animation-name: dots_anim_adds2;
}
.chargement .logo .moving_dots2:after {
  left: 1rem;
  animation-name: dots_anim_adds3;
}
.chargement .logo .moving_dots2:before {
  left: 3rem;
  animation-name: dots_anim_adds4;
}
.chargement .logo img {
  object-fit: contain;
  width: 100%;
}
outlink > a {
  display: block;
}
/*# sourceMappingURL=style.css.map */