@charset "UTF-8";
/*--------------------------------------
  VARIABLES COLORS
--------------------------------------*/
/*--------------------------------------
  QUICK COLOR STYLES
--------------------------------------*/
/* BACKGROUNDS */
.bg_white {
  background: #ffffff;
}
.bg_black {
  background: #000000;
}
.bg_grey {
  background: #d3d3d3;
}
/* FONT COLORS */
.white {
  color: #ffffff;
}
.black {
  color: #000000;
}
.grey {
  color: #d3d3d3;
}
/*--------------------------------------
  GENERAL STYLES
--------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #ffffff;
  color: #303030;
  margin: 0;
  padding: 0;
  border: 0 none;
  min-height: 100%;
  width: 100%;
  height: 100%;
  font-size: 1rem;
}
body.is-fixed {
  padding-top: 0;
}
body.modal-is-visible {
  overflow: hidden;
}
body.burger-is-visible {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  p {
    line-height: initial;
  }
}
main {
  height: 100%;
  z-index: 2;
  width: 100%;
  /*background: blue;*/
}
/* SECTION STYLE */
section {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}
section .header_section {
  width: 100%;
  display: inline-block;
  height: auto;
  position: relative;
}
section .content_section {
  width: 100%;
  display: inline-block;
  height: auto;
  position: relative;
}
section .footer_section {
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 576px) {
  .header_section h2 br {
    display: none;
  }
}
/* WRAPPERS */
.wrap {
  width: 100%;
  display: inline-block;
  height: auto;
}
.wrapper {
  width: 1200px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    width: 90% !important;
  }
}
.small_wrap {
  max-width: 900px;
  display: block;
  margin: 0px auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .small_wrap {
    width: 95%;
  }
}
/* QUICK LAYOUT STYLES */
.lighter {
  font-weight: 100;
}
.light {
  font-weight: 300;
}
.normal {
  font-weight: 400;
}
.bold {
  font-weight: 700;
}
.extra {
  font-weight: 800;
}
.italic {
  font-style: italic;
}
.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;
}
button {
  background: none;
  border: none;
}
button:focus {
  outline: dashed grey 0.5px;
}
/* QUICK VISIBILITY FOR ANIM */
.invisible {
  visibility: hidden;
}
.animated {
  visibility: visible;
}
/* ILLUSTRATION */
img {
  max-width: 100%;
  height: auto;
}
.illustration {
  display: inline-block;
  position: relative;
  width: 100%;
}
.illustration.logo .img {
  background-size: contain;
}
.illustration .img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.illustration .img img {
  position: absolute;
  height: 0;
  opacity: 0;
}
.illustration a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.img-block {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  padding-top: 56.25%;
  top: 0;
  left: 0;
}
.video-btn {
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
h2.special {
  color: #000000;
  font-size: 34px;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  h2.special {
    font-size: 26px;
  }
}
h2.special span {
  color: #ffffff;
  -webkit-box-decoration-break: clone;
  background: #e50052;
  display: inline-block;
  padding: 7px 7px 0px 7px;
  box-decoration-break: clone;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
  transform: rotate(-2deg);
  position: relative;
}
@media screen and (max-width: 576px) {
  h2.special span {
    font-size: 26px;
  }
}
#sticky_btn {
  width: 100%;
  height: auto;
  display: inline-block;
  position: fixed;
  top: 50px;
  left: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 992px) {
  #sticky_btn {
    display: none;
  }
}
#sticky_btn .container {
  max-width: 1140px;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
#sticky_btn .container .btn {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  #sticky_btn .container .btn {
    padding-left: 13px;
    padding: 5px 12px;
  }
}
@media screen and (max-width: 576px) {
  #sticky_btn .container .btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  #sticky_btn .container .btn {
    font-size: 10px;
  }
}
#sticky_btn .container .btn .icon-brochure {
  font-size: 26px ;
  position: relative;
  top: -3px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #sticky_btn .container .btn .icon-brochure {
    font-size: 20px ;
    top: -1px;
  }
}
@media screen and (max-width: 576px) {
  #sticky_btn .container .btn .icon-brochure {
    font-size: 15px ;
  }
}
#sticky_btn.sticked {
  opacity: 1;
  visibility: visible;
}
/*--------------------------------------
  IMPORTS
--------------------------------------*/
/*---------------------------------------------------
    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: 'Oxfam Global Headline';
  src: url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.eot');
  src: url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.woff2') format('woff2'), url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.woff') format('woff'), url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.ttf') format('truetype'), url('../fonts/OxfamGlobalHeadline/OxfamGlobalHeadline-Regular.svg#OxfamGlobalHeadline-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oxfam TSTAR PRO Headline';
  src: url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.eot');
  src: url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.eot?#iefix') format('embedded-opentype'), url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.woff2') format('woff2'), url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.woff') format('woff'), url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.ttf') format('truetype'), url('../fonts/OxfamTSTARPRO/OxfamTSTARPRO-Headline.svg#OxfamTSTARPRO-Headline') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.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-quote2:before {
  content: "\e916";
}
.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-sign:before {
  content: "\e945";
}
.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-youtube_square:before {
  content: "\e950";
}
.icon-x_saquare:before {
  content: "\e951";
}
.icon-instagram_square:before {
  content: "\e952";
}
.icon-facebook_square:before {
  content: "\e954";
}
.icon-check:before {
  content: "\e955";
}
.icon-social:before {
  content: "\e956";
}
.icon-smile:before {
  content: "\e957";
}
.icon-tiktok:before {
  content: "\e958";
}
/* CSS Document */
/* VARIABLE charte couleur */
.btn {
  white-space: normal;
  white-space: initial;
  background-color: lightBlue;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  border-radius: 13px;
  padding: 0.7em 2.5em;
  text-transform: uppercase;
  font-family: 'Oxfam Global Headline';
  letter-spacing: .5px;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  display: inline-block;
}
.btn:hover {
  background-color: #d3d3d3;
  color: white;
  text-decoration: none;
}
.btn.btn_red {
  background-color: #e50052;
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 20px 10px 20px;
  border: 2px solid #e50052;
}
.btn.btn_red:hover {
  background-color: #b20040;
  color: #ffffff;
}
.btn.btn_red:hover {
  border: 2px solid #b20040;
}
.btn.btn_green {
  background-color: #61a534;
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 20px 10px 20px;
  border: 2px solid #61a534;
}
.btn.btn_green:hover {
  background-color: #4a7e28;
  color: #ffffff;
}
.btn.btn_green:hover {
  border: 2px solid #4a7e28;
}
.btn.gohst {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 20px 10px 20px;
}
.btn.gohst:hover {
  background-color: #ffffff;
  color: #000000;
}
.btn.btn-red {
  background-color: #e50052;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
}
.btn.btn-red:hover {
  background-color: #b20040;
  color: #ffffff;
}
.btn.btn-green {
  background-color: #79b829;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
}
.btn.btn-green:hover {
  background-color: #5e8e20;
  color: #ffffff;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #e50052;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
}
.btn.btn-white:hover {
  background-color: #e6e6e6;
  color: #e50052;
}
.btn.btn-cookies {
  background-color: #e50052;
  color: #ffffff;
  font-weight: bold;
}
.btn.btn-cookies:hover {
  background-color: #b20040;
  color: #ffffff;
}
.btn.brochure {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #e50052;
  color: #ffffff;
  width: 230px;
  padding: 12px 10px;
}
.btn.brochure:hover {
  background-color: #b20040;
  color: #ffffff;
}
.btn.brochure .icon-brochure {
  font-size: 26px ;
  position: relative;
  top: -3px;
  margin-right: 5px;
}
/* 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;
}
@media screen and (max-width: 600px) {
  #up #gototop {
    display: none;
  }
}
/*!
 * 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_1_15 {
  -webkit-animation-delay: 1.15s !important;
  animation-delay: 1.15s !important;
}
.delay_1_25 {
  -webkit-animation-delay: 1.25s !important;
  animation-delay: 1.25s !important;
}
.delay_1_35 {
  -webkit-animation-delay: 1.35s !important;
  animation-delay: 1.35s  !important;
}
.delay_1_45 {
  -webkit-animation-delay: 1.45s !important;
  animation-delay: 1.45s !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);
    opacity: 0;
  }
  10%,
  20% {
    opacity: 1;
    -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;
}
.cookie_bar {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 5px;
  position: fixed;
  z-index: 1040;
  bottom: 0;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 0.5em;
}
.cookie_bar p {
  font-size: 15px;
  color: #ffffff;
  margin: 1em;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .cookie_bar p {
    font-size: 8px;
  }
}
.cookie_bar .btn-cookies {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
  font-size: 9px;
  padding: 3px 6px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.cookie_bar .col-left {
  text-align: center;
}
.cookie_bar .row {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cookie_bar .row {
    flex-wrap: wrap;
  }
  .cookie_bar .row .col,
  .cookie_bar .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.modal-backdrop.show {
  opacity: .85;
}
@media screen and (max-width: 576px) {
  .modal .alerte {
    display: none;
  }
}
.modal.modal_video_player .modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.modal.modal_video_player .modal-content {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
  color: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.modal.modal_video_player .modal-content .modal-body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_video_player .modal-content .modal-body {
    height: auto;
    align-items: flex-start;
  }
}
.modal.modal_video_player .modal-content .modal-body .container {
  height: auto;
  display: inline-block;
  max-width: 980px;
  width: 980px;
  padding: 40px;
  background: transparent;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container {
    width: 90%;
    max-width: 90%;
    padding: 20px;
  }
}
.modal.modal_video_player .modal-content .modal-body .container h3 {
  color: #ffffff;
  font-size: 35px;
  text-align: left;
  line-height: 35px;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.modal.modal_video_player .modal-content .modal-body .container h3 span {
  color: #e50052;
  font-weight: bold;
  text-align: center;
}
.modal.modal_video_player .modal-content .modal-body .container .btn_red {
  display: inline-block;
  margin-top: 30px;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container .btn_red {
    font-size: 16px;
  }
}
.modal.modal_video_player .modal-content .modal-body .container .info_don {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #ffffff;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .modal.modal_video_player .modal-content .modal-body .container .info_don {
    margin-top: 10px;
  }
}
.modal.modal_video_player .modal-content .modal-body .container .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  background: transparent;
  background-image: none;
  height: 40px;
  width: 40px;
  background: #e50052;
  -webkit-border-radius: 360px;
  -moz-border-radius: 360px;
  border-radius: 360px;
  opacity: 1;
}
.modal.modal_video_player .modal-content .modal-body .container .btn-close:before {
  content: "\ea0f";
  color: #ffffff;
  font-size: 15px;
  font-family: 'start';
}
.modal.modal_mentions .modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.modal.modal_mentions .modal-content {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
  color: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.modal.modal_mentions .modal-content .modal-body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_mentions .modal-content .modal-body {
    height: auto;
    align-items: flex-start;
  }
}
.modal.modal_mentions .modal-content .modal-body .container {
  height: auto;
  display: inline-block;
  max-width: 980px;
  width: 980px;
  padding: 40px;
  background: transparent;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container {
    width: 90%;
    max-width: 90%;
    padding: 20px;
  }
}
.modal.modal_mentions .modal-content .modal-body .container h3 {
  color: #ffffff;
  font-size: 35px;
  text-align: left;
  line-height: 35px;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-height: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.modal.modal_mentions .modal-content .modal-body .container h3 span {
  color: #e50052;
  font-weight: bold;
  text-align: center;
}
.modal.modal_mentions .modal-content .modal-body .container .btn_red {
  display: inline-block;
  margin-top: 30px;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container .btn_red {
    font-size: 16px;
  }
}
.modal.modal_mentions .modal-content .modal-body .container .info_don {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #ffffff;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .modal.modal_mentions .modal-content .modal-body .container .info_don {
    margin-top: 10px;
  }
}
.modal.modal_mentions .modal-content .modal-body .container .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  background: transparent;
  background-image: none;
  height: 40px;
  width: 40px;
  background: #e50052;
  -webkit-border-radius: 360px;
  -moz-border-radius: 360px;
  border-radius: 360px;
  opacity: 1;
}
.modal.modal_mentions .modal-content .modal-body .container .btn-close:before {
  content: "\ea0f";
  color: #ffffff;
  font-size: 15px;
  font-family: 'start';
}
header {
  width: 100%;
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0;
  justify-content: center;
  display: flex;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  header {
    top: 20px;
    position: absolute;
    background: transparent;
  }
}
header .fixed-header-space {
  display: none;
  height: 82px;
}
header.sticked .fixed-header-space {
  display: block;
}
header .container {
  width: 100%;
  max-width: 90%;
}
@media screen and (max-width: 992px) {
  header .container {
    max-width: 100%;
  }
}
header .navbar {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 0;
}
@media screen and (max-width: 992px) {
  header .navbar {
    justify-content: flex-start;
    padding: 0 30px;
  }
}
header .company-logo {
  display: inline-block;
  max-width: 250px;
  transition: 0.4s ease;
  margin-top: 0px;
  position: relative;
  top: 0;
}
@media screen and (max-width: 992px) {
  header .company-logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 576px) {
  header .company-logo {
    margin-left: 0px;
    max-width: 150px;
    margin-top: 0px;
    display: inline-block;
  }
}
footer {
  background: #44841a;
  color: #ffffff;
  padding: 7rem 0;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 992px) {
  footer {
    padding-bottom: 200px;
  }
}
footer .container {
  max-width: 1046px;
}
@media screen and (max-width: 992px) {
  footer .container {
    max-width: 90%;
  }
}
footer .row {
  align-items: center;
}
@media screen and (max-width: 992px) {
  footer .row .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  footer .row .col .item {
    text-align: center !important;
  }
}
footer .row .col-left .item {
  display: inline-block;
  width: 100%;
  text-align: left;
}
footer .row .col-left .item img {
  max-width: 100%;
  width: 129px;
}
footer .row .col-middle .item {
  display: inline-block;
  width: 100%;
  text-align: center;
}
footer .row .col-middle .item ul.social_links {
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}
footer .row .col-middle .item ul.social_links li {
  display: inline-block;
}
footer .row .col-middle .item ul.social_links li a {
  display: inline-block;
  padding: 0.2em;
  -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 .row .col-middle .item ul.social_links li a:hover {
  text-decoration: none;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  footer .row .col-middle .item ul.social_links li a {
    padding: 1em;
  }
}
@media screen and (max-width: 576px) {
  footer .row .col-middle .item ul.social_links li a {
    padding: 0 2px;
    margin: 0;
  }
}
footer .row .col-middle .item ul.social_links li a .picto {
  font-size: 52px;
  color: #ffffff;
}
@media screen and (max-width: 576px) {
  footer .row .col-middle .item ul.social_links li a .picto {
    font-size: 30px;
  }
}
footer .row .col-middle .item ul.social_links li a .picto:hover {
  color: #ffffff;
  opacity: 0.5;
}
footer .row .col-right .item {
  display: inline-block;
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
footer .row .col-right .item a {
  font-size: 16px;
  display: inline-block;
  color: #ffffff;
}
footer .row .col-right .item a:hover {
  text-decoration: underline;
}
footer .row .col-right .item a.mention {
  text-decoration: underline;
  margin-bottom: 30px;
  display: inline-block;
}
footer .row .col-right .item a.mention:hover {
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  footer .row .col-right .item a.mention {
    margin-bottom: 10px;
  }
}
footer .row .col-right .item p.oneheart {
  display: inline-block;
  margin-top: 30px;
  font-weight: normal;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  footer .row .col-right .item p.oneheart {
    margin-top: 10px;
  }
}
#notification-pop {
  display: inline-block;
  position: fixed;
  z-index: 1000;
  color: #ffffff;
  right: 30px;
  top: 40px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  transform: translateX(110%);
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
  background: #61A534;
  border: 0 solid transparent;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  #notification-pop {
    display: none !important;
  }
}
#notification-pop.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
#notification-pop .content {
  padding: 10px 10px 10px 10px;
}
@media screen and (min-width: 576px) {
  #notification-pop .content {
    min-width: 232px;
  }
}
#notification-pop .item {
  display: flex;
  align-items: center;
}
#notification-pop p {
  display: inline-block;
  font-size: 16px;
  text-align: left;
  line-height: 21px;
}
#notification-pop .icon-smile {
  position: relative;
  color: #ffffff;
  font-family: 'start';
  margin-right: 5px;
  font-size: 3rem;
}
/*--------------------------------------
  sections
--------------------------------------*/
.grid_donation_fix {
  width: 100%;
  height: auto;
  display: inline-block;
  position: fixed;
  text-align: center;
  bottom: 0;
  left: 0;
  padding: 0;
  z-index: 10;
  background: transparent;
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 992px) {
  .grid_donation_fix {
    padding: 0;
    background: none;
    bottom: 0;
    top: auto;
    left: 0;
  }
}
.grid_donation_fix textarea:focus,
.grid_donation_fix input[type="text"]:focus,
.grid_donation_fix input[type="password"]:focus,
.grid_donation_fix input[type="datetime"]:focus,
.grid_donation_fix input[type="datetime-local"]:focus,
.grid_donation_fix input[type="date"]:focus,
.grid_donation_fix input[type="month"]:focus,
.grid_donation_fix input[type="time"]:focus,
.grid_donation_fix input[type="week"]:focus,
.grid_donation_fix input[type="number"]:focus,
.grid_donation_fix input[type="email"]:focus,
.grid_donation_fix input[type="url"]:focus,
.grid_donation_fix input[type="search"]:focus,
.grid_donation_fix input[type="tel"]:focus,
.grid_donation_fix input[type="color"]:focus,
.grid_donation_fix .uneditable-input:focus {
  border-color: rgba(126, 239, 104, 0);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0);
  outline: 0 none;
}
.grid_donation_fix .grid_content {
  display: inline-block;
  width: auto;
  background: transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 20px;
  max-width: 100%;
  width: 90%;
}
@media screen and (max-width: 1140px) {
  .grid_donation_fix .grid_content {
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content {
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: none;
    padding: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: transparent;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-height: 800px) and (min-width: 1000px) {
  .grid_donation_fix .grid_content {
    max-width: 100%;
    width: 1000px;
  }
}
.grid_donation_fix .grid_content form {
  text-align: center;
  width: auto;
  display: inline-block;
  background: transparent;
  padding: 15px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  background: rgba(250, 250, 250, 0.8);
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form {
    padding: 0 15px;
  }
}
.grid_donation_fix .grid_content form:after {
  content: "";
  background: red;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #fafafa;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form:after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form {
    background: transparent;
  }
}
.grid_donation_fix .grid_content form .form-group {
  margin: 0px;
}
.grid_donation_fix .grid_content form .fical_deduction {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .fical_deduction {
    display: none;
  }
}
.grid_donation_fix .grid_content form .fical_deduction p {
  color: #000000;
  margin-bottom: 0;
  margin-top: 5px;
  font-weight: bold;
}
.grid_donation_fix .grid_content form .fical_deduction p span {
  color: #61a534;
}
.grid_donation_fix .grid_content form input {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.grid_donation_fix .grid_content form input::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
}
.grid_donation_fix .grid_content form input::-moz-placeholder {
  color: #000000;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
}
.grid_donation_fix .grid_content form input::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
}
.grid_donation_fix .grid_content form .other_amount {
  width: 90px;
  position: relative;
  background: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount {
    border: 1px solid #000000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    width: auto;
    height: 38px;
  }
}
.grid_donation_fix .grid_content form .other_amount .form-control {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.grid_donation_fix .grid_content form .other_amount .other_amount_label {
  color: #79b829;
  background: #ffffff;
  line-height: 16px;
  position: relative;
  font-weight: bold;
  opacity: 1;
  width: 100%;
  height: 44px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-size: 19px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount .other_amount_label {
    visibility: hidden;
    opacity: 0;
    width: 64px;
  }
}
.grid_donation_fix .grid_content form .other_amount .euro {
  position: absolute;
  right: 10px;
  top: 9px;
  color: #e50052;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  display: none;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount .euro {
    color: #e50052;
    font-size: 15px;
  }
}
.grid_donation_fix .grid_content form .other_amount input {
  font-weight: bold;
  padding: 3px 0;
  padding-right: 23px;
  text-align: center !important;
  color: #e50052;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #ffffff;
  opacity: 0;
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount input {
    opacity: 1;
    color: #e50052;
    background: #ffffff;
    font-size: 15px;
    width: 64px;
    border: none;
  }
}
.grid_donation_fix .grid_content form .other_amount input::-webkit-input-placeholder {
  color: #e50052;
  opacity: 1;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount input::-webkit-input-placeholder {
    text-align: center;
    color: #e50052;
  }
}
.grid_donation_fix .grid_content form .other_amount input::-moz-placeholder {
  color: #e50052;
  opacity: 1;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount input::-moz-placeholder {
    text-align: center;
    color: #e50052;
  }
}
.grid_donation_fix .grid_content form .other_amount input::-ms-input-placeholder {
  color: #e50052;
  opacity: 1;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content form .other_amount input::-ms-input-placeholder {
    text-align: center;
    color: #e50052;
  }
}
.grid_donation_fix .grid_content form .other_amount input:checked {
  visibility: visible;
  opacity: 1;
}
.grid_donation_fix .grid_content form .other_amount input:focus {
  visibility: visible;
  opacity: 1;
}
.grid_donation_fix .grid_content form .other_amount input:checked + .other_amount_label {
  visibility: hidden !important;
  opacity: 0;
  z-index: 1;
}
.grid_donation_fix .grid_content form .other_amount input:focus + .other_amount_label {
  visibility: hidden !important;
  opacity: 0;
  z-index: 1;
}
.grid_donation_fix .grid_content form .other_amount input:checked + .euro {
  display: inline-block;
}
.grid_donation_fix .grid_content form .other_amount input:focus + .euro {
  display: inline-block;
}
.grid_donation_fix .grid_content .fiscal_infos {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  margin-right: 15px;
  margin-left: 15px;
  line-height: 20px;
}
@media screen and (max-height: 800px) and (min-width: 1000px) {
  .grid_donation_fix .grid_content .fiscal_infos {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .fiscal_infos {
    display: none;
  }
}
.grid_donation_fix .grid_content .amount_list {
  width: 100%;
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 8px;
    -webkit-box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 20px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
}
.grid_donation_fix .grid_content .amount_list .company-logo {
  display: inline-block;
  max-width: 103px;
  transition: 0.4s ease;
  margin-top: 10px;
  position: relative;
  width: 107px;
}
.grid_donation_fix .grid_content .amount_list .company-logo img {
  margin: 0;
  position: absolute;
  left: 0;
  top: -60px;
  width: 77px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .company-logo {
    display: none;
  }
}
.grid_donation_fix .grid_content .amount_list .amount {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  order: 1;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .amount {
    order: 2;
    flex-basis: 100%;
    max-width: 100%;
    justify-content: center;
  }
}
.grid_donation_fix .grid_content .amount_list .fiscal_submit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  order: 2;
}
.grid_donation_fix .grid_content .amount_list .fiscal_submit button.animation {
  -webkit-animation-name: tada ;
  animation-name: tada ;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0s ;
  animation-delay: 0s ;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .fiscal_submit {
    order: 1;
    flex-basis: 100%;
    max-width: 100%;
    justify-content: center;
    margin-bottom: -7px;
  }
}
.grid_donation_fix .grid_content .amount_list .fiscal_submit .btn-red {
  font-size: 18px;
  position: relative;
  padding: 5px 20px 10px 20px;
  margin-left: 10px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .fiscal_submit .btn-red {
    font-size: 20px;
    top: -27px;
    margin-left: 0px;
  }
}
@media screen and (max-height: 800px) and (min-width: 1000px) {
  .grid_donation_fix .grid_content .amount_list .fiscal_submit .btn-red {
    font-size: 16px;
  }
}
.grid_donation_fix .grid_content .amount_list .ifi {
  color: #e50052;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .ifi {
    display: none;
  }
}
.grid_donation_fix .grid_content .amount_list ul {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 0px;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list ul {
    justify-content: center;
    width: auto;
  }
}
.grid_donation_fix .grid_content .amount_list ul li {
  list-style-type: none;
  display: inline-block;
  width: auto;
  overflow: hidden;
  margin: 0 5px;
  cursor: pointer;
}
.grid_donation_fix .grid_content .amount_list ul li .btn-red {
  font-size: 18px;
  padding: 5px 20px 10px 20px;
}
.grid_donation_fix .grid_content .amount_list .form-check-input {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.grid_donation_fix .grid_content .amount_list .form-check-label {
  width: 100%;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #ffffff;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease 0s;
  border: 2px solid #61a534;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .form-check-label {
    height: 38px;
  }
}
.grid_donation_fix .grid_content .amount_list .form-check-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 90px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .form-check-amount {
    width: 64px;
  }
}
.grid_donation_fix .grid_content .amount_list .form-check-amount p {
  max-width: 100%;
  margin: 0;
  text-align: center;
  padding: 0;
  font-weight: bold;
  transition: all 1s ease 0s;
}
.grid_donation_fix .grid_content .amount_list .form-check-amount p span {
  font-size: 23px;
  width: 100%;
  display: inline-block;
  font-weight: bold;
  color: #61a534;
  transition: all 1s ease 0s;
}
@media screen and (max-width: 992px) {
  .grid_donation_fix .grid_content .amount_list .form-check-amount p span {
    font-size: 20px;
  }
}
.grid_donation_fix .grid_content .amount_list input:checked + .form-check-label {
  background-color: #61a534;
}
.grid_donation_fix .grid_content .amount_list input:checked + .form-check-label span {
  color: #ffffff;
  opacity: 1;
}
.grid_donation_fix .grid_content .amount_list input:focus + .form-check-label span {
  color: #ffffff;
  opacity: 1;
}
#section_top_start {
  background: #000000;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#section_top_start:before {
  content: "";
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  #section_top_start {
    margin-top: 0px;
  }
}
@media screen and (max-height: 800px) and (min-width: 1000px) {
  #section_top_start {
    height: 800px;
  }
}
#section_top_start #carouselstart {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  opacity: 1;
  top: 0;
  left: 0;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart {
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
  }
}
#section_top_start #carouselstart .carousel-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .carousel-inner {
    height: auto;
    width: 100%;
    position: relative;
  }
}
#section_top_start #carouselstart .carousel-inner .carousel-item {
  height: 100%;
  width: 100%;
}
#section_top_start #carouselstart .carousel-control-prev {
  z-index: 6;
  opacity: 1;
  display: none;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .carousel-control-prev {
    align-items: flex-start;
  }
}
#section_top_start #carouselstart .carousel-control-prev .carousel-control-prev-icon {
  width: 50px;
  height: 50px;
  background-size: 50%;
  background-color: transparent;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .carousel-control-prev .carousel-control-prev-icon {
    width: 40px;
    height: 40px;
    background-size: 40%;
    top: 140px;
    position: relative;
  }
}
#section_top_start #carouselstart .carousel-control-next {
  z-index: 6;
  opacity: 1;
  display: none;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .carousel-control-next {
    align-items: flex-start;
  }
}
#section_top_start #carouselstart .carousel-control-next .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-size: 50%;
  background-color: transparent;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .carousel-control-next .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 40%;
    top: 140px;
    position: relative;
  }
}
#section_top_start #carouselstart .content_slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .content_slide {
    width: 100%;
    height: auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: relative;
  }
}
@media screen and (max-height: 730px) and (min-width: 1000px) {
  #section_top_start #carouselstart .content_slide {
    align-items: flex-start;
    padding-top: 120px;
  }
}
#section_top_start #carouselstart .content_slide .content_inside {
  display: inline-block;
  height: auto;
  text-align: center;
  max-width: 530px;
  width: 100%;
  position: relative;
  z-index: 3;
  color: #ffffff;
  bottom: auto;
  left: auto;
  right: -220px;
}
#section_top_start #carouselstart .content_slide .content_inside.left {
  left: -220px;
  right: auto;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .content_slide .content_inside {
    position: relative;
    height: auto;
    display: block;
    margin: 0 auto;
    top: -210px;
    bottom: auto;
    max-width: 60%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 576px) {
  #section_top_start #carouselstart .content_slide .content_inside {
    max-width: 80%;
  }
}
#section_top_start #carouselstart .content_slide .content_inside .smile {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-size: 20px;
  padding: 15px;
  text-align: left;
  -webkit-border-radius: 360px;
  -moz-border-radius: 360px;
  border-radius: 360px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .content_slide .content_inside .smile {
    font-size: 16px;
  }
}
@media screen and (max-height: 730px) and (min-width: 1000px) {
  #section_top_start #carouselstart .content_slide .content_inside .smile {
    font-size: 16px;
  }
}
#section_top_start #carouselstart .content_slide .content_inside .smile:before {
  content: "\e957";
  font-family: 'start' !important;
  font-size: 40px;
  margin-right: 20px;
  position: relative;
  transform: rotate(180deg);
}
#section_top_start #carouselstart .content_slide .content_inside .smile.green {
  background-color: #61a534;
  color: #ffffff;
}
#section_top_start #carouselstart .content_slide .content_inside .smile.green:before {
  color: #ffffff;
  transform: rotate(0deg);
}
#section_top_start #carouselstart .content_slide .content_inside .smile.green:after {
  content: "";
  width: 72px;
  height: 67px;
  transform: rotate(20deg);
  position: absolute;
  bottom: -42px;
  right: -50px;
  background-image: url('../img/arrow_tourni_white.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-height: 730px) and (min-width: 1000px) {
  #section_top_start #carouselstart .content_slide .content_inside .smile.green:after {
    bottom: -52px;
    right: 0px;
    width: 52px;
    transform: rotate(50deg);
  }
}
#section_top_start #carouselstart .content_slide .content_inside h3.activez {
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  font-size: 68px;
}
@media screen and (max-width: 992px) {
  #section_top_start #carouselstart .content_slide .content_inside h3.activez {
    font-size: 48px;
  }
}
@media screen and (max-width: 576px) {
  #section_top_start #carouselstart .content_slide .content_inside h3.activez {
    font-size: 38px;
    margin-bottom: 20px;
  }
}
@media screen and (max-height: 730px) and (min-width: 1000px) {
  #section_top_start #carouselstart .content_slide .content_inside h3.activez img {
    max-width: 80%;
  }
}
@media screen and (max-height: 730px) and (min-width: 1000px) {
  #section_top_start #carouselstart .content_slide .content_inside {
    max-width: 420px;
  }
}
#section_top_start .illustration {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  opacity: 1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  #section_top_start .illustration {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 450px;
    width: 100%;
    opacity: 1;
    top: auto;
    left: auto;
  }
}
#section_top_start .illustration .img.mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  #section_top_start .illustration .img.mobile {
    display: inline-block;
    background-position: top center;
  }
}
#section_top_start .illustration .img.desktop {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  #section_top_start .illustration .img.desktop {
    display: none;
  }
}
#section_top_start .illustration .img:before {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  height: 70%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
}
#section_top_start .illustration .img:after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  background: #000000;
}
a.scrollTo {
  width: 100%;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.scroll_down {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 40px;
  text-align: center;
  display: none;
}
@media screen and (max-width: 992px) {
  .scroll_down {
    margin-top: 20px;
    display: inline-block;
  }
}
.scroll_down .picto {
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  display: inline-block;
}
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
#section_top_start #carouselstart .carousel-inner .carousel-item p.smile {
  display: flex;
  position: relative;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  #section_top_start #carouselstart .carousel-inner .carousel-item p.smile br {
    display: none;
  }
}
#section_top_start #carouselstart .carousel-inner .carousel-item h3 {
  display: inline-block;
  position: relative;
  visibility: hidden;
}
#section_top_start #carouselstart .carousel-inner .carousel-item .btn-red {
  display: inline-block;
  position: relative;
  visibility: hidden;
}
#section_top_start #carouselstart .carousel-inner .carousel-item.active p.smile {
  visibility: visible;
  opacity: 1;
  -webkit-animation-name: tdFadeInRight;
  animation-name: tdFadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.3s ;
  animation-delay: 0.3s ;
}
#section_top_start #carouselstart .carousel-inner .carousel-item.active p.smile.green {
  -webkit-animation-delay: 0.7s ;
  animation-delay: 0.7s ;
}
#section_top_start #carouselstart .carousel-inner .carousel-item.active h3 {
  visibility: visible;
  -webkit-animation-name: tada ;
  animation-name: tada ;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s ;
  animation-delay: 1s ;
}
#section_top_start #carouselstart .carousel-inner .carousel-item.active .btn-red {
  visibility: visible;
  -webkit-animation-name: fadeIn ;
  animation-name: fadeIn ;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2s ;
  animation-delay: 2s ;
}
@keyframes tdFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-10px);
    animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(-1deg);
  }
}
@-webkit-keyframes tdFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-10px);
    animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(-1deg);
  }
}
@-webkit-keyframes shake_custom {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 1;
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 1;
  }
}
@keyframes shake_custom {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 1;
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 1;
  }
}
.custom-shape-divider-bottom-1761056111 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-bottom-1761056111 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
.custom-shape-divider-bottom-1761056111 .shape-fill {
  fill: #EAEADE;
}
#section_temoignages {
  background-color: #BECE45;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0 0 6rem 0;
  position: relative;
  z-index: 3;
}
#section_temoignages .responsive_tittle {
  display: inline-block;
  display: none;
  text-align: center;
  height: auto;
  width: 100%;
}
#section_temoignages .responsive_tittle h2 {
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  font-size: 30px;
}
@media screen and (max-width: 992px) {
  #section_temoignages .responsive_tittle {
    display: inline-block;
  }
}
#section_temoignages .wrap_btn {
  display: inline-block;
  text-align: center;
  width: 100%;
}
#section_temoignages .wrap_btn .btn {
  font-size: 18px;
  padding: 5px 20px;
  display: inline-block;
  position: relative;
  bottom: -30px;
}
#section_temoignages .container_btn {
  margin-bottom: -40px;
}
#section_temoignages .container {
  max-width: 1140px;
}
@media screen and (max-width: 992px) {
  #section_temoignages .container {
    max-width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #section_temoignages .container {
    max-width: 80%;
  }
}
@media screen and (max-width: 576px) {
  #section_temoignages .container {
    max-width: 90%;
  }
}
#section_temoignages .header_section {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#section_temoignages .header_section h2 {
  font-size: 38px;
  color: #e50052;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #section_temoignages .header_section h2 {
    font-size: 28px;
  }
}
#section_temoignages .wrap_carousel {
  position: relative;
  padding: 40px 0 30px 0;
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_carousel {
    padding: 0;
    padding-top: 59px;
  }
}
#section_temoignages #carouselwitness {
  z-index: 2;
  position: relative;
}
#section_temoignages .temoignages_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  #section_temoignages .temoignages_controls {
    display: none;
  }
}
#section_temoignages .temoignages_controls .arrows .carousel-control-next,
#section_temoignages .temoignages_controls .arrows .carousel-control-prev {
  position: relative;
  top: auto;
  bottom: auto;
  z-index: 1;
  display: inline-block;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity .15s ease;
}
#section_temoignages .wrap_indicators {
  display: inline-block;
  width: 100%;
  height: auto;
  display: none;
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_indicators {
    display: inline-block;
  }
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_indicators .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_indicators .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
#section_temoignages .carousel-indicators {
  position: relative;
  max-width: 100%;
  margin: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-indicators {
    opacity: 1;
  }
}
#section_temoignages .carousel-indicators button {
  -webkit-border-radius: 360px;
  -moz-border-radius: 360px;
  border-radius: 360px;
  background-color: transparent;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border: none;
  opacity: 1;
  border: 1px solid #336114;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-indicators button {
    width: 10px;
  }
}
#section_temoignages .carousel-indicators button.active {
  background-color: #336114;
  opacity: 1;
}
#section_temoignages .carousel-inner {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner {
    padding: 0px;
  }
}
#section_temoignages .carousel-inner .carousel-item {
  width: 100%;
  height: auto;
  position: relative;
}
#section_temoignages .carousel-inner .carousel-item .item_inside {
  display: inline-block;
  width: 100%;
  height: auto;
  position: relative;
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row {
  align-items: center;
  justify-content: center;
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left {
  -ms-flex-preferred-size: 525px;
  flex-basis: 525px;
  max-width: 525px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1143px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left {
    -ms-flex-preferred-size: 443px;
    flex-basis: 443px;
    max-width: 443px;
  }
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .arrows {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .arrows {
    display: none !important;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu {
  width: 100%;
  height: 457px;
  position: relative;
  text-align: center;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu {
    height: auto;
    margin-bottom: 15px;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu .text_illu {
  bottom: 0px;
  right: 40px;
  position: absolute;
  display: inline-block;
  visibility: visible;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu .text_illu {
    bottom: 40px;
    right: 60px;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned {
  display: inline-block;
  line-height: 46px;
  position: relative;
  margin: 0;
  z-index: 2;
  width: 100%;
  text-align: left;
  transform: rotate(-2deg) !important;
}
@media screen and (max-width: 375px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned {
    line-height: 30px !important;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned .highlight {
  color: #79B829;
  -webkit-box-decoration-break: clone;
  background: #e50052;
  color: #ffffff;
  display: inline;
  padding: .1rem 1rem;
  box-decoration-break: clone;
  font-size: 28px;
  font-family: 'Oxfam Global Headline';
  text-align: right !important;
}
@media screen and (max-width: 576px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned .highlight {
    font-size: 25px;
  }
}
@media screen and (max-width: 375px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned .highlight {
    font-size: 16px !important;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h3.overligned {
  display: inline-block;
  line-height: 46px;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  line-height: 31px;
  transform: rotate(-2deg) !important;
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h3.overligned .highlight_2 {
  color: #ffffff;
  -webkit-box-decoration-break: clone;
  background: #e50052;
  display: inline;
  padding: 10px;
  box-decoration-break: clone;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  margin-left: 40px;
  margin-top: 0px !important;
  text-align: right !important;
  line-height: 10px !important;
}
@media screen and (max-width: 576px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h3.overligned .highlight_2 {
    font-size: 14px;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .illustration {
  width: 400px;
  height: 400px;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
  visibility: visible;
  transform: rotate(2deg) !important;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .illustration {
    right: auto;
    width: 80%;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .illustration {
    right: auto;
    width: 80%;
    height: 400px;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right {
  -ms-flex-preferred-size: 560px;
  flex-basis: 560px;
  max-width: 560px;
  position: relative;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text {
  display: inline-block;
  width: 100%;
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text {
    left: auto;
    padding: 0px;
    min-height: auto;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside {
  max-width: 100%;
  display: block;
  text-align: left;
  opacity: 0;
  -webkit-transition: all 2s ease 0s;
  -moz-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside {
    text-align: center;
    max-width: 100%;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside h2 {
  font-family: 'Oxfam Global Headline';
  color: #336114;
  font-size: 50px;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside h2 {
    font-size: 30px;
    display: none;
  }
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside .temoin {
  font-weight: bold;
  font-size: 22px;
  color: #e50052;
  line-height: initial;
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside .temoin span {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
}
#section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside .citiation {
  color: #336114;
  font-weight: normal;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-right .text .text_inside .citiation {
    font-size: 16px;
  }
}
#section_temoignages .carousel-inner .carousel-item.active .carousel-indicators {
  opacity: 1;
}
#section_temoignages .carousel-inner .carousel-item.active .item_inside .row .col-left .arrows {
  opacity: 1;
}
#section_temoignages .carousel-inner .carousel-item.active .item_inside .row .col-right .text_inside {
  opacity: 1 !important;
}
#section_temoignages .wrap_arrow {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_arrow {
    display: inline-block;
  }
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_arrow .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  #section_temoignages .wrap_arrow .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    top: 120px;
  }
}
@media screen and (max-width: 490px) {
  #section_temoignages .wrap_arrow .row .col-right {
    top: 70px;
  }
}
#section_temoignages .carousel-control-next,
#section_temoignages .carousel-control-prev {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-control-next,
  #section_temoignages .carousel-control-prev {
    align-items: flex-start;
    opacity: 1;
  }
}
#section_temoignages .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23336114'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-color: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  background-size: 100%;
  opacity: 1;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-control-next-icon {
    position: absolute;
    top: 110px;
    opacity: 1;
    right: -20px;
  }
}
#section_temoignages .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23336114'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  background-size: 100%;
  opacity: 1;
}
@media screen and (max-width: 992px) {
  #section_temoignages .carousel-control-prev-icon {
    position: absolute;
    top: 110px;
    opacity: 1;
    left: -20px;
  }
}
@keyframes tdFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(10px);
    animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 576px) {
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned .highlight {
    font-size: 16px;
  }
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h4.overligned {
    line-height: 30px;
  }
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h3.overligned {
    line-height: 30px;
  }
  #section_temoignages .carousel-inner .carousel-item .item_inside .row .col-left .wrap_illu h3.overligned .highlight_2 {
    padding: 5px;
    font-size: 13px;
  }
}
.custom-shape-divider-bottom-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-bottom-3 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
.custom-shape-divider-bottom-3 .shape-fill {
  fill: #EAEADE;
}
#section_grid_donation {
  background: lightgray;
  padding: 5rem 0;
  background-color: #eaeade;
  position: relative;
}
#section_grid_donation .footer_section {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#section_grid_donation .footer_section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#section_grid_donation .footer_section .confiance {
  max-width: 960px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .footer_section .confiance {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#section_grid_donation .footer_section .confiance .don_confiance {
  max-width: 123px;
}
#section_grid_donation .footer_section .confiance p {
  text-align: left;
  font-size: 16px;
  padding-left: 15px;
  position: relative;
  display: inline-block;
  font-weight: normal;
  margin: 0;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .footer_section .confiance p {
    text-align: center;
  }
}
#section_grid_donation .header_section {
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .header_section {
    margin-bottom: 20px;
  }
}
#section_grid_donation .header_section h2 {
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  color: #61a534;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  #section_grid_donation .header_section h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  #section_grid_donation .header_section h2 br {
    display: none;
  }
}
#section_grid_donation .header_section p {
  font-size: 18px;
  color: #000000;
}
@media screen and (max-width: 576px) {
  #section_grid_donation .header_section p {
    font-size: 16px;
  }
}
#section_grid_donation .header_section p span {
  font-weight: bold;
}
#section_grid_donation .header_section .fiscal {
  display: inline-block;
  background-color: #ffffff;
  color: #336114;
  font-size: 16px;
  padding: 15px 30px 15px 120px;
  text-align: left;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  align-items: center;
  font-weight: 900;
  position: relative;
  transform: rotate(-4deg);
  margin-top: 30px;
  visibility: hidden;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .header_section .fiscal {
    font-size: 16px;
  }
}
#section_grid_donation .header_section .fiscal:before {
  content: "66%";
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  margin-right: 20px;
  position: relative;
  color: #61a534;
  position: absolute;
  top: 15px;
  left: 15px;
}
#section_grid_donation .container {
  max-width: 1140px;
}
#section_grid_donation .row {
  justify-content: center;
}
#section_grid_donation .row .col {
  -ms-flex-preferred-size: 270px;
  flex-basis: 270px;
  max-width: 270px;
}
#section_grid_donation .row .col:first-child .item .head_item:after {
  transform: rotate(0deg);
  background-image: url('../img/equiv1.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
#section_grid_donation .row .col:first-child .item .content_item:after {
  transform: rotate(0deg);
}
#section_grid_donation .row .col:first-child .item:hover .head_item:after {
  transform: rotate(-1deg) scale(1.1);
}
#section_grid_donation .row .col:first-child .item:hover .content_item:after {
  transform: rotate(1deg) scale(1.1);
}
#section_grid_donation .row .col:nth-child(2) .item .head_item:after {
  transform: rotate(-1deg);
  background-image: url('../img/equiv2.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
#section_grid_donation .row .col:nth-child(2) .item .content_item:after {
  transform: rotate(1deg);
}
#section_grid_donation .row .col:nth-child(2) .item:hover .head_item:after {
  transform: rotate(1deg) scale(1.1);
}
#section_grid_donation .row .col:nth-child(2) .item:hover .content_item:after {
  transform: rotate(-1deg) scale(1.1);
}
#section_grid_donation .row .col:nth-child(3) .item .head_item:after {
  transform: rotate(1deg);
  background-image: url('../img/equiv3.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
#section_grid_donation .row .col:nth-child(3) .item .content_item:after {
  transform: rotate(-1deg);
}
#section_grid_donation .row .col:nth-child(3) .item:hover .head_item:after {
  transform: rotate(-1deg) scale(1.1);
}
#section_grid_donation .row .col:nth-child(3) .item:hover .content_item:after {
  transform: rotate(1deg) scale(1.1);
}
@media screen and (max-width: 992px) {
  #section_grid_donation .free_amount {
    margin-top: 40px;
  }
}
#section_grid_donation .free_amount .item {
  display: flex;
  align-items: flex-end;
}
#section_grid_donation .free_amount .item .item_inside {
  display: inline-block;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
#section_grid_donation .free_amount .item .other-amount-title {
  color: #336114;
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: bold;
}
#section_grid_donation .free_amount .item .fiscal_after {
  color: #336114;
  font-size: 30px;
  font-style: normal;
}
#section_grid_donation .free_amount .item p {
  font-style: normal;
  color: #336114;
}
#section_grid_donation .free_amount .item a {
  font-size: 16px;
}
#section_grid_donation .item {
  background-color: transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 22px 10px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .item {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1200px) {
  #section_grid_donation .item {
    padding: 22px 10px 28px;
  }
}
#section_grid_donation .item .head_item {
  background: transparent;
  width: 197px;
  position: relative;
  padding: 10px 0;
  bottom: -30px;
  z-index: 2;
}
#section_grid_donation .item .head_item:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 992px) {
  #section_grid_donation .item .head_item:after {
    left: 10px;
  }
}
#section_grid_donation .item .head_item .fiscal_amount {
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  font-size: 22px;
  z-index: 2;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
#section_grid_donation .item .head_item .text {
  font-size: 14px;
  color: #ffffff;
  font-style: normal;
  line-height: 16px;
  position: relative;
  z-index: 2;
  text-align: center;
}
#section_grid_donation .item .content_item {
  position: relative;
  padding: 50px 0 20px 0;
  width: 100%;
}
#section_grid_donation .item .content_item:after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#section_grid_donation .item .content_item .equivalence {
  position: relative;
  z-index: 2;
  font-family: 'Oxfam Global Headline';
  display: inline-block;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  #section_grid_donation .item .content_item .equivalence {
    line-height: 30px;
    font-size: 21px;
  }
}
@media screen and (max-width: 375px) {
  #section_grid_donation .item .content_item .equivalence {
    line-height: 30px;
    font-size: 19px;
  }
}
#section_grid_donation .item .content_item .equivalence .highlight {
  color: #fff;
  -webkit-box-decoration-break: clone;
  background: #336114;
  display: inline;
  padding: 0.6rem 1rem;
  box-decoration-break: clone;
}
#section_grid_donation .item .content_item .equivalence .highlight.first {
  transform: rotate(1deg);
  display: inline-block;
}
#section_grid_donation .item .content_item .equivalence .highlight.second {
  transform: rotate(-1deg);
  display: inline-block;
  position: relative;
  top: -11px;
}
#section_grid_donation .item .content_item .equivalence .highlight.third {
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  top: -21px;
}
#section_grid_donation .item .content_item a {
  position: relative;
  z-index: 2;
  font-size: 16px;
}
#section_grid_donation .item .amount {
  font-size: 40px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1em;
  font-family: 'Oxfam Global Headline';
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 576px) {
  #section_grid_donation .item .amount {
    font-size: 3.1em;
  }
}
#section_grid_donation .item .text {
  font-style: italic;
}
#section_grid_donation .item .other-amount-title {
  margin: 0;
  padding: 0;
}
#section_grid_donation .item input::placeholder {
  color: #DEDEDE;
  font-style: italic;
  font-size: .9em;
}
#section_grid_donation .item #freeamount {
  max-width: 100%;
  padding: 20px;
  margin-bottom: 40px;
  display: inline-block;
  background-color: #ffffff;
}
#section_grid_donation .item #freeamount input[type="text"]::-webkit-input-placeholder {
  color: #336114;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
}
#section_grid_donation .item #freeamount input[type="text"]::-moz-placeholder {
  color: #336114;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
}
#section_grid_donation .item #freeamount input[type="text"]::-ms-input-placeholder {
  color: #336114;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
}
#section_grid_donation .item .form-group {
  padding-right: 20px;
  position: relative;
  background-color: #eaeade;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 20px;
  display: flex;
}
#section_grid_donation .item .form-group .input-group-apend {
  font-weight: bold;
  font-size: 15px;
  color: #e50052;
  position: absolute;
  right: 0;
  top: auto;
  padding-right: 10px;
  margin-left: 10px;
}
#section_grid_donation .item .form-control {
  border: none;
  border-radius: 0;
  text-align: left;
  padding: 0;
  background-color: #eaeade;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.tdSwingIn {
  animation-name: tdSwingIn;
}
@keyframes tdSwingIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.85);
    -webkit-transform: rotate(-10deg) scale(0.85);
    animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    opacity: 1;
    transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
    animation-timing-function: ease;
  }
}
@-webkit-keyframes tdSwingIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.85);
    -webkit-transform: rotate(-10deg) scale(0.85);
    animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    opacity: 1;
    transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
    animation-timing-function: ease;
  }
}
.custom-shape-divider-bottom-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-bottom-2 svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
.custom-shape-divider-bottom-2 .shape-fill {
  fill: #336114;
}
#section_video {
  padding: 0;
  min-height: 590px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #section_video {
    min-height: 450px;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  #section_video {
    min-height: 350px;
    position: relative;
  }
}
#section_video .content_section {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
#section_video .content_section .container {
  width: 541px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  #section_video .content_section .container {
    max-width: 100%;
    width: 90%;
  }
}
#section_video .content_section .container h2 {
  font-size: 45px;
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  #section_video .content_section .container h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 375px) {
  #section_video .content_section .container h2 {
    font-size: 20px;
  }
}
#section_video .content_section .container a.btn {
  pointer-events: all;
}
#section_video .content_section .container span {
  display: inline-block;
  font-size: 16px;
  clear: both;
}
#section_video .content_section .container img {
  width: 116px;
  height: 116px;
  height: auto;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  margin-bottom: 10px;
}
#section_video .video-hero {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 1;
}
#section_video .video-hero .videoPlayer {
  width: 100%;
  min-height: 100%;
  position: absolute;
  z-index: 3;
}
#section_video .video-hero video {
  min-width: auto;
  min-height: auto;
  width: 100%;
  height: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
#section_video .video-hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: " ";
  pointer-events: none;
  background: #000000;
  z-index: 2;
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  #section_video .video-hero .video-overlay {
    opacity: 0;
  }
}
#section_video .custom-shape-divider-top-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
#section_video .custom-shape-divider-top-video svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  top: -2px;
}
#section_video .custom-shape-divider-top-video .shape-fill {
  fill: #336114;
}
#section_video .custom-shape-divider-bottom-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
#section_video .custom-shape-divider-bottom-video svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
#section_video .custom-shape-divider-bottom-video .shape-fill {
  fill: #BECE45;
}
#section_video:hover .play {
  transform: scale(1.2);
}
#section_ifi {
  background-color: #eaeade;
  padding: 3rem 0;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 992px) {
  #section_ifi {
    padding: 3rem 0 5rem 0;
  }
}
#section_ifi .header_section {
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  #section_ifi .header_section {
    margin-bottom: 20px;
  }
}
#section_ifi .header_section h2 {
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  color: #61a534;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  #section_ifi .header_section h2 {
    font-size: 30px;
  }
}
#section_ifi .header_section p {
  font-size: 18px;
  color: #000000;
}
@media screen and (max-width: 576px) {
  #section_ifi .header_section p {
    font-size: 16px;
  }
}
#section_ifi .header_section p span {
  font-weight: bold;
}
#section_ifi .header_section .container {
  position: relative;
  max-width: 900px;
}
@media screen and (max-width: 992px) {
  #section_ifi .header_section .container {
    max-width: 90%;
  }
}
#section_ifi .header_section .container:before {
  content: "";
  width: 126px;
  height: 126px;
  display: inline-block;
  background-image: url('../img/smiley_blanc.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -150px;
  right: 0;
  z-index: 3;
}
#section_ifi .header_section .container:after {
  content: "";
  width: 126px;
  height: 126px;
  display: inline-block;
  background-image: url('../img/smiley_rouge.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  #section_ifi .header_section .container:after {
    display: none;
  }
}
#section_ifi .content_section {
  display: inline-block;
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  #section_ifi .content_section {
    margin-top: 10px;
  }
}
#section_ifi .content_section .container {
  max-width: 1110px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .container {
    max-width: 60%;
  }
}
@media screen and (max-width: 576px) {
  #section_ifi .content_section .container {
    max-width: 90%;
  }
}
#section_ifi .content_section .row {
  justify-content: center;
  align-items: center;
}
#section_ifi .content_section .row .col-left {
  order: 2;
  padding: 0;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
#section_ifi .content_section .row .col-left .content_left {
  display: inline-block;
  width: 100%;
  text-align: left;
  background: #ffffff;
  left: -30px;
  position: relative;
  padding: 30px;
  padding-left: 60px;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-left .content_left {
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    -moz-border-radius-topleft: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    left: auto;
    margin-top: 20px;
    padding: 30px;
  }
}
#section_ifi .content_section .row .col-left .content_left:before {
  content: "";
  width: 126px;
  height: 126px;
  display: inline-block;
  background-image: url('../img/smiley_vert.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -70px;
  right: -70px;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-left .content_left:before {
    display: none;
  }
}
#section_ifi .content_section .row .col-left .content_left h2.overligned {
  display: inline-block;
  line-height: 48px;
  font-family: 'Oxfam Global Headline';
  color: #61a534;
  font-size: 50px;
  text-align: center;
  line-height: 70px;
}
#section_ifi .content_section .row .col-left .content_left h2.overligned .highlight {
  color: #fff;
  -webkit-box-decoration-break: clone;
  background: #e50052;
  display: inline;
  padding: 0px 25px;
  box-decoration-break: clone;
  transform: rotate(-3deg);
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-left .content_left h2.overligned {
    font-size: 30px;
    line-height: 40px;
  }
}
#section_ifi .content_section .row .col-left .content_left p {
  font-size: 16px;
  color: #000000;
  max-width: 580px;
  display: inline-block;
  margin-bottom: 0;
}
#section_ifi .content_section .row .col-left .content_left p span {
  color: #e50052;
  font-weight: bold;
}
#section_ifi .content_section .row .col-right {
  order: 1;
  padding: 0;
  position: relative;
  z-index: 2;
  -ms-flex-preferred-size: 416px;
  flex-basis: 416px;
  max-width: 416px;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
#section_ifi .content_section .row .col-right .calculette {
  background-color: #e50052;
  padding: 60px 20px;
  margin: 0px 0 0px 0;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
#section_ifi .content_section .row .col-right .calculette:before {
  content: "";
  width: 83px;
  height: 83px;
  background-image: url('../img/confiance_white.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 10px;
}
#section_ifi .content_section .row .col-right .calculette .calcul_inside {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette .calcul_inside {
    flex-direction: column;
  }
}
#section_ifi .content_section .row .col-right .calculette form {
  display: inline-block;
  max-width: 432px;
  margin-bottom: 0px;
  text-align: center;
}
#section_ifi .content_section .row .col-right .calculette form h4 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form h4 {
    text-align: center;
  }
}
#section_ifi .content_section .row .col-right .calculette form label {
  font-size: 24px;
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
}
#section_ifi .content_section .row .col-right .calculette form .after_deduction_text {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  font-weight: normal;
}
#section_ifi .content_section .row .col-right .calculette form .btn-green {
  position: relative;
  font-size: 16px;
}
#section_ifi .content_section .row .col-right .calculette form .col-amount {
  text-align: center;
  display: flex;
  justify-content: center;
}
#section_ifi .content_section .row .col-right .calculette form .col-amount .form-group {
  padding-right: 20px;
  position: relative;
  background-color: transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  max-width: 160px;
}
#section_ifi .content_section .row .col-right .calculette form .col-amount .form-group .input-group-apend {
  font-weight: bold;
  font-size: 15px;
  color: #e50052;
  position: absolute;
  right: 0;
  top: auto;
  padding-right: 10px;
  margin-left: 10px;
}
#section_ifi .content_section .row .col-right .calculette form #amount {
  max-width: 167px;
  display: inline-block;
}
#section_ifi .content_section .row .col-right .calculette form .form-control {
  border: 1px solid #d3d3d3;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#section_ifi .content_section .row .col-right .calculette form .row_don_value {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .row_don_value {
    margin-top: 20px;
  }
}
#section_ifi .content_section .row .col-right .calculette form .row_don_value label {
  padding: 0;
}
#section_ifi .content_section .row .col-right .calculette form .row_don_value .form-control {
  background-color: #eaeade;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .row_don_value .groupe {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro {
  margin: 0;
  padding: 0;
  width: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .input-group-euro {
    display: flex;
    justify-content: center;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"] {
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  font-size: 24px;
  max-width: 80px;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"] {
    text-align: center !important;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
  font-family: 'Oxfam Global Headline';
  text-align: right;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-webkit-input-placeholder {
    text-align: center !important;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-moz-placeholder {
  color: #ffffff !important;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
  font-family: 'Oxfam Global Headline';
  text-align: right;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-moz-placeholder {
    text-align: center;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
  font-family: 'Oxfam Global Headline';
  text-align: right;
}
@media screen and (max-width: 992px) {
  #section_ifi .content_section .row .col-right .calculette form .input-group-euro input[type="text"]::-ms-input-placeholder {
    text-align: center;
  }
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro .form-control {
  border-right: none;
  background-color: transparent;
  border: none;
}
#section_ifi .content_section .row .col-right .calculette form .input-group-euro .input-group-text {
  padding: 0;
  border: none;
  background-color: transparent;
  border-left: none;
  color: #ffffff;
  font-family: 'Oxfam Global Headline';
  font-size: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#section_ifi .content_section .row .col-right .calculette form .btn-red {
  width: 100%;
}
#section_agir {
  background: lightgray;
  padding: 5rem 0;
  background-color: #336114;
  position: relative;
}
#section_agir .container {
  max-width: 1140px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  #section_agir .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 576px) {
  #section_agir .container {
    max-width: 90%;
  }
}
#section_agir .header_section {
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  #section_agir .header_section {
    margin-bottom: 20px;
  }
}
#section_agir .header_section h2 {
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  color: #BECE45;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  #section_agir .header_section h2 {
    font-size: 30px;
  }
}
#section_agir .header_section p {
  font-size: 18px;
  color: #ffffff;
}
@media screen and (max-width: 576px) {
  #section_agir .header_section p {
    font-size: 16px;
  }
}
#section_agir .header_section p span {
  font-weight: bold;
}
#section_agir .content_section_desktop {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 992px) {
  #section_agir .content_section_desktop {
    display: none;
  }
}
#section_agir .content_section_desktop .row {
  align-items: center;
  display: flex;
  justify-content: center;
}
#section_agir .content_section_desktop .row .col-left {
  padding: 0px !important;
  -ms-flex-preferred-size: 536px;
  flex-basis: 536px;
  max-width: 536px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left {
    -ms-flex-preferred-size: 316px;
    flex-basis: 316px;
    max-width: 316px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img {
  max-width: 536px;
  width: 536px;
  height: 536px;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img {
    max-width: 316px;
    width: 316px;
    height: 316px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img:before {
  content: "";
  width: 156px;
  height: 156px;
  display: inline-block;
  background-image: url('../img/camembert/center_logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -78px;
  margin-left: -78px;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img:before {
    width: 96px;
    height: 96px;
    margin-top: -48px;
    margin-left: -48px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button {
  width: 268px;
  height: 268px;
  background-size: contain;
  background-repeat: no-repeat;
  border: none !important;
  border-radius: none !important;
  border: 0px !important;
  border-radius: 0px !important;
  text-indent: -1000px;
  overflow: hidden;
  background-color: transparent !important;
  position: relative;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img button {
    width: 158px;
    height: 158px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button.feu {
  background-image: url('../img/camembert/feu_out.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.feu.active {
  background-image: url('../img/camembert/feu_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.feu.active:before {
  content: "";
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/camembert/arrow_feu.svg');
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img button.feu.active:before {
    width: 18px;
    height: 18px;
    bottom: 26px;
    right: 26px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button.feu:hover {
  background-image: url('../img/camembert/feu_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.dollard {
  background-image: url('../img/camembert/dollard_out.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.dollard.active {
  background-image: url('../img/camembert/dollard_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.dollard.active:before {
  content: "";
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/camembert/arrow_dollard.svg');
  position: absolute;
  bottom: 30px;
  left: 30px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img button.dollard.active:before {
    width: 18px;
    height: 18px;
    bottom: 26px;
    left: 26px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button.dollard:hover {
  background-image: url('../img/camembert/dollard_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.poing {
  background-image: url('../img/camembert/poing_out.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.poing.active {
  background-image: url('../img/camembert/poing_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.poing.active:before {
  content: "";
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/camembert/arrow_poing.svg');
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img button.poing.active:before {
    width: 18px;
    height: 18px;
    top: 26px;
    right: 26px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button.poing:hover {
  background-image: url('../img/camembert/poing_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.terre {
  background-image: url('../img/camembert/terre_out.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.terre.active {
  background-image: url('../img/camembert/terre_hover.png');
}
#section_agir .content_section_desktop .row .col-left .nav_img button.terre.active:before {
  content: "";
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/camembert/arrow_terre.svg');
  position: absolute;
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-left .nav_img button.terre.active:before {
    width: 18px;
    height: 18px;
    top: 26px;
    left: 26px;
  }
}
#section_agir .content_section_desktop .row .col-left .nav_img button.terre:hover {
  background-image: url('../img/camembert/terre_hover.png');
}
#section_agir .content_section_desktop .row .col-right {
  padding: 0px !important;
  -ms-flex-preferred-size: 546px;
  flex-basis: 546px;
  max-width: 546px;
  position: relative;
  z-index: 1;
  left: -65px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-right {
    -ms-flex-preferred-size: 586px;
    flex-basis: 586px;
    max-width: 586px;
    left: -80px;
  }
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane.active .item {
  visibility: visible;
  opacity: 1;
  -webkit-animation-name: tdFadeInRight;
  animation-name: tdFadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.3s ;
  animation-delay: 0.3s ;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item {
  background: #eaeade;
  padding: 40px 40px 40px 100px;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  max-width: 100%;
  visibility: hidden;
  opacity: 0;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item .highlight {
  color: #fff;
  -webkit-box-decoration-break: clone;
  background: #d3560e;
  display: inline;
  padding: 0.3rem 1rem;
  box-decoration-break: clone;
  font-family: 'Oxfam Global Headline';
  font-size: 24px;
  line-height: 39px;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item .highlight {
    font-size: 20px;
  }
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item {
    padding: 40px 40px 20px 100px;
  }
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item p {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}
@media screen and (max-width: 1600px) {
  #section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item p {
    font-size: 16px;
  }
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item:after {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url('../img/camembert/picto_feu.png');
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.feu .highlight {
  background: #d3560e;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.feu:after {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  right: 0px;
  background-image: url('../img/camembert/picto_feu.png');
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.dollard .highlight {
  background: #61a534;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.dollard:after {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  right: 0px;
  background-image: url('../img/camembert/picto-dollard.png');
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.poing .highlight {
  background: #e70052;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.poing:after {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  right: 0px;
  background-image: url('../img/camembert/picto_poing.png');
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.terre .highlight {
  background: #e50052;
}
#section_agir .content_section_desktop .row .col-right .tab-content .tab-pane .item.terre:after {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  right: 0px;
  background-image: url('../img/camembert/picto_terre.png');
}
#section_agir .content_section_mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  #section_agir .content_section_mobile {
    display: inline-block;
  }
}
#section_agir .content_section_mobile .container {
  max-width: 100%;
  padding: 0;
}
#section_agir .content_section_mobile #carouselAgir {
  display: inline-block;
  width: 100%;
}
#section_agir .content_section_mobile #carouselAgir .carousel-indicators {
  position: relative;
}
#section_agir .content_section_mobile #carouselAgir .control_content {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-indicators {
  display: inline-block;
  z-index: 3;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  #section_agir .content_section_mobile #carouselAgir .carousel-indicators {
    top: auto;
  }
}
@media screen and (max-width: 1100px) {
  #section_agir .content_section_mobile #carouselAgir .carousel-indicators {
    z-index: 3;
    top: auto;
  }
}
@media screen and (max-width: 576px) {
  #section_agir .content_section_mobile #carouselAgir .carousel-indicators {
    z-index: 3;
  }
}
#section_agir .content_section_mobile #carouselAgir .carousel-indicators button {
  height: 10px;
  width: 10px;
  border: none;
  margin: 0 2px;
  bottom: 400px;
  -webkit-border-radius: 160px;
  -moz-border-radius: 160px;
  border-radius: 160px;
  -ms-flex-preferred-size: 10px;
  flex-basis: 10px;
  max-width: 10px;
  background: #ffffff;
  opacity: 0.5;
}
#section_agir .content_section_mobile #carouselAgir .carousel-indicators button.active {
  background: #ffffff;
  opacity: 1;
}
#section_agir .content_section_mobile #carouselAgir .carousel-control-next {
  background: transparent;
  border: none;
  z-index: 3;
  opacity: 1;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
#section_agir .content_section_mobile #carouselAgir .carousel-control-next .carousel-control-next-icon {
  background-color: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  background-size: 100%;
}
#section_agir .content_section_mobile #carouselAgir .carousel-control-prev {
  display: inline-block;
  background: transparent;
  border: none;
  z-index: 3;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
#section_agir .content_section_mobile #carouselAgir .carousel-control-prev .carousel-control-prev-icon {
  background-color: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  background-size: 100%;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item {
  padding: 0 10%;
  padding-top: 60px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside {
  position: relative;
  width: 100;
  background-color: #eaeade;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  padding: 40px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside .highlight {
  color: #fff;
  -webkit-box-decoration-break: clone;
  background: #d3560e;
  display: inline-block;
  padding: 0.3rem 1rem;
  box-decoration-break: clone;
  font-family: 'Oxfam Global Headline';
  font-size: 24px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside p {
  display: inline-block;
  margin-top: 20px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.feu .highlight {
  background: #d3560e;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.feu:before {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: inline-block;
  background-image: url('../img/camembert/picto_feu.png');
  top: -60px;
  right: 50%;
  margin-right: -50px;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.dollard .highlight {
  background: #61a534;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.dollard:before {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: inline-block;
  top: -60px;
  right: 50%;
  margin-right: -50px;
  background-image: url('../img/camembert/picto-dollard.png');
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.poing .highlight {
  background: #e70052;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.poing:before {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: inline-block;
  top: -60px;
  right: 50%;
  margin-right: -50px;
  background-image: url('../img/camembert/picto_poing.png');
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.terre .highlight {
  background: #e50052;
}
#section_agir .content_section_mobile #carouselAgir .carousel-item .item_inside.terre:before {
  content: "";
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: inline-block;
  top: -60px;
  right: 50%;
  margin-right: -50px;
  background-image: url('../img/camembert/picto_terre.png');
}
#section_force {
  background-color: #336114;
  padding-bottom: 5rem;
}
#section_force .header_section {
  display: inline-block;
  width: 100%;
  height: 800px;
}
@media screen and (min-width: 1600px) {
  #section_force .header_section {
    height: 1000px;
  }
}
@media screen and (max-width: 1500px) {
  #section_force .header_section {
    height: 800px;
  }
}
@media screen and (max-width: 1200px) {
  #section_force .header_section {
    height: 600px;
  }
}
@media screen and (max-width: 992px) {
  #section_force .header_section {
    height: 420px;
  }
}
#section_force .header_section .illustration {
  width: 100%;
  height: 100%;
}
#section_force .header_section .illustration .img:after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-linear-gradient(top, rgba(51, 97, 20, 0), #336114);
  background-image: -moz-linear-gradient(top, rgba(51, 97, 20, 0), #336114);
  background-image: -o-linear-gradient(top, rgba(51, 97, 20, 0), #336114);
  background-image: -ms-linear-gradient(top, rgba(51, 97, 20, 0), #336114);
  background-image: linear-gradient(top, rgba(51, 97, 20, 0), #336114);
}
#section_force .content_section .container {
  max-width: 1046px;
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container .row .col-left {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container .row .col-left .item {
    text-align: center;
  }
}
#section_force .content_section .container .row .col-left .item h2 {
  font-family: 'Oxfam Global Headline';
  color: #ffffff;
  font-size: 40px;
}
#section_force .content_section .container .row .col-left .item p {
  color: #ffffff;
  font-size: 16px;
}
#section_force .content_section .container .row .col-left .item p span {
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}
#section_force .content_section .container .row .col-right .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container .row .col-right .item {
    display: inline-block;
  }
}
#section_force .content_section .container .row .col-right .item .tuile {
  width: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 992px) {
  #section_force .content_section .container .row .col-right .item .tuile {
    margin-bottom: 10px;
    max-width: 500px;
  }
}
#section_force .content_section .container .row .col-right .item .tuile img {
  width: 82px;
  height: auto;
}
@media screen and (max-width: 576px) {
  #section_force .content_section .container .row .col-right .item .tuile img {
    width: 52px;
  }
}
#section_force .content_section .container .row .col-right .item .tuile .number {
  font-size: 48px;
  font-family: 'Oxfam Global Headline';
  color: #489b4b;
  margin-bottom: 0px;
  display: inline-block;
  margin: 0 25px 0 5px;
  position: relative;
  top: -6px;
}
@media screen and (max-width: 576px) {
  #section_force .content_section .container .row .col-right .item .tuile .number {
    font-size: 37px;
  }
}
#section_force .content_section .container .row .col-right .item .tuile .info {
  font-family: 'Oxfam TSTAR PRO Headline';
  text-transform: uppercase;
  font-size: 20px;
  color: #336114;
  margin-bottom: 0px;
  display: inline-block;
  line-height: 21px;
}
@media screen and (max-width: 576px) {
  #section_force .content_section .container .row .col-right .item .tuile .info {
    font-size: 13px;
    line-height: 14px;
  }
}
#section_force .content_section .container .row .col-right .item .tuile:first-child {
  transform: rotate(3deg);
}
#section_force .content_section .container .row .col-right .item .tuile:first-child p {
  color: #61A534 !important;
}
#section_force .content_section .container .row .col-right .item .tuile:nth-child(2) {
  transform: rotate(-1deg);
}
#section_force .content_section .container .row .col-right .item .tuile:nth-child(2) p {
  color: #44841A !important;
}
#section_force .content_section .container .row .col-right .item .tuile:nth-child(3) {
  transform: rotate(3deg);
}
#section_force .content_section .container .row .col-right .item .tuile:nth-child(3) p {
  color: #336114 !important;
}
.custom-shape-divider-bottom-force {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-bottom-force svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
.custom-shape-divider-bottom-force .shape-fill {
  fill: #44841A;
}
#section_iraiser {
  background: #000000;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  #section_iraiser {
    height: auto;
  }
}
@media screen and (max-width: 992px) {
  #section_iraiser {
    height: auto;
    min-height: initial;
  }
}
#section_iraiser .illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#section_iraiser .illustration .img:after {
  content: "";
  background-color: #000000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  #section_iraiser .illustration .img:after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  #section_iraiser .illustration .img:before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  }
}
@media screen and (max-width: 992px) {
  #section_iraiser .illustration {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 450px;
    width: 100%;
    opacity: 1;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 576px) {
  #section_iraiser .illustration {
    height: 250px;
    width: 100%;
  }
}
#section_iraiser .content_section {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section {
    position: relative;
    display: inline-block;
    height: auto;
    top: -100px;
  }
}
@media screen and (max-width: 576px) {
  #section_iraiser .content_section {
    position: relative;
    display: inline-block;
    height: auto;
    top: -30px;
  }
}
#section_iraiser .content_section .container {
  max-width: 1126px;
  margin: 200px auto;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container {
    max-width: 90%;
    margin: 20px auto 60px auto;
  }
}
@media screen and (min-width: 1500px) {
  #section_iraiser .content_section .container {
    margin: 200px auto;
  }
}
@media screen and (min-width: 1900px) {
  #section_iraiser .content_section .container {
    margin: 200px auto;
  }
}
#section_iraiser .content_section .container .row {
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container .row {
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container .col-left {
    text-align: center;
    margin-bottom: 20px;
  }
}
#section_iraiser .content_section .container .col-left h2 {
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container .col-left h2 {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  #section_iraiser .content_section .container .col-left h2 {
    font-size: 30px;
  }
}
#section_iraiser .content_section .container .col-left .fiscal {
  display: inline-block;
  background-color: #ffffff;
  color: #336114;
  font-size: 16px;
  padding: 15px 30px 15px 120px;
  text-align: left;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  align-items: center;
  font-weight: 900;
  position: relative;
  transform: rotate(-4deg);
  margin-top: 30px;
  visibility: hidden;
  line-height: 18px;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container .col-left .fiscal {
    font-size: 16px;
  }
}
#section_iraiser .content_section .container .col-left .fiscal:before {
  content: "66%";
  font-family: 'Oxfam Global Headline';
  font-size: 40px;
  margin-right: 20px;
  position: relative;
  color: #61a534;
  position: absolute;
  top: 33px;
  left: 15px;
}
#section_iraiser .content_section .container .col {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
@media screen and (max-width: 992px) {
  #section_iraiser .content_section .container .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
#section_iraiser .content_section .container .col .form_iraiser {
  display: inline-block;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  height: auto;
}
#section_iraiser .content_section .container .col .form_iraiser .form_inside {
  width: 100%;
  max-width: 480px;
  min-height: 380px;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
}
.custom-shape-divider-top-fdd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-top-fdd svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  top: -2px;
}
.custom-shape-divider-top-fdd .shape-fill {
  fill: #EAEADE;
}
.custom-shape-divider-bottom-fdd {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.custom-shape-divider-bottom-fdd svg {
  position: relative;
  display: block;
  width: calc(101.3%);
  height: auto;
  bottom: -2px;
}
.custom-shape-divider-bottom-fdd .shape-fill {
  fill: #336114;
}
