@charset "UTF-8";
/* ---------- Colors site web ---------*/
/* ---------- alert colors ---------- */
/* Danger*/
/* Success */
/* Info */
/* ----------Header colors ---------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Acme&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap");
.alert {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  margin-bottom: 15px;
}
.alert svg {
  margin-right: 10px;
}
.alert_close {
  color: inherit;
  line-height: 45px;
  font-size: 2em;
  font-weight: bold;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  text-decoration: none;
}
.alert_close svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.alert_close:hover {
  color: #fffefb;
}

.alert-danger {
  color: #450a0a;
  background-color: #fecaca;
  border-color: #fca5a5;
}
.alert-danger .alert-link {
  color: #450a0a;
  font-weight: 700;
}
.alert-danger .alert-link:hover {
  text-decoration: underline;
}

.alert-success {
  color: #022c22;
  background-color: #bbf7d0;
  border-color: #86efac;
}
.alert-success .alert-link {
  color: #022c22;
  font-weight: 700;
}
.alert-success .alert-link:hover {
  text-decoration: underline;
}

.alert-info {
  color: #9a3412;
  background-color: #ffedd5;
  border-color: #fed7aa;
}
.alert-info .alert-link {
  color: #9a3412;
  font-weight: 700;
}
.alert-info .alert-link:hover {
  text-decoration: underline;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3b3b3d;
  background-color: #e2f1fe;
  min-height: 100vh;
}

/* Header */
.header {
  background: rgb(17, 118, 188);
  background: linear-gradient(68deg, rgb(17, 118, 188) 0%, rgb(0, 102, 140) 50%, rgb(113, 196, 239) 95%);
  display: flex;
  align-items: center;
  height: 217px;
  border-bottom: rgba(113, 196, 239, 0.2) 5px solid;
}
@media screen and (max-width: 500px) {
  .header {
    flex-direction: column;
  }
}
.header_logo {
  width: 200px;
  margin-left: 30px;
}
@media screen and (max-width: 350px) {
  .header_logo {
    width: 80px;
    margin-left: 0;
  }
}
@media screen and (min-width: 360px) and (max-width: 541px) {
  .header_logo {
    width: 100px;
    margin-left: 0;
  }
}
.header_logo img {
  width: 100%;
}
.header_txt {
  width: 87%;
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: #fffefb;
  text-shadow: 4px 4px 3px rgb(113, 196, 239);
  transform: rotate(-1deg);
}
@media screen and (max-width: 500px) {
  .header_txt {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
@media (min-width: 510px) and (max-width: 659px) {
  .header_txt {
    font-size: 2.5rem;
  }
}
@media (min-width: 660px) and (max-width: 1000px) {
  .header_txt {
    font-size: 3rem;
  }
}

.center {
  text-align: center;
}

/* Nav */
.nav {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 4px -4px rgba(113, 196, 239, 0.8);
}
.nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  list-style: none;
}
@media screen and (max-width: 830px) {
  .nav_list {
    flex-direction: column;
    box-shadow: none;
    justify-content: flex-start;
    font-size: 1.3rem;
  }
}
.nav li {
  margin-right: 20px;
}
.nav li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 500px) {
  .nav li {
    margin-bottom: 15px;
    font-weight: bolder;
  }
}
.nav_link {
  text-decoration: none;
  color: #00668c;
  position: relative;
}
.nav_link:after {
  content: "";
  height: 2px;
  background-color: #00668c;
  position: absolute;
  width: 0;
  bottom: -5px;
  right: 0;
  transition: 0.2s all ease-in-out;
}
.nav_link:hover:after {
  width: 100%;
  left: 0;
}
.nav_link.active:after {
  color: #00668c;
  font-weight: bolder;
  width: 100%;
  left: 0;
  bottom: -5px;
  height: 2px;
  position: absolute;
}
.nav_burger {
  display: none;
}
.nav_burger svg {
  stroke: #fffefb;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 30px;
  top: 10px;
}
.nav_close {
  display: none;
}
@media screen and (max-width: 830px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    background-color: #fffefb;
    z-index: 10;
  }
  .nav_burger {
    display: block;
    cursor: pointer;
  }
  .nav.open {
    display: flex;
    animation: transformMenu 0.3s ease-in-out forwards;
  }
  @keyframes transformMenu {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: initial;
    }
  }
  .nav_close {
    display: block;
    cursor: pointer;
  }
  .nav_close svg {
    stroke: #00668c;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 16px;
    right: 16px;
  }
}

@media screen and (max-width: 830px) {
  .overlay_menu_mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
  }
  .overlay_menu_mobile.open {
    display: block;
  }
}
/* Footer */
.footer {
  background: rgb(17, 118, 188);
  background: linear-gradient(68deg, rgb(17, 118, 188) 0%, rgb(0, 102, 140) 50%, rgb(113, 196, 239) 95%);
  padding: 20px 100px 20px 100px;
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 20px 75px;
  }
}
.footer_container {
  display: flex;
  justify-content: space-between;
  color: #f5f4f1;
}
@media screen and (max-width: 500px) {
  .footer_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
}
@media screen and (max-width: 500px) {
  .footer_col {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer_col:nth-child(2) {
    margin-bottom: 0;
  }
}
.footer_col ul {
  list-style: none;
}
@media screen and (max-width: 500px) {
  .footer_col ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .footer_col ul li {
    margin-bottom: 20px;
  }
}
.footer_link {
  text-decoration: none;
  color: #f5f4f1;
  transition: 0.5s all ease-in-out;
  position: relative;
}
.footer_link:after {
  content: "";
  height: 2px;
  background-color: #f5f4f1;
  position: absolute;
  width: 0;
  bottom: -2px;
  right: 0;
  transition: 0.3s all ease-in-out;
}
.footer_link:hover:after {
  width: 100%;
  left: 0;
}
.footer_social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  transition: 0.2s all ease-in-out;
}
@media screen and (max-width: 500px) {
  .footer_social {
    margin-top: 10px;
  }
}
.footer_social:hover {
  background-color: #f5f4f1;
}

/* Divers */
.row {
  display: flex;
  padding-top: 50px;
  min-height: 67.6vh;
}
@media screen and (max-width: 736px) {
  .row {
    flex-direction: column;
    padding-left: 28px;
  }
}

.alert {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0.55rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-top: 10px;
}

.alert-danger {
  color: #450a0a;
  background-color: #fecaca;
  border-color: #fca5a5;
}
.alert-danger .alert-link {
  color: #450a0a;
  font-weight: 700;
}
.alert-danger .alert-link:hover {
  text-decoration: underline;
}

.alert-success {
  color: #022c22;
  background-color: #bbf7d0;
  border-color: #86efac;
}
.alert-success .alert-link {
  color: #022c22;
  font-weight: 700;
}
.alert-success .alert-link:hover {
  text-decoration: underline;
}

.alert-info {
  color: #9a3412;
  background-color: #ffedd5;
  border-color: #fed7aa;
}
.alert-info .alert-link {
  color: #9a3412;
  font-weight: 700;
}
.alert-info .alert-link:hover {
  text-decoration: underline;
}

.btn {
  width: fit-content;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
}

.button-success {
  background-color: #86efac;
  background-image: linear-gradient(1deg, #15803d, #22c55e 99%);
}

.button-info {
  background-color: #fed7aa;
  background-image: linear-gradient(1deg, #f97316, #fdba74 99%);
}

/* CSS */
.button-21 {
  background-color: #3EB2FD;
  background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
}

.button-21,
.button-success,
.button-info {
  align-items: center;
  appearance: none;
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: CircularStd, sans-serif;
  font-size: 1rem;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 6px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, background-position 0.2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.button-21:active,
.button-21:focus,
.button-success:active,
.button-success:focus,
.button-info:active,
.button-info:focus {
  outline: none;
}

.button-21:hover,
.button-success:hover,
.button-info:hover {
  background-position: -20px -20px;
}

.button-21:focus:not(:active) {
  box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 0.125em;
}

.aside {
  width: 16%;
  padding: 10px 20px;
  background-color: rgba(255, 254, 251, 0.5);
  backdrop-filter: blur(60px);
  min-height: 519px;
  margin-right: 100px;
}
@media screen and (max-width: 540px) {
  .aside {
    width: 100%;
  }
}
@media screen and (min-width: 541px) and (max-width: 1400px) {
  .aside {
    width: 25%;
    margin-right: 10px;
    padding: 10px 10px;
  }
}
.aside h2 {
  color: #00668c;
  border-bottom: 2px solid #00668c;
}

/* page en construction */
.aside-construct {
  width: 15%;
  padding: 10px 20px;
  backdrop-filter: blur(60px);
  min-height: 550px;
  margin-right: 100px;
}

main {
  width: 70%;
}
@media screen and (max-width: 541px) {
  main {
    width: 100%;
  }
}
main .container {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(60px);
  padding: 20px;
  border-radius: 5px;
}
main .container h1 {
  color: #313d44;
  border-bottom: 1px solid rgba(128, 128, 128, 0.69);
  box-shadow: 0 4px 6px -4px rgba(128, 128, 128, 0.69);
  margin-bottom: 15px;
}
@media screen and (max-width: 500px) {
  main .container h1 {
    font-size: 1.6rem;
  }
}
main .article {
  font-size: 1.1rem;
  padding-bottom: 40px;
}
main .article h2 {
  font-size: 1.5rem;
  color: #313d44;
  border-bottom: 1px solid rgba(128, 128, 128, 0.69);
  box-shadow: 0 4px 6px -4px rgba(128, 128, 128, 0.69);
  margin-bottom: 15px;
}
main .article p {
  margin-bottom: 20px;
}
main .article p a {
  text-decoration: underline;
  color: #00668c;
  padding: 2px 5px;
  transition: 0.2s all ease-in-out;
}
main .article p a:hover {
  background-color: rgba(113, 196, 239, 0.48);
  border-radius: 3px;
  padding: 2px 5px;
}

/* Fenetre modal */
.modal {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal_container {
  width: 40%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
  overflow: auto;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (max-width: 500px) {
  .modal_container {
    width: 100%;
  }
}
.modal_container h3 {
  color: #00668c;
  border-bottom: 1px solid #00668c;
  box-shadow: rgba(113, 196, 239, 0.8) 0 4px 6px -4px;
  margin-bottom: 10px;
}
.modal_container p {
  margin-bottom: 20px;
}
.modal_footer {
  margin-top: 20px;
}
.modal_btn {
  text-decoration: none;
  border: 1px solid #3b3c3d;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 14px;
  color: #313d44;
  background-color: #b6ccd8;
  transition: 0.3s all;
}
.modal_btn:hover {
  color: #00668c;
  background-color: #f5f4f1;
}
.modal_body {
  margin-top: 20px;
  padding: 20px;
}
.modal_body img {
  width: 100%;
}

.table {
  border-collapse: collapse;
  text-indent: initial;
  border-spacing: 2px;
  min-width: 54%;
  margin-top: 20px;
}
.table thead {
  border-bottom: solid 2px #3b3c3d;
}
.table tr > th {
  padding: 4px 15px;
  display: table-cell;
  font-weight: bold;
  line-height: 24px;
  font-size: 16px;
}
.table tr > th[scope=row] {
  padding: 4px 15px;
}
.table tbody tr > td {
  padding-left: 10px;
}
.table tbody tr:nth-child(odd) {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 0px 9999px inset;
}

/* ---------- Colors site web ---------*/
/* ---------- alert colors ---------- */
/* Danger*/
/* Success */
/* Info */
/* ----------Header colors ---------- */
/* Page Home */
.actu {
  display: block;
}

@media screen and (max-width: 736px) {
  .actu {
    display: none;
  }
}
.actu {
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.actu_list {
  list-style: none;
  padding-top: 10px;
}
.actu_item {
  padding: 5px 5px 5px 10px;
  border-bottom: 1px solid rgba(204, 203, 200, 0.5);
  box-shadow: 0 3px 5px -4px rgba(128, 128, 128, 0.59);
}
.actu_link {
  display: block;
  text-decoration: none;
  color: #313d44;
  padding: 0 10px 0 5px;
  width: 100%;
}
.actu_link:hover {
  padding: 0 10px 0 5px;
  color: #d4eaf7;
  background-color: #00668c;
  border-radius: 5px;
  transition: 0.3s all ease-in-out;
}

.film {
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.film_h2 {
  margin-bottom: 15px;
}
.film_img {
  width: 100%;
  border-radius: 10px;
}

/* Modal vidéo */
.modal-v {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
.modal-v_header {
  height: 30px;
}
.modal-v:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-v > div {
  width: 865px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background-color: #f5f4f1;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
@media screen and (max-width: 500px) {
  .modal-v > div {
    width: 100%;
  }
  .modal-v > div video {
    width: 100%;
  }
}
.modal-v_close {
  color: #313d44;
  line-height: 50px;
  font-size: 2em;
  position: absolute;
  richness: 0;
  text-align: center;
  top: 0;
  right: 20px;
  width: 70px;
  text-decoration: none;
}
.modal-v_close svg {
  width: 25px;
  height: 25px;
}
.modal-v_close:hover {
  color: #00668c;
}
.modal-v_footer {
  margin-top: 10px;
}
.modal-v_link {
  text-decoration: none;
  color: #fffefb;
}

/* Onglet newsletter */
.newsletter {
  background-color: #d4eaf7;
  border-radius: 10px 10px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter .aside-title {
  background-color: #00668c;
  color: #d4eaf7;
  border-radius: 10px 10px 0 0;
}
.newsletter p {
  padding-top: 10px;
}
.newsletter .news-button {
  background-color: rgba(113, 196, 239, 0.8);
  color: #00668c;
  padding: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.newsletter .news-button:hover {
  background-color: #00668c;
  color: #d4eaf7;
  transition: 0.3s all ease-in-out;
}

@media screen and (max-width: 500px) {
  .news-button {
    display: flex;
    justify-content: center;
  }
}
/* Formulaire newsletter */
.newsletter-form_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsletter-form_input {
  height: 45px;
  width: 100%;
  border-radius: 5px 0 0 5px;
  border: 1px solid #cccbc8;
}
.newsletter-form_input:focus {
  outline-color: rgba(113, 196, 239, 0.8);
}
.newsletter-form_input::placeholder {
  padding-left: 10px;
  font-family: inherit;
}
.newsletter-form_btn {
  border: 1px solid #313d44;
  padding: 9px 10px;
  background-color: #00668c;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  height: 45px;
}
.newsletter-form_btn:hover {
  color: #00668c;
  background-color: #f5f4f1;
}

/* Page Acuality */
.archive_list {
  list-style: none;
  margin-top: 20px;
}
.archive_link {
  text-decoration: none;
  padding: 5px 0;
  transition: 0.2s all ease-in-out;
  width: 100%;
  display: flex;
  justify-content: left;
  color: #313d44;
  font-weight: bolder;
}
.archive_link:hover, .archive_link.active {
  color: #00668c;
}
.archive_item {
  width: 100%;
  padding: 5px 0 5px 10px;
  transition: 0.3s all ease-in-out;
  background-color: #fffefb;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}
.archive_item:hover, .archive_item.active {
  background-color: #d4eaf7;
  color: #fffefb;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.card-container {
  display: flex;
  gap: 30px 36px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
  background-color: #d4eaf7;
  padding: 20px 0 20px 0;
}

.card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 240px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.card a {
  text-decoration: none;
}
.card:hover {
  transform: scale(1.05);
}
.card_container-image {
  width: 100%;
  height: 300px;
  overflow: hidden; /* Cache les parties de l'image qui dépassent */
}
.card_container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card_content h3 {
  margin-top: auto;
}
.card_title a {
  font-size: 1.1em;
  margin: 0 0 8px 0;
  color: #00668c;
}
.card_texte {
  font-size: 1em;
  color: #13a513;
  margin: 0 0 16px 0;
  text-align: left;
  line-height: 1.4;
}
.card_texte:hover {
  color: #1de366;
}
.card_link {
  background-color: #00668c;
  color: #d4eaf7;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9em;
  text-decoration: none;
}
.card_link:hover {
  background-color: rgba(113, 196, 239, 0.8);
  color: #00668c;
}

.article-list {
  padding: 20px 20px 20px 40px;
  background-color: #fffefb;
  margin-bottom: 2px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
}
.article-list:first-of-type {
  margin-top: 40px;
}
.article-list h3 {
  width: fit-content;
  border-bottom: 1px solid #3b3c3d;
}
.article-list h3 a {
  color: #313d44;
  text-decoration: none;
}
.article-list_row {
  display: flex;
  padding-top: 20px;
}
@media screen and (max-width: 500px) {
  .article-list_row {
    flex-direction: column;
  }
}
.article-list_img {
  width: 15%;
}
@media screen and (max-width: 500px) {
  .article-list_img {
    width: 100%;
  }
}
.article-list_img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.09) 3px 12px;
  object-fit: contain;
}
.article-list_text {
  padding: 0 40px;
  width: 85%;
}
.article-list_footer {
  margin-top: 20px;
}
.article-list_linkImg {
  text-decoration: none;
}
.article-list_link {
  text-decoration: none;
  background-color: #cccbc8;
  padding: 5px 10px;
  border-radius: 45px;
  margin-top: 20px;
  color: #1d1c1c;
}

/* Page article single */
.single {
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .single {
    padding: 0 10px;
  }
}
.single div img {
  box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
  float: none !important;
  margin: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 500px) {
  .single div img {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}
.single p {
  margin-bottom: 5px;
}
.single p a {
  text-decoration: none;
  color: #00668c;
  padding: 5px 10px;
  border-radius: 5px;
}
.single p a:hover {
  background-color: rgba(113, 196, 239, 0.8);
  color: #fffefb;
  transition: 0.3s all ease-in-out;
}
.single p img {
  box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
  float: none !important;
  margin: 20px;
}
@media screen and (max-width: 500px) {
  .single p img {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}

.archive {
  display: block;
}

@media screen and (max-width: 735px) {
  .archive {
    display: none;
  }
}
.return {
  width: fit-content;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 25px 0 0;
  border-radius: 5px 5px 0 0;
  clip-path: polygon(1% 0, 85% 0, 100% 100%, 0% 100%);
  display: flex;
}
.return a {
  text-decoration: none;
  color: #00668c;
  padding: 5px;
}
.return a svg {
  width: 13px;
  height: 13px;
}
.return a:hover {
  color: #fffefb;
}
.return:hover {
  background-color: rgba(113, 196, 239, 0.8);
  color: #fffefb;
}

/* Page gallery index */
.event {
  padding: 22px 20px 0 0;
  width: 100%;
}
.event h2 {
  margin-bottom: 20px;
}
.event_list {
  list-style-type: none;
  background-color: #d4eaf7;
  padding: 10px 0 10px 0;
  border-radius: 5px;
}
.event_link {
  text-decoration: none;
  color: #00668c;
}
.event_item {
  padding: 5px 0 5px 20px;
}
.event_item:hover {
  color: #d4eaf7;
  background-color: #00668c;
  border-radius: 5px;
  transition: 0.3s all ease-in-out;
}

@media screen and (max-width: 736px) {
  .event {
    display: none;
  }
  .aside {
    min-height: 60px;
    width: 100%;
  }
  main {
    width: 92%;
  }
}
@media screen and (min-width: 737px) {
  .event {
    display: block;
  }
  .event-mobile {
    display: none;
  }
}
/* dropdown des évènements */
/* Le conteneur */
.dropdown {
  position: relative; /* Important pour positionner le contenu */
  display: inline-block; /* Pour qu'il s'aligne avec le texte */
  width: 100%;
}

/* Le bouton */
.dropbtn {
  background-color: #00668c;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #00668c;
  cursor: pointer;
  border-radius: 999px;
}

/* Le contenu déroulant (initialement caché) */
.dropdown-content {
  display: none; /* Pour le faire flotter */
  background-color: #d4eaf7;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 80; /* Pour être au-dessus des autres éléments */
}

/* Les liens dans le contenu */
.dropdown-content a {
  color: #00668c;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

/* Changement de couleur au survol des liens */
.dropdown-content a:hover {
  background-color: #00668c;
  color: #d4eaf7;
  transition: 0.3s all ease-in-out;
}

/* Afficher le menu déroulant quand on survole le conteneur */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Changement de couleur du bouton au survol */
.dropdown:hover .dropbtn:hover {
  background-color: #d4eaf7;
  color: #00668c;
  border: 1px solid #00668c;
  transition: 0.3s all ease-in-out;
}

.picture {
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.picture_content {
  border-radius: 5px;
}
.picture_img {
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 12px 28px 0, rgba(0, 0, 0, 0.1) 0 2px 4px 0, rgba(255, 255, 255, 0.05) 0 0 0 1px inset;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  border-radius: 4px;
  height: 30px;
  list-style: none;
}
@media screen and (max-width: 500px) {
  .pagination {
    width: 100%;
  }
}
.pagination_item {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  transition: 0.2s all ease-in-out;
}
.pagination_item:hover {
  background-color: #00668c;
}
.pagination_item.disabled {
  visibility: hidden;
}
.pagination_item:last-of-type {
  margin-right: 0;
}
.pagination a {
  color: #00668c;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.2s all ease-in-out;
}
.pagination a:hover {
  color: #fffefb;
  border-radius: 5px;
}

.active-pag {
  background-color: #00668c;
  border: 1px solid #00668c;
  border-radius: 5px;
}
.active-pag a {
  color: #fffefb;
}

/* Page contact */
.aside_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.aside_img {
  max-width: 200%;
}

/* Page contact */
.row_col1 {
  width: 20%;
  margin-top: 50px;
  padding: 0 20px;
}
@media screen and (max-width: 500px) {
  .row_col1 {
    width: 100%;
  }
}
.row_col1 .address {
  margin-bottom: 20px;
}
.row_col1 h2 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #3b3c3d;
  margin-bottom: 10px;
}
.row_col1 h2 svg {
  width: 28px;
  height: 20px;
  margin-right: 5px;
}

.row_col2 {
  width: 100%;
}

.form-contact {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.form-contact_form {
  width: 70%;
  background-color: #fffefb;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 500px) {
  .form-contact_form {
    width: 100%;
  }
}
.form-contact_item {
  align-items: center;
  margin-bottom: 20px;
}
.form-contact_label {
  color: #1d1c1c;
}
.form-contact_label span {
  font-size: 0.75rem;
}
.form-contact_input {
  width: 100%;
  background-color: #f5f4f1;
  padding: 10px;
  border: 1px solid #cccbc8;
  border-radius: 5px;
  height: 45px;
}
.form-contact_input:focus {
  outline-color: rgba(113, 196, 239, 0.8);
}
.form-contact_textarea {
  width: 100%;
  background-color: #f5f4f1;
  padding: 10px;
  border: 1px solid #cccbc8;
  border-radius: 5px;
  height: 150px;
  font-family: inherit;
}
.form-contact_textarea:focus {
  outline-color: rgba(113, 196, 239, 0.8);
}

/* Page sponsors */
.aside_list ul {
  list-style: none;
  padding: 20px;
}
.aside_list ul li {
  border: 1px solid #00668c;
  background: #d4eaf7;
  border-radius: 25px;
  padding: 0 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 60%;
}
.aside_list ul li:hover {
  background: #00668c;
  color: #d4eaf7;
}
.aside_list ul li a {
  display: block;
  text-decoration: none;
  color: #313d44;
  border-radius: 3px;
}
.aside_list ul li a:hover {
  color: #fffefb;
}

.sponsor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor_img {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  margin: 20px;
}
.sponsor_img img {
  max-width: 300px;
  max-height: 300px;
}

/* Page don */
.aside_content {
  height: 100%;
  display: flex;
  align-items: center;
}
.aside_content img {
  max-width: 200%;
}
@media screen and (max-width: 500px) {
  .aside_content img {
    max-width: 100%;
  }
}

/* Page commande truffes */
.aside-recap {
  width: 15%;
  min-height: 519px;
  margin-right: 100px;
  background-color: rgba(255, 254, 251, 0.5);
  background-image: url("../../public/img/Truffes-au-chocolat-noir.jpg");
  background-size: cover;
}
@media screen and (max-width: 500px) {
  .aside-recap {
    visibility: hidden;
    min-height: 0;
  }
}

.aside-recap-egs {
  width: 15%;
  min-height: 519px;
  margin-right: 100px;
  background-color: rgba(255, 254, 251, 0.5);
  background-image: url("../../public/img/78f27b5f.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .aside-recap-egs {
    visibility: hidden;
    min-height: 0;
  }
}

.table tr:nth-child(even) {
  background-color: #b6ccd8;
}

.client {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .client {
    width: 100%;
  }
}
.client h2 {
  margin-top: 20px;
  border-bottom: 1px solid #3b3c3d;
  width: fit-content;
  padding-right: 50px;
  margin-bottom: 20px;
}
.client h2:first-of-type {
  margin-top: 0;
}

.form {
  background-color: #fffefb;
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 500px) {
  .form {
    width: 100%;
  }
}
.form fieldset {
  border: 1px solid #00668c;
  border-radius: 5px;
  padding: 20px;
  background-color: #fffefb;
}

.form-truffes_btn {
  margin-top: 20px;
}

.recap {
  display: flex;
  justify-content: center;
}
.recap .form-contact_recap {
  margin-top: 20px;
  padding: 5px 10px;
  background-color: rgba(113, 196, 239, 0.4);
  border-radius: 5px;
  border: 1px solid rgba(113, 196, 239, 0.8);
}
.recap .form-contact_button {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .recap .form-contact_button {
    flex-direction: column;
  }
}

/* Page Grille tombola */
.grid {
  display: flex;
  justify-content: center;
}
.grid_row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 690px;
  margin-top: 40px;
  background-color: #d4eaf7;
  justify-content: center;
  padding: 20px 0;
  border-radius: 5px;
  border: 1px solid #00668c;
}
@media screen and (max-width: 500px) {
  .grid_row {
    width: 100%;
  }
}
.grid_case {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fffefb;
  border: 1px solid #00668c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
}
.grid_case input {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.grid_case input[type=checkbox] {
  display: none;
}
.grid_case input[type=checkbox]:checked + label {
  background: #bbf7d0;
}
.grid_case input[type=checkbox]:disabled + label {
  display: none;
}
.grid_case label {
  width: 60px;
  height: 60px;
  border: 1px solid #00668c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.grid .dis {
  /*background-color: #f00000 !important;*/
  background: no-repeat center center/cover url("../img/cross.png") !important;
  background-size: 100%;
}
@media (max-width: 480px) {
  .grid_dis {
    /*background-color: #f00000 !important;*/
    background-image: url("../img/cross.png") !important;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.paragraphe {
  margin-top: 10px;
}

.p-alert {
  margin-top: 40px;
  margin-bottom: 20px;
}

.link {
  margin-top: 40px;
}
.link a {
  text-decoration: none;
  color: #1d1c1c;
  padding: 5px 10px;
  background-color: #b6ccd8;
  border-radius: 20px;
}

.form-newsletter {
  background-color: #fffefb;
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-top: 50px;
  margin-left: 100px;
}
@media screen and (max-width: 500px) {
  .form-newsletter {
    width: 100%;
  }
}
.form-newsletter_item {
  display: flex;
  flex-direction: column;
}
.form-newsletter_input {
  height: 30px;
  border: 1px solid rgba(113, 196, 239, 0.8);
  border-radius: 5px;
}
.form-newsletter_input:focus {
  outline-color: rgba(113, 196, 239, 0.8);
}

.center {
  text-align: center;
}

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