@media not all and (min-width: 1512px) {

  .swiper-menu .navbar-open {
    margin-left: 100px !important;
  }

  .swiper-imgs .swiper-wrapper {
    max-height: 660px !important;
  }
  .carousel-logo .swiper-imgs .swiper-wrapper{
    height: auto !important;
  }

  .modale-clientele .swiper-imgs .swiper-wrapper{
    height: 100% !important;
  }
  
    .mask-right.mask-logo::after {
      transform: translate(90%, 100%) !important;
    }


@media not all and (min-width: 1280px) {


  .swiper-menu .navbar-open {
    margin-left: 80px !important;
  }

  .section-hero .mask-logo::after {
    transform: translate(100%, 50%) !important;
  }

  .swiper-texte-responsive .swiper-texte {
    animation: 10s linear infinite swiper-text !important;
  }

  .modale-clientele .swiper-imgs{
    width: 100% !important;
    height: auto !important;
    max-height: 80%;
  }

  .wpgmza_map{
    height: 450px !important;
  }

  /* POPUP */

  .popup-formulaire {
    width: 600px !important;
    padding: var(--wp--preset--spacing--60) !important;
  }

  .popup-formulaire .title-popup {
    font-size: 36px !important;
  }

  .popup-formulaire .text-popup {
    font-size: 24px !important;
  }
}

@media not all and (min-width: 1024px) {

  .navbar-open {
    width: 100% !important;
  }
  
  .mask-right.mask-logo::after {
    height: 100% !important;
    bottom: 0 !important;
    transform: translate(90%, 100%) !important;    
  }
  
  .modale-clientele {
    padding: 160px 60px 60px 60px !important;
  }

  .swiper-imgs .swiper-slide{
    object-fit: contain;
  }

  /* POPUP */

  .popup-formulaire {
    padding: var(--wp--preset--spacing--40) !important;
  }
    
}
}

@media not all and (min-width: 768px) {
  body h1 {
    font-size: 40px !important;
  }
  
  body h2 {
    font-size: 30px !important;
  }
  
  body h3 {
    font-size: 24px !important;
  }

 .section-hero .mask-logo::after {
    display: none;
  }

  .mask-right.mask-logo::after {
    transform: translate(90%, 110%) !important;    
  }


  /* POPUP */

  .popup-formulaire {
    width: 500px !important;
  }

  .popup-formulaire .title-popup {
    font-size: 32px !important;
  }

  .popup-formulaire .text-popup {
    font-size: 20px !important;
  }
}

@media not all and (min-width: 640px) {
  body h1 {
    font-size: 32px !important;
  }

  .swiper-texte  p{
    font-size: 24px !important;
  }

  .mask-right.mask-logo::after {
    transform: translate(90%, 130%) !important;
  }

  .modale-clientele {
    padding: 0 20px !important;
  }


  /* POPUP */

  .popup-formulaire {
    width: 90% !important;
    padding: var(--wp--preset--spacing--32) !important;
  }

  .popup-formulaire .title-popup {
    font-size: 28px !important;
  }
}

/* CSS GENERAL */


html {
  scroll-padding-top: 95px;
  scroll-behavior: smooth !important;
}

.button-filled {
  display: flex;
  padding: 12px 24px;
  gap: 10px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--light);
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.button-filled:hover {
  background: var(--wp--preset--color--primary-hovered);
}

.button-outlined {
  display: flex;
  padding: 12px 24px;
  gap: 10px;
  background-color: transparent;
  border: solid 1px var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.button-outlined:hover {
  background: var(--wp--preset--gradient--red-opacity-button);
}

.button-underlined {
  display: flex;
  padding: 12px 24px;
  gap: 10px;
  background: rgba(20, 19, 19, 0.10);
  border-bottom: solid 1px var(--wp--preset--color--light);
  color: var(--wp--preset--color--light);
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.button-underlined:hover {
  background: rgba(20, 19, 19, 0.50);
}

.swiper-button-prev rect,
.swiper-button-next rect{
  transition: fill 0.3s ease-in-out;
}

.swiper-button-prev:hover rect,
.swiper-button-next:hover rect{
  fill: var(--wp--preset--color--primary-hovered);
}

.swiper-texte-desktop .swiper-texte{
  animation: 10s linear infinite swiper-text;
}

.swiper-texte-responsive .swiper-texte {
  animation: none;
}

.swiper-texte p{
  white-space:nowrap !important;
}

@keyframes swiper-text {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* animation swipe fade */
.swipe-fade-anim.anim-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-in-out 0.3s, transform 0.5s ease-in-out 0.3s;
}

.swipe-fade-anim.anim-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-in-out 0.3s, transform 0.5s ease-in-out 0.3s;
}

.anim-left.here,
.anim-right.here {
  opacity: 1;
  transform: translateX(0px);
}

/* HEADER */

html:has(.active){
  overflow: hidden;
}

.menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.3s ease-in-out;
}

.navbar .swiper-menu{
  top: 0;
  left: 0;
  transform: translate(100%, 0%);
  position: absolute;
  pointer-events: none;
  transition: transform 1s ease-in-out;
}
.navbar.active .swiper-menu{
  pointer-events: all;
  transform: translate(0%, 0%);
}

.menu-header p:empty {
  display: none;
}

.navbar-open{
  width: 50%;
  height: 100%;
  margin-left: 125px !important;
  padding-top: 60px;
  border-left: solid 1px var(--wp--preset--color--secondary);
  overflow-y: auto;
  scrollbar-width: thin !important;
  scrollbar-color: var(--wp--preset--color--dark) transparent !important;
}

.navbar-open .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 40px;
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--h-2);
  font-weight: 500;
  text-transform: uppercase;
  z-index: 100;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar-open .title-collapse{
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease-in-out;
}

#menu-item-693:has(.collapse-opened) .title-collapse,
#menu-item-694:has(.collapse-opened) .title-collapse {
  color: var(--wp--preset--color--primary);
}

#menu-item-693 .menu-arrow,
#menu-item-694 .menu-arrow {
  transition: transform 0.3s ease-in-out;
}

#menu-item-693 .menu-arrow svg path,
#menu-item-694.menu-arrow svg path{
  transition: stroke 0.3s ease-in-out;
}

#menu-item-693:has(.collapse-opened) .menu-arrow,
#menu-item-694:has(.collapse-opened) .menu-arrow {
  transform: rotate(180deg);
}

#menu-item-693:has(.collapse-opened) .menu-arrow svg path,
#menu-item-694:has(.collapse-opened) .menu-arrow svg path{
  stroke: var(--wp--preset--color--primary);
}

.navbar-open .menu-item{
  transition: color 0.3s ease-in-out;
}

.navbar-open .menu-item:hover, .navbar-open .menu-item.current-menu-item, .navbar-open .menu-item.current-menu-parent{
  color: var(--wp--preset--color--primary);
}

.navbar-open:has(.collapse-opened) .menu-item:not(:hover){
  color: var(--wp--preset--color--dark) !important;
}

.navbar-open .expandable-collapse .sub-menu{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding-top: 20px;
}

.navbar-open .expandable-collapse .menu-item{
  font-size: var(--wp--preset--font-size--paragraphe);
}



.navbar .mask-logo::after{
  transform: translate(90%, 50%);
}

.navbar .button-filled{
  border: solid 1px var(--wp--preset--color--primary);
}

.navbar .button-filled{
    transition: color 0.3s ease-in-out,
                background 0.3s ease-in-out,
                border-color 0.3s ease-in-out;
}

.navbar .button-filled:hover{
  background-color: transparent;
  border-color: var(--wp--preset--color--dark);
  color: var(--wp--preset--color--dark);
}

.navbar .button-filled svg path{
  transition: fill 0.3s ease-in-out;
}

.navbar .button-filled:hover svg path{
  fill: var(--wp--preset--color--dark);
}

.navbar .button-filled.active .picto-close,
.navbar .button-filled.active .text-close{
  opacity: 1;
  position: relative;
}

.navbar .button-filled.active .picto-open,
.navbar .button-filled.active .text-open{
  opacity: 0;
  position: absolute;
}



/* PAGE ACCUEIL */

/* Player Video */

.video-hero {
  position: absolute;
  aspect-ratio: 21/9;
  left: 50% !important;
  top: 50% !important;
  transform: translatex(-50%) translateY(-50%) !important;
  width: auto !important;
  height: auto !important;
  min-width: 116% !important;
  min-height: 100% !important;
}

.filtre-video::before {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--gradient--black-opacity);
  pointer-events: none;
}

.btn-sound svg path{
  transition: stroke 0.3s ease-in-out;
}

.btn-sound.soundOn svg path{
  stroke: transparent;
}

.mask-logo::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: -50%;
  left: -50%;
  transform: translate(50%, 50%);
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/2025/12/Group-6.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.section-hero.mask-logo::after {
  transform: translate(110%, 50%);
  opacity: 0.5;
}

.mask-left.mask-logo::after {
  transform: translate(37%, 50%);
}

.mask-right.mask-logo::after {
  transform: translate(110%, 100%);
  height: 80%;
}

.filtre-img-red::after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--gradient--red-opacity);
  pointer-events: none;
}

.filtre-img-light::before {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: var(--wp--preset--gradient--light-opacity);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.filtre-img-light::after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--wp--preset--gradient--red-opacity);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.filtre-img-light h2,
.filtre-img-light{
  transition: color 0.3s ease-in-out;
}

.filtre-img-light svg path{
  transition: fill 0.3s ease-in-out;
}

.filtre-img-light:hover h2,
.filtre-img-light:hover{
  color: var(--wp--preset--color--light);
}

.filtre-img-light:hover svg path{
  fill: var(--wp--preset--color--light);
}

.filtre-img-light:hover.filtre-img-light::after {
  opacity: 1;
}

.filtre-img-light:hover.filtre-img-light::before {
  opacity: 0;
}

.filtre-img-light:hover .opacity-0{
  opacity: 1 !important;
  border-color: var(--wp--preset--color--light);
  color: var(--wp--preset--color--light);
  pointer-events: all;
  cursor: pointer;
}

/* Carousel Img */

.swiper-imgs,
.swiper-logos{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-logo .swiper-imgs,
.swiper-logos,
.swiper-imgs .swiper-wrapper,
.swiper-logos .swiper-wrapper,
.swiper-slide {
  height: auto;
}

.carousel-logo .swiper-nav-container{
  position: unset;
  justify-content: center;
  gap: 20px;
  transform: unset;
}

/* Carousel Logo */


.carousel-logo .swiper-imgs .swiper-slide,
.swiper-logos .swiper-slide {
  height: auto;
  object-fit: contain;
  max-height: 100px;
}

.picto-hover .rounded-full{
  transition: background 0.3s ease-in-out;
}

.picto-hover:hover .rounded-full{
  background-color: var(--wp--preset--color--light);
}

.picto-hover svg path{
  transition: fill 0.3s ease-in-out;
}

.picto-hover:hover svg path{
  fill: var(--wp--preset--color--primary);
}

.picto-hover p{
  transition: opacity 0.3s 
  ease-in-out;
}

.picto-hover:hover .text-moins{
  opacity: 0;
}

.picto-hover .text-plus{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.picto-hover:hover .text-plus{
  opacity: 1;
}

@keyframes fadeInProjects {
  from {
    opacity: 0;;
  }

  to {
    opacity: 1;
  }
}

.modale-clientele{
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100dvh;
  padding: 200px 100px 100px 100px;
  background: var(--wp--preset--gradient--black-opacity);
  pointer-events: none;
  z-index: 1000;
}

.modale-clientele.active{
  pointer-events: all;
  overflow: hidden;
  
}

.modale-clientele .swiper-imgs{
  width: 70%;
  opacity: 0;
}

.modale-clientele .swiper-wrapper{
  height: 100%;
}

.modale-clientele.active .swiper-imgs{
  animation: 0.4s ease 0s 1 normal forwards running fadeInProjects;
}

.clientele-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4); /* overlay léger */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10; /* au-dessus du contenu de la modale */
}

.clientele-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.clientele-loader-spinner {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 4px solid #fff;
  border-top-color: transparent;
  animation: clientele-spin 0.8s linear infinite;
}

@keyframes clientele-spin {
  to {
    transform: rotate(360deg);
  }
}


.profils-recherche{
  transition: color 0.3s ease-in-out;
}

.profils-recherche .fleche-collapse path{
  transition: fill 0.3s ease-in-out;
}

.profils-recherche:hover,
.profils-recherche:hover .fleche-collapse path{
  color: var(--wp--preset--color--primary);
  fill: var(--wp--preset--color--primary);
  cursor: pointer;
}

.profils-recherche:hover:has(.collapse-opened),
.profils-recherche:hover:has(.collapse-opened) .fleche-collapse path{
  color: var(--wp--preset--color--dark);
  fill: var(--wp--preset--color--dark);
}

.profils-recherche .fleche-collapse {
  transition: transform 0.4s ease-in-out;
}

.profils-recherche:has(.collapse-opened) .fleche-collapse {
  transform: rotate(90deg);
}

.title-collapse{
  cursor: pointer;
}

.collapse-container{
  transition: grid-template-rows 0.4s ease-out;
  overflow: hidden;
  display: grid !important;
}

.collapse-closed {
  grid-template-rows: 0fr;
}

.collapse-opened {
  grid-template-rows: 1fr;
}

.expandable-collapse,
.sub-collapse {
  min-height: 0;
}


/* Formulaire */

.formulaire .wpforms-container {
  margin: unset !important;
  width: 100%;
  min-width: 100%;
}

.formulaire .wpforms-field-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--16);
}

.formulaire .wpforms-field {
  padding: unset;
  width: 100%;
}

.formulaire .wpforms-field input,
.formulaire .wpforms-field textarea,
.formulaire .wpforms-field input::placeholder,
.formulaire .wpforms-field-required input::before,
.formulaire .wpforms-field-required input::after,
.formulaire .wpforms-field-required input {
  background-color: transparent !important;
  border-color: var(--wp--preset--color--dark) !important;
  color: var(--wp--preset--color--dark) !important;
  border-radius: 0 !important;
}

.formulaire .wpforms-field input,
.formulaire .wpforms-field textarea {
  max-width: 100%;
}

.formulaire .wpforms-field textarea {
  height: 115px !important;
}

.formulaire .wpforms-field-required input::before,
.formulaire .wpforms-field-required input::after,
.formulaire .wpforms-field-required input {
  border-radius: 0 !important;
}

.formulaire .wpforms-field-label,
.formulaire .wpforms-field-label-inline {
  margin-bottom: 6px !important;
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 400;
  color: var(--wp--preset--color--dark) !important;
  word-break: auto-phrase;
  font-weight: bold;
}

.formulaire .wpforms-field-large {
  padding: 10px var(--wp--preset--spacing--16);
}

.formulaire .wpforms-required-label {
  color: var(--wp--preset--color--dark);
}

.formulaire #wpforms-601-field_10-container .wpforms-required-label {
  display: none;
}

.formulaire .wpforms-field-radio .wpforms-field-label{
  margin-bottom: 20px !important;
}

.formulaire .wpforms-field-radio .wpforms-field-required{
  gap: 20px;
}

.formulaire .wpforms-container-full input[type=radio]:before {
  border-radius: 360px !important;
}

.formulaire .wpforms-container-full input[type=radio]:checked::after {
  border-radius: 360px !important;
  background-color: var(--wp--preset--color--primary) !important;
}

.formulaire .wpforms-submit-container {
  margin-top: var(--wp--preset--spacing--16) !important;
}

.formulaire .wpforms-field-checkbox .wpforms-field-required input {
  align-self: center;
}

.formulaire .wpforms-field .wpforms-uploader {
  border-style: solid !important;
  border-radius: 0 !important;
  padding: 10px 15px !important;
  align-items: start !important;
  justify-content: center !important;
}

.formulaire .dz-message {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: start !important;
}

.formulaire .dz-message span {
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 400;
  color: var(--wp--preset--color--dark) !important;
}

.formulaire .dz-message svg {
  display: none;
}


.formulaire .wpforms-submit {
  height: auto !important;
  background-color: var(--wp--preset--color--primary) !important;
  border-radius: 0px !important;
  padding: 12px 24px !important;
  font-family: var(--wp--preset--font-family--primary) !important;
  color: var(--wp--preset--color--light) !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

.formulaire .wpforms-submit:hover {
  background-color: var(--wp--preset--color--primary-hovered) !important;
}

/* POP UP FORMULAIRE */

.popup-formulaire {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--wp--preset--color--dark);
  color: var(--wp--preset--color--light);
  padding: 100px;
  gap: 26px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  line-height: 1.2;
  text-align: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.popup-formulaire .title-popup {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--h-2);
  font-weight: 600;
  text-transform: uppercase;
}

.popup-formulaire .text-popup {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--h-2);
  font-weight: 300;
}

.popup-formulaire .button-popup {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--light);
  padding: 12px 24px;
  border: none;
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

.popup-formulaire .button-popup:hover {
  background: var(--wp--preset--color--primary-hovered);
}

.popup-formulaire.active {
  opacity: 1;
  pointer-events: all;
}

.wpforms-confirmation-container-full {
  background: transparent !important;
  border: 1px solid var(--wp--preset--color--secondary) !important;
  border-radius: 0px !important;
  font-family: var(--wp--preset--font-family--secondary) !important;
}

.wpforms-confirmation-container-full span {
  font-family: var(--wp--preset--font-family--secondary) !important;
  color: var(--wp--preset--color--dark) !important;
  text-wrap-mode: wrap;
}

/* Footer Netdev */

.netdev-footer {
  background-color: #1A070E !important;
}

.netdev-footer,
.netdev-footer .netdev-footer-content .netdev-footer-text a {
  color: var(--wp--preset--color--light) !important;
    font-weight: 700;

}

.netdev-footer .logo,
.netdev-footer .netdev-footer-content .netdev-footer-text a {
  opacity: unset !important;
}


/* Mentions légales */

.netdev-mentions-legales h2 {
  margin-top: 32px;
  margin-bottom: 20px;
}

.netdev-mentions-legales a {
  text-decoration: underline;
}



