@charset "UTF-8";
:root {
  --main-font: "Figtree", sans-serif;
  --xs: 575px;
  --sm: 767px;
  --md: 991px;
  --lg: 1199px;
  --xl: 1499px;
  --dark: #000000;
  --white: #FFFFFF;
  --gray1: #F2F5F8;
  --gray2: #E3E3E3;
  --gray3: #999999;
  --gray4: #333333;
  --text: #1A2634;
  --main-color:#6066EE;
  --main-color-light:#ABAEFC;
  --secondary-color:#00939D;
  --secondary-color-light:#C1E5E7;
  --secondary-color-dark:#3E4A83;
  --article-color: var(--main-color);
  --article-color-light: var(--main-color-light);
  --yellow: rgb(255, 208, 0);
  --green: rgb(128, 186, 39);
  --pink: rgb(230, 7, 129);
  --red: rgb(227, 32, 10);
  --blue: rgb(0, 139, 204);
  --violet: rgb(148, 128, 188);
  --yellow-opacity: rgba(255, 208, 0, 0.2);
  --green-opacity: rgba(128, 186, 39, 0.2);
  --pink-opacity: rgba(230, 7, 129, 0.2);
  --red-opacity: rgba(227, 32, 10, 0.2);
  --blue-opacity: rgba(0, 139, 204, 0.2);
  --violet-opacity: rgba(148, 128, 188, 0.2);
  --yellow-light: #FCEFB8;
  --green-light: #D1F49B;
  --pink-light: #EDB0D1;
  --red-light: #F7B7B0;
  --blue-light: #B2DFF4;
  --violet-light: #e2d6fa;
  --size-base: 1rem;
  /* 1 => 16px */
  /* 0,5 => 8px */
  /* 0,125 => 2px */
  --size15: calc(var(--size-base) + 12rem);
  --size14: calc(var(--size-base) + 8rem);
  --size13: calc(var(--size-base) + 5rem);
  --size12: calc(var(--size-base) + 3.6875rem);
  --size11: calc(var(--size-base) + 2.25rem);
  --size10: calc(var(--size-base) + 1.75rem);
  --size9: calc(var(--size-base) + 1.125rem);
  --size8: calc(var(--size-base) + 0.875rem);
  --size7: calc(var(--size-base) + 0.5rem);
  --size6: calc(var(--size-base) + 0.25rem);
  --size5: calc(var(--size-base) + 0.125rem);
  --size4: calc(var(--size-base) + 0rem);
  --size3: calc(var(--size-base) - 0.125rem);
  --size2: calc(var(--size-base) - 0.25rem);
  --size1: calc(var(--size-base) - 0.375rem);
  --radius1: 8px;
  --radius2: 20px;
  --space1: 20px;
  --space2: 40px;
  accent-color: var(--main-color);
  /* --article-color: var(--main-color); */
}

/*
!  Couleur par gabarit
:root body.node--type-actualite{
    --main-color :#dd8e1e;
}

:root body.node--type-page{
    --main-color :#44dd1e;
}
 */
.dark {
  color: var(--dark);
}

.white {
  color: var(--white);
}

.gray1 {
  color: var(--gray1);
}

.gray2 {
  color: var(--gray2);
}

.gray3 {
  color: var(--gray3);
}

.gray4 {
  color: var(--gray4);
}

.bg-gray1 {
  background: var(--gray1);
}

.bg-gray2 {
  background: var(--gray2);
}

.bg-gray3 {
  background: var(--gray3);
}

.bg-gray4 {
  background: var(--gray4);
}

.main-color {
  color: var(--main-color);
}

.main-color-light {
  color: var(--main-color-light);
}

.main-color-dark {
  color: var(--main-color-dark);
}

.secondary-color {
  color: var(--secondary-color);
}

.secondary-color-light {
  color: var(--secondary-color-light);
}

.secondary-color-dark {
  color: var(--secondary-color-dark);
}

.bg-main-color {
  background: var(--main-color);
}

.bg-main-color-light {
  background: var(--main-color-light);
}

.bg-main-color-dark {
  background: var(--main-color-dark);
}

.bg-secondary-color {
  background: var(--secondary-color);
}

.bg-secondary-color-light {
  background: var(--secondary-color-light);
}

.bg-secondary-color-dark {
  background: var(--secondary-color-dark);
}

.yellow {
  color: var(--yellow);
}

.green {
  color: var(--green);
}

.pink {
  color: var(--pink);
}

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

.violet {
  color: var(--violet);
}

.yellow-light {
  color: var(--yellow-light);
}

.green-light {
  color: var(--green-light);
}

.pink-light {
  color: var(--pink-light);
}

.red-light {
  color: var(--red-light);
}

.blue-light {
  color: var(--blue-light);
}

.violet-light {
  color: var(--violet-light);
}

.gradiant-yellow {
  background: -webkit-gradient(linear, left top, right top, from(var(--yellow)), to(var(--yellow-light)));
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-light) 100%);
}

.gradiant-green {
  background: -webkit-gradient(linear, left top, right top, from(var(--green)), to(var(--green-light)));
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}

.gradiant-pink {
  background: -webkit-gradient(linear, left top, right top, from(var(--pink)), to(var(--pink-light)));
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-light) 100%);
}

.gradiant-red {
  background: -webkit-gradient(linear, left top, right top, from(var(--red)), to(var(--red-light)));
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}

.gradiant-blue {
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), to(var(--blue-light)));
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}

.gradiant-violet {
  background: -webkit-gradient(linear, left top, right top, from(var(--violet)), to(var(--violet-light)));
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-light) 100%);
}

.transition, .page #main .programme .article-line article .article-content, .page #main .programme .article-line article .article-content:after, .page-retrospective .retrospective .retrospective-nav .slick-slide.article .year, .page-retrospective .retrospective .retrospective-nav .slick-slide.article .year span, .page-retrospective .retrospective .retrospective-liste article:before, #nav-icon span, .menu, .menu .menu-content, .menu .menu-content nav ul.niv1 > li a:not(.menu-cat):before, .menu .menu-content nav ul.niv1 > li > .menu-cat, .menu .menu-content nav ul.niv1 > li > .menu-cat .picto:after, .partage ul li a, .partage ul li a .svg-icon, article table tr, .bt-download .picto svg #fleche, .bloc-button, .onglet-content, .bloc-video:before, .bloc-video a:after {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/*
article > * + * {
  margin-top: 1em;
}*/
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
strong {
  font-weight: bold;
}

::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

::selection {
  background: var(--main-color);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.visuallyhidden {
  display: none !important;
}

.clear {
  clear: both;
}

.uppercase {
  text-transform: uppercase;
}

.ombre {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
  overflow: initial;
}

small {
  font-size: 70%;
}

iframe {
  max-width: 100%;
  width: 100%;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

sub,
sup {
  font-size: 60%;
}

img {
  display: block; /* image-rendering: -webkit-optimize-contrast; */
}

section {
  padding-bottom: var(--space2);
}
section:last-child {
  padding-bottom: 0;
}

.ajax-progress {
  display: none !important;
}

.visually-hidden {
  display: none !important;
}

.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container-xl {
  max-width: 1740px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.container-large {
  max-width: 1540px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.container-small {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.container-padding {
  padding: 0 100px;
}
@media (max-width: 991px) {
  .container-padding {
    padding: 0;
  }
}

@media (min-width: calc(991px + 1px)) {
  .no-padding-desktop {
    padding: 0 !important;
  }
}
a {
  display: inline-block;
  color: var(--main-color);
}

a.file {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  line-height: 1;
}

.media,
ul,
p {
  margin: 0 0 15px;
}
.media:last-child,
ul:last-child,
p:last-child {
  margin: 0 !important;
}

p + ul {
  margin-top: -7px !important;
}

.fw900 {
  font-weight: 900;
}

.fw600 {
  font-weight: 600;
}

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

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

.img-center {
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
  margin-left: 30px;
}

.float-left {
  float: left;
  margin-right: 30px;
}

.visible-phone,
.hidden-desktop {
  display: none;
}
@media (max-width: 991px) {
  .visible-phone,
  .hidden-desktop {
    display: block;
  }
}

.visible-desktop,
.hidden-phone {
  display: block;
}
@media (max-width: 991px) {
  .visible-desktop,
  .hidden-phone {
    display: none;
  }
}

@media (min-width: calc(991px + 1px)) {
  .full-width {
    width: calc(100vw - 8.1px);
    position: relative;
    margin-left: calc((100vw - 100%) / -2);
  }
}
@media (max-width: 991px) {
  .full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.debug {
  display: none;
}

body.debug-active .debug {
  display: block;
}

.padding-right-50 {
  padding-right: 50px;
}

/*
!  GRID
*/
.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.gap-70 {
  gap: 70px;
}

.gap-80 {
  gap: 80px;
}

.gap-90 {
  gap: 90px;
}

.gap-100 {
  gap: 100px;
}

.line {
  display: grid;
  margin: 0;
  min-width: 0;
  /* grid-template-columns initialisation */
}
.line .left,
.line .right {
  margin-top: 0;
}
.line.example div {
  border: 1px solid var(--gray2);
  padding: 5px;
}
.line.line-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.line.line-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.line.line-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.line.line-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.line.line-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.line.line-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.line.line-1-1 {
  grid-template-columns: 1fr 1fr;
}
.line.line-1-1-1 {
  grid-template-columns: 1fr 1fr 1fr;
}
.line.line-1-1-2 {
  grid-template-columns: 1fr 1fr 2fr;
}
.line.line-1-1-3 {
  grid-template-columns: 1fr 1fr 3fr;
}
.line.line-1-2 {
  grid-template-columns: 1fr 2fr;
}
.line.line-1-2-1 {
  grid-template-columns: 1fr 2fr 1fr;
}
.line.line-1-2-2 {
  grid-template-columns: 1fr 2fr 2fr;
}
.line.line-1-2-3 {
  grid-template-columns: 1fr 2fr 3fr;
}
.line.line-1-3 {
  grid-template-columns: 1fr 3fr;
}
.line.line-1-3-1 {
  grid-template-columns: 1fr 3fr 1fr;
}
.line.line-1-3-2 {
  grid-template-columns: 1fr 3fr 2fr;
}
.line.line-1-3-3 {
  grid-template-columns: 1fr 3fr 3fr;
}
.line.line-2-1 {
  grid-template-columns: 2fr 1fr;
}
.line.line-2-1-1 {
  grid-template-columns: 2fr 1fr 1fr;
}
.line.line-2-1-2 {
  grid-template-columns: 2fr 1fr 2fr;
}
.line.line-2-1-3 {
  grid-template-columns: 2fr 1fr 3fr;
}
.line.line-2-2 {
  grid-template-columns: 2fr 2fr;
}
.line.line-2-2-1 {
  grid-template-columns: 2fr 2fr 1fr;
}
.line.line-2-2-2 {
  grid-template-columns: 2fr 2fr 2fr;
}
.line.line-2-2-3 {
  grid-template-columns: 2fr 2fr 3fr;
}
.line.line-2-3 {
  grid-template-columns: 2fr 3fr;
}
.line.line-2-3-1 {
  grid-template-columns: 2fr 3fr 1fr;
}
.line.line-2-3-2 {
  grid-template-columns: 2fr 3fr 2fr;
}
.line.line-2-3-3 {
  grid-template-columns: 2fr 3fr 3fr;
}
.line.line-3-1 {
  grid-template-columns: 3fr 1fr;
}
.line.line-3-1-1 {
  grid-template-columns: 3fr 1fr 1fr;
}
.line.line-3-1-2 {
  grid-template-columns: 3fr 1fr 2fr;
}
.line.line-3-1-3 {
  grid-template-columns: 3fr 1fr 3fr;
}
.line.line-3-2 {
  grid-template-columns: 3fr 2fr;
}
.line.line-3-2-1 {
  grid-template-columns: 3fr 2fr 1fr;
}
.line.line-3-2-2 {
  grid-template-columns: 3fr 2fr 2fr;
}
.line.line-3-2-3 {
  grid-template-columns: 3fr 2fr 3fr;
}
.line.line-3-3 {
  grid-template-columns: 3fr 3fr;
}
.line.line-3-3-1 {
  grid-template-columns: 3fr 3fr 1fr;
}
.line.line-3-3-2 {
  grid-template-columns: 3fr 3fr 2fr;
}
.line.line-3-3-3 {
  grid-template-columns: 3fr 3fr 3fr;
}
@media (max-width: 991px) {
  .line {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.line > * {
  min-width: 0;
  min-height: 0;
}

/*
!  FLEX
*/
.flex-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*
!  COLOR
*/
.page-yellow {
  --article-color: var(--yellow);
  --article-color-light: var(--yellow-light);
  --article-color-opacity: var(--yellow-opacity);
}
.page-yellow h1:before {
  background: var(--yellow);
}
.page-yellow .bg-color-opacity {
  background: var(--yellow-opacity);
}
.page-yellow .bg-color {
  background: var(--yellow);
}
.page-yellow .bg-color-light {
  background: var(--yellow-light);
}
.page-yellow .color {
  color: var(--yellow);
}
.page-yellow .color-light {
  color: var(--yellow-light);
}
.page-yellow .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--yellow)), to(var(--yellow-light)));
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-light) 100%);
}
.page-yellow .outlined-text {
  -webkit-text-stroke: 1px var(--yellow);
  text-stroke: 1px var(--yellow);
}

.page-blue {
  --article-color: var(--blue);
  --article-color-light: var(--blue-light);
  --article-color-opacity: var(--blue-opacity);
}
.page-blue h1:before {
  background: var(--blue);
}
.page-blue .bg-color-opacity {
  background: var(--blue-opacity);
}
.page-blue .bg-color {
  background: var(--blue);
}
.page-blue .bg-color-light {
  background: var(--blue-light);
}
.page-blue .color {
  color: var(--blue);
}
.page-blue .color-light {
  color: var(--blue-light);
}
.page-blue .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), to(var(--blue-light)));
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}
.page-blue .outlined-text {
  -webkit-text-stroke: 1px var(--blue);
  text-stroke: 1px var(--blue);
}

.page-red {
  --article-color: var(--red);
  --article-color-light: var(--red-light);
  --article-color-opacity: var(--red-opacity);
}
.page-red h1:before {
  background: var(--red);
}
.page-red .bg-color-opacity {
  background: var(--red-opacity);
}
.page-red .bg-color {
  background: var(--red);
}
.page-red .bg-color-light {
  background: var(--red-light);
}
.page-red .color {
  color: var(--red);
}
.page-red .color-light {
  color: var(--red-light);
}
.page-red .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--red)), to(var(--red-light)));
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}
.page-red .outlined-text {
  -webkit-text-stroke: 1px var(--red);
  text-stroke: 1px var(--red);
}

.page-green {
  --article-color: var(--green);
  --article-color-light: var(--green-light);
  --article-color-opacity: var(--green-opacity);
}
.page-green h1:before {
  background: var(--green);
}
.page-green .bg-color-opacity {
  background: var(--green-opacity);
}
.page-green .bg-color {
  background: var(--green);
}
.page-green .bg-color-light {
  background: var(--green-light);
}
.page-green .color {
  color: var(--green);
}
.page-green .color-light {
  color: var(--green-light);
}
.page-green .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--green)), to(var(--green-light)));
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}
.page-green .outlined-text {
  -webkit-text-stroke: 1px var(--green);
  text-stroke: 1px var(--green);
}

.page-pink {
  --article-color: var(--pink);
  --article-color-light: var(--pink-light);
  --article-color-opacity: var(--pink-opacity);
}
.page-pink h1:before {
  background: var(--pink);
}
.page-pink .bg-color-opacity {
  background: var(--pink-opacity);
}
.page-pink .bg-color {
  background: var(--pink);
}
.page-pink .bg-color-light {
  background: var(--pink-light);
}
.page-pink .color {
  color: var(--pink);
}
.page-pink .color-light {
  color: var(--pink-light);
}
.page-pink .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--pink)), to(var(--pink-light)));
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-light) 100%);
}
.page-pink .outlined-text {
  -webkit-text-stroke: 1px var(--pink);
  text-stroke: 1px var(--pink);
}

.template-yellow {
  --article-color: var(--yellow);
  --article-color-light: var(--yellow-light);
  --article-color-opacity: var(--yellow-opacity);
}
.template-yellow h1:before {
  background: var(--yellow);
}
.template-yellow .bg-color-opacity {
  background: var(--yellow-opacity);
}
.template-yellow .bg-color {
  background: var(--yellow);
}
.template-yellow .bg-color-light {
  background: var(--yellow-light);
}
.template-yellow .color {
  color: var(--yellow);
}
.template-yellow .color-light {
  color: var(--yellow-light);
}
.template-yellow .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--yellow)), to(var(--yellow-light)));
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-light) 100%);
}
.template-yellow .outlined-text {
  -webkit-text-stroke: 1px var(--yellow);
  text-stroke: 1px var(--yellow);
}

.template-blue {
  --article-color: var(--blue);
  --article-color-light: var(--blue-light);
  --article-color-opacity: var(--blue-opacity);
}
.template-blue h1:before {
  background: var(--blue);
}
.template-blue .bg-color-opacity {
  background: var(--blue-opacity);
}
.template-blue .bg-color {
  background: var(--blue);
}
.template-blue .bg-color-light {
  background: var(--blue-light);
}
.template-blue .color {
  color: var(--blue);
}
.template-blue .color-light {
  color: var(--blue-light);
}
.template-blue .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), to(var(--blue-light)));
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}
.template-blue .outlined-text {
  -webkit-text-stroke: 1px var(--blue);
  text-stroke: 1px var(--blue);
}

.template-red {
  --article-color: var(--red);
  --article-color-light: var(--red-light);
  --article-color-opacity: var(--red-opacity);
}
.template-red h1:before {
  background: var(--red);
}
.template-red .bg-color-opacity {
  background: var(--red-opacity);
}
.template-red .bg-color {
  background: var(--red);
}
.template-red .bg-color-light {
  background: var(--red-light);
}
.template-red .color {
  color: var(--red);
}
.template-red .color-light {
  color: var(--red-light);
}
.template-red .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--red)), to(var(--red-light)));
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}
.template-red .outlined-text {
  -webkit-text-stroke: 1px var(--red);
  text-stroke: 1px var(--red);
}

.template-green {
  --article-color: var(--green);
  --article-color-light: var(--green-light);
  --article-color-opacity: var(--green-opacity);
}
.template-green h1:before {
  background: var(--green);
}
.template-green .bg-color-opacity {
  background: var(--green-opacity);
}
.template-green .bg-color {
  background: var(--green);
}
.template-green .bg-color-light {
  background: var(--green-light);
}
.template-green .color {
  color: var(--green);
}
.template-green .color-light {
  color: var(--green-light);
}
.template-green .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--green)), to(var(--green-light)));
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}
.template-green .outlined-text {
  -webkit-text-stroke: 1px var(--green);
  text-stroke: 1px var(--green);
}

.template-pink {
  --article-color: var(--pink);
  --article-color-light: var(--pink-light);
  --article-color-opacity: var(--pink-opacity);
}
.template-pink h1:before {
  background: var(--pink);
}
.template-pink .bg-color-opacity {
  background: var(--pink-opacity);
}
.template-pink .bg-color {
  background: var(--pink);
}
.template-pink .bg-color-light {
  background: var(--pink-light);
}
.template-pink .color {
  color: var(--pink);
}
.template-pink .color-light {
  color: var(--pink-light);
}
.template-pink .gradiant {
  background: -webkit-gradient(linear, left top, right top, from(var(--pink)), to(var(--pink-light)));
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-light) 100%);
}
.template-pink .outlined-text {
  -webkit-text-stroke: 1px var(--pink);
  text-stroke: 1px var(--pink);
}

/*
!  TITLE
*/
.title-container {
  position: relative;
}
.page-category .title-category {
  position: relative;
}
.page-category .title-category:before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  top: 45px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../src/images/cercles-blanc.png) center no-repeat;
  background-size: contain;
  width: 610px;
  height: 575px;
}

h1 {
  font-size: var(--size12);
  font-weight: 900;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}
h1:before {
  content: "";
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  display: block;
  width: 163px;
  height: 227px;
  position: absolute;
  left: -175px;
  top: -90px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 163.13 227.4'><path d='M118.56,162.34c-1.18,0-2.38-.3-3.48-.93-3.35-1.92-4.51-6.2-2.59-9.55l35-61c1.92-3.35,6.2-4.51,9.55-2.59,3.35,1.92,4.51,6.2,2.59,9.56l-35,61c-1.29,2.25-3.65,3.52-6.08,3.52Z'/><path d='M9.58,139.34c-2.41,0-4.76-1.25-6.06-3.48-1.94-3.34-.81-7.63,2.53-9.57l67-39c3.34-1.94,7.63-.81,9.57,2.53,1.95,3.34.81,7.63-2.53,9.57L13.09,138.39c-1.11.64-2.32.95-3.52.95Z'/><path d='M109.58,28.34c-.5,0-1.01-.05-1.51-.17l-59-13c-3.78-.83-6.16-4.57-5.33-8.34s4.57-6.16,8.34-5.33l59,13c3.78.83,6.16,4.57,5.33,8.34-.72,3.27-3.62,5.5-6.83,5.5Z'/><path d='M14.57,227.09c-.17,0-.34-.06-.48-.17-.32-.26-.36-.74-.1-1.06l59-71c.26-.32.74-.36,1.06-.1.32.26.36.74.1,1.06L15.15,226.82c-.15.18-.36.27-.58.27Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 163.13 227.4'><path d='M118.56,162.34c-1.18,0-2.38-.3-3.48-.93-3.35-1.92-4.51-6.2-2.59-9.55l35-61c1.92-3.35,6.2-4.51,9.55-2.59,3.35,1.92,4.51,6.2,2.59,9.56l-35,61c-1.29,2.25-3.65,3.52-6.08,3.52Z'/><path d='M9.58,139.34c-2.41,0-4.76-1.25-6.06-3.48-1.94-3.34-.81-7.63,2.53-9.57l67-39c3.34-1.94,7.63-.81,9.57,2.53,1.95,3.34.81,7.63-2.53,9.57L13.09,138.39c-1.11.64-2.32.95-3.52.95Z'/><path d='M109.58,28.34c-.5,0-1.01-.05-1.51-.17l-59-13c-3.78-.83-6.16-4.57-5.33-8.34s4.57-6.16,8.34-5.33l59,13c3.78.83,6.16,4.57,5.33,8.34-.72,3.27-3.62,5.5-6.83,5.5Z'/><path d='M14.57,227.09c-.17,0-.34-.06-.48-.17-.32-.26-.36-.74-.1-1.06l59-71c.26-.32.74-.36,1.06-.1.32.26.36.74.1,1.06L15.15,226.82c-.15.18-.36.27-.58.27Z'/></svg>");
}

.outlined-text {
  position: absolute;
  top: 0;
  left: 150px;
  font-size: var(--size14);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
}
@media (max-width: 991px) {
  .outlined-text {
    display: none;
  }
}

h2 {
  font-size: var(--size10);
  margin: 20px 0 10px;
  font-weight: 900;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--size7);
  margin: 25px 0 10px;
  font-weight: 900;
}
h3:first-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  h1 {
    font-size: var(--size9);
    margin-bottom: 30px;
  }
  h1:before {
    display: none;
  }
  h2 {
    font-size: var(--size8);
  }
  h3 {
    font-size: var(--size5);
  }
}
.shadow {
  text-transform: uppercase;
  color: #FFF;
  text-shadow: -1px -1px 0 var(--secondary-color), 1px -1px 0 var(--secondary-color), -1px 1px 0 var(--secondary-color), 1px 1px 0 var(--secondary-color);
}

/*
!  TEXT
*/
.size1 {
  font-size: var(--size1);
}

.size2 {
  font-size: var(--size2);
}

.size3 {
  font-size: var(--size3);
}

.size4 {
  font-size: var(--size4);
}

.size5 {
  font-size: var(--size5);
}

.size6 {
  font-size: var(--size6);
}

.size7 {
  font-size: var(--size7);
}

.size8 {
  font-size: var(--size8);
}

.size9 {
  font-size: var(--size9);
}

.size10 {
  font-size: var(--size10);
}

.chapo {
  font-size: var(--size6);
  color: var(--article-color);
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
  width: 80%;
}
@media (max-width: 991px) {
  .chapo {
    font-size: var(--size5);
    width: 100%;
    margin-bottom: 30px;
  }
}

/*
!  SEPARATOR
*/
hr {
  margin: 20px 0;
  background: var(--gray2);
}
hr.dotted {
  width: 70px;
  background: none;
  border: none;
  border-top: 3.5px dotted #000;
}
hr.dotted-large {
  background: none;
  border: none;
  border-top: 3px dotted #000;
  margin: 60px 0;
}

/*
!  BUTTON
*/
[class^=button-], .button {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  padding: 0 30px 0 10px;
  margin: 1rem 0;
  height: 60px;
  font-weight: bold;
  font-size: var(--size6);
  background-color: var(--main-color);
  color: var(--white);
}
[class^=button-]:before, .button:before {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  background: var(--text);
}
[class^=button-]:hover:before, .button:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
[class^=button-]:last-child, .button:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  [class^=button-], .button {
    font-size: var(--size5);
    height: 46px;
  }
}

.button-picto .picto {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--white);
  margin-right: 15px;
}
.button-picto .picto svg {
  width: 15px;
  height: 15px;
}
.button-picto .text {
  position: relative;
}
.button-picto.button-picto-outline {
  background: #FFF;
}
.button-picto.button-picto-outline .picto {
  background: var(--article-color);
}
.button-picto.button-picto-outline .picto svg {
  color: #FFF;
}
.button-picto.button-picto-outline .text {
  color: var(--article-color);
}
.button-picto.button-picto-outline:hover .picto {
  background: #FFF;
}
.button-picto.button-picto-outline:hover .picto svg {
  color: var(--article-color);
}
.button-picto.button-picto-outline:hover .text {
  color: #FFF;
}
@media (max-width: 991px) {
  .button-picto .picto {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    min-width: 30px;
  }
  .button-picto .picto svg {
    width: 15px;
    height: 15px;
  }
}

.button-picto.button-small {
  height: 45px;
  border-radius: 45px;
}
.button-picto.button-small .picto {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  min-width: 30px;
}
.button-picto.button-small .text {
  font-size: var(--size3);
}
@media (max-width: 991px) {
  .button-picto.button-small {
    padding: 0px 10px 0 8px;
    height: 40px;
    border-radius: 40px;
  }
  .button-picto.button-small .picto {
    width: 25px;
    height: 25px;
    margin-right: 8px;
    min-width: 25px;
  }
}

.button-secondary {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.button-secondary:hover {
  color: var(--secondary-color);
}

.button-outline {
  background-color: var(--white);
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.button-outline:hover {
  color: #FFF;
  background: var(--main-color);
}

.button-outline-secondary {
  background-color: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.button-outline-secondary:hover {
  color: #FFF;
  background: var(--secondary-color);
}

.page-yellow .button-picto .color,
.template-yellow .button-picto .color {
  color: var(--text);
}
.page-yellow .button-picto .text,
.template-yellow .button-picto .text {
  color: var(--text);
}
.page-yellow .button-picto:hover .text,
.template-yellow .button-picto:hover .text {
  color: #FFF;
}

.tag {
  padding: 8px 20px;
  border-radius: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #FFF;
  font-weight: bold;
  font-size: var(--size4);
}
@media (max-width: 991px) {
  .tag {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: var(--size3);
  }
}

a.fancybox {
  display: block;
}

.fancybox-container .fancybox-stage .fancybox-content {
  background: #FFF;
}
.fancybox-container .fancybox-caption__body .titre {
  font-weight: 900;
  font-size: var(--size6);
}
.fancybox-container .fancybox-caption__body .legende {
  font-size: var(--size4);
}

/*
!  ACCORDION
*/
#accordion {
  max-width: 800px;
  margin: 20px auto 40px;
}
#accordion h3 {
  cursor: pointer;
  background: var(--secondary-color);
  color: #FFF;
  font-weight: bold;
  font-size: var(--size4);
  padding: 10px 0px 10px 50px;
  margin: 0 0 3px 0;
  position: relative;
}
#accordion h3:before {
  content: "+";
  position: absolute;
  display: block;
  left: 10px;
  top: 0px;
  color: #FFF;
  font-weight: 200;
  font-size: 40px;
}
#accordion h3.ui-accordion-header-active:before {
  content: "‑";
  left: 15px;
}
#accordion .accordion-content {
  padding: 20px 0;
  text-align: left;
}

blockquote {
  margin: 60px 0 55px 40px;
  position: relative;
  font-weight: 900;
  font-style: italic;
  font-size: var(--size7);
  width: 70%;
}
blockquote:before {
  content: "";
  position: absolute;
  left: -70px;
  top: -30px;
  display: block;
  width: 65px;
  height: 57px;
  background: var(--article-color);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64.74' height='56.41' viewBox='0 0 64.74 56.41'><path d='M5.99,56.41C2.83,56.41.19,53.94,0,50.74c-.19-3.31,2.35-6.14,5.66-6.33l38.06-2.13c3.31-.19,6.14,2.35,6.33,5.66.19,3.31-2.35,6.14-5.66,6.33l-38.06,2.13c-.11,0-.23,0-.34,0Z'/><path d='M58.74,30.86c-1.34,0-2.69-.45-3.81-1.37L31.99,10.63c-2.56-2.1-2.93-5.89-.82-8.45,2.1-2.56,5.88-2.93,8.45-.82l22.94,18.86c2.56,2.1,2.93,5.89.82,8.45-1.19,1.44-2.91,2.19-4.64,2.19Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64.74' height='56.41' viewBox='0 0 64.74 56.41'><path d='M5.99,56.41C2.83,56.41.19,53.94,0,50.74c-.19-3.31,2.35-6.14,5.66-6.33l38.06-2.13c3.31-.19,6.14,2.35,6.33,5.66.19,3.31-2.35,6.14-5.66,6.33l-38.06,2.13c-.11,0-.23,0-.34,0Z'/><path d='M58.74,30.86c-1.34,0-2.69-.45-3.81-1.37L31.99,10.63c-2.56-2.1-2.93-5.89-.82-8.45,2.1-2.56,5.88-2.93,8.45-.82l22.94,18.86c2.56,2.1,2.93,5.89.82,8.45-1.19,1.44-2.91,2.19-4.64,2.19Z'/></svg>");
}
blockquote small {
  display: block;
  font-weight: normal;
  margin-top: 10px;
}
blockquote small strong {
  display: block;
}
@media (max-width: 991px) {
  blockquote {
    width: auto;
    margin: 50px 20px 45px 25px;
    font-size: var(--size6);
  }
  blockquote:before {
    left: -35px;
    top: -15px;
    width: 32px;
    height: 28px;
  }
}

.right blockquote {
  width: 100%;
  max-width: calc(100dvw - 70px);
}

ul.puce {
  margin: 0 0 15px;
}
ul.puce li {
  list-style-type: none;
  padding-left: 25px;
}
ul.puce li:before {
  position: absolute;
  margin: 8px 0 0 -25px;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  height: 7px;
  background-color: var(--article-color);
  -webkit-mask: url(../src/images/puce.svg);
  mask: url(../src/images/puce.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
}

/*
!  MENU
*/
body.menu_open {
  overflow: hidden;
}

#nav-icon {
  margin-left: 30px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  width: 18px;
  left: 10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #000;
}
#nav-icon span:nth-child(1) {
  top: 12px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 18px;
}
#nav-icon span:nth-child(4) {
  top: 24px;
}
#nav-icon.active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon.active span:nth-child(2) {
  -webkit-transform: rotate(45deg) translateX(0%);
  transform: rotate(45deg) translateX(0%);
  left: 25%;
}
#nav-icon.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateX(0%);
  transform: rotate(-45deg) translateX(0%);
  left: 25%;
}
#nav-icon.active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  width: 100dvw;
  height: 100dvh;
}
.menu .bg {
  background: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
}
.menu .menu-content {
  position: absolute;
  z-index: 1001;
  right: -600px;
  width: 600px;
  height: 100%;
  background: #FFF;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .menu .menu-content {
    width: 100%;
    right: -100%;
    overflow: scroll;
    padding: 20px;
  }
}
.menu .menu-content .menu-top {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu .menu-content .menu-top .bt-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  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;
  font-size: var(--size10);
  line-height: 1;
  background: #000;
  color: #FFF;
  font-family: "Courier New", monospace;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}
@media (max-width: 991px) {
  .menu .menu-content .menu-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.menu .menu-content .menu-bottom {
  height: 50px;
  margin-top: auto;
}
@media (max-width: 991px) {
  .menu .menu-content .menu-bottom {
    margin-top: 40px;
  }
}
.menu .menu-content nav ul.niv1 > li a:not(.menu-cat) {
  font-size: var(--size7);
  text-decoration: none;
  color: #000;
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.menu .menu-content nav ul.niv1 > li a:not(.menu-cat):before {
  content: "";
  display: block;
  width: 0;
  height: 8px;
  background: var(--yellow);
  border-radius: 5px;
  margin-right: 0px;
}
.menu .menu-content nav ul.niv1 > li > .menu-cat {
  font-size: var(--size8);
  line-height: 1.1;
  font-weight: 900;
  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;
  padding: 25px 0 0;
  cursor: pointer;
}
.menu .menu-content nav ul.niv1 > li > .menu-cat .picto:after {
  font-family: "Courier New", monospace;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  content: "+";
  color: #000;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  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;
  font-size: var(--size11);
  line-height: 1;
  font-weight: 500;
  left: 0;
}
.menu .menu-content nav ul.niv1 > li > .menu-cat.active .picto:after {
  content: "-";
  -webkit-transform: rotate(0) !important;
  transform: rotate(0) !important;
  -webkit-transition: none;
  transition: none;
}
.menu .menu-content nav ul.niv1 > li > .menu-cat:not(:hover) {
  color: #000;
}
.menu .menu-content nav ul.niv1 > li a.menu-cat {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-decoration: none;
}
.menu .menu-content nav ul.niv1 > li a.menu-cat .picto {
  display: none;
}
.menu .menu-content nav ul.niv1 > li:hover > a:not(.menu-cat):before {
  width: 30px;
  margin-right: 10px;
}
.menu .menu-content nav ul.niv1 > li:hover > .menu-cat .picto:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.menu .menu-content nav ul.niv1 > li .menu-inner {
  max-height: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  overflow: hidden;
}
.menu .menu-content nav ul.niv1 > li .menu-inner ul.niv2 li a {
  font-size: var(--size6);
  text-decoration: none;
  color: #000;
}
.menu .menu-content nav ul.niv1 > li .menu-inner ul.niv2 li a:hover:before {
  width: 30px;
  margin-right: 10px;
}
.menu .menu-content nav ul.niv1 > li .menu-inner.active {
  max-height: 500px;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}
.menu .menu-content nav ul.niv1 > li.template-blue li a:before {
  background: var(--blue);
}
.menu .menu-content nav ul.niv1 > li.template-green li a:before {
  background: var(--green);
}
.menu .menu-content nav ul.niv1 > li.template-pink li a:before {
  background: var(--pink);
}
.menu .menu-content nav ul.niv1 > li.template-red li a:before {
  background: var(--red);
}
@media (max-width: 991px) {
  .menu .menu-content nav {
    margin-top: 30px;
  }
  .menu .menu-content nav ul.niv1 > li a:not(.menu-cat) {
    font-size: var(--size6);
  }
  .menu .menu-content nav ul.niv1 > li a:not(.menu-cat):before {
    display: none !important;
  }
  .menu .menu-content nav ul.niv1 > li > .menu-cat {
    font-size: var(--size7);
    line-height: 1.1;
  }
  .menu .menu-content nav ul.niv1 > li > .menu-cat .picto:after {
    font-size: var(--size10);
  }
}
.menu.active {
  opacity: 1;
  pointer-events: all;
}
.menu.active .menu-content {
  right: 0;
}

/*
!  PAGINATE
*/
.pager-container nav.pager 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;
  list-style: none;
}
.pager-container nav.pager ul li a {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  width: 30px;
  height: 30px;
  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;
  line-height: 1;
}
.pager-container nav.pager ul li a:hover {
  background: var(--main-color-light);
  color: #FFF;
}
.pager-container nav.pager ul li.active a {
  background: var(--main-color);
  color: #FFF;
}
.pager-container nav.pager ul li:first-child a {
  border-bottom-left-radius: var(--radius1);
  border-top-left-radius: var(--radius1);
  width: 34px;
  padding-left: 4px;
}
.pager-container nav.pager ul li:last-child a {
  border-bottom-right-radius: var(--radius1);
  border-top-right-radius: var(--radius1);
  width: 34px;
  padding-right: 4px;
}

/*
!  SOCIAL
*/
.bloc-social .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.bloc-social .social li {
  margin: 0 5px;
}
.bloc-social .social li a {
  position: relative;
  background: none;
  width: 45px;
  height: 45px;
  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;
  border-radius: 50%;
  border: 1px solid #000;
}
.bloc-social .social li a svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
}
.bloc-social .social li a:hover svg {
  fill: var(--main-color);
}

.partage ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}
.partage ul li a {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  width: 30px;
  height: 30px;
  border-radius: 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;
  margin: 0 5px;
}
.partage ul li a .svg-icon {
  width: 20px;
  height: 20px;
  fill: #FFF;
}
.partage ul li a:hover {
  background: #FFF;
}
.partage ul li a:hover .svg-icon {
  fill: var(--main-color);
}
@media (max-width: 991px) {
  .partage {
    display: none;
  }
  .partage ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
}

/*
!  TABLE
*/
article table {
  width: 100%;
  margin: var(--space1) 0;
}
article table th {
  background: var(--main-color);
  font-weight: bold;
  color: var(--white);
}
article table th, article table td {
  padding: 10px 20px;
  border-bottom: 1px solid var(--gray1);
}
article table tr:hover {
  background: #F6F6F6;
}
article table tr td {
  vertical-align: top;
}

/*
!  LANG
*/
.lang-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.lang-download .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none !important;
}
.lang-download .lang a,
.lang-download .lang span {
  line-height: 1;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  margin-right: 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;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--size3);
}
.lang-download .lang span {
  background: var(--text);
  color: #FFF;
}

.bt-download {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
  text-decoration: none;
}
.bt-download .picto svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: #000;
}
.bt-download .picto svg #fleche {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.bt-download:hover .picto svg #fleche {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}
.bt-download .txt {
  padding-left: 10px;
  font-weight: bold;
  color: #000;
}
@media (max-width: 991px) {
  .bt-download {
    margin: 0 20px 0 0;
  }
}

/*
!  BLOC SLIDE
*/
.bloc-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.bloc-slide .bloc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  height: 420px;
  overflow: hidden;
}
.bloc-slide .bloc .photo {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3 linear;
  transition: all 0.3 linear;
  overflow: hidden;
  border-radius: 20px;
}
.bloc-slide .bloc .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.bloc-slide .bloc .bloc-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.6274509804);
  border-radius: 20px;
  padding: 15px;
}
.bloc-slide .bloc .bloc-text .name {
  font-weight: 800;
  font-size: var(--size5);
}
.bloc-slide .bloc .bloc-text .function {
  font-size: var(--size4);
}
.bloc-slide .bloc .bloc-text .links {
  -webkit-transition: all 0.3 linear;
  transition: all 0.3 linear;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.bloc-slide .bloc .bloc-text .links .button-picto {
  margin-bottom: 0;
}
.bloc-slide .bloc.bloc-large {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.bloc-slide .bloc.bloc-small .bloc-text {
  width: calc(100% - 30px);
}
.bloc-slide .bloc.bloc-small .bloc-text .links {
  display: none;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.bloc-slide .bloc .bt-slide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  width: 26px;
  height: 85px;
  left: -1px;
}
.bloc-slide .bloc.bloc-left .bt-slide {
  left: auto;
  right: -1px;
}
.bloc-slide .bloc.bloc-left .bt-slide {
  background: url(../src/images/bloc-slide-left.svg) no-repeat center right;
}
.bloc-slide .bloc.bloc-right .bt-slide {
  background: url(../src/images/bloc-slide-right.svg) no-repeat center right;
}
.bloc-slide .bloc.bloc-left.bloc-large .bt-slide, .bloc-slide .bloc.bloc-right.bloc-large .bt-slide {
  opacity: 0;
}
@media (max-width: 991px) {
  .bloc-slide {
    display: block;
  }
  .bloc-slide .bloc {
    margin-bottom: 20px;
  }
  .bloc-slide .bloc .bloc-text {
    width: calc(100% - 30px);
  }
  .bloc-slide .bloc .bloc-text .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
  .bloc-slide .bloc .bloc-text .links .button-picto {
    margin: 5px 0 0 0;
  }
  .bloc-slide .bloc .bt-slide {
    display: none;
  }
}

/*
!  MODAL
*/
body.modal-open {
  overflow: hidden;
}

.overlay {
  -webkit-animation: appear 0.5s forwards 0s;
  animation: appear 0.5s forwards 0s;
  opacity: 0;
  position: fixed;
  z-index: 10000000;
  top: 0;
  width: 100%;
}
.overlay .overlay-bg {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3764705882);
}
.overlay .overlay-inner {
  width: 1340px;
  position: absolute;
  z-index: 2;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.overlay .overlay-inner .overlay-close {
  cursor: pointer;
  position: absolute;
  z-index: 200;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../src/images/xmark.svg) center no-repeat #FFF;
  background-size: 12px;
  border: 2px solid var(--dark);
}
.overlay .overlay-inner .overlay-content {
  position: relative;
  background: #FFF;
}
.overlay .overlay-inner .overlay-content .modal-inner {
  position: relative;
  padding: 60px 60px 60px 550px;
  max-height: 60vh;
  overflow: scroll;
}
.overlay .overlay-inner .overlay-content .modal-inner .pre-title {
  font-size: var(--size7);
  font-weight: 900;
  margin-top: 20px;
}
.overlay .overlay-inner .overlay-content .modal-inner h2 {
  font-size: var(--size10);
  font-weight: 900;
  margin-bottom: 30px;
}
.overlay .overlay-inner .overlay-content .modal-inner h3 {
  margin-top: 35px;
}
.overlay .overlay-inner .overlay-content .modal-inner .name {
  font-size: var(--size10);
  font-weight: 300;
  color: var(--article-color);
  margin-top: 10px;
  margin-bottom: 0px;
}
.overlay .overlay-inner .overlay-content .modal-inner .function {
  color: var(--article-color);
  font-weight: 300;
  font-size: var(--size7);
  margin-bottom: 10px;
}
.overlay .overlay-inner .overlay-content .modal-inner.modal-base {
  padding: 80px;
  max-height: 100%;
}
.overlay .overlay-inner .overlay-content .modal-inner.modal-base video {
  width: 100%;
}
.overlay .overlay-inner .overlay-content .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 40%;
  max-height: 100%;
  height: 100%;
}
.overlay .overlay-inner .overlay-content .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  .overlay .overlay-inner {
    width: 100%;
    top: 60px;
  }
  .overlay .overlay-inner .overlay-content .modal-inner {
    padding: 30px !important;
    max-height: 80vh;
  }
  .overlay .overlay-inner .overlay-content .modal-inner .pre-title {
    font-size: var(--size6);
  }
  .overlay .overlay-inner .overlay-content .modal-inner h2 {
    font-size: var(--size8);
  }
  .overlay .overlay-inner .overlay-content .modal-inner .name {
    font-size: var(--size8);
  }
  .overlay .overlay-inner .overlay-content .modal-inner .function {
    font-size: var(--size6);
  }
  .overlay .overlay-inner .overlay-content .bg {
    display: none !important;
  }
}
.overlay.modal-edito-trystam-content .overlay-content .bg, .overlay.modal-edito-beaudet-content .overlay-content .bg {
  left: auto;
  right: 0;
}
.overlay.modal-edito-trystam-content .overlay-content .modal-inner, .overlay.modal-edito-beaudet-content .overlay-content .modal-inner {
  padding: 60px 550px 60px 60px;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-container {
  display: none;
}

/*
!  ONGLET
*/
.bloc-button {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 35px;
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  margin-top: 20px;
}
.bloc-button .gradiant {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
}
.bloc-button .picto {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 30px;
}
.bloc-button .picto svg {
  width: 25px;
  height: 25px;
}
.bloc-button .text {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-weight: bold;
  font-size: var(--size7);
  color: var(--text);
  position: relative;
}
.bloc-button:not(:hover) .picto svg {
  color: #FFF;
}
.bloc-button:hover .gradiant {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.bloc-button:hover .picto {
  background: #FFF;
}
.bloc-button:hover .text {
  color: #FFF;
}
.bloc-button.active {
  height: 0 !important;
  padding: 0 !important;
}
.bloc-button.bloc-button-small {
  height: 80px;
  padding: 0 25px;
  max-width: 480px;
  margin-top: 15px;
}
.bloc-button.bloc-button-small .picto {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.bloc-button.bloc-button-small .picto svg {
  width: 15px;
  height: 15px;
}
.bloc-button.bloc-button-small .text {
  font-size: var(--size5);
}
@media (max-width: 991px) {
  .bloc-button {
    padding: 10px 20px;
    height: auto;
  }
  .bloc-button .text {
    font-size: var(--size5);
  }
  .bloc-button .picto {
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  .bloc-button .picto svg {
    width: 15px;
    height: 15px;
  }
}

.onglet-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  width: 100%;
  border-radius: 20px;
}
.onglet-content .onglet-inner {
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}
.onglet-content .onglet-inner .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 50px;
  padding-right: 50px;
}
.onglet-content .onglet-inner .left h2 {
  font-size: var(--size10);
  font-weight: 900;
}
.onglet-content .onglet-inner .right {
  width: 50%;
}
@media (max-width: 991px) {
  .onglet-content .onglet-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .onglet-content .onglet-inner .left,
  .onglet-content .onglet-inner .right {
    padding: 0;
    width: 100%;
  }
  .onglet-content .onglet-inner .left h2,
  .onglet-content .onglet-inner .right h2 {
    font-size: var(--size8);
  }
}

.onglet-content.active {
  max-height: 700px;
}

/*
!  BLOC
*/
.bloc-margin {
  margin: 50px 0;
}

.bloc-blur {
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 35px;
  border-radius: 20px;
}
.bloc-blur:first-child {
  margin-top: 0;
}
.bloc-blur:last-child {
  margin-bottom: 0;
}
.bloc-blur h3 {
  font-size: var(--size8);
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bloc-blur h3 strong {
  font-weight: 900;
}
.bloc-blur h3:before {
  content: "";
  margin-right: 15px;
  margin-top: -5px;
  display: block;
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: var(--article-color);
  -webkit-mask: url(../src/images/arrow-h3.svg) no-repeat center;
  mask: url(../src/images/arrow-h3.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bloc-blur h3 small {
  font-size: var(--size5);
  font-weight: 400;
}
@media (max-width: 991px) {
  .bloc-blur {
    padding: 20px;
  }
  .bloc-blur h3 {
    font-size: var(--size7);
  }
  .bloc-blur h3:before {
    content: "";
    margin-right: 10px;
    margin-top: -5px;
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .bloc-blur h3 small {
    font-size: var(--size4);
  }
}

.bloc-blur + .line .bloc-blur {
  margin-top: 0;
}

.bloc-white {
  margin: 40px 0 0;
  background: #FFF;
  padding: 35px;
  border-radius: 20px;
  color: #000;
  text-align: center;
}
.bloc-white img {
  margin-left: auto;
  margin-right: auto;
}
.bloc-white hr {
  margin-left: auto;
  margin-right: auto;
}

.bloc-video {
  position: relative;
}
.bloc-video:before {
  pointer-events: none;
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  border-radius: 20px;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
.bloc-video figure {
  margin: 0;
  position: relative;
  z-index: 4;
}
.bloc-video a {
  margin: 40px 0;
  display: block;
  position: relative;
}
.bloc-video a:before {
  content: "";
  z-index: 10;
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #FFF;
  background: url(../src/images/picto-video.svg) center no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.bloc-video a:after {
  content: "";
  z-index: 9;
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--article-color);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  pointer-events: none;
}
.bloc-video:hover:before {
  opacity: 0.3;
}
.bloc-video:hover a:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 991px) {
  .bloc-video a:before {
    width: 80px;
    height: 80px;
    background-size: 30px;
  }
  .bloc-video a:after {
    width: 80px;
    height: 80px;
  }
}

.bloc-person {
  background: #FFF;
  border: 1px dashed #000;
  padding: 40px;
  margin-top: 40px;
}
.bloc-person .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.bloc-person .header img {
  border-radius: 50%;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .bloc-person {
    padding: 30px;
  }
  .bloc-person .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .bloc-person .header img {
    margin: 0 auto 15px;
  }
}

/*
!  FIGURE
*/
figure.picto {
  position: relative;
}
figure.picto:before {
  content: "";
  display: block;
  width: 264px;
  height: 250px;
  position: absolute;
  background: var(--article-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
}
figure.picto.picto-top-left:before {
  left: -140px;
  top: -110px;
}
figure.picto.picto-center-left:before {
  left: -140px;
  top: 30%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}
figure.picto.picto-bottom-left:before {
  left: -140px;
  bottom: -60px;
}
figure.picto.picto-top-right:before {
  right: -140px;
  top: -110px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
figure.picto.picto-center-right:before {
  right: -140px;
  top: 30%;
  -webkit-transform: scaleX(-1) translatey(-50%);
  transform: scaleX(-1) translatey(-50%);
}
figure.picto.picto-bottom-right:before {
  right: -140px;
  bottom: -60px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
figure.picto img {
  position: relative;
  border-radius: 20px;
}
figure.picto .bloc-content {
  position: relative;
}
@media (max-width: 991px) {
  figure.picto:before {
    display: none;
  }
}

.logo-circle {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #FFF;
  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;
  margin: 0 auto 50px;
}
.logo-circle:before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #000;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*
!  ANIM
*/
.anim-scroll-left {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}

.anim-scroll-right {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}

.anim-scroll-top {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

.anim-scroll-bottom {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.anim-scroll-delay-1 {
  -webkit-transition-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.anim-scroll-delay-2 {
  -webkit-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.anim-scroll-delay-3 {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.anim-scroll-delay-4 {
  -webkit-transition-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.anim {
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.anim.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

body {
  font-family: var(--main-font);
  font-size: var(--size5);
  font-style: normal;
  line-height: 1.3;
  color: var(--text);
  text-wrap: pretty; /* overflow: clip; */
}
body .pre-header .logo {
  position: absolute;
  top: 0;
  z-index: 101;
}
body .pre-header .logo a {
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 180px;
  height: 180px;
  background: #FFF;
}
@media (max-width: 991px) {
  body .pre-header .logo a {
    width: 120px;
    height: 120px;
  }
}
body #header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 0;
  -webkit-filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.2));
}
body #header .header-inner {
  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;
  height: 100px;
}
body #header .header-inner .lang-download {
  margin-left: auto;
}
@media (max-width: 991px) {
  body #header .header-inner {
    height: 60px;
  }
  body #header .header-inner .lang-download .bt-download {
    display: none;
  }
}
body #intro {
  height: 100dvh;
  position: relative;
}
body #intro.intro-full {
  height: calc(100dvh - 205px);
}
body #intro .bg {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
}
body #intro .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
body #intro video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
body #intro .container-small .intro-inner,
body #intro .container .intro-inner {
  padding: 200px 0;
  gap: 140px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 100dvh;
}
body #intro .container-small .intro-inner .left h1,
body #intro .container .intro-inner .left h1 {
  margin-bottom: 40px;
}
body #intro .container-small .intro-inner .right,
body #intro .container .intro-inner .right {
  position: relative;
}
body #intro .container-small .intro-inner .right img,
body #intro .container .intro-inner .right img {
  width: 100%;
  position: relative;
  border-radius: 20px;
}
body #intro .container-small .intro-inner .right:before,
body #intro .container .intro-inner .right:before {
  content: "";
  display: block;
  width: 264px;
  height: 250px;
  position: absolute;
  left: -130px;
  bottom: -60px;
  background: var(--article-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
  body #intro .container-small .intro-inner,
  body #intro .container .intro-inner {
    padding: 140px 0 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    height: auto;
    min-height: 1px;
  }
  body #intro .container-small .intro-inner .right:before,
  body #intro .container .intro-inner .right:before {
    display: none;
  }
}
@media (max-width: 991px) {
  body #intro {
    height: auto;
    padding-bottom: 0px;
  }
  body #intro video {
    aspect-ratio: 8/7;
  }
  body #intro .bg {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
body .shape-container {
  overflow: hidden;
  width: 100dvw;
  height: 240px;
  position: relative;
  margin-top: -150px;
}
body .shape-container .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3137254902);
  border-radius: 50%;
  -ms-flex-line-pack: center;
  align-content: center;
}
body .shape-container .arrow img {
  margin: auto;
  position: relative;
  -webkit-animation: 0.3s infinite alternate bound;
  animation: 0.3s infinite alternate bound;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
body .shape-container .shape {
  display: block;
  width: 2560px;
  height: 200px;
  top: 40px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../src/images/shape.svg);
  background-size: 100%;
}
body .shape-container.shape-page {
  margin: 70px 0 0 0;
}
body .shape-container.shape-page .arrow {
  background: var(--yellow);
}
body .shape-container.shape-page .arrow img {
  margin: auto;
}
body .shape-container.shape-page .shape {
  background: url(../src/images/shape-yellow.svg);
}
@-webkit-keyframes bound {
  from {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
@keyframes bound {
  from {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
@media (max-width: 991px) {
  body .shape-container {
    height: 115px;
    margin-top: -115px;
  }
  body .shape-container .shape {
    height: 115px;
  }
  body .shape-container .arrow {
    width: 60px;
    height: 60px;
    top: 10px;
  }
}
body #main .edito-inner {
  position: relative;
}
body footer {
  position: relative;
  z-index: 13;
  padding: 40px 0;
  background: #FFF;
}
body footer .footer-content {
  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;
}
body footer .footer-content .link-footer {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body footer {
    padding: 30px 0;
  }
  body footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.home #main {
  background: url(../src/images/home/fond-home-jaune.png) center 0 repeat-x;
  background-size: 100%;
  position: relative;
  width: 100dvw;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .home #main {
    margin-top: 0;
  }
}
.home #main h1:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  left: -130px;
  top: 0;
}
.home #main section.edito .edito-inner .line {
  gap: 100px;
}
@media (max-width: 991px) {
  .home #main section.edito .edito-inner {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}
.home #main section.links .w50 {
  width: 50%;
  margin: auto;
}
@media (max-width: 991px) {
  .home #main section.links .w50 {
    width: 100%;
  }
}
.home #main section.links .onglets {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .home #main section.links .gap-40 {
    gap: 0;
  }
}
.home #main section.onglets {
  margin-top: 50px;
  padding-bottom: 50px;
}
.home #main section.onglets:has(.template-blue .active) {
  background: url(../src/images/home/fond-home-bleu.png) center 0;
  background-size: 100%;
}
.home #main section.onglets:has(.template-green .active) {
  background: url(../src/images/home/fond-home-vert.png) center 0;
  background-size: 100%;
}
.home #main section.onglets:has(.template-pink .active) {
  background: url(../src/images/home/fond-home-rose.png) center 0;
  background-size: 100%;
}
.home #main section.onglets:has(.template-red .active) {
  background: url(../src/images/home/fond-home-rouge.png) center 0;
  background-size: 100%;
}
.page-yellow #main {
  background: url(../src/images/bg-yellow.png) center -400px repeat;
  background-size: 100%;
}

.page-blue #main {
  background: url(../src/images/bg-blue.png) center -400px repeat;
  background-size: 100%;
}

.page-green #main {
  background: url(../src/images/bg-green.png) center -400px repeat;
  background-size: 100%;
}

.page-red #main {
  background: url(../src/images/bg-red.png) center 0px repeat;
  background-size: 100%;
}

.page-pink #main {
  background: url(../src/images/bg-pink.png) center 0px repeat;
  background-size: 100%;
}

/*
!  Categories
*/
.page #main section {
  padding: 80px 0;
}
.page #main .programme {
  background: #FFF;
  padding-top: 0;
  overflow: hidden;
}
.page #main .programme h2 {
  margin-bottom: 30px;
}
.page #main .programme .article-line {
  margin: 0 -10px;
  position: relative;
}
.page #main .programme .article-line article {
  margin: 0 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 570px;
}
.page #main .programme .article-line article:before {
  content: "";
  opacity: 1;
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--article-color-opacity)), to(var(--article-color)));
  background: linear-gradient(180deg, var(--article-color-opacity) 0%, var(--article-color) 100%);
}
.page #main .programme .article-line article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page #main .programme .article-line article .article-content {
  top: 54%;
  position: absolute;
  padding: 30px 40px;
  height: 100%;
}
.page #main .programme .article-line article .article-content:after {
  opacity: 0;
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--article-color);
}
.page #main .programme .article-line article .article-content .title {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: var(--size8);
  line-height: 1.1;
  margin-bottom: 20px;
  height: 200px;
  display: table-cell;
  vertical-align: bottom;
}
.page #main .programme .article-line article .article-content .title strong {
  font-weight: 900;
}
.page #main .programme .article-line article .article-content .article-text {
  position: relative;
  z-index: 4;
  color: #FFF;
  font-size: var(--size6);
  opacity: 0;
  margin-bottom: 10px;
}
.page #main .programme .article-line article .article-content .button-picto {
  position: relative;
  z-index: 5;
  opacity: 0;
}
@media (max-width: 991px) {
  .page #main .programme .article-line article {
    height: 500px;
  }
  .page #main .programme .article-line article .article-content {
    padding: 20px;
    top: 60%;
  }
  .page #main .programme .article-line article .article-content .title {
    font-size: var(--size7);
    height: 160px;
  }
  .page #main .programme .article-line article .article-content .article-text {
    font-size: var(--size5);
  }
}
.page #main .programme .article-line article:hover .article-content {
  top: 0%;
}
.page #main .programme .article-line article:hover .article-content:after {
  opacity: 0.5;
}
.page #main .programme .article-line article:hover .article-content .article-text,
.page #main .programme .article-line article:hover .article-content .button-picto {
  opacity: 1;
}
.page #main .programme .article-line article:hover .article-content .title {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: auto;
}
.page #main .programme .article-line .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.page #main .programme .article-line .slick-arrow.slick-prev {
  left: -60px;
  margin-top: -20px;
  background: url(../src/images/arrow-button.svg) center no-repeat;
  background-size: 15px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.page #main .programme .article-line .slick-arrow.slick-next {
  right: -60px;
  background: url(../src/images/arrow-button.svg) center no-repeat;
  background-size: 15px;
}
.page #main .programme .article-line .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page #main .programme .article-line .slick-dots li {
  margin: 0 7px;
}
.page #main .programme .article-line .slick-dots li button {
  text-indent: -9999px;
  background: var(--article-color-light);
  border-radius: 10px;
  border: none;
  height: 10px;
  width: 45px;
}
.page #main .programme .article-line .slick-dots li.slick-active button {
  background: var(--article-color);
}
@media (max-width: 991px) {
  .page #main .programme .article-line .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page #main .questions {
  color: #FFF;
  padding: 0;
  overflow: hidden;
}
.page #main .questions .questions-inner {
  position: relative;
}
.page #main .questions .questions-inner article .flex-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page #main .questions .questions-inner article .flex-line .left {
  width: 400px;
}
.page #main .questions .questions-inner article .flex-line .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 1px;
  text-align: center;
  padding: 0 50px;
}
.page #main .questions .questions-inner article .flex-line .right .pre-title {
  font-size: var(--size7);
  font-weight: 900;
}
.page #main .questions .questions-inner article .flex-line .right h3 {
  font-size: var(--size10);
  font-weight: normal;
}
.page #main .questions .questions-inner article .flex-line .right .fucntion {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page #main .questions .questions-inner article .flex-line .right .desc {
  margin-bottom: 20px;
  width: 600px;
  margin: 0 auto 20px;
}
.page #main .questions .questions-inner article .flex-line .right .arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3137254902);
  border-radius: 50%;
  margin: 20px auto;
  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;
}
.page #main .questions .questions-inner article .flex-line .right .arrow img {
  width: 15px;
}
.page #main .questions .questions-inner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  border: 1px solid #FFF;
  border-radius: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.page #main .questions .questions-inner .slick-arrow.slick-prev {
  left: -40px;
  margin-top: -20px;
  background: url(../src/images/arrow-button-white.svg) center no-repeat;
  background-size: 15px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.page #main .questions .questions-inner .slick-arrow.slick-next {
  right: -40px;
  background: url(../src/images/arrow-button-white.svg) center no-repeat;
  background-size: 15px;
}
@media (max-width: 991px) {
  .page #main .questions .questions-inner .slick-arrow {
    display: none !important;
  }
}
.page #main .questions .questions-inner .slick-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page #main .questions .questions-inner .slick-dots li {
  margin: 0 7px;
}
.page #main .questions .questions-inner .slick-dots li button {
  text-indent: -9999px;
  background: var(--article-color-light);
  border-radius: 10px;
  border: none;
  height: 10px;
  width: 45px;
}
.page #main .questions .questions-inner .slick-dots li.slick-active button {
  background: var(--article-color);
}
@media (max-width: 991px) {
  .page #main .questions .questions-inner .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .page #main .questions .questions-inner {
    padding-bottom: 20px;
  }
  .page #main .questions .questions-inner article .flex-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page #main .questions .questions-inner article .flex-line .left {
    width: 200px;
    margin: 0 0 20px;
  }
  .page #main .questions .questions-inner article .flex-line .right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
    margin: 0 0 40px;
  }
  .page #main .questions .questions-inner article .flex-line .right .pre-title {
    font-size: var(--size6);
  }
  .page #main .questions .questions-inner article .flex-line .right h3 {
    font-size: var(--size8);
  }
  .page #main .questions .questions-inner article .flex-line .right .fucntion {
    width: 100%;
  }
  .page #main .questions .questions-inner article .flex-line .right .desc {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .page #main .slider {
    padding: 30px 0 60px;
  }
}
.page #main .slider .slider-inner .slick {
  margin-top: 60px;
  position: relative;
}
.page #main .slider .slider-inner .slick .slick-arrow {
  display: none !important;
}
.page #main .slider .slider-inner .slick article {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  width: 100%;
  padding: 40px 40px 80px;
  border-radius: 20px;
  overflow: hidden;
}
.page #main .slider .slider-inner .slick article .flex-line {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 150px;
}
.page #main .slider .slider-inner .slick article .flex-line .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 50px;
}
.page #main .slider .slider-inner .slick article .flex-line .left h3 {
  font-size: var(--size10);
  margin-bottom: 20px;
  font-weight: 900;
}
.page #main .slider .slider-inner .slick article .flex-line .left p {
  font-size: var(--size6);
}
.page #main .slider .slider-inner .slick article .flex-line .right {
  width: 50%;
  position: relative;
}
.page #main .slider .slider-inner .slick article .flex-line .right img {
  border-radius: 20px;
  width: 100%;
  position: relative;
}
.page #main .slider .slider-inner .slick article .flex-line .right:before {
  content: "";
  display: block;
  width: 264px;
  height: 250px;
  position: absolute;
  left: -130px;
  top: 60px;
  background: var(--article-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
}
.page #main .slider .slider-inner .slick .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  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;
}
.page #main .slider .slider-inner .slick .slick-dots li {
  margin: 0 7px;
}
.page #main .slider .slider-inner .slick .slick-dots li button {
  text-indent: -9999px;
  background: var(--article-color-light);
  border-radius: 10px;
  border: none;
  height: 10px;
  width: 45px;
}
.page #main .slider .slider-inner .slick .slick-dots li.slick-active button {
  background: var(--article-color);
}
@media (max-width: 991px) {
  .page #main .slider .slider-inner .slick .slick-dots {
    bottom: -40px;
  }
}
@media (max-width: 991px) {
  .page #main .slider .slider-inner .slick {
    margin-top: 0;
  }
  .page #main .slider .slider-inner .slick article {
    padding: 20px;
  }
  .page #main .slider .slider-inner .slick article .flex-line {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page #main .slider .slider-inner .slick article .flex-line .left {
    padding-right: 0px;
  }
  .page #main .slider .slider-inner .slick article .flex-line .left h3 {
    font-size: var(--size8);
  }
  .page #main .slider .slider-inner .slick article .flex-line .left p {
    font-size: var(--size6);
  }
  .page #main .slider .slider-inner .slick article .flex-line .right {
    width: 100%;
    display: none;
  }
  .page #main .slider .slider-inner .slick article .flex-line .right:before {
    content: "";
    display: block;
    width: 264px;
    height: 250px;
    position: absolute;
    left: -130px;
    top: 60px;
    background: var(--article-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='250' viewBox='0 0 264 250'%3E%3Cellipse cx='164' cy='149.5' rx='100' ry='100.5' style='fill: none;'/%3E%3Cpath d='M164,250c-55.14,0-100-45.08-100-100.5s44.86-100.5,100-100.5,100,45.08,100,100.5-44.86,100.5-100,100.5ZM164,50.5c-54.31,0-98.5,44.41-98.5,99s44.19,99,98.5,99,98.5-44.41,98.5-99-44.19-99-98.5-99Z' style='fill: %236166ee;'/%3E%3Cpath d='M85.5,88.25c-.19,0-.38-.07-.53-.22L17.97,21.03c-.29-.29-.29-.77,0-1.06s.77-.29,1.06,0l67,67c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z' style='fill: %236166ee;'/%3E%3Ccircle cx='15' cy='15' r='15' style='fill: %236166ee;'/%3E%3C/svg%3E");
  }
}
.page #main .section-onglet .section-inner .section-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}
.page #main .section-onglet .section-inner .section-header .desc {
  font-size: var(--size7);
}
@media (max-width: 991px) {
  .page #main .section-onglet .section-inner .section-header .desc {
    font-size: var(--size6);
  }
}
.page #main .section-onglet .section-inner .link {
  margin: 30px auto;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: block;
}
.page #main .section-onglet .section-inner .link 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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 10px auto;
}
.page #main .section-onglet .section-inner .link span svg {
  width: 15px;
}
.page #main .section-onglet .section-inner .link.active {
  text-indent: -9999px;
}
.page #main .section-onglet .section-inner .link.active span {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.page #main .section-onglet .section-inner .section-content {
  display: none;
  scroll-margin-top: 120px;
}
.page #main .section-onglet .section-inner .section-content article h2 {
  font-size: var(--size9);
}
.page #main .section-onglet .section-inner .section-content article h3 {
  font-size: var(--size8);
  font-weight: 400;
}
.page #main .section-onglet .section-inner .section-content article blockquote {
  margin-top: 30px;
}
.page #main .section-onglet .section-inner .section-content article .number {
  font-size: var(--size12);
  margin-right: 20px;
}
.page #main .section-onglet .section-inner .section-content article .flex-line {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .page #main .section-onglet .section-inner .section-content article .flex-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page #main .section-onglet .section-inner .section-content.active {
  display: block;
}

/*
!  ARTICLES
*/
.article h1 span,
.base h1 span {
  font-weight: normal;
}
.article h2 + figure,
.base h2 + figure {
  margin-top: 20px;
}
.article .bg-color,
.base .bg-color {
  color: #FFF;
}
.article .space,
.base .space {
  height: 60px;
}
@media (max-width: 991px) {
  .article .space,
  .base .space {
    height: 30px;
  }
}
.article .full-width,
.base .full-width {
  margin-top: 50px;
  margin-bottom: 50px;
}
.article .full-width .full-width-inner,
.base .full-width .full-width-inner {
  padding: 50px 0;
}
.article .full-width .numbers,
.base .full-width .numbers {
  gap: 30px;
}
.article .full-width .numbers .left,
.article .full-width .numbers .center,
.article .full-width .numbers .right,
.base .full-width .numbers .left,
.base .full-width .numbers .center,
.base .full-width .numbers .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.article .full-width .numbers .number,
.base .full-width .numbers .number {
  font-size: var(--size13);
  font-weight: 300;
  line-height: 0.8;
  margin-right: 20px;
}
.article .full-width .numbers strong,
.base .full-width .numbers strong {
  display: block;
  font-weight: 900;
}
@media (max-width: 991px) {
  .article .full-width,
  .base .full-width {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .article .full-width .full-width-inner,
  .base .full-width .full-width-inner {
    padding: 40px 0;
  }
  .article .full-width .numbers,
  .base .full-width .numbers {
    gap: 20px;
    -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;
    text-align: center;
  }
  .article .full-width .numbers .left,
  .article .full-width .numbers .center,
  .article .full-width .numbers .right,
  .base .full-width .numbers .left,
  .base .full-width .numbers .center,
  .base .full-width .numbers .right {
    display: block;
  }
  .article .full-width .numbers .number,
  .base .full-width .numbers .number {
    font-size: var(--size11);
    margin-right: 0;
  }
  .article .full-width .numbers .left,
  .article .full-width .numbers .center,
  .base .full-width .numbers .left,
  .base .full-width .numbers .center {
    margin-bottom: 20px;
  }
}

.article #main {
  padding: 250px 0 50px 0;
}
@media (max-width: 991px) {
  .article #main {
    padding: 140px 0 50px 0;
  }
}
.article #main #main-inner h1 {
  font-size: var(--size11);
  margin: 20px 0 30px 0;
}
.article #main #main-inner h1:before {
  display: none;
}
.article #main #main-inner h1 span {
  display: block;
  font-weight: normal;
}
@media (max-width: 991px) {
  .article #main #main-inner h1 {
    font-size: var(--size9);
  }
}
.article #main #main-inner h2 {
  font-size: var(--size7);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
}
.article #main #main-inner h3 {
  font-size: var(--size6);
  font-weight: 900;
  color: var(--article-color);
}
.article #main #main-inner h2 + h3 {
  margin-top: 0px;
}
.article #main #main-inner p + h2 {
  margin-top: 40px;
}
.article #main #main-inner .bloc {
  padding: 30px 40px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
}
.article #main #main-inner .bloc:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../src/images/arrow-button-white.svg) no-repeat center var(--article-color);
  background-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 22px;
  left: -15px;
}
.article #main #main-inner .bloc:first-child {
  margin-top: 0;
}
.article #main #main-inner .bloc:last-child {
  margin-bottom: 0;
}
.article #main #main-inner .bloc h2 {
  font-weight: bold;
  font-size: var(--size7);
  margin-bottom: 10px;
}
.article #main .prev-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}
.article.article-zoom #main {
  padding-bottom: 0;
}
.article.article-zoom #main #zoom {
  padding-top: 0;
  margin-top: -50px;
  position: relative;
}
.article.article-zoom #main #zoom .bloc {
  margin-bottom: 40px;
  padding: 40px 60px;
}
.article.article-zoom #main #zoom .bloc:before {
  display: none;
}
@media (max-width: 991px) {
  .article.article-zoom #main #zoom {
    padding-bottom: 20px;
    margin-top: 0;
  }
  .article.article-zoom #main #zoom .line {
    gap: 0;
  }
  .article.article-zoom #main #zoom .bloc {
    padding: 30px;
  }
}

/*
!  BASE
*/
.base #main {
  padding-top: 350px;
}
@media (max-width: 991px) {
  .base #main {
    padding-top: 140px;
  }
}
.base #main #main-inner h2 {
  font-size: var(--size10);
  font-weight: 900;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .base #main #main-inner h2 {
    font-size: var(--size8);
  }
}
.base #main #main-inner .h4 {
  font-size: var(--size5);
}
.base #main #main-inner .h4:before {
  display: none;
}
.base #main #main-inner .max-height-430 img {
  max-height: 430px;
  margin: auto;
}
.base #main #main-inner .list-person figure {
  position: relative;
  margin-bottom: 30px;
}
.base #main #main-inner .list-person figure:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../src/images/arrow-down-yellow.svg);
  background-size: contain;
}
.base #main #main-inner .list-person figure img {
  width: 100%;
}

.page-retrospective .title {
  margin-left: 220px;
  position: relative;
}
.page-retrospective .title .tag {
  position: relative;
}
.page-retrospective .title .outlined-text {
  left: 300px;
  top: 0px;
  font-size: var(--size15);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.page-retrospective .title .outlined-text small {
  font-size: var(--size13);
  line-height: 1;
  position: relative;
  top: -18px;
}
.page-retrospective .title:before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  top: 93px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../src/images/cercles-blanc.png) center no-repeat;
  background-size: contain;
  width: 610px;
  height: 575px;
}
@media (max-width: 991px) {
  .page-retrospective .title {
    margin-left: 0;
  }
  .page-retrospective .title .outlined-text {
    display: none;
  }
}
.page-retrospective .retrospective {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .page-retrospective .retrospective {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.page-retrospective .retrospective .retrospective-nav {
  width: 110px;
  height: 550px;
}
.page-retrospective .retrospective .retrospective-nav .slick-list {
  padding: 0 100px;
}
.page-retrospective .retrospective .retrospective-nav .slick-track {
  top: 56px;
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.article {
  width: 110px;
  height: 110px;
  position: relative;
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.article:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  display: block;
  width: 8px;
  height: 50px;
  background: url(../src/images/dots.svg);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.article .year {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  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: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid #000;
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.article .year span {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  font-size: var(--size9);
  font-weight: 900;
  color: var(--article-color);
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.slick-current .year {
  width: 110px;
  height: 110px;
}
.page-retrospective .retrospective .retrospective-nav .slick-slide.slick-current .year span {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.page-retrospective .retrospective .retrospective-nav .slick-slide:hover:not(.slick-current) .year {
  width: 60px;
  height: 60px;
}
.page-retrospective .retrospective .retrospective-nav .slick-slide:hover:not(.slick-current) .year span {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  font-size: var(--size5);
}
@media (max-width: 991px) {
  .page-retrospective .retrospective .retrospective-nav {
    width: 80px;
    height: auto;
  }
  .page-retrospective .retrospective .retrospective-nav .slick-track {
    top: 35px;
  }
  .page-retrospective .retrospective .retrospective-nav .slick-slide.article {
    width: 80px;
    height: 80px;
    position: relative;
  }
  .page-retrospective .retrospective .retrospective-nav .slick-slide.slick-current .year {
    width: 80px;
    height: 80px;
  }
  .page-retrospective .retrospective .retrospective-nav .slick-slide.slick-current .year span {
    font-size: var(--size7);
  }
}
.page-retrospective .retrospective .retrospective-liste {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 1px;
  height: 100%;
  /* .slick-list{min-height: 100%;}*/
}
.page-retrospective .retrospective .retrospective-liste .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .page-retrospective .retrospective .retrospective-liste .slick-track {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.page-retrospective .retrospective .retrospective-liste article {
  opacity: 0;
  margin-left: 90px;
}
.page-retrospective .retrospective .retrospective-liste article:before {
  opacity: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  left: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page-retrospective .retrospective .retrospective-liste article .article-inner {
  padding: 40px;
  background: #FFF;
  border-radius: 20px;
}
.page-retrospective .retrospective .retrospective-liste article .article-inner .tag {
  margin: 0 0 10px;
  padding: 5px 15px;
  font-size: var(--size3);
}
.page-retrospective .retrospective .retrospective-liste article .article-inner p {
  margin-bottom: 10px;
}
.page-retrospective .retrospective .retrospective-liste article .article-inner p:last-child {
  margin-bottom: 0;
}
.page-retrospective .retrospective .retrospective-liste article .article-inner hr {
  width: 40px;
  background: none;
  border: none;
  border-top: 3.5px dotted #000;
}
.page-retrospective .retrospective .retrospective-liste article .article-inner hr + .tag {
  margin-top: 5px;
}
.page-retrospective .retrospective .retrospective-liste article.slick-current {
  opacity: 1;
}
.page-retrospective .retrospective .retrospective-liste article.slick-current:before {
  width: 100px;
  opacity: 1;
}
@media (max-width: 991px) {
  .page-retrospective .retrospective .retrospective-liste article {
    margin-left: 20px;
  }
  .page-retrospective .retrospective .retrospective-liste article:before {
    display: none;
  }
  .page-retrospective .retrospective .retrospective-liste article .article-inner {
    padding: 15px;
  }
}

.article h2 span,
.base h2 span,
.page-category h2 span {
  font-weight: normal;
}
.article figure,
.base figure,
.page-category figure {
  margin: 50px 0;
}
@media (max-width: 991px) {
  .article figure,
  .base figure,
  .page-category figure {
    margin: 30px 0;
  }
}
.article figure img,
.base figure img,
.page-category figure img {
  border-radius: 20px;
}
.article figure:first-child,
.base figure:first-child,
.page-category figure:first-child {
  margin-top: 0;
}
.article figure:last-child,
.base figure:last-child,
.page-category figure:last-child {
  margin-bottom: 0;
}
.article .bloc,
.base .bloc,
.page-category .bloc {
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.article .bloc:before,
.base .bloc:before,
.page-category .bloc:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../src/images/arrow-button-white.svg) no-repeat center var(--article-color);
  background-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: -15px;
}
.article .bloc:first-child,
.base .bloc:first-child,
.page-category .bloc:first-child {
  margin-top: 0;
}
.article .bloc h2,
.base .bloc h2,
.page-category .bloc h2 {
  font-weight: bold;
  font-size: var(--size8);
}
.article .bloc.no-picto:before,
.base .bloc.no-picto:before,
.page-category .bloc.no-picto:before {
  display: none;
}
@media (max-width: 991px) {
  .article .bloc,
  .base .bloc,
  .page-category .bloc {
    padding: 20px;
  }
  .article .bloc h2,
  .base .bloc h2,
  .page-category .bloc h2 {
    font-weight: bold;
    font-size: var(--size8) !important;
  }
  .article .bloc .gap-60,
  .base .bloc .gap-60,
  .page-category .bloc .gap-60 {
    gap: 30px;
  }
}

body.page-category #intro .intro-inner .right {
  position: relative;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
body.page-category #intro .intro-inner .right figure {
  position: absolute;
  bottom: 0;
  width: calc(50dvw - 200px);
}
body.page-category #intro .intro-inner .right figure img { /* width: 100%; height: 100%; object-fit: cover; */ }
@media (max-width: 991px) {
  body.page-category #intro .intro-inner .right figure {
    position: relative;
    bottom: auto;
    width: 100%;
  }
}
body.page-category #intro .chapo {
  width: 70%;
}
@media (max-width: 991px) {
  body.page-category #intro .chapo {
    width: 100%;
  }
}

.page-pink .bloc h2 {
  font-weight: 900;
  margin-bottom: 20px;
}
.page-pink .bloc h2:has(small) {
  margin-bottom: 5px;
}
.page-pink .bloc h3 {
  margin-top: 0;
  line-height: 1.1;
  font-weight: 300;
}
.page-pink .bloc h3:before {
  display: none;
}
.page-pink .bloc figure {
  height: 100%;
}
.page-pink .bloc figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-pink .bloc .left,
.page-pink .bloc .right {
  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: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-pink .bloc .left blockquote,
.page-pink .bloc .right blockquote {
  padding-right: 50px;
}
.page-pink .bloc .left blockquote + figure,
.page-pink .bloc .right blockquote + figure {
  margin-top: 0;
}

.page-red .bloc {
  padding: 30px 40px;
}
.page-red .bloc h2 {
  font-weight: bold;
  font-size: var(--size7);
  margin-bottom: 10px;
}
/*# sourceMappingURL=style.css.map */
