@charset "UTF-8";
@font-face {
  font-family: "GT-America-Extended Thin";
  src: url("../fonts/gt-america-extended-thin.woff2") format("woff2"), url("../fonts/gt-america-extended-thin.woff") format("woff"), url("../fonts/gt-america-extended-thin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-America-Extended Medium";
  src: url("../fonts/gt-america-extended-medium.woff2") format("woff2"), url("../fonts/gt-america-extended-medium.woff") format("woff"), url("../fonts/gt-america-extended-medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GT-America-Extended Bold";
  src: url("../fonts/gt-america-extended-bold.woff2") format("woff2"), url("../fonts/gt-america-extended-bold.woff") format("woff"), url("../fonts/gt-america-extended-bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.header-nav-global,
footer {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 0 40px;
}
.header-nav-global a,
footer a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.08em;
  font-size: clamp(11px, 3vw, 12px);
}
.header-nav-global a:hover,
footer a:hover {
  color: #BBBBBB;
}
.header-nav-global a .logo-home,
footer a .logo-home {
  height: 11px;
  width: auto;
  margin-top: 4px;
}
.header-nav-global .primary-navigation__menu,
.header-nav-global .social-navigation__menu,
.header-nav-global .menu-secondary,
footer .primary-navigation__menu,
footer .social-navigation__menu,
footer .menu-secondary {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2vw;
}
.header-nav-global .primary-navigation__menu .menu-item a,
.header-nav-global .primary-navigation__menu .lang-item a,
.header-nav-global .social-navigation__menu .menu-item a,
.header-nav-global .social-navigation__menu .lang-item a,
.header-nav-global .menu-secondary .menu-item a,
.header-nav-global .menu-secondary .lang-item a,
footer .primary-navigation__menu .menu-item a,
footer .primary-navigation__menu .lang-item a,
footer .social-navigation__menu .menu-item a,
footer .social-navigation__menu .lang-item a,
footer .menu-secondary .menu-item a,
footer .menu-secondary .lang-item a {
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: clamp(11px, 3vw, 12px);
}
.header-nav-global .primary-navigation__menu .menu-item.current-menu-item a,
.header-nav-global .primary-navigation__menu .lang-item.current-menu-item a,
.header-nav-global .social-navigation__menu .menu-item.current-menu-item a,
.header-nav-global .social-navigation__menu .lang-item.current-menu-item a,
.header-nav-global .menu-secondary .menu-item.current-menu-item a,
.header-nav-global .menu-secondary .lang-item.current-menu-item a,
footer .primary-navigation__menu .menu-item.current-menu-item a,
footer .primary-navigation__menu .lang-item.current-menu-item a,
footer .social-navigation__menu .menu-item.current-menu-item a,
footer .social-navigation__menu .lang-item.current-menu-item a,
footer .menu-secondary .menu-item.current-menu-item a,
footer .menu-secondary .lang-item.current-menu-item a {
  color: #BBBBBB;
}

.header-nav-global {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.language-switcher {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 120px;
  background: white;
}
.language-switcher .lang-item {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.language-switcher .lang-item:not(.current-lang) {
  display: none;
}
.language-switcher .lang-item.current-lang a {
  color: black;
  background: transparent;
  cursor: pointer;
  font-family: "GT-America-Extended Medium", sans-serif;
}
.language-switcher.is-open {
  z-index: 100;
  background: white;
  top: 10px;
}
.language-switcher.is-open .lang-item {
  display: block;
}
.language-switcher.is-open .lang-item a {
  font-family: "GT-America-Extended Medium", sans-serif;
  color: black;
  border-radius: 0;
  transition: color 0.2s;
}
.language-switcher.is-open .lang-item a:hover {
  color: #BBBBBB;
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: auto;
    margin-top: 50px;
  }
  
  .social-navigation__menu { 
    flex-direction: column;
    gap: 0 !important;
  }
}
footer .secondary-navigation__menu {
  list-style: none;
  padding-left: 0;
  text-align:left;
}
footer .group {
  font-size: 12px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100px;
  height: 100%;
  font-family: "GT-America-Extended Thin", sans-serif;
}
footer .group svg {
  width: 200px;
  display: block;
}

.header-logo {
  display: none;
}
@media (max-width: 900px) {
  .header-logo {
    display: block;
    position: relative;
    padding-left: 7.5vw;
  }
  .header-logo a img {
    height: 11px;
    width: auto;
  }
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "GT-America-Extended Medium", sans-serif;
}

.wysiwyg {
  width: 70vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*h2 + p {
      margin-top: 2em;
  }*/
  /*
  p:has(strong) {
      width: 100%;
      text-align: justify;
  }*/
}
@media (max-width: 1200px) {
  .wysiwyg {
    width: 70vw;
  }
}
@media (max-width: 900px) {
  .wysiwyg {
    width: 85vw;
  }
}
.wysiwyg h2 {
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.2em;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  font-weight: normal;
}
@media (max-width: 600px) {
  .wysiwyg h2 {
    font-size: 3.7vw;
  }
}
.wysiwyg p {
  font-family: "GT-America-Extended Thin", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.1em;
  vertical-align: middle;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin: 1em 0;
}
@media (max-width: 600px) {
  .wysiwyg p {
    width: 100%;
    font-size: 3.3vw;
  }
}
.wysiwyg p strong {
  width: 100%;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.2em;
}
.wysiwyg p strong img {
  margin: 1em auto 2em auto;
  display: block;
}
.wysiwyg ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.wysiwyg ul li {
  font-family: "GT-America-Extended Thin", sans-serif;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 600px) {
  .wysiwyg ul li {
    width: 100%;
    font-size: 3.3vw;
  }
}
.wysiwyg ul.liste-espacee li {
  line-height: 190%;
}

.page-template-tpl-customers .wysiwyg .liste-classique {
  margin-top: 20px;
}
.page-template-tpl-customers .wysiwyg .liste-classique li {
  text-transform: uppercase;
  font-size: 35px;
  font-family: "GT-America-Extended Medium", sans-serif;
}
@media (max-width: 600px) {
  .page-template-tpl-customers .wysiwyg .liste-classique li {
    font-size: 4.3vw;
  }
}

.page-template-default {
  /* Responsive - sous 600px, empiler les cellules */
}
.page-template-default table td.step {
  padding: 20px 100px;
  font-size: 24px;
  font-family: "GT-America-Extended Thin", sans-serif;
  font-weight: bold;
  line-height: 34px;
}
.page-template-default table td.step strong {
  font-size: 90px;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-weight: normal;
}
.page-template-default table td.content {
  padding-right: 40px;
  font-family: "GT-America-Extended Thin", sans-serif;
  line-height: 160%;
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .page-template-default table td.content {
    font-size: 3.3vw;
  }
  .page-template-default table td.step strong {
    font-size: 70px;
  }
}
.page-template-default table td.content p {
  font-family: "GT-America-Extended Thin", sans-serif;
  line-height: 160%;
  font-size: 15px;
  text-align: center;
}
@media (max-width: 600px) {
  .page-template-default table td.content p {
    font-size: 3.3vw;
  }
}
.page-template-default table td.content p strong {
  margin-top: 20px;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-weight: normal;
  font-size: 17px;
}
@media (max-width: 600px) {
  .page-template-default table td.content p strong {
    font-size: 3.3vw;
  }
}
@media (max-width: 600px) {
  .page-template-default table, .page-template-default thead, .page-template-default tbody, .page-template-default th, .page-template-default td, .page-template-default tr {
    display: block; /* transformez tout en blocs */
    width: 100%;
  }
  .page-template-default table tr {
    margin-bottom: 20px; /* espace entre les "lignes" */
    display: flex;
    flex-direction: column;
  }
  .page-template-default table tr.inversemobile {
    flex-direction: column-reverse;
  }
  .page-template-default table td.content {
    padding-right: 0px;
    position: relative;
  }
}
.page-template-default img.alignleft {
  margin: 0 50px 20px 50px;
}
@media (max-width: 600px) {
  .page-template-default img.alignleft {
    margin: 0 20px 20px 20px;
    height: 12%;
    width: auto;
  }
}

.page-template-tpl-contacts {
  /* Style spécifique au drop zone du deuxième formulaire */
}
.page-template-tpl-contacts .tabs-container {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.page-template-tpl-contacts .tab {
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 0.2em;
  cursor: pointer;
  color: grey;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 600px) {
  .page-template-tpl-contacts .tab {
    font-size: 15px;
  }
}

.page-template-tpl-contacts .tab.active {
  color: black;
  border-bottom: 2px solid black;
}
.page-template-tpl-contacts form {
  width: 100%;
  max-width: 900px;
  text-align: left;
}
.page-template-tpl-contacts label {
  font-size: 14px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
  margin-top: 25px;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-weight: normal;
}
.page-template-tpl-contacts label.condition {
  font-family: "GT-America-Extended Thin", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.page-template-tpl-contacts label sup {
  color: grey;
  letter-spacing: 0;
  margin-left: 1px;
  font-family: "GT-America-Extended Thin", sans-serif;
  vertical-align: baseline;
  font-size: 10px;
}
.page-template-tpl-contacts select, .page-template-tpl-contacts input[type=text], .page-template-tpl-contacts input[type=email], .page-template-tpl-contacts textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  font-size: 14px;
  padding: 5px 2px;
  margin-bottom: 5px;
  outline: none;
  font-family: "GT-America-Extended Thin", sans-serif;
  background: #FFF;
}
.page-template-tpl-contacts .row {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.page-template-tpl-contacts .half {
  flex: 1;
}
.page-template-tpl-contacts textarea {
  height: 80px;
  resize: vertical;
}
.page-template-tpl-contacts .checkbox-container {
  font-size: 10px;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: black;
}
.page-template-tpl-contacts .checkbox-container input[type=checkbox] {
  margin-right: 10px;
  transform: scale(1.2);
}
.page-template-tpl-contacts button.submit-btn {
  margin-top: 50px;
  letter-spacing: 0.1em;
  font-size: 14px;
  background: none;
  border: none;
  border-bottom: 2px solid black;
  cursor: pointer;
  padding-bottom: 5px;
}
.page-template-tpl-contacts .dropzone {
  margin-top: 10px;
  border: 1px dashed #888;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 11px;
  color: #555;
  cursor: pointer;
}
.page-template-tpl-contacts .dropzone button {
  margin-top: 10px;
  font-weight: 700;
  font-size: 11px;
  background-color: black;
  color: white;
  border: none;
  padding: 3px 7px;
  cursor: pointer;
  letter-spacing: 1px;
}
.page-template-tpl-contacts .dropzone input[type=file] {
  display: none;
}

.padding-top {
  padding-top: 150px;
}

.margin-bottom {
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .padding-top {
    padding-top: 30px;
  }
}


.wrap-button {
  display: flex;
  justify-content: center;
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: black;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "GT-America-Extended Bold", sans-serif;
  margin: 0;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 145%;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 1200px) {
  .button {
    font-size: 5vw;
  }
}

.js-filter-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 90px;
  padding-left: 90px;
  padding-right: 90px;
  margin-bottom:60px;
}

.btn-other-project {
  margin-top:60px;
  margin-bottom:80px;
}

@media (max-width: 1200px) {
  .js-filter-content {
    gap: 20px 60px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 900px) {
  .js-filter-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .js-filter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85vw;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
  }
}

.js-filter-content article {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.js-filter-content article h2 {
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: 19px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  margin: 0;
  margin-top: 5px;
  font-weight: normal;
}
.js-filter-content article h2 a {
  color: black;
}
.js-filter-content article a {
  text-decoration: none;
}
.js-filter-content article .details {
  color: #BBBBBB;
  font-size: 15px;
}
.js-filter-content article .details a {
  color: #BBBBBB;
  font-family: "GT-America-Extended Thin", sans-serif;
  font-weight: bold;
}

.js-filter-content article picture {
  aspect-ratio: 7/10;
  width: 100%;
  display: block;
  overflow: hidden;
}
.js-filter-content article picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-project-anim {
  transition: filter 0.3s;
}

.image-project-anim:hover {
  filter: grayscale(1);
}

.burger {
  display: block;
  width: 18vw;
  height: 18vw;
  background: black;
  position: fixed;
  z-index: 999;
  box-sizing: border-box;
  right: 0;
}
.burger.is-open {
  background-color: transparent;
}
.burger span {
  width: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 2%;
  background: white;
  z-index: 4;
  transition: 0.3s;
}
.burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateY(-280%);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.burger span::after {
  width: 60%;
  transform: translateY(280%);
}
.burger.is-open span {
  background: black;
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger.is-open span::before {
  transform: none;
  background-color: black;
}
.burger.is-open span::after {
  width: 100%;
  background-color: black;
  transform: translate(0, 0) rotate(90deg);
}

@media (max-width: 900px) {
  .header-nav-global {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 998;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 7.5vw;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .header-nav-global.is-open {
    transform: translateX(0);
  }
  .header-nav-global .primary-navigation__menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .header-nav-global .primary-navigation__menu li a {
    padding: 10px 0;
    width: 100%;
    display: block;
  }
  .header-nav-global .language-switcher {
    margin-top: 20px;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  .header-nav-global .language-switcher .lang-item {
    text-align: left;
    padding-left: 0;
  }
  .header-nav-global .language-switcher.is-open {
    position: relative;
    box-shadow: none;
    border: none;
    width: 100%;
    top: 20px;
  }
  .burger {
    display: block;
  }
}
@media (min-width: 760px) {
  .burger {
    width: 15vw;
    height: 15vw;
  }
}
@media (min-width: 901px) {
  .header-nav-global {
    display: flex !important;
  }
  .burger {
    display: none;
  }
}
.project-post {
  padding-left: 90px;
  padding-right: 90px;
}
@media (max-width: 1200px) {
  .project-post {
    padding-left: 7.5vw;
    padding-right: 7.5vw;
  }
}
.project-post .project-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw 0 8vw;
}
@media (max-width: 1200px) {
  .project-post .project-header {
    padding: 0vw 0 8vw;
  }
}
.project-post .project-header h1,
.project-post .project-header h2 {
  font-family: "GT-America-Extended Bold", sans-serif;
  margin: 0;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 145%;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: normal;
}
@media (max-width: 600px) {
  .project-post .project-header h1,
.project-post .project-header h2 {
    font-size: 4vw;
  }
}
.project-post .project-header #ville {
  font-family: "GT-America-Extended Bold", sans-serif;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.project-post .project-header .fade-out {
  opacity: 0;
}
.project-post .project-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .project-post .project-content {
    gap: 7.5vw;
  }
}
.project-post .o-media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project-post .o-media .o-media__wrapper {
  width: 100%;
  height: auto;
}
.project-post .o-media .o-media__wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-post .o-media.col_2 .o-media__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.project-post .o-media.col_2 .o-media__wrapper img {
  height: 100%;
}

@media (max-width: 1200px) {
  .project-post .o-media.col_2 .o-media__wrapper {
    gap: 7.5vw;
    flex-direction: column;
  }
}
.project-post .o-media.col_2 .picture {
  width: 48%;
}
.project-post .o-media h2 {
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.2em;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  font-weight: normal;
}
@media (max-width: 600px) {
  .project-post .o-media h2 {
    font-size: 4.5vw;
  }
}
/*# sourceMappingURL=main.css.map */


.wysiwyg a {
  padding:10px 15px; 
  background:#FFF;
  color:#000;
  text-decoration:none;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.1em;
  border:1px solid #000;
}
.wysiwyg a:hover {
  background:#000;
  color:#FFF;
}

@media (max-width: 600px) {
  .wysiwyg a { 
    font-size: 12px;
    letter-spacing: 0.025em;
    padding: 10px 10px;
  }
}

.language-switcher {
  letter-spacing: 0.08em;
  font-size: clamp(11px, 3vw, 12px);
  width: auto;
}
  
.language-switcher span.language-active {
  color: #BBBBBB;
  cursor:default;
}

.page-template-tpl-contacts form {
  max-width: 565px;
}


.slider-container {
    width: 100%;
    max-width: 1200px;
}

/* Titre et info vidéo */
.slider-info {
    font-family: "GT-America-Extended Medium", sans-serif;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 18px;
    line-height: 180%;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.slider-info .country {
}


/* Slider principal */
.slider-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*gap: 40px;*/
    margin-bottom: 30px;
}

.slider-track {
    position: relative;
    width: 60vh;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles des slides */
.slide {
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    display:none;
}

.slide.left {
    width: 40vh;
    height: 40vh;
    filter: grayscale(100%);
    transform: translateX(-45vh) scale(0.75);
    opacity: 1;
    visibility: visible;
    display:block;
}

.slide.center {
    width: 50vh;
    height: 50vh;
    filter: grayscale(0%);
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
    visibility: visible;
    display:block;
}

.slide.right {
    width: 40vh;
    height: 40vh;
    filter: grayscale(100%);
    transform: translateX(45vh) scale(0.75);
    opacity: 1;
    visibility: visible;
    display:block;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contrôles en bas */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/*
.slider-arrow {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #1a1a1a;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: #ddd;
    transform: scale(1.1);
}
*/

.slider-arrow {
  width: 14px; 
  height: 25px;
  background-color: black;
  clip-path: polygon(0 0, 100% 50%, 0 100%);  
  /* La forme est un triangle droit demi-carré */
  transition: transform 0.3s ease;
    cursor: pointer;
}
/* Flèche pointant vers la droite (aucune rotation nécessaire) */
.slider-arrow.right {  transform: rotate(0deg); }
/* Flèche pointant vers la gauche */
.slider-arrow.left {  transform: rotate(180deg); }

 /* Wrapper de la vidéo intro */
.intro-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutIntro 0.5s ease-out 2.8s forwards;
}

/* La vidéo elle-même */
#intro-video {
    width: 30%;
    height: 40%;
    object-fit: cover; /* remplit tout l'écran */
}

/* Animation de fondu */
@keyframes fadeOutIntro {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}



.wysiwyg-legal {
  width: 70vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*h2 + p {
      margin-top: 2em;
  }*/
  /*
  p:has(strong) {
      width: 100%;
      text-align: justify;
  }*/
}
@media (max-width: 1200px) {
  .wysiwyg-legal {
    width: 70vw;
  }
}
@media (max-width: 900px) {
  .wysiwyg-legal {
    width: 85vw;
  }
}
.wysiwyg-legal h2 {
  font-family: "GT-America-Extended Medium", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.2em;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  font-weight: normal;
}
@media (max-width: 600px) {
  .wysiwyg-legal h2 {
    font-size: 3.7vw;
  }
}
.wysiwyg-legal p {
  font-family: "GT-America-Extended Thin", sans-serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.1em;
  vertical-align: middle;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin: 1em 0;
}
@media (max-width: 600px) {
  .wysiwyg-legal p {
    width: 100%;
    font-size: 3.3vw;
  }
}
.wysiwyg-legal p strong {
  width: 100%;
  font-family: "GT-America-Extended Medium", sans-serif;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.2em;
}
.wysiwyg-legal p strong img {
  margin: 1em auto 2em auto;
  display: block;
}
.wysiwyg-legal ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.wysiwyg-legal ul li {
  font-family: "GT-America-Extended Thin", sans-serif;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.wysiwyg-legal a { color:#000; }

@media (max-width: 600px) {
  .wysiwyg-legal ul li {
    width: 100%;
    font-size: 3.3vw;
  }
}
.wysiwyg-legal ul.liste-espacee li {
  line-height: 190%;
}

#form-contact { margin-bottom:40px; }

video[poster]{
  object-fit: cover;
}

@media (max-width: 600px) {
  .slider-wrapper { overflow: hidden; }
  button { color:#000 }
  
  .page-template-tpl-contacts .row {
   flex-direction: column;
   gap: 0;
  }
  
  input, select, textarea, button { -webkit-appearance: none; appearance: none;}
  option { -webkit-text-fill-color: #000 !important; color: #000 !important; background-color: #fff !important;}
  option:checked { -webkit-text-fill-color: #000 !important; background: #fff !important;}
  
}