@font-face {
  font-family: "fira-sans-condensed-semi-bold";
  src: url(../fonts/Fira_Sans_Condensed/FiraSansCondensed-SemiBold.ttf);
}
@font-face {
  font-family: "fira-sans-condensed-regular";
  src: url(../fonts/Fira_Sans_Condensed/FiraSansCondensed-Regular.ttf);
}
@font-face {
  font-family: "poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: "poppins-bold";
  src: url(../fonts/Poppins/Poppins-Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  color: #000;
  scroll-behavior: smooth;
  cursor: url(../img/cursor.ico), pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  text-align: center;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "fira-sans-condensed-semi-bold", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: normal;
}

p,
a,
i {
  font-size: 1rem;
  text-decoration: none;
  color: #000;
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: url(../img/cursor-hover.ico), pointer;
}
a:hover {
  color: #8b0000;
}

strong {
  font-family: "poppins-bold", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

a .bouton-appel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #b80000, #8b0000);
  padding: 10px;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 360px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a .bouton-appel:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
a .bouton-appel i {
  font-size: 1.5rem;
  color: #fff;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
button {
  border: none;
  background: none;
}
button a {
  text-transform: uppercase;
  color: #8b0000;
  border: 3px solid #8b0000;
  border-radius: 360px;
  padding: 5px 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
button a:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
}

button[type=submit] {
  text-transform: uppercase;
  color: #8b0000;
  border: 3px solid #8b0000;
  border-radius: 360px;
  padding: 5px 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-size: 1rem;
}
button[type=submit]:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
}

.buttonIcon {
  border: none;
  background: none;
}
.buttonIcon a {
  color: #8b0000;
  display: grid;
  grid-template-columns: 20% 80%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #8b0000;
  border-radius: 360px;
  padding: 0 10px 0 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background: #fff;
  text-shadow: 0 0 5px #fff;
}
.buttonIcon a:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  text-shadow: 0 0 5px #8b0000;
}
.buttonIcon a i {
  padding: 12px 10px;
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  border-radius: 360px;
  text-shadow: 0 0 5px #8b0000;
}

.buttonIconRight {
  border: none;
  background: none;
}
.buttonIconRight a {
  background: transparent;
  color: #8b0000;
  display: grid;
  grid-template-columns: 73% 27%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #8b0000;
  border-radius: 360px;
  padding: 0 0 0 10px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-shadow: 0 0 5px #fff;
}
.buttonIconRight a:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  text-shadow: 0 0 5px #8b0000;
}
.buttonIconRight a i {
  font-size: 1.3rem;
  padding: 10px;
  margin-left: 5px;
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  border-radius: 360px;
  border: 3px solid #8b0000;
  text-shadow: 0 0 5px #8b0000;
}

#accueil .buttonIconRight {
  width: 200px;
}
#accueil .buttonIconRight a {
  background: rgba(255, 255, 255, 0.25);
}
#accueil .buttonIconRight a:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  text-shadow: 0 0 5px #8b0000;
}

.buttonScrollDown {
  border: none;
  background: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.buttonScrollDown a {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.buttonScrollDown a:hover {
  background: none;
  border: none;
}
.buttonScrollDown a i {
  position: absolute;
  bottom: -35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #b80000, #8b0000);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 360px;
  width: 70px;
  height: 70px;
  color: #fff;
  text-shadow: none;
  font-size: 1.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.buttonScrollDown a i:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#title-page {
  background: linear-gradient(135deg, #b80000, #8b0000);
}
#title-page .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px;
}
#title-page .title-container h1 {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.cta {
  background: url(../img/cta.webp) center/cover;
}
.cta .overlay {
  padding: 50px;
  background: rgba(255, 255, 255, 0.2);
}
.cta .overlay h2 {
  color: #000;
  text-shadow: 0 0 5px #fff;
  font-size: 2rem;
  padding-bottom: 30px;
}
.cta .overlay p {
  padding-bottom: 40px;
  text-shadow: 0 0 5px #fff;
}
.cta .overlay button a {
  background: #8b0000;
  color: #fff;
}
.cta .overlay button a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #8b0000;
}

header .barre-sup {
  padding: 10px 50px;
  display: grid;
  grid-template-columns: 60% 40%;
  border-bottom: 1px solid #f1f1f1;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100000000000000000000000000000000000000000;
}
@media screen and (max-width: 1277px) {
  header .barre-sup {
    grid-template-columns: 1fr;
    height: 20vh;
  }
}
header .barre-sup .menu-barre-sup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1277px) {
  header .barre-sup .menu-barre-sup {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header .barre-sup .menu-barre-sup img {
  width: 20%;
}
@media screen and (max-width: 1277px) {
  header .barre-sup .menu-barre-sup img {
    height: 15vh;
    width: auto;
  }
}
header .barre-sup .menu-barre-sup .menuIcons {
  display: none;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup .menuIcons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
header .barre-sup .menu-barre-sup .menuIcons i {
  font-size: 1.5rem;
  color: #8b0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .barre-sup .menu-barre-sup .menuIcons #closeIcon {
  display: none;
}
header .barre-sup .menu-barre-sup nav {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav {
    display: none;
  }
}
header .barre-sup .menu-barre-sup nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 20vh;
    right: 0;
    background: #fff;
    height: 100vh;
    padding: 10px 20px;
    gap: 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
header .barre-sup .menu-barre-sup nav ul li {
  list-style: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0 10px;
  cursor: url(../img/cursor-hover.ico), pointer;
  position: relative;
}
header .barre-sup .menu-barre-sup nav ul li:hover i {
  color: #8b0000;
}
header .barre-sup .menu-barre-sup nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1277px) {
  header .barre-sup .menu-barre-sup nav ul li a {
    font-size: 0.9rem;
  }
}
header .barre-sup .menu-barre-sup nav ul li a i {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 1.5rem;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav ul li a i {
    display: none;
  }
}
header .barre-sup .menu-barre-sup nav ul li a i:hover {
  color: #8b0000;
}
header .barre-sup .menu-barre-sup nav ul li a .fa-chevron-down {
  -webkit-transform: translate(25%, 20%);
          transform: translate(25%, 20%);
  font-size: 0.9rem;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1,
header .barre-sup .menu-barre-sup nav ul li #sousNav2,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 {
  display: none;
  position: absolute;
  z-index: 1000000000000000000000000000000000000000000;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav ul li #sousNav1,
  header .barre-sup .menu-barre-sup nav ul li #sousNav2,
  header .barre-sup .menu-barre-sup nav ul li #sousNav3 {
    display: none;
    position: static;
  }
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul,
  header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul,
  header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul {
    display: none;
  }
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li {
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
  padding: 10px 20px;
}
@media screen and (max-width: 1346px) {
  header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li,
  header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li,
  header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li {
    display: none;
  }
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li:first-of-type,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li:first-of-type,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li:first-of-type {
  border-radius: 10px 10px 0 0;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li:last-of-type,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li:last-of-type,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li:last-of-type {
  border-radius: 0 0 10px 10px;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li:hover,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li:hover,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li:hover a,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li:hover a,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li:hover a {
  color: #fff;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul li a,
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul li a,
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul li a {
  text-align: left;
  font-size: 0.9rem;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav1 ul {
  width: 250px;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav2 ul {
  width: 300px;
}
header .barre-sup .menu-barre-sup nav ul li #sousNav3 ul {
  width: 150px;
}
@media screen and (max-width: 1277px) {
  header .barre-sup div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}
header .barre-sup div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
header .barre-sup div:last-of-type .buttonIcon {
  margin: 0 10px;
}
header .barre-sup div:last-of-type .buttonIcon:first-of-type {
  width: 230px;
}
header .barre-sup div:last-of-type .buttonIcon:last-of-type {
  width: 200px;
}
header .barre-sup div:last-of-type .buttonIcon i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .button-menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .button-menu a {
  border: 3px solid transparent;
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border-radius: 360px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .button-menu a:hover {
  border: 3px solid #8b0000;
  background: transparent;
  color: #8b0000;
}
@media screen and (max-width: 1277px) {
  header .buttonIcon {
    display: none;
  }
}
header .responsive-li {
  display: none;
}
@media screen and (max-width: 1346px) {
  header .responsive-li {
    display: block;
  }
}
header .sous-nav-responsive {
  margin: 0 0 0 15px;
}

main {
  margin-top: 20vh;
}
main .intro {
  margin: 50px;
  padding: 50px;
}

footer p,
footer a {
  font-size: 0.8rem;
}
footer .footer-sup {
  background: #8b0000;
  padding: 20px 0;
}
footer .footer-sup ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 555px) {
  footer .footer-sup ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer-sup ul li {
  list-style: none;
  padding: 0 10px;
}
footer .footer-sup ul li a {
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .footer-sup ul li a:hover {
  color: #000;
}
footer .footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
footer .footer-copyright .heart {
  color: #8b0000;
  font-size: 1.1rem;
}

.hero {
  background: url(../img/hero.webp) center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
}
.hero .heroOverlay {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 50px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1015px) {
  .hero .heroOverlay {
    width: 80%;
    height: 80%;
  }
}
.hero .heroOverlay h2 {
  font-size: 2rem;
  color: #000;
  text-shadow: 0 0 5px #fff;
  text-transform: uppercase;
  line-height: 50px;
}
@media screen and (max-width: 1015px) {
  .hero .heroOverlay h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .hero .heroOverlay h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 470px) {
  .hero .heroOverlay h2 {
    line-height: 30px;
  }
}
@media screen and (max-width: 370px) {
  .hero .heroOverlay h2 {
    font-size: 1.4rem;
  }
}

.lettre {
  padding: 120px 50px 50px;
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 960px) {
  .lettre {
    grid-template-columns: 1fr;
    background: url(../img/lettre.png) center/contain no-repeat;
  }
}
.lettre .img-lettre {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .lettre .img-lettre {
    display: none;
  }
}
.lettre .img-lettre img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.lettre .texte-lettre {
  background: linear-gradient(135deg, #b80000, #8b0000);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 50px;
  margin: 50px 100px 0 -150px;
}
@media screen and (max-width: 1070px) {
  .lettre .texte-lettre {
    margin: 50px 50px 0 -50px;
  }
}
@media screen and (max-width: 960px) {
  .lettre .texte-lettre {
    margin: 0;
    background: linear-gradient(135deg, rgba(184, 0, 0, 0.85), rgba(139, 0, 0, 0.85));
  }
}
.lettre .texte-lettre h2 {
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
.lettre .texte-lettre h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #fff;
}
.lettre .texte-lettre p {
  color: #fff;
  text-align: justify;
  font-size: 0.9rem;
}
@media screen and (max-width: 960px) {
  .lettre .texte-lettre p {
    text-align: left;
  }
}
.lettre .texte-lettre p .signature {
  font-weight: bold;
  color: #fff;
}
.lettre .texte-lettre p .signature .small {
  font-weight: normal;
  font-size: 0.8rem;
  color: #fff;
}

#categories {
  height: 100vh;
  padding: 20px 50px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1070px) {
  #categories {
    height: auto;
    padding: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 570px) {
  #categories {
    grid-template-columns: 1fr;
  }
}
#categories a {
  border-radius: 10px;
  background: linear-gradient(135deg, #b80000, #8b0000);
  height: 250px;
}
#categories a .item {
  height: 250px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
#categories a .item h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  padding: 20px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
#categories a .item h2:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #b80000, #8b0000);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  cursor: url(../img/cursor-hover.ico), pointer;
}

#nous-connaitre .section {
  padding: 50px;
}
#nous-connaitre .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#nous-connaitre .section h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#nous-connaitre #qui-sommes-nous {
  padding: 0;
  margin: 0 50px 50px;
  background: url(../img/cta.webp) center/cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#nous-connaitre #qui-sommes-nous div {
  margin: 0;
  padding: 50px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nous-connaitre #qui-sommes-nous div h2 {
  color: #fff;
  text-align: center;
}
#nous-connaitre #qui-sommes-nous div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #fff;
}
#nous-connaitre #qui-sommes-nous div p {
  color: #fff;
}
#nous-connaitre #nos-services-aux-adherents {
  text-align: center;
}
#nous-connaitre #nos-services-aux-adherents h2 {
  text-align: center;
}
#nous-connaitre #nos-services-aux-adherents h2:after {
  margin: 20px auto 0;
}
#nous-connaitre #nos-services-aux-adherents .services-container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #nous-connaitre #nos-services-aux-adherents .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 630px) {
  #nous-connaitre #nos-services-aux-adherents .services-container {
    grid-template-columns: 1fr;
  }
}
#nous-connaitre #nos-services-aux-adherents .services-container .service {
  border: 3px solid #8b0000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#nous-connaitre #nos-services-aux-adherents .services-container .service i {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
}
#nous-connaitre #nos-services-aux-adherents .services-container .service h3 {
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#nous-connaitre #nos-services-aux-adherents .services-container .service h3:after {
  margin: 20px auto 0;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#nous-connaitre #nos-revendications {
  padding: 0;
  margin: 0 50px 50px;
  background: url(../img/revendications.webp) top/cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#nous-connaitre #nos-revendications .revendications-div {
  margin: 0;
  padding: 50px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nous-connaitre #nos-revendications .revendications-div h2 {
  color: #fff;
  text-align: center;
}
#nous-connaitre #nos-revendications .revendications-div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #fff;
}
#nous-connaitre #nos-revendications .revendications-div p {
  color: #fff;
}
#nous-connaitre #nos-revendications .revendications-div .revendication-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  #nous-connaitre #nos-revendications .revendications-div .revendication-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 630px) {
  #nous-connaitre #nos-revendications .revendications-div .revendication-container {
    grid-template-columns: 1fr;
  }
}
#nous-connaitre #nos-revendications .revendications-div .revendication-container .revendication {
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nous-connaitre #nos-valeurs {
  text-align: center;
}
#nous-connaitre #nos-valeurs h2 {
  text-align: center;
}
#nous-connaitre #nos-valeurs h2:after {
  margin: 20px auto 0;
}
#nous-connaitre #nos-valeurs .valeurs-container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #nous-connaitre #nos-valeurs .valeurs-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 630px) {
  #nous-connaitre #nos-valeurs .valeurs-container {
    grid-template-columns: 1fr;
  }
}
#nous-connaitre #nos-valeurs .valeurs-container .valeur {
  border: 3px solid #8b0000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#nous-connaitre #nos-valeurs .valeurs-container .valeur i {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
}
#nous-connaitre #nos-valeurs .valeurs-container .valeur h3 {
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#nous-connaitre #nos-valeurs .valeurs-container .valeur h3:after {
  margin: 20px auto 0;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#nous-connaitre #notre-fonctionnement {
  padding: 0;
  margin: 0 50px 50px;
  background: url(../img/assemblee.webp) top/cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div {
  margin: 0;
  padding: 50px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div h2 {
  color: #fff;
  text-align: center;
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #fff;
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div p {
  color: #fff;
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  #nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container {
    grid-template-columns: 1fr;
  }
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container .fonctionnement-item {
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 10% 90%;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container .fonctionnement-item:first-of-type {
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  #nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container .fonctionnement-item:first-of-type {
    margin: 0;
  }
}
#nous-connaitre #notre-fonctionnement .fonctionnement-div .fonctionnement-container .fonctionnement-item i {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 360px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8b0000;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
#nous-connaitre #notre-reseau div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px 50px;
}
#nous-connaitre #notre-reseau div h2 {
  text-align: center;
}
#nous-connaitre #notre-reseau div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #8b0000;
}

#vos-droits .section {
  padding: 50px;
}
#vos-droits .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#vos-droits .section h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#vos-droits #droits-adherent {
  padding: 0;
  margin: 0 50px 50px;
  background: url(../img/cta.webp) center/cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#vos-droits #droits-adherent .droits-div {
  margin: 0;
  padding: 50px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#vos-droits #droits-adherent .droits-div h2 {
  color: #fff;
  text-align: center;
}
#vos-droits #droits-adherent .droits-div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #fff;
}
#vos-droits #droits-adherent .droits-div p {
  color: #fff;
}
#vos-droits #droits-adherent .droits-div .droits-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  #vos-droits #droits-adherent .droits-div .droits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 630px) {
  #vos-droits #droits-adherent .droits-div .droits-container {
    grid-template-columns: 1fr;
  }
}
#vos-droits #droits-adherent .droits-div .droits-container .droit {
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#vos-droits #protection-juridique {
  text-align: center;
}
#vos-droits #protection-juridique h2 {
  text-align: center;
}
#vos-droits #protection-juridique h2:after {
  margin: 20px auto 0;
}
#vos-droits #protection-juridique .protection-container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #vos-droits #protection-juridique .protection-container {
    grid-template-columns: 1fr;
  }
}
#vos-droits #protection-juridique .protection-container .protection {
  border: 3px solid #8b0000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#vos-droits #protection-juridique .protection-container .protection i {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
}
#vos-droits #protection-juridique .protection-container .protection h3 {
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#vos-droits #protection-juridique .protection-container .protection h3:after {
  margin: 20px auto 0;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#vos-droits #formation-syndicale {
  padding: 0;
  margin: 0 50px 50px;
  background: url(../img/assemblee.webp) top/cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#vos-droits #formation-syndicale .formation-div {
  margin: 0;
  padding: 50px;
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#vos-droits #formation-syndicale .formation-div h2 {
  color: #fff;
  text-align: center;
}
#vos-droits #formation-syndicale .formation-div h2:after {
  margin: 20px auto 0;
  border-top: 3px solid #fff;
}
#vos-droits #formation-syndicale .formation-div p {
  color: #fff;
}
#vos-droits #formation-syndicale .formation-div .formation-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  #vos-droits #formation-syndicale .formation-div .formation-container {
    grid-template-columns: 1fr;
  }
}
#vos-droits #formation-syndicale .formation-div .formation-container .formation-item {
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 10% 90%;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  #vos-droits #formation-syndicale .formation-div .formation-container .formation-item {
    width: 100%;
  }
}
#vos-droits #formation-syndicale .formation-div .formation-container .formation-item:first-of-type {
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  #vos-droits #formation-syndicale .formation-div .formation-container .formation-item:first-of-type {
    margin: 0;
  }
}
#vos-droits #formation-syndicale .formation-div .formation-container .formation-item i {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 360px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8b0000;
  -webkit-transform: translateX(-55px);
          transform: translateX(-55px);
}
#vos-droits #soutien-specifique {
  text-align: center;
}
#vos-droits #soutien-specifique h2 {
  text-align: center;
}
#vos-droits #soutien-specifique h2:after {
  margin: 20px auto 0;
}
#vos-droits #soutien-specifique .soutien-container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #vos-droits #soutien-specifique .soutien-container {
    grid-template-columns: 1fr;
  }
}
#vos-droits #soutien-specifique .soutien-container .soutien {
  border: 3px solid #8b0000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
#vos-droits #soutien-specifique .soutien-container .soutien i {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
}
#vos-droits #soutien-specifique .soutien-container .soutien h3 {
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#vos-droits #soutien-specifique .soutien-container .soutien h3:after {
  margin: 20px auto 0;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}

#outils .section {
  padding: 50px;
}
#outils .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#outils .section h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#outils #menu-outils {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 20px;
}
@media screen and (max-width: 850px) {
  #outils #menu-outils {
    grid-template-columns: 1fr;
  }
}
#outils #menu-outils .left-bar-outils ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 850px) {
  #outils #menu-outils .left-bar-outils ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    margin: 0;
    height: 100%;
  }
}
@media screen and (max-width: 750px) {
  #outils #menu-outils .left-bar-outils ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#outils #menu-outils .left-bar-outils ul li {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  list-style: none;
  border: 1px solid #f1f1f1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: url(../img/cursor-hover.ico), pointer;
}
@media screen and (max-width: 850px) {
  #outils #menu-outils .left-bar-outils ul li {
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 750px) {
  #outils #menu-outils .left-bar-outils ul li {
    padding: 10px;
  }
}
#outils #menu-outils .left-bar-outils ul li:first-of-type {
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 850px) {
  #outils #menu-outils .left-bar-outils ul li:first-of-type {
    border-radius: 10px 0 0 10px;
  }
}
#outils #menu-outils .left-bar-outils ul li:last-of-type {
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 850px) {
  #outils #menu-outils .left-bar-outils ul li:last-of-type {
    border-radius: 0 10px 10px 0;
  }
}
#outils #menu-outils .left-bar-outils ul li:hover {
  background: linear-gradient(135deg, #b80000, #8b0000);
  color: #fff;
}
#outils #menu-outils .outils-container #tous-les-outils,
#outils #menu-outils .outils-container #outils-syndicaux,
#outils #menu-outils .outils-container #fiches-infos,
#outils #menu-outils .outils-container #affiches,
#outils #menu-outils .outils-container #dossiers,
#outils #menu-outils .outils-container #tracts,
#outils #menu-outils .outils-container #les-essentiels {
  display: none;
  -webkit-animation: fadeIn 1s linear;
          animation: fadeIn 1s linear;
}
#outils #menu-outils .outils-container #tous-les-outils .container-docs,
#outils #menu-outils .outils-container #outils-syndicaux .container-docs,
#outils #menu-outils .outils-container #fiches-infos .container-docs,
#outils #menu-outils .outils-container #affiches .container-docs,
#outils #menu-outils .outils-container #dossiers .container-docs,
#outils #menu-outils .outils-container #tracts .container-docs,
#outils #menu-outils .outils-container #les-essentiels .container-docs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 810px) {
  #outils #menu-outils .outils-container #tous-les-outils .container-docs,
  #outils #menu-outils .outils-container #outils-syndicaux .container-docs,
  #outils #menu-outils .outils-container #fiches-infos .container-docs,
  #outils #menu-outils .outils-container #affiches .container-docs,
  #outils #menu-outils .outils-container #dossiers .container-docs,
  #outils #menu-outils .outils-container #tracts .container-docs,
  #outils #menu-outils .outils-container #les-essentiels .container-docs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 590px) {
  #outils #menu-outils .outils-container #tous-les-outils .container-docs,
  #outils #menu-outils .outils-container #outils-syndicaux .container-docs,
  #outils #menu-outils .outils-container #fiches-infos .container-docs,
  #outils #menu-outils .outils-container #affiches .container-docs,
  #outils #menu-outils .outils-container #dossiers .container-docs,
  #outils #menu-outils .outils-container #tracts .container-docs,
  #outils #menu-outils .outils-container #les-essentiels .container-docs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  #outils #menu-outils .outils-container #tous-les-outils .container-docs,
  #outils #menu-outils .outils-container #outils-syndicaux .container-docs,
  #outils #menu-outils .outils-container #fiches-infos .container-docs,
  #outils #menu-outils .outils-container #affiches .container-docs,
  #outils #menu-outils .outils-container #dossiers .container-docs,
  #outils #menu-outils .outils-container #tracts .container-docs,
  #outils #menu-outils .outils-container #les-essentiels .container-docs {
    grid-template-columns: 1fr;
  }
}
#outils #menu-outils .outils-container #tous-les-outils .container-docs a,
#outils #menu-outils .outils-container #outils-syndicaux .container-docs a,
#outils #menu-outils .outils-container #fiches-infos .container-docs a,
#outils #menu-outils .outils-container #affiches .container-docs a,
#outils #menu-outils .outils-container #dossiers .container-docs a,
#outils #menu-outils .outils-container #tracts .container-docs a,
#outils #menu-outils .outils-container #les-essentiels .container-docs a {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
#outils #menu-outils .outils-container #tous-les-outils .container-docs a:hover,
#outils #menu-outils .outils-container #outils-syndicaux .container-docs a:hover,
#outils #menu-outils .outils-container #fiches-infos .container-docs a:hover,
#outils #menu-outils .outils-container #affiches .container-docs a:hover,
#outils #menu-outils .outils-container #dossiers .container-docs a:hover,
#outils #menu-outils .outils-container #tracts .container-docs a:hover,
#outils #menu-outils .outils-container #les-essentiels .container-docs a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#outils #menu-outils .outils-container #tous-les-outils .container-docs a:hover img,
#outils #menu-outils .outils-container #outils-syndicaux .container-docs a:hover img,
#outils #menu-outils .outils-container #fiches-infos .container-docs a:hover img,
#outils #menu-outils .outils-container #affiches .container-docs a:hover img,
#outils #menu-outils .outils-container #dossiers .container-docs a:hover img,
#outils #menu-outils .outils-container #tracts .container-docs a:hover img,
#outils #menu-outils .outils-container #les-essentiels .container-docs a:hover img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
#outils #menu-outils .outils-container #tous-les-outils .container-docs a img,
#outils #menu-outils .outils-container #outils-syndicaux .container-docs a img,
#outils #menu-outils .outils-container #fiches-infos .container-docs a img,
#outils #menu-outils .outils-container #affiches .container-docs a img,
#outils #menu-outils .outils-container #dossiers .container-docs a img,
#outils #menu-outils .outils-container #tracts .container-docs a img,
#outils #menu-outils .outils-container #les-essentiels .container-docs a img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

#faq .questions-answers {
  margin: 50px;
  padding: 50px;
  background: #f1f1f1;
  border-radius: 10px;
}
#faq .questions-answers .question-item {
  border-bottom: 1px solid #8b0000;
}
#faq .questions-answers .question-item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: url(../img/cursor-hover.ico), pointer;
}
#faq .questions-answers .question-item .question h2 {
  font-weight: normal;
  font-family: "poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  text-align: left;
  font-size: 1rem;
  color: #000;
  padding: 20px;
}
#faq .questions-answers .question-item .answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
#faq .questions-answers .question-item .answer p {
  margin: 0 20px 20px;
  padding: 0 20px;
  text-align: justify;
  font-size: 0.9rem;
}
#faq .questions-answers .question-item .answer p a {
  font-size: 0.9rem;
}
#faq .questions-answers .question-item .fa-chevron-down {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#nous-contacter .section {
  padding: 50px;
}
#nous-contacter .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#nous-contacter .section h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#nous-contacter #map {
  padding: 0;
}
#nous-contacter #map iframe {
  width: 100%;
}
#nous-contacter #infos-contact {
  display: grid;
  grid-template-columns: 30% 70%;
  padding: 0 50px 70px;
  gap: 20px;
}
@media screen and (max-width: 1010px) {
  #nous-contacter #infos-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 665px) {
  #nous-contacter #infos-contact {
    grid-template-columns: 1fr;
  }
}
#nous-contacter #infos-contact h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
#nous-contacter #infos-contact h2:after {
  margin: 20px auto 0px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#nous-contacter #infos-contact .item-contact {
  border: 3px solid #8b0000;
  padding: 20px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#nous-contacter #infos-contact .item-contact .flex-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#nous-contacter #infos-contact .item-contact .flex-div .icones-contact a {
  display: block;
}
#nous-contacter #infos-contact .item-contact .flex-div .icones-contact a:first-of-type {
  padding-bottom: 20px;
}
#nous-contacter #infos-contact .item-contact .flex-div .icones-contact a i {
  color: #8b0000;
}
#nous-contacter #infos-contact .left-bar {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1Fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
#nous-contacter #infos-contact .right-bar form {
  width: 100%;
}
#nous-contacter #infos-contact .right-bar form input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #f1f1f1;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#nous-contacter #infos-contact .right-bar form input:active, #nous-contacter #infos-contact .right-bar form input:focus, #nous-contacter #infos-contact .right-bar form input:hover {
  outline: none;
  border-bottom: 1px solid #8b0000;
}
#nous-contacter #infos-contact .right-bar form textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #f1f1f1;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#nous-contacter #infos-contact .right-bar form textarea:active, #nous-contacter #infos-contact .right-bar form textarea:focus, #nous-contacter #infos-contact .right-bar form textarea:hover {
  outline: none;
  border: 1px solid #8b0000;
}

#je-souhaite-adherer .intro {
  padding: 0;
}
#je-souhaite-adherer .section {
  padding: 20px 50px;
}
#je-souhaite-adherer .section .selection-container {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 555px) {
  #je-souhaite-adherer .section .selection-container {
    grid-template-columns: 1fr;
  }
}
#je-souhaite-adherer .section .selection-container a .selection-item {
  background: url(../img/hero.webp) center/cover;
  height: 250px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#je-souhaite-adherer .section .selection-container a .selection-item div {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, rgba(184, 0, 0, 0.7), rgba(139, 0, 0, 0.7));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: url(../img/cursor-hover.ico), pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
#je-souhaite-adherer .section .selection-container a .selection-item div:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #b80000, #8b0000);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#je-souhaite-adherer .section .selection-container a .selection-item div h2 {
  color: #fff;
}

#adhesion .section {
  padding: 0px 50px 20px;
}
#adhesion .adhesion-form {
  padding: 0 50px 70px;
}
#adhesion .adhesion-form form {
  margin: 0 auto;
  text-align: left;
  border-radius: 10px;
  background: #f1f1f1;
  padding: 50px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 555px) {
  #adhesion .adhesion-form form {
    text-align: center;
  }
}
#adhesion .adhesion-form form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 555px) {
  #adhesion .adhesion-form form div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#adhesion .adhesion-form form div input {
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 1rem;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000;
  border-radius: 3px;
}
#adhesion .adhesion-form form div input:active, #adhesion .adhesion-form form div input:focus, #adhesion .adhesion-form form div input:hover {
  outline: none;
  border-bottom: 1px solid #8b0000;
}
#adhesion .adhesion-form form button {
  margin-top: 30px;
  cursor: url(../img/cursor-hover.ico), pointer;
}
@media screen and (max-width: 555px) {
  #adhesion .adhesion-form form button {
    margin: 30px auto;
  }
}
#adhesion .adhesion-form form input[type=checkbox] {
  width: auto;
}
@media screen and (max-width: 555px) {
  #adhesion .adhesion-form form input[type=checkbox] {
    width: 100%;
    margin-bottom: 10px;
  }
}
#adhesion .adhesion-form form p {
  display: block;
  margin-left: 10px;
}
@media screen and (max-width: 555px) {
  #adhesion .adhesion-form form p {
    text-align: center;
  }
}

#page-avantages-adhesion .intro {
  padding: 50px 50px 10px;
}
#page-avantages-adhesion .section {
  padding: 20px 50px 10px;
}
#page-avantages-adhesion .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#page-avantages-adhesion .section h2:after {
  margin-top: 20px;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#page-avantages-adhesion .section p {
  text-align: left;
  padding-bottom: 30px;
}
#page-avantages-adhesion .section ul {
  padding-bottom: 30px;
}
#page-avantages-adhesion .section ul li {
  text-align: left;
  list-style-position: inside;
}

#fiches-infos .intro {
  padding: 50px 50px 10px;
}
#fiches-infos .section {
  padding: 0px 50px 50px;
}
#fiches-infos .section h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
#fiches-infos .section h2:after {
  margin: 20px auto;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#fiches-infos .section p {
  text-align: left;
  padding-bottom: 30px;
}
#fiches-infos .section ul {
  padding-bottom: 30px;
}
#fiches-infos .section ul li {
  text-align: left;
  list-style-position: inside;
}
#fiches-infos #types-elus {
  display: grid;
  gap: 20px;
}
#fiches-infos #types-elus div {
  padding: 50px;
  background: #f1f1f1;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#fiches-infos #types-elus div h3 {
  color: #8b0000;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
#fiches-infos #types-elus div h3:after {
  margin: 20px auto;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}
#fiches-infos #types-elus div p {
  text-align: justify;
  padding-bottom: 20px;
}
#fiches-infos #types-elus div ul {
  padding-bottom: 20px;
}
#fiches-infos #types-elus div ul li {
  text-align: justify;
}
#fiches-infos #types-elus div button {
  margin: 30px auto 0;
  width: 300px;
}
#fiches-infos .cssct {
  width: 300px;
}
#fiches-infos .types-elus2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 950px) {
  #fiches-infos .types-elus2 {
    grid-template-columns: 1fr;
  }
}
#fiches-infos .types-elus3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1339px) {
  #fiches-infos .types-elus3 {
    grid-template-columns: 1fr;
  }
}
#fiches-infos #ressources h2 {
  color: #8b0000;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
#fiches-infos #ressources h2:after {
  margin: 20px 0 0 0;
  display: block;
  content: "   ";
  height: 1px;
  width: 50px;
  border-top: 3px solid #8b0000;
}/*# sourceMappingURL=index.css.map */