@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Serif+Text:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

html {
  scroll-behavior: smooth;
}

body {
  background: black;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: white;
  font-style: normal;
  scroll-behavior: smooth;
}

#defilement li {
  display: none;
  list-style: none;
}
#defilement li:first-child {
  display: block;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: fixed;
  top: 0;
  background: black;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: all 500ms;
}

.logo {
  background: url("../img/logo_header.png");
  background-size: contain;
  width: 100px;
  height: 80%;
  background-repeat: no-repeat;
}

.menu {
  display: flex;
  margin-left: 250px;
}

.menu li {
  list-style: none;
  margin: 0 10px;
  text-transform: uppercase;
  cursor: pointer;
}

.menu li a {
  text-decoration: none;
  color: white;
}

.menu .active a {
  font-weight: bold;
  color: #ff8929;
}

/* Styles pour le menu hamburger */
.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Cacher la case à cocher */
#menu-toggle {
  display: none;
}

/* Media queries pour les écrans mobiles */
@media (max-width: 768px) {
  header {
    justify-content: space-between;
  }
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: black;
  }
  .menu li {
    margin: 10px 0;
    text-align: center;
  }
  .menu-icon {
    display: block;
  }
  /* Afficher le menu lorsque la case est cochée */
  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
  .logo {
    margin-left: 0;
  }
}
.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.video-background {
  z-index: -1;
  position: fixed;
  width: 100%;
  top: 0;
  height: calc(100vh - 88px); /* ou la hauteur que tu souhaites pour la section */
  overflow: hidden;
  top: 88px;
}
.video-background .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-background .content {
  position: absolute;
  z-index: 2;
  color: white; /* Choisis une couleur de texte qui contraste avec ta vidéo */
  text-align: center;
  padding: 20px;
  bottom: 5vh;
  left: 0;
  right: 0;
  margin: auto;
}
.video-background .content img {
  margin: auto;
  margin-top: 3vh;
}
.video-background .content .scroll-down {
  position: relative;
  text-align: center;
  margin-top: 50px; /* Ajustez cette valeur en fonction de votre disposition */
}
.video-background .content .scroll-down img {
  width: 50px; /* Ajustez la taille selon vos besoins */
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
}

#a-propos {
  width: 100%;
  padding: 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  position: relative;
  margin-top: 100vh;
}
#a-propos .description {
  text-align: center;
}
#a-propos .description p {
  margin-top: 30px;
}
#a-propos h1 {
  text-align: center;
  font-size: 46px;
}
#a-propos .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  z-index: 0;
}
#a-propos video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#a-propos video:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: black;
}
#a-propos .content {
  width: 1024px;
  max-width: 80%;
  z-index: 2;
}
#a-propos .arrow-left {
  width: 30px;
  height: 2px;
  background: white;
  position: relative;
}
#a-propos .arrow-left:after {
  position: absolute;
  top: 0;
  width: 2px;
  height: 30px;
  background: white;
  content: "";
}
#a-propos .arrow-right {
  width: 2px;
  height: 30px;
  background: white;
  position: relative;
  float: right;
  margin-top: 20px;
}
#a-propos .arrow-right:after {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: white;
  content: "";
  right: 0;
}

#realisations {
  background: black;
  padding: 50px 0;
}
#realisations h1 {
  text-align: center;
  font-size: 46px;
  position: relative;
  padding-bottom: 50px;
}
#realisations #lecteur-video {
  padding: 50px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  color: black;
  margin-bottom: 50px;
}
#realisations #lecteur-video .video-wrapper {
  width: 70vw; /* 2/3 de la largeur de l'écran */
  height: 39.2vw; /* Hauteur basée sur le ratio d'aspect */
  max-width: 1200px; /* 2/3 de la largeur de l'écran */
  max-height: 672px; /* Hauteur basée sur le ratio d'aspect */
  overflow: hidden;
  position: relative;
  border: 0;
}
#realisations #lecteur-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}
#realisations #lecteur-video .description {
  width: 70vw;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10px 0 10px;
}
#realisations #lecteur-video .description h1 {
  font-size: 46px;
  font-family: "Roboto", sans-serif;
  padding: 0 !important;
  text-align: unset;
}
#realisations #lecteur-video .description p {
  margin-top: 20px;
  padding-bottom: 20px;
}
#realisations #lecteur-video .description .auteurs {
  min-width: 400px;
  max-width: 400px;
}
#realisations #lecteur-video .description .auteurs ul {
  padding: 0;
}
#realisations #lecteur-video .description .auteurs ul b {
  color: #979797;
}
#realisations #lecteur-video .description .auteurs ul li {
  list-style: none;
}
#realisations .liste {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#realisations .liste li {
  width: calc(30% - 80px);
  margin: 0 40px 40px 40px;
  height: 25vh;
  list-style: none;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  transition: transform 1s ease;
}
#realisations .liste li:hover {
  transform: scale(1.1);
}
#realisations .next, #realisations .prev, #realisations .close {
  position: absolute;
  cursor: pointer;
  opacity: 0.4;
  filter: invert(1);
  transition: all 250ms ease;
}
#realisations .next:hover, #realisations .prev:hover, #realisations .close:hover {
  opacity: 1;
}
#realisations .next, #realisations .close {
  right: 50px;
}
#realisations .close {
  top: 20px;
}
#realisations .prev {
  left: 50px;
  transform: rotate(180deg);
}

#formation {
  background: url("../img/1404.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  position: relative;
}
#formation:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(18, 13, 13, 0.9);
}
#formation h1 {
  text-align: center;
  font-size: 46px;
  position: relative;
  padding-bottom: 50px;
}
#formation .content {
  width: 1024px;
  max-width: 80%;
  z-index: 2;
}
#formation p {
  margin: 50px 0;
  text-align: center;
}
#formation .competences {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#formation .competences ul {
  padding: 0;
  flex: 1;
}
#formation .competences li {
  position: relative;
  list-style: none;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
}
#formation .competences li:before {
  background: url("../img/check-mark.png") no-repeat center center;
  background-size: cover;
  content: "";
  position: absolute;
  left: -30px;
  width: 25px;
  height: 25px;
}

footer {
  background-color: #111;
  padding: 50px 0;
  color: white;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
}
footer .footer-left {
  width: 40%;
}
footer .footer-left h2 {
  text-transform: uppercase;
}
footer .logo-footer {
  width: 256px;
  margin-bottom: 20px;
}
footer .follow {
  text-align: center;
  margin: 15px 0;
  text-transform: uppercase;
  font-weight: bold;
}
footer .social-icons {
  display: flex;
  justify-content: center;
}
footer .social-icons img {
  margin: 0 5px;
  width: 36px;
}
footer .footer-bottom {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  #realisations .liste {
    flex-direction: column !important;
    padding: 0 !important;
  }
  #realisations .liste li {
    width: 80%;
    margin: 10px 0;
  }
  .video-wrapper {
    margin-top: 35px;
  }
  #realisations #lecteur-video .description {
    flex-direction: column;
  }
  #realisations #lecteur-video .description .auteurs {
    min-width: unset;
    max-width: unset;
  }
  #formation .competences {
    flex-direction: column;
  }
  footer .footer-left {
    width: 90%;
    margin-bottom: 50px;
  }
  footer .footer-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: unset;
  }
  .prev, .next {
    display: none;
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Fond noir */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease; /* Transition pour le fondu en sortie */
}

#preloader img {
  /* Ajustez les dimensions du logo si nécessaire */
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 2s forwards; /* Animation pour le fondu en entrée */
}

/* Animation pour le fondu en entrée du logo */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
