@font-face {
  font-family: "Nimbus";
  src: url("../fonts/Nimbus_Sans_Becker_PBla/nimbus_sans_becker_pbla_regular-webfont.woff2") format("woff2"),
      url("../fonts/Nimbus_Sans_Becker_PBla/nimbus_sans_becker_pbla_regular-webfont.woff") format('woff');
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.woff2") format("woff2");
  font-display: swap;
}
/*@font-face {
  font-family: "Luciole";
  src: url("../fonts/luciole/Luciole-Regular.woff2") format("woff2"),
      url("../fonts/luciole/Luciole-Regular.woff") format('woff');
  font-display: swap;
}*/


:root {
  --rose: #ef8a91;
  --vert: #32b5ac;
  --vert-fonce: #3f7652;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.ouvert {
  overflow-y: hidden;
}
body {
  max-width: 100%;
  overflow-y: hidden;
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.logo-titre, h1, h2 {
  font-family: 'Nimbus', sans-serif;
  text-transform: uppercase;
}
a {
  text-decoration: none;
  color: #000;
  transition: transform .5s;
  transform-origin: center;
}
a:not(.button).ext, .griffe a {
  position: relative;
  margin-right: 8px;
}
.contenu a.ext:hover, .partage a:hover {
  transform: rotateX(180deg);
}
a:not(.button).ext::after {
  display: inline-block;
  width: 7px;
  position: absolute;
  top: -5px;
  right: -9px;
}
a:not(.button).ext::after, .griffe a::after {
  content: url('../images/external-link-alt.svg');
}
.contenu a, .griffe a, .soutien a {
  display: inline-block;
  text-decoration: underline;
}
.contenu a:hover, .soutien a:hover {
  transform: translate(5px, 5px);
}
picture {
  display: flex;
}
img {
  max-width: 100%;
}
ol li {
  margin-bottom: 1rem;
}
ul li {
  position: relative;
  list-style-type: '\2192  ';
}
ul li ul li {
  list-style: circle;
}

.col-blanc {
  color: #fff;
  -webkit-text-stroke: #a3a3a3 1.3px;
}
.col-rose {
  color: var(--rose);
}
.evidence {
  box-shadow: inset var(--rose) 0px 0px;
  text-shadow : white 1px 1px 3px;
  display: inline;
  position: relative;
}
@keyframes surligne {
  to {
    box-shadow: inset var(--rose) 0px 2.4rem;
  }
}
.evidence.anim {
  animation: surligne 2s linear forwards;
}
.lettrine {
  display: inline-block;
}
.lettrine::first-letter {
  font-size: 6rem;
  font-weight: bold;
  color: var(--rose);
  float: left;
  margin: -2.5rem .5rem .5rem -1rem;
}
.lettrine.vert::first-letter {
  color: var(--vert)
}
.lettrine.petit::first-letter {
  font-size: 3rem;
  margin-left: -.75rem;
  margin-top: -1rem;
}
.firefox .lettrine::first-letter {
  margin-top: 0 !important;
}

/***********/
/* CONTENU */
/***********/
header, main, footer {
  width: 1800px;
  max-width: 100%;
  margin: auto;
}
main, footer {
  padding: 2rem;
}
.main-conteneur, .footer {
  position: relative;
  width: 840px;
  max-width: 100%;
  margin: auto;
}
.main-conteneur h1 {
  font-size: 3rem;
  line-height: 1.1;
}
.contenu {
  position: relative;
  padding: 20px;
}
.contenu, .img-conteneur {
  margin: 2rem 0;
}
.images-conteneur {
  text-align: center;
}
@keyframes before {
  from {
    transform: translate(-40px, 20px);
    opacity: 0;
  }
  to {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes after {
  from {
    transform: translate(40px, -20px);
    opacity: 0;
  }
  to {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.default/*:not(.manifeste)*/ .contenu::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10px;
  left: 5px;
  border: solid var(--rose);
  z-index: -1;
  animation: before 2s;
}
.default/*:not(.manifeste)*/ .contenu::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: -10px;
  border: solid var(--vert);
  z-index: -1;
  animation: after 2s;
}
/*.nous-soutenir .contenu p:nth-child(1) {
  margin-bottom: 4rem;
}*/

/* MANIFESTE */
/*.manifeste .contenu {
  background-color: var(--rose);
  box-shadow: 0 0 5px rgb(0 0 0 / .7);
  text-shadow : #fff 1px 1px 9px;
}*/


/* ACCUEIL */
.site-map, .sitemap-deco {
  width: 550px;
  max-width: 100%;
  margin: auto;
}
.site-map {
  margin-top: 3rem;
}
.site-map a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  font-family: 'Nimbus', sans-serif;
  font-size: 3.75rem;
  text-transform: uppercase;
  line-height: 1;
}
a.anim-droite {
  transform: translate(20%);
}
a.anim-gauche {
  transform: translate(-20%);
}
@keyframes animaccueil {
  to {
    transform: translate(0);
    opacity: 1;
  }
}
a.anim-droite, a.anim-gauche {
  opacity: 0;
  animation: animaccueil 2s 1s forwards;
}
.site-map a span, .site-map a:hover span {
  transition: all .5s linear;
}
.site-map a:hover .col-blanc {
  color: #000;
  -webkit-text-stroke: #fff 0px;
}
.site-map a:hover .col-noir {
  color: #fff;
  -webkit-text-stroke: #a3a3a3 1.3px;
}
.site-map a:hover .col-rose {
  color: var(--vert);
}
.accueil .contenu .evidence {
  font-size: 2rem;
  text-align: center;
}
.phone.accueil .contenu .evidence {
  font-size: 1.5rem;
}
.accueil .contenu .bouton-pdf p {
  font-size: 1rem !important;
}
.bouton-pdf {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.bouton-pdf a {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 5px 50px;
  color: #fff;
  background-color: var(--vert);
  border-radius: 25px;
  transition: all .2s;
}
.bouton-pdf a::after, .partage a::after {
  content: '' !important;
}
.bouton-pdf svg {
  height: 37px;
  width: 37px;
  margin-left: 10px;
  transition: width .5s;
}
.bouton-pdf a:hover {
  background-color: var(--vert-fonce);
  transform: none !important;
}
.bouton-pdf a:hover svg {
  width: 42px;
}

.sitemap-deco {
  position: relative;
  margin-top: 60px;
}
.sitemap-deco picture {
  position: absolute;
  top: -125px;
  right: 30px;
  opacity: 0;
}
.deco-barre {
  position: relative;
  width: 530px;
  max-width: 100%;
  height: 30px;
  background-color: var(--rose);
  border: solid var(--rose);
  transform: scale(0,0);
}
.deco-barre::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: solid;
}
@keyframes animdeco {
  to {
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
.sitemap-deco picture, .deco-barre {
  animation: animdeco 2s 1.5s forwards;
}


/* IMAGES */
.img-conteneur {
  position: relative;
  display: inline-flex;
  background-color: var(--vert);
  transition: all .5s;
}
.img-conteneur:nth-of-type(2), .image-conteneur-2 .img-conteneur {
  background-color: var(--rose);
}
.img-conteneur img {
  mix-blend-mode: multiply;
  filter: grayscale(.9) contrast(1.5);
  transition: filter .5s;
}
.img-conteneur:hover {
  background-color: #fff;
}
.img-conteneur:hover img {
  filter: grayscale(0) contrast(1);
}
.img-conteneur::after {
  content: '';
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border: solid var(--rose);
  box-sizing: inherit;
  transition: all 2s;
}
.img-conteneur:nth-of-type(2)::after, .image-conteneur-2 .img-conteneur::after {
  border-color: var(--vert);
}
.img-conteneur.anim::after {
  top: -15px;
  left: 15px;
}


/********/
/* MENU */
/********/
header {
  padding: 0 2rem;
}
header nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 1120px;
  max-width: 100%;
  margin: auto;
}
.logo {
  max-width: 100%;
  font-size: 2.625em;
}
.logo, header .menu-item {
  margin-right: 20px;
}
.logo a, .logo-mobile a {
  display: flex;
  align-items: center;
  width: 470px;
  max-width: 100%;
}
.logo img {
  width: 80px;
  margin-right: 10px;
}
.logo-mobile a {
  width: auto;
}
.logo-titre {
  display: inline-block;
}
.slogan {
  position: absolute;
  top: 55px;
  left: 90px;
  width: max-content;
  font-size: 11px;
}
.logo-mobile {
  display: none;
}
.logo-mobile img {
  width: 50px;
  margin-right: 10px;
}
header a, header .bouton {
  position: relative;
}
header.mobile {
  padding-top: 3rem;
}
header .menu-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  padding-left: 90px;
  margin: 0;
}
.accueil header .menu-list {
  display: none;
}
header.mobile .menu-list {
  padding-left: 0;
}
header p {
  margin: 0;
}
header .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  word-spacing: -.1rem;
}
header .menu-item.selected {
  text-decoration: underline;
}
.langswitcher {
  display: flex !important;
  justify-content: space-between;
  top: 0 !important;
  width: 100px;
  transform: none !important;
  margin: 0;
  padding: 0;
}
.langswitcher .active {
  text-decoration: none;
  padding: 5px;
  border: solid 1px;
  border-radius: 10px;
}
.langswitcher li {
  margin-left: 0 !important;
}
.mobile header li {
  padding: 5px 1rem;
}
.menu .partage {
  display: none;
}


/* MENU MOBILE */
.burger {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.custom-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
}
.menu .bar {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 5px;
  background-color: var(--col-bleu);
  border: solid 1px;
  border-radius: 5px;
}
.menu .bar:nth-of-type(2) {
  transform: translateY(-130%);
}
.menu .bar:nth-of-type(3) {
  transform: translateY(130%);
}
.fleche-retour {
  display: none;
  width: 60%;
}




/***********/
/* FOOTERS */
/***********/
.footer-contenu {
  font-size: 90%;
  text-align: center;
}
.soutiens-contenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.soutiens-contenu img {
  max-height: 65px;
  margin: .5rem;
}
.soutiens-contenu picture:nth-child(4) img {
  max-height: 45px;
}
.soutiens-contenu picture:nth-child(5) img {
  max-height: 40px;
}
.partenaires-texte {
  margin: 1rem 0 .5rem;
}
.partenaires-contenu {
  line-height: 1.2;
}
.footer-animation {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 130px;
  margin-bottom: 2rem;
}
.footer-animation picture {
  max-width: 25%;
}
.cache-anim {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: width .5s linear;
}
.cache-anim.anim {
  width: 0;
}
.partage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.partage a {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 8px;
}




.phone .burger {
  display: flex;
}


@media screen and (max-width: 456px) {
  main, footer {
    /*--vignette-W: 320px;*/
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 824px) {
  .menu {
    z-index: 99;
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    width: 50px;
    height: 50px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 1s;
    padding: 3rem 0 0;
  }
  .ouvert .menu.mobile {
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden scroll;
    padding: 1rem 0;
  }
  .petit.menu {
    --menu-mobile: 80px;
  }
  .burger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    flex-flow: column;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s .2s;
  }
  .ouvert header nav {
    opacity: 1;
  }
  .logo {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 25px;
  }
  .logo img {
    width: 50px;
  }
  .logo-mobile {
    display: block;
    position: relative;
    top: 1rem;
    left: 0;
    padding-left: 5px;
    font-size: 25px;
  }
  .slogan {
    top: 35px;
    left: 60px;
    max-width: calc(100% - 70px);
  }
  header ul:not(.langswitcher) {
    flex-direction: column;
  }
  .langswitcher {
    margin-left: 0 !important;
    margin-bottom: 3rem;
  }
  .accueil header .menu-list {
    display: flex;
  }
  header .menu-item {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .site-map {
    margin-top: 50px;
  }
  .site-map a {
    font-size: 2.375rem;
  }
  .sitemap-deco {
    margin-top: 40px;
  }
  .sitemap-deco picture {
    width: 120px;
    top: -80px;
    right: 10px;
  }
  .main-conteneur h1 {
    font-size: 2rem;
  }
  .menu .partage {
    display: flex;
    position: absolute;
    bottom: 2rem;
  }
}

@media screen and (max-width: 752px) {
  .footer-conteneur {
    justify-content: center;
  }
}

@media screen and (max-width: 700px) {
  .contact .form-conteneur, .module-contenu {
    flex-wrap: wrap;
  }
  .contact section a.button {
    margin-bottom: 2rem;
  }
  .module-contenu.droite {
    flex-flow: row-reverse wrap;
  }
  .module-contenu.gauche .texte {
    padding-left: 0;
  }
  .module-contenu.droite .texte {
    padding-right: 0;
  }
}

