@charset "UTF-8";
/* Reset des marges et padding */
@font-face {
  font-family: "IBM_Plex";
  src: url("../font/IBMPlexSansCondensed-Medium.ttf");
}
@font-face {
  font-family: "Oswald";
  src: url("../font/Oswald-VariableFont_wght.ttf");
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "IBM_Plex";
}

header img {
  max-width: 300px;
  width: 40%;
  position: absolute;
  top: 5px;
  left: 50px;
}

/* Style de la barre de navigation */
nav {
  border-bottom: 4px solid rgb(34, 29, 143);
  padding: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* Style du logo ou titre */
.logo {
  color: rgb(255, 236, 236);
  font-size: 1rem;
  font-weight: bold;
  text-align: right;
}

/* Style du bouton hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

/* Style des traits du bouton hamburger */
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(175, 201, 247);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Style du menu */
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.menu .caseMenuCoche {
  color: rgba(34, 29, 143, 0.5);
}

/* Style des liens du menu */
.menu a {
  color: rgb(34, 29, 143);
  text-decoration: none;
  font-size: 1.3rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: rgba(34, 29, 143, 0.5);
}

.navIdentification {
  height: 150px;
}

/* Style pour les écrans mobiles */
@media screen and (max-width: 768px) {
  nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 50%;
    background-color: rgb(175, 201, 247);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    display: none;
    z-index: 100;
  }
  .menu a {
    color: rgb(34, 29, 143);
  }
  .menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* Animation du bouton hamburger en croix */
  .hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 6px);
            transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
            transform: rotate(-45deg) translate(5px, -6px);
  }
}
section {
  background: rgb(231, 231, 231);
  min-height: 400px;
  color: rgb(34, 29, 143);
}
section div {
  background: rgb(231, 231, 231);
  margin: 10px;
}
section ul {
  padding: 0 20px;
}
section div .section {
  background: rgba(175, 201, 247, 0.5);
  width: 90%;
  margin: auto;
  padding: 20px;
}
section div .zoneTableau {
  max-height: 500px;
  overflow-y: auto;
}
section div .zoneTableau table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: rgb(255, 236, 236);
}
section div .zoneTableau thead {
  background-color: rgb(34, 29, 143);
  height: 50px;
  color: rgb(255, 236, 236);
  font-size: 90%;
  font-weight: bold;
}
section div .zoneTableau thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgb(34, 29, 143);
  padding: 4px;
}
section div .zoneTableau thead td {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgb(34, 29, 143);
  padding: 4px;
}
section div .zoneTableau tbody tr {
  min-height: 30px;
  background: rgb(175, 201, 247);
  color: rgb(38, 38, 38);
  font-size: 100%;
}
section div .zoneTableau tbody tr:nth-child(2n) {
  background: rgba(175, 201, 247, 0.5);
  color: rgb(38, 38, 38);
}
section div .zoneTableau tbody td {
  border: 1px solid #868686;
  padding: 4px;
}
section div .zoneFiche {
  background: rgba(175, 201, 247, 0.5);
  width: 500px;
  margin: auto;
  padding: 10px;
  color: rgb(34, 29, 143);
}
section div .zoneFiche p span {
  font-weight: bold;
  font-size: 1.2rem;
}
section div .zoneFiche .infoFiche {
  font-size: 0.6rem;
}
section div .zoneFiche .infoFiche span {
  font-size: 0.6rem;
  font-weight: bold;
}
section div .zoneFiche ul {
  padding-left: 20px;
}
section div .zoneParent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  section .zoneFiche {
    width: 300px;
  }
  section div .zoneParent {
    display: block;
  }
}

.sectionIdentification {
  min-height: 150px;
}
.sectionIdentification form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}
.sectionIdentification form p {
  display: inline;
  margin: 10px auto;
}

@media screen and (max-width: 768px) {
  .sectionIdentification {
    font-size: 1rem;
  }
  .sectionIdentification input {
    font-size: 1.5rem;
  }
}
footer {
  background: rgb(34, 29, 143);
  color: rgb(255, 236, 236);
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  font-family: "Oswald";
}
footer span {
  display: block;
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: 10px;
  }
  footer span {
    margin: 5px 0;
  }
}/*# sourceMappingURL=index.css.map */