@charset "UTF-8";
/*--------------------------------------
  VARIABLES COLORS
--------------------------------------*/
/* --- INITIALISATION DES VARIABLES POUR LES RUBANS DYNAMIQUES --- */
:root {
  --hauteur-ruban: 105vh;
  --hauteur-ruban-videos: 105vh;
}
/*--------------------------------------
  QUICK COLOR STYLES
--------------------------------------*/
.bg_white {
  background: #ffffff;
}
.bg_black {
  background: #121212;
}
.bg_purple {
  background: #9b6ee8;
}
.bg_lightpurple {
  background: #ded3f6;
}
.dark_gradient {
  background: #B58BF1;
  background: -webkit-linear-gradient(90deg, #9b6ee8 0%, #00a796 100%);
  background: -moz-linear-gradient(90deg, #9b6ee8 0%, #00a796 100%);
  background: linear-gradient(90deg, #9b6ee8 0%, #00a796 100%);
}
.light_gradient {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #ded3f6 50%, #bae4e8 100%);
  background: -moz-linear-gradient(180deg, #ffffff 0%, #ded3f6 50%, #bae4e8 100%);
  background: linear-gradient(180deg, #ffffff 0%, #ded3f6 50%, #bae4e8 100%);
}
.light_blue_gradient {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  background: -moz-linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  background: linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
}
.aube_gradient {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #f7e6db 0%, #ae91ec 100%);
  background: -moz-linear-gradient(180deg, #f7e6db 0%, #ae91ec 100%);
  background: linear-gradient(180deg, #f7e6db 0%, #ae91ec 100%);
}
.shrek_gradient {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: -moz-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
}
.light_gradient_card {
  background: #ded3f6;
  background: -webkit-linear-gradient(180deg, #ded3f6 0%, #bae4e8 100%);
  background: -moz-linear-gradient(180deg, #ded3f6 0%, #bae4e8 100%);
  background: linear-gradient(180deg, #ded3f6 0%, #bae4e8 100%);
}
.light_gradient_intro {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #ded3f6 35%, #bae4e8 70%), #ffffff 100%;
  background: -moz-linear-gradient(180deg, #ffffff 0%, #ded3f6 35%, #bae4e8 70%, #ffffff 100%);
  background: linear-gradient(180deg, #ffffff 0%, #ded3f6 35%, #bae4e8 70%, #ffffff 100%);
}
.footer_gradient {
  background: #ffffff;
  background: -webkit-linear-gradient(180deg, #d0d7fc 0%, #d0d7fc 100%);
  background: -moz-linear-gradient(180deg, #d0d7fc 0%, #d0d7fc 100%);
  background: linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
}
.vip_gradient {
  background: #ffffff;
  background: -webkit-linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
  background: -moz-linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
  background: linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
}
.play_gradient {
  background: #4A67F5;
  background: radial-gradient(circle, #4a67f5 0%, #889cf8 100%);
}
/* FONT COLORS */
.white {
  color: #ffffff;
}
.black {
  color: #121212;
}
.blue {
  color: #4a67f5;
}
.grey {
  color: #d3d3d3;
}
.purple {
  color: #9b6ee8;
}
.script {
  font-family: "Script";
}
.b-italic {
  font-family: 'Switzer-bi';
}
.switzer-b {
  font-family: 'Switzer-b';
}
.gradient-text {
  background: linear-gradient(90deg, #9b6ee8, #00a796);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*--------------------------------------
  GENERAL STYLES
--------------------------------------*/
body {
  font-family: "Switzer-r";
  font-style: normal;
  color: #121212;
  margin: 0;
  padding: 0;
  border: 0 none;
  min-height: 100%;
  width: 100%;
  font-size: 1rem;
}
main {
  min-height: 100%;
  z-index: 2;
  width: 100%;
}
p {
  line-height: 140%;
}
.section-title {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 700;
}
iframe {
  border: none;
  max-width: 100%;
  display: inline-block;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a img {
  border: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2 {
  font-family: "Switzer-sb";
  text-align: center;
  line-height: 1.1;
  font-size: clamp(30px, 4vw, 48px);
}
.max-w-700 {
  max-width: 700px;
  margin: 0 auto;
}
/* ==========================================================================
   FLÈCHES DE CARROUSEL (BASE & THÈMES)
   ========================================================================== */
.slick-prev::before,
.slick-next::before {
  display: none !important;
  content: "" !important;
}
.custom-nav-arrow {
  width: 50px;
  height: 32px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  cursor: pointer;
  color: transparent !important;
  font-size: 0 !important;
  flex-shrink: 0;
  background-image: url('../img/icons/long_arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-color 0.2s ease-in-out, scale 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .custom-nav-arrow {
    width: 85px;
    height: 45px;
  }
}
.custom-nav-arrow.smaller-arrow {
  width: 50px;
  height: 32px;
}
.custom-nav-arrow.arrow-prev {
  scale: -1 1;
}
.custom-nav-arrow.arrow-prev:hover {
  scale: -1.05 1.05;
}
.custom-nav-arrow.arrow-next:hover {
  scale: 1.05;
}
.custom-nav-arrow.arrow-green {
  background-color: rgba(0, 167, 150, 0.7);
}
.custom-nav-arrow.arrow-green:hover {
  background-color: #00a796;
}
.custom-nav-arrow.arrow-blue {
  background-color: rgba(74, 103, 245, 0.7);
}
.custom-nav-arrow.arrow-blue:hover {
  background-color: #4a67f5;
}
/* VERSION 1 : OVERLAY */
.custom-nav-arrow.is-overlay {
  position: absolute;
  top: 48%;
  translate: 0 -50%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .custom-nav-arrow.is-overlay {
    top: 52%;
  }
}
.custom-nav-arrow.is-overlay.arrow-prev {
  left: 10px;
}
@media screen and (min-width: 768px) {
  .custom-nav-arrow.is-overlay.arrow-prev {
    left: 20px;
  }
}
.custom-nav-arrow.is-overlay.arrow-next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .custom-nav-arrow.is-overlay.arrow-next {
    right: 20px;
  }
}
/* VERSION 2 : INLINE */
.carousel-controls-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.carousel-controls-inline .slick-dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.carousel-controls-inline .slick-dots li {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}
.carousel-controls-inline .slick-dots li button {
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 167, 150, 0.4);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.2s;
}
.carousel-controls-inline .slick-dots li button:before {
  display: none;
}
.carousel-controls-inline .slick-dots li.slick-active button {
  background-color: #00a796;
}
/*--------------------------------------
  IMPORTS (Nettoyés de l'accolade orpheline)
--------------------------------------*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*---------------------------------------------------
  CUSTOM MIXINS 
---------------------------------------------------*/
/* CUSTOM-GRADIENT */
/* Implementation 
#someDiv {
    .custom-gradient(left, #663333, #333333);
}
*/
/* QUICK-GRADIENT */
/* Implementation 
#somediv {
    background-color: BADA55;
    .quick-gradient(top, 0.2);
}
*/
/* WEBKIT-REFLECTION */
/* Implementation 
#somediv {
    .reflect(20%, 0.2);
}
*/
/* box-shadow with alpha */
/* Implementation 
#somediv {
    .box-shadow-custom(5px, 5px, 6px, 0.3);
}
*/
/*! Prefix flex for IE10 and Safari / iOS in LESS
* https://gist.github.com/codler/2148ba4ff096a19f08ea
* Copyright (c) 2014 Han Lin Yap http://yap.nu; MIT license */
/* These are the conditional mixins for the different syntax for IE10 Flexbox */
/*--------------------------------------
  FONTS IMPORT
--------------------------------------*/
@font-face {
  font-family: 'start';
  src: url('../fonts/start.eot?kywm21');
  src: url('../fonts/start.eot?kywm21#iefix') format('embedded-opentype'), url('../fonts/start.ttf?kywm21') format('truetype'), url('../fonts/start.woff?kywm21') format('woff'), url('../fonts/start.svg?kywm21#start') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-l';
  src: url(../fonts/Switzer-Light.woff) format('woff'), url(../fonts/Switzer-Light.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-r';
  src: url(../fonts/Switzer-Regular.woff) format('woff'), url(../fonts/Switzer-Regular.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-m';
  src: url(../fonts/Switzer-Medium.woff) format('woff'), url(../fonts/Switzer-Medium.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-sb';
  src: url(../fonts/Switzer-Semibold.woff) format('woff'), url(../fonts/Switzer-Semibold.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-b';
  src: url(../fonts/Switzer-Bold.woff) format('woff'), url(../fonts/Switzer-Bold.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Switzer-bi';
  src: url(../fonts/Switzer-BoldItalic.woff) format('woff'), url(../fonts/Switzer-BoldItalic.woff2) format('woff2');
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'Script';
  src: url(../fonts/Pasteur-script-Medium.woff) format('woff'), url(../fonts/Pasteur-script-Medium.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'jrhand';
  src: url(../fonts/Jrhand.woff) format('woff'), url(../fonts/Jrhand.woff2) format('woff2');
  font-style: normal;
  font-display: block;
}
.picto {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'start' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-linkedin-button-logo:before {
  content: "\e90b";
}
.icon-quote1:before {
  content: "\e914";
}
.icon-family:before {
  content: "\e917";
}
.icon-jump:before {
  content: "\e91a";
}
.icon-people:before {
  content: "\e91b";
}
.icon-planete:before {
  content: "\e91c";
}
.icon-plant:before {
  content: "\e91e";
}
.icon-arrow-left:before {
  content: "\e905";
}
.icon-arrow-right:before {
  content: "\e90a";
}
.icon-Composant-4--2:before {
  content: "\e90d";
}
.icon-facebook-2:before {
  content: "\e90e";
}
.icon-facebook:before {
  content: "\e913";
}
.icon-twitter-1:before {
  content: "\e918";
}
.icon-youtube-1:before {
  content: "\e919";
}
.icon-burger-nav-light:before {
  content: "\e904";
}
.icon-ohc_heart:before {
  content: "\e909";
}
.icon-modify:before {
  content: "\e908";
}
.icon-search:before {
  content: "\e986";
}
.icon-letter:before {
  content: "\e911";
}
.icon-location2:before {
  content: "\e915";
}
.icon-user:before {
  content: "\e91d";
}
.icon-star-full:before {
  content: "\e921";
}
.icon-heart:before {
  content: "\e922";
}
.icon-youtube22:before {
  content: "\e926";
}
.icon-ctrl-up:before {
  content: "\e900";
}
.icon-ctrl-down:before {
  content: "\e901";
}
.icon-ctrl-left:before {
  content: "\e902";
}
.icon-ctrl-right:before {
  content: "\e903";
}
.icon-home:before {
  content: "\e907";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-plus:before {
  content: "\ea0a";
}
.icon-minus:before {
  content: "\ea0b";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-checkmark:before {
  content: "\ea10";
}
.icon-checkmark2:before {
  content: "\ea11";
}
.icon-play3:before {
  content: "\ea1c";
}
.icon-cancel-circle:before {
  content: "\ea0d";
}
.icon-play2:before {
  content: "\ea15";
}
.icon-circle-up:before {
  content: "\ea41";
}
.icon-circle-right:before {
  content: "\ea42";
}
.icon-circle-down:before {
  content: "\ea43";
}
.icon-circle-left:before {
  content: "\ea44";
}
.icon-checkbox-checked:before {
  content: "\ea52";
}
.icon-checkbox-unchecked:before {
  content: "\ea53";
}
.icon-radio-checked:before {
  content: "\ea54";
}
.icon-radio-checked2:before {
  content: "\ea55";
}
.icon-radio-unchecked:before {
  content: "\ea56";
}
.icon-google-plus:before {
  content: "\e90c";
}
.icon-instagram:before {
  content: "\e925";
}
.icon-facebook-logo:before {
  content: "\e912";
}
.icon-twitter2:before {
  content: "\ea91";
}
.icon-youtube3:before {
  content: "\e90f";
}
.icon-play:before {
  content: "\e906";
}
.icon-linkedin-logo:before {
  content: "\e910";
}
.icon-share:before {
  content: "\e924";
}
.icon-construction:before {
  content: "\e91f";
}
.icon-bell:before {
  content: "\e920";
}
.icon-coeur:before {
  content: "\e923";
}
.icon-maison:before {
  content: "\e927";
}
.icon-pause .path1:before {
  content: "\e928";
  color: #f24646;
}
.icon-pause .path2:before {
  content: "\e929";
  margin-left: -1em;
  color: #ffffff;
}
.icon-people1:before {
  content: "\e92a";
}
.icon-play1 .path1:before {
  content: "\e92b";
  color: #f24646;
}
.icon-play1 .path2:before {
  content: "\e92c";
  margin-left: -1em;
  color: #fffcee;
}
.icon-private:before {
  content: "\e92d";
}
.icon-samll_heart:before {
  content: "\e92e";
}
.icon-shield:before {
  content: "\e92f";
}
.icon-youtube:before {
  content: "\e930";
}
.icon-quote:before {
  content: "\e931";
}
.icon-mute:before {
  content: "\e932";
}
.icon-volume:before {
  content: "\e933";
}
.icon-volume2 .path1:before {
  content: "\e934";
  color: #f24646;
}
.icon-volume2 .path2:before {
  content: "\e935";
  margin-left: -1em;
  color: #ffffff;
}
.icon-volume2 .path3:before {
  content: "\e936";
  margin-left: -1em;
  color: #ffffff;
}
.icon-volume2 .path4:before {
  content: "\e937";
  margin-left: -1em;
  color: #ffffff;
}
.icon-mute2 .path1:before {
  content: "\e938";
  color: #f24646;
}
.icon-mute2 .path2:before {
  content: "\e939";
  margin-left: -1em;
  color: #ffffff;
}
.icon-mute2 .path3:before {
  content: "\e93a";
  margin-left: -1em;
  color: #ffffff;
}
.icon-mail:before {
  content: "\e93b";
}
.icon-facebook_circle:before {
  content: "\e93c";
}
.icon-twitter_circle:before {
  content: "\e93d";
}
.icon-insta_circle:before {
  content: "\e93e";
}
.icon-youtube_circle:before {
  content: "\e93f";
}
.icon-close_bt:before {
  content: "\e940";
}
.icon-logo-x .path1:before {
  content: "\e941";
  color: #000000;
}
.icon-logo-x .path2:before {
  content: "\e942";
  margin-left: -1em;
  color: #ffffff;
}
.icon-twitter:before {
  content: "\e943";
}
.icon-brochure:before {
  content: "\e944";
}
.icon-uniE946:before {
  content: "\e946";
}
.icon-telephone:before {
  content: "\e947";
}
.icon-arrow_right_2:before {
  content: "\e948";
}
.icon-arrow_left_2:before {
  content: "\e949";
}
.icon-love:before {
  content: "\e94a";
}
.icon-personnes_acceuillies:before {
  content: "\e94b";
}
.icon-helping-hand:before {
  content: "\e94c";
}
.icon-play-button-arrowhead:before {
  content: "\e94d";
}
.icon-telecharger-arrow:before {
  content: "\e94e";
}
.icon-twitter_x:before {
  content: "\e94f";
}
.icon-square:before {
  content: "\e916";
}
.icon-play_ccfd:before {
  content: "\e945";
}
.icon-right_arrw:before {
  content: "\e950";
}
.icon-left_arrw:before {
  content: "\e951";
}
.icon-quote_1:before {
  content: "\e952";
}
.icon-quote2:before {
  content: "\e954";
}
.icon-circle_linkedin:before {
  content: "\e955";
}
.btn {
  text-transform: uppercase;
  color: #ffffff;
}
.btn.cta-purple {
  background: #9b6ee8;
  font-family: "Switzer-b";
  transition: background 0.2s;
}
.btn.cta-purple:hover {
  color: #ffffff;
  background-color: #6c30e2;
}
.cta-impact {
  /* Alinement & Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Dimensions Figma */
  width: 100%;
  max-width: 267px;
  /* Reste à 267px max, mais rétrécit si l'écran est plus petit */
  height: 42px;
  /* Padding Figma (Horizontal: 20px, Vertical: 10px) */
  padding: 10px 20px;
  /* Typographie & Font */
  font-family: 'Switzer-sb', sans-serif;
  font-size: 18px;
  /* Ajustable selon le rendu souhaité */
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  /* Empêche le texte de sauter à la ligne */
  /* Design & Apparence Figma */
  background-color: rgba(0, 167, 150, 0.7);
  /* Couleur @green avec opacité à 70% */
  border: 1px solid #ffffff;
  /* Bordure stroke blanche de 1px */
  border-radius: 100px;
  /* Corner radius à 100 pour la forme pilule */
  /* Interactions & Performance */
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  /* Effet au survol */
  /* Reset Bootstrap ou styles natifs de liens */
}
.cta-impact:hover {
  background-color: #00a796;
  /* Devient opaque à 100% au survol */
  transform: scale(1.03);
  /* Léger effet de dynamisme */
  color: #ffffff;
}
.cta-impact:focus {
  outline: none;
  box-shadow: none;
}
/* CSS Document */
#up {
  bottom: 10px;
  height: 40px;
  position: fixed;
  right: 10px;
  width: 40px;
  z-index: 300;
  display: none;
}
@media screen and (max-width: 600px) {
  #up {
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    /* IE 5-7 */
    filter: alpha(opacity=60);
    /* Netscape */
    -moz-opacity: 0.6;
    /* Safari 1.x */
    -khtml-opacity: 0.6;
    opacity: 0.6;
  }
}
#up #gototop {
  background: url("../img/go_up.png") no-repeat scroll 0 -40px rgba(0, 0, 0, 0);
  bottom: 0;
  cursor: pointer;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  right: 0;
  width: 40px;
  transition: all 0.3s ease-in-out 0s;
}
#up #gototop:hover {
  background-position: 0 0;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible !important;
}
.ivisible {
  visibility: hidden;
}
.revealOnScroll {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .revealOnScroll {
    -webkit-animation-name: none !important;
    animation-name: none!important;
    visibility: visible!important;
  }
}
.animation_time_0_1 {
  -webkit-animation-duration: 0.1s !important;
  animation-duration: 0.1s !important;
}
.animation_time_0_2 {
  -webkit-animation-duration: 0.2s !important;
  animation-duration: 0.2s !important;
}
.animation_time_0_3 {
  -webkit-animation-duration: 0.3s !important;
  animation-duration: 0.3s !important;
}
.animation_time_0_4 {
  -webkit-animation-duration: 0.4s !important;
  animation-duration: 0.3s !important;
}
.animation_time_0_5 {
  -webkit-animation-duration: 0.5s !important;
  animation-duration: 0.5s !important;
}
.animation_time_0_10 {
  -webkit-animation-duration: 0.10s !important;
  animation-duration: 0.10s !important;
}
.animation_time_0_15 {
  -webkit-animation-duration: 0.15s !important;
  animation-duration: 0.15s !important;
}
.animation_time_0_20 {
  -webkit-animation-duration: 0.20s !important;
  animation-duration: 0.20s !important;
}
.animation_time_1 {
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
}
.animation_time_2 {
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
}
.animation_time_3 {
  -webkit-animation-duration: 3s !important;
  animation-duration: 3s !important;
}
.animation_time_4 {
  -webkit-animation-duration: 4s !important;
  animation-duration: 4s !important;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.delay_0_1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}
.delay_0_1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}
.delay_0_2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}
.delay_0_3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.delay_0_4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}
.delay_0_5 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}
.delay_0_10 {
  -webkit-animation-delay: 0.10s !important;
  animation-delay: 0.10s !important;
}
.delay_0_15 {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
.delay_0_20 {
  -webkit-animation-delay: 0.20s !important;
  animation-delay: 0.20s !important;
}
.delay_0_25 {
  -webkit-animation-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}
.delay_0_30 {
  -webkit-animation-delay: 0.30s !important;
  animation-delay: 0.30s !important;
}
.delay_0_35 {
  -webkit-animation-delay: 0.35s !important;
  animation-delay: 0.35s !important;
}
.delay_0_40 {
  -webkit-animation-delay: 0.40s !important;
  animation-delay: 0.40s !important;
}
.delay_0_50 {
  -webkit-animation-delay: 0.50s !important;
  animation-delay: 0.50s !important;
}
.delay_0_60 {
  -webkit-animation-delay: 0.60s !important;
  animation-delay: 0.60s !important;
}
.delay_0_70 {
  -webkit-animation-delay: 0.70s !important;
  animation-delay: 0.70s !important;
}
.delay_0_80 {
  -webkit-animation-delay: 0.80s !important;
  animation-delay: 0.80s !important;
}
.delay_0_90 {
  -webkit-animation-delay: 0.90s !important;
  animation-delay: 0.90s !important;
}
.delay_1 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}
.delay_2 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
}
.delay_3 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
}
.delay_4 {
  -webkit-animation-delay: 4s !important;
  animation-delay: 4s !important;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
header {
  position: relative;
  z-index: 95;
}
header .navbar.mobile {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  header .navbar.mobile {
    display: none;
  }
}
header .navbar.mobile .navbar-brand img {
  max-width: 200px;
}
header .navbar.mobile .navbar-toggler {
  border: none;
}
header .navbar.mobile .navbar-toggler .navbar-toggler-icon {
  filter: brightness(0);
}
header .navbar.mobile .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar.mobile #offcanvasNavbar .offcanvas-body {
  padding: 20px;
  background: #ffffff;
}
header .navbar.mobile #offcanvasNavbar .offcanvas-body .nav-item {
  text-align: center;
  font-family: "Switzer-m";
  font-size: 24px;
  margin-bottom: 20px;
}
header .navbar.mobile #offcanvasNavbar .offcanvas-body .nav-link {
  display: block !important;
  color: #121212;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none;
}
header .navbar.mobile #offcanvasNavbar .offcanvas-body .nav-link.active {
  text-decoration: underline;
}
header .navbar.mobile #offcanvasNavbar .offcanvas-body .nav-link:hover {
  color: #7a5bd9 !important;
  /* Réutilise votre variable si définie */
}
header .navbar.desktop {
  display: none;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 3%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  header .navbar.desktop {
    display: block;
  }
}
header .navbar.desktop .container-fluid .links-container {
  color: #121212;
  /* Votre mixin ou propriété existante */
  font-family: "Switzer-sb";
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  header .navbar.desktop .container-fluid .links-container {
    font-size: 20px;
  }
}
header .navbar.desktop .container-fluid .links-container.scrolled {
  color: #121212;
}
header .navbar.desktop .container-fluid .links-container.scrolled .nav-link:hover {
  color: #7a5bd9 !important;
}
header .navbar.desktop .container-fluid .links-container .nav-link {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
header .navbar.desktop .container-fluid .links-container .nav-link.active {
  text-decoration: underline;
}
header .navbar.desktop .container-fluid .links-container .nav-link:hover {
  color: #7a5bd9;
}
header .navbar.desktop .container-fluid .links-container .nav-link:first-child {
  margin-right: 5%;
}
header .navbar.desktop .container-fluid .navbar-brand-desktop img {
  max-width: 260px;
}
@media screen and (min-width: 1200px) {
  header .navbar.desktop .container-fluid .navbar-brand-desktop img {
    max-width: 320px;
  }
}
header#engagementHeader .nav-link {
  color: #121212;
}
footer {
  color: #121212;
  padding: 3em 0 10em;
  background: #ffffff;
  background: -webkit-linear-gradient(180deg, #d0d7fc 0%, #d0d7fc 100%);
  background: -moz-linear-gradient(180deg, #d0d7fc 0%, #d0d7fc 100%);
  background: linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 21;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  footer {
    padding: 5em 0 15em;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 5em 0 12em;
  }
}
footer a {
  color: #121212;
  text-decoration: underline;
}
footer a:hover {
  color: #9b6ee8;
}
footer .logo_foot {
  margin-top: 50px;
  width: 180px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  footer .logo_foot {
    width: 260px;
  }
}
footer h2 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  line-height: initial;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  footer h2 {
    font-size: 22px;
    font-size: 36px;
    line-height: 48px;
  }
}
footer ul.social_links {
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}
footer ul.social_links li {
  display: inline-block;
}
footer ul.social_links li a {
  display: inline-block;
  padding: 0.5em;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-border-radius: 160px;
  -moz-border-radius: 160px;
  border-radius: 160px;
}
footer ul.social_links li a:hover {
  text-decoration: none;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
footer ul.social_links li a .icon-social {
  max-width: 40px;
  height: auto;
}
@media screen and (min-width: 576px) {
  footer ul.social_links li a .icon-social {
    max-width: 60px;
  }
}
footer .oneheart {
  padding-top: 10px;
  font-family: "Switzer-sb";
  width: 270px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  footer .oneheart {
    width: 100%;
  }
}
footer .credits {
  color: #ffffff;
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
}
footer .credits span {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 16px;
}
footer .don-sms {
  max-width: 768px;
  text-align: center;
  font-size: 9px;
  margin: 0 auto;
  padding: 0 0 20px;
  line-height: 120%;
}
@media screen and (min-width: 992px) {
  footer .don-sms {
    font-size: 12px;
  }
}
#donation-container {
  display: none;
}
@media screen and (min-width: 768px) {
  #donation-container {
    display: inline-block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: fit-content;
    padding: 15px;
    border-radius: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  #donation-container .donation-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #donation-container .donation-box .donation-options {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  #donation-container .donation-box .donation-options .donation-amount {
    font-family: "Switzer-sb";
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    font-size: 20px;
    border: none;
  }
  #donation-container .donation-box .donation-options .donation-amount:hover {
    background: #ae91ec;
  }
  #donation-container .donation-box .donation-options .donation-amount.active {
    background-color: #9b6ee8;
    color: #ffffff;
  }
  #donation-container .donation-box .donation-options .donation-other {
    font-family: "Switzer-sb";
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    /* Prépare la transition de bordure */
    transition: border-color 0.2s, box-shadow 0.2s;
    /* --- AJOUT : Contour violet quand l'input est sélectionné --- */
  }
  #donation-container .donation-box .donation-options .donation-other span {
    font-weight: 500;
  }
  #donation-container .donation-box .donation-options .donation-other input {
    border: none;
    width: 70px;
    text-align: center;
    outline: none;
    background: transparent;
    font-weight: 500;
    font-family: "Switzer-sb";
    font-size: 20px;
    /* Masque les petites flèches haut/bas natives des inputs de type number */
  }
  #donation-container .donation-box .donation-options .donation-other input::-webkit-outer-spin-button,
  #donation-container .donation-box .donation-options .donation-other input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  #donation-container .donation-box .donation-options .donation-other input[type=number] {
    -moz-appearance: textfield;
  }
  #donation-container .donation-box .donation-options .donation-other.active {
    border-color: #9b6ee8;
    box-shadow: 0 0 0 2px rgba(155, 110, 232, 0.2);
  }
  #donation-container .donation-box .donation-submit {
    background-color: #8c5de8;
    font-family: "Switzer-b";
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  #donation-container .donation-box .donation-submit:hover {
    background-color: #6c30e2;
  }
  #donation-container .donation-note {
    margin-top: 0.5rem;
    font-size: 20px;
    color: #121212;
    text-align: center;
  }
  #donation-container .donation-note span {
    font-family: 'Switzer-sb';
  }
}
#donation-container-mobile {
  display: block;
  position: fixed;
  bottom: 50px;
  left: 10px;
  right: 20px;
  margin: 0 auto;
  z-index: 99;
  max-width: 320px;
}
@media screen and (min-width: 425px) {
  #donation-container-mobile {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  #donation-container-mobile {
    display: none;
  }
}
#donation-container-mobile #notification-mobile {
  background-color: #ffffff;
  padding: 15px 60px 15px 15px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(62, 12, 0, 0.537);
  width: 85%;
}
#donation-container-mobile #notification-mobile p {
  margin: 0;
  text-align: left;
  font-size: 12px;
  line-height: 120%;
  font-family: "Switzer-m";
}
#donation-container-mobile #notification-mobile p.time {
  color: #6f6f6f;
}
@media screen and (min-width: 425px) {
  #donation-container-mobile #notification-mobile p {
    font-size: 16px;
  }
}
#donation-container-mobile #pastille-cta {
  position: absolute;
  max-width: 120px;
  height: auto;
  bottom: -50px;
  right: -20px;
  width: 130px;
}
@media screen and (min-width: 425px) {
  #donation-container-mobile #pastille-cta {
    right: -15px;
  }
}
#notification-desktop {
  border-radius: 10px;
  z-index: 99;
  display: inline-block;
  padding: 15px;
}
#notification-desktop p {
  margin: 0;
  text-align: right;
  font-size: 11px;
  font-family: "Switzer-m";
}
#notification-desktop p.time {
  color: #6f6f6f;
}
@media screen and (min-width: 1200px) {
  #notification-desktop p {
    font-size: 16px;
  }
}
#impactOffcanvas.offcanvas-start {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  border: none;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
#impactOffcanvas .btn-close-custom {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 38px;
  color: #333;
  cursor: pointer;
  z-index: 20;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
#impactOffcanvas .btn-close-custom:hover {
  opacity: 1;
}
#impactOffcanvas .offcanvas-body {
  flex: 1;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #impactOffcanvas .offcanvas-body {
    padding: 30px 40px 0 40px;
  }
}
#impactOffcanvas .offcanvas-carousel {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  height: auto;
}
#impactOffcanvas .offcanvas-carousel .slick-list,
#impactOffcanvas .offcanvas-carousel .slick-track {
  height: 100%;
}
#impactOffcanvas .offcanvas-slide {
  height: 100%;
}
#impactOffcanvas .offcanvas-slide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 65vh;
}
@media screen and (min-width: 768px) {
  #impactOffcanvas .offcanvas-slide-container {
    max-height: 72vh;
  }
}
#impactOffcanvas .offcanvas-slide-container h3 {
  color: #00a796;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
  width: 100%;
  flex-shrink: 0;
  line-height: 1.2;
}
#impactOffcanvas .offcanvas-slide-container h3 .script {
  font-style: italic;
}
#impactOffcanvas .offcanvas-slide-content-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  /* 🔥 CORRECTION 1 : Le conteneur */
  flex: 1;
  /* Remplace height: 100% par flex: 1 */
  min-height: 0;
  /* Obligatoire pour empêcher Flexbox de déborder */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #impactOffcanvas .offcanvas-slide-content-flex {
    flex-direction: row;
    align-items: start;
    gap: 60px;
  }
}
#impactOffcanvas .offcanvas-slide-content-flex img {
  width: auto;
  height: auto;
  max-width: 290px;
  max-height: 100%;
  aspect-ratio: 0.70707071;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  display: block;
  flex-shrink: 1;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  #impactOffcanvas .offcanvas-slide-content-flex img {
    max-width: 310px;
  }
}
@media screen and (min-width: 1400px) {
  #impactOffcanvas .offcanvas-slide-content-flex img {
    max-width: 350px;
  }
}
#impactOffcanvas .offcanvas-text-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 15px;
  text-align: left;
}
#impactOffcanvas .offcanvas-text-content::-webkit-scrollbar {
  width: 6px;
}
#impactOffcanvas .offcanvas-text-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
#impactOffcanvas .offcanvas-text-content::-webkit-scrollbar-thumb {
  background: rgba(0, 167, 150, 0.2);
  border-radius: 10px;
}
#impactOffcanvas .offcanvas-text-content::-webkit-scrollbar-thumb:hover {
  background: #00a796;
}
#impactOffcanvas .offcanvas-text-content p {
  font-family: 'Switzer-r', sans-serif;
  font-size: 14px;
  line-height: 120%;
  color: #121212;
  margin-bottom: 14px;
}
#impactOffcanvas .offcanvas-text-content p:first-child {
  margin-top: 0;
}
#impactOffcanvas .offcanvas-text-content p strong {
  font-weight: bold;
}
#impactOffcanvas .slick-prev,
#impactOffcanvas .slick-next {
  display: none !important;
}
/*--------------------------------------
  SECTIONS
--------------------------------------*/
#section_top_start {
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
}
#section_top_start .video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#section_top_start .video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#section_top_start .content {
  position: absolute;
  z-index: 3;
  top: 180px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #section_top_start .content {
    top: 27%;
  }
}
#section_top_start .content h1 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  #section_top_start .content h1 {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 1200px) {
  #section_top_start .content h1 {
    font-size: 4.6rem;
  }
}
#section_top_start .content .cta-purple {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #section_top_start .content .cta-purple {
    display: none;
  }
}
#section_top_start .content #arrow-top-start {
  display: none;
}
@media screen and (min-width: 768px) {
  #section_top_start .content #arrow-top-start {
    display: inline-block;
    margin-top: 10px;
    width: 55px;
  }
}
#section_recherche {
  height: 100vh;
  position: sticky;
  top: 0;
}
#section_recherche .research-slide {
  position: relative;
  height: 100vh;
  background: center no-repeat;
  background-size: cover;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  #section_recherche .research-slide {
    background-position: 5% 5%;
  }
}
#section_recherche .research-slide .content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  /* ==========================================================================
         CONFIGURATION STRUCTURELLE INJECTÉE PAR LE JAVASCRIPT
         ========================================================================== */
  /* 1. Rendu spécifique Mobile (.mobile-layout) */
  /* 2. Rendu spécifique Desktop (.desktop-layout) */
}
#section_recherche .research-slide .content h2 {
  text-align: center;
  padding: 80px 10px;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  #section_recherche .research-slide .content h2 {
    padding: 110px 0;
  }
}
#section_recherche .research-slide .content .person p {
  font-family: 'Switzer-sb', sans-serif;
  font-size: 16px;
  line-height: 120%;
  text-shadow: 0 0 20px #000000;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  #section_recherche .research-slide .content .person p {
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  #section_recherche .research-slide .content .person p {
    font-size: 30px;
  }
}
@media screen and (min-width: 1600px) {
  #section_recherche .research-slide .content .person p {
    font-size: 40px;
  }
}
#section_recherche .research-slide .content .person .btn-arrow {
  display: none !important;
}
#section_recherche .research-slide .content.mobile-layout {
  position: relative;
}
#section_recherche .research-slide .content.mobile-layout .persons-container {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
#section_recherche .research-slide .content.mobile-layout .persons-container .person {
  width: 100%;
}
#section_recherche .research-slide .content.mobile-layout .persons-container .person.left {
  text-align: end;
}
#section_recherche .research-slide .content.desktop-layout {
  /* Le CTA est imbriqué sous le bloc de droite et suit le flux naturel */
}
#section_recherche .research-slide .content.desktop-layout .person {
  max-width: none;
  position: absolute;
  z-index: 3;
}
#section_recherche .research-slide .content.desktop-layout .person.left {
  left: 20px;
  top: 32%;
}
@media screen and (min-width: 1200px) {
  #section_recherche .research-slide .content.desktop-layout .person.left {
    top: 35%;
  }
}
@media screen and (min-width: 1400px) {
  #section_recherche .research-slide .content.desktop-layout .person.left {
    top: 33%;
  }
}
@media screen and (min-width: 1600px) {
  #section_recherche .research-slide .content.desktop-layout .person.left {
    top: 28%;
  }
}
#section_recherche .research-slide .content.desktop-layout .person.right {
  right: 20px;
  top: 55%;
  text-align: end;
}
#section_recherche .research-slide .content.desktop-layout .cta-impact {
  position: static;
  transform: none;
  margin-top: 15px;
  display: inline-flex;
}
/* ==========================================================================
   SECTION FORMULAIRE
   ========================================================================== */
#section_formulaire {
  position: relative;
  height: 100vh;
  background-color: transparent;
  z-index: 20;
  /* ----------------------------------------------------------------------
     1. LE BLOB (Animation GSAP)
     ---------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------
     2. LE CONTENEUR GLOBAL (Formulaire + Décors)
     ---------------------------------------------------------------------- */
}
@media screen and (min-width: 1200px) {
  #section_formulaire {
    background-position: center;
    background-size: contain;
  }
}
#section_formulaire .blob-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#section_formulaire .blob-wrapper .blob-element {
  width: 15vw;
  max-width: 150px;
  height: auto;
  overflow: visible;
  opacity: 0;
  transform: scale(0.1) rotate(0deg);
  will-change: transform, opacity;
}
#section_formulaire .form-content-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  visibility: hidden;
  opacity: 0;
  background-color: #d0d7fc;
  background-image: url('../img/section_formulaire/radial_bg.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  /* -- DÉCORS (Visages) -- */
  /* -- DÉCORS (Rubans) -- */
  /* -- LE FORMULAIRE DE DON -- */
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper {
    align-items: center;
    padding-top: unset;
    background-position: center;
    background-size: contain;
  }
}
#section_formulaire .form-content-wrapper .face {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 40vw;
  height: 30vh;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 400px) {
  #section_formulaire .form-content-wrapper .face {
    width: 50vw;
    height: 40vh;
  }
}
@media screen and (min-width: 768px) {
  #section_formulaire .form-content-wrapper .face {
    width: 40vw;
    height: 50vh;
  }
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper .face {
    width: 40vw;
    height: 85vh;
  }
}
#section_formulaire .form-content-wrapper .face.left {
  left: 0;
  background-position: left bottom;
}
#section_formulaire .form-content-wrapper .face.right {
  right: 0;
  background-position: right bottom;
}
#section_formulaire .form-content-wrapper .ruban {
  position: absolute;
  z-index: 9;
  height: auto;
}
#section_formulaire .form-content-wrapper .ruban.top {
  top: 0;
  right: 15%;
  display: none;
  max-width: 20vw;
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper .ruban.top {
    display: inline-block;
  }
}
#section_formulaire .form-content-wrapper .ruban.bottom {
  bottom: 0;
  left: 30%;
  display: none;
  max-width: 17vw;
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper .ruban.bottom {
    display: inline-block;
  }
}
#section_formulaire .form-content-wrapper .ruban.boucle {
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  margin: 0 auto;
  max-width: 85vw;
}
@media screen and (max-width: 399px) {
  #section_formulaire .form-content-wrapper .ruban.boucle {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  #section_formulaire .form-content-wrapper .ruban.boucle {
    display: none;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container {
  max-width: 600px;
  padding: 20px 20px 0;
}
@media screen and (max-width: 767px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container p {
    font-size: 14px;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .btn-amount {
  display: block;
  width: 100%;
  padding: 0.4rem 1rem;
  color: #9b6ee8;
  font-weight: 500;
  font-size: 20px;
  font-family: "Switzer-sb";
  background-color: transparent;
  border: 1px solid #9b6ee8;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}
@media screen and (min-width: 400px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .btn-amount {
    padding: 0.75rem 1rem;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .btn-amount.active,
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .btn-amount:hover,
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .btn-amount:focus {
  color: #ffffff;
  font-family: "Switzer-sb";
  background-color: #7a5bd9;
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-other {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-family: "Switzer-sb";
  background-color: rgba(148, 117, 225, 0.1);
  border-radius: 6px;
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-other {
    padding: 0.75rem 2rem;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-other span {
  color: #121212;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  opacity: 0.8;
}
@media screen and (min-width: 992px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-other span {
    font-size: 20px;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-other input {
  width: 55%;
  font-weight: 500;
  text-align: center;
  background: transparent;
  border: none;
  border-bottom: 1px solid grey;
  outline: none;
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .don-summary-desktop {
  display: none;
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .don-summary-desktop {
    display: inline-block;
    color: #222;
    font-size: 1rem;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .don-summary-mobile {
  margin: 10px auto 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .don-summary-mobile {
    display: none;
  }
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-submit {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.6rem 1.25rem;
  color: #fff;
  font-family: 'Switzer-b';
  font-size: inherit;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #8c5de8;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}
#section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-submit:hover {
  background-color: #6c30e2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #section_formulaire .form-content-wrapper #formulaire-don #formulaire-container .donation-submit {
    width: auto;
    min-width: 250px;
    max-width: 250px;
    margin-top: 40px;
  }
}
/* ==========================================================================
   3. COMPORTEMENT NATIF MOBILE (< 992px)
   ========================================================================== */
@media screen and (max-width: 991px) {
  #section_formulaire {
    position: sticky !important;
    top: 0;
    z-index: 50;
  }
  #section_formulaire .blob-wrapper {
    display: none !important;
  }
  #section_formulaire .form-content-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
  }
}
#section_chiffres {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 52;
}
#section_chiffres .chiffres-carousel-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
#section_chiffres .chiffres-carousel-container .chiffres-nav {
  gap: 1.25rem;
}
#section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b59ee6;
  /* Violet clair pour l'état inactif */
  transition: all 0.3s ease;
  border: none;
}
@media screen and (min-width: 1200px) {
  #section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link {
    width: 65px;
    height: 65px;
  }
}
#section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  /* Astuce : Si tes SVG ne sont pas blancs d'origine, cette ligne les force en blanc pur */
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 1200px) {
  #section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link img {
    width: 45px;
    height: 45px;
  }
}
#section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link.active {
  background-color: #8c5de8;
  /* Violet foncé pour l'état actif */
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(140, 93, 232, 0.4);
}
#section_chiffres .chiffres-carousel-container .chiffres-nav .nav-link:hover:not(.active) {
  background-color: #9675dc;
  transform: scale(1.05);
}
#section_chiffres .chiffres-carousel-container .tab-content {
  min-height: 140px;
  /* Garde une hauteur fixe pour éviter que la page saute quand le texte change */
  display: flex;
  align-items: center;
  justify-content: center;
}
#section_chiffres .chiffres-carousel-container .tab-content .chiffre-text {
  font-family: 'Switzer-l', sans-serif;
  font-size: 30px;
  line-height: 120%;
  color: #222;
  margin: 0;
}
#section_chiffres .chiffres-carousel-container .tab-content .chiffre-text strong {
  font-family: 'Switzer-b', sans-serif;
  /* Ton font-weight bold */
  font-weight: 700;
}
#section_chiffres .hide-mobile {
  display: none;
}
@media screen and (min-width: 992px) {
  #section_chiffres .hide-mobile {
    display: inline-block;
  }
}
#section_arguments {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 51;
}
#section_arguments .arguments {
  padding: 0 20px;
  justify-content: center;
}
#section_arguments .arguments .argument-item {
  height: 200px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  padding: 30px 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1200px) {
  #section_arguments .arguments .argument-item {
    height: 250px;
    max-width: 350px;
  }
}
#section_arguments .arguments .argument-item.fiscal {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: -moz-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  border-radius: 100px 20px 20px 20px;
}
#section_arguments .arguments .argument-item.secured,
#section_arguments .arguments .argument-item.personalised {
  background: #ffffff;
  border-radius: 20px;
}
#section_arguments .arguments .argument-item .reassurance-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 1200px) {
  #section_arguments .arguments .argument-item .reassurance-container {
    gap: 10px;
  }
}
#section_arguments .arguments .argument-item .reassurance-container img {
  height: 50px;
  width: auto;
}
@media screen and (min-width: 1200px) {
  #section_arguments .arguments .argument-item .reassurance-container img {
    height: 80px;
  }
}
#section_arguments .arguments .argument-item .reassurance-container h4 {
  font-family: 'Switzer-sb', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 120%;
}
@media screen and (min-width: 1200px) {
  #section_arguments .arguments .argument-item .reassurance-container h4 {
    font-size: 16px;
  }
}
#section_arguments .arguments .argument-item .reassurance-container p {
  font-family: 'Switzer-l', sans-serif;
  line-height: 120%;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  #section_arguments .arguments .argument-item .reassurance-container p {
    font-size: 16px;
  }
}
#section_arguments.page-engagement {
  height: unset;
}
@media screen and (min-width: 992px) {
  #section_arguments.page-engagement {
    height: unset;
  }
}
#section_arguments.page-engagement .padding-add {
  padding: 100px 0;
  border-radius: 40px 40px 0 0;
}
#section_arguments.page-engagement .argument-item.fiscal {
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: -moz-linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  background: linear-gradient(180deg, #d0d7fc 0%, #7cd5c4 100%);
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  #section_arguments.page-engagement .argument-item.fiscal {
    transform: scale(105%);
  }
}
@media screen and (min-width: 1200px) {
  #section_arguments.page-engagement .argument-item.fiscal {
    transform: scale(110%);
  }
}
@media screen and (min-width: 1400px) {
  #section_arguments.page-engagement .argument-item.fiscal {
    transform: scale(115%);
  }
}
#section_arguments .hide-mobile {
  display: none;
}
@media screen and (min-width: 992px) {
  #section_arguments .hide-mobile {
    display: inline-block;
  }
}
#section_vip {
  background: #ffffff;
  background: -webkit-linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
  background: -moz-linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
  background: linear-gradient(0deg, #ffffff 0%, #ffffff 10%, #e2e3fa 40%, #ded3f6 100%);
  padding: 100px 0 0;
  text-align: center;
  /* ==========================================================================
    SECTION VIP (AMBASSADEURS & VIDÉOS)
    ========================================================================== */
}
#section_vip #section_parrains {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #section_vip #section_parrains {
    padding-bottom: 50px;
  }
}
#section_vip #section_parrains .ruban-bg {
  display: none;
  height: 160vh;
  width: 100vw;
  position: absolute;
  top: 150px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
@media screen and (min-width: 992px) {
  #section_vip #section_parrains .ruban-bg {
    display: inline-block;
  }
}
@media screen and (min-width: 1600px) {
  #section_vip #section_parrains .ruban-bg {
    height: 200vh;
    width: 100vw;
  }
}
#section_vip #section_parrains .content.parrains {
  position: relative;
  margin-top: -2px;
  padding-top: 30px;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
}
#section_vip #section_parrains .content.parrains #carousel-parrains {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
  }
}
#section_vip #section_parrains .content.parrains #carousel-parrains p {
  margin-bottom: 0;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain {
  text-align: center;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-role {
  display: inline-block;
  font-family: "Switzer-m";
  background: #ffffff;
  color: #4a67f5;
  padding: 10px;
  margin-bottom: 0;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-role.rotate-left {
  transform: rotate(1deg);
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-role.rotate-right {
  transform: rotate(-1deg);
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom {
  font-family: "Switzer-m";
  display: inline-block;
  color: #4a67f5;
  padding: 8px 15px;
  font-size: 48px;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
@media screen and (min-width: 425px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom {
    font-size: 64px;
  }
}
@media screen and (min-width: 992px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom {
    font-size: 56px;
  }
}
@media screen and (min-width: 1400px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom {
    font-size: 80px;
  }
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom.green {
  background-color: #7cd5c4;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-identite .parrain-nom.purpled {
  background-color: #ae91ec;
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-img {
  height: 350px;
  width: auto;
  margin: -40px auto -15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 425px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-img {
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-img {
    margin: -70px auto -15px;
    height: 600px;
  }
}
@media screen and (min-width: 1400px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .parrain-img {
    height: 700px;
  }
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .verbatim {
  font-family: 'Switzer-m', sans-serif;
  line-height: 120%;
  padding: 30px 15px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .verbatim {
    font-size: 15px;
  }
}
@media screen and (min-width: 576px) {
  #section_vip #section_parrains .content.parrains #carousel-parrains .parrain .verbatim {
    font-size: 16px;
  }
}
#section_vip #section_parrains .content.parrains #carousel-parrains .parrain .signature {
  font-family: "Switzer-b";
}
#section_vip #section_ambassadeurs {
  position: relative;
}
#section_vip #section_ambassadeurs #title-ambassadeurs {
  position: relative;
  /* Point d'ancrage pour le ruban */
  z-index: 20;
}
#section_vip #section_ambassadeurs #title-ambassadeurs::after {
  content: "";
  background-image: url('../img/section_vip/vector_frame_ambassadeurs.png');
  height: var(--hauteur-ruban, 105vh);
  /* Modifié par le JS */
  width: 50vw;
  position: absolute;
  top: 0px;
  left: -100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 1400px) {
  #section_vip #section_ambassadeurs #title-ambassadeurs::after {
    display: inline-block;
  }
}
#section_vip #section_ambassadeurs .container-ambassadeurs {
  padding: 30px 0 60px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 991px) {
  #section_vip #section_ambassadeurs .container-ambassadeurs {
    max-width: 400px;
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 425px) {
  #section_vip #section_ambassadeurs .container-ambassadeurs {
    max-width: 300px;
    padding: 0 0 60px;
  }
}
#section_vip #section_ambassadeurs .container-ambassadeurs #carousel-ambassadeurs {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  #section_vip #section_ambassadeurs .container-ambassadeurs #carousel-ambassadeurs {
    max-width: 1140px;
  }
}
#section_vip #section_ambassadeurs .container-ambassadeurs .ambassadeur-item {
  padding: 40px 25px 0;
  /* 25px gauche/droite = 50px de gap total entre tes éléments */
  outline: none;
  transition: transform 0.4s ease-in-out;
  border-radius: 20px;
  overflow: visible;
}
@media screen and (min-width: 992px) {
  #section_vip #section_ambassadeurs .container-ambassadeurs .ambassadeur-item.slick-center {
    transform: scale(1.08);
  }
  #section_vip #section_ambassadeurs .container-ambassadeurs .ambassadeur-item.slick-center .card-ambassadeur .img-container {
    background-color: #d0d7fc;
    border-color: #ffffff;
  }
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur {
  text-align: center;
  overflow: visible;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .img-container {
  width: 100%;
  aspect-ratio: 0.8;
  border-radius: 20px;
  position: relative;
  border: 2px solid #ffffff;
  background-color: #b7c3fa;
  transition: border-color 0.3s, background-color 0.3s;
  overflow: visible !important;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .img-container .ambassadeur-img {
  height: 110%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 2;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .img-container .badge-role {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #ffffff;
  color: #4a67f5;
  font-family: "Switzer-m", sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 0 4px 4px 0;
  z-index: 3;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .ambassadeur-nom {
  color: #4a67f5;
  font-family: "Switzer-m", sans-serif;
  font-size: 26px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .ambassadeur-nom {
    font-size: 32px;
  }
}
#section_vip #section_ambassadeurs .container-ambassadeurs .card-ambassadeur .ambassadeur-metier {
  color: #4a67f5;
  font-family: "Switzer-m", sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .carousel-controls-inline {
  margin-top: 30px;
}
#section_vip #section_ambassadeurs .container-ambassadeurs .carousel-controls-inline .slick-dots li button {
  background-color: rgba(74, 103, 245, 0.4);
}
#section_vip #section_ambassadeurs .container-ambassadeurs .carousel-controls-inline .slick-dots li.slick-active button {
  background-color: #4a67f5;
}
@media screen and (min-width: 992px) {
  #section_vip #section_ambassadeurs .custom-nav-arrow.is-overlay.arrow-prev {
    left: 0;
  }
  #section_vip #section_ambassadeurs .custom-nav-arrow.is-overlay.arrow-next {
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  #section_vip #section_ambassadeurs .custom-nav-arrow.is-overlay.arrow-prev {
    left: 0;
  }
  #section_vip #section_ambassadeurs .custom-nav-arrow.is-overlay.arrow-next {
    right: 0;
  }
}
#section_vip #section_videos {
  position: relative;
  overflow-x: clip;
}
#section_vip #section_videos #title-videos {
  position: relative;
  /* Point d'ancrage pour le ruban */
  z-index: 20;
}
#section_vip #section_videos #title-videos::after {
  content: "";
  background-image: url('../img/section_vip/vector_frame_videos.png');
  height: var(--hauteur-ruban-videos, 105vh);
  /* Modifié par le JS */
  width: 45vw;
  position: absolute;
  top: 0px;
  right: -150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 1400px) {
  #section_vip #section_videos #title-videos::after {
    display: inline-block;
  }
}
#section_vip #section_videos .container-video {
  max-width: 1160px;
}
#section_vip #section_videos .custom-video-block {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  margin: 40px 0;
  gap: 3px;
  z-index: 21;
}
@media screen and (min-width: 992px) {
  #section_vip #section_videos .custom-video-block {
    flex-direction: row;
    border-radius: 15px 0 0 15px;
  }
}
#section_vip #section_videos .custom-video-block .video-display {
  width: 100%;
  aspect-ratio: 1.77777778;
  background-color: #121212;
}
@media screen and (min-width: 992px) {
  #section_vip #section_videos .custom-video-block .video-display {
    width: 65%;
  }
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane {
  width: 100%;
  height: 100%;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.77777778;
  background-color: #121212;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper {
    border-radius: 15px 0 0 15px;
  }
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  background: #4A67F5;
  background: radial-gradient(circle, #4a67f5 0%, #889cf8 100%);
  /* Mixin réutilisée */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 4px;
  transition: transform 0.2s ease;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .custom-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  margin: 0;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .video-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper .video-target iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper.video-playing .video-poster,
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper.video-playing .custom-play-btn {
  display: none;
}
#section_vip #section_videos .custom-video-block .video-display .tab-pane .video-wrapper.video-playing .video-target {
  z-index: 3;
}
#section_vip #section_videos .custom-video-block .tabs-navigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  gap: 2px;
}
@media screen and (min-width: 992px) {
  #section_vip #section_videos .custom-video-block .tabs-navigation {
    width: 35%;
    border-radius: 0 20px 20px 0;
  }
}
#section_vip #section_videos .custom-video-block .tabs-navigation .nav-link {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: rgba(74, 103, 245, 0.1);
  /* Exploite ta couleur @blue à 10% d'opacité au lieu du RGBA brut */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #4a67f5;
  font-family: 'Switzer-m', sans-serif;
  font-size: 14px;
  padding: 20px 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0;
}
@media screen and (min-width: 992px) {
  #section_vip #section_videos .custom-video-block .tabs-navigation .nav-link {
    font-size: 16px;
  }
}
#section_vip #section_videos .custom-video-block .tabs-navigation .nav-link:last-child {
  border-bottom: none;
}
#section_vip #section_videos .custom-video-block .tabs-navigation .nav-link.active {
  background-color: #4a67f5;
  color: #ffffff;
}
#section_partenaires {
  position: relative;
  z-index: 15;
}
#section_partenaires .content-container {
  margin-top: -2px;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding-top: 30px;
}
#section_partenaires .content-container .subtitle {
  text-align: center;
  max-width: 768px;
  padding: 10px 10px 30px;
  margin: 0 auto;
}
#partenairesTabs {
  padding: 0 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#partenairesTabs .nav-link {
  font-family: 'Switzer-r';
  border-radius: 30px;
  color: #4a67f5;
  padding: 5px 8px;
  font-size: 13px;
  border: 1px solid #4a67f5;
}
@media screen and (min-width: 350px) {
  #partenairesTabs .nav-link {
    margin: 0 5px;
  }
}
@media screen and (min-width: 768px) {
  #partenairesTabs .nav-link {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  #partenairesTabs .nav-link {
    font-size: 20px;
    padding: 10px 30px;
    width: 290px;
  }
}
#partenairesTabs .nav-link.active,
#partenairesTabs .nav-link:hover {
  color: #ffffff;
  background-color: #4a67f5;
  border: 1px solid #4a67f5;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio {
  color: #9b6ee8;
  padding: 40px 0 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv .contaner.tv,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv .contaner.tv,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio .contaner.tv,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio .contaner.tv {
    padding: 40px 0;
  }
}
@media screen and (min-width: 992px) {
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv .contaner.radio,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv .contaner.radio,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio .contaner.radio,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio .contaner.radio {
    padding: 40px 0 0;
  }
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio {
  padding: 0 10px;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 4px;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .presentateur,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .presentateur,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .presentateur,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .presentateur,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .presentateur,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .presentateur,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .presentateur,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .presentateur {
  max-height: 250px;
  border-radius: 20px;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info {
  margin: 10px auto;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info p,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info p,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info p,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info p,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info p,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info p,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info p,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info p {
  margin-bottom: 0;
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .nom {
  text-align: center;
  color: #121212;
  font-family: 'Switzer-m';
  text-transform: capitalize;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .nom {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .prenom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .nom,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .nom {
    font-size: 20px;
  }
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .info .nom,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .info .nom {
  font-family: "Switzer-b";
}
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .chaine,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .chaine,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .chaine,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .chaine,
#partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .chaine,
#partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .chaine,
#partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .chaine,
#partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .chaine {
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-tv .partenaire .chaine,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-tv .partenaire .chaine,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-tv .partenaire .chaine,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-tv .partenaire .chaine,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.tv #carousel-radio .partenaire .chaine,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.tv #carousel-radio .partenaire .chaine,
  #partenairesTabsContent #partenaires-tv-tab-pane .container.radio #carousel-radio .partenaire .chaine,
  #partenairesTabsContent #partenaires-radio-tab-pane .container.radio #carousel-radio .partenaire .chaine {
    max-width: 200px;
  }
}
#partenairesTabsContent #partenaires-tv-tab-pane .accordion-header,
#partenairesTabsContent #partenaires-radio-tab-pane .accordion-header {
  max-width: 210px;
  margin: 0 auto;
}
#partenairesTabsContent #partenaires-tv-tab-pane #credits-photo,
#partenairesTabsContent #partenaires-radio-tab-pane #credits-photo {
  text-align: center;
  font-size: 8px;
  line-height: 8px;
}
@media screen and (min-width: 992px) {
  #partenairesTabsContent #partenaires-tv-tab-pane #credits-photo,
  #partenairesTabsContent #partenaires-radio-tab-pane #credits-photo {
    font-size: 10px;
    line-height: 10px;
    max-width: 768px;
    margin: 0 auto;
  }
}
#section_mecenes {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 17;
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  background: -moz-linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  background: linear-gradient(180deg, #ffffff 0%, #d0d7fc 100%);
  padding: 80px 0;
}
#section_mecenes .ruban-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
}
#section_mecenes .container-carousel-mecenes {
  position: relative;
  max-width: 500px;
  z-index: 2;
  /* --- CORRECTION : Sorti de #carousel-mecenes pour cibler le HTML réel --- */
}
@media screen and (min-width: 1200px) {
  #section_mecenes .container-carousel-mecenes {
    max-width: 1000px;
  }
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes {
  margin-bottom: 0;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item {
  padding: 10px 20px 0 20px;
  display: flex;
  flex-direction: column;
  height: auto;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 12px;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .info {
  width: 100%;
  flex-grow: 1;
  text-align: center;
  font-size: 12px;
  border: 2px solid #ffffff;
  background-color: #b7c3fa;
  border-radius: 10px;
  padding: 20px;
  text-align: start;
  line-height: 125%;
}
@media screen and (min-width: 1200px) {
  #section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .info {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .mecene-logo-container {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  #section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .mecene-logo-container {
    height: 120px;
  }
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .mecene-logo-container .mecene-logo {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .mecene-header {
  text-align: center;
  background: #ffffff;
  width: 100%;
  border-radius: 10px;
  font-family: 'Switzer-sb';
  color: #4a67f5;
  padding: 10px 0;
  display: none;
}
@media screen and (min-width: 768px) {
  #section_mecenes .container-carousel-mecenes #carousel-mecenes .mecene-item .mecene-container .mecene-header {
    display: inline-block;
  }
}
#section_mecenes .container-carousel-mecenes .carousel-controls-inline #dots-mecenes {
  /* Laisse Slick injecter le ul ici */
}
#section_mecenes .container-carousel-mecenes .carousel-controls-inline .slick-dots li button {
  background-color: rgba(74, 103, 245, 0.4) !important;
  /* Devient bleu inactif */
}
#section_mecenes .container-carousel-mecenes .carousel-controls-inline .slick-dots li.slick-active button {
  background-color: #4a67f5 !important;
  /* Devient bleu actif */
}
