@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
}

a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #d7c721;
}

a:link,
a:visited {
  color: #d7c721;
  text-decoration: none;
}

body {
  background: #00002e;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

nav {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background-color: #00002e;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
  top: 0;
}
nav .home {
  justify-self: start;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .home a {
  display: inline-block;
  color: #9c9114;
  letter-spacing: 3px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
nav .home a:hover {
  letter-spacing: 4px;
  color: #4f44e3;
}
nav .subnav-container {
  justify-self: end;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
nav .subnav-container ul {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: 20px;
  margin-bottom: 0px;
}
nav .subnav-container ul li a {
  color: #9c9114;
  letter-spacing: 2px;
  margin-left: 18px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
nav .subnav-container ul li a:hover {
  color: #4f44e3;
}
@media (max-width: 765px) {
  nav .subnav-container ul {
    display: none;
  }
}

.menu-hide {
  top: -100px;
}

@-webkit-keyframes hoverAnimation {
  0% {
    color: #9c9114; /* Couleur initiale */
  }
  40% {
    color: #4f44e3; /* Couleur violet intermédiaire */
  }
  100% {
    color: #d7c721; /* Couleur finale, remplacez par votre couleur $jaune */
  }
}

@keyframes hoverAnimation {
  0% {
    color: #9c9114; /* Couleur initiale */
  }
  40% {
    color: #4f44e3; /* Couleur violet intermédiaire */
  }
  100% {
    color: #d7c721; /* Couleur finale, remplacez par votre couleur $jaune */
  }
}
header {
  margin-top: 60px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main {
  padding: 0 120px;
}
main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
}
main ul .card {
  -ms-flex-preferred-size: calc(35% - 20px);
      flex-basis: calc(35% - 20px);
  min-width: 400px;
  height: 450px;
  color: #d7c721;
  border-radius: 7px;
  display: grid;
  grid-template-rows: 60% 40%;
  overflow: hidden;
  -webkit-transition: background-size 0.3s ease;
  transition: background-size 0.3s ease;
}
main ul .card .card-content-cover {
  grid-row: 1;
  text-align: left;
}
main ul .card .card-content-cover h4 {
  font-weight: 400;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 2px 10px 5px;
  margin-top: 10px;
  margin-left: 10px;
}
@media (hover: hover) and (pointer: fine) {
  main ul .card .card-content-cover:hover ~ .card-content-description {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
main ul .card .card-content-description {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  grid-row: 2;
  background-color: rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "description description" "deadline forum";
  padding: 20px;
}
main ul .card .card-content-description .d1 {
  grid-area: description;
  text-align: left;
  height: 90px;
}
main ul .card .card-content-description .d1 p {
  font-style: italic;
  font-weight: 200;
  color: #9c9114;
}
main ul .card .card-content-description .d2 {
  grid-area: deadline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.8rem;
  font-weight: 600;
}
main ul .card .card-content-description .d2 h3 {
  color: rgb(133, 133, 133);
  font-size: 1rem;
  font-weight: 600;
}
main ul .card .card-content-description .d2 p {
  color: rgb(133, 133, 133);
  font-size: 1.2rem;
}
main ul .card .card-content-description .d3 {
  grid-area: forum;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
main ul .card .card-content-description .d3 a {
  font-size: 1rem;
  font-weight: 600;
  color: #4f44e3;
}
@media (hover: hover) and (pointer: fine) {
  main ul .card:hover {
    background-size: 115% !important;
  }
}

.rs {
  margin-top: 10px;
  margin-bottom: 30px;
}
.rs i {
  color: #0c0c9c;
  margin: 15px;
  font-size: 1em;
}/*# sourceMappingURL=index.css.map */