@charset "UTF-8";
/*
	PUBLIC
	Importe tous les styles de la partie publique du site
*/
/*
    MIXINS
*/
/**
 * Liste des breakpoints
 */
/**
 * Gestion des breakpoints
 */
/**
 * Adaptation responsive des tailles de police
 */
/*
	GLOBAL
	Feuille de style générale
*/
/*-----------------------------------------------------------------------
  == Reset
----------------------------------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/*-----------------------------------------------------------------------
  == Mise en page
----------------------------------------------------------------------- */
.wrap {
  margin: 0 auto;
  max-width: var(--wp--style--global--content-size);
}

.wrap--small {
  max-width: 760px;
}

.wrap--wide {
  max-width: var(--wp--style--global--wide-size);
}

.page__head {
  padding: 0 var(--wp--style--root--padding-right) 30px var(--wp--style--root--padding-left);
}
.single-program .page__head {
  background: var(--wp--preset--color--pinetree);
}
.page .page__head, .search-results .page__head {
  padding-bottom: 0;
}

.page__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
.page__back a {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.5192307692rem + 0.7692307692vw, 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  color: black;
}
.single-program .page__back a {
  color: white;
}
.page__back figure {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 0;
  background: black;
  -webkit-transition: 0.2s ease background;
  transition: 0.2s ease background;
}
.page__back figure svg {
  fill: var(--wp--preset--color--mint);
  -webkit-transition: 0.2s ease fill;
  transition: 0.2s ease fill;
}
.single-program .page__back figure {
  background-color: white;
}
.single-program .page__back figure svg {
  fill: black;
}
.page__back a:hover figure {
  background: var(--wp--preset--color--mint);
}
.page__back a:hover figure svg {
  fill: var(--wp--preset--color--pinetree);
}

.page__label {
  display: block;
  font-size: 1rem;
}

.page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 576px) {
  .page__title {
    gap: 30px;
  }
}
.single-program .page__title h1 {
  color: white;
}
.search-results .page__title h1 {
  font-weight: 500;
}
.search-results .page__title h1 span {
  font-weight: 700;
  color: var(--wp--preset--color--pinetree);
}

.page__picto {
  margin: 0;
  width: 50px;
}
@media (min-width: 576px) {
  .page__picto {
    width: 75px;
  }
}
.page__picto svg {
  fill: var(--wp--preset--color--pinetree);
}
.single-program .page__picto svg {
  fill: var(--wp--preset--color--mint);
}

.page__content {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .page__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.page__content > *:first-child {
  margin-top: 0;
}
.search-results .page__content {
  padding-left: var(--wp--style--root--padding-left);
  padding-right: var(--wp--style--root--padding-right);
}

/*-----------------------------------------------------------------------
  == Titres
----------------------------------------------------------------------- */
h1, h2, h3, h4 {
  text-wrap: balance;
}

/*-----------------------------------------------------------------------
  == Listes
----------------------------------------------------------------------- */
ul[role=list], ol[role=list] {
  list-style: none;
}

/*-----------------------------------------------------------------------
  == Liens et boutons
----------------------------------------------------------------------- */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 25px;
  border-radius: 50px;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-wrap: balance;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.btn--green {
  background: var(--wp--preset--color--pinetree);
  color: white;
}
.btn--green:hover {
  background: white;
  color: var(--wp--preset--color--pinetree);
}

.btn--grey {
  background: var(--wp--preset--color--grey);
  color: black;
}
.btn--grey:hover {
  background: white;
  color: var(--wp--preset--color--pinetree);
}

.btn--yellow {
  background: var(--wp--preset--color--lemon);
  color: #524A4A;
}
.btn--yellow:hover {
  background: var(--wp--preset--color--pinetree);
  color: var(--wp--preset--color--lemon);
}

/*-----------------------------------------------------------------------
  == Médias
----------------------------------------------------------------------- */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/*-----------------------------------------------------------------------
  == Citations
----------------------------------------------------------------------- */
cite {
  display: block;
}

/*-----------------------------------------------------------------------
  == Formulaires
----------------------------------------------------------------------- */
input, button, textarea, select {
  font: inherit;
}

input {
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: none;
}

textarea:not([rows]) {
  min-height: 10em;
}

/*-----------------------------------------------------------------------
  == Tableaux
----------------------------------------------------------------------- */
table {
  margin-top: 30px;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
table th {
  font-weight: 700;
  background: #efefef;
}
table td {
  padding: 5px 10px;
}
table tbody td {
  border-top: 1px solid #ccc;
}

/*-----------------------------------------------------------------------
  == Utilitaires
----------------------------------------------------------------------- */
/* Masque le contenu visuellement */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*-----------------------------------------------------------------------
  == Fenêtre lightbox
----------------------------------------------------------------------- */
.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.6);
}

/*
    HEADER
*/
.header {
  position: relative;
  padding: 25px var(--wp--style--root--padding-right) 25px var(--wp--style--root--padding-left);
}
.home .header, .single-program .header {
  background: #004435;
}
.header.profile-open {
  background: var(--wp--preset--color--lemon);
}
.header.search-open {
  background: var(--wp--preset--color--grey);
}

.header__layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
}

@media (max-width: 479px) {
  .logo {
    width: 90px;
  }
}
@media (min-width: 480px) and (max-width: 991px) {
  .logo {
    width: 120px;
  }
}
.logo svg {
  display: block;
  fill: black;
}
.home .logo svg, .single-program .logo svg {
  fill: white;
}
.profile-open .logo svg, .search-open .logo svg {
  fill: var(--wp--preset--color--pinetree);
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__actions button, .header__actions > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 38px;
  height: 38px;
  border-radius: 46px;
  background: var(--wp--preset--color--lemon);
  border: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp--preset--color--pinetree);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (min-width: 480px) {
  .header__actions button, .header__actions > a {
    width: 46px;
    height: 46px;
  }
}
.header__actions button svg, .header__actions > a svg {
  fill: var(--wp--preset--color--pinetree);
  -webkit-transition: 0.2s ease fill;
  transition: 0.2s ease fill;
}
@media (max-width: 479px) {
  .header__actions button svg, .header__actions > a svg {
    max-width: 17px;
    max-height: 17px;
  }
}
.profile-open .header__actions button, .search-open .header__actions button, .profile-open .header__actions > a, .search-open .header__actions > a {
  background: var(--wp--preset--color--pinetree);
  color: var(--wp--preset--color--lemon);
}
.profile-open .header__actions button svg, .search-open .header__actions button svg, .profile-open .header__actions > a svg, .search-open .header__actions > a svg {
  fill: var(--wp--preset--color--lemon);
}
.profile-open .header__actions button:hover, .search-open .header__actions button:hover, .profile-open .header__actions > a:hover, .search-open .header__actions > a:hover {
  background: white !important;
  color: var(--wp--preset--color--pinetree) !important;
}
.profile-open .header__actions button:hover svg, .search-open .header__actions button:hover svg, .profile-open .header__actions > a:hover svg, .search-open .header__actions > a:hover svg {
  fill: var(--wp--preset--color--pinetree) !important;
}
.header__actions button:hover, .header__actions > a:hover {
  background: white;
  color: var(--wp--preset--color--pinetree);
}
.header__actions button:hover svg, .header__actions > a:hover svg {
  fill: var(--wp--preset--color--pinetree);
}
body:not(.home):not(.single-program) .header__actions:not(.profile-open):not(.search-open) button:hover, body:not(.home):not(.single-program) .header__actions:not(.profile-open):not(.search-open) > a:hover {
  background: var(--wp--preset--color--pinetree);
  color: var(--wp--preset--color--lemon);
}
body:not(.home):not(.single-program) .header__actions:not(.profile-open):not(.search-open) button:hover svg, body:not(.home):not(.single-program) .header__actions:not(.profile-open):not(.search-open) > a:hover svg {
  fill: var(--wp--preset--color--lemon);
}
.header__actions .header__actions__search {
  background: var(--wp--preset--color--grey);
}
.header__actions button {
  cursor: pointer;
}
.header__actions > a {
  width: auto;
  padding: 0 20px;
  text-decoration: none;
}
@media (min-width: 480px) {
  .header__actions > a {
    padding: 0 30px;
  }
  .header__actions > a:first-child {
    margin-right: 20px;
  }
}
.header__actions .js_toggle_profile svg:last-child {
  display: none;
}
.profile-open .header__actions .js_toggle_profile svg:first-child {
  display: none;
}
.profile-open .header__actions .js_toggle_profile svg:last-child {
  display: block;
}
.header__actions .js_toggle_search svg:last-child {
  display: none;
}
.search-open .header__actions .js_toggle_search svg:first-child {
  display: none;
}
.search-open .header__actions .js_toggle_search svg:last-child {
  display: block;
}

.header__actions__profile {
  position: relative;
  z-index: 100;
}

.nav-lang {
  position: relative;
  z-index: 11;
  text-transform: uppercase;
}
.nav-lang button {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  cursor: default;
}

.nav-lang__menu {
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  padding: 28px 0 8px;
  background: #D9D9D9;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  border-radius: 0 0 50px 50px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.nav-lang__menu a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp--preset--color--pinetree);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.nav-lang__menu a:hover {
  text-decoration-color: inherit;
}
.nav-lang:hover .nav-lang__menu {
  opacity: 1;
  visibility: visible;
}

.header__profile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 11;
  padding: 30px var(--wp--style--root--padding-right) 30px var(--wp--style--root--padding-left);
  background: var(--wp--preset--color--lemon);
  opacity: 0;
  visibility: hidden;
}
.profile-open .header__profile {
  opacity: 1;
  visibility: visible;
}

.header__profile__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 30px var(--wp--style--root--padding-right) 30px var(--wp--style--root--padding-left);
  background: var(--wp--preset--color--grey);
  opacity: 0;
  visibility: hidden;
}
.search-open .header__search {
  opacity: 1;
  visibility: visible;
}
.header__search form.searchwp-form .swp-flex--row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

.header__form__field {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
}
.header__form__field label {
  font-size: 1rem;
  font-size: clamp(1rem, 0.8846153846rem + 0.3846153846vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}
.header__form__field input[type=search], .header__form__field select {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #A2A2A2;
  border-radius: 5px;
  background: white;
  font-size: 1rem;
  color: #000;
}
.header__form__field input[type=search]::-webkit-input-placeholder, .header__form__field select::-webkit-input-placeholder {
  color: #414651;
}
.header__form__field input[type=search]::-moz-placeholder, .header__form__field select::-moz-placeholder {
  color: #414651;
}
.header__form__field input[type=search]:-ms-input-placeholder, .header__form__field select:-ms-input-placeholder {
  color: #414651;
}
.header__form__field input[type=search]::-ms-input-placeholder, .header__form__field select::-ms-input-placeholder {
  color: #414651;
}
.header__form__field input[type=search]::placeholder, .header__form__field select::placeholder {
  color: #414651;
}
.header__form__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 45px;
  font-weight: 700;
  color: #414651;
  background: white url(../img/select.svg) no-repeat 18px center;
}

.header__form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__form__actions button {
  cursor: pointer;
}
.header__form__actions button:only-child {
  margin-left: auto;
}

.header__notif {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 16px 0 rgba(46, 204, 113, 0.1);
          box-shadow: 0 2px 16px 0 rgba(46, 204, 113, 0.1);
  width: 300px;
  border-radius: 5px;
  padding: 30px var(--wp--style--root--padding-right) 30px var(--wp--style--root--padding-left);
  background: var(--wp--preset--color--grey);
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.6, 1), transform 0.4s cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.6, 1), transform 0.4s cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.6, 1);
}
.header__notif p {
  margin-top: 0;
  font-size: 1rem;
}
.header__notif::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 13px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid var(--wp--preset--color--grey);
}
.profile-open .header__notif, .search-open .header__notif {
  display: none;
}
.header__notif.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__notif__close {
  width: auto !important;
  padding: 0 20px;
}

/*
    FOOTER
*/
.shortcuts {
  background: #D9D9D9;
  position: sticky;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
}

.shortcuts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--wp--style--global--content-size);
  height: 85px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 992px) {
  .shortcuts__list {
    height: 120px;
  }
}
.shortcuts__list li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.shortcuts__list li figure {
  margin: 0;
}
.shortcuts__list li:not(:first-child) {
  border-left: 1px solid #CBCBCB;
}
.shortcuts__list li:not(:first-child):hover {
  border-color: transparent;
}
.shortcuts__list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: transparent;
  -webkit-transition: 0.2s ease background-color;
  transition: 0.2s ease background-color;
}
.shortcuts__list li:hover::after {
  background: #D9D9D9;
}
.shortcuts__list a {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.5192307692rem + 0.7692307692vw, 1rem);
  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;
  width: 100%;
  gap: 10px;
  padding: 10px 10px 0;
  text-align: center;
  text-decoration: none;
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wp--preset--color--pinetree);
  -webkit-transition: 0.2s ease background-color;
  transition: 0.2s ease background-color;
}
.shortcuts__list a:hover {
  background: var(--wp--preset--color--lightgrey);
}
@media (max-width: 991px) {
  .shortcuts__list a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
    font-weight: 400;
  }
  .shortcuts__list a figure {
    height: 30px;
  }
  .shortcuts__list a img {
    max-height: 30px;
  }
}

.contact-us {
  position: sticky;
  bottom: 0;
  background: var(--wp--preset--color--lemon);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  height: 60px;
  margin: 0;
  bottom: 85px;
}
@media (min-width: 992px) {
  .contact-us {
    bottom: 120px;
  }
}
.contact-us li {
  list-style: none;
}
.contact-us a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .contact-us a {
    padding: 0 30px;
  }
}
.contact-us a {
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  color: var(--wp--preset--color--pinetree);
  background: var(--wp--preset--color--mint);
  -webkit-transition: 0.3s ease background;
  transition: 0.3s ease background;
}
.contact-us a:hover {
  background: var(--wp--preset--color--lemon);
}

.footer {
  background: var(--wp--preset--color--pinetree);
}

.footer__top {
  padding: 30px var(--wp--style--root--padding-right) 30px var(--wp--style--root--padding-left);
}

.footer__top__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .footer__top__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .footer__social {
    gap: 60px;
  }
}
.footer__social p {
  margin: 0;
  font-weight: 700;
  color: white;
}
.footer__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.footer__social ul li {
  list-style: none;
}
.footer__social svg {
  fill: white;
  -webkit-transition: 0.3s ease fill;
  transition: 0.3s ease fill;
}
.footer__social a:hover svg {
  fill: var(--wp--preset--color--mint);
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
  margin: 0;
  padding: 0;
}
.footer__contact li {
  list-style: none;
}
.footer__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  color: var(--wp--preset--color--pinetree);
  background: var(--wp--preset--color--mint);
  -webkit-transition: 0.3s ease background;
  transition: 0.3s ease background;
}
.footer__contact a:hover {
  background: var(--wp--preset--color--lemon);
}

.footer__bottom {
  padding: 40px var(--wp--style--root--padding-right) 40px var(--wp--style--root--padding-left);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .footer__bottom__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.footer__logo p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.nav-footer {
  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;
  gap: 10px;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .nav-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.nav-footer li {
  list-style: none;
}
.nav-footer a {
  font-size: 0.75rem;
  color: white;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.nav-footer a:hover {
  text-decoration-color: inherit;
}

.footer__copyright > * {
  margin: 0;
  font-size: 0.75rem;
  color: white;
}

/*
    BLOCS
    Styles pour les blocs Gutenberg
*/
/* Alignements */
.content > *:not(.alignfull) {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

/* Image */
.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image.alignright {
  float: right;
  margin-left: var(--wp--style--block-gap);
  margin-bottom: var(--wp--style--block-gap);
}
.wp-block-image.alignleft {
  float: left;
  margin-right: var(--wp--style--block-gap);
  margin-bottom: var(--wp--style--block-gap);
}

/* Séparateurs */
.wp-block-separator {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Listes */
ul.wp-block-list, ol.wp-block-list {
  padding-left: 0;
}

ul.wp-block-list:not(.is-style-list-steps) li {
  margin: 0 0 0.5em 30px;
  list-style: disc;
}
ul.wp-block-list:not(.is-style-list-steps) li:last-child {
  margin-bottom: 0;
}
ul.wp-block-list:not(.is-style-list-steps) li ul.wp-block-list {
  padding: 10px 0 0 0;
}

ol.wp-block-list li {
  margin: 0 0 0.5em 30px;
}
ol.wp-block-list li::marker {
  font-weight: 700;
}
ol.wp-block-list li:last-child {
  margin-bottom: 0;
}
ol.wp-block-list li ul.wp-block-list {
  padding: 10px 0 0 0;
}

ol.wp-block-footnotes li {
  margin-left: 30px;
  font-size: 0.875rem;
  font-style: italic;
}

/* Boutons */
.wp-block-button .wp-block-button__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.wp-block-button .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--lemon);
  border-color: var(--wp--preset--color--lemon);
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 17px;
  height: 12px;
  background: url(../img/go-green.svg) no-repeat 0 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button .wp-block-button__link.is-style-outline:hover {
  background-color: var(--wp--preset--color--pinetree) !important;
  border-color: var(--wp--preset--color--pinetree) !important;
  color: white !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover::after, .wp-block-button .wp-block-button__link.is-style-outline:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* Titre personnalisés */
[class*=is-style-picto]::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-left: 15px;
  background-repeat: no-repeat;
}

.is-style-picto-accepted::after {
  background-image: url(../img/accepted.svg);
}

.is-style-picto-possible::after {
  background-image: url(../img/possible.svg);
}

.is-style-picto-forbidden::after {
  background-image: url(../img/forbidden.svg);
}

/* Liste */
.is-style-list-steps {
  counter-reset: list-counter;
}
.is-style-list-steps li {
  list-style: none;
  counter-increment: list-counter;
  position: relative;
  padding-left: 60px;
}
.is-style-list-steps li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: -5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  background-color: #F7F7F7;
  color: black;
}
.is-style-list-steps li:not(:last-child) {
  margin-bottom: 15px;
}

/* Formulaires */
div.gform_wrapper.gform-theme--foundation {
  --gf-form-gap-y: 30px;
  --gform-theme-form-row-gap: 30px;
  --gf-field-gap-x: 20px;
  --gform-theme-form-col-gap: 20px;
  --gform-theme-field-col-gap: 20px;
  --gf-ctrl-btn-font-size: 1.125rem;
}
div.gform_wrapper.gform-theme--foundation .gfield_label {
  font-weight: 600 !important;
}
div.gform_wrapper.gform-theme--foundation .gform-theme-button--control {
  border-radius: 100px !important;
}
div.gform_wrapper.gform-theme--foundation .gform_footer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
div.gform_wrapper.gform-theme--foundation .gform_footer .gform_button {
  border-radius: 100px !important;
  padding: 15px 25px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/*
    FORMULAIRES
    Styles pour le plugin Gravity Forms
*/
/*
    PAGINATION
    Styles pour le plugin WP PageNavi
*/
.nav-links {
  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-top: 75px;
  text-align: center;
  font-size: 1rem;
  color: #333;
}
.nav-links a, .nav-links span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: white;
  color: #333;
  border: 1px solid #ccc;
  margin-right: 5px;
  height: 30px;
  min-width: 30px;
  padding: 0 10px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.nav-links a:last-child, .nav-links span:last-child {
  margin-right: 0;
}
.nav-links a:hover, .nav-links a:focus {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
  color: white;
}
.nav-links span.current {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
  color: white;
}
.nav-links .prev, .nav-links .next {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 300;
  border-color: transparent;
}
@media (max-width: 575px) {
  .nav-links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav-links .next {
    margin-left: auto;
  }
  .nav-links a.page-numbers:not(.next):not(.prev), .nav-links span.current {
    display: none;
  }
}

/*
	FRONT PAGE
*/
/* Couverture */
.cover {
  padding: 0 var(--wp--style--root--padding-right) 45px var(--wp--style--root--padding-left);
  background: var(--wp--preset--color--pinetree);
}
@media (min-width: 576px) and (max-width: 991px) {
  .cover {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .cover {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cover__title {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9519230769rem + 0.5769230769vw, 1.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0;
  text-align: center;
  color: white;
}
.cover__title span {
  line-height: 1;
  color: var(--wp--preset--color--lemon);
}
.cover__title strong {
  font-size: 1.875rem;
  font-size: clamp(1.875rem, -1.2403846154rem + 10.3846153846vw, 5.25rem);
  line-height: 1;
}

.cover__video {
  margin-top: 30px;
  aspect-ratio: 40/25 !important;
}
@media (min-width: 576px) and (max-width: 991px) {
  .cover__video {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .cover__video {
    margin-top: 50px;
  }
}

/* Filtres */
.filters {
  padding: 25px var(--wp--style--root--padding-right) 25px var(--wp--style--root--padding-left);
  background: var(--wp--preset--color--mint);
}
.filters:has(.filters__layout.is-loading) {
  cursor: wait;
}

.filters__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (min-width: 576px) {
  .filters__layout {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .filters__layout {
    gap: 30px;
  }
}
.filters__layout.is-loading {
  opacity: 0.5;
}
.filters__layout.is-loading label, .filters__layout.is-loading select {
  pointer-events: none;
}
.filters__layout label {
  display: block;
  margin-bottom: 15px;
  padding-left: 20px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
@media (min-width: 992px) {
  .filters__layout label {
    padding-left: 30px;
  }
}
.filters__layout select {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  background: white url(../img/select.svg) no-repeat right 20px center;
  border: 1px solid #A2A2A2;
  border-radius: 10px;
  color: var(--wp--preset--color--pinetree);
}
@media (min-width: 992px) {
  .filters__layout select {
    padding-left: 30px;
    padding-right: 30px;
    background-position: right 30px center;
  }
}
.filters__layout select:focus {
  outline-color: var(--wp--preset--color--pinetree);
}

/* Programmes */
.programs {
  padding: 75px var(--wp--style--root--padding-right) 75px var(--wp--style--root--padding-left);
  background: white;
}

.programs__title {
  font-size: 1.375rem;
  font-size: clamp(1.375rem, -0.4711538462rem + 6.1538461538vw, 3.375rem);
  margin: 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  color: black;
}

.programs__text {
  text-align: center;
  font-weight: 700;
  color: var(--wp--preset--color--pinetree);
}

.programs__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 50px;
  min-height: 50px;
}
@media (max-width: 479px) {
  .programs__list {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 480px) {
  .programs__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .programs__list {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .programs__list {
    gap: 30px;
  }
}

.programs__loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column: 1/-1;
}

.programs__noresults {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column: 1/-1;
  margin: 0;
  padding: 20px;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--wp--preset--color--sauge);
  color: var(--wp--preset--color--pinetree);
}

.loop-program {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 1/1;
  padding: 20px;
  border-radius: 20px;
  background: #F7F7F7;
  border: 1px solid #A2A2A2;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (min-width: 576px) and (max-width: 991px) {
  .loop-program {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .loop-program {
    padding: 40px;
  }
}
.loop-program:hover {
  border-color: var(--wp--preset--color--pinetree);
}

.loop-program__picto {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loop-program__picto img {
  max-width: 80px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .loop-program__picto img {
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .loop-program__picto img {
    max-width: 120px;
  }
}

.loop-program__title {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media (min-width: 576px) {
  .loop-program__title {
    font-size: 1rem;
  }
}
.loop-program__title a {
  text-decoration: none;
  color: black;
}
.loop-program__title a::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loop-program__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: var(--wp--preset--color--mint);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (max-width: 575px) {
  .loop-program__link {
    width: 20px;
    height: 20px;
  }
  .loop-program__link svg {
    width: 10px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .loop-program__link {
    right: 30px;
    bottom: 25px;
  }
}
@media (min-width: 992px) {
  .loop-program__link {
    right: 40px;
    bottom: 35px;
  }
}
.loop-program__link svg {
  fill: var(--wp--preset--color--pinetree);
}
.loop-program:hover .loop-program__link {
  background: var(--wp--preset--color--pinetree);
}
.loop-program:hover .loop-program__link svg {
  fill: var(--wp--preset--color--mint);
}

/*
	RECHERCHE
*/
.results {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

.loop-search {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 20px 1fr;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 20px 90px 20px 20px;
  background: #F7F7F7;
  border: 1px solid #EBE5E5;
  border-radius: 10px;
  -webkit-transition: 0.2s ease border-color;
  transition: 0.2s ease border-color;
}
.loop-search:hover {
  border-color: var(--wp--preset--color--pinetree);
}

.loop-search__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loop-search__img svg {
  max-width: 50px;
  fill: var(--wp--preset--color--pinetree);
}
.loop-search--product .loop-search__img {
  aspect-ratio: 1/1;
}
.loop-search--product .loop-search__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.loop-search__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
}

.loop-search__title {
  font-size: 1rem;
  font-size: clamp(1rem, 0.8269230769rem + 0.5769230769vw, 1.1875rem);
  margin: 0;
  line-height: 1.4;
}
.loop-search__title a {
  text-decoration: none;
  color: black;
}
.loop-search__title a::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loop-search__type {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--wp--preset--color--pinetree);
}

.loop-search__excerpt {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.loop-search__icon {
  position: absolute;
  top: calc(50% - 15px);
  right: 30px;
  width: 30px;
  height: 30px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: black;
  -webkit-transition: 0.2s ease background;
  transition: 0.2s ease background;
}
.loop-search__icon svg {
  fill: var(--wp--preset--color--mint);
  -webkit-transition: 0.2s ease fill;
  transition: 0.2s ease fill;
}
.loop-search--document .loop-search__icon svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}