@charset "UTF-8";
html, body, h1, h2, h3, h4, h5, h6, p, a, span, ul, li {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  list-style-type: none;
  color: black;
  font-weight: normal;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background-color: white;
}

header {
  width: 100%;
  height: 20vh;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: 0.6s;
}
header .identity {
  height: 100%;
  width: 100%;
  background-color: black;
  transition: 0.6s;
}
header .identity a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .identity a img {
  height: 80%;
}
header.defilée {
  height: 80px;
}
header.defilée:hover {
  height: 100px;
}

.introduction {
  position: relative;
}
.introduction video {
  object-fit: cover;
  object-position: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.introduction h2 {
  width: 90%;
  padding: 5%;
  position: absolute;
  top: 20%;
  font-size: 42px;
  font-style: italic;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0px 1px 8px white;
  line-height: 90px;
  color: black;
}
.introduction .container_scroll {
  position: absolute;
  bottom: 0;
  width: 100vw;
  padding-bottom: 16px;
  margin: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.introduction .container_scroll span, .introduction .container_scroll .scroll {
  font-size: 32px;
  display: inline-block;
  text-shadow: 0px 1px 8px white;
  color: black;
}
.introduction .container_scroll .scroll {
  display: flex;
  margin-top: 8px;
  animation: scroll 2s infinite alternate ease-in-out;
}
.introduction .container_scroll .scroll i {
  transition: 0.6s ease;
  padding-left: 8px;
  padding-right: 8px;
  font-weight: bold;
}
.introduction .container_scroll:hover .scroll i {
  padding-left: 16px;
  padding-right: 16px;
}
@keyframes scroll {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

.fonctionnement {
  padding: 70px;
  padding-bottom: 100px;
  background: url(/public/images/background/bugatti.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.fonctionnement ul .fenetre {
  width: 50%;
  height: 250px;
  padding: 24px;
  margin: auto;
  display: flex;
  border: 2px solid #1f3e8d;
  border-radius: 25px;
  box-shadow: 0 0 20px black;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}
.fonctionnement ul .fenetre img {
  height: 100%;
  border-radius: 15px;
}
.fonctionnement ul .fenetre .informations {
  width: 100%;
  padding-left: 28px;
  padding-right: 28px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.fonctionnement ul .fenetre .informations h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: left;
}
.fonctionnement ul .fenetre .informations p {
  font-size: 24px;
  color: white;
}
.fonctionnement ul .fenetre .informations a {
  width: 100%;
  padding: 12px;
  color: white;
  font-size: 28px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(31, 62, 141, 0.7);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}
.fonctionnement ul .fenetre .informations a:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 10px black;
}
.fonctionnement ul .bouton {
  width: 100%;
  margin-top: 72px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.fonctionnement ul .bouton a {
  width: 50%;
  margin: auto;
  padding: 24px;
  color: white;
  font-size: 28px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(31, 62, 141, 0.7);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}
.fonctionnement ul .bouton a:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 10px black;
}
.fonctionnement ul #bouton_photos {
  display: none;
}
.fonctionnement h2 {
  font-size: 42px;
  text-align: center;
  color: white;
}

.fenetre_projet {
  margin-top: 80px;
  display: flex;
  width: 100vw;
  background: url(/public/images/background/bugatti.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.fenetre_projet .content {
  position: relative;
  overflow: scroll;
  width: 60%;
  margin: auto;
  padding: 40px 50px;
  padding-bottom: 0;
  margin-top: 70px;
  margin-bottom: 70px;
  border: 2px solid #1f3e8d;
  border-radius: 25px;
  box-shadow: 0 0 20px black;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}
.fenetre_projet .content a .fa-times {
  position: absolute;
  cursor: pointer;
  width: 16px;
  top: 10px;
  right: 10px;
  padding: 10px 14px;
  color: white;
  font-size: 24px;
  text-align: center;
  border-radius: 15px;
  background-color: #960000;
  transition: 0.6s;
}
.fenetre_projet .content a .fa-times:hover {
  background-color: #b40000;
  width: 40px;
}
.fenetre_projet .content h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}
.fenetre_projet .content p {
  color: white;
  font-size: 20px;
  text-align: center;
}

.fenetre_experience {
  margin-top: 80px;
  display: flex;
  z-index: 5;
  width: 100vw;
  background: url(/public/images/background/bugatti.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.fenetre_experience .content {
  position: relative;
  width: 80%;
  margin: auto;
  padding: 40px 50px;
  margin-top: 70px;
  margin-bottom: 70px;
  overflow: scroll;
  border-radius: 25px;
  border: 2px solid #1f3e8d;
  box-shadow: 0 0 20px black;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}
.fenetre_experience .content a .fa-times {
  position: absolute;
  cursor: pointer;
  width: 16px;
  top: 10px;
  right: 10px;
  padding: 10px 14px;
  color: white;
  font-size: 24px;
  text-align: center;
  border-radius: 15px;
  background-color: #960000;
  transition: 0.6s;
}
.fenetre_experience .content a .fa-times:hover {
  background-color: #b40000;
  width: 40px;
}
.fenetre_experience .content h2 {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 48px;
  text-align: center;
}
.fenetre_experience .content .elements {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.fenetre_experience .content .elements .identité {
  margin-right: 48px;
  width: 30%;
}
.fenetre_experience .content .elements .identité h3 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: right;
}
.fenetre_experience .content .elements .identité img {
  width: 100%;
  border-radius: 15px;
}
.fenetre_experience .content .elements .identité .contact {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.fenetre_experience .content .elements .identité .contact a, .fenetre_experience .content .elements .identité .contact i {
  color: white;
  margin-right: 12px;
  font-size: 20px;
  white-space: normal;
}
.fenetre_experience .content .elements .identité .contact div {
  display: flex;
  flex-flow: row-reverse;
  margin-top: 20px;
}
.fenetre_experience .content .elements .description {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}
.fenetre_experience .content .elements .description .texte {
  padding: 20px;
  font-size: 18px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
.fenetre_experience .content .elements .description .texte span {
  margin-left: 4em;
}
.fenetre_experience .content .elements .description .accroche {
  display: flex;
  flex-flow: row;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding-bottom: 24px;
}
.fenetre_experience .content .elements .description .accroche div {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-right: 64px;
}
.fenetre_experience .content .elements .description .accroche div .texte2 {
  color: white;
  font-size: 20px;
  text-align: center;
}
.fenetre_experience .content .elements .description .accroche .bouton {
  padding: 16px 32px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 15px;
  background-color: #1f3e8d;
  transition: 0.6s;
}
.fenetre_experience .content .elements .description .accroche .bouton:hover {
  transform: scale(1.1);
}

footer {
  height: 70px;
  background-color: black;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
footer img {
  max-height: 50%;
  margin: 8px;
}
footer p {
  color: white;
}

@media screen and (max-width: 1280px) {
  header {
    height: 12vh;
  }

  .fonctionnement ul .fenetre {
    width: 80%;
  }
  .fonctionnement ul .bouton a {
    width: 80%;
  }

  .fenetre_experience {
    margin-top: 42px;
  }
  .fenetre_experience .content .elements .description .accroche {
    flex-flow: column;
  }
  .fenetre_experience .content .elements .description .accroche .bouton {
    margin-top: 12px;
  }
}
@media screen and (max-width: 800px) {
  .introduction h2 {
    font-size: 32px;
    line-height: 60px;
  }

  .fonctionnement ul .fenetre {
    width: 90%;
    height: auto;
    flex-flow: column;
  }
  .fonctionnement ul .fenetre img {
    height: auto;
    width: 60%;
    margin: auto;
  }
  .fonctionnement ul .fenetre .informations {
    width: auto;
  }
  .fonctionnement ul .fenetre .informations * {
    margin-top: 16px;
  }
  .fonctionnement ul .fenetre .informations a {
    padding: 12px 0px;
    width: 100%;
  }
  .fonctionnement ul .bouton a {
    width: 90%;
  }

  .fenetre_experience .content {
    margin: 0;
    margin-top: 10%;
    padding: 5%;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .fenetre_experience .content .fa-times {
    display: none;
  }
  .fenetre_experience .content .elements {
    flex-flow: column;
  }
  .fenetre_experience .content .elements .identité {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .fenetre_experience .content .elements .identité h3 {
    text-align: center;
  }
  .fenetre_experience .content .elements .identité img {
    width: 150px;
    margin: auto;
  }
  .fenetre_experience .content .elements .identité .contact {
    flex-flow: column;
    align-items: center;
  }
  .fenetre_experience .content .elements .identité .contact div {
    flex-flow: row;
  }
  .fenetre_experience .content .elements .description {
    margin-top: 16px;
  }
  .fenetre_experience .content .elements .description .accroche div {
    width: 100%;
  }

  .fenetre_projet .content {
    margin: 0;
    margin-top: 10%;
    padding: 5%;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .fenetre_projet .content .fa-times {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .introduction h2 {
    top: 30%;
    line-height: 46px;
  }

  .fonctionnement {
    padding: 32px 0;
    margin: 0;
  }
  .fonctionnement ul .fenetre {
    width: 80%;
  }
  .fonctionnement ul .bouton {
    margin-top: 32px;
  }
  .fonctionnement ul .bouton a {
    width: 80%;
  }
}
@media only screen and (max-width: 500px) and (max-height: 700px) {
  .introduction h2 {
    top: 20%;
  }
}

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