@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@media screen and (max-width: 1000px) {
  .modal-container .modal {
    width: 80%;
    top: 60%;
  }
  .modal-container .modal p {
    font-size: 18px;
  }
  .modal-container .modal #modal-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 580px) {
  .modal-container .modal {
    width: 80%;
    top: 60%;
  }
  .modal-container .modal p {
    font-size: 14px;
  }
  .section-realisation .title-realisation {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .contain-choix {
    grid-gap: 5px;
  }
}
.nav-contain {
  width: 100%;
  height: 70px;
  background-image: linear-gradient(to left, #333, rgb(70, 70, 70));
  position: fixed;
  z-index: 100;
}

.liste-nav {
  width: 100%;
  height: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.liste-nav li {
  width: fit-content;
  margin: 10px 20px;
}
.liste-nav li a {
  text-decoration: none;
  color: #f1f1f1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
}
.liste-nav li a::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 2px;
  background-color: #f1f1f1;
  transition: width 0.2s ease-in-out;
}
.liste-nav li a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  width: 50px;
  height: 42px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 25;
}

.lignes {
  background-color: #f1f1f1;
  height: 6px;
  width: 100%;
  border-radius: 5px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.lignes:nth-child(1) {
  top: 0px;
}

.lignes:nth-child(2) {
  top: 18px;
}

.lignes:nth-child(3) {
  top: 36px;
}

.burger-menu.active .lignes:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

.burger-menu.active .lignes:nth-child(2) {
  transform: translateX(-20px);
  opacity: 0;
}

.burger-menu.active .lignes:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 700px) {
  .burger-menu {
    display: block;
  }
  .liste-nav {
    display: none;
    padding-top: 70px;
    flex-direction: column;
    height: auto;
    position: relative;
  }
  .liste-nav.active {
    display: block;
  }
  .item-nav {
    height: 70px;
    justify-content: center;
  }
}
.liste-nav.active {
  width: 100%;
  background-image: linear-gradient(to left, #333, rgb(70, 70, 70));
  display: flex;
  padding-bottom: 20px;
}

.section-accueil {
  padding-top: 70px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, rgb(34, 193, 195) 0%, rgb(253, 187, 45) 100%);
  height: 100%;
  border-bottom: 2px dashed #aaa;
}

.title {
  margin-bottom: 10px;
  font-size: 80px;
  font-family: "Kaushan Script", cursive;
  font-weight: bold;
  color: rgb(249, 187, 48);
  text-align: center;
  text-shadow: 4px 4px 5px #333;
}

.title2 {
  color: white;
  font-weight: 500;
  font-size: 30px;
  text-shadow: 2px 2px 2px black;
}
.title2:last-of-type {
  margin-bottom: 10px;
}

.img-acc {
  box-shadow: 0 0 20px #000;
  background-position: right;
  background-size: cover;
  border-radius: 50%;
  height: 250px;
  width: 250px;
}

.contain-choix {
  display: grid;
  grid-template: repeat(1, 250px)/1fr 2fr 1fr;
  height: 250px;
  width: 100%;
}

.img1 {
  margin: 0 auto;
  background-image: url(ressources/temple-japon.avif);
}

.img2 {
  margin: 0 auto;
  background-image: url(ressources/codage.avif);
}

.choix {
  text-align: center;
  font-family: "Kaushan Script", cursive;
  margin: 20px 0;
  font-size: 32px;
  line-height: 250px;
  text-shadow: 1px 1px 2px #333;
}

@media screen and (max-width: 1150px) {
  .choix {
    font-size: 25px;
  }
  .title {
    font-size: 50px;
  }
  .title2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 950px) {
  .section-accueil {
    height: 920px;
  }
  .section-accueil .title {
    font-size: 35px;
  }
  .section-accueil .title2 {
    font-size: 18px;
  }
  .contain-choix {
    grid-template: 250px 60px 250px/repeat(1, 100%);
  }
  .contain-choix .choix {
    margin: auto;
    line-height: normal;
    font-size: 18px;
  }
}
.section-parcours {
  display: flex;
  width: 100%;
  background-color: #f1f1f1;
  height: max-content;
  background-color: #f1f1f1;
}

.contain-all-parcours {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contain-school {
  width: 100%;
  min-width: 300px;
  height: fit-content;
  border-bottom: 1px solid #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contain-school .des-dhuoda {
  line-height: 50px;
  margin-top: 25px;
  font-size: 35px;
  animation: 5s néon linear infinite;
}
.contain-school:nth-child(even) {
  background-color: #cecece;
}
.contain-school .img-school {
  background-size: cover;
  background-position: center;
  width: 270px;
  height: 150px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 10px #000;
  margin: 20px 0;
}

.des-school {
  color: #333;
  font-family: "Oswald", sans-serif;
  line-height: 30px;
  font-size: 19px;
  text-align: center;
  margin: 20px 0 30px 0;
}
.des-school strong {
  color: midnightblue;
}

.img-vignet {
  background-image: url(ressources/vignet.jpg);
}

.img-camus {
  background-image: url(ressources/camus.jpg);
}

.img-dhuoda {
  background-image: url(ressources/dhuoda.jpg);
}

@keyframes néon {
  0% {
    color: #484848;
    text-shadow: none;
  }
  50% {
    color: #fff900;
    text-shadow: 0 0 7px #fff900, 0 0 50px #ff6c00;
  }
  100% {
    color: #484848;
    text-shadow: none;
  }
}
.title-parcours {
  font-family: "Nunito Sans", sans-serif;
  font-size: 25px;
  margin: 20px auto 10px auto;
  text-align: center;
  font-weight: bold;
}

.load {
  margin-bottom: 20px;
}
.load p {
  text-align: center;
  font-family: "Kaushan Script", cursive;
  font-size: 30px;
}
.load .barre {
  border: 2px #333 solid;
  margin-top: 10px;
  width: 300px;
  height: 20px;
  background-image: linear-gradient(to right, rgb(62, 233, 176) 50%, transparent 50%);
  background-position-x: 70%;
  border-radius: 9999px;
  background-size: 500%;
  animation: 5s loader infinite linear;
}

@keyframes loader {
  0% {
    background-position: 70%;
  }
  95% {
    background-position: 30%;
  }
  100% {
    background-position: 70%;
  }
}
.parallax {
  width: 100%;
  height: 200px;
  background: url(ressources/space-parallax.avif);
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.parallax .des-parallax {
  color: #f1f1f1;
  font-size: 40px;
  font-family: "Kaushan Script", cursive;
  text-align: center;
}

@media screen and (max-width: 870px) {
  .parallax .des-parallax {
    font-size: 25px;
  }
}
.title-realisation {
  font-size: 30px;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

.contain-carte-realisation {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.carte-realisation {
  margin: 20px 20px;
  min-width: 250px;
  width: 20%;
  height: 440px;
  background-color: #333;
  border-radius: 20px;
}
.carte-realisation p {
  color: #f1f1f1;
  font-family: "Nunito Sans", sans-serif;
}
.carte-realisation .title-show {
  font-size: 180%;
  text-align: center;
}
.carte-realisation .des-show {
  text-align: center;
  margin: 10px 5px;
  line-height: 25px;
  font-size: 18px;
}
.carte-realisation .des-show a {
  text-decoration: none;
  color: blue;
}
.carte-realisation .warning {
  text-align: center;
  font-size: 14px;
}
.carte-realisation .show {
  width: 100px;
  height: 100px;
  background-position: center;
  background-size: cover;
  background-color: blue;
  border-radius: 50%;
  margin: 10px 0 0 10px;
}

.show1 {
  background-image: url(ressources/kyoto.png);
}

.show2 {
  background-image: url(ressources/3p.png);
}

.show3 {
  background-image: url(ressources/2p.png);
}

.show4 {
  background-image: url(ressources/1p.png);
}

.realisation5, .realisation6, .realisation7, .realisation8, .realisation9, .realisation10 {
  display: none;
}

footer {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  height: 200px;
  background-image: linear-gradient(to top, #000 1%, rgb(250, 250, 250));
}
footer p {
  font-size: 30px;
  font-family: "Kaushan Script", cursive;
  font-weight: bold;
  text-shadow: 7px 5px 7px #000, 0 0 20px #aaa, 0 0 300px rgb(200, 200, 200);
  cursor: context-menu;
}

.modal-container {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  transition: visibility 0.4s;
}

.modal-container.active {
  visibility: visible;
}

.overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8274509804);
  transition: opacity 0.4s 0.2s ease-out;
}

.modal-container.active .overlay {
  opacity: 1;
  transition: opacity 0.4s ease-out;
}

.modal {
  opacity: 0;
  width: 95%;
  max-width: 1000px;
  min-width: 300px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, calc(-50% - 50px));
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.modal-container.active .modal {
  transition: opacity 0.4s 0.2s ease-out, transform 0.4s 0.2s ease-out;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.close-modal {
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff365e;
  color: #f1f1f1;
  cursor: pointer;
}

#modal-title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.modal p {
  line-height: 1.4;
  margin-bottom: 10px;
}

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