@import url('https://fonts.googleapis.com/css?family=Mulish|Dancing+Script&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Luckiest+Guy&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ---------------------------------------------------- */

/* -----------HEADERNAV ET BARRE DE NAVIGATION ----------- */

/* ---------------------------------------------------- */

.headernav {
  height: 6rem;
  width: 100%;
  padding: 0px 7%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-sizing: border-box;
}

.headernav .logo {
  height: 60px;
}

.headernav .logo h3 {
  font-size: 1.1em;
  color: #020204;
  letter-spacing: 0.05em;
  font-family: 'Dancing Script', cursive;
}

.headernav .navbar {
  width: 100%;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.headernav .navbar ul {
  list-style: none;
  margin: 0 auto;
}

.headernav .navbar ul li {
  position: relative;
  display: inline-block;
}

nav ul li span {
  list-style-type: none;
  font-size: 12px;
  padding-top: 2px;
}

.headernav .navbar ul li a {
  font-size: 15px;
  padding: 20px;
  color: #020204;
  display: block;
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
}

.headernav .navbar ul li a:hover {
  background-color: #163aa8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  transition: 0.3s ease-in-out;
  color: #ffffff;
}

.headernav .navbar ul li ul {
  position: absolute;
  left: 0;
  background-color: #ffffff;
  opacity: 1;
  display: none;
}

.headernav .navbar ul li ul li {
  min-width: 230px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.headernav .navbar ul li ul li a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.headernav .navbar ul li:focus-within>ul,
.headernav .navbar ul li:hover>ul {
  display: initial;
}

#click {
  display: none;
}

.headernav label {
  font-size: 20px;
  color: #020204;
  cursor: pointer;
  display: none;
}

/* --------------------------------------------- */

/* --------RESPONSIVE MAX-WIDTH 1200 px--------- */

/* --------------------------------------------- */

@media screen and (max-width: 1200px) {
  .headernav {
    padding: 0 3%;
  }

  .headernav .logo {
    padding-left: 0;
  }

  .headernav .logo img {
    width: 150px;
  }

  .headernav .navbar ul li a  {
    padding: 5px;
    font-size: 1rem;
  }
}

/* --------------------------------------------- */

/* ------------- MAX-WIDTH 900 PX -------------- */

/* --------------------------------------------- */

@media(max-width: 900px) {
  .headernav .logo {
    padding-left: 0;
    margin-left: 5px;
  }

  .headernav {
    padding: 20px;
  }

  .headernav label {
    display: initial;
  }

  .headernav .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, .1);
    display: none;
    font-size: 0.9em;
  }

  .headernav .navbar ul {
    background: #ffffff;
  }

  .headernav .navbar ul li {
    width: 100%;
  }

  .headernav .navbar ul li a {
    padding: 10px;
  }

  .headernav .navbar ul li ul {
    position: relative;
    width: 100%;
  }

  .headernav .navbar ul li ul li {
    background-color: #020204;
  }

  .headernav .navbar ul li ul li a {
    color: #e5e3e1;
  }
}

/* --------------------------------------------- */

/* ----------- MAX-WIDTH 600 PX ---------------- */

/* --------------------------------------------- */

@media screen and (max-width: 600px) {
  .headernav .logo img {
    width: 120px;
  }

  /* -------------- menu burger ------------- */

  .headernav .menubtn{
    padding-right: 20px;
  }

  .headernav .menubtn i {
    display: block;
    font-size: 32px;
  }

  #click:checked~.menubtn i:before {
    content: "\f00d";
  }

  #click:checked~ul {
    left: 0%;
  }

  #click:checked~.navbar {
    display: initial;
  }
}

/* --------------------------------------- */

/* ------------- COOKIE POPUP ------------ */

/* --------------------------------------- */

#cookiePopup {
  position: fixed;
  bottom: 0;
  max-width: 30rem;
  width: 100%;
  right: 0;
  background: #4c5053;
  border-radius: 8px;
  margin-bottom: 1rem;
  margin-right: 0.325rem;
  padding: 15px 25px 22px;
  transition: all 0.3s ease;
  /* Changé pour inclure toutes les propriétés */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  /* État initial - caché par défaut */
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}

#cookiePopup .en_tete {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  justify-content: center;
}

.bx {
  /* --- box icône cookie --- */
  margin-left: 1rem;
  margin-bottom: -1rem;
  width: 2%;
  height: auto;
}

#cookiePopup .en_tete i {
  color: #e5e3e1;
  font-size: 32px;
}

#cookiePopup .en_tete h3 {
  color: #e5e3e1;
  font-weight: bold;
  font-size: 1em;
  margin-top: 1rem;
  margin-bottom: 0rem;
  padding-left: 1rem;
  text-align: center;
}

#cookiePopup .cookie-data {
  margin-top: 16px;
}

#cookiePopup .cookie-data p {
  color: #e5e3e1;
  font-size: 0.9rem;
  text-align: center;
  font-weight: lighter;
}

#cookiePopup .cookie-data p a {
  color: #b4c5f3;
  text-decoration: none;
}

#cookiePopup .cookie-data p a:hover {
  text-decoration: underline;
}

#cookiePopup .cookie-buttons {
  margin: 0 auto;
  margin-top: 1rem;
  width: 20rem;
  display: flex;
  margin-bottom: 0.625rem;
}

#cookiePopup .cookie-buttons button {
  border: none;
  color: #e5e3e1;
  background: #163AA8;
  margin: 0 5px;
  padding-top: 0.425rem;
  padding-bottom: 2rem;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  max-height: 2rem;
  font-family: sans-serif;
  font-size: 1rem;
  border-radius: 10px;
}

#cookiePopup .cookie-buttons #acceptCookie:hover {
  background: #23ac1f;
  color: #e5e3e1;
}

#cookiePopup .cookie-buttons #declineCookie:hover {
  background: #4c5053;
  border: none;
  color: #070707;
}

#cookiePopup button {
  border: none;
  color: #fff;
  background: #163AA8;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
}

#cookiePopup button:hover {
  background: #e5e3e1;
  color: #4c5053;
}

.hide {
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateY(100%) !important;
}

.show {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/*--------------FONT-FAMILY----------------------*/

.is-dancing {
  font-family: 'Dancing Script', cursive;
}

/*--------------mATERIAL SYMBOLS ----------------------*/

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* --------------Bouton radio ----------------------*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

input[type="radio"]:checked + label .radio-custom {
  border-color: #6366f1;
  background-color: #eef2ff;
}

input[type="radio"]:checked + label .radio-dot {
  opacity: 1;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Mulish', sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul {
  margin: 0;
  padding: 0;
}

/* --------------------------- */

/* -------TYPOGRAPHIE -------- */

/* --------------------------- */

h1 {
  color: #e5e3e1;
  padding-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Mulish', sans-serif;
}

/* ---------------------------------- */

/* -------------- LOGO -------------- */

/* ---------------------------------- */

.logo img {
  width: 172px;
  height: auto;
  padding-bottom: 20px;
}

/* ----------------------------------------------------- */

/* --------- bouton retour en haut de la page ---------- */

/* ----------------------------------------------------- */

.btn_haut {
  height: 70px;
  width: 70px;
  background: #beada9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  z-index: 2;
}

.icone {
  width: 50px;
}

/* ---------- MEDIA SCREEN Print -------- */

@media print and (width < 1200px) {
  header {
    display: none;
  }

  footer {
    display: none;
  }
}

/* --------------- MEDIA MOBILE ---------------- */

@font-face {
  font-family: 'Pacifico';

  font-style: normal;

  font-weight: 400;

  src: local('Pacifico Regular'), local('Pacifico-Regular'), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');

  font-display: swap;
}

/* ******************* images background *********************** */

.img_boules_petanque {
  margin: 0 auto;
  width: 100%;
  max-height: 43px;
  border: none;
  text-align: center;
  overflow: hidden;
}

.img_boules_petanque img {
  margin: 0 auto;
  width: 267px;
  height: auto;
}

@media screen and (min-width: 350px) {
  .img_boules_petanque img {
    width: 500px;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .img_boules_petanques img {
    width: 500px;
    height: 43px;
  }
}

/* -------- RESPONSIVE STYLES -------- */

/* For desktops & laptops */

@media only screen and (max-width: 1460px) {
  .boite_equipes h2 {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 1366px) {
  .boite_equipes h2 {
    font-size: 1.5em;
  }
}

/* For tablets & smartphones */

@media only screen and (max-width: 1280px) {
  .boite_equipes h2 {
    font-size: 1.5em;
  }

  .liste-style-none {
    list-style-type: none;
  }

  .container__flex-tableau {
    width: 100%;
  }

  .container__flex-photos {
    width: 100%;
  }
}

/* --------------------------------------------- */

/* -------------- MAX-WIDTH 900 PX-------------- */

/* --------------------------------------------- */

/* For tablets & smartphones */

@media only screen and (max-width: 900px) {
  .boite_equipes h2 {
    font-size: 1.4em;
  }
}

/* ************* RESPONSIVE MAX-WIDTH 768px****************** */

@media screen and (max-width: 768px) {
  #cookiePopup {
    display: none;
  }

  .cookie-data {
    display: none;
  }

  .cookie-buttons {
    display: none;
  }

  .boite_equipes h2 {
    font-size: 1.2em;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: 1.6em;
    line-height: 2em;
    font-family: 'Mulish', sans-serif;
  }
}

/*--------------------------------------------- */

/* -------------- MAX-WIDTH 450 PX-------------- */

/* --------------------------------------------- */

@media only screen and (max-width: 450px) {
  .boite_equipes h2 {
    margin-top: 20px;
  }
}

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

/* ********************** POLITIQUE ********************** */

.politique {
  margin: 0 auto;
  padding: 10px;
  max-width: 900px;
  width: 90%;
  height: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.politique p {
  font-size: 0.9em;
}

.politique h3 {
  font-size: 1.1em;
  font-weight: bold;
}

.politique ul {
  padding-left: 50px;
}

.politique ul li {
  font-size: 0.9em;
}

.politique a {
  text-decoration: none;
  color: #4951ea;
}

.politique a:hover {
  text-decoration: underline;
  color: rgb(47, 39, 39);
}

.politique .politique-1 {
  text-decoration: none;
  color: #d8d9e8;
}

.politique .politique-1:hover {
  text-decoration: underline;
  color: rgb(172, 150, 150);
}

@media screen and (min-width: 768px) {
  .politique p {
    font-size: 1.2em;
  }

  .politique h3 {
    font-size: 1.3em;
  }

  .politique ul li {
    font-size: 1.2em;
  }
}

/* *********************** ADMINISTRATION ************* */

#mission {
  background-image: linear-gradient(
      0,
      rgba(197, 222, 253, 0.7),
      rgba(255, 255, 255, 0.8)
    ),
    url("../images/bg/petanque__3.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* ----------------------------------------- */

/* ------- Section Activités du mois ------ */

/* ----------------------------------------- */

#activites-du-mois {
  background-image: linear-gradient(
      0,
      rgba(197, 222, 253, 0.7),
      rgba(255, 255, 255, 0.8)
    ),
    url("../images/bg/petanque.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* **************Caroussel bouton de navigation*************** */

/* Masquer la scrollbar sur tous les navigateurs */

#tabs-container::-webkit-scrollbar {
  display: none;
}

#tabs-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Style pour les flèches */

#scroll-left,
#scroll-right {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Masquer les flèches par défaut */

#scroll-left,
#scroll-right {
  display: none;
}

/* --------------------------------- */

/* ------- Tournois container ------ */

/* --------------------------------- */

#tournois-container {
  margin: 0 auto;
  padding: 0;
  max-width: 1280px;
  width: 100%;
  height: auto;
  text-align: center;
  box-sizing: border-box;
}

.container__flex-photos {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1.325rem;
  gap: 1rem;
  box-sizing: border-box;
}

.container__flex-photos img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* --------------------------- */

/* -------- CONTACT --------- */

-- */
/* --------------------------- */

.messageErreur {
  display: none;
}

/************************ LIGUE À TI-GUY **************** */

.container_ligue {
  margin: 0 auto;
  margin-bottom: 1.875rem;
  padding: 0;
  max-width: 1280px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
  gap: 1rem;
  box-sizing: border-box;
}

/* ----------------- Boite équipes ------------- */

.boite_equipes {
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-flow: column nowrap;
  align-items: flex-start;
  text-align: center;
  justify-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 10px 0px 10px 0px;
  background-color: none;
  border-radius: 8px;
}

.boite_equipes h2 {
  margin: 0 auto;
}

.boite_equipes h3 {
  margin: 0 auto;
  font-family: 'Dancing Script', cursive;
  margin-top: -13px;
}

.boite_equipes h4{
  margin: 0 auto;
  font-family: 'Mulish';
  text-align: center;
}

.boite_equipes p {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.1rem;
}

.boite_equipes__description {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 5px;
  box-sizing: border-box;
  border-bottom: 1px solid #aaa5a5;
}

.boite_equipes__description h2 {
  margin: 0 auto;
  padding-bottom: 0.625rem;
  padding-top: 1.5rem;
  font-size: 1.7em;
  font-family: 'Mulish';
  text-align: center;
}

.container_ligue .boite_equipes img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}

.container_ligue .texteIntro p {
  margin-bottom: 1rem;
}

/* ---------------- Boite Ligue ------------ */

.boite_ligue{
  margin: 0 auto;
  width: 100%;
  height: auto;
  border: none;
  position: relative;
  display: flex;
  flex-flow: wrap;
  text-align: left;
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 20px;
  box-sizing: border-box;
  background-color: none;
}

.container_ligue .boite_ligue h3 {
  margin-top: -5px;
  width: 100%;
  font-size: 2em;
  font-family: 'Dancing Script', cursive;
  border: none;
}

.container_ligue .boite_equipes {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.boite_equipes ul {
  margin-top: 0px;
  margin-bottom: 5px;
}

.boite_equipes ul li {
  font-size: 1.1em;
}

.boite_equipes .liste_news {
  font-size: 1em;
  line-height: 2em;
  color: rgb(66, 66, 66);
  font-family: 'Mulish';
}

.boite_equipes .liste_news li a:hover {
  text-decoration: none;
  color: #7e1515;
}

@media screen and (min-width: 990px) {
  .boite_equipes {
    margin: 0 auto;
    width: 45%;
  }

  .boite_equipes p {
    font-size: 1.3rem;
  }

  .boite_ligue {
    width: 60%;
    height: auto;
  }

  .boite_ligue_tiguy {
    width: 45%;
    height: auto;
  }
}

@media screen and (min-width: 600px) {
  .boite_equipes {
    width: 45%;
  }

  .boite_equipes p {
    font-size: 1rem;
  }
}

/*----------------------------------------------------------*/

/*-------------------- Tableaux équipes ------------------*/

/*----------------------------------------------------------*/

/* Reset et styles de base */

.schedule-container {
  overflow-x: auto;
  margin: 0;
  padding: 0;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Calibri', 'Arial', sans-serif;
  font-size: 0.75rem;
  background-color: white;
  margin: 0;
}

/* En-têtes du tableau */

.schedule-table thead th {
  background-color: #0A2B88;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0.25rem;
  border: 1px solid #0A2B88;
  vertical-align: middle;
  font-size: 0.7rem;
}

.schedule-table thead th.week-header {
  font-size: 0.65rem;
  width: 2rem;
}

.schedule-table thead th.date-header {
  font-size: 0.75rem;
  width: 3.5rem;
}

.schedule-table thead th.terrain-header {
  font-size: 0.75rem;
  text-align: left;
  padding-left: 0.75rem;
}

.schedule-table thead th.bye-header {
  font-size: 0.65rem;
  width: 2.5rem;
}

/* Corps du tableau */

.schedule-table tbody td {
  border: 1px solid #ddd;
  padding: 0.25rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.65rem;
  color: black;
  line-height: 1.2;
}

/* Alternance des couleurs des lignes */

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

.schedule-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Cellules spéciales */

.schedule-table .week-cell {
  font-weight: normal;
  width: 2rem;
}

.schedule-table .date-cell {
  font-weight: normal;
  width: 3.5rem;
}

.schedule-table .team-cell {
  font-weight: normal;
  width: 1.75rem;
}

.schedule-table .vs-cell {
  font-weight: normal;
  width: 1.5rem;
  font-size: 0.6rem;
}

.schedule-table .bye-cell {
  font-weight: normal;
  width: 2.5rem;
}

/* Ligne des séries (dernière ligne) */

.schedule-table .series-row {
  background-color: #f1f1f1 !important;
}

.schedule-table .series-row td {
  padding: 0.75rem 0.5rem;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

/* Bordures spéciales */

.schedule-table .border-top-thick {
  border-top: 2px solid #ddd;
}

.schedule-table .border-bottom-thick {
  border-bottom: 2px solid #ddd;
}

/* Responsive design */

@media (max-width: 768px) {
  .schedule-table {
    font-size: 0.6rem;
  }

  .schedule-table thead th {
    padding: 0.25rem 0.125rem;
    font-size: 0.6rem;
  }

  .schedule-table tbody td {
    padding: 0.125rem;
    font-size: 0.55rem;
  }

  .schedule-table .series-row td {
    padding: 0.5rem 0.25rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .schedule-table {
    font-size: 0.5rem;
  }

  .schedule-table thead th {
    padding: 0.25rem 0.1rem;
    font-size: 0.5rem;
  }

  .schedule-table tbody td {
    padding: 0.1rem;
    font-size: 0.45rem;
  }
}

/* ------------------------------ */

/* ---------- TABLEAU ----------- */

/* ------------------------------ */

.container__flex-table1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 90%;
  height: auto;
  padding-top: 0.625rem;
}

.container__flex-table1 table {
  width: 100%;
  margin: 0;
  align-self: flex-start;
}

/*------------------- TABLE -------------------*/

table {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  color: #050505;
  border: 5px solid rgb(33, 31, 36);
}

table th,
table td {
  padding-top: 0.325rem;
  padding-bottom: 0.325rem;
  padding-left: 0.625rem;
  padding-right: 0.125rem;
}

table th {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 40px;
  text-align: left;
}

table a {
  text-decoration: underline;
}

table a:hover {
  color: #163aa8;
  text-decoration: none;
}

tr {
  background: #e9ecf3;
}

tr:nth-of-type(2n) {
  background: hsla(0, 0%, 7%, 0.5);
}

tr td {
  height: 30px;
}

/* ***************** TABLEAU RÉSULTATS ***************** */

::before,
::after {
  box-sizing: border-box;
  margin: 60px auto;
  padding: 0;
}

thead tr {
  background-color: #163aa8;
  color: #fff;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f5f6f8;
}

tbody tr:last-of-type {
  border-bottom: 5px solid #163aa8;
}

/* ---------------- RESPONSIVE --------------- */

@media screen and (min-width: 768px) {
  .boite_calendrier h2 {
    font-size: 2rem;
  }

  .boite_calendrier h3 {
    font-size: 1.5rem;
  }

  .boite_calendrier p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .container__flex-table1 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .container__flex-table1 tr td {
    height: auto;
  }
}

/* ------- GRID STYLES ------- */

/* Grid container */

#container-grid {
  margin: 0 auto;
  max-width: 1280px;
  max-width: 90%;
  height: auto;
  background-color: green;
}

/* Grid item */

.list-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  grid-auto-flow: dense;
  padding: 1rem;
  list-style-type: none;
  align-items:flex-start;
  justify-items: center;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
}

.list-img-grid li {
  border: 5px solid white;
  background-color: #ccc;
  &:after {
    content: '';
    display: block;
    padding-bottom: calc(100% / 16/10);
  }
}

.list-img-grid img {
  height: auto;
  border-radius: 10px;
  box-shadow: 2px -2px 13px 3px #172150;
}

.list-img-grid img:hover {
  opacity: 1.0;
  transform: scale(1.05);
  transition: 0.6s ease-in-out;
}

/* Grid item */

.list-img__vbc {
  grid-row: 1;
  grid-column: 1;
}

.list-img__2 {
  grid-row: 1;
  grid-column: 2;
}

.list-img__3 {
  grid-row: 1;
  grid-column: 3;
}

.list-img__4 {
  grid-row: 1;
  grid-column: span 2;
}

.list-img__5 {
  grid-row: 1;
  grid-column: 6;
}

.list-img__6 {
  grid-row: 1;
  grid-column: 7;
}

.list-img__7 {
  grid-row: 1;
  grid-column: 8;
}

.list-img__8 {
  grid-row: 2;
  grid-column: 1;
}

.list-img__9 {
  grid-row: 2;
  grid-column: 2;
}

.list-img__aside {
  grid-area: 7 / 1 / 9 / 9;
}

/*----------GRID STYLES IMAGES END----------*/

/*----------GRID STYLES TEXT----------*/

/* Grid container */

#container-grid-text {
  margin: 0 auto;
  max-width: 1280px;
  max-width: 90%;
  height: auto;
  background-color: green;
}

/*----------GRID CONTAINER PAGE INDEX INFO----------*/

.container__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  grid-gap: 1rem;
  grid-auto-flow: dense;
  gap: 1rem;
  list-style-type: none;
  align-items: flex-start;
  justify-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
  max-width: 1280px;
  width: 90%;
  height: auto;
}

.container__grid-image {
  grid-column: 1 / 5;
  grid-row: 1 / span 4;
  margin: 0 auto;
  padding: 0 5%;
}

.container__grid-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px -2px 13px 3px #172150;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 5%;
}

.container__grid-text1,
.container__grid-text2,
.container__grid-text3,
.container__grid-text4 {
  width: 95%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.container__grid-text1 {
  grid-column: 5 / 13;
  grid-row: 1;
}

.container__grid-text2 {
  grid-column: 5 / 13;
  grid-row: 2;
  width: 95%;
}

.container__grid-text3 {
  grid-column: 5 / 13;
  grid-row: 3;
}

.container__grid-text4 {
  grid-column: 5 / 13;
  grid-row: 4;
}

.container__grid-text1 p,
.container__grid-text2 p,
.container__grid-text3 p,
.container__grid-text4 p {
  font-family: 'Mulish', sans-serif;
  text-align: left;
  margin: 0 auto;
  padding-left: 1%;
}

/*-----------------Grid container page minibouliste-----------------*/

.container__grid-titre {
  grid-row: auto;
  grid-column: 1 / span 12;
  display: inline-block;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

.container__grid-titre img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.5rem;
  margin-bottom: -8px;
}

.container__grid-titre img:hover {
  cursor: pointer;
  box-shadow: 1px -2px 3px 2px #7e1515;
}

.container__grid-titre h2 {
  font-size: 2.5rem;
  font-family: 'Mulish', sans-serif;
  text-align: center;
  margin-top: 0.325rem;
  margin-bottom: 0.325rem;
}

.container__grid-header {
  grid-row: 2;
  grid-column: 1 / span 12;
  font-family: 'Mulish', sans-serif;
  text-align: center;
  margin-top: 0.325rem;
  margin-bottom: 0.325rem;
  margin-right: 5%;
  margin-left: 5%;
  padding-left: 1rem;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
  width: 90%;
  display: grid;
  grid-template-columns: 3fr 4fr 2fr 1fr 2fr;
  text-align: left;
}

.container__grid-header--item1 {
  grid-column: 1;
}

.container__grid-header--item2 {
  grid-column: 2;
}

.container__grid-header--item3 {
  grid-column: 3;
}

.container__grid-header--item4 {
  grid-column: 4;
}

.container__grid-header--item5 {
  grid-column: 5;
}

.container__grid-items {
  grid-row: auto;
  grid-column: 1 / span 12;
  font-family: 'Mulish', sans-serif;
  text-align: center;
  margin-top: 0.325rem;
  margin-bottom: 0.325rem;
  margin-right: 5%;
  margin-left: 5%;
  padding-left: 1rem;
  width: 90%;
  display: grid;
  grid-template-columns: 3fr 4fr 2fr 1fr 2fr;
  gap: 1rem;
  text-align: left;
}

.container__grid-items p {
  font-size: 1.2rem;
}

.entete-rouge {
  background-color: #7e1515;
  color: white;
  width: 90%;
  margin: 0 5%;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  border-radius: 5px;
}

/*---------- GRID MEDIA QUERIES ----------*/

/* Grid container */

@media screen and (max-width: 1200px) {
  .container__grid-image {
    grid-column: 1 / 5;
    grid-row: 1 / span 2;
  }

  .container__grid-text1 {
    grid-column: 5 / 13;
    grid-row: 1;
  }

  .container__grid-text2 {
    grid-column: 5 / 13;
    grid-row: 2;
  }

  .container__grid-text3 {
    grid-column: 1 / 13;
    grid-row: 4;
  }

  .container__grid-text4 {
    grid-column: 1 / 13;
    grid-row: 5;
  }
}

@media screen and (max-width: 1024px) {
  #container-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .container__grid-text1,
  .container__grid-text2,
  .container__grid-text3,
  .container__grid-text4 {
    width: 98%;
    padding-right: 0.325rem;
    padding-left: 0.325rem;
  }

  .container__grid-header {
    width: 100%;
  }

  .container__grid-titre h2 {
    font-size: 2rem;
  }

  .container__grid-header h3 {
    font-size: 1.2rem;
  }

  .container__grid-items {
    width: 100%;
  }

  .container__grid-items p {
    font-size: 1rem;
  }

  .container__grid-titre {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #container-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container__grid {
    padding-bottom: 1rem;
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .container__grid-image img {
    display: none;
  }

  .container__grid-text1 {
    grid-column: 1 / 13;
    grid-row: 1;
  }

  .container__grid-text2 {
    grid-column: 1 / 13;
    grid-row: 2;
  }

  .container__grid-text3 {
    grid-column: 1 / 13;
    grid-row: 3;
  }

  .container__grid-text4 {
    grid-column: 1 / 13;
    grid-row: 4;
  }

  .container__grid-titre h2 {
    font-size: 1.5rem;
  }

  .container__grid-header h3 {
    font-size: 1.1rem;
  }

  .container__grid-items p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  #container-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container__grid-titre h2 {
    font-size: 1.2rem;
  }

  .container__grid-header h3 {
    font-size: 1rem;
  }

  .container__grid-items p {
    font-size: 0.8rem;
  }
}

/* --------------------------- */

/* -------- PARTENAIRES ------ */

/* --------------------------- */

#partenaires-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

/*-----------------------------------------*/

.imageEffet img {
  border-radius: 5px;
  box-shadow: 2px -2px 6px 3px #2f5268;
  max-width: 100%;
}

.imageEffet img:hover {
  opacity: 0.5;
  transform: scale(1.05);
  transition: 0.6s ease-in-out;
}

/*-------------FLEX CONTAINER-----------------*/

.container__flex-visible {
  display: none;
}

/*-----------------------------------------*/

/*-------------RESPONSIVE------------------*/

/*-----------------------------------------*/

/* Responsive styles for smaller screens */

@media only screen and (max-width: 768px) {
  #partenaires-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .imageEffet {
    display: none;
  }

  .container__flex-visible {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    border-top: 10px solid #777879;
    border-bottom: 10px solid #777879;
  }

  .container__flex-visible ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top: 1.25rem;
    width: 100%;
  }

  .container__flex-visible ul li {
    margin-bottom: 0.8rem;
    font-family: 'Mulish', sans-serif;
  }

  .container__flex-visible ul li a:hover {
    color: #2f5268;
    text-decoration: none;
    cursor: pointer;
  }
}

/*-------------------------------------------------- */

/* ------------------- REGLEMENTS ------------------ */

/* ------------------------------------------------- */

.boite__reglements {
  max-width: 1200px;
  width: 90%;
  height: auto;
  border: 2px black;
  border-radius: 10px;
  border-style: double;
  margin: 30px auto;
  position: relative;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f5f6f8;
  box-shadow: 2px -2px 13px 4px #163aa8;
}

.boite__reglements ol {
  list-style-position: inside;
  font-size: 0.8em;
  margin-top: 50px;
}

.boite__reglements ul {
  margin-bottom: 20px;
}

.boite__reglements .boite__reglements-titre {
  font-size: 1.3rem;
  font-weight: bold;
}

.boite__reglements ol li {
  list-style-position: outside;
}

.boite__reglements ul li,
  .boite_equipes ul li {
  list-style-type: disc;
  margin-left: 2.5rem;
}

.boite__reglements ul li li,
  .boite_equipes ul li li {
  list-style-type: circle;
  margin-left: 10px;
}

.boite__fichier {
  width: 200px;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 40px;
  text-align: center;
}

.boite__fichier a {
  text-decoration: none;
  color: black;
}

.boite__fichier a:hover {
  color: #501717;
  text-decoration: underline;
}

/* ------------------------------------------------- */

/* ------------------- RESPONSIVE ------------------ */

/* ------------------------------------------------- */

@media screen and (min-width: 768px) {
  .presentation {
    transform: translatey(-33px);
  }

  .boite__reglements {
    margin: 60px auto;
    height: auto;
    padding-right: 60px;
    padding-bottom: 30px;
  }

  .boite__reglements ol {
    font-size: 1.1em;
  }

  .boite__reglements ol li {
    margin-left: 30px;
  }

  .boite__reglements ul li,
    .boite_equipes ul li {
    margin-left: 60px;
  }

  .boite__reglements ul li li,
    .boite_equipes ul li li {
    margin-left: 30px;
  }
}

/* Carrousel Alpine.js */

[x-cloak] {
  display: none !important;
}

.slide-transition {
  transition: transform 0.5s ease-in-out;
}

/* Fin Carrousel Alpine.js */

.blur-c {
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(0.5px);
            backdrop-filter: blur(0.5px);
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
  }
}

.background {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.15 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container{
  width: 100%;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visible{
  visibility: visible;
}

.collapse{
  visibility: collapse;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.inset-0{
  inset: 0px;
}

.inset-x-0{
  left: 0px;
  right: 0px;
}

.bottom-0{
  bottom: 0px;
}

.left-0{
  left: 0px;
}

.right-0{
  right: 0px;
}

.top-0{
  top: 0px;
}

.top-1\/2{
  top: 50%;
}

.z-10{
  z-index: 10;
}

.col-span-1{
  grid-column: span 1 / span 1;
}

.col-span-12{
  grid-column: span 12 / span 12;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.mx-10{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-16{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.-mt-5{
  margin-top: -1.25rem;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-10{
  margin-bottom: 2.5rem;
}

.mb-11{
  margin-bottom: 2.75rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-20{
  margin-bottom: 5rem;
}

.mb-24{
  margin-bottom: 6rem;
}

.mb-28{
  margin-bottom: 7rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.me-4{
  margin-inline-end: 1rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-5{
  margin-left: 1.25rem;
}

.ml-6{
  margin-left: 1.5rem;
}

.mr-11{
  margin-right: 2.75rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.ms-2{
  margin-inline-start: 0.5rem;
}

.mt-0{
  margin-top: 0px;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-24{
  margin-top: 6rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-\[-42px\]{
  margin-top: -42px;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.h-0{
  height: 0px;
}

.h-10{
  height: 2.5rem;
}

.h-12{
  height: 3rem;
}

.h-2{
  height: 0.5rem;
}

.h-24{
  height: 6rem;
}

.h-3{
  height: 0.75rem;
}

.h-4{
  height: 1rem;
}

.h-40{
  height: 10rem;
}

.h-48{
  height: 12rem;
}

.h-5{
  height: 1.25rem;
}

.h-52{
  height: 13rem;
}

.h-6{
  height: 1.5rem;
}

.h-8{
  height: 2rem;
}

.h-auto{
  height: auto;
}

.h-full{
  height: 100%;
}

.h-max{
  height: -moz-max-content;
  height: max-content;
}

.h-screen{
  height: 100vh;
}

.max-h-0{
  max-height: 0px;
}

.max-h-\[20px\]{
  max-height: 20px;
}

.max-h-\[30px\]{
  max-height: 30px;
}

.min-h-screen{
  min-height: 100vh;
}

.w-10{
  width: 2.5rem;
}

.w-12{
  width: 3rem;
}

.w-2{
  width: 0.5rem;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-3{
  width: 0.75rem;
}

.w-32{
  width: 8rem;
}

.w-4{
  width: 1rem;
}

.w-4\/12{
  width: 33.333333%;
}

.w-5{
  width: 1.25rem;
}

.w-6{
  width: 1.5rem;
}

.w-64{
  width: 16rem;
}

.w-96{
  width: 24rem;
}

.w-\[90\%\]{
  width: 90%;
}

.w-\[980px\]{
  width: 980px;
}

.w-auto{
  width: auto;
}

.w-full{
  width: 100%;
}

.w-screen{
  width: 100vw;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-4xl{
  max-width: 56rem;
}

.max-w-5xl{
  max-width: 64rem;
}

.max-w-64{
  max-width: 16rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-\[1280px\]{
  max-width: 1280px;
}

.max-w-\[300px\]{
  max-width: 300px;
}

.max-w-\[600px\]{
  max-width: 600px;
}

.max-w-\[900px\]{
  max-width: 900px;
}

.max-w-\[960px\]{
  max-width: 960px;
}

.max-w-\[980px\]{
  max-width: 980px;
}

.max-w-fit{
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.max-w-full{
  max-width: 100%;
}

.max-w-screen-lg{
  max-width: 1024px;
}

.max-w-screen-xl{
  max-width: 1280px;
}

.max-w-sm{
  max-width: 24rem;
}

.max-w-xl{
  max-width: 36rem;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.shrink-0{
  flex-shrink: 0;
}

.border-collapse{
  border-collapse: collapse;
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer{
  cursor: pointer;
}

.resize-none{
  resize: none;
}

.resize{
  resize: both;
}

.list-disc{
  list-style-type: disc;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.flex-col-reverse{
  flex-direction: column-reverse;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

.items-center{
  align-items: center;
}

.items-stretch{
  align-items: stretch;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.justify-evenly{
  justify-content: space-evenly;
}

.justify-items-center{
  justify-items: center;
}

.gap-1{
  gap: 0.25rem;
}

.gap-16{
  gap: 4rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-8{
  row-gap: 2rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.scroll-smooth{
  scroll-behavior: smooth;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.rounded-s-md{
  border-start-start-radius: 0.375rem;
  border-end-start-radius: 0.375rem;
}

.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.border{
  border-width: 1px;
}

.border-0{
  border-width: 0px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-primaire{
  --tw-border-opacity: 1;
  border-color: rgb(11 43 137 / var(--tw-border-opacity, 1));
}

.border-secondaire{
  --tw-border-opacity: 1;
  border-color: rgb(245 246 248 / var(--tw-border-opacity, 1));
}

.bg-\[\#F1F4F6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(241 244 246 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e9ecf3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(233 236 243 / var(--tw-bg-opacity, 1));
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-bleunoir{
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 4 / var(--tw-bg-opacity, 1));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}

.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

.bg-grisfonce{
  --tw-bg-opacity: 1;
  background-color: rgb(76 80 83 / var(--tw-bg-opacity, 1));
}

.bg-orange-600{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}

.bg-primaire{
  --tw-bg-opacity: 1;
  background-color: rgb(11 43 137 / var(--tw-bg-opacity, 1));
}

.bg-secondaire{
  --tw-bg-opacity: 1;
  background-color: rgb(245 246 248 / var(--tw-bg-opacity, 1));
}

.bg-slate-300{
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}

.bg-slate-600{
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color: transparent;
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/50{
  background-color: rgb(255 255 255 / 0.5);
}

.bg-opacity-60{
  --tw-bg-opacity: 0.6;
}

.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}

.bg-\[url\(\'\.\.\/public\/images\/hero-bg\.webp\'\)\]{
  background-image: url('../public/images/hero-bg.webp');
}

.bg-cover{
  background-size: cover;
}

.bg-scroll{
  background-attachment: scroll;
}

.bg-center{
  background-position: center;
}

.fill-slate-500{
  fill: #64748b;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.p-0{
  padding: 0px;
}

.p-16{
  padding: 4rem;
}

.p-2{
  padding: 0.5rem;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.px-0{
  padding-left: 0px;
  padding-right: 0px;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pb-10{
  padding-bottom: 2.5rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-2\.5{
  padding-bottom: 0.625rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-5{
  padding-bottom: 1.25rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pb-\[37\.5\%\]{
  padding-bottom: 37.5%;
}

.pl-1{
  padding-left: 0.25rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.pl-3{
  padding-left: 0.75rem;
}

.pl-4{
  padding-left: 1rem;
}

.pr-2{
  padding-right: 0.5rem;
}

.pr-5{
  padding-right: 1.25rem;
}

.ps-3{
  padding-inline-start: 0.75rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pt-12{
  padding-top: 3rem;
}

.pt-14{
  padding-top: 3.5rem;
}

.pt-16{
  padding-top: 4rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-3{
  padding-top: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-5{
  padding-top: 1.25rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pt-8{
  padding-top: 2rem;
}

.pt-20{
  padding-top: 5rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-justify{
  text-align: justify;
}

.font-dancing-script{
  font-family: Dancing Script, cursive;
}

.font-mulish{
  font-family: Mulish, sans-serif;
}

.font-sans{
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-serif{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold{
  font-weight: 700;
}

.font-extrabold{
  font-weight: 800;
}

.font-light{
  font-weight: 300;
}

.font-medium{
  font-weight: 500;
}

.font-normal{
  font-weight: 400;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.italic{
  font-style: italic;
}

.leading-10{
  line-height: 2.5rem;
}

.leading-6{
  line-height: 1.5rem;
}

.leading-7{
  line-height: 1.75rem;
}

.leading-none{
  line-height: 1;
}

.tracking-tight{
  letter-spacing: -0.025em;
}

.tracking-tighter{
  letter-spacing: -0.05em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.text-\[\#020204\]{
  --tw-text-opacity: 1;
  color: rgb(2 2 4 / var(--tw-text-opacity, 1));
}

.text-\[\#544f57\]{
  --tw-text-opacity: 1;
  color: rgb(84 79 87 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-bleunoir{
  --tw-text-opacity: 1;
  color: rgb(2 2 4 / var(--tw-text-opacity, 1));
}

.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-900{
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-gray-100{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}

.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-grisfonce{
  --tw-text-opacity: 1;
  color: rgb(76 80 83 / var(--tw-text-opacity, 1));
}

.text-orange-600{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}

.text-primaire{
  --tw-text-opacity: 1;
  color: rgb(11 43 137 / var(--tw-text-opacity, 1));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-secondaire{
  --tw-text-opacity: 1;
  color: rgb(245 246 248 / var(--tw-text-opacity, 1));
}

.text-slate-800{
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}

.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}

.underline{
  text-decoration-line: underline;
}

.placeholder-gray-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}

.placeholder-gray-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}

.opacity-0{
  opacity: 0;
}

.opacity-70{
  opacity: 0.7;
}

.bg-blend-multiply{
  background-blend-mode: multiply;
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-gray-100{
  --tw-shadow-color: #f3f4f6;
  --tw-shadow: var(--tw-shadow-colored);
}

.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-gray-400\/10{
  --tw-ring-color: rgb(156 163 175 / 0.1);
}

.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-filter{
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200{
  transition-duration: 200ms;
}

.duration-300{
  transition-duration: 300ms;
}

.duration-700{
  transition-duration: 700ms;
}

.\[hostname\:port\]{
  hostname: port;
}

.marker\:content-none *::marker{
  --tw-content: none;
  content: var(--tw-content);
}

.marker\:content-none::marker{
  --tw-content: none;
  content: var(--tw-content);
}

.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:cursor-pointer:hover{
  cursor: pointer;
}

.hover\:bg-bleunoir:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(2 2 4 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-hoverbleu:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(24 74 219 / var(--tw-bg-opacity, 1));
}

.hover\:bg-orange-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primaire:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(11 43 137 / var(--tw-bg-opacity, 1));
}

.hover\:text-green-700:hover{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.hover\:text-grisfonce:hover{
  --tw-text-opacity: 1;
  color: rgb(76 80 83 / var(--tw-text-opacity, 1));
}

.hover\:text-primaire:hover{
  --tw-text-opacity: 1;
  color: rgb(11 43 137 / var(--tw-text-opacity, 1));
}

.hover\:text-secondaire:hover{
  --tw-text-opacity: 1;
  color: rgb(245 246 248 / var(--tw-text-opacity, 1));
}

.hover\:text-tierce:hover{
  --tw-text-opacity: 1;
  color: rgb(228 229 229 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:no-underline:hover{
  text-decoration-line: none;
}

.hover\:shadow:hover{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-blue-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.focus\:border-cyan-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(14 116 144 / var(--tw-border-opacity, 1));
}

.focus\:border-purple-700:focus{
  --tw-border-opacity: 1;
  border-color: rgb(126 34 206 / var(--tw-border-opacity, 1));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-green-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}

.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}

.group[open] .group-open\:rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

@media (min-width: 640px){
  .sm\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .sm\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:-mt-10{
    margin-top: -2.5rem;
  }

  .sm\:mb-16{
    margin-bottom: 4rem;
  }

  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }

  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }

  .sm\:mt-0{
    margin-top: 0px;
  }

  .sm\:mt-12{
    margin-top: 3rem;
  }

  .sm\:mt-16{
    margin-top: 4rem;
  }

  .sm\:mt-20{
    margin-top: 5rem;
  }

  .sm\:mt-4{
    margin-top: 1rem;
  }

  .sm\:mt-6{
    margin-top: 1.5rem;
  }

  .sm\:mt-8{
    margin-top: 2rem;
  }

  .sm\:mt-\[-20px\]{
    margin-top: -20px;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:h-10{
    height: 2.5rem;
  }

  .sm\:h-16{
    height: 4rem;
  }

  .sm\:w-3\/12{
    width: 25%;
  }

  .sm\:w-48{
    width: 12rem;
  }

  .sm\:w-72{
    width: 18rem;
  }

  .sm\:w-9\/12{
    width: 75%;
  }

  .sm\:w-\[85\%\]{
    width: 85%;
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:max-w-xl{
    max-width: 36rem;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:gap-4{
    gap: 1rem;
  }

  .sm\:gap-y-20{
    row-gap: 5rem;
  }

  .sm\:border-b-0{
    border-bottom-width: 0px;
  }

  .sm\:border-r{
    border-right-width: 1px;
  }

  .sm\:p-12{
    padding: 3rem;
  }

  .sm\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:pb-10{
    padding-bottom: 2.5rem;
  }

  .sm\:pb-12{
    padding-bottom: 3rem;
  }

  .sm\:pb-16{
    padding-bottom: 4rem;
  }

  .sm\:pb-4{
    padding-bottom: 1rem;
  }

  .sm\:pb-5{
    padding-bottom: 1.25rem;
  }

  .sm\:pb-6{
    padding-bottom: 1.5rem;
  }

  .sm\:pb-8{
    padding-bottom: 2rem;
  }

  .sm\:pt-10{
    padding-top: 2.5rem;
  }

  .sm\:pt-16{
    padding-top: 4rem;
  }

  .sm\:pt-4{
    padding-top: 1rem;
  }

  .sm\:pt-6{
    padding-top: 1.5rem;
  }

  .sm\:pt-8{
    padding-top: 2rem;
  }

  .sm\:text-left{
    text-align: left;
  }

  .sm\:text-center{
    text-align: center;
  }

  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:leading-none{
    line-height: 1;
  }

  .sm\:tracking-tight{
    letter-spacing: -0.025em;
  }
}

@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .md\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .md\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .md\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .md\:-ml-4{
    margin-left: -1rem;
  }

  .md\:mb-24{
    margin-bottom: 6rem;
  }

  .md\:mb-8{
    margin-bottom: 2rem;
  }

  .md\:ml-6{
    margin-left: 1.5rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:mt-10{
    margin-top: 2.5rem;
  }

  .md\:mt-14{
    margin-top: 3.5rem;
  }

  .md\:mt-16{
    margin-top: 4rem;
  }

  .md\:mt-20{
    margin-top: 5rem;
  }

  .md\:mt-32{
    margin-top: 8rem;
  }

  .md\:mt-6{
    margin-top: 1.5rem;
  }

  .md\:mt-8{
    margin-top: 2rem;
  }

  .md\:mt-\[-30px\]{
    margin-top: -30px;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:h-12{
    height: 3rem;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-1\/4{
    width: 25%;
  }

  .md\:w-2\/5{
    width: 40%;
  }

  .md\:w-3\/4{
    width: 75%;
  }

  .md\:w-3\/5{
    width: 60%;
  }

  .md\:w-48{
    width: 12rem;
  }

  .md\:w-64{
    width: 16rem;
  }

  .md\:w-80{
    width: 20rem;
  }

  .md\:w-\[50\%\]{
    width: 50%;
  }

  .md\:max-w-2xl{
    max-width: 42rem;
  }

  .md\:max-w-7xl{
    max-width: 80rem;
  }

  .md\:max-w-full{
    max-width: 100%;
  }

  .md\:max-w-md{
    max-width: 28rem;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:flex-col{
    flex-direction: column;
  }

  .md\:items-stretch{
    align-items: stretch;
  }

  .md\:gap-y-8{
    row-gap: 2rem;
  }

  .md\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .md\:border-none{
    border-style: none;
  }

  .md\:p-10{
    padding: 2.5rem;
  }

  .md\:p-4{
    padding: 1rem;
  }

  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:pb-10{
    padding-bottom: 2.5rem;
  }

  .md\:pb-12{
    padding-bottom: 3rem;
  }

  .md\:pb-14{
    padding-bottom: 3.5rem;
  }

  .md\:pb-16{
    padding-bottom: 4rem;
  }

  .md\:pb-24{
    padding-bottom: 6rem;
  }

  .md\:pb-4{
    padding-bottom: 1rem;
  }

  .md\:pb-6{
    padding-bottom: 1.5rem;
  }

  .md\:pl-10{
    padding-left: 2.5rem;
  }

  .md\:pr-8{
    padding-right: 2rem;
  }

  .md\:pt-0{
    padding-top: 0px;
  }

  .md\:pt-10{
    padding-top: 2.5rem;
  }

  .md\:pt-12{
    padding-top: 3rem;
  }

  .md\:pt-16{
    padding-top: 4rem;
  }

  .md\:pt-24{
    padding-top: 6rem;
  }

  .md\:pt-6{
    padding-top: 1.5rem;
  }

  .md\:pt-8{
    padding-top: 2rem;
  }

  .md\:text-left{
    text-align: left;
  }

  .md\:text-center{
    text-align: center;
  }

  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:tracking-normal{
    letter-spacing: 0em;
  }
}

@media (min-width: 1024px){
  .lg\:order-first{
    order: -9999;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .lg\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:-ml-0{
    margin-left: -0px;
  }

  .lg\:mb-0{
    margin-bottom: 0px;
  }

  .lg\:mt-12{
    margin-top: 3rem;
  }

  .lg\:mt-32{
    margin-top: 8rem;
  }

  .lg\:w-1\/2{
    width: 50%;
  }

  .lg\:w-96{
    width: 24rem;
  }

  .lg\:max-w-lg{
    max-width: 32rem;
  }

  .lg\:max-w-none{
    max-width: none;
  }

  .lg\:max-w-screen-xl{
    max-width: 1280px;
  }

  .lg\:max-w-sm{
    max-width: 24rem;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:items-stretch{
    align-items: stretch;
  }

  .lg\:gap-4{
    gap: 1rem;
  }

  .lg\:rounded-l-2xl{
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .lg\:rounded-r-2xl{
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .lg\:p-11{
    padding: 2.75rem;
  }

  .lg\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:pr-8{
    padding-right: 2rem;
  }

  .lg\:text-left{
    text-align: left;
  }

  .lg\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){
  .xl\:hidden{
    display: none;
  }

  .xl\:w-\[80\%\]{
    width: 80%;
  }

  .xl\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (prefers-color-scheme: dark){
  .dark\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
  }

  .dark\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
  }

  .dark\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
  }

  .dark\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .dark\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }

  .dark\:text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }

  .dark\:ring-offset-gray-700{
    --tw-ring-offset-color: #374151;
  }

  .dark\:ring-offset-gray-800{
    --tw-ring-offset-color: #1f2937;
  }

  .dark\:focus\:ring-blue-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
  }

  .dark\:focus\:ring-green-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(22 163 74 / var(--tw-ring-opacity, 1));
  }

  .dark\:focus\:ring-red-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
  }

  .dark\:focus\:ring-offset-gray-700:focus{
    --tw-ring-offset-color: #374151;
  }
}
