/* Variables globales */
:root {
  --primary-color: #2a5e7dff;
  --secondary-color: #b4ef3bff;
  --background-color: white;
  --text-color: #2a5e7dff;
  --border-color: #ff00ff;
  --spacing-unit: 50px;
  --error-color: #dc3545;
  --success-color: #28a745;
  --header-height: 100px;
  --section-padding-top: 80px;
  --bloc-padding-bothsides: 15vw;
  --bloc-padding-line: 10vw;
  --bloc-offsetpadding-oneside: calc(4 * var(--bloc-padding-bothsides));
  --margin-between-sections: 100px;
  --paddin-bothsides-phone: 5vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}
h1 {
  font-size: 24pt;
  line-height: 130%;
}
body {
  font-family: Calibri, sans-serif;
  line-height: 150%;
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 16pt;
  /* padding-top: var(--header-height); */
}

.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* position: fixed; */
  width: 100%;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-unit);
}
.header__logo {
  display: flex;
  align-items: center;
  max-width: 100vw;
  margin: 5px 0;
}
.header__logo img {
  width: 90vw;
  max-width: 150px;
}

.header__nav {
  display: flex;
  align-items: flex-end;
}

.nav {
  display: flex;
  align-items: center;
}
.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav__item {
  position: relative;
  padding: 10px 10px;
  border-bottom: 3px solid transparent;
}
.nav__item:hover {
  box-shadow: 10px 0 10px -10px rgba(128, 128, 128, 0.2),
    -10px 0 10px -10px rgba(128, 128, 128, 0.2);
}
.nav__item:active {
  box-shadow: inset 10px 0 10px -10px rgba(128, 128, 128, 0.2),
    inset -10px 0 10px -10px rgba(128, 128, 128, 0.2);
}
.nav__link {
  font-family: Arial, sans-serif;
  font-size: 12pt;
  font-weight: normal;
  color: #2a5e7dff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.nav__item--active {
  border-bottom-color: #b4ef3bff;
  background: linear-gradient(
    to top,
    rgba(179, 239, 59, 0.1),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0)
  );
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #2a5e7dff;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  margin-bottom: var(--margin-between-sections);
  box-shadow: inset 0 10px 10px rgba(2, 2, 2, 0.15),
    inset 0 -3px 3px rgba(2, 2, 2, 0.15);
  animation: Apparait 1s;
}
.hero--accueil {
  background-image: url("../Graphique/Fond_page_accueil_2000x769.png");
  height: 87vh;
}
.hero--autres {
  height: 50vh;
  padding-left: 10vw;
  justify-content: left;
  padding-bottom: 50px;
  align-items: end;
  font-size: 50pt;
  font-weight: bold;
}
.hero__titre {
  color: white;
  font-size: 50pt;
  font-weight: bold;
}
.hero--apropos {
  background-image: url("../Graphique/Fond_Page_APropos_2000x577.png");
}
.hero--services {
  background-image: url("../Graphique/Fond_Page_Services_2000x1385.png");
}
.hero--projets {
  background-image: url("../Graphique/Fond_Page_Projets_2000x1385.png");
}
.hero--contact {
  background-image: url("../Graphique/Fond_Page_Contact_2000x1385.png");
}
.hero--CGV {
  background-image: url("../Graphique/Fond_Page_CGV_2000x1385.png");
}
.hero__logo {
  width: 90vw;
  max-width: 500px;
  text-shadow: 0 10px 10px rgba(2, 2, 2, 0.15), 0 -3px 3px rgba(2, 2, 2, 0.15);
}
.hero__slogan {
  margin-top: 50px;
  font-style: italic;
  font-size: 30pt;
  text-shadow: 0 3px 3px rgba(2, 2, 2, 0.15), 0 -3px 3px rgba(2, 2, 2, 0.15);
}

.LienDiscret {
  color: var(--primary-color);
  font-style: italic;
  text-decoration: none;
  transition: color 0.3s ease;
}

.LienDiscret:hover {
  color: darken(var(--primary-color), 10%);
}

.section {
  margin: var(--section-padding-top) 0;
  text-align: justify;
  /* background-image: linear-gradient(
      to top,
      rgb(255, 255, 255, 100%) 0%,
      rgb(255, 255, 255, 0%) 5%,
      rgb(255, 255, 255, 0%) 95%,
      rgb(255, 255, 255, 100%) 100%
    ),
    repeating-radial-gradient(
      circle at 0 150%,
      hsla(219, 100%, 50%, 0.1) 0,
      hsl(0, 0%, 98%) 40px
    ); */
}
.section__cache {
  display: none;
  height: 0;
  width: 0;
  color: transparent;
  left: 5000px;
}
.section__bloc {
  margin-bottom: var(--margin-between-sections);
}
.section__bloc:first-child {
  margin-top: var(--margin-between-sections);
}
.section__bloc:last-child {
  margin-bottom: 0;
}
.section__centre {
  padding: 0 var(--bloc-padding-bothsides);
}
.section__bloc--gauche {
  padding: 0 var(--bloc-offsetpadding-oneside) 0 var(--bloc-padding-bothsides);
  text-justify: left;
}
.section__bloc--centre {
  padding: 0 calc(2.5 * var(--bloc-padding-bothsides));
  text-justify: left;
}
.section__bloc--droite {
  padding: 0 var(--bloc-padding-bothsides) 0 var(--bloc-offsetpadding-oneside);
}
.section__bloc--decroche {
  transform: 100px;
}
.section__TexteAligne--droite {
  direction: rtl;
}
.section__titre {
  margin-bottom: 30px;
  line-height: 130%;
}
.section__titre--droite {
  text-align: right;
}
.section__titre--partenaires {
  margin-bottom: 100px;
}

.section__partenaires {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 50px;
}
.section__logopartenaires {
  height: 150px;
}
.section__logopartenaires:hover {
  animation: 0.5s 1 ZoomLeger forwards;
}
.section__compact {
  display: flex;
  padding: 0 calc(var(--bloc-padding-bothsides));
  align-items: center;
  gap: 50px;
}
.section__compact--lignes {
  padding: 0 calc(var(--bloc-padding-bothsides));
}
.section__compact--footer {
  display: flex;
  padding: 20px var(--spacing-unit);
  align-items: center;
  justify-content: right;
  gap: 50px;
}
.section__compact--EspaceConstant {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.section__haut {
  display: flex;
  padding: 0 calc(var(--bloc-padding-bothsides));
  align-items: top;
  gap: 50px;
}
.section__haut__ligne {
  display: flex;
  padding: 0 calc(var(--bloc-padding-bothsides));
  align-items: top;
  gap: 50px;
  flex-direction: column;
  margin-bottom: 50px;
}
.section__haut__ligne--elargi {
  display: flex;
  padding: 0 2vw;
  align-items: top;
  gap: 50px;
  flex-direction: column;
  margin-bottom: 50px;
}
.section__texte {
  margin-bottom: 15px;
}
.section__texte:last-child {
  margin-bottom: 0;
}
.section__image {
  display: flex;
  max-width: 90vw;
  object-fit: cover;
  border-radius: 10px;
}
.section_colonne {
  width: 100%;
}
.section__titre--colonne {
  display: flex;
  flex: row;
  align-items: center;
  text-align: justify;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.BoutonPlusInfos {
  display: flex;
  align-items: center;
  border: 0;
  line-height: 2;
  padding: 0 10px;
  font-size: 9pt;
  text-align: center;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
}

.CartesRealisations:hover .BoutonPlusInfos {
  background-color: var(--secondary-color);
  transition: 0.2s ease;
}
.CartesRealisations:active .BoutonPlusInfos {
  box-shadow: none;
  transition: 0.1s ease;
}

.BoutonRetour {
  display: flex;
  align-items: center;
  border: 0;
  line-height: 2;
  padding: 0 10px;
  font-size: 9pt;
  text-align: center;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: inset 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
}

.BoutonRetour:hover {
  background-color: var(--secondary-color);
  cursor: pointer;
}

.BoutonRetour:active {
  box-shadow: inset 2px 2px 4px 4px rgba(0, 0, 0, 0.3);
}
.table__th--HautDroite {
  padding-bottom: 30px;
  padding-right: 10px;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}
.table__td {
  width: 100%;
  padding-bottom: 30px;
}
.table__td--fin {
  width: 100%;
}

.section__titre--picto {
  display: flex;
  flex: row;
  align-items: left;
  text-align: justify;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.CartesMonop {
  display: inline-block;
  line-height: 100%;
  padding: 20px;
  width: 300px;
  min-width: 300px;
  height: 300px;
  background-color: #f8f8f8;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.CartesMonop__titre {
  display: flex;
  flex: row;
  align-items: center;
  text-align: justify;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
  background-color: #2a5e7dff;
  padding: 20px;
  color: white;
  /* border: solid 1px #b4ef3bff; */
}
.CartesMonop__texte {
  padding: 10px 0;
  border-style: solid black;
  color: #2a5e7dff;
  font-size: 12pt;
  text-justify: none;
  text-align: left;
}
.CartesMonop__texte li {
  list-style: inside "-   ";
}

.CartesMonop__cadre {
  border: solid 1px;
  padding: 10px;
  height: 100%;
}
.CartesMonop:hover {
  /* transform: translateY(-10px);*/
  transition: all 0.1s ease-in-out;
  animation: 0.3s 1 PoseCarte forwards;
}

.CartesRealisations {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  /* border: solid 1px rgb(0, 0, 0); */
  box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.2);
  width: 90vw;
  max-width: 550px;
  height: 530px;
  background-color: #ffffff;
  overflow: clip;
  justify-items: center;
  color: var(--primary-color);
  text-decoration: none;
}
.CartesRealisations:hover {
  box-shadow: 0 0 8px 0 var(--secondary-color);
  transition: 0.2s ease;
}
.CartesRealisations:active {
  box-shadow: none;
  border: solid 3px var(--secondary-color);
  transition: 0.1s ease;
}

.CartesRealisations__Illustration {
  height: 80%;
  display: flex;
  justify-content: center;
}
.CartesRealisations__Image {
  display: flex;
  height: 100%;
  justify-content: center;
  filter: drop-shadow(inset 100px 100px 100px white);
  object-fit: fill;
}
.CartesRealisations__legende {
  display: flex;
  flex-direction: row;
  justify-content: left;
  height: 20%;
  align-items: center;
}
.CartesRealisations__titre {
  display: flex;
  align-items: center;
  text-justify: none;
  text-align: left;
  height: 100%;
  padding: 0 30px 0 30px;
  width: 80%;
}

.IllustrationRealisations:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.329);
  transition-duration: 0.2s;
}

.VideoCarousel {
  display: flex;
  vertical-align: middle;
  width: 100%;
  height: 90%;
}

.carousel-container {
  display: flex;
  width: 650px;
  max-width: 650px;
  height: auto;
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  cursor: default;
}

/* .carousel.dragging {
  cursor: grabbing;
  transition: none;
} */
.carousel-slide {
  position: relative;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  color: white;
  text-align: center;
  /* user-drag: none; */
  pointer-events: none;
}
/* .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 40px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
} */

/* .slide-title {
  font-size: 24px;
  font-weight: bold;
} */

/* .slide-description {
  font-size: 16px;
  line-height: 1.4;
} */

.slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: rgb(255, 255, 255);
  padding: 60px 20px 40px;
  font-size: 18px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

/* Zone interactive */
.interactive-zone {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid white;
  box-shadow: 0 0 4px 4px rgba(99, 99, 99, 0.8);
  border-radius: 50%;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  z-index: 2;
}

/* Popup */
.popup {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 80%;
  width: 250px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
  container-name: ContainerPopup;
}

/* Overlay sombre */
.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 99;
}

.interactive-zone:hover .popup-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Container pour le popup */
.popup-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}

.popup img {
  height: 75%;
  object-fit: contain;
  margin: 10px;
}

.popup p {
  margin: 0;
  color: #2a5e7dff;
  line-height: 1;
  font-size: 10pt;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(223, 255, 158, 0.603);
  cursor: pointer;
}

.dot.active {
  background: #b4ef3bff;
  width: 30px;
  transition: 0.25s ease;
}

.ContactContainer {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  padding: 40px 5vw;
  margin: 0 var(--bloc-padding-bothsides);
}

.ContactGroup {
  margin-bottom: 25px;
  position: relative;
}

.ContactGroup label {
  display: block;
  margin-bottom: 8px;
  color: #2a5e7dff;
  font-weight: 500;
}

.ContactGroup input,
.ContactGroup textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 12pt;
  transition: all 0.3s ease;
}
input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.ContactGroup input:focus,
.ContactGroup textarea:focus {
  border-color: #b4ef3bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(179, 239, 59, 0.1);
}

.ContactGroup textarea {
  height: 150px;
  resize: vertical;
}

.ContactError {
  color: #e74c3c;
  font-size: 0.9em;
  margin-top: 5px;
  display: none;
}

.ContactSuccess {
  display: none;
  background: #b4ef3bff;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.ContactButton {
  background: #2a5e7dff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.ContactButton:hover {
  background: #357abd;
  transform: translateY(-2px);
}

.ContactButton:active {
  transform: translateY(0);
}

.section__picto {
  height: 50px;
}

.Centrer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 50px;
}
.CentrerTexte {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 50px;
  text-align: center;
}
.AligneHorizontalGauche {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: left;
  align-items: top;
  gap: 20px;
}

.LienDiscret {
  text-decoration: none;
  color: #2a5e7dff;
  font-weight: normal;
  text-decoration: underline 1pt #b4ef3bff;
}
.LienDiscret:hover {
  color: rgb(106, 179, 221);
  text-decoration: underline 1.5pt #b4ef3bff;
}

.table__texte--discret {
  line-height: 120%;
  font-style: italic;
  font-size: 12pt;
  color: rgb(102, 102, 102);
  width: 100%;
}

.ListeAvecPuceSimple {
  list-style-type: "- ";
  list-style: inside;
}
.ListeAvecNombre {
  list-style-type: decimal;
  font-size: 12pt;
  line-height: 130%;
}
.ListeAvecNombre > li::marker {
  font-weight: bold;
}
.CGV__titre {
  margin-top: 20px;
}

.Trait1 {
  margin: 0 calc(var(--bloc-padding-line));
  border-style: hidden;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 0, 242, 0.2),
    rgb(0, 255, 234, 0.2),
    rgb(255, 174, 0, 0.2)
  );
}
.Trait--footer {
  margin: 0;
  border-style: hidden;
  height: 2px;
  background: white;
}
.Trait2 {
  margin: 30px 30px;
  border-style: hidden;
  height: 1px;
  background: rgb(114, 114, 114);
}

.footer {
  font-size: 0.9em;
  color: #ffffff;
  /* background: linear-gradient(to top right, #3e5656, #2c2c2c); */
  background: linear-gradient(
      0deg,
      rgba(138, 73, 198, 0.3),
      rgba(255, 255, 255, 0) 80%
    ),
    linear-gradient(180deg, rgba(198, 73, 160, 0.3), rgba(255, 255, 255, 0) 80%),
    linear-gradient(160deg, rgba(73, 198, 190, 0.5), rgba(255, 255, 255, 0) 50%),
    linear-gradient(340deg, rgba(133, 198, 73, 0.5), rgba(255, 255, 255, 0) 50%),
    linear-gradient(200deg, rgba(252, 255, 51, 0.5), rgba(255, 255, 255, 0) 50%);
  box-shadow: inset 0 10px 10px rgba(2, 2, 2, 0.15),
    inset 0 -3px 3px rgba(2, 2, 2, 0.15);
}
.footer__titre {
  padding: 0;
  font-size: 20pt;
  font-weight: bold;
  padding-bottom: 20px;
  text-decoration: none;
  color: inherit;
}
.footer__texte {
  text-align: left;
  align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: inherit;
}
.footer__texte--copyright {
  padding: 20px var(--spacing-unit);
}
.footer_icones {
  height: 30px;
}
.visible__Tel {
  display: none;
}
.footer__reseaux {
  display: flex;
  flex-direction: column;
}
.LienInvisible {
  text-decoration: none;
  color: inherit;
}
/* table,
th,
td {
  border: solid;
} */
@media (max-width: 1100px) {
  .header {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    margin-bottom: 10px;
  }
  .nav {
    position: relative;
    width: 100vw;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 8px 0 rgba(2, 2, 2, 0.15);
    z-index: 100;
  }
  .nav__list {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .nav__list.active {
    display: flex;
    gap: 0;
  }
  .hero.desactive {
    display: none;
    gap: 0;
  }
  .hero__slogan {
    font-size: 16pt;
  }
  .table__texte--discret {
    width: auto;
  }
  .section__bloc--gauche {
    padding: 0 var(--bloc-padding-bothsides);
  }
  .section__bloc--centre {
    padding: 0 var(--bloc-padding-bothsides);
  }
  .section__bloc--droite {
    padding: 0 var(--bloc-padding-bothsides);
  }
  .section__compact,
  .section__haut,
  .section__bloc {
    display: flex;
    flex-direction: column;
    padding-right: var(--paddin-bothsides-phone);
    padding-left: var(--paddin-bothsides-phone);
  }
  .section__titre--droite {
    text-align: left;
  }
  .section_colonne:not(:last-child) {
    margin-bottom: var(--margin-between-sections);
  }
  .visible__PC {
    display: none;
  }
  .visible__Tel {
    display: flex;
  }
}

@media (max-width: 480px) {
  .ContactContainer {
    font-size: 11pt;
    margin: 0 2vw;
  }

  .ContactContainer h1 {
    font-size: 18pt;
  }
  .table__th--HautDroite {
    white-space: normal;
    padding: 0;
    padding-right: 35px;
    padding-top: 7px;
    vertical-align: top;
  }
  .table__annees {
    writing-mode: sideways-lr;
  }

  body {
    font-size: 14pt;
    text-justify: auto;
  }
  .table__texte--discret {
    text-justify: none;
    text-align: left;
  }
  .CartesRealisations__titre,
  .section__titre {
    line-height: 120%;
    text-justify: none;
    text-align: left;
  }
  .hero__titre {
    padding-left: 0;
    justify-content: center;
    font-size: 26pt;
    max-width: 90vw;
  }
  .hero--autres {
    padding-left: 0;
    justify-content: center;
  }
  .hero--accueil {
    background-image: url("../Graphique/Fond_Page_accueil_600x900.png");
  }
  .hero--apropos {
    background-image: url("../Graphique/Fond_Page_APropos_600x900.png");
  }
  .hero--projets {
    background-image: url("../Graphique/Fond_Page_Projets_600x900.png");
  }
  .hero--services {
    background-image: url("../Graphique/Fond_Page_Services_600x900.png");
  }
  .hero--contact {
    background-image: url("../Graphique/Fond_Page_Contact_600x900.png");
  }
  .hero--CGV {
    background-image: url("../Graphique/Fond_Page_CGV_600x900.png");
  }
}

@keyframes PoseCarte {
  100% {
    transform: translateX(-5px) translateY(-12px);
    box-shadow: 6px 12px 8px rgba(0, 0, 0, 0.2);
  }
}
@keyframes ZoomLeger {
  100% {
    transform: scale(110%);
    font-weight: bold;
  }
}
@keyframes Apparait {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
