@charset "UTF-8";
/** Colors */
/** Box Model  */
/*Wrapper & gutter*/
/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * 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; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
/* stylelint-disable selector-list-comma-newline-after */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 24px; }

/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 24px; }

/* stylelint-enable selector-list-comma-newline-after */
/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */ }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333; }

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.71429; }

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2; }

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

/*! Flickity v2.0.10
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
     transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #09F;
          box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/** Import theme styles */
html {
  overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'omnes-pro',helvetica;
  color: #fff;
  font-weight: 500; }

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

h1 {
  font-weight: 900;
  font-style: italic; }

/*@font-face {
  font-family: omnes;
  src : url('../../resources/assets/fonts/omnes/omnesReg.ttf'),
        url('../../resources/assets/fonts/omnes/omnesReg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}*/
.custom-button {
  font-family: 'Kalam', cursive;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-family: 'omnes-pro';
  text-transform: uppercase; }
  @media (max-width: 46.24em) {
    .custom-button {
      font-size: 18px; } }
  .custom-button svg {
    fill: #fff;
    height: 20px;
    width: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: 10px; }
  .custom-button:hover svg {
    -webkit-transform: translateX(10px);
         -o-transform: translateX(10px);
            transform: translateX(10px); }

@media (min-width: 46.25em) {
  .c-header .custom-button {
    margin-bottom: -15px; } }

.c-infographie .custom-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .c-infographie .custom-button svg {
    fill: #0b77bc; }

.c-answer__testimonial .custom-button {
  position: absolute;
  bottom: -60px;
  left: 0;
  color: #fff; }
  @media (max-width: 46.24em) {
    .c-answer__testimonial .custom-button {
      left: 50%;
      margin-left: -125px;
      width: 250px;
      bottom: -80px; } }

.c-answer--video .c-answer__testimonial .custom-button {
  position: absolute;
  bottom: -60px;
  left: 50px;
  color: #fff; }
  @media (max-width: 46.24em) {
    .c-answer--video .c-answer__testimonial .custom-button {
      left: 50%;
      margin-left: -125px;
      width: 250px;
      bottom: -80px; } }

/** Search form */
/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto; }

.aligncenter {
  display: block;
  margin: 1rem auto;
  height: auto; }

.alignleft,
.alignright {
  margin-bottom: 1rem;
  height: auto; }

@media (min-width: 30rem) {
  .alignleft {
    float: left;
    margin-right: 1rem; }
  .alignright {
    float: right;
    margin-left: 1rem; } }

/** Captions */
/** Text meant only for screen readers */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: #000;
  background: #fff; }

.c-page .c-questions .flickity-prev-next-button svg {
  stroke: #fff;
  fill: #fff; }

@media (max-width: 46.24em) {
  .c-page .c-questions {
    margin-top: 40px;
    margin-bottom: 0px; } }

@media (min-width: 46.25em) {
  .c-page .c-questions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.c-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  padding-right: 110px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  -webkit-transform: rotate(-2deg);
       -o-transform: rotate(-2deg);
          transform: rotate(-2deg); }
  @media (max-width: 46.24em) {
    .c-question {
      height: 270px;
      font-size: 21px;
      padding: 30px;
      padding-right: 70px; } }
  .c-question img {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg); }
  .c-question__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    cursor: pointer; }
    @media (min-width: 46.25em) {
      .c-question__wrapper {
        width: 50%; } }
    @media (min-width: 61.25em) {
      .c-question__wrapper {
        width: 33.3%; } }
    .c-question__wrapper.js-empty-question {
      cursor: default; }
      .c-question__wrapper.js-empty-question .c-question {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-right: 90px;
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding-top: 85px;
        padding-bottom: 85px; }
      .c-question__wrapper.js-empty-question span {
        color: transparent; }
      @media (max-width: 46.24em) {
        .c-question__wrapper.js-empty-question {
          display: none; } }
    .c-question__wrapper:hover .c-question__question-mark {
      -webkit-animation-name: bobby, bobbouY;
           -o-animation-name: bobby, bobbouY;
              animation-name: bobby, bobbouY;
      -webkit-animation-duration: .3s, 1.5s;
           -o-animation-duration: .3s, 1.5s;
              animation-duration: .3s, 1.5s;
      -webkit-animation-delay: 0s, .3s;
           -o-animation-delay: 0s, .3s;
              animation-delay: 0s, .3s;
      -webkit-animation-iteration-count: 1, infinite;
           -o-animation-iteration-count: 1, infinite;
              animation-iteration-count: 1, infinite;
      -webkit-animation-fill-mode: forwards;
           -o-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-animation-direction: normal, alternate;
           -o-animation-direction: normal, alternate;
              animation-direction: normal, alternate; }
  .c-question__portrait {
    position: absolute;
    right: 25px;
    width: 80px;
    bottom: 25px;
    height: 80px;
    width: 80px;
    border-radius: 40px; }
    @media (max-width: 46.24em) {
      .c-question__portrait {
        right: 5px;
        height: 80px;
        width: 80px; } }
  .c-question__question-mark {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 50px; }
    .c-question__question-mark--large {
      width: 80px; }
    @media (max-width: 46.24em) {
      .c-question__question-mark {
        right: 5px; } }

.c-header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding: 60px 60px 40px 60px; }
  @media (max-width: 46.24em) {
    .c-header__row {
      padding: 60px 25px 40px 25px; } }

.c-header__column {
  padding: 0;
  position: relative;
  padding-top: 140px;
  padding-left: 20px; }
  @media (min-width: 46.25em) {
    .c-header__column {
      padding-top: 190px;
      padding-bottom: 40px; } }
  @media (min-width: 46.25em) {
    .c-header__column {
      /*padding-top:280px;*/ } }
  @media (min-width: 61.25em) {
    .c-header__column {
      padding-left: 360px;
      min-width: 800px;
      padding-top: 0;
      padding-bottom: 70px;
      /*width: 800px;*/ } }
  .c-header__column p {
    font-size: 21px;
    line-height: 25px;
    margin-top: 0; }
    @media (max-width: 46.24em) {
      .c-header__column p {
        font-size: 18px;
        line-height: 22px; } }

.c-header__footer {
  padding-top: 55%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-image: url("https://www.ania.net/questcequonmange/ania/resources/assets/images/headerFooterBGSmall2.jpg"); }
  .c-header__footer .button {
    font-family: 'Kalam', cursive;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .c-header__footer .button svg {
      fill: #fff;
      height: 20px;
      width: 30px;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      margin-left: 10px; }
    .c-header__footer .button:hover svg {
      -webkit-transform: translateX(10px);
           -o-transform: translateX(10px);
              transform: translateX(10px); }
  @media (min-width: 61.25em) {
    .c-header__footer {
      margin-top: -70px; } }
  @media (min-width: 46.25em) {
    .c-header__footer {
      padding-top: 25%;
      background-image: url("https://www.ania.net/questcequonmange/ania/resources/assets/images/headerFooterBG.jpg"); } }

.c-header__logo {
  width: 160px;
  height: 65px; }
  @media (max-width: 61.24em) {
    .c-header__logo {
      position: absolute;
      right: 60px; } }
  @media (max-width: 46.24em) {
    .c-header__logo {
      right: 15px;
      width: 100px; } }

.c-header__title {
  position: absolute;
  width: 400px;
  top: 0;
  left: 0;
  max-width: 100%;
  padding-top: 400px; }
  .c-header__title svg {
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin-top: 20px;
    margin-left: -10px; }
    @media (max-width: 46.24em) {
      .c-header__title svg {
        margin-top: 10px;
        width: 110%;
        margin-left: -12px; } }
    @media (min-width: 61.25em) {
      .c-header__title svg {
        height: 270px; } }
  .c-header__title h1 {
    position: absolute;
    max-width: 80%;
    margin: 0 auto !important;
    left: 10%;
    z-index: 3;
    text-shadow: -1px 5px 2px rgba(150, 150, 150, 0.4); }
  @media (max-width: 61.24em) {
    .c-header__title {
      width: 340px;
      padding-top: 340px; } }
  @media (max-width: 46.24em) {
    .c-header__title {
      width: 200px;
      padding-top: 200px; } }

.c-header__arrowRed {
  position: absolute;
  bottom: 58px;
  right: 0;
  z-index: 4; }
  @media (max-width: 61.24em) {
    .c-header__arrowRed {
      display: none; } }

.c-header__arrowWhiteDown {
  width: 30px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -15px; }
  @media (min-width: 61.25em) {
    .c-header__arrowWhiteDown {
      display: none; } }

.c-header__arrowRed {
  position: absolute;
  bottom: 62px;
  right: 0;
  z-index: 4; }
  @media (max-width: 61.24em) {
    .c-header__arrowRed {
      display: none; } }

.c-header__arrowRedDown {
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 4; }
  @media (min-width: 46.25em) {
    .c-header__arrowRedDown {
      bottom: 80px;
      right: 30px; } }
  @media (min-width: 61.25em) {
    .c-header__arrowRedDown {
      display: none; } }

.c-header__polaroid {
  position: absolute;
  top: 100%;
  max-height: 120px;
  max-width: 120px;
  margin-top: -50px;
  z-index: 4;
  left: 0;
  -webkit-transform: translateX(40px);
       -o-transform: translateX(40px);
          transform: translateX(40px); }
  @media (max-width: 61.24em) {
    .c-header__polaroid {
      max-width: 100px; } }
  @media (min-width: 61.25em) {
    .c-header__polaroid {
      position: relative;
      max-width: 110%;
      -webkit-transform: translateX(10px);
           -o-transform: translateX(10px);
              transform: translateX(10px);
      margin-bottom: -60px;
      right: 0px;
      left: auto;
      bottom: auto;
      max-height: none;
      margin-top: 10px;
      top: auto; } }

.c-header__assiette {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  z-index: 2;
  width: 380px; }
  @media (max-width: 61.24em) {
    .c-header__assiette {
      width: 320px; } }
  @media (max-width: 46.24em) {
    .c-header__assiette {
      width: 200px; } }

.c-header__mobile {
  position: absolute;
  top: 100%;
  display: none;
  z-index: 4;
  right: 0;
  left: 50%; }
  @media (min-width: 46.25em) {
    .c-header__mobile {
      -webkit-transform: rotate(-5deg);
           -o-transform: rotate(-5deg);
              transform: rotate(-5deg);
      top: -12px;
      left: 66%;
      display: block; } }

.c-header__mobileSmall {
  position: absolute;
  height: 114px;
  bottom: 0;
  margin-bottom: -40px;
  z-index: 4;
  right: 0; }
  @media (min-width: 46.25em) {
    .c-header__mobileSmall {
      display: none; } }

.c-header__book {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 4;
  margin-top: -150px;
  height: 200px; }
  @media (min-width: 61.25em) {
    .c-header__book {
      height: 470px;
      margin-top: -210px; } }
  @media (max-width: 46.24em) {
    .c-header__book {
      margin-top: -80px;
      height: 180px; } }

.c-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .c-footer .requiredSymbol {
    opacity: 0;
    color: #ffcc00;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-weight: bold;
    font-size: 25px;
    line-height: 0; }
    .c-footer .requiredSymbol.on {
      opacity: 1; }
  @media (min-width: 46.25em) {
    .c-footer {
      padding: 20px; } }
  .c-footer__form {
    background-color: #0b77bc;
    padding: 2px 10px;
    max-width: 100%;
    text-align: center;
    font-size: 18px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    @media (min-width: 46.25em) {
      .c-footer__form {
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 10px;
        max-width: 890px; } }
    @media (max-width: 46.24em) {
      .c-footer__form label {
        float: left;
        margin-bottom: 5px; } }
    .c-footer__form input {
      border-radius: 10px;
      border: none;
      padding: 2px;
      width: 400px;
      max-width: 100%; }
      @media (min-width: 46.25em) {
        .c-footer__form input {
          margin-left: 10px;
          margin-right: 10px; } }
    .c-footer__form a {
      text-decoration: none;
      color: #fff; }
      @media (max-width: 46.24em) {
        .c-footer__form a {
          padding: 10px;
          display: block; } }

@-webkit-keyframes bobby {
  100% {
    -webkit-transform: translateY(-8px); } }

@-webkit-keyframes bobbou {
  0% {
    -webkit-transform: translateY(-8px) translateX(6px); }
  50% {
    -webkit-transform: translateY(-4px) translateX(0px); }
  100% {
    -webkit-transform: translateY(-8px) translateX(6px); } }

@-webkit-keyframes bobbou2 {
  0% {
    -webkit-transform: translateY(-8px) translateX(-6px) rotate(-105deg); }
  50% {
    -webkit-transform: translateY(-4px) translateX(0px) rotate(-105deg); }
  100% {
    -webkit-transform: translateY(-8px) translateX(-6px) rotate(-105deg); } }

@-webkit-keyframes bobbou3 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-57deg); }
  50% {
    -webkit-transform: translateY(-4px) rotate(-57deg); }
  100% {
    -webkit-transform: translateY(-8px) rotate(-57deg); } }

@-webkit-keyframes bobbouY {
  0% {
    -webkit-transform: translateY(-8px); }
  50% {
    -webkit-transform: translateY(-4px); }
  100% {
    -webkit-transform: translateY(-8px); } }

/*.c-opacityEffect{
  opacity: 0;
  transition: all 0.8s ease-in-out 0.3s;
  &.is-visible{
    opacity: 1;
  }
}
.c-translate{
  transition: all 0.5s ease-in-out;
  &--left{
    transform: translateX(-100%);
  }
  &--right{
    transform: translateX(100%);
  }
  &.is-visible{
    transform: translate(0);
  }
}*/
.clouding {
  -webkit-animation-name: bobby, bobbou;
       -o-animation-name: bobby, bobbou;
          animation-name: bobby, bobbou;
  -webkit-animation-duration: .3s, 1.5s;
       -o-animation-duration: .3s, 1.5s;
          animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
       -o-animation-delay: 0s, .3s;
          animation-delay: 0s, .3s;
  -webkit-animation-iteration-count: 1, infinite;
       -o-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
       -o-animation-direction: normal, alternate;
          animation-direction: normal, alternate; }
  @media (max-width: 46.24em) {
    .clouding {
      -webkit-animation-name: bobby, bobbou2;
           -o-animation-name: bobby, bobbou2;
              animation-name: bobby, bobbou2; } }

.clouding2 {
  -webkit-animation-name: bobby, bobbou2;
       -o-animation-name: bobby, bobbou2;
          animation-name: bobby, bobbou2;
  -webkit-animation-duration: .3s, 1.5s;
       -o-animation-duration: .3s, 1.5s;
          animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .75s;
       -o-animation-delay: 0s, .75s;
          animation-delay: 0s, .75s;
  -webkit-animation-iteration-count: 1, infinite;
       -o-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
       -o-animation-direction: normal, alternate;
          animation-direction: normal, alternate; }
  @media (max-width: 46.24em) {
    .clouding2 {
      -webkit-animation-name: bobby, bobbou;
           -o-animation-name: bobby, bobbou;
              animation-name: bobby, bobbou; } }

.cloudingY {
  -webkit-animation-name: bobby, bobbouY;
       -o-animation-name: bobby, bobbouY;
          animation-name: bobby, bobbouY;
  -webkit-animation-duration: .3s, 1.5s;
       -o-animation-duration: .3s, 1.5s;
          animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .75s;
       -o-animation-delay: 0s, .75s;
          animation-delay: 0s, .75s;
  -webkit-animation-iteration-count: 1, infinite;
       -o-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
       -o-animation-direction: normal, alternate;
          animation-direction: normal, alternate; }

.u-hidden {
  display: none; }

.c-page {
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .c-page h1, .c-page h2 {
    color: #0b77bc;
    margin: 0; }
  .c-page h1 {
    font-size: 4rem;
    line-height: 4rem;
    top: 50px;
    -webkit-transform: rotate(-2deg);
         -o-transform: rotate(-2deg);
            transform: rotate(-2deg);
    text-align: center; }
    @media (max-width: 61.24em) {
      .c-page h1 {
        font-size: 3rem;
        line-height: 3rem;
        top: 30px; } }
    @media (max-width: 46.24em) {
      .c-page h1 {
        font-size: 38px;
        line-height: 2rem;
        top: 30px; } }
  .c-page h2 {
    font-size: 3rem;
    font-weight: 600;
    -webkit-transform: rotate(-2deg);
         -o-transform: rotate(-2deg);
            transform: rotate(-2deg);
    margin-top: 10px; }
    @media (max-width: 46.24em) {
      .c-page h2 {
        font-size: 28px; } }
  .c-page .flickity-prev-next-button {
    background: none;
    min-width: 50px;
    min-height: 50px;
    padding: 0; }
    @media (max-width: 46.24em) {
      .c-page .flickity-prev-next-button {
        max-width: 30px;
        max-height: 30px;
        min-width: unset;
        min-height: unset; } }
    .c-page .flickity-prev-next-button svg {
      stroke-width: 10px;
      stroke: #0b77bc;
      fill: #0b77bc;
      min-width: 50px;
      min-height: 50px;
      stroke-miterlimit: 10;
      stroke-linecap: round;
      stroke-linejoin: round;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
      @media (max-width: 46.24em) {
        .c-page .flickity-prev-next-button svg {
          max-width: 30px;
          max-height: 30px;
          min-width: unset;
          min-height: unset;
          stroke-width: 5px; } }
    .c-page .flickity-prev-next-button.previous {
      left: -10px; }
      @media (max-width: 46.24em) {
        .c-page .flickity-prev-next-button.previous {
          left: 0; } }
    .c-page .flickity-prev-next-button.next {
      right: -10px; }
      @media (max-width: 46.24em) {
        .c-page .flickity-prev-next-button.next {
          right: 0; } }

body#tinymce {
  margin: 12px !important; }

.c-answers {
  display: none; }

.c-answer {
  overflow: hidden;
  width: 100%;
  padding: 60px;
  padding-bottom: 0;
  position: relative; }
  @media (max-width: 61.24em) {
    .c-answer {
      padding: 60px 25px;
      padding-bottom: 0; } }
  .c-answer .c-share.small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    text-align: center; }
    @media (min-width: 61.25em) {
      .c-answer .c-share.small {
        display: none; } }
  @media (max-width: 61.24em) {
    .c-answer .c-share.large {
      display: none; } }
  @media (max-width: 61.24em) {
    .c-answer__column .c-share {
      position: relative !important; } }
  .c-answer__column video {
    border: solid 4px; }
    @media (max-width: 61.24em) {
      .c-answer__column video {
        margin-bottom: 20px; } }
  @media (min-width: 61.25em) {
    .c-answer__column:first-child {
      width: 60%;
      min-width: 520px; } }
  @media (min-width: 61.25em) {
    .c-answer__column:last-child {
      padding-left: 20px; } }
  .c-answer__title {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 25px;
    padding-right: 90px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    font-size: 26px;
    -webkit-transform: rotate(-2.6deg);
         -o-transform: rotate(-2.6deg);
            transform: rotate(-2.6deg);
    -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
            box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
    margin-bottom: 60px; }
    .c-answer__title--paniere {
      max-width: 350px; }
    @media (max-width: 61.24em) {
      .c-answer__title {
        font-size: 21px; } }
    @media (max-width: 61.24em) {
      .c-answer__title {
        margin-bottom: 140px; } }
  .c-answer__testimonial {
    position: relative;
    width: 100%;
    max-width: 650px;
    color: #0d61a8;
    background-color: #fff;
    padding: 25px;
    margin: 0 auto;
    font-size: 20px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: background 0.5s ease-in-out 0.6s;
    -o-transition: background 0.5s ease-in-out 0.6s;
    transition: background 0.5s ease-in-out 0.6s; }
    @media (max-width: 46.24em) {
      .c-answer__testimonial {
        font-size: 18px;
        margin-bottom: 80px; } }
    .c-answer__testimonial p {
      margin-top: 0;
      margin-bottom: 0;
      opacity: 0;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -webkit-transition-delay: 0.6s;
           -o-transition-delay: 0.6s;
              transition-delay: 0.6s; }
    .c-answer__testimonial .red {
      color: #ff0000; }
    .c-answer__testimonial .largeQuote {
      font-weight: 900;
      font-size: 3rem;
      display: inline-block;
      line-height: 26px; }
      .c-answer__testimonial .largeQuote:first-child {
        margin-right: 20px; }
      .c-answer__testimonial .largeQuote:last-child {
        margin-left: 20px; }
    .c-answer__testimonial__decoration {
      position: absolute;
      width: 100%;
      bottom: 100%;
      left: 0;
      fill: #fff;
      z-index: 4;
      opacity: 0;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -webkit-transition-delay: 0.6s;
           -o-transition-delay: 0.6s;
              transition-delay: 0.6s;
      height: 12px; }
      .c-answer__testimonial__decoration--bottom {
        top: auto;
        bottom: 0;
        -webkit-transform: translateY(100%) scaleX(-1);
             -o-transform: translateY(100%) scaleX(-1);
                transform: translateY(100%) scaleX(-1);
        height: auto;
        display: none; }
      .c-answer__testimonial__decoration--top {
        top: auto;
        top: 0;
        bottom: auto;
        -webkit-transform: translateY(-100%);
             -o-transform: translateY(-100%);
                transform: translateY(-100%);
        height: auto;
        display: none; }
      .c-answer__testimonial__decoration--left {
        width: 60px;
        right: 100%;
        left: auto;
        top: -15px;
        bottom: auto;
        height: 80px;
        -webkit-transition-delay: 0.6s;
             -o-transition-delay: 0.6s;
                transition-delay: 0.6s; }
        @media (max-width: 61.24em) {
          .c-answer__testimonial__decoration--left {
            display: none; } }
      .c-answer__testimonial__decoration--middle {
        width: 40px;
        top: 80px; }
      .c-answer__testimonial__decoration--topSmall {
        bottom: 100%;
        top: auto;
        left: 110px;
        right: auto;
        width: 50px; }
        @media (min-width: 61.25em) {
          .c-answer__testimonial__decoration--topSmall {
            display: none; } }
  .c-answer__studentImgFull {
    position: absolute;
    bottom: 0;
    left: 10px; }
    @media (max-width: 61.24em) {
      .c-answer__studentImgFull {
        display: none; } }
  .c-answer__footer {
    padding-top: 120px;
    margin-left: -60px;
    margin-right: -60px; }
    @media (max-width: 61.24em) {
      .c-answer__footer {
        padding-top: 70px;
        position: relative;
        margin-top: 100px;
        text-align: center; } }
    @media (max-width: 61.24em) {
      .c-answer__footer .c-share {
        left: 0;
        right: 0;
        text-align: center; } }
  .c-answer__brandLogo {
    position: absolute;
    left: 100%;
    margin-left: -40px;
    top: 0;
    margin-top: -130px;
    z-index: 15; }
    @media (max-width: 61.24em) {
      .c-answer__brandLogo {
        right: 0;
        left: auto;
        bottom: 100%;
        top: auto;
        margin-bottom: -30px; } }
    @media (max-width: 46.24em) {
      .c-answer__brandLogo {
        max-width: 150px;
        right: -10px; } }
  .c-answer__plus {
    position: absolute;
    height: 50px;
    width: 50px;
    font-size: 50px;
    text-align: center;
    line-height: 40px;
    left: 50%;
    margin-left: -25px;
    background-color: #0b77bc;
    z-index: 5;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    bottom: -26px; }
  .c-answer__productImg2 {
    position: absolute;
    bottom: 100%;
    /*max-height: 100px;*/
    margin-bottom: -30px;
    margin-left: auto;
    max-width: 50%;
    max-height: 120px;
    left: 25%; }
    .c-answer__productImg2--coca {
      max-width: none;
      left: 50%;
      width: 300px;
      margin-left: -150px;
      margin-bottom: -33px; }
    .c-answer__productImg2--BC {
      max-width: none;
      left: 50%;
      width: 300px;
      margin-left: -150px;
      margin-bottom: -40px; }
    @media (min-width: 61.25em) {
      .c-answer__productImg2 {
        display: none; } }
  .c-answer__productImg {
    position: absolute;
    max-width: 90%;
    left: 50%;
    z-index: 6;
    /*    top: 100%;
    margin-top: 20px;
    margin-left: -90px;*/
    bottom: 0;
    margin-bottom: -130px;
    margin-left: 20px; }
    @media (max-width: 61.24em) {
      .c-answer__productImg {
        left: 50%;
        margin-left: -30%;
        display: none; } }
    .c-answer__productImg--kellogs {
      margin-bottom: -100px;
      margin-left: 70px; }
    .c-answer__productImg--paniere {
      left: 69%; }
    .c-answer__productImg--BC {
      left: 66%; }
      @media (min-width: 61.25em) {
        .c-answer__productImg--BC {
          width: 400px;
          bottom: -115px;
          margin-bottom: 0;
          left: 71%; } }
      @media (max-width: 61.24em) {
        .c-answer__productImg--BC {
          width: 400px;
          bottom: -115px;
          margin-bottom: 0;
          left: 71%; } }
  .c-answer__portrait {
    background-color: #fff;
    border: solid 4px #fff;
    border-radius: 50px;
    height: 100px;
    width: 100px;
    position: absolute;
    top: -20px;
    right: 100%;
    margin-right: 20px;
    display: none;
    opacity: 1;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s; }
    @media (max-width: 61.24em) {
      .c-answer__portrait {
        right: auto;
        left: 0;
        bottom: 100%;
        top: auto;
        margin-bottom: 20px;
        display: block; } }
  .c-answer__back {
    position: absolute;
    top: 60px;
    right: 60px;
    cursor: pointer;
    display: block; }
    .c-answer__back--relative {
      position: relative;
      bottom: 0; }
    @media (min-width: 61.25em) {
      .c-answer__back.fixed {
        visibility: hidden; } }
    .c-answer__back.fixedShow {
      position: fixed;
      top: 60px;
      z-index: 1000;
      margin-right: 0px;
      visibility: hidden; }
      @media (min-width: 61.25em) {
        .c-answer__back.fixedShow.fixed {
          visibility: visible; } }
    @media (max-width: 61.24em) {
      .c-answer__back {
        display: none;
        bottom: 80px;
        top: auto;
        left: 50%;
        right: auto;
        margin-left: -80px; } }
    .c-answer__back--relative {
      position: relative;
      display: none; }
      @media (max-width: 61.24em) {
        .c-answer__back--relative {
          display: block;
          bottom: 0;
          padding-top: 25px;
          padding-bottom: 25px; } }
  .c-answer__arrowWhite {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }
    @media (min-width: 61.25em) {
      .c-answer__arrowWhite.small {
        display: none; } }
    @media (max-width: 61.24em) {
      .c-answer__arrowWhite.large {
        display: none; } }
    @media (max-width: 46.24em) {
      .c-answer__arrowWhite {
        width: 100px; } }
    .c-answer__arrowWhite--down {
      bottom: 100%;
      top: auto;
      right: 100%;
      left: auto;
      margin-bottom: -80px;
      margin-right: -50px;
      height: 160px; }
      @media (max-width: 46.24em) {
        .c-answer__arrowWhite--down {
          width: auto; } }

@media (max-width: 61.24em) {
  .c-answer--video .flickity-prev-next-button {
    top: auto;
    bottom: 88vh; } }

.c-answer--video .c-answer__arrowWhite {
  max-width: 140px;
  left: -10px; }

.c-answer--video .c-answer__productImg {
  position: absolute;
  max-width: 90%;
  left: 100%;
  z-index: 6;
  bottom: 0;
  margin-bottom: -130px;
  margin-left: 20px; }
  .c-answer--video .c-answer__productImg--coca {
    width: 450px;
    bottom: 21px; }
    @media (max-width: 46.24em) {
      .c-answer--video .c-answer__productImg--coca {
        width: 316px;
        margin-bottom: -36px;
        max-width: none;
        left: auto; } }
  .c-answer--video .c-answer__productImg--lactel {
    bottom: 15px; }

.c-answer--video .c-answer__column--video {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .c-answer--video .c-answer__column--video iframe {
    border: 4px solid #fff; }
  @media (min-width: 61.25em) {
    .c-answer--video .c-answer__column--video {
      margin-left: 20px; } }

.c-answer--video .c-answer__column--video.playing .c-answer__play {
  opacity: 0; }

.c-answer--video .c-answer__play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -45px;
  margin-left: -35px;
  height: 90px;
  width: 90px;
  border-radius: 45px;
  border: 4px solid #fff;
  padding: 23px;
  opacity: 1; }
  .c-answer--video .c-answer__play svg {
    fill: #fff;
    height: 40px;
    width: 40px; }

.c-answer--video .c-answer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 61.25em) {
    .c-answer--video .c-answer__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.c-answer--video .c-answer__portrait {
  display: block; }

.c-answer--video .c-answer__title {
  margin-right: auto;
  margin-left: 0;
  -webkit-transform: skewX(-2.6deg) rotate(-2.6deg);
       -o-transform: skewX(-2.6deg) rotate(-2.6deg);
          transform: skewX(-2.6deg) rotate(-2.6deg); }
  @media (min-width: 46.25em) {
    .c-answer--video .c-answer__title {
      max-width: 80%; } }
  .c-answer--video .c-answer__title span {
    -webkit-transform: skewX(2.6deg);
         -o-transform: skewX(2.6deg);
            transform: skewX(2.6deg); }
  .c-answer--video .c-answer__title img {
    -webkit-transform: skewX(2.6deg);
         -o-transform: skewX(2.6deg);
            transform: skewX(2.6deg); }
  @media (min-width: 61.25em) {
    .c-answer--video .c-answer__title {
      margin-bottom: 50px; } }

.c-answer--video .c-answer__testimonial {
  width: auto; }
  @media (max-width: 46.24em) {
    .c-answer--video .c-answer__testimonial {
      font-size: 18px; } }
  @media (min-width: 61.25em) {
    .c-answer--video .c-answer__testimonial {
      margin-left: 140px; } }

@media (min-width: 61.25em) {
  .c-answer--video .c-answer__brandLogo {
    position: absolute;
    left: auto;
    margin-left: initial;
    right: 100%;
    margin-right: -40px;
    bottom: 0;
    top: auto;
    margin-bottom: -110px; } }

.c-answer.is-selected .c-answer__testimonial {
  background: white; }
  .c-answer.is-selected .c-answer__testimonial p {
    opacity: 1; }
  .c-answer.is-selected .c-answer__testimonial__decoration {
    opacity: 1; }

.c-answer.is-selected .c-answer__portrait {
  opacity: 1; }

.c-share {
  color: #0b77bc;
  position: absolute;
  right: 20px;
  bottom: 10px; }
  .c-share ul, .c-share span {
    display: inline-block;
    vertical-align: middle; }
  .c-share ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .c-share ul li {
      display: inline-block; }
      .c-share ul li a {
        height: 30px;
        width: 30px;
        padding: 4px;
        display: inline-block;
        border-radius: 24px;
        border: 1px solid #0b77bc;
        margin-left: 5px;
        margin-right: 5px; }
        .c-share ul li a:hover {
          -webkit-animation-name: bobby, bobbouY;
               -o-animation-name: bobby, bobbouY;
                  animation-name: bobby, bobbouY;
          -webkit-animation-duration: .3s, 1.5s;
               -o-animation-duration: .3s, 1.5s;
                  animation-duration: .3s, 1.5s;
          -webkit-animation-delay: 0s, .3s;
               -o-animation-delay: 0s, .3s;
                  animation-delay: 0s, .3s;
          -webkit-animation-iteration-count: 1, infinite;
               -o-animation-iteration-count: 1, infinite;
                  animation-iteration-count: 1, infinite;
          -webkit-animation-fill-mode: forwards;
               -o-animation-fill-mode: forwards;
                  animation-fill-mode: forwards;
          -webkit-animation-direction: normal, alternate;
               -o-animation-direction: normal, alternate;
                  animation-direction: normal, alternate; }
        .c-share ul li a svg {
          height: 20px;
          width: 20px;
          fill: #0b77bc; }

.FixedDiv {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 1280px;
  left: 0;
  margin: 0 auto;
  z-index: 10; }
  .FixedDiv .c-answer__back {
    visibility: hidden; }
  .FixedDiv .c-answer__back.fixed {
    visibility: visible;
    top: 0; }

.c-infographie {
  display: none;
  background-repeat: repeat-y;
  color: #0b77bc;
  padding: 60px;
  position: relative;
  padding-bottom: 0;
  /*Spécifique header*/ }
  .c-infographie__poster {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 4px solid #fff;
    background-position: center;
    background-size: cover; }
  @media (max-width: 61.24em) {
    .c-infographie {
      padding: 60px 25px;
      padding-bottom: 0; } }
  .c-infographie__linkArrow {
    position: absolute;
    top: -70px;
    left: 180px;
    z-index: 2; }
    @media (max-width: 61.24em) {
      .c-infographie__linkArrow {
        left: 50px;
        height: 150px; } }
  .c-infographie__pasteLeft {
    margin-left: -60px;
    -webkit-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .c-infographie__pasteLeft.is-visible {
      -webkit-transform: translateX(0);
           -o-transform: translateX(0);
              transform: translateX(0); }
  .c-infographie__footer {
    -webkit-box-shadow: 0px -10px 28px 0px rgba(0, 0, 0, 0.33);
            box-shadow: 0px -10px 28px 0px rgba(0, 0, 0, 0.33);
    margin-left: -60px;
    margin-right: -60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 60px;
    color: #000;
    font-style: italic; }
    @media (max-width: 46.24em) {
      .c-infographie__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; } }
    @media (max-width: 46.24em) {
      .c-infographie__footer__mention {
        width: 100%;
        display: block;
        color: #fff; } }
    .c-infographie__footer .c-share {
      right: 0;
      font-style: normal;
      bottom: -5px;
      display: inline-block; }
    @media (min-width: 46.25em) {
      .c-infographie__footer img {
        margin-right: 25px;
        margin-bottom: -5px; } }
    @media (max-width: 46.24em) {
      .c-infographie__footer img {
        margin-top: 10px;
        margin-bottom: 10px; } }
    @media (max-width: 46.24em) {
      .c-infographie__footer span {
        display: inline-block; } }
  .c-infographie__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 46.25em) {
      .c-infographie__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .c-infographie__row--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      @media (max-width: 46.24em) {
        .c-infographie__row--reverse {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
  .c-infographie__numero {
    position: absolute;
    left: 50%;
    margin-left: -48px;
    bottom: 100%;
    margin-bottom: -50px; }
  .c-infographie__frise {
    position: absolute;
    left: -60px;
    top: -70px; }
    @media (max-width: 61.24em) {
      .c-infographie__frise--large {
        display: none; } }
  .c-infographie__whiteBgTitle {
    font-family: 'Margarine';
    background-color: #fff;
    padding: 10px 25px;
    font-size: 30px;
    display: inline-block;
    position: relative;
    /*Specifique*/ }
    @media (max-width: 46.24em) {
      .c-infographie__whiteBgTitle {
        font-size: 21px; } }
    @media (min-width: 46.25em) {
      .c-infographie__whiteBgTitle {
        margin-right: 100px; } }
    .c-infographie__whiteBgTitle .arrowBlue {
      position: absolute;
      bottom: 100%;
      margin-bottom: 100px;
      left: 50%; }

@incude mq($until:tablet) {
  .c-infographie__whiteBgTitle .arrowBlue {
    width: 90px; } }
      .c-infographie__whiteBgTitle .arrowBlue--vertical {
        -webkit-transform: rotate(-24deg);
             -o-transform: rotate(-24deg);
                transform: rotate(-24deg);
        margin-left: -50px; }

@incude mq($until:tablet) {
  .c-infographie__whiteBgTitle .arrowBlue--vertical {
    margin-left: -35px; } }
  .c-infographie__whiteBgTitlePortrait {
    font-family: 'Kalam';
    font-size: 26px;
    position: relative;
    font-weight: bold;
    max-width: 500px;
    color: #000;
    text-align: center;
    margin-left: auto;
    margin-top: 130px;
    line-height: 35px; }
    @media (max-width: 46.24em) {
      .c-infographie__whiteBgTitlePortrait {
        font-size: 21px;
        line-height: 30px; } }
    .c-infographie__whiteBgTitlePortrait__text {
      padding: 25px 25px;
      padding-left: 10px;
      background-color: #fff;
      position: relative; }
    @media (min-width: 46.25em) {
      .c-infographie__whiteBgTitlePortrait .c-infographie__portrait__container {
        margin-left: -95px;
        margin-top: -247px;
        left: auto; } }
    .c-infographie__whiteBgTitlePortrait__exclamation {
      position: absolute;
      bottom: 25px;
      right: 10px; }
      @media (max-width: 46.24em) {
        .c-infographie__whiteBgTitlePortrait__exclamation {
          right: 6px; } }
  .c-infographie__portrait {
    position: absolute;
    width: 66%;
    left: 14%;
    top: 14%; }
    .c-infographie__portrait__container {
      width: 140px;
      height: 140px;
      position: relative;
      margin-top: -120px;
      left: 50%;
      margin-left: -70px; }
    .c-infographie__portrait__contour {
      max-width: 100%;
      position: absolute;
      left: 0; }
  @media (max-width: 61.24em) {
    .c-infographie__encarts--large {
      display: none; } }
  .c-infographie__encarts--small {
    margin: 25px; }
    .c-infographie__encarts--small .flickity-prev-next-button.previous {
      left: -45px; }
    .c-infographie__encarts--small .flickity-prev-next-button.next {
      right: -45px; }
    @media (min-width: 61.25em) {
      .c-infographie__encarts--small {
        display: none; } }
  .c-infographie__encart {
    position: absolute;
    border: 4px solid #0b77bc;
    background-color: #fff;
    font-size: 18px;
    line-height: 21px;
    font-family: 'Kalam', cursive;
    text-align: left; }
    @media (max-width: 61.24em) {
      .c-infographie__encart {
        width: 100%; } }
    @media (min-width: 61.25em) {
      .c-infographie__encart {
        max-width: 75%; } }
    .c-infographie__encart__title {
      background-color: #0b77bc;
      color: #fff;
      padding: 5px 10px; }
    .c-infographie__encart__text {
      color: #000;
      padding: 5px 10px; }
      .c-infographie__encart__text span {
        color: #ff0000; }
    @media (min-width: 61.25em) {
      .c-infographie__encart--top {
        width: 50%;
        position: absolute;
        bottom: 45%;
        left: 100%;
        margin-left: -20px; } }
    @media (min-width: 61.25em) {
      .c-infographie__encart--middle {
        position: absolute;
        left: 75%;
        margin-left: -20px;
        width: 60%;
        top: auto;
        bottom: 28%; } }
    @media (min-width: 61.25em) {
      .c-infographie__encart--bottom {
        position: absolute;
        bottom: 10px;
        left: 90%;
        margin-left: -40px;
        min-width: 316px;
        width: 62%; } }
  .c-infographie__encart2 {
    padding: 25px;
    background-color: #0b77bc;
    border: 4px solid #fff;
    -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
            box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4); }
    @media (min-width: 46.25em) {
      .c-infographie__encart2 {
        margin-left: -20%;
        margin-right: 20%; } }
    .c-infographie__encart2__title {
      text-align: center;
      color: #ffd000;
      font-family: 'Margarine';
      font-size: 26px;
      line-height: 26px;
      margin-bottom: 25px; }
      @media (max-width: 46.24em) {
        .c-infographie__encart2__title {
          font-size: 21px;
          line-height: 21px; } }
    .c-infographie__encart2__content {
      color: #fff;
      font-family: 'Patrick Hand';
      font-size: 20px;
      text-align: left; }
      @media (max-width: 46.24em) {
        .c-infographie__encart2__content {
          font-size: 18px; } }
    @media (min-width: 46.25em) {
      .c-infographie__encart2.reverse {
        margin-right: -20%;
        margin-left: 20%; } }
    .c-infographie__encart2--top {
      margin-top: -100px; }
      @media (min-width: 46.25em) {
        .c-infographie__encart2--top {
          margin-right: 25%; } }
    .c-infographie__encart2--bottom {
      margin-top: -25px; }
  .c-infographie__header {
    padding-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (min-width: 46.25em) {
      .c-infographie__header {
        -webkit-transform: rotate(-2deg);
             -o-transform: rotate(-2deg);
                transform: rotate(-2deg); } }
    .c-infographie__header .c-infographie__column {
      max-width: 100%; }
      @media (min-width: 46.25em) {
        .c-infographie__header .c-infographie__column:first-child {
          width: 400px;
          padding-right: 25px; } }
      @media (min-width: 46.25em) {
        .c-infographie__header .c-infographie__column:last-child {
          width: 67%;
          padding-left: 25px; } }
    .c-infographie__header__separator {
      width: 100%;
      -webkit-transform: rotate(-1deg);
           -o-transform: rotate(-1deg);
              transform: rotate(-1deg); }
    .c-infographie__header__title {
      background-color: #fff;
      border: 4px solid #0b77bc;
      padding: 25px;
      padding-right: 65px;
      color: #0b77bc;
      font-size: 2rem;
      line-height: 2rem;
      -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
              box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
      font-family: 'Londrina Solid', cursive;
      text-transform: uppercase;
      text-align: center;
      position: relative; }
      @media (min-width: 46.25em) {
        .c-infographie__header__title {
          font-size: 3rem;
          line-height: 3rem;
          margin-top: 25px; } }
      @media (max-width: 46.24em) {
        .c-infographie__header__title {
          -webkit-transform: rotate(-2.6deg);
               -o-transform: rotate(-2.6deg);
                  transform: rotate(-2.6deg); } }
      .c-infographie__header__title img {
        position: absolute;
        bottom: 20px;
        right: 2px;
        max-height: 100px; }
        @media (max-width: 46.24em) {
          .c-infographie__header__title img {
            max-height: 70px; } }
    .c-infographie__header__p1 {
      padding-left: 25px;
      font-family: 'Patrick Hand', cursive;
      font-size: 20px; }
      @media (max-width: 46.24em) {
        .c-infographie__header__p1 {
          -webkit-transform: rotate(-2.6deg);
               -o-transform: rotate(-2.6deg);
                  transform: rotate(-2.6deg); } }
      .c-infographie__header__p1 p {
        text-align: left; }
    .c-infographie__header__p2 {
      color: #fff;
      text-align: left;
      padding: 10px 20px;
      font-family: 'Margarine', cursive;
      font-size: 26px; }
      @media (max-width: 46.24em) {
        .c-infographie__header__p2 {
          font-size: 18px;
          -webkit-transform: rotate(-2.6deg);
               -o-transform: rotate(-2.6deg);
                  transform: rotate(-2.6deg); } }
    .c-infographie__header__p3 {
      padding-left: 25px;
      font-family: 'Patrick Hand', cursive;
      font-size: 20px; }
      @media (max-width: 46.24em) {
        .c-infographie__header__p3 {
          -webkit-transform: rotate(-2.6deg);
               -o-transform: rotate(-2.6deg);
                  transform: rotate(-2.6deg); } }
  .c-infographie__firstTitle {
    text-transform: uppercase;
    padding: 25px 5px;
    color: #fff;
    -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
            box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
    font-family: 'Londrina Solid', cursive;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    font-size: 2rem;
    line-height: 2rem;
    position: relative;
    padding: 25px 5px; }
    @media (min-width: 46.25em) {
      .c-infographie__firstTitle {
        margin-left: auto;
        margin-right: 0;
        line-height: 3rem;
        font-size: 3rem; } }
    @media (max-width: 46.24em) {
      .c-infographie__firstTitle {
        margin-top: 50px;
        padding: 21px; } }
  .c-infographie__neige {
    position: absolute;
    bottom: -130px;
    left: -60px;
    right: 0; }
    .c-infographie__neige--2 {
      bottom: 100%;
      right: 50%;
      left: auto;
      margin-right: 50px; }
    .c-infographie__neige--right {
      -webkit-transform: scaleX(-1);
           -o-transform: scaleX(-1);
              transform: scaleX(-1);
      left: 50%;
      right: auto;
      margin-left: 50px;
      margin-right: 0; }
  .c-infographie__firstSubTitle {
    font-weight: bold;
    position: relative;
    font-family: 'Kalam', cursive;
    padding: 25px 5px;
    font-weight: bold;
    color: #000;
    height: 163px;
    text-align: center;
    margin-top: 20px;
    font-size: 25px;
    margin-left: auto;
    max-width: 340px;
    margin-left: 60px;
    padding-right: 0; }
    @media (min-width: 61.25em) {
      .c-infographie__firstSubTitle {
        margin-right: 150px;
        margin-left: 80px; } }
    @media (max-width: 46.24em) {
      .c-infographie__firstSubTitle {
        margin-top: 100px;
        font-size: 20px; } }
    .c-infographie__firstSubTitle__footer {
      color: #fff;
      background-size: cover;
      padding: 10px;
      padding-right: 40px;
      margin-top: -10px;
      position: relative; }
      .c-infographie__firstSubTitle__footer img {
        position: absolute;
        bottom: 0;
        right: 5px; }
  .c-infographie__firstRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative; }
    @media (max-width: 46.24em) {
      .c-infographie__firstRow .c-infographie__arrowBlue--2 {
        left: 50%;
        margin-left: -60px; } }
    @media (min-width: 46.25em) {
      .c-infographie__firstRow {
        padding-top: 10px; } }
    @media (min-width: 46.25em) {
      .c-infographie__firstRow {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    @media (max-width: 46.24em) {
      .c-infographie__firstRow .c-infographie__firstSubTitle {
        margin-left: 0; } }
    .c-infographie__firstRow .c-infographie__contourPortrait {
      position: absolute;
      right: 100%;
      margin-right: -40px;
      bottom: 100%;
      margin-bottom: -60px;
      max-width: 120px; }
    .c-infographie__firstRow .c-infographie__portrait__container {
      margin-top: -114px;
      left: 0;
      margin-left: -90px; }
      @media (max-width: 46.24em) {
        .c-infographie__firstRow .c-infographie__portrait__container {
          margin-left: 90px; } }
    @media (min-width: 46.25em) {
      .c-infographie__firstRow .c-infographie__column {
        width: 50%; } }
    .c-infographie__firstRow .c-infographie__column--right {
      font-family: 'Kalam';
      z-index: 2; }
      @media (min-width: 46.25em) {
        .c-infographie__firstRow .c-infographie__column--right {
          margin-top: -100px; } }
      @media (max-width: 46.24em) {
        .c-infographie__firstRow .c-infographie__column--right {
          text-align: center; } }
      @media (min-width: 46.25em) {
        .c-infographie__firstRow .c-infographie__column--right img, .c-infographie__firstRow .c-infographie__column--right p {
          float: right; } }
      .c-infographie__firstRow .c-infographie__column--right p {
        -webkit-transform: rotate(2.7deg);
             -o-transform: rotate(2.7deg);
                transform: rotate(2.7deg); }
      @media (min-width: 46.25em) {
        .c-infographie__firstRow .c-infographie__column--right img {
          margin-right: -60px;
          max-width: 100%; } }
      @media (max-width: 46.24em) {
        .c-infographie__firstRow .c-infographie__column--right img {
          margin: 0 auto; } }
      .c-infographie__firstRow .c-infographie__column--right img.small {
        display: none; }
        @media (max-width: 46.24em) {
          .c-infographie__firstRow .c-infographie__column--right img.small {
            display: block;
            max-width: 100%; } }
      .c-infographie__firstRow .c-infographie__column--right img.large {
        display: none;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
        @media (min-width: 46.25em) {
          .c-infographie__firstRow .c-infographie__column--right img.large {
            display: block;
            -webkit-transform: translateX(100%);
                 -o-transform: translateX(100%);
                    transform: translateX(100%); } }
        .c-infographie__firstRow .c-infographie__column--right img.large.is-visible {
          -webkit-transform: translateX(0%);
               -o-transform: translateX(0%);
                  transform: translateX(0%); }
      .c-infographie__firstRow .c-infographie__column--right p {
        max-width: 400px;
        color: #000;
        position: relative; }
        .c-infographie__firstRow .c-infographie__column--right p img {
          position: absolute;
          bottom: 100%;
          left: 50%;
          margin-left: -43px; }
          @media (max-width: 46.24em) {
            .c-infographie__firstRow .c-infographie__column--right p img {
              max-width: 60px; } }
  .c-infographie__secondRow {
    font-family: 'Patrick Hand', cursive;
    -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;
    padding-bottom: 40px; }
    .c-infographie__secondRow__number {
      color: #0b77bc;
      height: 80px;
      width: 80px;
      border-radius: 40px;
      background-color: #fff;
      line-height: 80px;
      text-align: center; }
      .c-infographie__secondRow__number__container {
        height: 100px;
        width: 100px;
        border-radius: 50px;
        padding: 10px; }
    @media (min-width: 61.25em) {
      .c-infographie__secondRow p {
        margin: 0 auto; } }
    .c-infographie__secondRow__firstp {
      font-family: 'Margarine';
      background-color: #fff;
      padding: 10px 25px;
      font-size: 26px;
      position: relative; }
      @media (max-width: 61.24em) {
        .c-infographie__secondRow__firstp {
          margin-top: 170px; } }
      @media (max-width: 46.24em) {
        .c-infographie__secondRow__firstp {
          font-size: 18px; } }
      .c-infographie__secondRow__firstp img {
        position: absolute;
        left: 50%;
        margin-left: -48px;
        bottom: 100%;
        margin-bottom: -35px; }
    .c-infographie__secondRow__lastp {
      font-size: 20px; }
  .c-infographie__arrowBlue {
    position: absolute; }
    @media (max-width: 46.24em) {
      .c-infographie__arrowBlue {
        max-width: 80px; } }
    .c-infographie__arrowBlue--1 {
      bottom: 100%;
      right: -17px;
      margin-bottom: -50px; }
      @media (max-width: 61.24em) {
        .c-infographie__arrowBlue--1 {
          margin-bottom: -20px; } }
    .c-infographie__arrowBlue--2 {
      -webkit-transform: rotate(-50deg);
           -o-transform: rotate(-50deg);
              transform: rotate(-50deg);
      top: 100%;
      left: 0; }
      @media (min-width: 46.25em) {
        .c-infographie__arrowBlue--2 {
          left: 50%; } }
      @media (min-width: 61.25em) {
        .c-infographie__arrowBlue--2 {
          left: 100%;
          top: 0;
          -webkit-transform: rotate(-70deg);
               -o-transform: rotate(-70deg);
                  transform: rotate(-70deg); } }

.c-infographie__3rdRow {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative; }
  .c-infographie__3rdRow__title {
    font-family: 'Margarine';
    padding: 10px 25px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 25px;
    font-size: 26px; }
    @media (max-width: 46.24em) {
      .c-infographie__3rdRow__title {
        font-size: 21px; } }
  .c-infographie__3rdRow .c-infographie__case {
    position: relative;
    z-index: 1; }
    @media (min-width: 46.25em) {
      .c-infographie__3rdRow .c-infographie__case {
        width: 50%;
        max-width: 420px; } }
    .c-infographie__3rdRow .c-infographie__case__content {
      background-color: #0b77bc;
      border: 4px solid #fff;
      margin-top: 140px;
      margin-bottom: 140px;
      color: #fff;
      padding: 25px;
      font-family: 'Patrick Hand'; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case__content {
          margin-top: 100px; } }
      .c-infographie__3rdRow .c-infographie__case__content__title {
        text-align: center;
        font-size: 26px;
        padding-right: 40px;
        font-family: 'Margarine';
        margin-bottom: 10px; }
        @media (max-width: 46.24em) {
          .c-infographie__3rdRow .c-infographie__case__content__title {
            font-size: 21px; } }
      .c-infographie__3rdRow .c-infographie__case__content__text {
        font-size: 23px;
        margin-bottom: 10px; }
        @media (max-width: 46.24em) {
          .c-infographie__3rdRow .c-infographie__case__content__text {
            font-size: 20px; } }
      .c-infographie__3rdRow .c-infographie__case__content__exemple {
        font-size: 20px; }
    .c-infographie__3rdRow .c-infographie__case__logo {
      position: absolute;
      top: 0;
      z-index: 12; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case__logo {
          max-width: 100px; } }
    .c-infographie__3rdRow .c-infographie__case__arrow1 {
      position: absolute;
      top: 0; }
    .c-infographie__3rdRow .c-infographie__case__arrow2 {
      position: absolute;
      z-index: -1;
      bottom: 0; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case__arrow2 {
          display: none; } }
    .c-infographie__3rdRow .c-infographie__case__cereales {
      position: absolute;
      position: absolute;
      left: -100px;
      top: -30px;
      z-index: 2; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case__cereales {
          max-width: 120px;
          left: -20px;
          top: 20px; } }
    .c-infographie__3rdRow .c-infographie__case__cerealesBulle {
      position: absolute;
      position: absolute;
      z-index: 12;
      top: -60px;
      right: -120px; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case__cerealesBulle {
          display: none; } }
      .c-infographie__3rdRow .c-infographie__case__cerealesBulle--small {
        display: none; }
        @media (max-width: 46.24em) {
          .c-infographie__3rdRow .c-infographie__case__cerealesBulle--small {
            display: block;
            width: 100px;
            right: -30px;
            top: 15px; } }
    @media (min-width: 46.25em) {
      .c-infographie__3rdRow .c-infographie__case--left {
        margin-right: 60px; } }
    .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__content {
      -webkit-transform: rotate(-2deg);
           -o-transform: rotate(-2deg);
              transform: rotate(-2deg); }
    .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__arrow1 {
      right: 0; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__arrow1 {
          right: 110px; } }
    .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__logo {
      right: 75px; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__logo {
          right: 0; } }
    .c-infographie__3rdRow .c-infographie__case--left .c-infographie__case__arrow2 {
      right: -40px; }
    @media (min-width: 46.25em) {
      .c-infographie__3rdRow .c-infographie__case--right {
        margin-left: 20px; } }
    @media (max-width: 46.24em) {
      .c-infographie__3rdRow .c-infographie__case--right {
        margin-top: -100px; } }
    .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__content {
      -webkit-transform: rotate(3deg);
           -o-transform: rotate(3deg);
              transform: rotate(3deg); }
    .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__arrow1 {
      left: 0;
      -webkit-transform: rotate(-105deg);
           -o-transform: rotate(-105deg);
              transform: rotate(-105deg); }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__arrow1 {
          left: 110px; } }
    .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__arrow2 {
      left: 0;
      -webkit-transform: scaleX(-1);
           -o-transform: scaleX(-1);
              transform: scaleX(-1); }
    .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__logo {
      left: 75px; }
      @media (max-width: 46.24em) {
        .c-infographie__3rdRow .c-infographie__case--right .c-infographie__case__logo {
          left: 0; } }

.c-infographie__4thRow {
  position: relative;
  margin-bottom: 200px; }
  @media (max-width: 61.24em) {
    .c-infographie__4thRow {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 46.24em) {
    .c-infographie__4thRow {
      margin-bottom: 100px; } }
  .c-infographie__4thRow .c-infographie__case__arrow2 {
    position: absolute;
    bottom: 100%;
    right: 50%;
    margin-right: 50px;
    margin-bottom: 20px; }
    @media (max-width: 46.24em) {
      .c-infographie__4thRow .c-infographie__case__arrow2 {
        display: none; } }
    .c-infographie__4thRow .c-infographie__case__arrow2--right {
      right: auto;
      left: 50%;
      margin-left: 50px;
      margin-right: 0;
      -webkit-transform: scaleX(-1);
           -o-transform: scaleX(-1);
              transform: scaleX(-1); }
  .c-infographie__4thRow .c-infographie__column {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative; }
    @media (min-width: 46.25em) {
      .c-infographie__4thRow .c-infographie__column {
        max-width: 50%; } }
    .c-infographie__4thRow .c-infographie__column--centered {
      padding: 40px;
      position: relative;
      font-family: 'Margarine';
      font-size: 26px; }
      @media (max-width: 46.24em) {
        .c-infographie__4thRow .c-infographie__column--centered {
          font-size: 21px;
          padding: 25px;
          padding-top: 40px;
          font-size: 18px; } }
  .c-infographie__4thRow .c-infographie__columnImage {
    max-width: 100%;
    padding-bottom: 15px; }
  .c-infographie__4thRow .c-infographie__filetBleue {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px; }
    .c-infographie__4thRow .c-infographie__filetBleue--left {
      right: 100%;
      margin-right: -2px; }
    .c-infographie__4thRow .c-infographie__filetBleue--right {
      left: 100%;
      margin-left: -2px; }
  .c-infographie__4thRow .c-infographie__plateaux {
    position: absolute;
    left: 0;
    top: 260px;
    margin-left: -60px;
    width: 27%; }
    @media (max-width: 61.24em) {
      .c-infographie__4thRow .c-infographie__plateaux {
        display: none; } }
  .c-infographie__4thRow .c-infographie__firstSubTitle {
    position: absolute;
    max-width: 26%;
    margin-left: -60px;
    margin-top: 0;
    -webkit-transform: rotate(-2deg);
         -o-transform: rotate(-2deg);
            transform: rotate(-2deg); }
    @media (max-width: 61.24em) {
      .c-infographie__4thRow .c-infographie__firstSubTitle {
        display: none; } }

.c-infographie__5thRow {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .c-infographie__5thRow .c-infographie__column {
    max-width: 440px; }
    @media (min-width: 46.25em) {
      .c-infographie__5thRow .c-infographie__column {
        min-width: 400px; } }
    @media (max-width: 46.24em) {
      .c-infographie__5thRow .c-infographie__column {
        margin-left: auto;
        margin-right: auto; } }
    .c-infographie__5thRow .c-infographie__column p {
      padding-left: 25px;
      font-family: 'Patrick Hand';
      font-size: 20px; }
  @media (min-width: 46.25em) {
    .c-infographie__5thRow .c-infographie__whiteBgTitle {
      margin-right: 25px; } }
  .c-infographie__5thRow .c-infographie__blueArrow {
    position: absolute;
    bottom: 100%;
    -webkit-transform: rotate(110deg);
         -o-transform: rotate(110deg);
            transform: rotate(110deg);
    z-index: 1;
    left: 50%;
    margin-left: 60px;
    max-width: 200px; }
    @media (max-width: 46.24em) {
      .c-infographie__5thRow .c-infographie__blueArrow {
        display: none; } }
  .c-infographie__5thRow .c-infographie__numero {
    margin-bottom: -30px; }
  .c-infographie__5thRow .c-infographie__firstSubTitle {
    margin-right: 0;
    font-weight: 500; }
    @media (min-width: 46.25em) {
      .c-infographie__5thRow .c-infographie__firstSubTitle {
        -webkit-transform: rotate(-2.6deg) translateX(60px);
             -o-transform: rotate(-2.6deg) translateX(60px);
                transform: rotate(-2.6deg) translateX(60px);
        min-width: 340px;
        margin-top: 100px; } }
    @media (max-width: 61.24em) {
      .c-infographie__5thRow .c-infographie__firstSubTitle {
        margin-left: 0;
        margin-right: 40px; } }
    @media (max-width: 46.24em) {
      .c-infographie__5thRow .c-infographie__firstSubTitle {
        margin-top: 100px;
        margin-left: auto;
        margin-right: auto; } }
  .c-infographie__5thRow .c-infographie__pasteLeft {
    margin-top: -200px;
    margin-bottom: 200px; }
    @media (max-width: 61.24em) {
      .c-infographie__5thRow .c-infographie__pasteLeft {
        display: none; } }

.c-infographie__6thRow {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 200px;
  margin-bottom: 100px; }
  .c-infographie__6thRow .c-infographie__column {
    position: relative;
    z-index: 1;
    text-align: center; }
    .c-infographie__6thRow .c-infographie__column img {
      max-width: 100%; }
  .c-infographie__6thRow .c-infographie__numero {
    margin-bottom: -15px; }
  .c-infographie__6thRow .arrowBlue {
    position: absolute;
    top: 100%;
    margin-top: -45px;
    z-index: -1; }
    @media (max-width: 61.24em) {
      .c-infographie__6thRow .arrowBlue {
        display: none; } }
    .c-infographie__6thRow .arrowBlue--left {
      right: 100%;
      margin-right: -66px;
      -webkit-transform: rotate(16deg);
           -o-transform: rotate(16deg);
              transform: rotate(16deg); }
    .c-infographie__6thRow .arrowBlue--right {
      left: 100%;
      -webkit-transform: scaleX(-1) rotate(20deg);
           -o-transform: scaleX(-1) rotate(20deg);
              transform: scaleX(-1) rotate(20deg);
      margin-left: -35px; }
    .c-infographie__6thRow .arrowBlue--top {
      left: 50%;
      margin-left: -160px;
      top: auto;
      bottom: 100%;
      margin-bottom: 50px;
      -webkit-transform: scaleX(-1) rotate(20deg);
           -o-transform: scaleX(-1) rotate(20deg);
              transform: scaleX(-1) rotate(20deg); }

.c-infographie__7thRow {
  position: relative;
  text-align: center; }
  .c-infographie__7thRow .c-infographie__column {
    margin-bottom: 200px;
    position: relative; }
    @media (min-width: 46.25em) {
      .c-infographie__7thRow .c-infographie__column {
        border: 4px solid #0b77bc;
        -webkit-box-shadow: 10px 10px 15px rgba(150, 150, 150, 0.4);
                box-shadow: 10px 10px 15px rgba(150, 150, 150, 0.4);
        background-color: #fff;
        width: 50%; } }
    .c-infographie__7thRow .c-infographie__column:first-child {
      border-right: none; }
    .c-infographie__7thRow .c-infographie__column:last-child {
      border-left: none; }
  .c-infographie__7thRow .c-infographie__content {
    background-color: #fff;
    position: relative;
    padding: 60px 40px;
    font-family: 'Margarine';
    font-size: 26px; }
    @media (max-width: 46.24em) {
      .c-infographie__7thRow .c-infographie__content {
        padding: 60px 25px;
        border: 4px solid #0b77bc;
        font-size: 21px; } }
    .c-infographie__7thRow .c-infographie__content img {
      position: absolute;
      max-width: 100%; }
  .c-infographie__7thRow .c-infographie__filet {
    position: absolute;
    left: 100%;
    z-index: 3;
    top: 0;
    height: 100%;
    margin-left: -10px; }
    @media (max-width: 46.24em) {
      .c-infographie__7thRow .c-infographie__filet {
        display: none; } }
  .c-infographie__7thRow .c-infographie__encartVert {
    left: 50%;
    margin-left: -200px;
    top: 100%;
    margin-top: -50px;
    max-width: 100%; }
    @media (max-width: 46.24em) {
      .c-infographie__7thRow .c-infographie__encartVert {
        width: 260px;
        margin-left: -130px; } }
  .c-infographie__7thRow .c-infographie__check {
    left: 50%;
    margin-left: -40px;
    bottom: 100%;
    margin-bottom: -30px; }
  .c-infographie__7thRow .c-infographie__productImage {
    bottom: 100%;
    margin-bottom: -30px; }
    @media (max-width: 61.24em) {
      .c-infographie__7thRow .c-infographie__productImage {
        max-width: 150px;
        width: 170px; } }
    @media (max-width: 46.24em) {
      .c-infographie__7thRow .c-infographie__productImage {
        max-width: 100px;
        width: 100px; } }
    .c-infographie__7thRow .c-infographie__productImage--left {
      left: 0;
      margin-left: -40px; }
      @media (max-width: 46.24em) {
        .c-infographie__7thRow .c-infographie__productImage--left {
          margin-left: -20px; } }
    .c-infographie__7thRow .c-infographie__productImage--right {
      right: 0;
      margin-right: -40px; }
      @media (max-width: 46.24em) {
        .c-infographie__7thRow .c-infographie__productImage--right {
          margin-right: -20px; } }

.c-infographie.paniere .c-infographie__header__p2 {
  text-align: center; }
  @media (min-width: 61.25em) {
    .c-infographie.paniere .c-infographie__header__p2 {
      margin-right: auto;
      max-width: 500px; } }

.c-infographie.paniere .c-infographie__header__p3 {
  padding-left: 0; }

@media (min-width: 46.25em) {
  .c-infographie.paniere .c-infographie__header .c-infographie__column:last-child {
    width: auto; } }

.c-infographie.paniere .c-infographie__row {
  position: relative;
  margin-bottom: 25px; }
  .c-infographie.paniere .c-infographie__row--small {
    margin-bottom: -50px; }
  @media (max-width: 46.24em) {
    .c-infographie.paniere .c-infographie__row--1bis .c-infographie__arrowWhite {
      display: none; } }
  .c-infographie.paniere .c-infographie__row--1 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: center;
    margin-bottom: 150px;
    margin-top: 40px; }
    .c-infographie.paniere .c-infographie__row--1 .c-infographie__meetingImg {
      margin-right: -100px;
      margin-left: 25px;
      -ms-flex-item-align: center;
          align-self: center;
      margin-top: 100px; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--1 .c-infographie__meetingImg {
          margin-right: initial;
          max-width: 100%;
          margin-right: auto;
          margin-left: auto;
          margin-top: 25px; } }
    .c-infographie.paniere .c-infographie__row--1 .c-infographie__column {
      max-width: 540px; }
      .c-infographie.paniere .c-infographie__row--1 .c-infographie__column p {
        font-size: 23px;
        font-family: 'Patrick Hand';
        max-width: 300px;
        margin: 25px auto; }
        @media (max-width: 46.24em) {
          .c-infographie.paniere .c-infographie__row--1 .c-infographie__column p {
            font-size: 18px;
            margin: 25px auto; } }
  @media (max-width: 61.24em) {
    .c-infographie.paniere .c-infographie__row--2 .c-infographie__column--centered {
      margin-left: auto; } }
  .c-infographie.paniere .c-infographie__row--2 .c-infographie__portrait__container {
    margin-top: initial;
    z-index: 2; }
  .c-infographie.paniere .c-infographie__row--2 .c-infographie__whiteBgTitlePortrait {
    margin-top: 50px;
    -webkit-transform: rotate(-2.6deg);
         -o-transform: rotate(-2.6deg);
            transform: rotate(-2.6deg); }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--2 .c-infographie__whiteBgTitlePortrait {
        margin-top: 70px; } }
    @media (min-width: 46.25em) {
      .c-infographie.paniere .c-infographie__row--2 .c-infographie__whiteBgTitlePortrait__text {
        margin-top: -50px; } }
  .c-infographie.paniere .c-infographie__row--4 {
    margin-top: 25px; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--4 {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .c-infographie.paniere .c-infographie__row--4 .c-infographie__sillo {
      margin-left: -35px;
      bottom: 0; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--4 .c-infographie__sillo {
          margin-left: 0;
          position: relative;
          max-width: 100%;
          margin: 0 auto;
          display: block;
          left: auto;
          bottom: initial; } }
    .c-infographie.paniere .c-infographie__row--4 .c-infographie__column {
      max-width: 500px;
      margin: 0 auto; }
      .c-infographie.paniere .c-infographie__row--4 .c-infographie__column p {
        font-size: 23px;
        text-align: center;
        font-family: 'Patrick Hand'; }
        @media (max-width: 46.24em) {
          .c-infographie.paniere .c-infographie__row--4 .c-infographie__column p {
            font-size: 18px; } }
    .c-infographie.paniere .c-infographie__row--4 .c-infographie__legende {
      font-family: 'Kalam';
      position: absolute;
      bottom: 0;
      margin-bottom: -50px;
      display: grid;
      text-align: center;
      left: -20px;
      color: #000; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--4 .c-infographie__legende {
          position: relative;
          margin-top: -60px;
          margin-bottom: 50px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .c-infographie.paniere .c-infographie__row--4 .c-infographie__legende img {
        margin: 0 auto;
        -webkit-transform: scaleX(-1);
             -o-transform: scaleX(-1);
                transform: scaleX(-1); }
    .c-infographie.paniere .c-infographie__row--4 .c-infographie__whiteBgTitle {
      margin-top: 120px; }
  .c-infographie.paniere .c-infographie__row--3 .c-infographie__firstTitle {
    margin-top: 50px; }
  .c-infographie.paniere .c-infographie__row--3 .c-infographie__blueArrow {
    position: absolute;
    right: 100%;
    top: 0;
    margin-top: -40px;
    margin-right: -30px; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--3 .c-infographie__blueArrow {
        display: none; } }
  .c-infographie.paniere .c-infographie__row--5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .c-infographie.paniere .c-infographie__row--5 img {
      max-width: 275px;
      margin: 0 auto; }
  .c-infographie.paniere .c-infographie__row--6 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .c-infographie.paniere .c-infographie__row--6 .c-infographie__column {
      width: 28%;
      z-index: 1;
      position: relative;
      margin-top: 100px; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--6 .c-infographie__column {
          width: 100%; } }
  .c-infographie.paniere .c-infographie__row--7 {
    margin-top: 80px; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--7 {
        margin-top: 50px; } }
    .c-infographie.paniere .c-infographie__row--7 .c-infographie__firstTitle {
      -webkit-transform: rotate(-2.6deg);
           -o-transform: rotate(-2.6deg);
              transform: rotate(-2.6deg);
      max-width: 500px;
      /*font-size: 21px;
           @include mq($until:tablet){
            font-size: 18px;

          }*/ }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--7 .c-infographie__firstTitle {
          margin-top: 0; } }
    .c-infographie.paniere .c-infographie__row--7 .c-infographie__blueArrow {
      position: absolute;
      -webkit-transform: scaleX(-1) rotate(37deg);
           -o-transform: scaleX(-1) rotate(37deg);
              transform: scaleX(-1) rotate(37deg);
      bottom: 100%;
      left: 50%;
      margin-left: -115px; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--7 .c-infographie__blueArrow {
          display: none; } }
  .c-infographie.paniere .c-infographie__row--8 .c-infographie__column {
    text-align: center;
    max-width: 550px;
    margin: 0 auto; }
    .c-infographie.paniere .c-infographie__row--8 .c-infographie__column p {
      font-size: 26px;
      line-height: 1.1em;
      text-align: center;
      font-family: 'Patrick Hand';
      max-width: 420px; }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--8 .c-infographie__column p {
          font-size: 18px; } }
  .c-infographie.paniere .c-infographie__row--8 .c-infographie__sillo {
    top: -200px; }
  .c-infographie.paniere .c-infographie__row--8 .c-infographie__pelle {
    top: -180px; }
  .c-infographie.paniere .c-infographie__row--8 .c-infographie__whiteBgTitle {
    margin-top: 130px; }
  .c-infographie.paniere .c-infographie__row--9 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 18px;
    font-family: 'Kalam';
    font-weight: bold;
    margin-top: 80px; }
    @media (min-width: 46.25em) {
      .c-infographie.paniere .c-infographie__row--9 {
        -webkit-transform: rotate(-2.6deg);
             -o-transform: rotate(-2.6deg);
                transform: rotate(-2.6deg); } }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__portrait__container {
      left: auto;
      margin-left: initial; }
    @media (min-width: 46.25em) {
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column {
        width: 50%; } }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__column .title {
      color: #fff; }
    @media (min-width: 46.25em) {
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--right {
        margin-right: -60px; } }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--right .title {
      background-color: #0b77bc;
      padding: 10px;
      text-align: center;
      text-transform: uppercase; }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--right .content {
      background-color: rgba(255, 255, 255, 0.6);
      padding: 10px;
      position: relative;
      color: #000; }
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--right .content span {
        color: #ff0000; }
    @media (min-width: 46.25em) {
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left {
        margin-left: -60px;
        padding-right: 80px;
        font-size: 26px; } }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left {
        margin-bottom: 40px;
        margin-top: 40px; } }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left .title {
      background-color: #ff0000;
      padding: 10px;
      text-align: center; }
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left .title img {
        vertical-align: middle; }
    .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left .content {
      background-color: #fff;
      padding: 10px;
      text-align: center;
      padding-right: 40px;
      color: #000;
      position: relative; }
      .c-infographie.paniere .c-infographie__row--9 .c-infographie__column--left .content img {
        position: absolute;
        right: 6px;
        bottom: 0px; }
  @media (max-width: 46.24em) {
    .c-infographie.paniere .c-infographie__row--10 {
      margin-top: 150px; } }
  .c-infographie.paniere .c-infographie__row--10 .c-infographie__column {
    max-width: 550px;
    margin: 0 auto;
    text-align: center; }
    .c-infographie.paniere .c-infographie__row--10 .c-infographie__column p {
      font-size: 26px;
      text-align: center;
      font-family: 'Patrick Hand';
      max-width: 467px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.1em; }
      @media (min-width: 61.25em) {
        .c-infographie.paniere .c-infographie__row--10 .c-infographie__column p {
          margin-bottom: 50px; } }
      @media (max-width: 46.24em) {
        .c-infographie.paniere .c-infographie__row--10 .c-infographie__column p {
          font-size: 18px; } }
  .c-infographie.paniere .c-infographie__row--10 .c-infographie__sillo {
    bottom: 0;
    margin-left: -35px; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__row--10 .c-infographie__sillo {
        margin-left: 0;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        left: auto;
        bottom: auto; } }

.c-infographie.paniere .c-infographie__column--centered {
  /*background-color: rgba(255, 255, 255, 0.6);*/
  z-index: 1;
  position: relative; }
  .c-infographie.paniere .c-infographie__column--centered .c-infographie__column {
    width: 50%;
    text-align: center; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__column--centered .c-infographie__column {
        width: 100%; } }
  @media (min-width: 61.25em) {
    .c-infographie.paniere .c-infographie__column--centered {
      width: 75%;
      margin: 0 auto; } }

.c-infographie.paniere .c-infographie__illu {
  max-width: 100%; }
  .c-infographie.paniere .c-infographie__illu--middle {
    margin-left: 25px; }
  .c-infographie.paniere .c-infographie__illu--bottom {
    margin-top: 50px; }

.c-infographie.paniere .c-infographie__filetBleue {
  width: 5px;
  position: absolute;
  top: 0;
  z-index: -1;
  bottom: 0; }
  .c-infographie.paniere .c-infographie__filetBleue--right {
    right: 0; }

.c-infographie.paniere .c-infographie__pelle {
  position: absolute;
  right: -60px;
  bottom: 0;
  max-width: 27%; }
  @media (max-width: 46.24em) {
    .c-infographie.paniere .c-infographie__pelle {
      display: none; } }

.c-infographie.paniere .c-infographie__sillo {
  position: absolute;
  left: -60px;
  max-width: 28%; }
  @media (max-width: 46.24em) {
    .c-infographie.paniere .c-infographie__sillo {
      display: none; } }

.c-infographie.paniere .c-infographie__arrowWhite {
  position: absolute;
  left: 50%;
  margin-left: -9%;
  -webkit-transform: rotate(-130deg);
       -o-transform: rotate(-130deg);
          transform: rotate(-130deg);
  bottom: 50%; }
  @media (max-width: 46.24em) {
    .c-infographie.paniere .c-infographie__arrowWhite {
      -webkit-transform: rotate(-50deg);
           -o-transform: rotate(-50deg);
              transform: rotate(-50deg);
      max-width: 60px; } }
  .c-infographie.paniere .c-infographie__arrowWhite.reverse {
    -webkit-transform: rotate(30deg);
         -o-transform: rotate(30deg);
            transform: rotate(30deg);
    margin-left: -2%; }
    @media (max-width: 46.24em) {
      .c-infographie.paniere .c-infographie__arrowWhite.reverse {
        -webkit-transform: rotate(-50deg);
             -o-transform: rotate(-50deg);
                transform: rotate(-50deg); } }

.c-infographie.paniere .c-infographie__firstTitle {
  max-width: 550px;
  margin-right: auto;
  margin-top: 140px;
  text-align: center;
  -webkit-transform: rotate(2.6deg);
       -o-transform: rotate(2.6deg);
          transform: rotate(2.6deg);
  padding: 25px; }

.c-infographie.paniere .c-infographie__whiteBgTitle {
  margin-right: auto;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  margin-top: 220px; }
  .c-infographie.paniere .c-infographie__whiteBgTitle__text {
    -webkit-transform: rotate(-2.6deg);
         -o-transform: rotate(-2.6deg);
            transform: rotate(-2.6deg); }
  .c-infographie.paniere .c-infographie__whiteBgTitle .c-infographie__numero {
    margin-bottom: 0; }

.c-infographie__ethic__case {
  text-align: center;
  font-family: 'Kalam';
  font-weight: bold; }
  .c-infographie__ethic__case__title {
    font-size: 26px;
    text-transform: uppercase;
    color: #ffd000;
    background-color: #806c58;
    padding: 20px;
    padding-bottom: 0;
    line-height: 26px; }
    @media (max-width: 46.24em) {
      .c-infographie__ethic__case__title {
        font-size: 21px; } }
  .c-infographie__ethic__case__subtitle {
    color: #fff;
    padding: 20px;
    font-size: 18px;
    padding-top: 0;
    background-color: #806c58;
    text-transform: uppercase; }
    @media (max-width: 46.24em) {
      .c-infographie__ethic__case__subtitle {
        font-size: 18px; } }
  .c-infographie__ethic__case__content {
    color: #000;
    padding: 20px;
    font-size: 18px;
    text-align: left; }

.c-infographie__ethic__arrow {
  position: absolute;
  bottom: 100%;
  margin-bottom: 25px;
  left: 50%;
  margin-left: -40px;
  -webkit-transform: rotate(-56deg);
       -o-transform: rotate(-56deg);
          transform: rotate(-56deg);
  -webkit-animation-duration: .3s, 1.5s;
       -o-animation-duration: .3s, 1.5s;
          animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .75s;
       -o-animation-delay: 0s, .75s;
          animation-delay: 0s, .75s;
  -webkit-animation-iteration-count: 1, infinite;
       -o-animation-iteration-count: 1, infinite;
          animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
       -o-animation-direction: normal, alternate;
          animation-direction: normal, alternate;
  -webkit-animation-name: bobby, bobbou3;
       -o-animation-name: bobby, bobbou3;
          animation-name: bobby, bobbou3; }
  @media (min-width: 46.25em) {
    .c-infographie__ethic__arrow--left {
      right: 0;
      left: auto;
      margin-left: 0;
      -webkit-transform: rotate(0deg);
           -o-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-animation-name: bobby, bobbou;
           -o-animation-name: bobby, bobbou;
              animation-name: bobby, bobbou; } }
  @media (min-width: 46.25em) {
    .c-infographie__ethic__arrow--right {
      left: 0;
      -webkit-transform: rotate(-110deg);
           -o-transform: rotate(-110deg);
              transform: rotate(-110deg);
      margin-left: 0;
      -webkit-animation-name: bobby, bobbou2;
           -o-animation-name: bobby, bobbou2;
              animation-name: bobby, bobbou2; } }

.c-infographie.BC .red {
  color: #ff0000; }

.c-infographie.BC .c-infographie__header__p2 {
  text-align: center; }

.c-infographie.BC .c-infographie__whiteBgTitle {
  margin-right: auto; }

.c-infographie.BC .c-infographie__deco {
  position: absolute;
  bottom: 0;
  max-width: 27%; }
  @media (max-width: 46.24em) {
    .c-infographie.BC .c-infographie__deco {
      display: none; } }
  .c-infographie.BC .c-infographie__deco--left {
    left: -25px; }
    @media (min-width: 61.25em) {
      .c-infographie.BC .c-infographie__deco--left {
        left: -60px; } }
  .c-infographie.BC .c-infographie__deco--right {
    right: -25px; }
    @media (min-width: 61.25em) {
      .c-infographie.BC .c-infographie__deco--right {
        right: -60px; } }

.c-infographie.BC .c-infographie__pContainer {
  margin-top: 40px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transform: rotate(-2deg);
       -o-transform: rotate(-2deg);
          transform: rotate(-2deg); }
  .c-infographie.BC .c-infographie__pContainer p, .c-infographie.BC .c-infographie__pContainer img {
    -webkit-transform: rotate(2deg);
         -o-transform: rotate(2deg);
            transform: rotate(2deg); }
  @media (min-width: 46.25em) {
    .c-infographie.BC .c-infographie__pContainer {
      padding: 25px 40px;
      margin-left: 70px;
      margin-right: 70px; } }

.c-infographie.BC .c-infographie__column {
  text-align: center; }
  .c-infographie.BC .c-infographie__column--centered {
    margin: 0 auto; }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__column--centered {
        max-width: 50%; } }

.c-infographie.BC .c-infographie__numero {
  margin-bottom: -30px; }

.c-infographie.BC .c-infographie__filetBleue {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px; }
  .c-infographie.BC .c-infographie__filetBleue--left {
    right: 100%;
    margin-right: -2px; }
  .c-infographie.BC .c-infographie__filetBleue--right {
    left: 100%;
    margin-left: -2px; }

@media (max-width: 46.24em) {
  .c-infographie.BC .c-infographie__whiteBgTitle .arrowBlue {
    max-width: 80px;
    margin-left: -35px; } }

@media (max-width: 61.24em) {
  .c-infographie.BC .c-infographie__firstTitle {
    margin: 0 auto; } }

.c-infographie.BC .c-infographie__firstSubTitle {
  height: unset;
  padding: 25px;
  padding-right: 60px;
  margin-left: 0;
  max-width: none; }
  @media (max-width: 46.24em) {
    .c-infographie.BC .c-infographie__firstSubTitle {
      font-size: 18px;
      margin-left: auto;
      margin-right: auto; } }
  .c-infographie.BC .c-infographie__firstSubTitle .c-infographie__portrait__container {
    margin-left: initial; }
  .c-infographie.BC .c-infographie__firstSubTitle .mark {
    position: absolute;
    right: 25px;
    bottom: 25px; }

.c-infographie.BC .c-infographie__row {
  position: relative; }
  .c-infographie.BC .c-infographie__row--1 {
    margin-top: 40px; }
    .c-infographie.BC .c-infographie__row--1 .c-infographie__arrowBlue {
      -webkit-transform: scaleX(-1);
           -o-transform: scaleX(-1);
              transform: scaleX(-1);
      right: auto;
      left: 50%;
      margin-left: -60px; }
    .c-infographie.BC .c-infographie__row--1 .c-infographie__firstTitle {
      max-width: 450px; }
    .c-infographie.BC .c-infographie__row--1 .c-infographie__column {
      width: 100%; }
      @media (min-width: 61.25em) {
        .c-infographie.BC .c-infographie__row--1 .c-infographie__column {
          width: 60%; } }
      @media (max-width: 61.24em) {
        .c-infographie.BC .c-infographie__row--1 .c-infographie__column--right {
          display: none; } }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--1 .c-infographie__column--right {
          width: 40%; } }
      .c-infographie.BC .c-infographie__row--1 .c-infographie__column--right p img {
        -webkit-transform: scaleX(-1) rotate(-50deg);
             -o-transform: scaleX(-1) rotate(-50deg);
                transform: scaleX(-1) rotate(-50deg); }
    .c-infographie.BC .c-infographie__row--1 .c-infographie__firstSubTitle {
      margin-right: 0;
      -webkit-transform: rotate(2.6deg);
           -o-transform: rotate(2.6deg);
              transform: rotate(2.6deg); }
    .c-infographie.BC .c-infographie__row--1 .c-infographie__row {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 61.25em) {
        .c-infographie.BC .c-infographie__row--1 .c-infographie__row {
          margin-right: -80px;
          margin-left: -50px; } }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--1 .c-infographie__row {
          -webkit-box-orient: vertical;
          -webkit-box-direction: reverse;
              -ms-flex-direction: column-reverse;
                  flex-direction: column-reverse; } }
      .c-infographie.BC .c-infographie__row--1 .c-infographie__row p {
        font-size: 20px;
        font-family: 'Patrick Hand';
        margin-left: auto;
        margin-right: auto; }
        @media (min-width: 61.25em) {
          .c-infographie.BC .c-infographie__row--1 .c-infographie__row p {
            font-size: 25px;
            line-height: 30px;
            margin-top: 120px;
            margin-right: -60px;
            margin-bottom: 50px;
            padding-left: 40px; } }
  .c-infographie.BC .c-infographie__row--2 {
    margin-top: 200px; }
    @media (max-width: 61.24em) {
      .c-infographie.BC .c-infographie__row--2 .c-infographie__deco {
        display: none; } }
    @media (min-width: 61.25em) {
      .c-infographie.BC .c-infographie__row--2 .c-infographie__column--centered {
        max-width: 70%; } }
    @media (max-width: 61.24em) {
      .c-infographie.BC .c-infographie__row--2 .c-infographie__column--centered {
        max-width: 75%; } }
    @media (max-width: 46.24em) {
      .c-infographie.BC .c-infographie__row--2 .c-infographie__column--centered {
        max-width: 100%; } }
    .c-infographie.BC .c-infographie__row--2 img {
      max-width: 100%; }
    .c-infographie.BC .c-infographie__row--2 p {
      font-size: 23px;
      font-family: 'Patrick Hand';
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--2 p {
          font-size: 18px; } }
  .c-infographie.BC .c-infographie__row--3 {
    margin-top: 240px; }
    .c-infographie.BC .c-infographie__row--3 .arrowBlue--vertical {
      -webkit-transform: rotate(-66deg);
           -o-transform: rotate(-66deg);
              transform: rotate(-66deg);
      margin-left: -95px; }
    .c-infographie.BC .c-infographie__row--3 .c-infographie__deco--left {
      margin-bottom: 50px;
      left: 0; }
    .c-infographie.BC .c-infographie__row--3 .c-infographie__firstSubTitle {
      max-width: 380px;
      -webkit-transform: rotate(-2.6deg);
           -o-transform: rotate(-2.6deg);
              transform: rotate(-2.6deg); }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--3 .c-infographie__firstSubTitle {
          margin-right: 0;
          -webkit-transform: rotate(-2.6deg) translateX(25px);
               -o-transform: rotate(-2.6deg) translateX(25px);
                  transform: rotate(-2.6deg) translateX(25px); } }
      @media (min-width: 61.25em) {
        .c-infographie.BC .c-infographie__row--3 .c-infographie__firstSubTitle {
          -webkit-transform: rotate(-2.6deg) translateX(60px);
               -o-transform: rotate(-2.6deg) translateX(60px);
                  transform: rotate(-2.6deg) translateX(60px); } }
    @media (max-width: 61.24em) {
      .c-infographie.BC .c-infographie__row--3 .c-infographie__deco {
        display: none; } }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__row--3 .c-infographie__column--centered {
        max-width: 60%; } }
    @media (min-width: 61.25em) {
      .c-infographie.BC .c-infographie__row--3 .c-infographie__column--centered {
        margin-right: 60px; } }
    .c-infographie.BC .c-infographie__row--3 p {
      font-size: 25px;
      font-family: 'Margarine';
      max-width: 470px;
      margin: 25px auto; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--3 p {
          font-size: 20px; } }
      @media (min-width: 61.25em) {
        .c-infographie.BC .c-infographie__row--3 p {
          margin-top: 50px; } }
  .c-infographie.BC .c-infographie__row--4 {
    margin-top: 60px;
    margin-bottom: 60px; }
    .c-infographie.BC .c-infographie__row--4 .c-infographie__column--centered {
      text-align: center;
      position: relative; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--4 .c-infographie__column--centered {
          display: none; } }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--4 .c-infographie__column--centered {
          max-width: none;
          width: 50%; } }
    .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2 {
      padding: 0px;
      background-color: #fff;
      border: none; }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2 {
          position: absolute; } }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2__title {
        background-color: #0b77bc;
        color: #fff;
        padding: 25px;
        margin-bottom: 0;
        padding-left: 100px;
        text-align: left;
        position: relative; }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2__title--reverse {
          padding-left: 25px;
          padding-right: 100px; }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2__title img {
          position: absolute; }
          @media (max-width: 46.24em) {
            .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2__title img {
              max-width: 100px; } }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2__content {
        color: #000;
        padding: 25px;
        font-family: 'Kalam';
        font-weight: bold;
        font-size: 18px;
        line-height: 20px; }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--top {
        left: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: initial; }
        @media (min-width: 46.25em) {
          .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--top {
            width: 30%;
            margin-top: -25px; } }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--top .c-infographie__encart2__content {
          text-align: justify; }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--top .c-infographie__encart2__title img {
          margin-top: -70px;
          left: 0; }
          @media (min-width: 46.25em) {
            .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--top .c-infographie__encart2__title img {
              margin-left: -50px; } }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle1 {
        right: 0;
        margin-top: 60px;
        margin-right: 0;
        margin-top: 60px;
        margin-left: initial; }
        @media (min-width: 46.25em) {
          .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle1 {
            width: 30%;
            margin-top: 150px; } }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle1 .c-infographie__encart2__title img {
          margin-top: -70px;
          right: 0; }
          @media (min-width: 46.25em) {
            .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle1 .c-infographie__encart2__title img {
              margin-right: -50px; } }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle2 {
        right: 0;
        margin-top: 60px;
        left: 5%;
        margin-right: 0;
        margin-left: initial;
        top: 50%; }
        @media (min-width: 46.25em) {
          .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle2 {
            width: 28%;
            margin-top: -25px; } }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle2 .c-infographie__encart2__title img {
          margin-top: -70px;
          left: 0; }
          @media (min-width: 46.25em) {
            .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--middle2 .c-infographie__encart2__title img {
              margin-left: -50px; } }
      .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--bottom {
        margin-top: 60px;
        right: 10%;
        left: auto;
        margin-right: 0;
        margin-left: initial;
        top: auto;
        bottom: 0; }
        @media (min-width: 46.25em) {
          .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--bottom {
            width: 25%;
            margin-top: -25px;
            bottom: -30px; } }
        .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--bottom .c-infographie__encart2__title img {
          margin-top: -70px;
          right: 0; }
          @media (min-width: 46.25em) {
            .c-infographie.BC .c-infographie__row--4 .c-infographie__encart2--bottom .c-infographie__encart2__title img {
              margin-right: -50px; } }
  .c-infographie.BC .c-infographie__row--5 {
    margin-top: 110px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__row--5 {
        margin-top: 240px; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__firstSubTitle {
      margin-right: 0;
      max-width: 380px;
      margin-left: auto;
      -webkit-transform: rotate(-2.6deg);
           -o-transform: rotate(-2.6deg);
              transform: rotate(-2.6deg); }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--5 .c-infographie__firstSubTitle {
          margin-right: auto; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__arrowBlue {
      bottom: 100%;
      left: 50%;
      margin-bottom: 30px;
      margin-left: 48px;
      -webkit-transform: scaleX(-1) rotate(-45deg);
           -o-transform: scaleX(-1) rotate(-45deg);
              transform: scaleX(-1) rotate(-45deg); }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--5 .c-infographie__arrowBlue {
          display: none; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left img {
      max-width: 100%; }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left {
        max-width: 55%; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left p {
      font-family: 'Patrick Hand';
      text-align: left;
      font-size: 25px; }
      .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left p.tall {
        font-size: 25px;
        line-height: 1.1em;
        font-family: 'Margarine'; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left p {
          font-size: 18px; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__column--left .lastP {
      background-color: #fff;
      color: #0b77bc;
      padding: 25px; }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__row--5 .c-infographie__column--right {
        padding-left: 60px; } }
    .c-infographie.BC .c-infographie__row--5 .c-infographie__column--right .verresCoca {
      max-width: 100%; }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--5 .c-infographie__column--right .verresCoca {
          -webkit-transform: translateY(100px);
               -o-transform: translateY(100px);
                  transform: translateY(100px);
          margin-right: auto; } }
  .c-infographie.BC .c-infographie__row--6 {
    margin-top: 120px;
    text-align: center; }
    @media (min-width: 46.25em) {
      .c-infographie.BC .c-infographie__row--6 {
        margin-top: 200px; } }
    .c-infographie.BC .c-infographie__row--6 img {
      max-width: 100%; }
    .c-infographie.BC .c-infographie__row--6 .c-infographie__blueArrow {
      position: absolute;
      bottom: 100%;
      left: 50%;
      margin-left: -330px; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--6 .c-infographie__blueArrow {
          display: none; } }
  .c-infographie.BC .c-infographie__row--7 {
    margin-top: 100px;
    text-align: center; }
    .c-infographie.BC .c-infographie__row--7 .c-infographie__check {
      left: 50%;
      margin-left: -40px;
      bottom: 100%;
      margin-bottom: -30px;
      max-width: 100%;
      position: absolute; }
    .c-infographie.BC .c-infographie__row--7 .c-infographie__content {
      background-color: #fff;
      position: relative;
      padding: 50px 40px;
      font-family: 'Margarine';
      font-size: 26px;
      -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
              box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
      border: 4px solid #0b77bc;
      max-width: 396px; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--7 .c-infographie__content {
          padding: 25px;
          font-size: 21px; } }
  .c-infographie.BC .c-infographie__row--8 img {
    margin: 40px auto;
    max-width: 100%; }
  .c-infographie.BC .c-infographie__row--9 {
    margin-top: 200px;
    padding-bottom: 100px; }
    @media (max-width: 46.24em) {
      .c-infographie.BC .c-infographie__row--9 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        margin-top: 160px; } }
    .c-infographie.BC .c-infographie__row--9 .encartZero {
      max-width: 280px;
      left: 0;
      top: 60px; }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--9 .encartZero {
          position: absolute; } }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--9 .encartZero {
          margin: 0 auto; } }
    .c-infographie.BC .c-infographie__row--9 .c-infographie__column {
      max-width: 680px; }
      @media (min-width: 46.25em) {
        .c-infographie.BC .c-infographie__row--9 .c-infographie__column {
          margin-left: 330px; } }
    .c-infographie.BC .c-infographie__row--9 p {
      text-align: left;
      font-family: 'Patrick Hand';
      font-size: 23px; }
      @media (max-width: 46.24em) {
        .c-infographie.BC .c-infographie__row--9 p {
          font-size: 18px; } }

body.has-modal-open {
  overflow: hidden; }

.o-modals {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  left: 0;
  overflow: scroll;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 1000;
  display: none; }
  .o-modals__overlay {
    -webkit-animation-duration: .3s;
         -o-animation-duration: .3s;
            animation-duration: .3s;
    -webkit-animation-fill-mode: both;
         -o-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
         -o-animation-name: fadeIn;
            animation-name: fadeIn;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0; }

body.has-modal-open .o-modals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.o-modal {
  -webkit-animation-duration: .3s;
       -o-animation-duration: .3s;
          animation-duration: .3s;
  /*background-color: #fff;*/
  border-radius: 5px;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-left: 40px;
  padding-right: 40px; }
  @media (max-width: 46.24em) {
    .o-modal {
      padding-left: 10px;
      padding-right: 10px; } }

.o-modal {
  min-height: 560px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

body.has-modal-open .o-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-bios[data-selected="3"]:after {
  right: 60px; }

.c-bios[data-selected="2"]:after {
  right: 155px; }

.c-bios[data-selected="1"]:after {
  right: 250px; }

.c-bios {
  background-color: #fff;
  color: #000;
  padding: 40px;
  text-align: left;
  -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.8);
  position: relative;
  font-size: 20px;
  color: #0b77bc; }
  .c-bios__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (max-width: 46.24em) {
      .c-bios__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
  @media (max-width: 46.24em) {
    .c-bios {
      font-size: 18px;
      padding: 20px;
      margin-top: 10px; } }
  .c-bios:after {
    position: absolute;
    top: 100%;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 0px 0 34px;
    right: 345px;
    border-color: #fff transparent transparent transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .c-bios__portraits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 35px;
    margin-right: -10px; }
    .c-bios__portraits img {
      display: inline-block;
      width: 75px;
      height: 75px;
      background-color: #fff;
      border-radius: 50%;
      margin: 10px;
      cursor: pointer; }
  .c-bios__back {
    cursor: pointer; }
    @media (max-width: 46.24em) {
      .c-bios__back {
        margin-left: none;
        margin-right: -12px; } }

.c-bio {
  display: none; }
  .c-bio p {
    margin-top: 0; }
    .c-bio p:last-child {
      margin-bottom: 0; }
  .c-bio.selected {
    display: block; }

.js-portrait-button {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .js-portrait-button:hover {
    -webkit-filter: none;
            filter: none; }

.js-portrait-button.selected {
  -webkit-filter: none;
          filter: none;
  -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.8); }

.c-intro {
  color: #0b77bc;
  font-size: 18px;
  text-align: center;
  color: #0b77bc;
  padding: 40px; }
  @media (max-width: 46.24em) {
    .c-intro {
      padding: 20px; } }
  .c-intro p {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 0; }
    .c-intro p:first-child {
      color: #fff;
      background-color: #0b77bc;
      -webkit-box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4);
              box-shadow: -3px 10px 15px rgba(150, 150, 150, 0.4); }
    .c-intro p:last-child {
      padding-bottom: 0; }

/*# sourceMappingURL=main.css.map*/