@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
@font-face {
  font-family: "Impact Label";
  src: url("/files/fonts/Impact_Label-webfont.woff") format("woff");
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: "shine_typewriterregular";
  src: url("/files/fonts/shinetypewriter-webfont.woff2") format("woff2"), url("/files/fonts/shinetypewriter-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Creative-Juice Regular";
  font-style: normal;
  font-weight: normal;
  src: local("/files/fonts/Creative-Juice Regular"), url("/files/fonts/Creative-Juice.woff") format("woff");
}
.handwritten {
  font-family: "Creative-Juice Regular", normal;
  font-optical-sizing: auto;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
}

/* $dark-background-color: #0007CA;
$dark-light-background-color: #003BD9;
$medium-background-color: #2657DE;
$light-background-color: #B8C9F4; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin-bottom: 1em;
}

/* *********************************
              body 
********************************* */
body {
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  /* background-color: #f4f4f4; */
  background-color: #181E21;
  color: white;
  /* color: #333; */
}

body.home {
  /*   h2 {
      color: #0066cc;
    } */
}
body.home .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* *********************************
              main 
********************************* */
main {
  /* background: white; */
  background-color: #181E21;
  padding: 35px;
  margin: 20px;
  /* max-width: 850px; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* *********************************
                links 
  ********************************* */
}
main a {
  color: #1b1be4;
  /* text-decoration: none; */
}
main a:visited {
  color: #2e2eb4;
}

/* *********************************
              header 
********************************* */
header {
  position: relative;
  text-align: center;
  padding: 40px 0;
  width: 100%;
  height: 300px;
  background-color: #222c31;
  background-image: linear-gradient(60deg, #1B2027 0%, #32384D 100%);
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header.with-bg-image {
  background-color: transparent;
}
header.with-bg-image .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}
header h1, header h2 {
  position: relative;
  z-index: 1;
  margin: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Poppins", sans-serif;
}
header h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 600;
}
header h2 {
  font-weight: 400;
  font-size: 1.2rem;
  /* margin-top: 0.5em; */
}

body.home header {
  /*     h1, h2 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      h1 {
        top: 30%;
      }

      h2 {
        top: 45%;
      } */
}

.header-image {
  width: 100%;
  height: 400px; /* ou la hauteur souhaitée */
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-post {
  margin: 2em 0;
}
.latest-post h2 {
  margin-bottom: 1em;
}

/* *********************************
              titres 
********************************* */
/*   h1, h2, h3 {

    padding: 15px;
  } */
/*   h2 {
    margin-bottom: 20px;
    font-size: 2rem;
  } */
h3 {
  margin: 15px;
}

ul {
  margin-bottom: 10px;
  padding-left: 1em;
}

ul li {
  margin-bottom: 10px;
  list-style-type: circle;
}

/* Place this CSS in your stylesheet or within a <style> tag in your HTML */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px;
  background: rgba(24, 30, 33, 0.9);
  color: white;
  box-shadow: 0 2px 4px rgb(43, 43, 43);
}

nav:has(#nav-levels) {
  padding: 10px;
  background: #181E21;
  color: white;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}
.hamburger:hover {
  color: #7530ff;
}

.bi-x-lg {
  font-size: 1.2rem;
}

#nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: all 0.2s ease-in-out;
  max-height: 1000px;
  overflow: hidden;
}

.nav-left {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin: 10px;
  list-style-type: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 10px;
}
nav ul li a:hover {
  background-color: #222c31;
  color: #5700FF;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  #nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 0;
    opacity: 0;
  }
  #nav-list.active {
    max-height: 1000px;
    opacity: 1;
  }
  .nav-left, .nav-right {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  nav ul li {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  nav ul li a {
    display: block;
    padding: 15px;
    width: 100%;
    border-radius: 0;
  }
}
/* CECRL */
body.cecrl {
  /* background-color: rgb(244, 243, 243); */
}

main.cecrl {
  background: white;
  color: black;
  max-width: 1000px;
  margin: 15px auto;
}

.real-lang li {
  /* font-family: "Creative-Juice Regular", normal; */
  font-weight: 300;
  font-size: 25px;
  color: rgb(51, 51, 51);
}

#nav-levels {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#nav-levels li {
  margin: 0 10px;
}
#nav-levels li a {
  font-weight: bold;
}
#nav-levels li a:hover {
  color: white;
}
#nav-levels li .A1 {
  color: #F2DE51;
}
#nav-levels li .A2 {
  color: #FFAC27;
}
#nav-levels li .B1 {
  color: #12CCB1;
}
#nav-levels li .B2 {
  color: #07D262;
}
#nav-levels li .C1 {
  color: #A03EEC;
}

@media (max-width: 768px) {
  #nav-levels {
    display: flex;
    flex-wrap: wrap;
  }
  #nav-levels li {
    margin: 5px 10px;
  }
}
/* TOPICS STYLE */
/*   .cecrl-content {
    h3 {
      text-shadow: 1px 1px 1px rgba(111, 110, 110, 0.5);
    }
  } */
.cecrl-content.A1 h3 {
  background: #FFFDF1;
  border-bottom: solid 2px #F2DE51;
  padding-left: 5px;
}
.cecrl-content.A1 li.a::marker {
  content: "◆  ";
}
.cecrl-content.A1 li.b::marker {
  content: "◇  ";
}
.cecrl-content.A1 h3, .cecrl-content.A1 li.a::marker, .cecrl-content.A1 li.b::marker {
  color: #F2DE51;
}

.cecrl-content.A2 h3 {
  background: #FFFDF1;
  border-bottom: solid 2px #FFAC27;
  padding-left: 5px;
}
.cecrl-content.A2 li.a::marker {
  content: "◆  ";
}
.cecrl-content.A2 li.b::marker {
  content: "◇  ";
}
.cecrl-content.A2 h3, .cecrl-content.A2 li.a::marker, .cecrl-content.A2 li.b::marker {
  color: #FFAC27;
}

.cecrl-content.B1 h3 {
  background: #EBFFF7;
  border-bottom: solid 2px #12CCB1;
  padding-left: 5px;
}
.cecrl-content.B1 li.a::marker {
  content: "◆  ";
}
.cecrl-content.B1 li.b::marker {
  content: "◇  ";
}
.cecrl-content.B1 h3, .cecrl-content.B1 li.a::marker, .cecrl-content.B1 li.b::marker {
  color: #12CCB1;
}

.cecrl-content.B2 h3 {
  background: #EBFFF7;
  border-bottom: solid 2px #07D262;
  padding-left: 5px;
}
.cecrl-content.B2 li.a::marker {
  content: "◆  ";
}
.cecrl-content.B2 li.b::marker {
  content: "◇  ";
}
.cecrl-content.B2 h3, .cecrl-content.B2 li.a::marker, .cecrl-content.B2 li.b::marker {
  color: #07D262;
}

.cecrl-content.C1 h3 {
  background: #F6F0FF;
  border-bottom: solid 2px #A03EEC;
  padding-left: 5px;
}
.cecrl-content.C1 li.a::marker {
  content: "◆  ";
}
.cecrl-content.C1 li.b::marker {
  content: "◇  ";
}
.cecrl-content.C1 h3, .cecrl-content.C1 li.a::marker, .cecrl-content.C1 li.b::marker {
  color: #A03EEC;
}

.cecrl-content li.a::marker {
  /*   list-style-type: disc; */
  content: "◆  ";
}

.cecrl-content li.b::marker {
  content: "◇  ";
}

/* LEVELTAGS */
.leveltag {
  color: #676767;
  background: #fafafa;
  border-radius: 15px;
  border: 1px solid #CDCCCC;
  font-size: 0.7em;
  /*   font-family: "Baloo 2";
    font-style: normal;
    font-weight: 600; */
  padding: 3px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 2px;
}
.leveltag.key {
  font-weight: bold;
}
.leveltag.key.A1 {
  color: #F2DE51;
  border-color: #F2DE51;
  background: #FFFDF1;
}
.leveltag.key.A2 {
  color: #FFAC27;
  border-color: #FFAC27;
  background: #FFFDF1;
}
.leveltag.key.B1 {
  color: #12CCB1;
  border-color: #12CCB1;
  background: #EBFFF7;
}
.leveltag.key.B2 {
  color: #07D262;
  border-color: #07D262;
  background: #EBFFF7;
}
.leveltag.key.C1 {
  color: #A03EEC;
  border-color: #A03EEC;
  background: #F6F0FF;
}
.leveltag.key.info {
  color: #5e37aa;
  border-color: #5e37aa;
}

/* MODAL WINDOW */
/* Style pour la fenêtre modale */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* ONGLETS */
:root {
  --primary-color: #010101;
  --secondary-color: #e0ecfc; /* Couleur de fond */
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tab-container {
  display: flex;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
  padding: 0.75rem;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 800px;
}
.tab-container * {
  z-index: 2;
}

.tab {
  padding: -0.15rem;
  display: none;
}

.tab_label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 160px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 15px;
  color: #838282;
  z-index: 900;
}
.tab_label:hover {
  color: var(--primary-color);
}

.indicator {
  position: absolute;
  display: flex;
  height: 54px;
  width: 150px;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 20px;
  transition: 0.25s ease-out;
  left: 10px;
}
.indicator.A1 {
  background-color: #FFFDF1;
  border: 2px solid #F2DE51;
}
.indicator.A2 {
  background-color: #FFFDF1;
  border: 2px solid #FFAC27;
}
.indicator.B1 {
  background-color: #EBFFF7;
  border: 2px solid #12CCB1;
}
.indicator.B2 {
  background-color: #EBFFF7;
  border: 2px solid #07D262;
}
.indicator.C1 {
  background-color: #F6F0FF;
  border: 2px solid #A03EEC;
}

.tab--1:checked ~ .indicator {
  transform: translateX(calc(160px * 0));
}
.tab--1:checked + .tab_label {
  color: var(--primary-color);
}

.tab--2:checked ~ .indicator {
  transform: translateX(calc(160px * 1));
}
.tab--2:checked + .tab_label {
  color: var(--primary-color);
}

.tab--3:checked ~ .indicator {
  transform: translateX(calc(160px * 2));
}
.tab--3:checked + .tab_label {
  color: var(--primary-color);
}

.tab--4:checked ~ .indicator {
  transform: translateX(calc(160px * 3));
}
.tab--4:checked + .tab_label {
  color: var(--primary-color);
}

.tab--5:checked ~ .indicator {
  transform: translateX(calc(160px * 4));
}
.tab--5:checked + .tab_label {
  color: var(--primary-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  main.cecrl {
    font-size: 14px;
  }
  .real-lang {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 10px !important;
  }
  .tab-container {
    min-width: unset;
    width: 100%;
    flex-wrap: wrap;
    border-radius: 15px;
    padding: 0.5rem;
  }
  .tab_label {
    width: calc(50% - 20px);
    height: 45px;
    font-size: 0.9rem;
    margin: 5px;
  }
  .indicator {
    display: none;
  }
  .tab:checked + .tab_label {
    background-color: var(--secondary-color);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
  }
  .A1 .tab:checked + .tab_label {
    background-color: #FFFDF1;
    border: 2px solid #F2DE51;
  }
  .A2 .tab:checked + .tab_label {
    background-color: #FFFDF1;
    border: 2px solid #FFAC27;
  }
  .B1 .tab:checked + .tab_label {
    background-color: #EBFFF7;
    border: 2px solid #12CCB1;
  }
  .B2 .tab:checked + .tab_label {
    background-color: #EBFFF7;
    border: 2px solid #07D262;
  }
  .C1 .tab:checked + .tab_label {
    background-color: #F6F0FF;
    border: 2px solid #A03EEC;
  }
  .info-tooltip {
    width: 90vw;
  }
}
@media (max-width: 480px) {
  .tab_label {
    width: 100%;
    margin: 3px 0;
  }
}
.bi-filetype-pdf {
  font-size: 1.5rem;
  margin-right: 0.25rem;
  color: #dc3545;
}
a .bi-filetype-pdf:hover {
  opacity: 0.8;
}

/* Section titre et icône info */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
}
.section-header h2 {
  margin: 0;
}
.section-header .bi-info-circle {
  color: #7d7b7b;
  cursor: pointer;
  font-size: 1.5rem;
}
.section-header .bi-info-circle:hover {
  color: var(--primary-color);
}

/* TOOLTIP Infos */
.info-wrapper {
  position: relative; /* Position relative pour le conteneur */
  display: inline-block; /* Pour que le tooltip s'aligne correctement */
}

.info-tooltip {
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 500px;
  display: none; /* Masqué par défaut */
  top: 20%; /* Ajustez selon vos besoins */
  right: 100%; /* Positionné à droite de l'icône */
  transform: translateY(-50%); /* Centrer verticalement */
}

.info:hover + .info-tooltip {
  display: block; /* Affiche le tooltip au survol */
}

body.cours {
  background-color: rgb(254, 254, 254);
}

main.cours {
  margin: 10px auto;
  max-width: 1000px;
  background: white;
  color: black;
}
main.cours h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
main.cours h3 {
  margin-bottom: 0.5rem;
}
main.cours h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
main.cours ul {
  margin: 0.5rem;
}
main.cours ol {
  margin: 2rem;
}
main.cours li {
  margin-bottom: 0;
}

.cours-box {
  float: right;
  clear: right;
  width: 300px;
  margin: 0 0 20px 20px;
  padding: 10px;
  color: #0000E9;
  background-color: #ECF4FF;
  border: 1.5px solid #B2D2FE;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 10pt;
}
.cours-box .cours-section {
  margin-bottom: 20px;
}
.cours-box .cours-section:last-child {
  margin-bottom: 0;
}
.cours-box .cours-section h3 {
  font-size: 10pt;
  margin: 0 0 10px 0;
  color: #0000E9;
  padding-bottom: 5px;
  border-bottom: 1px solid #B2D2FE;
}
.cours-box .cours-section ul {
  margin: 0;
  padding-left: 1.2rem;
}
.cours-box .cours-section ul li {
  margin-bottom: 0.5rem;
}
.cours-box .cours-section ul li:last-child {
  margin-bottom: 0;
}

.bi-file-easel-fill {
  font-size: 1.5rem;
  margin-right: 0.25rem;
  color: #222c31;
}
a .bi-file-easel-fill:hover {
  opacity: 0.8;
}

.btn-show-err {
  display: inline-block;
  padding: 8px 16px;
  margin: 10px 0;
  background-color: #222c31;
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.btn-show-err:hover {
  background-color: rgb(54.8915662651, 71.0361445783, 79.1084337349);
  cursor: pointer;
}
.btn-show-err:active {
  background-color: rgb(23.5542168675, 30.4819277108, 33.9457831325);
}

.cours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .competences-box {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.post-card {
  width: 300px;
  padding-bottom: 15px;
  margin: 20px;
  background: #222c31;
  color: white !important;
  border-radius: 8px;
  border: 1px solid #5700FF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
  position: relative;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card .post-card-header {
  /* height: 200px; */
  position: relative;
  overflow: hidden;
}
.post-card .post-card-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card .post-card-content {
  padding: 0 10px 0 15px;
}
.post-card .post-card-content h2 {
  margin: 0;
  padding: 10px;
  font-size: 1.25rem;
}
.post-card .post-card-content h2 a {
  color: rgb(241, 240, 240);
}
.post-card .post-card-content h3 {
  margin: 0;
  font-size: 1rem;
  color: rgb(206, 205, 203);
}
.post-card .post-card-content h3 a {
  color: rgb(206, 205, 203);
}
.post-card .post-card-content .introduction {
  /* margin-top: 1rem; */
  font-size: 0.9rem;
  line-height: 1.5;
  color: #999797;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card .level-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}
.post-card .level-badge {
  background-color: #181E21;
  color: white;
  margin: 5px;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.post-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card-link:hover {
  text-decoration: none;
}

.pin-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2em;
  z-index: 1;
}
.pin-icon svg {
  fill: white;
  height: 16px;
  width: 16px;
}

body.blog {
  background-color: rgb(244, 243, 243);
  background-image: url("/files/cork-bg.png");
  background-repeat: repeat;
  background-size: auto;
  font-size: 20px;
}
body.blog header {
  height: 200px;
  background: transparent;
}
body.blog header h1 {
  color: black;
  background: white;
  text-shadow: none;
  padding: 10px 25px 10px 25px;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
  transform: rotate(1deg);
}
body.blog header h2 {
  color: black;
  background: white;
  text-shadow: none;
  padding: 10px 25px 10px 25px;
  transform: rotate(-2deg);
  font-family: "Creative-Juice Regular", normal;
  font-weight: 600;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
}
body.blog .citation {
  background: white;
  font-family: "shine_typewriterregular", sans-serif;
  font-size: 16px;
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
}

.sidebar-image {
  position: absolute;
  width: 40%;
  right: -40%;
  background: none;
  transform: rotate(2deg);
}
.sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}
.sidebar-image.scotched::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  right: 10px;
  left: 10px;
  /* width: calc(100% - 20px); */
  /* height: 20px; */
  box-shadow: 0 5px 5px 10px rgba(0, 0, 0, 0.4);
  transform: rotate(2deg);
}
.sidebar-image.scotched::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-image: url("/files/scotch.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.sidebar-section {
  position: absolute;
  right: -35%;
  max-width: 350px;
  color: black;
  background: #FFF47E;
  padding: 10px;
  margin-top: 20px;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
  margin-bottom: 20px;
  transform: translateY(-150px);
  font-family: "Creative-Juice Regular", normal;
  font-size: 25px;
}
.sidebar-section p {
  margin-bottom: 10px;
  color: #333;
}

main .section {
  background: white;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
  color: black;
  padding: 40px;
  padding-left: 50px;
  margin-bottom: 20px;
  position: relative;
  padding-top: 50px;
}
main .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-image: url("/files/pin.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

main.blog {
  padding: 0px;
  background: transparent;
  font-size: 16px;
}
main.blog li {
  margin-bottom: 5px;
}
main.blog:not(.list) {
  width: 70%;
  position: relative;
}
main.blog:not(.list) h2 {
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600 !important;
  /* font-family: 'Impact Label', sans-serif; */
}
main.blog:not(.list) h2, main.blog:not(.list) h3 {
  color: #1b1be4;
  font-weight: normal;
}
main.blog.list {
  background: transparent;
  /* ****************
    Post-it
  **************** */
}
main.blog.list .blog-list > h2 {
  color: black;
  background: white;
  text-shadow: none;
  padding: 10px 25px 10px 25px;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
  transform: rotate(-1deg);
  width: -moz-fit-content;
  width: fit-content;
}
main.blog.list .post-it {
  display: flex;
  flex-direction: column;
  width: 300px;
  min-height: 200px;
  background: #FFF47E;
  padding: 10px;
  border: none;
  box-shadow: 0 15px 10px -10px rgba(51, 51, 51, 0.4117647059);
  font-family: "Creative-Juice Regular", normal;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
  /* cursor: pointer; */
}
main.blog.list .post-it h2, main.blog.list .post-it h3 {
  color: rgb(55, 54, 54);
  font-size: 30px;
}
main.blog.list .post-it h2 {
  padding-left: 0;
}
main.blog.list .post-it h3 {
  font-size: 25px;
}
main.blog.list .post-it p {
  color: rgb(85, 84, 84);
  font-size: 20px;
}
main.blog.list .post-it:hover {
  transform: translateY(-5px);
}
main.blog.list .post-it .post-it-header {
  /* height: 200px; */
  overflow: hidden;
}
main.blog.list .post-it .post-it-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.blog.list .post-it-link {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main.blog.list .post-it-subtitle a {
  color: #573bc9;
  /* color: #0260e3; */
}
main.blog.list .post-it-content {
  flex-grow: 1;
}
main.blog.list .post-it-content .introduction {
  /* margin-top: 1rem; */
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main.blog.list .post-it-content h2 {
  position: relative;
  display: inline;
  background: linear-gradient(to right, rgba(195, 123, 255, 0.8), rgba(195, 123, 255, 0.8));
  background-repeat: no-repeat;
  background-size: 0% 0.8em;
  background-position: 0 70%;
  transition: background-size 0.5s ease;
  padding: 0 5px;
  line-height: 1.4;
  border-radius: 0.8em 0 0.8em 0;
}
main.blog.list .post-it-content a {
  text-decoration: none;
}
main.blog.list .post-it:hover .post-it-content h2 {
  background-size: 100% 0.8em;
}
main.blog.list .post-tags {
  margin-top: auto;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
main.blog.list .tag {
  display: inline-block;
  background-color: #e8fa43;
  color: #333;
  padding: 0px 4px;
  border-radius: 4px;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .sidebar-section, .sidebar-image, main.blog {
    position: relative;
    right: 0;
    width: auto !important;
  }
  main.blog {
    margin-left: 10px;
    font-size: 16px;
  }
  .sidebar-section {
    transform: translateY(0);
  }
  .sidebar-image {
    transform: rotate(0deg);
  }
  .sidebar-image::before {
    content: none;
  }
  /*   main.blog :not(.list) {
      width: 100%; 
      background: rgb(176, 146, 146);
    }

    .sidebar-section :not(.list) {
      color: red; 
      position: relative;
    }

    body.blog header h1 {
     color: red; 
    } */
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.41);
}
footer .footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
footer .footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
footer .footer-section h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #5700FF;
}
footer .footer-section ul {
  list-style: none;
  padding: 0;
}
footer .footer-section ul li {
  margin: 5px 0;
  list-style: none;
}
footer .footer-section ul li a {
  color: #fff;
  text-decoration: none;
}
footer .footer-section ul li a:hover {
  text-decoration: underline;
}
footer hr {
  border: 0;
  height: 1px;
  background: #444;
  margin: 20px 0;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}
.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: #f26522; /* Couleur orange traditionnelle du RSS */
  text-decoration: none;
}

.rss-link:hover {
  color: #e34e0d;
}

.rss-link i {
  font-size: 1.2rem;
}

.real-lang {
  z-index: 1000;
}
.real-lang h1 {
  font-size: 1.5rem;
}
.real-lang h2 {
  font-size: 1.2rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
}
.modal .close {
  position: absolute;
  right: 35px;
  top: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.modal .close:hover {
  color: #bbb;
}

.mindmap-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mindmap-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  color: white;
  background-color: #333333;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

svg.mindmap-container {
  width: 100%;
  height: auto;
}

.mindmap-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.mindmap-modal .mindmap-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  height: 80%;
  position: relative;
}
.mindmap-modal .mindmap-content .mindmap-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.mindmap-modal .close-mindmap {
  position: absolute;
  right: 25px;
  top: 10px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
  z-index: 2001;
}

.sortable-list, .sortable-container {
  list-style: none;
  padding: 0;
}
.sortable-list li, .sortable-list .sortable-item, .sortable-container li, .sortable-container .sortable-item {
  cursor: grab;
  list-style: none;
  padding: 10px;
  margin: 5px 0;
  color: #3e3e3e;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #3e3e3e;
  transition: background-color 0.2s ease;
}
.sortable-list li:hover, .sortable-list .sortable-item:hover, .sortable-container li:hover, .sortable-container .sortable-item:hover {
  cursor: grab;
  background-color: #969696;
}

.sortable-container .sortable-item {
  cursor: grab;
  padding: 10px;
  margin: 5px 0;
  background: #f5f5f5;
  border: 1px solid #3e3e3e;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.sortable-container .sortable-item:hover {
  background-color: #969696;
}
.sortable-container .sortable-item p {
  margin-bottom: 0 !important;
}

.sortable-ghost {
  opacity: 0.5;
  background: #c8ebfb !important;
}

.sortable-drag {
  background: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.construction-message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.construction-message h2 {
  color: #e74c3c;
  margin-bottom: 1.5rem;
}

.construction-message p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #a1a0a0;
}

/* .cecrl-feature {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
} */
.cecrl-feature h3 {
  margin-bottom: 1.5rem;
  color: #475c6f;
}

.cecrl-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2980b9;
  transition: transform 0.2s ease;
}

.cecrl-link:hover {
  transform: scale(1.05);
}

.cecrl-link img {
  padding: 1rem;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.cecrl-link span {
  font-weight: bold;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px 0;
  background: #181E21;
  color: white;
  margin-top: 20px;
}

footer p {
  margin: 0;
}

/* PAGE */
/* LIENS */
ul li a {
  color: #5e37aa;
  /* text-decoration: none; */
}
ul li a:hover {
  -webkit-text-decoration: double;
          text-decoration: double;
  background-color: #5e37aa;
  color: white;
}

/*    ENCADRÉS   */
pre {
  background-color: #feffd5;
  padding: 1em;
  background-color: #fffbe6;
  border: 1px solid #ffd700;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */