@charset "UTF-8";
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "beaufort-pro", sans-serif;
}

h1 {
  font-size: clamp(40px, 3vw, 72px);
  font-weight: normal;
}

h2 {
  font-size: clamp(36px, 3vw, 64px);
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

#c-fixedbtn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: rotate(90deg) translateY(-100%);
  z-index: 2;
  background-color: #DCB15B;
  padding: 10px 30px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transform-origin: bottom right;
  border-radius: 0;
  transition: 0.25s all ease-in;
  transition-delay: 0.25s;
}
#c-fixedbtn:hover {
  border-radius: 0 0 40px 0;
  padding: 20px 30px;
}
.team-loaded #c-fixedbtn {
  transform: rotate(90deg) translateY(100%);
}

.o-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.o-layout.-center {
  justify-content: center;
}

.o-layout_item {
  padding: 0 15px;
}
.-gutter-y .o-layout_item {
  margin-bottom: 30px;
}
.-gutter-y .o-layout_item:last-of-type {
  margin-bottom: 0;
}
.o-layout_item.u-1\/1 {
  width: 100%;
}
.o-layout_item.u-1\/2 {
  width: 50%;
}
.o-layout_item.u-1\/3 {
  width: 33.3333333333%;
}
.o-layout_item.u-2\/3 {
  width: 66.6666666667%;
}
.o-layout_item.u-1\/4 {
  width: 25%;
}
.o-layout_item.u-3\/5 {
  width: 60%;
}
.o-layout_item.u-2\/5 {
  width: 40%;
}
@media (max-width: 1440px) {
  .o-layout_item.u-1\/1\@desktop {
    width: 100%;
  }
  .o-layout_item.u-1\/2\@desktop {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .o-layout_item.u-1\/1\@laptop {
    width: 100%;
  }
  .o-layout_item.u-1\/2\@laptop {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .o-layout_item.u-1\/1\@tablet {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .o-layout_item.u-1\/1\@mobile {
    width: 100%;
  }
}

.o-section {
  display: block;
  width: 100%;
  overflow: hidden;
}
.o-section.-ofvisible {
  overflow: visible;
}

.c-btn {
  background-color: #241D13;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 13px 80px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s all ease-in;
  border-radius: 0 0 0 0;
  display: table;
  max-width: 100%;
}
.c-btn:hover {
  border-radius: 0 0 40px 0;
  color: #DCB15B;
}

.c-footer {
  background-color: #000;
  padding: 100px 14vw 50px;
  color: #fff;
}

.c-footer_logo {
  width: 100%;
  display: table;
  margin: 0 auto;
  border-bottom: 1px solid #707070;
  padding-bottom: 75px;
}
.c-footer_logo img {
  display: block;
  height: auto;
  width: 33vw;
  margin: 0 auto;
}

.c-footer_lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.c-footer_list {
  width: 50%;
  padding: 0 30px;
}
.c-footer_list p {
  color: #707070;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 36px);
  text-align: center;
  font-weight: lighter;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.c-footer_list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px;
  align-items: flex-start;
  padding: 0;
  justify-content: center;
}
.c-footer_list ul li {
  padding: 0 40px;
  list-style: none;
  margin-bottom: 50px;
}
.c-footer_list ul li.-fw {
  width: 100%;
}
.c-footer_list ul li.-fw img {
  display: table;
  margin: 0 auto;
}

.c-footer_bottom {
  padding-top: 45px;
}
.c-footer_bottom .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-footer_bottom .menu li:after {
  content: "|";
  padding: 0 30px;
}
.c-footer_bottom .menu li a {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  text-decoration: none;
  transition: 0.25s color ease-in;
}
.c-footer_bottom .menu li a:hover {
  color: #DCB15B;
}
.c-footer_bottom .menu li:last-of-type:after {
  display: none;
}
.c-footer_bottom p {
  text-align: center;
  color: #707070;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .c-footer_lists {
    flex-direction: column;
    align-items: center;
  }
  .c-footer_list {
    width: 100%;
    padding: 0;
  }
  .c-footer_list ul {
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .c-footer_bottom .menu {
    flex-direction: column;
  }
  .c-footer_bottom .menu li {
    margin-bottom: 10px;
  }
  .c-footer_bottom .menu li a {
    font-size: 14px;
  }
  .c-footer_bottom .menu li:after {
    display: none;
  }
}
.c-form {
  padding: 275px 30px;
  position: relative;
  background: #DCB15B;
  background: linear-gradient(0deg, rgb(220, 177, 91) 0%, rgba(255, 255, 255, 0) 100%);
}

.c-form_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-form_bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-form_wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.c-form_wrap .o-layout_item p {
  margin: 0;
}
.c-form_wrap .wpcf7-not-valid-tip {
  margin-top: -15px;
  margin-bottom: 10px;
}
.c-form_wrap h2 {
  font-weight: normal;
  margin-top: 0;
}
.c-form_wrap input[type=text], .c-form_wrap input[type=email], .c-form_wrap input[type=tel] {
  background-color: rgba(255, 255, 255, 0.67);
  width: 100%;
  border: 0;
  padding: 40px;
  font-size: 20px;
  font-weight: 300;
  color: #241D13;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: 0.25s all ease-in;
}
.c-form_wrap input[type=text]:hover, .c-form_wrap input[type=text]:focus, .c-form_wrap input[type=email]:hover, .c-form_wrap input[type=email]:focus, .c-form_wrap input[type=tel]:hover, .c-form_wrap input[type=tel]:focus {
  border: 1px solid black;
}
.c-form_wrap input[type=text]::-moz-placeholder, .c-form_wrap input[type=email]::-moz-placeholder, .c-form_wrap input[type=tel]::-moz-placeholder {
  color: #241D13;
}
.c-form_wrap input[type=text]::placeholder, .c-form_wrap input[type=email]::placeholder, .c-form_wrap input[type=tel]::placeholder {
  color: #241D13;
}
.c-form_wrap textarea {
  background-color: rgba(255, 255, 255, 0.67);
  width: 100%;
  border: 0;
  padding: 40px;
  font-size: 20px;
  font-weight: 300;
  color: #241D13;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: 0.25s all ease-in;
  resize: none;
}
.c-form_wrap textarea:hover, .c-form_wrap textarea:focus {
  border: 1px solid black;
}
.c-form_wrap textarea::-moz-placeholder {
  color: #241D13;
}
.c-form_wrap textarea::placeholder {
  color: #241D13;
}
.c-form_wrap input[type=submit] {
  background-color: #241D13;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 13px 80px;
  text-align: center;
  text-decoration: none;
  transition: 0.25s all ease-in;
  border-radius: 0 0 0 0;
  display: table;
  border: 0;
  max-width: 100%;
}
.c-form_wrap input[type=submit]:hover {
  border-radius: 0 0 40px 0;
  color: #DCB15B;
}
.c-form_wrap .wpcf7-acceptance {
  padding: 20px 0 55px;
  display: block;
}
.c-form_wrap .wpcf7-acceptance label {
  padding-left: 75px !important;
}
.c-form_wrap .wpcf7-list-item {
  margin-left: 0;
}
.c-form_wrap {
  /* Hide only the checkbox input but keep it accessible */
}
.c-form_wrap .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.c-form_wrap {
  /* Label wrapper */
}
.c-form_wrap .wpcf7-list-item label {
  position: relative;
  cursor: pointer;
  padding-left: 32px; /* space for custom box */
  display: inline-block;
  line-height: 1.4;
}
.c-form_wrap {
  /* Custom checkbox square */
}
.c-form_wrap .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.67);
  transition: all 0.2s ease;
}
.c-form_wrap {
  /* Checkmark */
}
.c-form_wrap .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .c-form {
    padding: 150px 30px;
  }
  .c-form_wrap input[type=text], .c-form_wrap input[type=email], .c-form_wrap input[type=tel], .c-form_wrap textarea {
    font-size: 16px;
    padding: 20px;
  }
}
@media (max-width: 550px) {
  .c-form {
    padding: 100px 30px;
  }
}
.c-header {
  background-color: #000;
  padding: 45px 14vw;
}
.c-header img {
  width: 23vw;
  height: auto;
  margin: 0 auto;
  min-width: 150px;
}

@media (max-width: 992px) {
  .c-header {
    padding: 30px;
  }
}
.c-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.c-video .c-video_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 2;
  padding: 0 45px;
  opacity: 0;
  transition: 0.5s all ease-in;
}
.c-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-video:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #241D13;
  opacity: 0.65;
}
.c-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #241D13;
  mix-blend-mode: color;
}
.team-loaded .c-video .c-video_logo {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.c-block {
  position: relative;
  background: #2b231a; /* Exemple — peut être remplacé par n'importe quelle couleur */
  color: #fff;
  padding: 100px 0;
}
.c-block.-white {
  background-color: #fff;
  color: #241D13;
}
.c-block.-white h2 {
  color: #DCB15B;
}
.c-block h2 {
  font-weight: 300;
  line-height: 1.1;
}

/* Le triangle vertical */
.c-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px; /* largeur de l’angle */
  background: inherit;
  z-index: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ➡️ Angle à gauche */
.c-block.-left::before {
  left: 1px;
  transform: translateX(-100%);
}

/* ➡️ Angle à droite */
.c-block.-right::before {
  right: 1px;
  left: auto;
  transform: translateX(100%) scaleX(-1);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.c-block_inner {
  position: relative;
  z-index: 2;
}

.c-block_left {
  width: 35vw;
}

.c-block_right {
  width: calc(100% - 35vw);
}

.c-block_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-intro {
  background-color: #fff;
}

.c-intro_wrap {
  width: calc(92% - 120px);
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.c-intro_wrap .c-block {
  padding-right: 14vw;
}
.c-intro_wrap .c-block h2 {
  padding-right: 10vw;
}
.c-intro_wrap .c-block_left {
  position: relative;
  padding-left: 45px;
}
.c-intro_wrap .c-block_left:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  right: 5vw;
  top: 0;
  background-color: #DCB15B;
  position: absolute;
  transform: skew(-12deg);
}

@media (max-width: 1200px) {
  .c-intro_wrap {
    flex-direction: column;
  }
  .c-intro_wrap .c-block_wrap {
    flex-direction: column;
  }
  .c-intro_wrap .c-block_left {
    width: 100%;
    padding-left: 0;
  }
  .c-intro_wrap .c-block_left:before {
    display: none;
  }
  .c-intro_wrap .c-block_left h2 {
    padding-right: 0;
    margin-top: 0;
  }
  .c-intro_wrap .c-block_right {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .c-intro_wrap {
    width: 100%;
    padding-left: 14vw;
  }
}
@media (max-width: 550px) {
  .c-intro_wrap {
    width: 100%;
    padding-left: 30px;
  }
  .c-intro_wrap .c-block {
    padding-right: 30px;
  }
}
.c-body {
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.4;
}
.c-body p {
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.4;
}
.c-body.-light {
  font-weight: 300;
}
.c-body.-light p {
  font-weight: 300;
}
.c-body.-light strong {
  margin-top: 20px;
  font-weight: bold;
}

.c-rowstext {
  position: relative;
}

.c-rowstext_bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  height: 110vh;
}
.c-rowstext_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.c-rowstext_block {
  position: relative;
  z-index: 2;
}
.c-rowstext_block h2 {
  color: #DCB15B;
}
.c-rowstext_block .c-block h2, .c-rowstext_block .c-block .c-body {
  padding-left: 45px;
}
.c-rowstext_block.-block1 {
  width: calc(75% + 60px);
  transform: translateX(-60px);
}
.c-rowstext_block.-block1 .c-block {
  padding-left: calc(14vw + 60px);
}
.c-rowstext_block.-block1 .c-block h2 {
  padding-left: 45px;
}
.c-rowstext_block.-block1 .c-block .c-body {
  padding-right: 10vw;
  padding-left: 45px;
}
.c-rowstext_block.-block2 {
  width: 60%;
  margin-left: auto;
  margin-top: 100px;
}
.c-rowstext_block.-block2 .c-block {
  background-color: #fff;
  padding-right: 14vw;
  padding-left: 5vw;
}
.c-rowstext_block.-block2 .c-block .c-body {
  color: #241D13;
}
.c-rowstext_block.-block2 .c-block .c-body p {
  color: #241D13;
}
.c-rowstext_block.-block3 {
  width: 67%;
  margin-left: auto;
  margin-top: 100px;
}
.c-rowstext_block.-block3 .c-block {
  background-color: #fff;
  padding-right: 14vw;
  padding-left: 5vw;
}
.c-rowstext_block.-block3 .c-block .c-body {
  color: #241D13;
}
.c-rowstext_block.-block3 .c-block .c-body p {
  color: #241D13;
}

@media (max-width: 1024px) {
  .c-rowstext_block .c-block h2, .c-rowstext_block .c-block .c-body {
    padding-left: 0;
  }
}
@media (max-width: 550px) {
  .c-rowstext_block.-block1 .c-block {
    padding-left: 30px;
  }
  .c-rowstext_block.-block2, .c-rowstext_block.-block3 {
    width: calc(100% - 120px);
  }
}
@media (max-width: 450px) {
  .c-rowstext_block.-block1 {
    width: 100%;
  }
  .c-rowstext_block.-block2, .c-rowstext_block.-block3 {
    width: 100%;
  }
}
#map {
  width: 100%;
  min-height: 100%;
}

.c-gmap_wrap {
  display: flex;
  flex-wrap: wrap;
}

.c-gmap_left {
  width: 50%;
  padding-left: calc(14vw + 45px);
  background-color: #707070;
  padding-top: 100px;
  padding-bottom: 120px;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}
.c-gmap_left h2 {
  color: #DCB15B;
}
.c-gmap_left .c-body {
  color: #fff;
  margin-bottom: 75px;
}
.c-gmap_left .c-body p {
  color: #fff;
}
.c-gmap_left:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px; /* largeur de l’angle */
  background: inherit;
  z-index: 0;
  left: auto;
  right: 0;
  transform: translateX(100%) scaleX(-1);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.c-gmap_right {
  width: 50%;
  background-color: #DCB15B;
}

@media (max-width: 1024px) {
  .c-gmap_left {
    width: 100%;
    padding-left: 14vw;
  }
  .c-gmap_right {
    width: 100%;
    min-height: 50vh;
  }
}
@media (max-width: 550px) {
  .c-gmap_left {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.c-text_wrap {
  padding: 0 14vw;
}
/*# sourceMappingURL=main.css.map */
