:root {
  --base: 60rem;
  --base-narrow: 48rem;
  --base-large: 72rem;

  --gap: 1.5rem;
  --gap-small: calc(var(--gap) / 3);
  --gap-big: calc(var(--gap) * 2);
  --unit: calc((var(--base) - var(--gap) * 3) / 4);
  --unit-large: calc((var(--base) - var(--gap) * 2) / 3);
  --unit-small: calc((var(--base) - var(--gap) * 4) / 5);
}


/*
 * Utilities
 */

.row {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: var(--base);
}
.row.narrow {
  --base: var(--base-narrow);
  max-width: var(--base-narrow);
}
.row.large {
  --base: var(--base-large);
  max-width: var(--base-large);
}
.row.wide {
  --base: 100%;
  max-width: none;
}

/*
 * Grid without media-queries
 */

.auto-grid > * + * {
  margin-top: 1rem;
}

@supports (display: grid) {
  .auto-grid {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, var(--unit)), 1fr)
    );
    gap: var(--gap);
  }

  .auto-grid > * + * {
    margin-top: unset;
  }
}

/*
 * Flow blocks
 */
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
}

.gap {
  gap: var(--gap);
}

/*
 * Flow blocks
 */

@supports (display: flex) {
  .auto-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .auto-flex > * {
    flex: 1 1 var(--unit);
  }

  .auto-flex.col5 > * {
    flex: 1 1 calc((var(--base) - var(--gap) * 4) / 5);
  }

  .auto-flex.two-plus-two:after {
    content: "";
    order: 1;
    width: 100%;
  }
  .auto-flex.two-plus-two > :first-child:nth-last-child(4) ~ :nth-child(n + 3) {
    color: red;
    order: 2;
  }

  .auto-flex.no-grow {
    justify-content: center;
  }
  .auto-flex.no-grow > * {
    flex-grow: .33333;
  }
}

/*
 * Switch
 */

.switch {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --modifier: calc((var(--unit) * 3 + var(--gap) * 2) - 100%);
}

.switch > * {
  flex-grow: 1;
  flex-basis: calc(var(--modifier) * 999);
}
.switch > hr {
  background-color: #ccc;
  height: auto;
  flex-grow: 0;
  min-height: 1px;
  min-width: 1px;
  margin: 0;
}

.list-at-5 > :nth-last-child(n + 5),
.list-at-5 > :nth-last-child(n + 5) ~ * {
  flex-basis: 100%;
}

/*
 * Auto-layout
 */

.box {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.nowrap {
  flex-wrap: nowrap;
}
.box > * {
  flex: 1 1 calc(8.33333% * .8);
}
.xxsmall {
  flex: 1 0.66666 calc(var(--unit) * 0.66666 * 0.8);
}
.xsmall {
  flex: 1 1 calc(var(--unit) * 0.8);
}
.small {
  flex: 1.33333 1 calc(var(--unit) * 1.33333 * 0.8);
}
.medium {
  flex: 2 1 calc((var(--unit) * 2 * 0.8 + var(--gap)));
}
.large {
  flex: 2.666666 1 calc((var(--unit) * 2.66666 * 0.8 + var(--gap)));
}
.xlarge {
  flex: 3 1 calc((var(--unit) * 3 * 0.8 + var(--gap) * 2));
}
.full {
  flex: 4 1 var(--base);
}
.fit {
  flex: 0 1 auto;
}

.box-10 > * {
  flex: 1 1 calc(20% * 0.8);
}
.box-10 > .xsmall {
  flex: 1 1 calc(var(--unit-5) * 0.8);
}
.box-10 > .small {
  flex: 2 1 calc(var(--unit-5) * 2 * 0.8 + var(--gap));
}
.box-10 > .medium {
  flex: 2.5 1 calc(var(--unit-5) * 2.5 * 0.8 + var(--gap * 1.5));
}
.box-10 > .large {
  flex: 3 1 calc((var(--unit-5) * 3 * 0.8 + (var(--gap) *2)));
}
.box-10 > .xlarge {
  flex: 4 1 calc((var(--unit-5) * 4 * 0.8 + (var(--gap) * 3)));
}
.box-10 > .full {
  flex: 5 1 100%;
}


/*
 * Center on both axis
 */

 .center-x {
  display: grid;
  justify-content: center;
}

.center-y {
  display: grid;
  align-items: center;
}

.center-xy {
  display: grid;
  align-items: center;
  justify-content: center;
}

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

.align-end {
  align-self: end;
}



/* Base styles */

/**
 * 1. Border-box reset
 * 2. Set default line-height
 * 3. Prevent adjustments of font size after orientation changes on iOS.
 */
html {
  box-sizing: border-box; /* 1 */
  line-height: 1.5; /* 2 */
  -webkit-text-size-adjust: 100%; /* 3 */
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/**
 * 1. Remove the margin in all browsers (opinionated).
 * 2. Fill viewport height
 */
body {
  margin: 0; /* 1 */
  min-height: 100vh; /* 2 */
}

img,
audio,
video {
  height: auto;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier,
    monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.5; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/**
 * Forms
 */

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction in all browsers (opinionated).
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

/**
 * Better hyphenation
 */
p {
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}






/* ==========================================================================
   Author's custom styles
   ==========================================================================
*/

html {
  color: #333;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  hyphens: auto;
  line-height: 1.4;
  position: relative;
}

picture {
  display: block;
}

a {
  color: #ec1015;
  text-decoration: none;
}
a:active,
a:hover {
}

p {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.logo img {
  height: 45px;
  vertical-align: middle;
}
header {
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.07);
  height: clamp(60px, 6vw, 80px);
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 3;

  display: flex;
  align-items: center;
}
.header__main {
  margin: 2rem auto;

  display: flex;
  align-items: center;
}
.header__nav {
  margin-left: auto;
}
.header__menu {
  margin: 0;
  padding: 0;
}
.header__item {
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  list-style-type: none;
  overflow: visible;
  position: relative;
  text-transform: uppercase;
}

.header__item a {
  color: #333;
}

.header__item a:hover {
  color: #ec1015;
}

.header__submenu .header__item--sub {
  float: none;
  white-space: nowrap;
}
.header__item--sub a {
  color: #333;
}
.header__item--sub a:hover:after {
  border-color: #ec1015;
}

.header__item:hover .header__submenu {
  height: auto;
  opacity: 1;
  transition: opacity 0.3s;
}

.logo {
  max-width: 60%;
}

.menu-check,
.submenu-check {
  display: none;
}
@media only screen and (max-width: 35.0625em) {
  .header__item a {
    display: inline-block;
    font-size: 1rem;
    line-height: 3rem;
    position: relative;
  }
  .submenu-button {
    line-height: 3rem;
  }
}
@media only screen and (min-width: 35em) and (max-width: 62.5em) {
  .header__item a {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 4rem;
    position: relative;
  }
  .submenu-button {
    line-height: 4rem;
  }
}
@media only screen and (max-width: 62.5em) {
  header {

  }
  .header__item {
    text-align: center;
  }
  .header__item a {
    border-bottom: 1px solid #ddd;
    display: block;
  }
  .menu-button {
    background-color: #ec1015;
    color: #fff;
    cursor: pointer;
    display: block;
    padding: 0.5em 1em;
    position: absolute;
    right: .5rem;
    text-transform: uppercase;
    top: .5rem;
    z-index: 1000;
  }
  .menu-button::after {
    content: "\2630";
    margin-left: 0.25rem;
  }
  .menu-button--archive::after {
    content: "\2b06";
  }
  .menu-check:checked ~ .header__nav {
    min-height: 100vh;
    max-height: none;
  }
  .header__nav {
    background-color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    transition: max-height 0.2s linear;
  }
  .header__menu {
    background-color: #fff;
    border-bottom: 2px solid #eee;
    padding: 5rem 15%;
  }
  .header__submenu {
    max-height: 0;
    overflow: hidden;
  }
  .submenu-check:checked ~ .header__submenu {
    display: block;
    margin: 0 0 1.5em;
    min-height: 100%;
    max-height: none;
  }
  .submenu-button {
    cursor: pointer;
    display: inline-block;
    font-size: 1.25rem;
    overflow: hidden;
    position: absolute;
    right: -3em;
    text-align: center;
    top: 0;
    width: 2.5em;
  }
  .submenu-button:hover {
    color: #f62e28;
  }
  .submenu-button span {
    display: none;
  }
  .submenu-button:before {
    content: "\2630";
  }
  .submenu-check:checked ~ .submenu-button:before {
    content: "\25B2";
  }
}

@media only screen and (min-width: 62.5525em) {
  .menu-button {
    display: none;
  }
  .header__logo {
    float: left;
  }
  .header__nav {
    float: right;
  }
  .header__item {
    float: left;
    font-size: 0.8125rem;
  }

  .header__item a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border-bottom: 2px solid #ec1015;
    transform: scale(0) translateZ(0);
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .header__item a:hover:after,
  .header__item a.active:after {
    opacity: 1;
    transform: none;
  }
  .header__item--archive {
    text-transform: none;
  }
  .header__item--archive a::before {
    content: "\2191";
    margin-right: 0.25rem;
  }
  .header__item a {
    display: block;
    padding-top: .625rem;
    padding-bottom: 0.625rem;
  }
  .header__item--sub a {
    padding-top: 1em;
  }
  .header__menu > .header__item + .header__item {
    margin-left: 2em;
  }
  .submenu-button {
    display: none;
  }
  .header__submenu {
    background-color: #fff;
    border: 1px solid #eee;
    border-top-color: #f5f5f5;
    height: 0;
    left: -15px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    z-index: 500;
  }
  .header__item:nth-last-child(2) .header__submenu,
  .header__item:last-child .header__submenu {
    left: auto;
    right: 0;
  }

  .header__item--sub a {
    color: #333;
    display: block;
    padding-left: 1em;
    padding-right: 1em;
  }
}

.home-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1150px;
  position: relative;
}
.home-wrapper h1 {
  margin: 0;
}

.videos {
  background-color: #101929;
  border-top-color: transparent;
}

.rejoignez {
  background-color: #101929;
  border-top-color: transparent;
}

.bouton {
  color: #333;
  display: inline-block;
  font-weight: 700;
}
.bouton.bg-black {
  background-color: #333;
  color: #fff;
  padding: .2rem 1rem;
}
.bouton.text-white {
  color: #fff;
}
.bouton.text-red {
  color: #ec1015;
  font-weight: 500;
}
.bouton:after {
  background-color: #333;
  content: '';
  display: inline-block;
  margin-left: .75em;
  -webkit-mask: url("/assets/images/arrow-2px.svg") no-repeat 50% 50%;
  mask: url("/assets/images/arrow-2px.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 1em;
  height: 1em;
}
.bouton.bg-black:after,
.bouton.text-white:after {
  background-color: #fff;
}
.bouton.text-red:after {
  background-color: #ec1015;
}

.decompte {
  background-color: #dc1c21;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 110px;
  height: 110px;
  transform: rotate(8deg);

  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 2;

  display: inline-grid;
  place-items: center;

  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.25));
}
.billetterie-wrapper {
  margin-right: 9rem;
}
@media only screen and (max-width: 36rem) {
  .decompte {
    transform: scale(.5) rotate(5deg) translateX(50px);
  }
  .billetterie-wrapper {
    margin-right: 5rem;
  }
}
@media only screen and (min-width: 36.0625rem) and (max-width: 62rem) {
  .decompte {
    transform: scale(.75) rotate(5deg) translateX(10px);
  }
  .billetterie-wrapper {
    margin-right: 7rem;
  }
}

.decompte__jours {
  align-self: end;
  font-size: 2.5rem;
  line-height: 1;
}
.decompte__texte {
  align-self: center;
  font-size: 1rem;
  line-height: 1.16;
}

.home-intro {
  text-align: center;
  width: 100%;
}
.home-title {
  color: #ec1015;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.25rem;
  margin: 2rem 0 2.6875rem;
}
.home-subtitle {
  color: #ec1015;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5rem;
  margin: 2.5rem 0 2.6875rem;
}

@media only screen and (min-width: 48.0625rem) {
  .edito-wrapper {
    display: flex;
  }
}
.expand-check {
  display: none;
}
.expand-button {
  display: block;
  text-align: center;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: transform 0.25s ease-out;
  position: relative;
  border-radius: 4px;

  order: 3;
  margin-top: auto;
}
.expand-button::before {
  content: "";
  display: inline-block;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid currentColor;
  vertical-align: middle;
  margin-right: 0.7rem;
  transition: transform 0.2s ease-out;
  transform: rotate(90deg);
}
.expand-button:after {
  content: "";
  position: absolute;
  top: -3.0625em;
  right: -1px;
  left: -1px;
  height: 3em;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 01));
  z-index: 0;
}
.expand-check:checked + .expand-button::before {
  transform: rotate(-90deg);
}
.expand-content {
  overflow: hidden;
  max-height: 20em;
  transition: overflow 0.25s ease-in-out;
}
.expand-check:checked + .expand-button + .expand-content {
  max-height: none;
}
.expand-check:checked + .expand-button {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.expand-inner {
  margin-bottom: 3em;
}


.edito {
  background-color: #fef7ed;
}
.edito-block-titre {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edito-block {
  display: flex;
  flex-direction: column;
}
.edito-assya {
  padding: 0;
}
.edito-frame {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--gap-small);
  position: relative;
}
.edito-noframe {
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--gap-small);
}
.edito-frame .bouton {
  margin-top: auto;
  align-self: flex-end;
}
.edito-noframe .bouton {
  margin-top: auto;
  align-self: flex-start;
}
.edito-photo {
  border-radius: 50%;
  float: right;
}
.edito-text {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.2;
}

.temps-fort {
  background-color: #f66249;
  color: #fff;
}
.temps-fort-secondary {
  border: 1px solid #f66249;
}
.temps-fort-date {
  font-size: 1.25em;
  font-weight: bold;
}
.temps-fort-titre {
  font-weight: bold;
  text-transform: uppercase;
}
.temps-fort-texte {
  font-weight: bold;
}
.edito-blocks-wrapper {
  flex-grow: 1;
  gap: var(--gap-small);
}
.temps-fort-thin .bouton-texte {
  display: none;
}
.temps-fort-thin .bouton {
  padding: .2rem .5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.temps-fort-thin .bouton:after {
  margin-left: -.15em;
}
.temps-fort-thin .temps-fort-texte {
  max-height: 1.25em;
  overflow: hidden;
  display: none;
}
.temps-fort-thin {
  gap: 4px;
  padding: .5rem 1rem;
}

.etape {
  background-color: #f4ac42;
}
.etape-texte {
  font-size: 1.125rem;
  font-weight: bold;
}

.live {
  background-color: #3e3c3c;
  padding: 2.4rem 0;
}
.live .home-section__title {
  text-align: center;
}
.live__iframe {
  display: block;
  margin: 0 auto;
}
.live__link {
  text-align: center;
  color: #777;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  font-style: italic;
}
.live__link a {
  color: #777;
  text-decoration: underline;
}

.home-archive__info {
  color: #666;
  font-size: 1.25rem;
}
.home-archive__titre {
  color: #ff2e2e;
  font-size: clamp(1.475rem, 1.5vw + 0.9rem, 1.875rem);
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 0;
}
.home-archive__link:hover {
  text-decoration: underline;
}
.home-archive__nom {
  color: #333;
}
.home-archive__titre-conclusion {
  color: #ec1015;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 2.25rem;
  margin: 4rem 0 2.6875rem;
}
@media only screen and (min-width: 48.0625rem) {
  .home-archive__titre-conclusion {
    margin-left: auto;
    margin-right: auto;
    width: 47rem;
  }
  .home-archive__texte-conclusion {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    width: 47rem;
  }
}

.home-section {
  padding: 4rem 1.5rem;
}
.home-section-small {
  padding: 2.5rem 1.5rem;
}
.home-section-xsmall {
  padding: .75rem 1.5rem;
}
.home-section__title {
  color: #ec1015;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(1.475rem, 1.5vw + 0.9rem, 1.875rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.home-section__subtitle {
  /* color: #ec1015; */
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 auto 2rem;
}
.home-section__intervenants {
  margin: 0;
  text-align: center;
}
.home-intervenant__wrapper {
  flex-grow: 1;
}
.home-intervenant__name {
  color: #333;
  font-size: 30px;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.home-intervenant__lien {
  color: #ec1015;
  display: block;
}
.home-intervenant__intro-title {
  color: #59585b;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 0;
  padding-top: .5em;
}

.home-intervenant__photo {
  margin: 0 auto 1rem;
}
@media only screen and (max-width: 36rem) {
  .home-intervenant__photo {
    max-width: 70%;
  }
}
.home-intervenant__name {
  margin-bottom: .5rem;
  margin-top: auto;
}
.home-section__intervenant--archive {
  margin-bottom: 2rem;
}
.home-section__intervenant--archive:nth-child(5n + 1) {
  clear: left;
  margin-left: 0;
}
.home-intervenant__name--archive {
  font-size: 20px;
}
.home-intervenant__intro-title--archive {
  display: none;
}

.home-banner img {
  width: 100%;
}

.title {
  border-bottom: 2px solid #ec1015;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  align-items: flex-end;
}
.title.bg-dark {
  border-bottom: unset;
  padding-bottom: 0;
}
.title.bg-dark > * {
  color: #fff;
}
.title .bouton {
  margin-left: auto;
  text-align: right;
}

.title-archive {
  margin: 2.5rem 0;
  align-items: flex-end;
}

.home-texte {
  font-size: 1.125rem;
  line-height: 1.5;
}
.home-texte p {
  margin-top: 0;
  padding-top: 0.35rem;
}




.home-video__video {
  margin-bottom: 1rem;
}
.home-video__video img {
  width: 100%;
}
/* Hide play button and move video under link */
.home-video__video .embed--video {
  background-color: transparent;
}
.home-video__video iframe {
  z-index: -2;
}
.home-video__video .embed__thumb {
  z-index: -1;
}
.home-video__video .embed__thumb img {
  display: none;
}
.home-video__photo {
  border-radius: 50%;
  width: 96px;
  height: 96px;
}
.home-video__name {
  color: #fff;
  font-size: clamp(1.5rem, 5.8vw - 0.6rem, 3rem);
  font-weight: 700;
  line-height: 1;
}
.home-video__intro-title {
  color: #fff;
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
  line-height: 1.25;
  margin: 0;
}
.home-section__video-link {
  font-size: 0.9em;
}

.home-video__name {
  margin-bottom: 1rem;
}

.slide--diapo {
  align-items: center;
  margin: 0 8%;
}

.page-video__item {
  margin-bottom: 1.5rem;
}
.page-video-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
}
.page-video__name {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.2;
  margin: 0;
}
.page-video__intro-title {
  line-height: 1.25;
  margin: 0;
}


.videoModal {
  cursor: pointer;
}
.videoModal iframe,
.youtube_player {
  aspect-ratio: 16 / 9;
  border: unset;
  object-fit: cover;
  width: 100%;
}
.no-js .videoModal {
  cursor: default;
}

.tingle-modal-box {
  width: 80%;
}
.ar-16-9 iframe {
  aspect-ratio: 16 / 9;
  border: unset;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-section__equipe {
  margin: 0;
  padding-bottom: 2rem;
  text-align: left;
}
.home-rubrique__title {
  color: #ec1015;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}
.home-equipe__membres {
  margin-top: 0;
}
.home-equipe__item {
  display: inline-block;
}
.home-equipe__item:not(:last-child)::after {
  content: " – ";
}

.home-section__link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-section__link--no-color {
  color: #333;
}
.home-section__link:hover .home-intervenant__photo {
  box-shadow: 0 0 0 6px #ec1015;
}
.home-section__link:hover .home-intervenant__name {
  color: #e00000;
}
.home-section__link:hover .home-intervenant__intro-title {
  color: #333;
}
.home-section__intervenant {
  display: flex;
  flex-direction: column;
}
.home-section__intervenant p {
  margin-top: 0;
}
.home-intervenant__photo {
  border-radius: 100%;
  box-shadow: 0 0 1px #333;
}

.home-section__btn {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 24' width='13' height='24'><path fill='none' stroke='currentcolor' d='M1 1l11 11-11 11'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-radius: 30px;
  border: 1px solid #ec1015;
  clear: left;
  color: #333;
  display: inline-block;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 2.25rem auto 0;
  order: 4;
  padding: 0.5rem 3rem 0.5rem 1.5625rem;
}
.home-section__btn--small {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16' width='9' height='16'><path fill='none' stroke='currentcolor' d='M1 1l7 7-7 7'/></svg>");
  background-position: right 20px center;
  font-size: 1em;
  font-weight: normal;
  margin-top: 0;
  padding: 0.35rem 2.5rem 0.35rem 1.25rem;
}
.home-section__btn:hover {
  background-color: #ec1015;
  color: #fff;
}

.page-section {
  padding: 2rem 1.5rem;
}
.page-section__title {
  color: #ec1015;
  clear: both;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(1.475rem, 1.5vw + 0.9rem, 1.875rem);
  font-weight: 900;
  margin: 2rem auto 2rem;
  text-align: center;
  text-transform: uppercase;
}
.page-section__subtitle {
  color: #ec1015;
  clear: both;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(1.5rem, 0.6vw + 1.1rem, 1.25rem);
  font-weight: 900;
  margin: 2rem auto 2rem;
  text-align: center;
  text-transform: uppercase;
}
.page-section__texte {
  clear: both;
  margin: 0 auto 4rem;
  padding: 0 3%;
}
@media only screen and (min-width: 48.0625rem) {
  .page-section__texte {
    padding: 0;
    width: 70%;
  }
}

.page-section__texte hr {
  clear: both;
  margin: 2.5rem 0;
}
.page-section__texte h2 {
  margin-top: 2.5rem;
}
.page-section__texte h3 {
  margin-top: 2rem;
}
g .page-section__texte figure.cadre:not(.vignette) {
  border: 9px solid #ffffff;
  outline: 1px solid #d9d9d9;
}
.page-section__texte figure {
  clear: both;
  display: table;
  margin: 2em auto 2.5em;
}
.page-section__texte figure.vignette img {
  border-radius: 5px;
}
.page-section__texte .gauche,
.page-section__texte .droite {
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  width: 300px;
}
@media only screen and (min-width: 30.0625rem) and (max-width: 57rem) {
  .page-section__texte .gauche {
    float: left;
    margin-right: 1.5em;
    width: 200px;
  }
  .page-section__texte .droite {
    float: right;
    margin-left: 1.5em;
    width: 200px;
  }
}
@media only screen and (min-width: 57.0625rem) {
  .page-section__texte .gauche {
    float: left;
    margin-right: 1.5em;
    width: 300px;
  }
  .page-section__texte .droite {
    float: right;
    margin-left: 1.5em;
    width: 300px;
  }
}

.partenaire__niveaux {
  padding-top: 2rem;
}
.partenaire__niveau {
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.partenaires {
}
.partenaires:after {
  content: " ";
  display: table;
  clear: both;
}
.partenaire {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 3.5rem;
  min-height: 90px;
  padding: 1rem 0;
  position: relative;
  width: 100%;
}
.partenaire__link {
  color: #333;
  display: block;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.partenaire__link:hover {
  color: inherit;
}
.partenaire__logo {
  text-align: center;
  width: 100%;
}
.partenaire__image {
  max-height: 100px;
  width: auto;
}
.partenaire__nom {
  bottom: 0.6rem;
  clear: both;
  color: #333;
  font-size: 0.875em;
  font-weight: bold;
  left: 0;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}
.partenaire:hover .partenaire__nom {
  color: #ec1015;
}

.billetterie-section {
  background-color: #dc1c21;
  margin-top: -1rem;
  padding: .375rem 1.5rem;
  position: relative;
  z-index: 1;
}
.billetterie {
  text-align: center;
}
.billetterie-texte {
  color: #fff;
  display: inline;
  font-size: 1.25rem;
}
@media only screen and (max-width: 36rem) {
  .billetterie-texte {
    font-size: 1rem;
  }
}
.billetterie .bouton {
  margin: 0 .5em;
}

.alertes {
  background-color: #fef7ed;
}
.alerte h3 {
  margin: 0;
}
.alerte__button {
  margin-top: 1.5rem;
}
.alerte {
  background-color: #fff;
  border: 2px solid #EC7837;
  font-size: 1.125em;
  line-height: 1.2;
  padding: 1.5rem 1.5rem 1.5rem 8.5rem;
  position: relative;
}
.alerte:before {
  background: url("/assets/images/alerte.svg") no-repeat;
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 88px;
  height: 75px;
}

.appel__intro {
  font-size: 1.125em;
  margin-bottom: 3rem;
}
.appel__intro h2,
.appel__intro h3 {
  margin-top: 0;
}
@media only screen and (min-width: 48.0625em) {
  .appel__intro {
    float: left;
    width: 50%;
  }
  .appel__intro--large {
    float: none;
    margin: 0 auto 3rem;
    width: 70%;
  }
  .appel__image {
    float: right;
    margin-bottom: 2em;
    margin-left: 5%;
    margin-right: 1%;
    width: 44%;
  }
  .appel__intro--reverse {
    float: right;
    width: 50%;
  }
  .appel__image--reverse {
    float: left;
    margin-right: 5%;
    margin-left: 1%;
    width: 44%;
  }
}
.appel__icon {
  display: block;
  margin: -0.5em auto 0.8em;
}
.appel__titre {
  background-color: #ec1015;
  box-shadow: 0.3em 0 0 #ec1015, -0.3em 0 0 #ec1015;
  color: #fff;
  display: inline;
  font-size: 1.5em;
  padding: 0.15em 0;
  text-transform: uppercase;
}
.appel__texte {
  font-size: 1.125em;
  text-align: center;
}
.appel__texte p {
  margin: 0 0 1.5em;
}
.appel__btn {
  border: 2px solid #ec1015;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.5em;
  margin: 0 auto;
  padding: 0.25em 0.5em;
  text-transform: uppercase;
}
.appel__btn:hover {
  background-color: #ec1015;
  color: #fff;
}
.appel__link {
  background-color: #ec1015;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 24' width='13' height='24'><path fill='none' stroke='currentcolor' d='M1 1l11 11-11 11'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-radius: 30px;
  border: 1px solid #ec1015;
  clear: left;
  color: #fff;
  cursor: pointer;
  display: table;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 2rem auto 0;
  padding: 0.5rem 3rem 0.5rem 1.5625rem;
}
.appel__link:hover {
  background-color: #fff;
  color: #ec1015;
}
.appel__contact-text {
  border-top: 2px solid #ccc;
  clear: both;
  padding: 2rem 0 1rem;
}
.appel__fichiers {
  margin: 1em 0 0;
  text-align: left;
}
.fichier {
  border-bottom: 1px solid #ccc;
  list-style-type: none;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
.fichier__link {
  color: inherit;
  line-height: 2;
}
.fichier__link:hover {
  color: #ec1015;
  text-decoration: underline;
}
.fichier__link:before {
  content: "";
  background: url("/assets/images/p-fichier.svg") no-repeat;
  background-size: 12px;
  display: inline-block;
  height: 16px;
  margin-right: 0.75em;
  position: relative;
  top: 0.1em;
  width: 16px;
}
.lien__link {
  color: inherit;
  line-height: 2;
}
.lien__link:hover {
  color: #ec1015;
  text-decoration: underline;
}
.lien__link:before {
  content: "";
  background: url("/assets/images/p-lien.svg") no-repeat;
  background-size: 16px;
  display: inline-block;
  height: 16px;
  margin-right: 0.75em;
  position: relative;
  top: 0.1em;
  width: 22px;
}

.presse__contact {
  border: 1px solid #ec1015;
  margin-bottom: 2em;
  padding: 2em;
  text-align: center;
}
.presse__contact-nom {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5em;
}
.presse__contact-email {
  color: #ec1015;
  font-size: 1.5rem;
  margin-top: 0.5em;
}

.page-intervenant {
  border-top: 2px solid #e5e5e5;
  clear: left;
  float: left;
  padding-top: 2rem;
  width: 100%;
}
.page-intervenant + .page-intervenant {
  margin-top: 2rem;
}
.page-intervenant__photo {
  border-radius: 100%;
  box-shadow: 0 0 1px #333;
  display: block;
  height: 100%;
  margin: 0 auto 2rem;
  overflow: hidden;
  vertical-align: bottom;
}
.page-intervenant__bio {
  color: #777;
  line-height: 1.625;
}
@media only screen and (max-width: 36em) {
  .page-intervenant__col-bio {
    /* border-bottom: 1px solid #ccc; */
    margin-bottom: 2rem;
    padding-bottom: 2em;
  }
  .page-intervenant__photo {
    max-width: 70%;
  }
}
.page-intervenant__intro-title {
  color: #59585b;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.625;
  margin-top: 1em;
}
.page-intervenant__intro {
  color: #59585b;
  line-height: 1.625;
}
.page-intervenant__links {
  margin: 1em 0;
}
.page-intervenant__socials {
  margin: 1em 0;
}
.page-intervenant__url,
.page-intervenant__social {
  color: #777;
}
.page-intervenant__url:hover,
.page-intervenant__social:hover {
  color: #ec1015;
}
.page-intervenant__url::before {
  color: #777;
  content: "» ";
}
.page-intervenant__social::before {
  color: #777;
  content: "- ";
}
.page-intervenant__social:not(:last-child) {
  border-right: 1px solid #777;
  margin-right: 0.5em;
  padding-right: 0.35em;
}

.archive-intervenant__video {
  background-color: #333;
}
.archive-intervenant__photo {
  border-radius: 100%;
  box-shadow: 0 0 1px #333;
  display: block;
  margin: 0 auto 2rem;
  overflow: hidden;
  vertical-align: bottom;
}
.archive-intervenant__bio {
  color: #777;
  line-height: 1.625;
}
.archive-intervenant__photos {
  background-color: #333;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 0.5rem;
}
.archive-intervenant__photos a:not(:last-child) {
  margin-right: 0.5rem;
}
@media only screen and (max-width: 38em) {
  .archive-intervenant__video,
  .archive-intervenant__photos {
    margin-left: -12.4%;
    margin-right: -12.4%;
  }
}
@media only screen and (max-width: 54em) {
  .archive-intervenant__col-talk {
    border-bottom: 1px solid #ccc;
    margin-bottom: 2rem;
    padding-bottom: 2em;
  }
}
@media only screen and (min-width: 38.0625em) and (max-width: 54em) {
  .archive-intervenant__video,
  .archive-intervenant__photos {
    margin-left: -6.2%;
    margin-right: -6.2%;
  }
}
@media only screen and (min-width: 54.0625em) {
  .archive-intervenant__col-bio {
    margin-right: 5%;
    width: 30%;
  }
  .archive-intervenant__col-talk {
    float: right;
    width: 65%;
  }
  .archive-intervenant__video {
    float: right;
    width: 65%;
  }
}
.archive-intervenant__video {
  margin-bottom: 2rem;
}

.actualites {
  --unit: var(--unit-large);

}
.actualite__link {
  color: #333;
}
.actualite__link .actualite__photo {
  display: block;
  margin: 0 auto;
  outline: 1px solid #e8e8e8;
}
.actualite__link:hover .actualite__photo {
  outline: 3px solid #ec1015;
}
.actualite {
  padding-bottom: 2rem;
}
.actualite-home {
  align-items: center;
  margin: 0 8%;
}
.actualite-texte {
  --gap: var(--gap-small);
}
.actualite__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.actualite__subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.actualite__date {
  color: #777;
  display: inline-block;
  font-size: 1.25rem;
}
.actualite__summary {
  font-size: 1.25rem;
}
.page-actualite__photo {
  display: block;
  margin: 0 auto 0.5em auto;
  outline: 1px solid #e8e8e8;
}
.page-actualite__credit {
  color: #888;
  font-weight: 300;
  text-align: right;
}
.page-actualite__date {
  display: block;
  font-weight: 300;
  margin: 1em 0;
}
.page-actualite__summary {
  font-size: 1.125em;
}
.page-actualite__links {
  margin: 1em 0;
}
.page-actualite__url {
  color: #777;
}
.page-actualite__url:hover {
  color: #ec1015;
}
.page-actualite__url::before {
  color: #777;
  content: "» ";
}

.exposant {
  padding: 2rem 0;
}
.exposant + .exposant {
  border-top: 1px solid #e7e4e4;
}
.exposant:first-child {
  border-top: 1px solid #e7e4e4;
}
h2.exposant__title,
h3.exposant__title {
  margin-bottom: 0.25em;
  margin-top: 0;
}
.exposant__logo {
  text-align: center;
}
.exposant__texte p {
  margin-bottom: 0.25em;
}
.exposant__logo__inner {
  aspect-ratio: 1;
  background-color: white;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  padding: 1rem;
}
.village + .village {
  margin-top: 2rem;
}
.old-village {
  background-color: #fef7ed;
  margin-bottom: 2rem;
}

.pagination {
  margin-bottom: 3em;
  text-align: center;
}
.pagination__item {
  display: inline-block;
  margin: 0 0.5em;
}
.pagination__link {
  border: 1px solid #e7e4e4;
  color: #1a1717;
  font-size: 1.3125rem;
  padding: 0.5rem 1rem;
}
.pagination__link:hover {
  border-color: #ec1015;
}
.pagination__link--active {
  border-color: #ec1015;
}
.pagination__link--off {
  border: 3px solid #e7e4e4;
  color: #ccc;
  cursor: default;
  font-size: 1.3125rem;
  padding: 0.5rem 1rem;
}

.devenez {
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2.5rem;
}
.devenez h4 {
  font-size: clamp(1.475rem, 1.5vw + 0.9rem, 1.875rem);
  margin: 0 0 2rem;
}
.devenez-texte {
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
}
.devenez img {
  align-self: center;
  margin-top: auto;
}
.devenez .bouton {
  align-self: center;
}
.devenez-iconnecteur {
  background: linear-gradient(0deg, #0F669A 0%, rgba(15, 102, 154, 0) 100%);
}
.devenez-partenaire {
  background: linear-gradient(0deg, #7D8729 0%, rgba(125, 135, 41, 0) 100%);
}
.devenez-benevole {
  background: linear-gradient(0deg, #F07B33 0%, rgba(240, 123, 51, 0) 100%);
}

/* Twitter feed */
.timeline-Header {
  display: none;
}
.home-twitter__feed {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 46em) {
  .home-twitter__feed {
    margin-right: 7%;
  }
}
.home-twitter__link {
  color: #f62e28;
  display: table;
  font-size: 1.3125rem;
  margin: 1rem auto 0;
  padding-right: 20px;
}
.home-twitter__link:hover {
  color: #f62e28;
}

.programme__title {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}
.programme__subtitle {
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  text-align: center;
}
.programme__etapes {
  margin: 1.5rem 0;
  text-align: center;
}
.programme__info {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 1.5rem;
  float: left;
  text-align: center;
  width: 100%;
}
.programme__lieu {
  display: inline-block;
  font-size: 1.7rem;
  margin-top: 1.5rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.programme__lieu::before {
  content: "";
  background: url("/assets/images/p-pin.svg") center top no-repeat;
  opacity: 0.15;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.splide__arrow--prev,
.splide__arrow--next {
  background-color: #404754;
  border-width: 0;
  border-radius: 50%;
  color: #fff;
  z-index: 1;

  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
}

.slider__prev--photos {
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: 5%;
  background-color: #fff;
  color: #333;
}
.slider__next--photos {
  cursor: pointer;
  position: absolute;
  top: 40%;
  right: 5%;
  background-color: #fff;
  color: #333;
}
.splide__arrow:hover,
.slider__next--photos:hover {
  background-color: #ec1015;
}

.slider__prev--videos {
  cursor: pointer;
  position: absolute;
  top: 40%;
  left: 0;
}
.slider__next--videos {
  cursor: pointer;
  position: absolute;
  top: 40%;
  right: 0;
}

.slider--photos img {
  max-width: 100%;
  max-height: 400px;
}

.page-section__equipe {
  border-top: 2px solid #e5e5e5;
  padding: 2rem 1.5rem;
}
.page-equipe__membre {
  --gap: var(--gap-small);
  margin-bottom: 1.5rem;
}
.page-equipe__photo  {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 1px #333;
  overflow: hidden;
}
.page-equipe__photo img {
  width: 100%;
}
.page-equipe__nom {
  font-weight: bold;
  font-size: 1.125em;
  text-transform: uppercase;
}
.page-equipe__responsabilite {
  font-size: 1.125rem;
}
.page-equipe__bio {
  border-top: 1px solid #ccc;
  color: #666;
  padding-top: var(--gap-small);
}
.page-equipe__reseau:not(:last-child)::after {
  color: #333;
  content: "– ";
  margin: 0 .25em;
}
.page-equipe__reseau {
  white-space: nowrap;
}

.iconnecteurs {
  margin-bottom: 2rem;
}
.iconnecteurs:after {
  content: " ";
  display: table;
  clear: both;
}
.iconnecteur {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin-bottom: 3.5rem;
  padding: 1rem 0 3rem;
  position: relative;
  width: 100%;
}
.iconnecteurs-logo {
  display: block;
  margin: 0 auto 3;
}
.iconnecteur__photo {
  text-align: center;
  width: 100%;
}
.iconnecteur__photo img {
  border-radius: 100%;
  max-width: 90px;
}
.iconnecteur--double .iconnecteur__logo {
  float: right;
  width: 55%;
}
.iconnecteur--double .iconnecteur__photo {
  float: left;
  width: 37%;
}
.iconnecteur__images {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.iconnecteur__nom {
  bottom: 0.6rem;
  clear: both;
  color: #333;
  font-size: 0.875em;
  font-weight: bold;
  left: 0;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}
.iconnecteur:hover .iconnecteur__nom {
  color: #ec1015;
}

.iconnecteur__map-texte {
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 auto 2rem;
  text-align: left;
}
.iconnecteur__picto {
  position: absolute;
  top: 0;
  left: 0;
}

.iconnecteurs__banniere {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 1.5rem;
  text-align: center;
}
.iconnecteurs__logo {
  margin: 0 2em;
}
.iconnecteurs__description {
  display: inline-block;
  padding-top: 1em;
  vertical-align: bottom;
}
.iconnecteur__link {
  border-bottom: 1px dotted #ccc;
  display: flex;
  margin: 5px 25px !important;
  padding: 0.5em 0;
}
.iconnecteur__reserver {
  margin-left: auto;
}

.page-video {
  border-top: 2px solid #e5e5e5;
  clear: left;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.page-video__subtitle {
  color: #333;
  font-weight: bold;
}

.videos-filtres {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 1.5em;
}
.videos-filtres__titre {
  font-weight: bold;
}
.videos-filtre__input-wrapper {
  display: inline-block;
  margin-left: 1.5em;
}
.videos-filtre__input {
  margin-left: 0.5em;
}
.videos-filtre__input--text {
  padding: 0.2em 0.4em;
}

.list_tag,
.list_annee {
  display: none;
}

.page-apropos__subtitle {
  color: #ec1015;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0;
}
.page-apropos__col {
  font-size: 1.125rem;
  line-height: 1.5;
}

.u-md-text ul,
.u-md-text ol {
  padding-left: 1.3em;
}
.u-md-text ul li {
  list-style-type: disc;
  margin-bottom: 0.3em;
}
.u-md-text ol li {
  list-style-type: decimal;
  margin-bottom: 0.3em;
}
.u-md-text blockquote {
  border-left: 3px solid #ccc;
  padding-left: 1em;
}
.u-md-text--large {
  font-size: 1.25em;
}

.embed {
  width: 100%;
}
.embed__thumb > img {
  max-width: 50%;
}



.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.icon-contact {
  background: url('/assets/images/contact.svg') no-repeat;
}
.icon-facebook {
  background: url('/assets/images/facebook.svg') no-repeat;
}
.icon-twitter {
  background: url('/assets/images/twitter.svg') no-repeat;
}
.icon-youtube {
  background: url('/assets/images/youtube.svg') no-repeat;
}
.icon-flickr {
  background: url('/assets/images/flickr.svg') no-repeat;
}
.icon-linkedin {
  background: url('/assets/images/linkedin.svg') no-repeat;
}

.social {
  background-color: #243553;
}
.social-networks {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-big);
  justify-content: center;
}
.social-titre {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icons-wrapper {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
}

.newsletter {
  background-color: #f4ac42;
}
.newsletter-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gap);
  row-gap: var(--gap-small);
  justify-content: center;
}
.newsletter-titre {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.colophon {
  border-top: 2px solid #ec1015;
  padding-top: 4rem;
}

footer {
  clear: both;
}

.footer {
  padding: 1.5rem 1.5rem 4rem;
}

.identite-titre {
  color: #ec1015;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
}
.identite-slogan {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
}
.identite-date {
  color: #777;
  font-size: 1.5rem;
}
.identite-lieu {
  font-size: 1.5rem;
}
.footer-link {
  color: #333;
  text-decoration: underline;
  white-space: nowrap;
}
.footer-text {
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.tedx {
  background-color: #fef7ed;
}
.tedx-text {
  font-size: 0.875em;
  line-height: 1.25;
  text-align: center;
}

/* Formulaire */
.contact-section {
  font-size: 1.125rem;
  margin: 0 auto 3rem;
  max-width: 46.35rem;
}
.contact-form {
  clear: both;
  margin-bottom: 2em;
}
.form__label {
  display: block;
}
.form__text {
  box-sizing: border-box;
  width: 100%;
}
.form__textarea {
  box-sizing: border-box;
  min-height: 5em;
  width: 100%;
}
.form__select {
  display: block;
}
.form__element {
  clear: left;
  margin-bottom: 1em;
}
@media only screen and (max-width: 46em) {
  .contact-form {
    padding: 0 3%;
  }
}
@media only screen and (min-width: 46.0625em) and (max-width: 62.5em) {
  .contact-form {
    padding: 0 6%;
  }
}
@media only screen and (min-width: 46.0625em) {
  .form__element--small {
    clear: none;
    float: left;
    width: 47%;
  }
  .form__element--small:nth-child(2n) {
    margin-left: 6%;
  }
}
@media only screen and (min-width: 62.5625em) {
  .contact-form {
    padding: 0 9%;
  }
}

input[type^="email"],
input[type^="text"],
input[type^="number"],
textarea {
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #eee;
  padding: 0.5em 0.6em;
}
select {
  border: 1px solid #ccc;
  margin-bottom: 1em;
}
button[type^="submit"] {
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 24' width='13' height='24'><path fill='none' stroke='currentcolor' d='M1 1l11 11-11 11'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-radius: 30px;
  border: 1px solid #ec1015;
  clear: left;
  color: #333;
  cursor: pointer;
  display: table;
  font-family: "Public Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 1rem auto 0;
  padding: 0.5rem 3rem 0.5rem 1.5625rem;
}
.form__label.required:after {
  color: #ee4e22;
  content: " *";
  font-weight: bold;
}
.form__input--erroneous,
.form__message--error {
  color: red;
}
.form__message--success {
  color: green;
  margin-bottom: 1em;
}
.form__radios {
  text-align: center;
  margin-bottom: 1em;
}
.form__radio {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 -1px 3px #eee;
  cursor: pointer;
  display: inline-block;
  margin: 0 1em;
  padding: 1em;
}
.form__radio--input {
  margin-right: 0.5em;
}
.form__checkboxes {
  margin-bottom: 1em;
}
.form__checkbox {
  border: 1px dotted #ccc;
  cursor: pointer;
  padding: 0.5em;
}
.form__checkbox--input {
  margin-right: 0.5em;
}

.contact__link {
  display: table;
  margin: 0 auto;
  padding: 0.5rem 40px 0.5rem 1rem;
}
.contact__link:hover {
  color: #f62e28;
}

/* Utility styles */

.uniform__potty {
  opacity: 0;
  position: absolute;
  z-index: -5;
}

.tac_float {
  padding: 0.2em;
}

/* Gridless */

.box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.box-cleaner {
  margin: 3em 0;
}
.item {
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
}
@media only screen and (min-width: 64em) {
  .item--double {
    flex-basis: 585px;
  }
}
.item--small {
  flex-basis: 220px;
}
.item--large {
  flex-basis: 350px;
}
.item--xlarge {
  flex-basis: 450px;
}
.item--wide {
  flex-basis: 800px;
}
.item--border {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5em;
  margin-bottom: 0;
}
.item--center {
  text-align: center;
}

/*
 * Switch
 */
.switch {
  display: flex;
  flex-wrap: wrap;
  --modifier: calc(40rem - 100%);
  margin: calc(var(--margin) * -1);
}

.switch > * {
  flex-grow: 1;
  flex-basis: calc(var(--modifier) * 999);
}
.switch > hr {
  background-color: #ccc;
  border: none;
  height: auto;
  flex-grow: 0;
  flex-basis: calc(var(calc(1px - 100%)) * 999);
  min-height: 1px;
  min-width: 1px;
  margin: 0;
}

.box--grid:after {
  box-sizing: border-box;
  content: "";
  color: #999;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  margin: 0 25px;
}
.box--grid:before {
  box-sizing: border-box;
  content: "";
  color: #999;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  margin: 0 25px;
  order: 999;
}
.grid--small::before,
.grid--small::after {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 220px;
  flex: 1 1 220px;
}
.grid--large::before,
.grid--large::after {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 450px;
  flex: 1 1 450px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 190px;
}
.slider__prev[aria-disabled="true"],
.slider__next[aria-disabled="true"] {
  opacity: 0.3;
}

.no-js .no-js-hidden {
  display: none;
}

/* ==========================================================================
   Helper classes
   ==========================================================================
*/

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*Fonts*/

@font-face {
  font-display: swap;
  font-family: 'Public Sans';
  src: url('/assets/fonts/PublicSansVariable.woff2') format('woff2');
  text-rendering: optimizeLegibility;
  font-feature-settings: "frac";
  font-weight: 100 900;
}

@font-face {
  font-display: swap;
  font-family: 'Public Sans';
  src: url('/assets/fonts/PublicSansVariable-Italic.woff2') format('woff2');
  font-feature-settings: "frac";
  font-style: italic;
  font-weight: 100 900;
  text-rendering: optimizeLegibility;
}
