* {
  padding: 0;
  margin: 0;
}

.header {
  background-color: #579c87;
  min-height: 130px;
  width: 100%;
  top: 0;
  position: relative;
}
.header__titre {
  color: #fdcb46;
  font-size: 70px;
  margin: 0;
  padding: 20px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

@keyframes wizz {
  0% {
    transform: rotateZ(0deg);
  }
  25% {
    transform: rotateZ(1deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(-1deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
.footer {
  background-color: #579c87;
  min-height: 80px;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__link {
  color: #fdcb46;
  font-size: 40px;
  text-decoration: none;
  margin: 0 10px 0 10px;
}
.footer__link:hover {
  animation-name: wizz;
  animation-iteration-count: infinite;
  animation-duration: 300ms;
}

.menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.menus__menu {
  min-width: 400px;
  min-height: 550px;
  box-shadow: 0 0 10px gray;
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .menus__menu {
    margin: 120px;
  }
}
.menus__menu--rose {
  background-color: #fcdfdb;
  font-family: "Sriracha", cursive;
}
.menus__menu--violet {
  background-color: #fff5fe;
}
.menus__menu--gris {
  background-color: #f9f9f9;
  font-family: "Sriracha", cursive;
}
.menus__menu--blanc {
  background-color: #fdfffd;
  font-family: "Sriracha", cursive;
}
.menus__menu--zoom {
  display: flex;
  width: 100%;
  min-height: 550px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transform: scale(1);
  transition: transform 300ms ease-in-out;
}
.menus__menu--zoom:hover {
  transform: scale(1.2);
}
.menus__menu--zoom--rose {
  color: #3d1319;
}
.menus__menu--zoom--gris {
  color: #3d1319;
}
.menus__menu--zoom--blanc {
  color: #3d1319;
}
.menus__menu__i {
  font-size: 60px;
  background: linear-gradient(90deg, #f15861 0%, #f78f6a 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.menus__menu__titre {
  font-size: 30px;
  font-family: "Devonshire", cursive;
}
.menus__menu__titre--violet {
  background: linear-gradient(90deg, #d8852e 0%, #905bfd 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Noto", cursive;
}
.menus__menu__titre--gris {
  background: linear-gradient(90deg, #0431df 0%, #0887fb 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Dancing Script", cursive;
}
.menus__menu__titre--blanc {
  background: linear-gradient(90deg, #4c9f42 0%, #bfff7e 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Kaushan Script", cursive;
}
.menus__menu__p {
  margin-top: 40px;
  font-size: 50px;
}
.menus__menu__p--violet {
  color: #c77412;
}
.menus__menu__p--gris {
  color: #3d9ffa;
}
.menus__menu__p--blanc {
  color: #72bf56;
}
.menus .menus__menu__zoom > h2 {
  text-decoration: none;
}

@keyframes point-b {
  from {
    bottom: 0;
  }
  to {
    bottom: 6px;
  }
}
@keyframes point {
  from {
    bottom: 0;
  }
  to {
    bottom: 8px;
  }
}
@keyframes point-a {
  from {
    bottom: 0;
  }
  to {
    bottom: 6px;
  }
}
.prochainement {
  background-color: #579c87;
  min-height: 70px;
  width: 40%;
  border-radius: 20px;
  color: #fdcb46;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 100px auto;
  font-size: 2.4em;
}
@media (max-width: 767px) {
  .prochainement {
    width: 90%;
  }
}
.prochainement__block__span {
  position: relative;
  bottom: 0;
  animation-name: point;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.prochainement__block__span::before {
  content: ".";
  position: relative;
  animation-name: point-b;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.prochainement__block__span::after {
  content: ".";
  position: relative;
  animation-name: point-a;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.leMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 100px;
}
.leMenu__h2 {
  font-size: 4em;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .leMenu__h2 {
    font-size: 2em;
    text-align: center;
  }
}
.leMenu__h2--rose {
  font-family: "Devonshire", cursive;
}
.leMenu__h2--violet {
  background: linear-gradient(90deg, #d8852e 0%, #905bfd 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.leMenu__h2--gris {
  background: linear-gradient(90deg, #0431df 0%, #0887fb 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Dancing Script", cursive;
}
.leMenu__h2--blanc {
  font-family: "Kaushan Script", cursive;
  background: linear-gradient(90deg, #4c9f42 0%, #bfff7e 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.leMenu__article {
  box-shadow: 0 0 10px gray;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .leMenu__article {
    width: 90%;
  }
}
.leMenu__article--rose {
  background-color: #fcdfdb;
  color: #3d1319;
  font-family: "Sriracha", cursive;
}
.leMenu__article--violet {
  background-color: #fff5fe;
  font-family: "Noto", cursive;
}
.leMenu__article--blanc {
  background-color: #fdfffd;
  font-family: "Sriracha", cursive;
}
.leMenu__article--gris {
  background-color: #edefef;
  font-family: "Sriracha", cursive;
}
.leMenu__article__list {
  list-style: none;
  width: 90%;
  margin: 30px 0 30px 0;
}
.leMenu__article__list--jaune {
  color: #c67412;
}
.leMenu__article__list--rose {
  color: #a56799;
}
.leMenu__article__list--bleu {
  color: #6e4ccc;
}
.leMenu__article__list__element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 0 0;
  font-size: 1.4em;
}
@media (max-width: 767px) {
  .leMenu__article__list__element {
    flex-direction: column-reverse;
    font-size: 1em;
    justify-content: center;
    text-align: center;
  }
}
.leMenu__article__i--haut {
  font-size: 5em;
  margin-top: 60px;
  background: linear-gradient(90deg, #f15861 0%, #f78f6a 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.leMenu__article__i--bas {
  background: linear-gradient(90deg, #f15861 0%, #f78f6a 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 10px;
  font-size: 1.5em;
}
.leMenu__article__h2 {
  font-size: 2.3em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
  font-family: "Devonshire", cursive;
}
.leMenu__article__h3 {
  font-size: 3em;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.leMenu__article__h3--rose {
  font-family: "Devonshire", cursive;
}
.leMenu__article__hr {
  display: flex;
  align-self: flex-end;
  width: 20%;
  margin: auto;
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
  transform-origin: 0 50%;
  height: 4px;
  border: none;
}
.leMenu__article__hr--rose {
  background-color: #3d1319;
}
.leMenu__article__hr--violet--orange {
  background-color: #D8852E;
}
.leMenu__article__hr--violet--rose {
  background-color: #a56799;
}
.leMenu__article__hr--violet--violet {
  background-color: #6e4ccc;
}
.leMenu__article__hr--gris {
  background-color: #0431DF;
}
.leMenu__article__hr--blanc {
  background-color: #4C9F42;
}
.leMenu__article__h4 {
  font-size: 30px;
  text-align: center;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .leMenu__article__h4 {
    font-size: 1.2em;
    justify-content: center;
    text-align: center;
  }
}
.leMenu__article__h4--jaune {
  color: #c67412;
}
.leMenu__article__h4--jaune::before {
  content: "";
  background-image: url("img/1.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: auto;
}
.leMenu__article__h4--jaune::after {
  content: "";
  background-image: url("img/2.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: auto;
}
.leMenu__article__h4--rose {
  color: #a56799;
}
.leMenu__article__h4--rose::before {
  content: "";
  background-image: url("img/3.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--rose::after {
  content: "";
  background-image: url("img/4.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--bleu {
  color: #6e4ccc;
}
.leMenu__article__h4--bleu::before {
  content: "";
  background-image: url("img/5.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--bleu::after {
  content: "";
  background-image: url("img/6.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--fonce::before {
  content: "";
  background-image: url("img/titre-4.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--fonce::after {
  content: "";
  background-image: url("img/titre-5.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--medium::before {
  content: "";
  background-image: url("img/titre-6.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--medium::after {
  content: "";
  background-image: url("img/titre-7.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--clair::before {
  content: "";
  background-image: url("img/titre-8.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--clair::after {
  content: "";
  background-image: url("img/titre-9.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--vert::before {
  content: "";
  background-image: url("img/titre-10.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4--vert::after {
  content: "";
  background-image: url("img/titre-11.png") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4::before {
  content: "";
  background-image: url("img/marron-gauche.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}
.leMenu__article__h4::after {
  content: "";
  background-image: url("img/marron-droite.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: auto;
}

.leMenu__article__h4:hover + .leMenu__article__hr {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

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