@charset "UTF-8";
/* ==========================================================================
INUITCSS
========================================================================== */
/**
* inuitcss, by @csswizardry
*
* github.com/inuitcss | inuitcss.com
*/
/**
* This is an example inuitcss manifest file. DO NOT MODIFY THIS FILE DIRECTLY.
* Instead, copy and paste it into your own CSS directory and make additions,
* extensions, and modifications there.
*/
/**
* CONTENTS
*
* SETTINGS
* Config...............Project-level configuration and feature switches.
* Core.................inuitcss’ core and setup settings.
* Global...............Project-wide variables and settings.
*
* TOOLS
* Font-size............A mixin which guarantees baseline-friendly line-heights.
* Clearfix.............Micro clearfix mixin.
* Hidden...............Mixin for hiding elements.
* Sass MQ..............inuitcss’ default media query manager.
*
* GENERIC
* Box-sizing...........Better default `box-sizing`.
* Normalize.css........A level playing field using @necolas’ Normalize.css.
* Reset................A tiny reset to complement Normalize.css.
* Shared...............Sensibly and tersely share some global commonalities
*                      (particularly useful when managing vertical rhythm).
*
* ELEMENTS
* Page.................Set up our document’s default `font-size` and
*                      `line-height`.
* Headings.............Very minimal (i.e. only font-size information) for
*                      headings 1 through 6.
* Images...............Base image styles.
* Tables...............Simple table styles.
*
* OBJECTS
* Wrapper..............Page constraint object.
* Layout...............Generic layout module.
* Media................Image- and text-like content side by side. The
*                      poster-child of OOCSS.
* Flag.................Table-layout-based advancement on the Media object.
* List-bare............Lists with no bullets or indents.
* List-inline..........A list whose items all site in a line.
* Box..................Simple boxing abstraction.
* Block................Image-on-top-of-text object.
* Ratio................A container for maintaining aspect ratio of content.
* Crop.................Provide a cropping context for media (images, etc.).
* Table................Classes for manipulating `table`s.
* Pack.................Pack items into available horizontal space.
*
* COMPONENTS
* Buttons..............An example button component, and how it fits into the
*                      inuitcss framework.
*
* UTILITIES
* Clearfix.............Bind our clearfix onto a utility class.
* Widths...............Simple width helper classes.
* Headings.............Reassigning our heading styles to helper classes.
* Spacings.............Nudge bits of the DOM around with these spacing
*                      classes.
* Print................Reset-like styles taken from the HTML5 Boilerplate.
* Hide.................Helper classes to hide content
*/
/* ==========================================================================
#BOX-SIZING
========================================================================== */
/**
* More sensible default box-sizing:
* css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
*/
html {
  box-sizing: border-box;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover,
.copyright a:hover {
  color: #66C08D;
}

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
#RESET
========================================================================== */
/**
* A very simple reset that sits on top of Normalize.css.
*/
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
* Remove trailing margins from nested lists.
*/
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
* Remove default table spacing.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
* 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
*    on fieldsets.
*/
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

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

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

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

  font-family: "acumin-pro",sans-serif;
  color: #444444;

  font-weight: 300;
}

h1,h2,h3,h4,h5,h6,p,li,a, * {
  letter-spacing: 0.03rem;
}

/* ==========================================================================
#HEADINGS
========================================================================== */
/**
* Simple default styles for headings 1 through 6. Anything more opinionated
* than simple font-size changes should likely be applied via classes (see:
* http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
*/

h2,h3,h4,h5, .c-main-menu__parent, .event-title, .-current-page.-title  {
  font-weight: 300 !important;
}

h1,
.-page-title-h2 {
  font-size: 64px;
  font-size: 4rem;
  line-height: 1.3333333333;
  font-weight: 700;
}

.-page-title-h2:before,
.c-contact-us__title:before {
  display: none;
}

h2,
.-current-page.-title {
  /*  font-family: "arimo",sans-serif;*/
  font-size: 44px;
  font-size: 2.750em;
  color: #66C08D;
  margin-top: 52px;
  margin-top: 1.182em;
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 0.909em;
  margin-bottom: 64px;
  margin-bottom: 1.455em;
  line-height: 1.2em;
}

h2:before,
.-current-page.-title:before,
.c-title.-banner:before {
  position: absolute;
  height: 2px;
  background-color: #66C08D;
  width: 94px;
  width: 5.875rem;
  content: "";
  bottom: 0;
  border-radius: 1px;
}

h3,
.c-main-menu__parent,
.event-title,
.c-contact-us__title {
  font-size: 32px;
  font-size: 2.000em;
  letter-spacing: .58px;
  letter-spacing: 0.018em;
  line-height: 42px;
  line-height: 1.313em;
  color: #E5007D;
}

@media(max-width: 1300px) {
  h3,
  .c-main-menu__parent,
  .event-title,
  .c-contact-us__title {
    font-size: 1.8rem;
  }
}

@media(max-width: 1300px) {
  h3,
  .c-main-menu__parent,
  .event-title,
  .c-contact-us__title {
    font-size: 1.5rem;
  }
}

.c-main-menu__parent {
  font-size: 1.3493rem;
}

h4,
.c-contact-us__sector {
  font-size: 22px;
  font-size: 1.375em;
  line-height: 34px;
  line-height: 1.545em;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #E5007D;
  line-height: 1.3333333333;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
#IMAGES
========================================================================== */
/**
* 1. Fluid images for responsive purposes.
* 2. Offset `alt` text from surrounding copy.
* 3. Setting `vertical-align` removes the whitespace that appears under `img`
*    elements when they are dropped into a page as-is. Safer alternative to
*    using `display: block;`.
*/
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
}

/**
* 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
*    not make the image fluid.
*/
img[width],
img[height] {
  /* [1] */
  max-width: none;
}

/* ==========================================================================
#TABLES
========================================================================== */
/**
* 1. Ensure tables fill up as much space as possible.
*/
table {
  width: 100%;
  /* [1] */
}

/* ==========================================================================
#WRAPPER
========================================================================== */
/**
* Page-level constraining and wrapping elements.
*/
/* stylelint-disable */
/* stylelint-enable */
.o-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.o-wrapper:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* Size variants.
========================================================================== */
.o-wrapper--tiny {
  padding-right: 6px;
  padding-left: 6px;
}

.o-wrapper--small {
  padding-right: 12px;
  padding-left: 12px;
}

.o-wrapper--large {
  padding-right: 48px;
  padding-left: 48px;
}

.o-wrapper--huge {
  padding-right: 96px;
  padding-left: 96px;
}

/* ==========================================================================
#LAYOUT
========================================================================== */
/**
* Grid-like layout system.
*
* The layout object provides us with a column-style layout system. This file
* contains the basic structural elements, but classes should be complemented
* with width utilities, for example:
*
*   <div class="o-layout">
*     <div class="o-layout__item  u-1/2">
*     </div>
*     <div class="o-layout__item  u-1/2">
*     </div>
*   </div>
*
* The above will create a two-column structure in which each column will
* fluidly fill half of the width of the parent. We can have more complex
* systems:
*
*   <div class="o-layout">
*     <div class="o-layout__item  u-1/1  u-1/3@medium">
*     </div>
*     <div class="o-layout__item  u-1/2  u-1/3@medium">
*     </div>
*     <div class="o-layout__item  u-1/2  u-1/3@medium">
*     </div>
*   </div>
*
* The above will create a system in which the first item will be 100% width
* until we enter our medium breakpoint, when it will become 33.333% width. The
* second and third items will be 50% of their parent, until they also become
* 33.333% width at the medium breakpoint.
*
* We can also manipulate entire layout systems by adding a series of modifiers
* to the `.o-layout` block. For example:
*
*   <div class="o-layout  o-layout--reverse">
*
* This will reverse the displayed order of the system so that it runs in the
* opposite order to our source, effectively flipping the system over.
*
*   <div class="o-layout  o-layout--[right|center]">
*
* This will cause the system to fill up from either the centre or the right
* hand side. Default behaviour is to fill up the layout system from the left.
*
* There are plenty more options available to us: explore them below.
*/
/* Default/mandatory classes.
========================================================================== */
/**
* 1. Allows us to use the layout object on any type of element.
* 2. We need to defensively reset any box-model properties.
* 3. Use the negative margin trick for multi-row grids:
*    http://csswizardry.com/2011/08/building-better-grid-systems/
*/
.o-layout {
  display: block;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  list-style: none;
  /* [1] */
  margin-left: -24px;
  /* [3] */
  font-size: 0;

  letter-spacing: 0;
}
.o-layout.-single-event {
  margin-left: -80px;
}



/**
* 1. Required in order to combine fluid widths with fixed gutters.
* 2. Allows us to manipulate grids vertically, with text-level properties,
*    etc.
* 3. Default item alignment is with the tops of each other, like most
*    traditional grid/layout systems.
* 4. By default, all layout items are full-width (mobile first).
* 5. Gutters provided by left padding:
*    http://csswizardry.com/2011/08/building-better-grid-systems/
* 6. Fallback for old IEs not supporting `rem` values.
*/
.o-layout__item {
  box-sizing: border-box;
  /* [1] */
  display: inline-block;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  padding-left: 24px;
  /* [5] */
  font-size: 16px;
  /* [6] */
  font-size: 1rem;
}

.o-layout.-single-event .o-layout__item {
  padding-left: 80px;
}

/* Gutter size modifiers.
========================================================================== */
.o-layout--tiny {
  margin-left: -6px;
}
.o-layout--tiny > .o-layout__item {
  padding-left: 6px;
}

.o-layout--small {
  margin-left: -12px;
}
.o-layout--small > .o-layout__item {
  padding-left: 12px;
}

.o-layout--large {
  margin-left: -48px;
}
.o-layout--large > .o-layout__item {
  padding-left: 48px;
}

.o-layout--xlarge {
  margin-left: -72px;
}
.o-layout--xlarge > .o-layout__item {
  padding-left: 72px;
}

.o-layout--huge {
  margin-left: -96px;
}
.o-layout--huge > .o-layout__item {
  padding-left: 96px;
}

.o-layout--flush {
  margin-left: 0;
}
.o-layout--flush > .o-layout__item {
  padding-left: 0;
}

/* Vertical alignment modifiers.
========================================================================== */
/**
* Align all grid items to the middles of each other.
*/
.o-layout--middle > .o-layout__item {
  vertical-align: middle;
}

/**
* Align all grid items to the bottoms of each other.
*/
.o-layout--bottom > .o-layout__item {
  vertical-align: bottom;
}

/* Fill order modifiers.
========================================================================== */
/**
* Fill up the layout system from the centre.
*/
.o-layout--center {
  text-align: center;
}
.o-layout--center > .o-layout__item {
  text-align: left;
}

/**
* Fill up the layout system from the right-hand side.
*/
.o-layout--right {
  text-align: right;
}
.o-layout--right > .o-layout__item {
  text-align: left;
}

/**
* Fill up the layout system from the left-hand side. This will likely only be
* needed when using in conjunction with `.o-layout--reverse`.
*/
.o-layout--left {
  text-align: left;
}
.o-layout--left > .o-layout__item {
  text-align: left;
}

/**
* Reverse the rendered order of the grid system.
*/
.o-layout--reverse {
  direction: rtl;
}
.o-layout--reverse > .o-layout__item {
  direction: ltr;
}

/* Auto-widths modifier.
========================================================================== */
/**
* Cause layout items to take up a non-explicit amount of width.
*/
.o-layout--auto > .o-layout__item {
  width: auto;
}

/* ==========================================================================
#MEDIA
========================================================================== */
/**
* Place any image- and text-like content side-by-side, as per:
* http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
*/
.o-media {
  display: block;
}
.o-media:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.o-media__img {
  float: left;
  margin-right: 24px;
}
.o-media__img > img {
  display: block;
}

.o-media__body {
  overflow: hidden;
  display: block;
}
.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Size variants
========================================================================== */
/**
* Modify the amount of space between our image and our text. We also have
* reversible options for all available sizes.
*/
.o-media--tiny > .o-media__img {
  margin-right: 6px;
}
.o-media--tiny.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 6px;
}

.o-media--small > .o-media__img {
  margin-right: 12px;
}
.o-media--small.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 12px;
}

.o-media--large > .o-media__img {
  margin-right: 48px;
}
.o-media--large.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 48px;
}

.o-media--huge > .o-media__img {
  margin-right: 96px;
}
.o-media--huge.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 96px;
}

/* Reversed media objects
========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-right: 0;
  margin-left: 24px;
}

/* Gutterless media objects
========================================================================== */
.o-media--flush > .o-media__img {
  margin-right: 0;
  margin-left: 0;
}

/* ==========================================================================
#FLAG
========================================================================== */
/**
* The flag object is a design pattern similar to the media object, however it
* utilises `display: table[-cell];` to give us control over the vertical
* alignments of the text and image.
*
* http://csswizardry.com/2013/05/the-flag-object/
*
* 1. Allows us to control vertical alignments.
* 2. Force the object to be the full width of its parent. Combined with [1],
*    this makes the object behave in a quasi-`display: block;` manner.
* 3. Reset inherited `border-spacing` declarations.
*/
.o-flag {
  display: table;
  /* [1] */
  width: 100%;
  /* [2] */
  border-spacing: 0;
  /* [3] */
}

/**
* Items within a flag object. There should only ever be one of each.
*
* 1. Default to aligning content to their middles.
*/
.o-flag__img,
.o-flag__body {
  display: table-cell;
  vertical-align: middle;
  /* [1] */
}

/**
* Flag images have a space between them and the body of the object.
*
* 1. Force `.flag__img` to take up as little space as possible:
*    https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
*/
.o-flag__img {
  width: 1px;
  /* [1] */
  padding-right: 24px;
  /**
  * 1. Fixes problem with images disappearing.
  */
}
.o-flag__img > img {
  max-width: none;
  /* [1] */
}

/**
* The container for the main content of the flag object.
*
* 1. Forces the `.flag__body` to take up all remaining space.
*/
.o-flag__body {
  width: auto;
  /* [1] */
}
.o-flag__body,
.o-flag__body > :last-child {
  margin-bottom: 0;
}

/* Size variants.
========================================================================== */
.o-flag--tiny > .o-flag__img {
  padding-right: 6px;
}
.o-flag--tiny.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 6px;
}

.o-flag--small > .o-flag__img {
  padding-right: 12px;
}
.o-flag--small.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 12px;
}

.o-flag--large > .o-flag__img {
  padding-right: 48px;
}
.o-flag--large.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 48px;
}

.o-flag--huge > .o-flag__img {
  padding-right: 96px;
}
.o-flag--huge.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 96px;
}

.o-flag--flush > .o-flag__img {
  padding-right: 0;
  padding-left: 0;
}

/* Reversed flag.
========================================================================== */
/**
* 1. Swap the rendered direction of the object…
* 2. …and reset it.
* 3. Reassign margins to the correct sides.
*/
.o-flag--reverse {
  direction: rtl;
  /* [1] */
}
.o-flag--reverse > .o-flag__img,
.o-flag--reverse > .o-flag__body {
  direction: ltr;
  /* [2] */
}
.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  /* [3] */
  padding-left: 24px;
  /* [3] */
}

/* Alignment variants.
========================================================================== */
/**
* Vertically align the image- and body-content differently. Defaults to middle.
*/
.o-flag--top > .o-flag__img,
.o-flag--top > .o-flag__body {
  vertical-align: top;
}

.o-flag--bottom > .o-flag__img,
.o-flag--bottom > .o-flag__body {
  vertical-align: bottom;
}

/* ==========================================================================
#LIST-BARE
========================================================================== */
/**
* Strip list-like appearance from lists by removing their bullets, and any
* indentation.
*/
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* ==========================================================================
#LIST-INLINE
========================================================================== */
/**
* The list-inline object simply displays a list of items in one line.
*/
.o-list-inline {
  margin-left: 0;
  list-style: none;
}

.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
#BOX
========================================================================== */
/**
* The box object simply boxes off content. Extend with cosmetic styles in the
* Components layer.
*
* 1. So we can apply the `.o-box` class to naturally-inline elements.
*/
.o-box {
  display: block;
  /* [1] */
  padding: 24px;
}
.o-box:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}
.o-box > :last-child {
  margin-bottom: 0;
}

/* Size variants
========================================================================== */
.o-box--flush {
  padding: 0;
}

.o-box--tiny {
  padding: 6px;
}

.o-box--small {
  padding: 12px;
}

.o-box--large {
  padding: 48px;
}

.o-box--huge {
  padding: 96px;
}

/* ==========================================================================
#BLOCK
========================================================================== */
/**
* Stacked image-with-text object. A simple abstraction to cover a very commonly
* occurring design pattern.
*/
.o-block {
  display: block;
  text-align: center;
}

.o-block__img {
  margin-bottom: 24px;
  /* Size variants.
  ====================================================================== */
}
.o-block--flush > .o-block__img {
  margin-bottom: 0;
}
.o-block--tiny > .o-block__img {
  margin-bottom: 6px;
}
.o-block--small > .o-block__img {
  margin-bottom: 12px;
}
.o-block--large > .o-block__img {
  margin-bottom: 48px;
}
.o-block--huge > .o-block__img {
  margin-bottom: 96px;
}

.o-block__body {
  display: block;
}

/* Alignment variants.
========================================================================== */
.o-block--right {
  text-align: right;
}

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

/* ==========================================================================
#RATIO
========================================================================== */
/**
* Create ratio-bound content blocks, to keep media (e.g. images, videos) in
* their correct aspect ratios.
*
* http://alistapart.com/article/creating-intrinsic-ratios-for-video
*
* 1. Default cropping is a 1:1 ratio (i.e. a perfect square).
*/
.o-ratio {
  position: relative;
  display: block;
  overflow: hidden;
}
.o-ratio:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  /* [1] */
}

.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* stylelint-disable */
/* Ratio variants.
========================================================================== */
/**
* Generate a series of ratio classes to be used like so:
*
*   <div class="o-ratio  o-ratio--16:9">
*
*/
.o-ratio--2\:1:before {
  padding-bottom: 50%;
}

.o-ratio--4\:3:before {
  padding-bottom: 75%;
}

.o-ratio--16\:9::before {
  padding-bottom: 56.25%;
}

/* stylelint-enable */
/* ==========================================================================
#CROP
========================================================================== */
/**
* Provide a cropping container in order to display media (usually images)
* cropped to certain ratios.
*
* 1. Set up a positioning context in which the image can sit.
* 2. This is the crucial part: where the cropping happens.
*/
.o-crop {
  position: relative;
  /* [1] */
  display: block;
  overflow: hidden;
  /* [2] */
}

/**
* Apply this class to the content (usually `img`) that needs cropping.
*
* 1. Image’s default positioning is top-left in the cropping box.
* 2. Make sure the media doesn’t stop itself too soon.
*/
.o-crop__content {
  position: absolute;
  top: 0;
  /* [1] */
  left: 0;
  /* [1] */
  max-width: none;
  /* [2] */
}

/**
* We can position the media in different locations within the cropping area.
*/
.o-crop__content--right {
  right: 0;
  left: auto;
}

.o-crop__content--bottom {
  top: auto;
  bottom: 0;
}

.o-crop__content--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* stylelint-disable */
/* Crop-ratio variants.
========================================================================== */
/**
* Generate a series of crop classes to be used like so:
*
*   <div class="o-crop  o-crop--16:9">
*
*/
.o-crop--2\:1 {
  padding-bottom: 50%;
}

.o-crop--4\:3 {
  padding-bottom: 75%;
}

.o-crop--16\:9 {
  padding-bottom: 56.25%;
}

/* stylelint-enable */
/* ==========================================================================
#TABLE
========================================================================== */
/**
* A simple object for manipulating the structure of HTML `table`s.
*/
.o-table {
  width: 100%;
}

/* Equal-width table cells.
========================================================================== */
/**
* `table-layout: fixed` forces all cells within a table to occupy the same
* width as each other. This also has performance benefits: because the browser
* does not need to (re)calculate cell dimensions based on content it discovers,
* the table can be rendered very quickly. Further reading:
* https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
*/
.o-table--fixed {
  table-layout: fixed;
}

/* Size variants.
========================================================================== */
.o-table--tiny th,
.o-table--tiny td {
  padding: 6px;
}

.o-table--small th,
.o-table--small td {
  padding: 12px;
}

.o-table--large th,
.o-table--large td {
  padding: 48px;
}

.o-table--huge th,
.o-table--huge td {
  padding: 96px;
}

/* ==========================================================================
#PACK
========================================================================== */
/**
* The pack object simply causes any number of elements pack up horizontally to
* automatically fill an equal, fluid width of their parent.
*
* 1. Fill all available space.
* 2. Remove any leftover styling from lists.
* 3. Cause children to be automatically equally sized.
*/
.o-pack {
  width: 100%;
  /* [1] */
  margin-left: 0;
  /* [2] */
  display: table;
  table-layout: fixed;
  /* [3] */
}

/**
* 1. Cause children to adopt table-like structure.
* 2. Default item alignment is with the tops of each other.
*/
.o-pack__item {
  display: table-cell;
  /* [1] */
  vertical-align: top;
  /* [2] */
  /* Vertical alignment variants.
  ====================================================================== */
}
.o-pack--middle > .o-pack__item {
  vertical-align: middle;
}
.o-pack--bottom > .o-pack__item {
  vertical-align: bottom;
}

/* Unequal-width items.
========================================================================== */
.o-pack--auto {
  table-layout: auto;
}

/* Size variants.
========================================================================== */
.o-pack--tiny {
  border-spacing: 6px;
}

.o-pack--small {
  border-spacing: 12px;
}

.o-pack--default {
  border-spacing: 24px;
}

.o-pack--large {
  border-spacing: 48px;
}

.o-pack--huge {
  border-spacing: 96px;
}

/* Reversed order packs
========================================================================== */
.o-pack--reverse {
  direction: rtl;
}
.o-pack--reverse > .o-pack__item {
  direction: ltr;
}

/* ==========================================================================
#BUTTONS
========================================================================== */
/**
* This is an example component. Extend inuitcss by building your own components
* that make up your UI. Component classes are prefixed with a `c-`.
*/
/**
* 1. Allow us to style box model properties.
* 2. Line different sized buttons up a little nicer.
* 3. Make buttons inherit font styles (often necessary when styling `input`s as
*    buttons).
* 4. Reset/normalize some styles.
* 5. Force all button-styled elements to appear clickable.
*/
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 12px 24px;
  transition: all 300ms ease-in-out;
}

/* Style variants
========================================================================== */
.c-btn--primary {
  background-color: #4a8ec2;
}
.c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
  text-decoration: none;
  /* [4] */
  color: #fff;
}
.c-btn--primary:hover, .c-btn--primary:focus {
  background-color: #3774a2;
}

.c-btn--secondary {
  background-color: #2f4054;
}
.c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
  text-decoration: none;
  color: #fff;
}
.c-btn--secondary:hover, .c-btn--secondary:focus {
  background-color: #1d2733;
}

.c-btn--tertiary {
  background-color: #fff;
  color: #4a8ec2;
}
.c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
  text-decoration: none;
  color: #4a8ec2;
}
.c-btn--tertiary:hover, .c-btn--tertiary:focus {
  color: #3774a2;
}

/* Size variants
========================================================================== */
.c-btn--small {
  padding: 6px 12px;
}

.c-btn--large {
  padding: 24px 48px;
}

/* Ghost buttons
========================================================================== */
/**
* Ghost buttons have see-through backgrounds and are bordered.
*/
.c-btn--ghost {
  border: 2px solid currentColor;
  padding: 10px 22px;
}
.c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
  background: none;
}
.c-btn--ghost.c-btn--small {
  padding: 4px 10px;
}
.c-btn--ghost.c-btn--large {
  padding: 22px 46px;
}
.c-btn--ghost.c-btn--primary {
  color: #4a8ec2;
}
.c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
  color: #3774a2;
}
.c-btn--ghost.c-btn--secondary {
  color: #2f4054;
}
.c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
  color: #1d2733;
}
.c-btn--ghost.c-btn--tertiary {
  color: #fff;
}
.c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
  color: #fff;
}

/* ==========================================================================
#CLEARFIX
========================================================================== */
/**
* Attach our clearfix mixin to a utility class.
*/
.u-clearfix:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* ==========================================================================
#WIDTHS
========================================================================== */
/**
* inuitcss generates a series of utility classes that give a fluid width to
* whichever element they’re applied, e.g.:
*
*   <img src="" alt="" class="u-1/2" />
*
* These classes are most commonly used in conjunction with our layout system,
* e.g.:
*
*   <div class="o-layout__item  u-1/2">
*
* By default, inuitcss will also generate responsive variants of each of these
* classes by using your Sass MQ configuration, e.g.:
*
*   <div class="o-layout__item  u-1/1  u-1/2@tablet  u-1/3@desktop">
*
* Optionally, inuitcss can generate offset classes which can push and pull
* elements left and right by a specified amount, e.g.:
*
*   <div class="o-layout__item  u-2/3  u-pull-1/3">
*
* This is useful for making very granular changes to the rendered order of
* items in a layout.
*
* N.B. This option is turned off by default.
*/
/**
* A series of width helper classes that you can use to size things like grid
* systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
* your markup:
*
* <div class="u-7/12">
*
* The following will generate widths helper classes based on the fractions
* defined in the `$inuit-fractions` list.
*/
.u-1\/1 {
  width: 100% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/1 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important;
}

.u-pull-1\/1 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */
}

.u-1\/2 {
  width: 50% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important;
}

.u-pull-1\/2 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */
}

.u-2\/2 {
  width: 100% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important;
}

.u-pull-2\/2 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */
}

.u-1\/3 {
  width: 33.3333333333% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 33.3333333333% !important;
}

.u-pull-1\/3 {
  position: relative !important;
  right: 33.3333333333% !important;
  left: auto !important;
  /* [1] */
}

.u-2\/3 {
  width: 66.6666666667% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 66.6666666667% !important;
}

.u-pull-2\/3 {
  position: relative !important;
  right: 66.6666666667% !important;
  left: auto !important;
  /* [1] */
}

.u-3\/3 {
  width: 100% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important;
}

.u-pull-3\/3 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */
}

.u-1\/4 {
  width: 25% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 25% !important;
}

.u-pull-1\/4 {
  position: relative !important;
  right: 25% !important;
  left: auto !important;
  /* [1] */
}

.u-2\/4 {
  width: 50% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important;
}

.u-pull-2\/4 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */
}

.u-3\/4 {
  width: 75% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 75% !important;
}

.u-pull-3\/4 {
  position: relative !important;
  right: 75% !important;
  left: auto !important;
  /* [1] */
}

.u-4\/4 {
  width: 100% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important;
}

.u-pull-4\/4 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */
}

.u-1\/5 {
  width: 20% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-1\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 20% !important;
}

.u-pull-1\/5 {
  position: relative !important;
  right: 20% !important;
  left: auto !important;
  /* [1] */
}

.u-2\/5 {
  width: 40% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-2\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 40% !important;
}

.u-pull-2\/5 {
  position: relative !important;
  right: 40% !important;
  left: auto !important;
  /* [1] */
}

.u-3\/5 {
  width: 60% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-3\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 60% !important;
}

.u-pull-3\/5 {
  position: relative !important;
  right: 60% !important;
  left: auto !important;
  /* [1] */
}

.u-4\/5 {
  width: 80% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-4\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 80% !important;
}

.u-pull-4\/5 {
  position: relative !important;
  right: 80% !important;
  left: auto !important;
  /* [1] */
}

.u-5\/5 {
  width: 100% !important;
}

/**
* 1. Reset any leftover or conflicting `left`/`right` values.
*/
.u-push-5\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important;
}

.u-pull-5\/5 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */
}

/**
* If we’re using Sass-MQ, automatically generate grid system(s) for each of our
* defined breakpoints, and give them a Responsive Suffix, e.g.:
*
* <div class="u-3/12@mobile">
*/
@media (min-width: 20em) {
  .u-1\/1\@mobile {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/1\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-1\/1\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/2\@mobile {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-1\/2\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/2\@mobile {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-2\/2\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/3\@mobile {
    width: 33.3333333333% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.3333333333% !important;
  }

  .u-pull-1\/3\@mobile {
    position: relative !important;
    right: 33.3333333333% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/3\@mobile {
    width: 66.6666666667% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.6666666667% !important;
  }

  .u-pull-2\/3\@mobile {
    position: relative !important;
    right: 66.6666666667% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/3\@mobile {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-3\/3\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/4\@mobile {
    width: 25% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important;
  }

  .u-pull-1\/4\@mobile {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/4\@mobile {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-2\/4\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/4\@mobile {
    width: 75% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important;
  }

  .u-pull-3\/4\@mobile {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/4\@mobile {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-4\/4\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/5\@mobile {
    width: 20% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important;
  }

  .u-pull-1\/5\@mobile {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/5\@mobile {
    width: 40% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important;
  }

  .u-pull-2\/5\@mobile {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/5\@mobile {
    width: 60% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important;
  }

  .u-pull-3\/5\@mobile {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/5\@mobile {
    width: 80% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important;
  }

  .u-pull-4\/5\@mobile {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */
  }

  .u-5\/5\@mobile {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-5\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-5\/5\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }
}
@media (min-width: 46.25em) {
  .u-1\/1\@tablet {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/1\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-1\/1\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/2\@tablet {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/2\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-1\/2\@tablet {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/2\@tablet {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/2\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-2\/2\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/3\@tablet {
    width: 33.3333333333% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.3333333333% !important;
  }

  .u-pull-1\/3\@tablet {
    position: relative !important;
    right: 33.3333333333% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/3\@tablet {
    width: 66.6666666667% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.6666666667% !important;
  }

  .u-pull-2\/3\@tablet {
    position: relative !important;
    right: 66.6666666667% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/3\@tablet {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-3\/3\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/4\@tablet {
    width: 25% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important;
  }

  .u-pull-1\/4\@tablet {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/4\@tablet {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-2\/4\@tablet {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/4\@tablet {
    width: 75% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important;
  }

  .u-pull-3\/4\@tablet {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/4\@tablet {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-4\/4\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/5\@tablet {
    width: 20% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important;
  }

  .u-pull-1\/5\@tablet {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/5\@tablet {
    width: 40% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important;
  }

  .u-pull-2\/5\@tablet {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/5\@tablet {
    width: 60% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important;
  }

  .u-pull-3\/5\@tablet {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/5\@tablet {
    width: 80% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important;
  }

  .u-pull-4\/5\@tablet {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */
  }

  .u-5\/5\@tablet {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-5\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-5\/5\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }
}
@media (min-width: 61.25em) {
  .u-1\/1\@desktop {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/1\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-1\/1\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/2\@desktop {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-1\/2\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/2\@desktop {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-2\/2\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/3\@desktop {
    width: 33.3333333333% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.3333333333% !important;
  }

  .u-pull-1\/3\@desktop {
    position: relative !important;
    right: 33.3333333333% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/3\@desktop {
    width: 66.6666666667% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.6666666667% !important;
  }

  .u-pull-2\/3\@desktop {
    position: relative !important;
    right: 66.6666666667% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/3\@desktop {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-3\/3\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/4\@desktop {
    width: 25% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important;
  }

  .u-pull-1\/4\@desktop {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/4\@desktop {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-2\/4\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/4\@desktop {
    width: 75% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important;
  }

  .u-pull-3\/4\@desktop {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/4\@desktop {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-4\/4\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/5\@desktop {
    width: 20% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important;
  }

  .u-pull-1\/5\@desktop {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/5\@desktop {
    width: 40% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important;
  }

  .u-pull-2\/5\@desktop {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/5\@desktop {
    width: 60% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important;
  }

  .u-pull-3\/5\@desktop {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/5\@desktop {
    width: 80% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important;
  }

  .u-pull-4\/5\@desktop {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */
  }

  .u-5\/5\@desktop {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-5\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-5\/5\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }
}
@media (min-width: 81.25em) {
  .u-1\/1\@wide {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/1\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-1\/1\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/2\@wide {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/2\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-1\/2\@wide {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/2\@wide {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/2\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-2\/2\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/3\@wide {
    width: 33.3333333333% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.3333333333% !important;
  }

  .u-pull-1\/3\@wide {
    position: relative !important;
    right: 33.3333333333% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/3\@wide {
    width: 66.6666666667% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.6666666667% !important;
  }

  .u-pull-2\/3\@wide {
    position: relative !important;
    right: 66.6666666667% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/3\@wide {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-3\/3\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/4\@wide {
    width: 25% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important;
  }

  .u-pull-1\/4\@wide {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/4\@wide {
    width: 50% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important;
  }

  .u-pull-2\/4\@wide {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/4\@wide {
    width: 75% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important;
  }

  .u-pull-3\/4\@wide {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/4\@wide {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-4\/4\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }

  .u-1\/5\@wide {
    width: 20% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-1\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important;
  }

  .u-pull-1\/5\@wide {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */
  }

  .u-2\/5\@wide {
    width: 40% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-2\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important;
  }

  .u-pull-2\/5\@wide {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */
  }

  .u-3\/5\@wide {
    width: 60% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-3\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important;
  }

  .u-pull-3\/5\@wide {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */
  }

  .u-4\/5\@wide {
    width: 80% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-4\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important;
  }

  .u-pull-4\/5\@wide {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */
  }

  .u-5\/5\@wide {
    width: 100% !important;
  }

  /**
  * 1. Reset any leftover or conflicting `left`/`right` values.
  */
  .u-push-5\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important;
  }

  .u-pull-5\/5\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */
  }
}


/* ==========================================================================
#SPACINGS
========================================================================== */
/**
* Utility classes to put specific spacing values onto elements. The below loop
* will generate us a suite of classes like:
*
*   .u-margin-top {}
*   .u-padding-left-large {}
*   .u-margin-right-small {}
*   .u-padding {}
*   .u-padding-right-none {}
*   .u-padding-horizontal {}
*   .u-padding-vertical-small {}
*/
/* stylelint-disable string-quotes */
.u-padding {
  padding: 24px !important;
}

.u-padding-tiny {
  padding: 6px !important;
}

.u-padding-small {
  padding: 12px !important;
}

.u-padding-large {
  padding: 48px !important;
}

.u-padding-huge {
  padding: 96px !important;
}

.u-padding-none {
  padding: 0 !important;
}

.u-padding-top {
  padding-top: 24px !important;
}

.u-padding-top-tiny {
  padding-top: 6px !important;
}

.u-padding-top-small {
  padding-top: 12px !important;
}

.u-padding-top-large {
  padding-top: 48px !important;
}

.u-padding-top-huge {
  padding-top: 96px !important;
}

.u-padding-top-none {
  padding-top: 0 !important;
}

.u-padding-right {
  padding-right: 24px !important;
}

.u-padding-right-tiny {
  padding-right: 6px !important;
}

.u-padding-right-small {
  padding-right: 12px !important;
}

.u-padding-right-large {
  padding-right: 48px !important;
}

.u-padding-right-huge {
  padding-right: 96px !important;
}

.u-padding-right-none {
  padding-right: 0 !important;
}

.u-padding-bottom {
  padding-bottom: 24px !important;
}

.u-padding-bottom-tiny {
  padding-bottom: 6px !important;
}

.u-padding-bottom-small {
  padding-bottom: 12px !important;
}

.u-padding-bottom-large {
  padding-bottom: 48px !important;
}

.u-padding-bottom-huge {
  padding-bottom: 96px !important;
}

.u-padding-bottom-none {
  padding-bottom: 0 !important;
}

.u-padding-left {
  padding-left: 24px !important;
}

.u-padding-left-tiny {
  padding-left: 6px !important;
}

.u-padding-left-small {
  padding-left: 12px !important;
}

.u-padding-left-large {
  padding-left: 48px !important;
}

.u-padding-left-huge {
  padding-left: 96px !important;
}

.u-padding-left-none {
  padding-left: 0 !important;
}

.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-margin {
  margin: 24px !important;
}

.u-margin-tiny {
  margin: 6px !important;
}

.u-margin-small {
  margin: 12px !important;
}

.u-margin-large {
  margin: 48px !important;
}

.u-margin-huge {
  margin: 96px !important;
}

.u-margin-none {
  margin: 0 !important;
}

.u-margin-top {
  margin-top: 24px !important;
}

.u-margin-top-tiny {
  margin-top: 6px !important;
}

.u-margin-top-small {
  margin-top: 12px !important;
}

.u-margin-top-large {
  margin-top: 48px !important;
}

.u-margin-top-huge {
  margin-top: 96px !important;
}

.u-margin-top-none {
  margin-top: 0 !important;
}

.u-margin-right {
  margin-right: 24px !important;
}

.u-margin-right-tiny {
  margin-right: 6px !important;
}

.u-margin-right-small {
  margin-right: 12px !important;
}

.u-margin-right-large {
  margin-right: 48px !important;
}

.u-margin-right-huge {
  margin-right: 96px !important;
}

.u-margin-right-none {
  margin-right: 0 !important;
}

.u-margin-bottom {
  margin-bottom: 24px !important;
}

.u-margin-bottom-tiny {
  margin-bottom: 6px !important;
}

.u-margin-bottom-small {
  margin-bottom: 12px !important;
}

.u-margin-bottom-large {
  margin-bottom: 48px !important;
}

.u-margin-bottom-huge {
  margin-bottom: 96px !important;
}

.u-margin-bottom-none {
  margin-bottom: 0 !important;
}

.u-margin-left {
  margin-left: 24px !important;
}

.u-margin-left-tiny {
  margin-left: 6px !important;
}

.u-margin-left-small {
  margin-left: 12px !important;
}

.u-margin-left-large {
  margin-left: 48px !important;
}

.u-margin-left-huge {
  margin-left: 96px !important;
}

.u-margin-left-none {
  margin-left: 0 !important;
}

.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* stylelint-enable string-quotes */
/* ==========================================================================
#PRINT
========================================================================== */
/**
* Very crude, reset-like styles taken from the HTML5 Boilerplate:
* https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
* https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
*/
@media print {
  /**
  * 1. Black prints faster: http://www.sanbeiji.com/archives/953
  */
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important;
    /* [1] */
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

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

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

  /**
  * Don't show links that are fragment identifiers, or use the `javascript:`
  * pseudo protocol.
  */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

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

  /**
  * Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
  */
  thead {
    display: table-header-group;
  }

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

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

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

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
#HIDE
========================================================================== */
/**
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
* Hide visually and from screen readers.
*/
.u-hidden {
  display: none !important;
}

.o-wrap {

  margin: 0 auto;
  padding: 0 32px;
  padding: 0 2rem;
}

.o-wrap.-one,
.o-wrapper.-one {
  max-width: 1200px;
}

.o-wrap.-two,
.o-wrapper.-two {
  max-width: 90%;
  padding: 0;
}

.-wrapper-one,
.o-wrapper {
  margin: 0 auto;
}


.c-content {
  margin-bottom: 80px;
}

.c-content:last-child {
  margin-bottom: 96px;
  margin-bottom: 6rem;
}

.-bg-one {
  background: #F0F0F0;
}

@media (max-width: 1300px) {
  .o-wrap.-two.-desktop {
    max-width: 100%;
  }
}

@media (max-width: 1300px) {
  .o-wrap.-device {
    max-width: 90%;
    padding: 0;
  }
}



/************************************************************************
HEADER
************************************************************************/

.c-header__logo {
  padding: 16px 0;
  padding: 1rem 0;
  display: inline-block;
}

.c-header__logo img {
  max-width: 140px;
  max-height: 62px;
}

.c-header__banner {
  position: relative;
  background-size: cover !important;
  background-position: center right !important;
  margin-top: 93px;
}


.c-header__banner.-page {
  height: 400px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: -1
}

.c-header__banner.-home,
.c-header__banner.-home .swiper-container,
.c-slide-bg,
.c-header__banner .swiper-slide{
  height: calc(100vh - 93px - 176px);
}

@media (max-width: 840px) {
  .c-header__banner.-home,
  .c-header__banner.-home .swiper-container,
  .c-slide-bg,
  .c-header__banner .swiper-slide{
    height: calc(100vh - 173px - 128px);
  }
}


.c-header__banner .swiper-container {
  overflow: visible !important;
  z-index: 3 !important;
}

.c-slide-bg {
  position: absolute;
  object-fit: cover;
  width: 100%;
}
.-headersss {
  position: absolute;
  width: 100%;
}
.c-slide-content {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.box {
  background-color: rgba(229,0,125,.8);
  width: 33%;
  max-width: 828px;
}
.box-wrap {
  padding: 64px 56px 0;
}
.c-slide-title {
  margin: 0;
  color: #FFF;
  margin-bottom: 1.1250rem;
  padding-bottom: 1.1250rem;
}
.c-slide-desc {
  font-size: 1.5rem;
  color: #FFF;
}

.c-btn-anim {
  margin-left: -2px;
  border: 2px solid #FFF;
  -webkit-transform: translate3d(0,0,0);
  display: inline-block;
  margin-bottom: 1.250rem;
  z-index: 1;
  position: relative;
}
.c-btn-anim a {
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding-top: 12px;
  padding-top: 0.750em;
  padding-bottom: 12px;
  padding-bottom: 0.750em;
  padding-right: 32px;
  padding-right: 2rem;
  padding-left: 2rem;
  display: block;

}

.c-btn-anim a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: -webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
  transition: -webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
  transition: transform .45s cubic-bezier(.4,0,.2,1) 75ms;
  transition: transform .45s cubic-bezier(.4,0,.2,1) 75ms,-webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
  content: "";
  z-index: -1;
}

.c-btn-anim a:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.c-btn-anim a:hover span {
  color: #000 !important;
}

.c-btn-anim span {
  transition: all 0.2s ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: .3s;
  -webkit-transition-timing-function: ease-in-out;
  font-weight: 300;
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
}

.c-btn-anim.-pink span{
  color: #FFF;
}


.c-btn-anim.-pink {
  border-color: #E5007D;
    background: #E5007D;
}
.c-btn-anim.-pink a {

}
.c-btn-anim.-pink a:before {
  background-color: #FFF;
}
.c-btn-anim.-pink a:hover span {
  color: #E5007D !important;
}

@media (max-width: 980px) {
  .c-btn-anim a {
    font-size: 14px;
  }
}
@media (max-width: 7400px) {
  .c-btn-anim a {
    font-size: 12px;
  }
}

.c-slide-border {
  position: absolute;
  width: 100%;
  bottom: -100px;
}

.c-slide-border .strip {
  background: #E5007D;
  width: 33%;
  height: 100px;
  max-width: 828px;
  z-index: 9;
}

.c-header__banner.-home h1 {
  display: none;
}

@media (max-width: 1440px) {
  .box,
  .c-slide-border .strip {
    width: 33%;
  }

}
@media (max-width: 1440px) {
  .c-slide-title {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 1280px) {
  .box-wrap {
    padding: 80px 48px 0;
  }
  .c-slide-border .strip {
    height: 72px;
  }
  .c-slide-border {
    bottom: -72px;
  }
  .c-slide-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .box,
  .c-slide-border .strip {
    width: 50%;
  }
  .c-slide-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 840px) {
  .box,
  .c-slide-border .strip {
    width: 100%;
  }
  .box-wrap {
    padding: 48px 32px 0;
  }
  .c-slide-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 720px) {
  .box-wrap {
    padding: 48px 24px 0;
  }
  .c-slide-desc {
    font-size: 1rem;
  }
  .c-slide-border .strip {
    height: 48px;
  }
  .c-slide-border {
    bottom: -48px;
  }
}

@media (max-width: 600px) {
  .swiper-container.header .o-wrap.-two {
    max-width: 100%;
  }
  .swiper-container.header .c-btn-anim a {
    font-size: 12px;
  }
  .box-wrap {
    padding: 24px 24px 0;
  }
  .c-slide-desc {
    font-size: 14px;
  }
  .c-slide-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
}



.c-title.-page,
h1.error-404 {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding-bottom: 6px;
  padding-bottom: 0.094em;
  /* padding-top: 20px; */
  /* padding-top: 0.313em; */
  /* font-family: "arimo",sans-serif; */
  line-height: 88px;
  line-height: 1.375em;
  font-weight: 300;
  color: #555555;
  background-color: rgba(255,255,255,.3);
  z-index: 3;
}

h1.error-404 {
  position: relative;
}

.c-title.-banner {
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: right;
  font-size: 88px;
  font-size: 5.000rem;
  line-height: 80px;
  line-height: 1.000em;
  color: #E5007D;
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 0.500em;
  float: right;
  z-index: 3;
}

.c-title.-banner:before {
  right: 0;
}

.c-parent-name {
  position: absolute;
  width: 100%;
  bottom: 94px;
  bottom: 5.875rem;
  /* bottom: 5.875rem; */
  opacity: 1 !important;
  transform: translatey(0) !important;
  /* top: 120px; */
  z-index: 4;}

  .c-title.-parent,
  .c-footer__title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    margin-bottom: 0.727em;
    /*  font-family: "arimo",sans-serif;*/
    color: #777777;
    font-size: 22px;
    font-size: 1.375em;
    letter-spacing: 0.37px;
    letter-spacing: 0.017em;
    font-weight: 300;
  }

  .c-title.-parent:after,
  .c-footer__title:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 99999px;
    background-color: #66C08D;
    right: 0;
    bottom: -16px;
    bottom: -1.000rem;
  }

  .o-wrap.-header {
    padding-right: 0;
    position: fixed;
    z-index: 5;
    background-color: #fff;
    width: 100%;
    top: 0;
  }

  .c-header__link {
    float: right;
    background: #66C08D;
    text-decoration: none;
  }

  .c-header__link h3 {
    padding: 26px 52px;
    padding: 1.156em 1.625em
    text-decoration: none;
    color: #fff;
    font-weight: 200;
    margin: 0;
  }

  .c-header__menu {
    float: right;
    border-radius: 360px;
    height: 57px;
    width: 57px;
    margin: 30px 0;
    margin-right: 40px;
    position: relative;
  }

  /************************************************************************
  WYSIWYG
  ************************************************************************/

  .c-content:first-child {
    padding-top: 118px;
    padding-top: 7.375em;
    position: relative !important;
    z-index: 2;
    background: #fff;
  }

  .c-content.-participate .c-content:first-child {
    background-color: transparent;
    padding-top: 0 !important;
  }

  .c-content.-editor ul,
  .c-list-event__desc {
    margin-left: 80px;
    margin-left: 5.000rem;
    list-style-type: none;
    margin-bottom: 96px;
    margin-bottom: 3.000rem;
    max-width: 800px;
    margin-top: 48px;
    margin-top: 2.000rem;
  }

  .c-content.-editor ul li,
  .c-list-event__desc li,
  .c-thermometer__name {
    position: relative;
    padding-left: 80px;
    padding-left: 5.000rem;
    margin-bottom: 16px;
    margin-bottom: 1.000rem;
    color: #777777
  }

  .c-content.-editor ul li:before,
  .c-list-event__desc li:before,
  .c-content__citation__info:before,
  .c-thermometer__name:before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: #60BF89;
    width: 46px;
    width: 2.875rem;
    left: 0;
    top: 12px;
    top: 0.750rem;
  }

  .c-thermometer__name:before {
    top: 18px;
  }

  .c-content blockquote {
    max-width: 800px;
    margin-left: 80px;
    margin-bottom: 0;
    position: relative;
    padding-left: 32px;
    padding-left: 1.600em;
    color: #777777;
    font-size: 20px;
    font-size: 1.250em;
    line-height: 32px;
    line-height: 1.600em;
    text-align: justify;
    margin-top: 64px;
    margin-top: 3.200em;
    margin-bottom: 64px;
    margin-bottom: 3.200em;
  }

  .c-content blockquote:before {
    position: absolute;
    height: 100%;
    width: 2px;
    background: #60BF89;
    content: "";
    left: 0;
  }

  /************************************************************************
  Homepage
  ************************************************************************/

  /********************************************************************
  Comming event
  ********************************************************************/


  .c-content.-coming-event,
  .c-content.-event {
    background: #F0F0F0;
    margin-top: 0;
    padding-top: 118px;
    padding-bottom: 118px;
    padding-top: 7.375rem;
    padding-bottom: 7.375rem;
    position: relative !important;
    z-index: 2;
  }

  .c-content.-coming-event.-cat {
    padding-bottom: 0;
  }




  .c-content.-event {
    margin-bottom: 0;
    margin-top: 93px;
  }

  .c-content.-coming-event h2:first-child {
    margin-top: 0;
  }
  /********************************************************************
  Mission
  ********************************************************************/

  /************************************************************************
  List event
  ************************************************************************/

  /************************************************************************
  List Title
  *********************************************************************--***/

  .c-content__title.-three:before,
  .c-content__title.-two:before {
    left: 50%;
    margin-left: -47px;
  }

  .c-content__title.-three:before,
  .c-content__title.-four:before  {
    background-color: #fff;
  }

  .c-content__title.-three,
  .c-content__title.-four {
    color: #fff;
    margin-top: 0;
  }

  .c-content__title.-three {
    text-align: center;
  }

  .c-content__title.-two {
    text-align: center;
  }

  .c-content__title.-version-two {
    font-size: 2rem;
    color: #5A5A5A;
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
  @media (max-width: 1300px) {
    .c-content__title.-version-two {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 840px) {
    .c-content__title.-version-two {
      font-size: 1.6rem;
    }
  }
  .c-content__title.-version-two:before {
    display: none;
  }

  .c-footer__title.-one {
    margin: 0;
    color: #777777;
    margin-bottom: 80px;
  }

  /************************************************************************
  Various
  ************************************************************************/

  .c-color.-one {
    color: #9B9B9B;
  }

  .o-wrapper.-two {
    max-width: 740px;
    text-align: center;
  }

  .c-content.-fnt-col.-one,
  .c-content.-fnt-col.-one p {
    color: #fff;
  }

  .c-content__background {
    min-height: 570px;
    background-size: cover !important;
  }

  .s-mgn-top {
    margin-top: 0;
  }

  .c-footer {
    padding-top: 144px;
    padding-top: 9.000rem;
  }

  .o-grid:after {
    content: "";
    display: table;
    clear: both;
  }

  .c-partners {
    list-style-type: none;
    margin-left: -16px;
    margin-left: -1.00rem;
    padding-left: 0;
  }

  .c-donations,
  .c-content__bloc {
    list-style-type: none;
  }



  .c-content__bloc.-video {
    margin-left: -24px;
  }

  .c-partners li {
    width: 123px;
    width: 7.688em;
    margin: 0 16px;
    margin-left: 0 1.000em;
    margin-bottom: 40px;
    margin-bottom: 2.500em;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }

  .c-no-mgn-lef {
    margin-left: 0 !important;
  }

  .c-footer.-logo {
    padding-top: 0;
    margin-top: -40px;
    margin-top: -2.500rem;
    text-align: right;
  }

  .c-footer__column {
    margin-bottom: 176px;
    margin-bottom: 11.000rem;
  }

  .copyright {
    font-size: 14px;
    font-size: 0.875em;
    color: #949494;
    text-align: right;
  }

  .copyright a {
    color: #949494;
  }

  .c-donations p,
  .c-content__bloc p {
    margin-bottom: 0;
  }

  .c-content__bloc__ul.-no-margin-top li {
    margin-top: 0;
  }

  .c-content.-amount {
    margin-bottom: 80px;
    margin-bottom: 5.000rem;
  }

  .c-content__h3-past-event {
    margin-bottom: 8px;
  }

  .c-content.-list-publications {
    margin-bottom: 80px;
    margin-bottom: 5.000rem;
  }

  .c-editor__font.-one {
    font-size: 22px;
    font-size: 1.375em;
    line-height: 40px;
    line-height: 1.818em;
    text-align: justify;
  }

  .c-content.-accordion {
    margin-bottom: 80px;
    margin-bottom: 5.000rem;

  }
  .c-content.-accordion.-single-event {
    margin-bottom: -38px !important;
    background: transparent;
  }

  .c-btn.-reverse {
    border: 2px solid #fff;
    color: #fff;
    font-size: 32px;
    font-size: 2.000em;
    letter-spacing: 0.58px;
    letter-spacing: 0.018em;
    line-height: 40px;
    line-height: 1.250em;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: .3s;
    -webkit-transition-timing-function: ease-in-out;
    -webkit-transform: translate3d(0,0,0);
  }

  .c-btn.-reverse:hover {
    color: #E5007D;
  }





  .s-no-mgn-top,
  .-event-rule  .c-content__bloc li:first-child h3 {
    margin-top: 0 !important;
  }

  .o-layout__item.-partners {
    border-left: 2px solid #60BF89;
  }
@media (max-width: 840px) {
  .o-layout__item.-partners {
    padding-bottom: 4rem;
  }
}

  .c-content.-hospital,
  .c-content.-coming-event {
    margin-bottom: 0;
  }

  .-event-rule h3 {
    margin-top: 0;
  }

  .-event-rule .c-content__bloc__li.-single-event {
    margin-bottom: 3.5rem;
  }

  /************************************************************************
  Bloc
  ************************************************************************/

  .c-content__bloc__ul {
    margin-left: 0;
    list-style-type: none;
  }


  .c-content__bloc__ul li {
    margin-bottom: 24px;
    margin-bottom: 1.500em;
    float: left;
    border: 2px solid #66C08D;
    -webkit-transform: translate3d(0,0,0);
  }

  .c-content__bloc__li.-single-event {
    margin-top: 24px;
    margin-top: 1.500em;
  }

  .c-content__bloc__ul li a {
    font-size: 18px;
    font-size: 1.125em;
    text-decoration: none;
    position: relative;
    padding-top: 34px;
    padding-top: 1.889em;
    padding-bottom: 34px;
    padding-bottom: 1.889em;
    padding-right: 32px;
    padding-right: 1.778em;
    display: block;

  }


  .-event-rule .c-content__bloc__li.-single-event {
    margin-top: 0;
  }
  @media (max-width:1300px) {
    .-event-rule .c-content__bloc__li.-single-event a {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }
  }

  .c-content__bloc__ul li span {
    color: #444444;
  }
  .c-content__bloc__li.-online a{
    padding-left: 88px;
    padding-left: 4.889em;
  }

  .c-content__bloc__li.-print a {
    padding-left: 78px;
    padding-left: 4.333em;
  }

  .c-content__bloc__li.-doc a {
    padding-left: 78px;
    padding-left: 4.333em;
  }

  @media (max-width:1300px) {
    .c-content__bloc__li.-doc a,
    .c-content__bloc__li.-print a,
    .c-content__bloc__li.-online a {

      padding-left: 2.75em;
      padding-right: 12px;
    }
  }

  @media (max-width:840px) {
    .c-content__bloc__li.-doc a,
    .c-content__bloc__li.-print a,
    .c-content__bloc__li.-online a {

      padding-left: 12px;
      padding-right: 12px;
    }
  }


  .c-content__bloc__ul li:nth-child(n+1) {
    margin-left: -2px;
  }

  .c-content__bloc__ul a:before {
    position: absolute;
    content: "";
    left: 32px;
    left: 1.778em;
  }

  .c-browser  {
    width: 36px;
    width: 2.250rem;
    height: 30px;
    height: 1.875rem;
    position: absolute;
    left: 32px;
    left: 2.000rem;
  }
  @media (max-width:1300px) {
    .c-browser  {
      width: 1.5rem;
      height: 1rem;
      top: 50%;
      margin-top: -.5rem;
    }
  }



  .c-content__bloc__ul li a:hover::after,
  .c-btn.-reverse:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .c-content__bloc__ul li a:after,
  .c-content__bloc__li.-online li a:after,
  .c-btn.-reverse:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #66C08D;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: -webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
    transition: -webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
    transition: transform .45s cubic-bezier(.4,0,.2,1) 75ms;
    transition: transform .45s cubic-bezier(.4,0,.2,1) 75ms,-webkit-transform .45s cubic-bezier(.4,0,.2,1) 75ms;
    content: "";
    z-index: -1;
  }

  .c-btn.-reverse:after {
    background-color: #fff;
  }


  .c-content__bloc__ul  li a.-left:hover::after,
  .c-btn.-reverse:hover:after {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
  }

  .c-content__bloc__ul  li a.-left::after,
  .c-btn.-reverse:after   {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
  }

  .c-blank,
  .c-doc {
    width: 25px;
    width: 1.563rem;
    height: 35px;
    height: 2.188rem;
    position: absolute;
    left: 32px;
    left: 2.000rem;
  }

  @media (max-width:1300px) {
    .c-blank,
    .c-doc,
    .c-browser {
      left: 12px;
      top: 50%;
      margin-top: -.5rem;
    }
    .c-blank,
    .c-doc{
      width: 1rem;
      height: 1.5rem;
      margin-top: -.75rem;
    }
  }

  @media (max-width:840px) {
    .c-blank,
    .c-doc,
    .c-browser {
      display: none;
    }
  }

  .c-content__bloc__ul li span {
    transition: all 0.2s ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: .3s;
    -webkit-transition-timing-function: ease-in-out;
    font-weight: 300;
  }

  a svg .c-blank,
  a svg .c-browser,
  a svg .c-doc  {
    transition: .65s;
    transition-timing-function: ease-in-out;
    -webkit-transition: .65s;
    -webkit-transition-timing-function: ease-in-out;
  }

  .c-content__bloc__ul li a:hover svg .c-blank,
  .c-content__bloc__ul li a:hover svg .c-browser,
  .c-content__bloc__ul li a:hover svg .c-doc {
    fill: #fff;
  }

  .c-content__bloc__ul li a:hover span {
    color: #fff !important;
  }

  .c-content__bloc__li.-participant {
    min-width: 300px;
  }

  .c-content__bloc__li.-amount {
    min-width: 340px;
  }

  .c-content__bloc__li__number {
    font-size: 36px;
    font-size: 2.250em;
  }

  .c-content__bloc__ul.-past-events li{
    text-align: center;
    padding: 23px 0;
    padding: 1.438em 0;
    margin-top: 32px;
    margin-top: 2.000em;
    margin-bottom: 0;
  }

  .c-content__bloc.-past-events {
    margin-bottom: 176px;
    margin-bottom: 11.000rem;
  }

  .c-content__bloc.-team {
    margin-bottom: 80px;
    margin-bottom: 5.000rem;
    margin-left: -24px;
  }

  .c-content__bloc__li.-team {
    margin-bottom: 2rem;
  }

  .c-content__bloc__li.-team h3{
    margin-bottom: 8px;
    margin-bottom: 0.250em;
  }

  .c-content__bloc__li.-team h4{
    margin-bottom: 4px;
  }

  .c-content__bloc__ul.-list-publications li.-icone{
    left: 0;
    padding-right: 32px;
    padding-right: 2.000em;
    border-right: 2px;
    position: relative;
  }

  .c-content__bloc__ul.-list-publications li.-icone svg {
    left: 4px;
  }

  .c-content__bloc__ul.-list-publications li {
    border: 0 !important;
    border-bottom: 2px solid #66C08D !important;
    padding: 22px 0;
    padding: 1.375em 0;
  }

  li.c-content__bloc__li.-list-publications.-description:last-child,
  .c-content__bloc__ul li.-list-files:last-child {
    border-bottom: 0 !important;
  }

  .c-content__bloc__ul.-list-publications li,
  .c-content__bloc__ul.-list-files li {
    border: 0 !important;
    border-bottom: 2px solid #66C08D !important;
    padding: 0 !important;
    position: relative;
  }

  .c-content__bloc__ul li:nth-child(n+1) {
    margin-left: -2px;
  }

  .c-content__bloc__ul.-list-publications li,
  .c-content__bloc__ul.-list-files li {
    margin: 0;
    float: left;
    border: 2px solid #66C08D;
    padding: 32px 0;
    padding: 2.000em;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }

  .c-content__bloc__ul.-list-publications li .c-content__bloc__li.-pub-icon,
  .c-content__bloc__ul.-list-files li .c-content__bloc__li.-pub-icon {
    font-size: 18px;
    font-size: 1.125em;
    text-decoration: none;
    position: absolute;
    padding-right: 56px;
    padding-right: 3.111em;
    top: 0;
    left: 0;
    height: 100%;
    border-right: 2px solid #66C08D;
  }

  .c-content__bloc__ul.-list-publications span, .c-content__bloc__ul.-list-files span {
    position: relative;
    left: 88px;
    left: 5.5000rem;
    word-wrap: break-word;
    padding-right: 5.500rem;
  }

  .c-content__bloc__li.-list-publications a:after,
  .c-content__bloc__li.-list-files a:after {
    display: none !important;
  }

  .c-content__bloc__li.-list-publications a:hover span,
  .c-content__bloc__li.-list-files a:hover span {
    color: #66C08D !important;
  }

  .c-content__bloc__ul.-list-publications li a,
  .c-content__bloc__ul.-list-files li a {
    font-size: 18px;
    font-size: 1.125em;
    text-decoration: none;
    position: relative;
    padding-top: 23px;
    padding-top: 1.278em;
    padding-bottom: 23px;
    padding-bottom: 1.278em;
    display: block;
  }

  li.c-content__bloc__li.-single-event.-partners:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .c-content__bloc__ul.-single-event {
    margin-bottom: 0;
  }

  .c-content.-team li:nth-child(2) h3,
  .c-content.-team li:nth-child(1) h3 {
    margin-top: 0 !important;
  }

  .svg-pdf {
    width: 25px;
    width: 1.563rem;
    height: 35px;
    height: 2.188rem;
    position: absolute;
    left: 32px;
    left: 2.000rem;
    left: 8px;
    left: 0.500rem;
    top: 18px;
    top: 1.125rem;
  }

  ul.c-content__bloc__ul.-list-publications,
  .c-content.-news .-images,
  ul.c-content__bloc__ul.-list-files {
    margin-bottom: 32px;
    margin-bottom: 2.000em;
  }

  .c-content__bloc.-list-publications,
  .c-content__bloc__ul.-list-files,
  .c-content__accordion,
  .c-content.-news .-images {
    max-width: 800px;
    margin-bottom: 0;
    margin-left: 80px;
    margin-left: 5.000rem;
  }

  ul.c-content__bloc__ul.-past-events {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  /************************************************************************
  Hamburger
  ************************************************************************/

  button {
    text-shadow: none;
    border: 0;
  }

  .hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    /* padding: 15px; */
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    position: relative;
    width: 130px;
    height: 57px;
    float: right;
    margin-right: 40px;
    height: 93px;
  }

  .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: absolute;

    width: 57px !important;
    height: 57px !important;
    background: #EAEAEA !important;
    border-radius: 360px !important;
    top: 16px;
    left: 0;
  }

  button:focus {
    outline: 0;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    position: absolute;
    width: 24px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #555555;
    /* left: 8px; */
    /* top: 18px !important; */
    margin-left: 16px;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    margin-left: 0;
    margin-top: 6px;
  }
  .hamburger-inner::after {
    bottom: -10px;
    top: -6px !important;
    margin-left: 0;
  }

  span.hamburger-label {
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    margin-top: -20px;
    font-size: 22px;
  }


  /*
  * Squeeze
  */

  .hamburger--squeeze .hamburger-inner {
    transition: top 0.075s ease, bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease,margin-top 0.075s 0.12s ease, opacity 0.075s ease;
  }
  .hamburger--squeeze .hamburger-inner::after {
    transition: top 0.075s 0.12s  ease, bottom 1s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    margin-top: 0;
    opacity: 0;
    transition: top 0.075s ease,margin-top 0.075s ease, opacity 0.075s 0.12s ease;
  }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    top: 0 !important;
    transform: rotate(-90deg);
    transition: top 0.075s ease,bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  /************************************************************************
  Main menu
  ************************************************************************/

  .c-main {
    overflow-x: hidden;
  }

  .c-main-menu {
    margin-bottom: 72px;
    margin-bottom: 4.000rem;
  }

  .c-main-menu,
  .c-sub-menu {
    width: 100%;
    list-style-type: none;
    margin-left: 0;
  }

  .c-main-menu li {
    float: left;
    width: 16.6666666667%;
  }

  .c-main-menu li .c-sub-menu li {
    width: 100%;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;

  }

  .c-main-menu li .c-sub-menu li:last-child {
    margin-bottom: 0;
  }

  .c-main-menu li .c-sub-menu li a {
    text-decoration: none;
    color: #444444;
    font-size: 14px;
  }
  @media (max-width: 1280px) {
    .c-main-menu li .c-sub-menu li a {
      font-size: 16px;
      }}
      .c-main-menu__parent,
      .no-link {
        text-decoration: none;
        color: #66C08D;
        pointer-events: none !important;
        padding-bottom: 12px;
      }

      .c-nav {
        position: fixed;
        width: 100%;
        background: #fff;
        z-index: 4;
        top: 93px;
        padding-top: 72px;
        padding-top: 4.500rem;
        padding-bottom: 80px;
        padding-bottom: 5.000rem;
      }

      /************************************************************************
      Thermometer
      ************************************************************************/

      .thermometer-inner {
        background: #3f83f7;
        height: 20px;
        height: 1.250rem;
        position: relative;
      }

      .thermometer-outer-h {
        position: relative;
      }

      /* default demo thermometer styles */
      .thermometer-outer {
        background: #EAEAEA;
        border-radius: 0;
      }
      .thermometer-outer-h {
        height: 40px;
        height: 2.500rem;
        width: 100%;
      }
      .thermometer-outer-v {
        height: 200px;
        width: 20px;
        width: 1.250rem;
      }
      .thermometer-inner {
        background: #66C08D;
      }
      .thermometer-inner-h {
        height: 40px;
        height: 2.500rem;
        visibility: none;
      }
      .thermometer-inner-v {
        width: 20px;
        width: 1.250
      }

      .thermometer-outer-h:before {
        position: absolute;
        right: 0;
        top: -40px;
        top: -2.500rem;
        border-right: 2px solid #66C08D;
        height: 40px;
        height: 2.500rem;
        padding-right: 12px;
        padding-right: 0.750em;
      }

      .thermometer-outer-h:after {
        position: absolute;
        right: 0;
        border-right: 2px solid #EAEAEA;
        height: 40px;
        height: 2.500rem;
        padding-right: 12px;
        padding-top: 15px;
      }

      .thermometer-demo {
        margin-top: 112px;
        margin-top: 7.000rem;
      }

      .thermometer-demo.-single-event {
        margin-top: 0;
        padding-bottom: 1rem;
        padding-top: 40px;
        overflow-x: hidden;
      }

      @media (max-width: 1300px) {
        .thermometer-outer-h,
        .thermometer-inner-h {
          height: 1.500rem;
        }
        .thermometer-demo.-single-event {
          padding-bottom: 24px;
          padding-top: 8px;
        }
        .thermometer-demo.-single-event h4{
          font-size: 1.3rem;
        }
      }

      .c-content.-thermometer h3{
        margin-bottom: 16px;
      }

      /************************************************************************
      EVENTS INDEX
      ************************************************************************/

      .-events.-all .c-list-event__itm{
        margin-bottom: 8rem;
      }

      .c-content.-events.-all {
        background: #FFF;
      }

      .c-content.-events.-all .c-details {
        border: 2px solid #F0F0F0;
      }

      /************************************************************************
      Carroussel
      ************************************************************************/
      /************************************************************************
      Carroussel
      ************************************************************************/

      .swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}

      ul.c-content__bloc.-past-events.swiper-wrapper {
        margin-left: 2px;
      }

      .swiper-slide {
        margin-top: 0 !important;
      }

      .swiper-navigation,
      .c-pagination {
        position: relative;
        width: 70px;
        display: block;
        height: 0px;
        text-align: right;
        margin-bottom: 80px;
        float: right;
      }

      .c-content__bloc__li.-photo {
        border: 0;
        padding: 35px 0 !important;
        padding-left: 96px !important;
        text-align: left !important;
      }
      .c-content__bloc__li.-photo a{
        display: block;
        margin: 0;
        padding: 0;
        padding-bottom: 8px;
      }

      .c-content__bloc__ul li.-photo a:after {
        display: none;
      }


      .swiper-button-next, .swiper-container-rtl .swiper-button-prev,
      .c-pagination__link.-next {
        background: url(/assets/ftp-images/icone/arrow-caroussel.svg) 31PX 0 !important;
        right: 10px;
        left: auto;
      }

      .swiper-button-next.swiper-button-disabled,
      .c-pagination__link.-next.-disabled {
        background: url(/assets/ftp-images/icone/arrow-caroussel.svg) 10PX 0 !important;
        opacity: 1 !important;
      }

      .swiper-button-prev, .swiper-container-rtl .swiper-button-next,
      .c-pagination__link.-prev {
        background: url(/assets/ftp-images/icone/arrow-caroussel.svg) 0 0 !important;
        left: 10px;
        right: auto;
      }

      .swiper-button-prev.swiper-button-disabled,
      .c-pagination__link.-prev.-disabled {
        background: url(/assets/ftp-images/icone/arrow-caroussel.svg) 21PX 0 !important;
        opacity: 1 !important;
      }





      .swiper-button-next, .swiper-button-prev,
      .c-pagination__link.-prev,
      .c-pagination__link.-next
      {
        position: absolute;
        top: 50%;
        width: 9px !important;
        height: 16px !important;
        margin-top: -22px;
        z-index: 2 !important;
        cursor: pointer;
        -moz-background-size: cover !important;
        -webkit-background-size: cover !important;
        background-size: cover !important;
        background-position: center;
        background-repeat: no-repeat;
      }


      /************************************************************************
      Voluunter / team
      ************************************************************************/

      .o-layout.-citation {
        max-width: 1015px;
        margin-left: -32px;
        margin-left: -2.000rem;
      }

      .o-layout.-citation .o-layout__item {
        padding-left: 32px;
        padding-left: 2.000rem;
      }

      .c-content__citation-img {
        border-radius: 100%;
      }

      .o-layout__item.-citation.u-3\/4 {
        margin-top: 40px;
        margin-top: 2.500rem;
        padding-left: 72px;
        padding-left: 4.500rem;
      }

      .c-content__citation__info {
        padding-left: 56px;
        padding-left: 4.500rem;
        position: relative;
      }

      .swiper-navigation.-citation {
        margin-top: -64px;
        margin-top: -4.000rem;
      }

      .c-content.-citation {
        margin-bottom: 96px;
        margin-bottom: 6.000rem;
      }

      /************************************************************************
      Accordion
      ************************************************************************/

      .c-content__accordion__content {
        display: none;
      }
      .c-content__accordion__title {
        border-bottom: 2px solid #60BF89;
        display: block;
        padding-bottom: 16px;
        padding-bottom: 0.727em;
        position: relative;
        padding-left: 60px;
        padding-left: 2.727em;
      }

      .c-content__accordion__title:hover {
        cursor: pointer;
      }

      .c-accordion__icon {
        background-color: transparent;
        width: 50px;
        width: 3.125rem;
        height: 50px;
        height: 3.125rem;
        border: 0;
        font-size: 1.5em;
        position: relative;
        border-radius: 8px;
        position: absolute;
        left: -12px;
        left: -0.750rem;
        top: -6px;
        top: -0.375rem;
        padding: 0;
      }


      .c-accordion__icon {
        transition: all .75s ease-in-out;
      }
      .c-accordion__icon span {
        content: "";
        position: absolute;
        transition: .3s;
        background: #6ABC8D;
        border-radius: 10px;
      }

      .c-accordion__icon span:first-of-type {
        top: 25%;
        bottom: 25%;
        width: 2px;
        left: 50%;
        margin-left: -1px;
      }
      .c-accordion__icon span:last-of-type {
        left: 25%;
        right: 25%;
        height: 2px;
        top: 50%;
        margin-top: -1px;
      }

      .c-content__accordion__title.-accordion-active .c-accordion__icon span:first-of-type,
      .-menu-active .c-main-menu__parent button span:first-of-type  {
        top: 50%;
        bottom: 50%;
      }

      /************************************************************************
      News list
      ************************************************************************/

      .c-news-list__date {
        color: #66C08D;
        position: relative;
        padding-left: 88px;
        padding-left: 5.500em;
        margin-bottom: 16px;
        margin-bottom: 1.000em;
        font-weight: 400;
      }

      .c-news-list__date:before {
        position: absolute;
        content: "";
        height: 2px;
        width: 74px;
        width: 4.625rem;
        background-color: #66C08D;
        border-radius: 10px;
        left: 0;
        margin-top: 12px;
        margin-top: 0.750rem;
      }

      li.c-content__bloc__li.-single-event.-partners {
        border: 0;
        padding: 0px;
        margin-left: 0;
        display: block;
        width: 100%;
      }

      p.c-news-list__title {
        color: #949494;
        text-decoration: none;
        font-weight: 400;
      }

      .c-content.-news {
        margin-bottom: 80px;
        margin-bottom: 5.000rem;
      }

      .c-news-list__title.-current {
        color: #444444;
      }

      .c-news-list__link {
        text-decoration: none;
      }

      .c-content.-news h2,
      .c-content.-news h1{
        margin-top: -12px;
        margin-top: -0.750rem;
      }

      .c-news-list__ul {
        list-style-type: none;
        margin-left: 0;
      }

      .c-news-list__li {
        margin-bottom: 40px;
        margin-bottom: 2.500rem;
      }

      .o-layout.-news-list {
        margin-left: -96px;
        margin-left: -6.000rem;
      }

      .o-layout.-news-list .o-layout__item {
        padding-left: 64px;
        padding-left: 4.000rem;
      }

      .o-layout.-news-list .o-layout__item:first-child {

        padding-left: 96px;
        padding-left: 6.000rem;
        padding-right: 32px;
        padding-right: 2.000rem;
      }



      .c-content__background.-single-event {
        min-height: 0;
        text-align: center;
      }

      .c-contact-us__title {
        color: #444444;
        padding: 1.5rem 0;
        margin-bottom: 0;
      }

      .c-contact-us_wrap .o-layout__item {
        padding-bottom: 88px;
        padding-top: 24px;
      }
      .c-contact-us_wrap {
        padding: 0 80px;
      }

      .c-contact-us__title {
        padding: 1.5rem 80px;
      }

      .c-contact-us__padding {

        margin-bottom: 64px;
      }

      .c-facebook {
        width: 24px;
        height: 24px;
      }
      .c-instagram {
        width: 25px;
        height: 24px;
      }

      .c-contact-us__icon,
      .c-menu__icon {
        background-color: #fff;
        width: 50px;
        width: 3.125rem;
        height: 50px;
        height: 3.125rem;
        border: 0;
        font-size: 1.5em;
        position: relative;
        border-radius: 8px;
        position: absolute;
        left: -12px;
        left: -65px;
        top: -6px;
        top: -0.375rem;
        padding: 0;
        border-radius: 100%;
        top: 50%;
        margin-top: -24px;
      }

      .c-contact-us__title button {
        left: 14px;
      }

      .c-menu__icon {
        left: 15PX;
      }




      .c-contact-us__icon,
      .c-menu__icon {
        transition: all .75s ease-in-out;
      }
      .c-contact-us__icon span,
      .c-menu__icon span{
        content: "";
        position: absolute;
        transition: .3s;
        background: #6ABC8D;
        border-radius: 10px;
      }


      .c-contact-us__icon span:first-of-type,
      .c-menu__icon span:first-of-type{
        top: 25%;
        bottom: 25%;
        width: 2px;
        left: 50%;
        margin-left: -1px;
      }
      .c-contact-us__icon span:last-of-type,
      .c-menu__icon span:last-of-type {
        left: 25%;
        right: 25%;
        height: 2px;
        top: 50%;
        margin-top: -1px;
      }

      .c-contact-us__icon.-active span:first-of-type {
        top: 50%;
        bottom: 50%;
      }



      .c-contact-us__title {
        position: relative;
      }

      ::selection {
        background: #F0F0F0; /* WebKit/Blink Browsers */
      }
      ::-moz-selection {
        background: #F0F0F0; /* Gecko Browsers */
      }

      .c-photos {
        width: 37px;
        width: 2.313rem;
        height: 27px;
        height: 1.688rem;
        vertical-align: middle;
        margin-bottom: 24px;
        margin-bottom: 1.5rem
        margin-left: 8px;
        margin-left: 0.500rem;
        position: relative;
      }

      .c-images__icon {
        display: block;
        border-bottom: 2px solid #66C08D !important;
        margin-bottom: 24px;
        margin-bottom: 1.5rem
      }


      .c-content.-news .-images {
        margin-top: 96px;
        margin-top: 6.000rem;
      }

      .c-images__ul {
        list-style-type: none;
        margin-left: 0;
        padding-bottom: 32px;
        padding-bottom: margin-bottom: 2.000rem
      }

      .-no-mb {
        margin-bottom: 0;
      }

      .swiper-container.events .swiper-navigation {
        margin-bottom: 0;
        margin-top: 208px;
        margin-top: 13.000rem;
      }

      p.copyright {
        margin-bottom: 48px;
        margin-bottom: 3.000rem;
      }

      .c-contact-us__title:hover,
      .c-contact-us__icon:hover,
      .c-content__accordion__title:hover {
        color: #66C08D;
        cursor: pointer;
      }

      .c-contact-us__title {
        -webkit-transition: background-color .25ms linear, color .25ms linear;
        -moz-transition: background-color .25ms linear, color .25ms linear;
        -o-transition: background-color .25ms linear, color .25ms linear;
        -ms-transition: background-color .25ms linear, color .25ms linear;
        transition: background-color .25ms linear, color .25ms linear;
      }

      svg.c-facebook:hover,
      svg.c-instagram:hover {
        fill: #e5007d;
      }



      @keyframes bounceInDownMenu {
        from, 60%, 75%, 90%, to {
          -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
          animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        }

        0% {
          opacity: 1;
          -webkit-transform: translate3d(0, -762px, 0);
          transform: translate3d(0, -762px, 0);
        }

        60% {
          opacity: 1;
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }

        75% {
          -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
        }

        90% {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }

        to {
          -webkit-transform: none;
          transform: none;
        }
      }


      @keyframes bounceInDownFondation {
        from, 60%, 75%, 90%, to {
          -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
          animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        }

        0% {
          opacity: 0;
          -webkit-transform: translate3d(0, -60px, 0);
          transform: translate3d(0, -60px, 0);
        }

        60% {
          opacity: 1;
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }

        75% {
          -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
        }

        90% {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }

        to {
          -webkit-transform: none;
          transform: none;
        }
      }


      @-webkit-keyframes bounceOutUpMenu {
        20% {
          -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
        }

        40%, 45% {
          opacity: 1;
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }

        to {
          opacity: 0;
          -webkit-transform: translate3d(0, -600px, 0);
          transform: translate3d(0, -600px, 0);
        }
      }

      .bounceInDownFondation {
        -webkit-animation-name: bounceInDownFondation;
        animation-name: bounceInDownFondation;
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);

        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
      }

      .bounceInDownMenu {
        -webkit-animation-name: bounceInDownMenu;
        animation-name: bounceInDownMenu;
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        overflow-y: auto;
        max-height: calc(100vh - 64px);
        transition-property: z-index;
        transition-duration: 0s;
        z-index: 4;
        transition-delay: 0s;
      }

      .bounceOutUpMenu {
        -webkit-animation-name: bounceOutUpMenu;
        animation-name: bounceOutUpMenu;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        transition-property: z-index;
        transition-delay: 750ms;
        transition-duration: 0s;
        z-index: -1;
      }

      .-hide {
        display: none;
      }

      .c-main-menu li .c-sub-menu li a {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px transparent;
        position: relative;
        overflow: hidden;
      }

      .c-main-menu li .c-sub-menu li a {
        margin: 0 .4em;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-bottom: 4px;
        padding-bottom: 0.2500em;
        font-weight: 400;
      }


      .c-main-menu li .c-sub-menu li a:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: -4px;
        right: 100%;
        bottom: 0;
        background: #66C08D;
        height: 2px;
        -webkit-transition-property: right;
        transition-property: right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
      }

      .c-main-menu li .c-sub-menu li.-active a:before,.c-main-menu li .c-sub-menu li a:hover:before, .c-main-menu li .c-sub-menu li a:focus:before, .c-main-menu li .c-sub-menu li a:active:before {
        right: 0;
      }

      .-coming-event .c-list-event__info.o-wrap {
        box-shadow: 0 1px 0px rgba(255,255,255,1);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
      }
      .-coming-event .c-list-event__info.o-wrap:hover {
        box-shadow: 0 3px 6px rgba(0,0,0,0.08), 0 3px 6px rgba(0,0,0,0.16);
      }

      .slideup, .slidedown {
        max-height: 0;
        overflow-y: hidden;
        -webkit-transition: max-height 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -moz-transition: max-height 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: max-height 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: max-height 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
      }
      .slidedown {
        max-height: 547px ;
      }


      .c-mask {

        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: transparent;
        transition-property: background, z-index;
        transition-duration: 600ms, 4s;
        transition-delay: 0s, 3s;
        transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
        z-index: -1;
      }

      .no-svg .c-mask {
        display: none !important;
        position: static;
      }


      .c-mask.menu-active {
        -webkit-transition: background 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
        transition:         background 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.5);
        z-index: 3;
      }

      .arrow-right {
        width: 38px;
        height: 13px;
      }

      .arrow-right.-link {
        width: 47px;
        height: 17px;
      }

      .c-content.-coming-event.-cat ul.c-list-event.swiper-wrapper {
        -webkit-box-sizing: inherit !important;
        -moz-box-sizing: inherit !important;
        box-sizing: inherit !important;
      }

      .arrow-right {
        fill: #66C08D;
      }

      .arrow-right:hover,
      .c-content.-mission .c-link:hover .arrow-right,
      .c-list-event__link a:hover .arrow-right, {
        fill: #444;
      }

      .c-content.-hospital * {
        color: #fff;
      }

      .c-content.-citation .swiper-slide {
        letter-spacing: 0;
      }

      li.c-content__accordion__content {
        min-height: 0;
        max-height: 0;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        visibility: hidden;
      }

      .active li {
        min-height: 20px;
        visibility: visible
      }

      .wrapper:after {
        content:"";
        display:table;
        clear:both;
      }

      .ripplelink{
        display:block;
        float:left;
        text-decoration:none;
        position:relative;
        overflow:hidden;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        z-index:0;
      }

      .ink {
        display: block;
        position: absolute;
        background:#F0F0F0;
        border-radius: 100%;
        -webkit-transform:scale(0);
        -moz-transform:scale(0);
        -o-transform:scale(0);
        transform:scale(0);
      }

      .animate {
        -webkit-animation:ripple 0.65s linear;
        -moz-animation:ripple 0.65s linear;
        -ms-animation:ripple 0.65s linear;
        -o-animation:ripple 0.65s linear;
        animation:ripple 0.65s linear;
        animation-delay: .50ms;
      }

      @-webkit-keyframes ripple {
        100% {opacity: 0; -webkit-transform: scale(2.5);}
      }
      @-moz-keyframes ripple {
        100% {opacity: 0; -moz-transform: scale(2.5);}
      }
      @-o-keyframes ripple {
        100% {opacity: 0; -o-transform: scale(2.5);}
      }
      @keyframes ripple {
        100% {opacity: 0; transform: scale(2.5);}
      }



      @-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;
      }

      .headroom--pinned {
        display: block;
      }



      .c-list-event__info a h3:hover {
        color: #444;
      }

      .c-content.-amount h3 {
        margin-top: 0;
      }

      .c-content__accordion:last-child h4 {
        border-bottom: 0;
      }

      .c-pinned {
        border-bottom: 1px solid #e8e8e8;
      }

      body, html {
        height:100%!important;
      }

      .c-header__banner.-home {
        background-size: cover !important;
      }

      p:empty {
        display: none;
      }

      .c-list-event.swiper-wrapper li:nth-child(3n+3) {
        margin-bottom: 0;
      }

      .c-content__citation__info {
        font-weight: 400;
      }

      .c-content__bloc__li.-list-publications li:hover span {
        color: red !important;
      }

      .c-pagination {
        margin-top: 112px;
        margin-top: 7rem;
        text-align: right;
        margin-bottom: 0;
      }

      .c-content.-accordion.-single-event,
      .c-content.-participate  {
        margin-bottom: 0;
      }

      .c-content.-event-rule {
        margin-top: 80px;
        margin-top: 5rem;
        margin-bottom: 0;
      }


      #c-loading-page__wrap {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 160px;
        -webkit-animation: loader 1.5s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
        animation: loader 1.5s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
        width: 160px;
      }

      @-webkit-keyframes loader {
        0% {
          -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
        }
        50% {
          -webkit-transform: translateY(24px);
          transform: translateY(24px);
        }
        100% {
          -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
        }
      }

      @keyframes loader {
        0% {
          -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
        }
        50% {
          -webkit-transform: translateY(24px);
          transform: translateY(24px);
        }
        100% {
          -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
        }
      }

      #c-loading-page {
        position: fixed;
        width: 100%;
        width: 100vw;
        height: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 23424;
        top: 0;
        left: 0;
      }

      .c-loading-page__img {
        width: 160px;
      }

      .s-team {
        font-size: 26px;
      }


      div#slide-4 {
        height: 400px;
        position: absolute;
        margin-top: 0;
        background: #fff;
        z-index: 2;
        opacity:0;
        width: 100%;
      }

      .c-content:first-child .o-wrapper.-one > *:first-child {
        margin-top: 0;
      }

      .ss32234 {
        position: relative;
        height: 400px;
        width: 100%;
      }


      @-webkit-keyframes pulse-inner {
        from {
          bottom: 28px;
          left: 0;
        }

        50% {
          bottom: 33px;
          left: 4px;
        }

        to {
          bottom: 28px;
          left: 0;
        }
      }


      @keyframes pulse {
        from {
          height: 57px;
          width: 57px;
          margin-top: 0;
          left: 0;
        }

        50% {
          height: 66px;
          width: 66px;
          margin-top: -4px;
          left: -4px;
        }

        to {
          height: 57px;
          width: 57px;
          margin-top: 0;
          left: 0;
        }
      }

      .hamburger:hover .hamburger-box {
        -webkit-animation-name: pulse;
        animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: infinite;

      }

      .hamburger:hover .hamburger-box .hamburger-inner{
        -webkit-animation-name: pulseinner;
        animation-name: pulse-inner;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-iteration-count: infinite;

      }



      .hamburger-box:hover {

        height: 66px;
        width: 66px;
      }
      .c-partners__img {
        height: auto;
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
        opacity: 0.7;
      }

      .c-mobile {
        display: none;
      }

      .c-desktop {
        display: block;
      }


      li.c-main-menu__li.c-parent.-level-1 .c-main-menu__parent {
        pointer-events: none;
      }

      .c-sub-menu {
        display: block;
      }


      .ss32234 {
        margin-top: 93px;
      }


      .c-menu__icon {
        display: none;
      }


      .c-title.-banner {
        padding: 0 !important;
        margin: 0 64px 0 0;
        margin: 0 4rem 0 ;
      }

      @media (min-width: 1281px) {

        .c-sub-menu {
          display: block !important;
        }
      }

      @media (max-width: 1280px) {

        .c-main-menu {
          margin-bottom: 0;
        }

        .c-contact-us_wrap {
          padding: 0 24px;
        }

        .c-menu__icon {
          display: block;
        }

        li.c-main-menu__li.c-parent.-level-1 {
          pointer-events: auto;
        }

        li.c-main-menu__li.c-parent.-level-1:hover .c-main-menu__parent {
          color: #5FC08D;
        }

        li.c-main-menu__li.c-parent.-level-1:hover {
          cursor: pointer;
        }

        .c-sub-menu {
          display: none;
        }

        .c-sub-menu li:first-child {
          padding-top: 24px;
        }

        .o-wrap {
          margin: 0 auto;
          padding-left: 2rem;
          padding-right: 2rem;
        }

        .c-title.-banner {
          margin: 0 32px 0 0;
          margin: 0 2rem 0 !important;
        }

        .c-main-menu__parent{
          width: 100%;
          padding: 1.5rem 0;
          background: #F0F0F0;
          margin-bottom: 0;
        }

        .c-main-menu li{
          width: 100%;
          margin-bottom: 32px;
        }

        .c-main-menu__parent {
          color: #444444;
        }

        .c-mobile-menu {
          position: relative;
          padding-left: 80px;
          padding-left: 5rem;
        }

        .c-main-menu li .c-sub-menu li:last-child {
          margin-bottom: 0;
          margin-bottom: 24px;
        }

        .c-content blockquote,
        .c-content.-editor ul, .c-list-event__desc,
        .c-content__bloc.-list-publications, .c-content__bloc__ul.-list-files, .c-content__accordion, .c-content.-news .-images {
          margin-left: 2.500rem;
        }
      }

      @media (max-width: 1024px) {
        .u-2\/3\@media-1024 {
          width: 66.66% !important;
        }
      }

      @media (max-width: 967px)  {

        .u-2\/3\@media-967,
        .u-1\/3\@media-967 {
          width: 100% !important;
        }

        .o-layout__item.-partners h3 {
          margin-top: 2.000rem !important;
        }
      }

      @media (max-width: 840px)  {

        .o-wrap.c-title.-page {
          font-size: 48px;
          background-color: rgba(255,255,255,.3);
          height: 94px;
        }

        .o-wrap.c-title.-page span {
          position: absolute;
          top: 50%;
          transform: translate(0, -50%);
        }

        .o-layout.-news-list .o-layout__item.u-3\/5\@media-840 {
          padding-left: 64px;
          padding-left: 6.000rem;
        }

        .swiper-navigation.-citation {
          margin-top: 48px;
          margin-top: 3.000rem;
        }
        .u-1\/1\@media-840,
        .u-1\/2\@media-840,
        .u-2\/5\@media-840,
        .u-3\/5\@media-840,
        .u-3\/4\@media-840,
        .u-1\/3\@media-840 {
          width: 100% !important;
        }

        .u-1\/3\@media-840 {
          width: 50% !important;
        }

        .o-layout__item.-citation.u-3\/4 {
          padding-left: 2rem;
        }

        .c-list-event__li > a,
        .c-list-event__li > img,
        .u-1\/4\@media-840 {
          display: none;
        }

        .c-list-event__li {
          margin-bottom: 0;
        }

        .c-list-event__info {
          position: relative;
          width: 100%;
        }

        .c-list-event__link {
          margin: 0;
          padding: 2.000rem 0;
        }

        .c-list-event__desc {
          margin-bottom: 0 !important;
        }

        .c-list-event.-single > li {
          padding-top: 0;
        }

        .c-list-event.-single .c-list-event__info {
          padding-bottom: 2.000rem;
        }

        .slidedown {
          max-height: 1200px;
        }

        .-coming-event.-cat .c-list-event__li:first-child {
          padding-top: 0;
        }

      }

      @media (max-width: 840px)  {


        .o-wrap.-header,
        .c-pinned {
          border-bottom: 0;
        }


        .u-1\/3\@media-720 {
          width: 100% !important;
        }

        .hamburger-label {
          top: 50px !important;
        }

        .o-layout\@media-720 {
          float: right;
        }

        .c-mobile {
          display: block;
        }

        .c-desktop {
          display: none;
        }

        .o-layout\@media-720 {
          float: none;
          display: block;
          /* [1] */
          margin: 0;
          /* [2] */
          padding: 0;
          /* [2] */
          list-style: none;
          /* [1] */
          margin-left: -24px;
          /* [3] */
          font-size: 0;

          letter-spacing: 0;
        }

        .o-layout\@media-720__item {
          box-sizing: border-box;
          display: inline-block;
          vertical-align: top;
          width: 100%;
          padding-left: 24px;
          font-size: 16px;
          font-size: 1rem;
        }

        .u-1\/2\@media-720 {
          width: 50% !important;
        }

        .hamburger {
          margin-right: 32px;
          width: 130px !important;
          height: 80px;
          padding-left: 0;
          padding-right: 0;
          float: right;
        }

        .c-header__link h3 {
          font-size: 22px;
        }

        .hamburger-box {
          top: 20px;
        }

        .c-header__link {
          width: 100%;
          width: calc(100% + 40px);
        }

        .ripplelink {
          width: 100% !important;
        }

        .c-header__link h3 {
          padding-left: 64px;
        }

        .c-nav {
          top: 172px;
        }

        .ss32234,
        .c-content.-event,
        .c-header__banner {
          margin-top: 172px;
        }

        .o-wrap.c-title.-page {
          height: 130px;
        }

        .c-parent-name {
          bottom: 130px;
        }

      }

      @media (max-width: 600px)  {



        div#slide-4 {
          height: 280px;
        }

        .ss32234 {
          position: relative;
          height: 280px;
          width: 100%;
        }

        h2 {
          font-size: 1.8em;
        }



        .c-parent-name {
          bottom: 130px;
        }

        .c-title.-banner {
          font-size: 40px;
        }


        .c-content__bloc__ul li {
          margin-bottom: 0;
        }

        .c-content blockquote,
        .c-content.-editor ul, .c-list-event__desc,
        .c-content__bloc.-list-publications, .c-content__bloc__ul.-list-files, .c-content__accordion, .c-content.-news .-images {
          margin-left: 0;
        }

        .c-footer.-logo {
          display: none;
        }

        .u-2\/3\@media-600 {
          width: 100% !important;
        }

        .c-content__bloc__ul.-list-publications li,
        .c-content__bloc__ul.-list-files li {
          margin: 0 !important;
        }

        h4 {
          font-size: 1.2em;
        }

        .c-btn.-reverse {
          font-size: 1.5em;
        }

      }

      @media (max-width: 480px)  {

        .o-wrap.c-title.-page {
          font-size: 44px;
        }

        .hamburger-label {
          display: none;
        }

        .hamburger {
          width: 56px !important;
        }

        .u-1\/1\@media-480 {
          width: 100% !important;
        }

        .u-1\/1-title\@media-480 {
          width: 80% !important;
        }

        .c-main-menu__parent,
        .c-contact-us__title {
          font-size: 22px;
        }

        .c-content__bloc__li.-amount,
        .c-content__bloc__li.-participant {
          min-width: calc(100% - 4px);
        }

        .c-partners li {
          width: 50%;
          float: left;
          margin-left: 0;
          margin-right: 0;
        }

      }

      .o-layout.-single-event .o-layout__item.u-2\/3 {
        padding-right: 48px;
        padding-right: 3rem;
      }

      .c-content.-event-rule .c-content.-accordion.-single-event {
        padding-top: 0 !important;
      }


      .o-mobile div#slide-4 {
        opacity: 1;
      }


      @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-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
      }
    }

    .c-content__bloc__ul li:nth-child(2) a:after,
    .c-content__bloc__ul li a:after {
      width: calc(100% + 2px);
    }


    .c-title.-banner {
      padding: 0 !important;
      margin: 0 64px;
      margin: 0 4rem;
    }

    .o-wrapper.-one.-thermo {
      overflow: hidden;
    }


    .c-container.-hiden {
      visibility: hidden;
    }

    .c-error404{text-align:center;margin-top:240px}.c-error404__messsage{color:#4A4A4A}

    .c-error-browser{z-index:4;text-align:center}.c-error-browser__wrap{background:#fff;max-width:1030px;z-index:4;text-align:center;padding-top:30px;padding-bottom:30px;margin:0 auto;position:relative}
    .c-error-close{position:absolute;top:5px;right:5px}.c-error-browser__img{padding-bottom:24px}
    .c-error-browser{position:fixed;width:100%;top:50%}

    .c-error-browser__img.-close {
      max-width: 32px;
    }

    .c-error-close {
      width: 32px;
    }

    .c-video__figure {
      position: relative;
      margin-bottom: 16px;
      margin-bottom: 1rem;
    }

    .c-video__play {
      position: absolute;
      width: 32px;
      height: 32px;
      top: 50%;
      left: 50%;
      margin-left: -16px;
      margin-top: -16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 16px 0 16px 27.7px;
      border-color: transparent transparent transparent #e5007e;
      opacity: 0.6;
    }


    .c-video__figure:before {
      position: absolute;
      width: 56px;
      height: 56px;
      background-color: rgba(0,0,0,.5);
      content: "";
      border-radius: 100%;
      top: 50%;
      margin-top: -28px;
      left: 50%;
      margin-left: -28px;
      transition: all .2s ease-in-out;
    }

    .c-video__figure:after {
      position: absolute;
      content: "";
      border-style: solid;
      border-width: 10px 0 10px 18px;
      border-color: transparent transparent transparent rgba(255,255,255,.75);
      left: 50%;
      top: 50%;
      margin-left: -7px;
      margin-top: -10px;
      transition: all .25s ease-in-out;
    }

    .c-video__figure:hover:before,
    .c-video__figure:hover:after {
      transform: scale(1.2);
    }

    .c-video__figure img {
      width: 100%;
    }

    .c-content__bloc__li.-video {
      margin-bottom: 24px;
      margin-bottom: 1.5rem;
    }

    .c-more-events {
      padding-top: 96px;
      padding-top: 6rem;
      text-align: right;
    }

    .facebookShare_svg {
      position: absolute;
      top: 4px;
    }

    .facebookShare span {
      padding-left: 24px;
    }

    .c-content.-files {
      overflow: hidden;
    }

    .c-photo {
      background: red;
      width: 120px;
      height: 120px;
      margin-bottom: 40px;
      border-radius: 100%;
    }


    .c-description {
      padding-bottom: 32px;
      padding-bottom: 2rem;

    }

    .c-content.-thermometer {
      margin-bottom: 0;
    }

    .c-thermometer__name.no-description {
      padding-bottom: 32px;
      padding-bottom: 1.455em;
    }
    .thermometer-wrap{
      overflow: hidden;
      padding-bottom: 34px;
    }

    .c-language-switcher {
      float: right;
    }

    @media (min-width: 721px)  {
      .c-language-switcher {
        padding: 31px 0 0 0;
      }
    }


    @media (max-width: 720px)  {
      .c-language-switcher {
        padding: 35px 0 0;
      }
    }
    .c-language-switcher a {
      padding-right: 20px;
      letter-spacing: 1.2px;
      font-size: 18px;
    }

    .c-language-switcher a:first-letter {
      text-transform: uppercase;
    }


    .c-header__banner .swiper-container-horizontal > .swiper-pagination-bullets {
      right: 2rem;
      top: 50%;
      bottom: unset;
      left: unset;
      width: auto;
      transform: translate3d(0px, -50%, 0);
    }
    .c-header__banner .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 6px 0;
      display: block;
    }

    .c-header__banner .swiper-pagination-bullet {
      background: #FFF;
      opacity: .5;
      height: 1rem;
      width: 1rem;
    }

    .c-header__banner .swiper-pagination-bullet-active {
      opacity: 1;
    }
    @media (max-width: 600px)  {
      .c-header__banner .swiper-container-horizontal > .swiper-pagination-bullets {
        right: 8px;
        top: 32px;
      }
      .c-header__banner .swiper-pagination-bullet {
        height: 0.75rem;
        width: 0.75rem;
      }
    }


    .header-custom {
      background: #F0F0F0;
      padding: 96px 0;
      margin-top: 94px;
    }

    @media (max-width: 1300px) {
      .header-custom {
        /* background: none; */
        padding: 0;
        margin-top: 0;
      }
    }
    .c-ttl-device {
      display: none;
    }
    .c-ttl-desktop {
      display: block;
    }
    @media (max-width: 1300px) {
      .c-header-custom_img {
        background: #F0F0F0;
        padding-top: 4rem;
        padding-bottom: 4rem;
        margin-top: 94px;
      }
      .c-ttl-device {
        display: block;
      }
      .c-ttl-desktop {
        display:none;
      }
      .c-header-cntnt {
        padding-bottom: 4rem;
      }
    }

    @media (max-width: 840px) {
      .c-header-custom_img {
        margin-top: 174px;
        padding-top: 2rem;
        padding-bottom: 2rem;
      }
      .c-header-cntnt {
        padding-bottom: 2rem;
      }
    }

    @media (max-width: 740px) {
      .c-header-custom_img img {
        margin-bottom: 16px;
      }
      .c-header-custom_img {
        padding-top: 2rem;
        padding-bottom: 2rem;
      }
    }

    .hc-content {
      display: flex;
      margin-left: auto;
      flex-direction: column;
    }

    .hc-content p {
      font-size: 1.5rem;
      line-height: 1.500;
      color: #A8A8A8;
      line-height:
    }

    @media (max-width: 840px) {
      .hc-content p {
        font-size: 1rem;
      }
    }

    .c-title-cstm-one {
      font-size: 12px;
      font-weight: 700 !important;
      text-transform: uppercase;
      color: #66C08D;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .c-title-cstm-one:before {
      display: none;
    }

    .c-title-cstm-one.-share {
      color: #A8A8A8;
      margin-bottom: 0.5rem;
    }

    .c-content .c-title-cstm-two,.c-title-cstm-two {
      font-size: 3rem;
      font-weight: 400;
      color: #5A5A5A;
      position: relative;
      line-height: 1.2;
      padding-bottom: 0.667em;
      margin-top: 0;
      margin-bottom: 0.500em;
    }

    .c-title-cstm-two:before {
      position: absolute;
      height: 3px;
      background-color: #E5007D;
      width: 78px;
      content: "";
      bottom: 0;
      border-radius: 1px;
    }

    .c-title-cstm-two.-footer:before {
      background-color: #67C08D;
    }

    @media (max-width:1300px) {
      .c-content .c-title-cstm-two,.c-title-cstm-two {
        font-size: 2rem;
      }
    }

    @media (max-width:840px) {
      .c-content .c-title-cstm-two,.c-title-cstm-two {
        font-size: 1.8rem;
      }
    }


    .c-header-custom_img {
      position: relative;
    }
    .c-header-custom_img img {
      width: 100%;
    }

    .c-header-custom_img {
      position: relative;
    }

    .social-media {
      padding: 0;
      margin: 0;
      list-style-type: none;
    }

    .social-media li {
      display: inline-block;
      margin-right: 16px;
      background-size: cover !important;
      background: url(/assets/ftp-images/icone/social-media.svg)
    }
    .social-media li a {
      display: block;
      height: 21px;
    }

    .social-media .facebook {
      background-position: 0 0;
      height: 21px;
      width: 11px;
    }

    .social-media .twitter {
      background-position: -29px 0;
      height: 21px;
      width: 25px;
    }

    .social-media .linkedin {
      background-position: -63px 0;
      height: 21px;
      width: 20px;
    }

    .social-media .facebook:hover {
      background-position: -86px 0;
    }

    .social-media .twitter:hover {
      background-position: -115px 0;
    }

    .social-media .linkedin:hover {
      background-position: -149px 0;
    }
    {* Foundation in action *}
    .c-content.-foundation-action {
      background: #F0F0F0;
      margin-bottom: 0;
    }

    .home .c-content:first-child {
      padding-top: 19rem;
    }
    .c-content.-foundation-action.-index {
      padding-top: 6rem !important;
      padding-bottom: 0
    }

    .c-content.-events {
      background: #F0F0F0;
      margin-bottom: 0;
    }

    .c-item.odd {
      padding-bottom: 15rem;
    }

    .c-content.-foundation-action .o-wrap.-two .c-item.mb-none {
      padding-bottom: 0;
    }

    .c-content.-foundation-action.-index .c-item {
      padding-bottom: 15rem;
    }

    .c-item_content p {
      font-size: 1.5rem;
      color: #A8A8A8;
      display:
    }

    .even .c-item_content {
      margin-left: 33.3333333333%;
    }

    /* Home -- FOUNDATION IN ACTION */

    .c-mosaic-wrap {
      position: relative;
      display: flex;
    }

    .c-mosaic-container {
      position: absolute;
      left:0;right:0;top:0;bottom:0;
      height: 100%;
      width: 100%;
      display: flex;
    }

    .c-mosaic {
      display: flex;
    }

    .even .c-mosaic {
      margin-left: auto;
    }

    .even .c-details {
      left: 6%;
      right: unset;
    }

    @media (max-width: 1680px) {
      .even .c-mosaic-container {
        padding-left: 12px;
      }
      .even .c-item_content {
        margin-left: 0;
      }
      .odd .c-mosaic-wrap {
        flex-direction: row-reverse;
      }
      .odd .c-mosaic-container {
        padding-right: 12px;
      }
    }


    .c-flex {
      display: flex;
    }

    .left-col {
      flex: 1 1 55%;
      max-width: 55%;
      min-width: 55%;
      width: 55%;
      flex-direction: column;
    }

    .right-col {
      flex: 1 1 55%;
      background: grey;
      max-width: 45%;
      min-width: 45%;
      width: 45%;
    }

    .top-row {
      flex: 1 1 100%;
      max-width: 100%;
      min-width: 100%;
      width: 100%;
      height: 50%;
    }

    .bottom-row {
      flex: 1 1 100%;
      max-width: 100%;
      min-width: 100%;
      width: 100%;
      height: 50%;
    }

    .left-case {
      background: pink;
      width: 50%;
    }

    .right-case {
      width: 50%;
    }

    .mosaic-img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
    }

    @media (max-width: 1300px) {
      .left-col {
        display: none;
      }
      .right-col {
        flex: 1 1 55%;
        background: grey;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
      }
      .home .c-content:first-child {
        padding-top: 12rem;
      }

    }

    @media (max-width: 840px) {
      .left-col {
        display: flex;

      }
      .c-mosaic-wrap {
        flex-wrap: wrap;
      }
      .right-col {
        flex: 1 1 55%;
        background: grey;
        max-width: 45%;
        min-width: 45%;
        width: 45%;
      }
      .even .c-mosaic {
        padding-left: 0px;
      }
      .odd .c-mosaic {
        padding-left: 0px;
      }
      .c-mosaic-wrap {
        flex-direction: column-reverse !important;
      }
      .c-mosaic {
        margin-bottom: 16px;
      }
    }

    /* Home -- mission */


    .c-content.-mission {
      padding: 15rem 0;
      margin-bottom: 0;
    }

    .c-content.-mission .icon svg{
      height: auto;
    }

    @media (max-width: 1300px) {
      .c-content.-mission {
        padding: 7rem 0;
      }
    }

    @media (max-width: 840px) {
      .c-content.-mission .icon {
        display: none;
      }
      .c-content.-mission {
        padding: 4rem 0;
      }
    }

    .-mission .sctn-title {
      margin-bottom: 24px;
    }

    .-mission .c-link span,
    .-events .c-link span,
    .-foundation-action .c-link span {
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: #E5007D;
    }

    @media (max-width: 1300px) {
      .-mission .c-link span,
      .-events .c-link span,
      .-foundation-action .c-link span {
        font-size: 18px;
      }
    }

    @media (max-width: 840px) {
      .-mission .c-link span,
      .-events .c-link span,
      .-foundation-action .c-link span {
        font-size: 16px;
      }
    }

    .-mission .c-link span:hover,
    .-events .c-link span:hover,
    .-foundation-action .c-link span:hover
    {
      color: #444;
    }

    .-mission .arrow-right,
    .-events .arrow-right,
    .-foundation-action .arrow-right {
      fill: #E5007D;
      margin-left: 1rem;
    }

    .-mission .c-link:hover .arrow-right,
    .-events .c-link:hover .arrow-right,
    .-foundation-action .c-link:hover .arrow-right {
      fill: #000;
      margin-left: 1rem;
    }

    /* Events */

    .c-list-event__itm img {
      width: 90%;
    }

    .c-list-event__itm {
      position: relative;
    }

    .c-list-event__itm .c-txt {
      width: 90%;
    }


    .c-list-event__itm-wrap {
      position: relative;
    }

    @media (max-width: 1440px) {
      .c-list-event__itm-wrap img {
        margin-bottom: 16px;
      }
      .c-list-event__itm .c-txt,
      .c-list-event__itm img  {
        width: 100%;
      }
    }

    @media (max-width: 840px) {
      .c-list-event__itm {margin-bottom:  4rem;}
      .c-list-event__itm:last-child {margin-bottom: 0;}
    }

.single .c-content:first-child {
        padding-top: 8rem;
}

    /* Participate */

    .c-content.-participate {
      text-align: center;
    }

    .c-content:first-child.-participate {

      margin-bottom: 8rem;
    }

    @media (max-width: 840px) {
      .c-content:first-child.-participate {
        margin-bottom: 6rem;
      }
.single .c-content:first-child {
  padding-top: 6rem;
}
    }

    .c-content.-editor {
      margin-bottom: 8rem;
    }

    @media (max-width: 840px) {
      .c-content.-editor {
        margin-bottom: 6rem;
      }
    }

    .c-content.-participate .c-btn-anim {
      margin-bottom: 0;
    }

    .c-content-mb {
      margin-bottom: 2rem;
    }
    .c-content-mb p {
      margin-bottom: 0;
    }

    .c-content__pgd-top {
      max-width: 816px;
      margin: auto;
    }

    /* Content Single */
    .c-content.single {
      margin-bottom: 112px;
      max-width: 816px;
      margin-left: auto;
      margin-right: auto;
      margin: 0 auto 112px;
    }

    .c-content.single p {
      font-size: 18px;
    }

    .c-content.single h2 {
      font-size: 2rem;
      line-height: 1.3;
      color: #E5007D;
      padding-bottom: 0;
      margin-top: 0;
      margin-bottom: 16px;
      font-weight: 400 !important;
    }

    .c-content.single h2:before {
      display: none;
    }

    .c-content.single h3 {
      font-size: 1.125rem;
      line-height: 1.3;
      color: #E5007D;
      padding-bottom: 0;
      margin-bottom: 6px;
      font-weight: 400 !important;
    }


    /* GALLERY */

    @font-face{font-family:lg;src:url(../fonts/lg.eot?n1z373);src:url(../fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),url(../fonts/lg.woff?n1z373) format("woff"),url(../fonts/lg.ttf?n1z373) format("truetype"),url(../fonts/lg.svg?n1z373#lg) format("svg");font-weight:400;font-style:normal}.lg-icon{font-family:lg;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-actions .lg-next.disabled,.lg-actions .lg-prev.disabled{pointer-events:none;opacity:.5}.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover{color:#FFF}.lg-actions .lg-next{right:20px}.lg-actions .lg-next:before{content:"\e095"}.lg-actions .lg-prev{left:20px}.lg-actions .lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-moz-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-ms-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-moz-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-ms-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%;background-color:rgba(0,0,0,.45)}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:0;background:0 0;border:none;box-shadow:none;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-toolbar .lg-icon:hover{color:#FFF}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{background-color:rgba(0,0,0,.45);bottom:0;color:#EEE;font-size:16px;left:0;padding:10px 40px;position:fixed;right:0;text-align:center;z-index:1080}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}#lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;vertical-align:middle}.lg-next,.lg-prev,.lg-toolbar{opacity:1;-webkit-transition:-webkit-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-moz-transition:-moz-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-o-transition:-o-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;transition:transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear}.lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.lg-outer .lg-thumb-outer{background-color:#0D0A0A;bottom:0;position:absolute;width:100%;z-index:1080;max-height:350px;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-thumb-open .lg-thumb-outer{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-thumb{padding:10px 0;height:100%;margin-bottom:-5px}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border:2px solid #FFF;border-radius:4px;margin-bottom:5px}@media (min-width:1025px){.lg-outer .lg-thumb-item{-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover}.lg-outer.lg-has-thumb .lg-item{padding-bottom:120px}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer.lg-pull-caption-up .lg-sub-html{-webkit-transition:bottom .25s ease;-o-transition:bottom .25s ease;transition:bottom .25s ease}.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{bottom:100px}.lg-outer .lg-toogle-thumb{background-color:#0D0A0A;border-radius:2px 2px 0 0;color:#999;cursor:pointer;font-size:24px;height:39px;line-height:27px;padding:5px 0;position:absolute;right:20px;text-align:center;top:-39px;width:50px;outline:0;border:none}.lg-outer .lg-toogle-thumb:hover,.lg-outer.lg-dropdown-active #lg-share{color:#FFF}.lg-outer .lg-toogle-thumb:after{content:"\e1ff"}.lg-outer .lg-video-cont{display:inline-block;vertical-align:middle;max-width:1140px;max-height:100%;width:100%;padding:0 5px}.lg-outer .lg-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}.lg-outer .lg-video .lg-object{display:inline-block;position:absolute;top:0;left:0;width:100%!important;height:100%!important}.lg-outer .lg-video .lg-video-play{width:84px;height:59px;position:absolute;left:50%;top:50%;margin-left:-42px;margin-top:-30px;z-index:1080;cursor:pointer}.lg-outer .lg-has-iframe .lg-video{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-has-vimeo .lg-video-play{background:url(../img/vimeo-play.png) no-repeat}.lg-outer .lg-has-vimeo:hover .lg-video-play{background:url(../img/vimeo-play.png) 0 -58px no-repeat}.lg-outer .lg-has-html5 .lg-video-play{background:url(../img/video-play.png) no-repeat;height:64px;margin-left:-32px;margin-top:-32px;width:64px;opacity:.8}.lg-outer .lg-has-html5:hover .lg-video-play{opacity:1}.lg-outer .lg-has-youtube .lg-video-play{background:url(../img/youtube-play.png) no-repeat}.lg-outer .lg-has-youtube:hover .lg-video-play{background:url(../img/youtube-play.png) 0 -60px no-repeat}.lg-outer .lg-video-object{width:100%!important;height:100%!important;position:absolute;top:0;left:0}.lg-outer .lg-has-video .lg-video-object{visibility:hidden}.lg-outer .lg-has-video.lg-video-playing .lg-object,.lg-outer .lg-has-video.lg-video-playing .lg-video-play{display:none}.lg-outer .lg-has-video.lg-video-playing .lg-video-object{visibility:visible}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s;transition-duration:0s}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s;transition:transform .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;transition:transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}#lg-zoom-in:after{content:"\e311"}#lg-actual-size{font-size:20px}#lg-actual-size:after{content:"\e033"}#lg-zoom-out{opacity:.5;pointer-events:none}#lg-zoom-out:after{content:"\e312"}.lg-zoomed #lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer .lg-pager-outer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1080;height:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#FFF;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer #lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active #lg-dropdown-overlay,.lg-outer.lg-dropdown-active .lg-dropdown{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#FFF;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover .lg-icon,.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer,.lg-outer .lg,.lg-outer .lg-inner{width:100%;height:100%}.lg-outer #lg-share{position:relative}.lg-outer #lg-share:after{content:"\e80d"}.lg-outer #lg-share-facebook .lg-icon{color:#3b5998}.lg-outer #lg-share-facebook .lg-icon:after{content:"\e901"}.lg-outer #lg-share-twitter .lg-icon{color:#00aced}.lg-outer #lg-share-twitter .lg-icon:after{content:"\e904"}.lg-outer #lg-share-googleplus .lg-icon{color:#dd4b39}.lg-outer #lg-share-googleplus .lg-icon:after{content:"\e902"}.lg-outer #lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer #lg-share-pinterest .lg-icon:after{content:"\e903"}.lg-group:after{content:"";display:table;clear:both}.lg-outer{position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item.lg-current,.lg-outer.lg-css3 .lg-item.lg-next-slide,.lg-outer.lg-css3 .lg-item.lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%}.lg-outer .lg-inner{position:absolute;left:0;top:0;white-space:nowrap}.lg-outer .lg-item{background:url(../img/loading.gif) center center no-repeat;display:none!important}.lg-outer.lg-css .lg-current,.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}.lg-outer .lg-img-wrap{position:absolute;padding:0 5px;left:0;right:0;top:0;bottom:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-image{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto!important;height:auto!important}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play{opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play{opacity:1}.lg-outer .lg-empty-html,.lg-outer.lg-hide-download #lg-download{display:none}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:rgba(0,0,0,.8);opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item,.lg-css3.lg-use-left .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-left .lg-item{opacity:0;position:absolute;left:0}.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{left:-100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide{left:100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current{left:0;opacity:1}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{-webkit-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}


    .lg-actions .lg-prev,
    .lg-actions .lg-next  {
      background: url(/assets/ftp-images/icone/gallery-arrow.svg) !important;
      height: 27px;
      width: 29px;
      background-color: rgba(0, 0, 0, 0.45);
      border-radius: 2px;
      color: #999;
      cursor: pointer;
      display: block;
      font-size: 22px;
      margin-top: -10px;
      padding: 8px 10px 9px;
      position: absolute;
      top: 50%;
      z-index: 1080;
      border: none;
      outline: 0;
      opacity: 0.7;
    }

    .lg-close.lg-icon {
      background: url(/assets/ftp-images/icone/close.svg) !important;
      width: 16px;
      height: 16px;
      margin-top: 12px;
      margin-right: 12px;
      padding: 0;
    }

    .lg-actions .lg-prev:after,
    .lg-actions .lg-next:before,
    .lg-toolbar .lg-icon:after {
      display: none;
    }

    .lg-actions .lg-prev:hover,
    .lg-actions .lg-next:hover {
      opacity: 1;
    }

    .lg-actions .lg-prev{
      left: 10px;
      right: auto;
      transform: rotate(-180deg);
    }


    .lg-actions .lg-next  {
      right: 10px;
      left: auto;
    }

    .gallery-nav {
      position: absolute;
      width: 100%;
      height: 11px;
      top: 50%;
      margin-top: -5px;
      z-index: 0;
      a {
        z-index: 9;
      }
    }
    .gallery-sctn {
    }

    .gallery img {
      width: 100%;
    }
    .gallery .swiper-slide {
      position: relative;
      &:hover {
          &:before, &:after {
            cursor: pointer;
          }
      }
    }
    .gallery .swiper-slide a:before {
      position: absolute;
      width: 56px;
      height: 56px;
      background-color: rgba(0,0,0,.5);
      content: "";
      border-radius: 100%;
      top: 50%;
      margin-top: -28px;
      left: 50%;
      margin-left: -28px;
      transition: all .2s ease-in-out;
    }


    .gallery .swiper-slide a:after {
      position: absolute;
      content: "";
      background: url(/assets/ftp-images/icone/zoom.svg) !important;
      height: 32px;
      width: 32px;
      right: 0; left: 0;
      top: 0; bottom: 0;
      margin: auto;
      transition: all .25s ease-in-out;
    }

    .gallery .swiper-slide:hover a:before,
    .gallery .swiper-slide:hover a:after {
      transform: scale(1.2);
    }

    .asdf3 {
      position: relative;
    }

    /* Details */


    .c-details {
      position: absolute;
      background: #fff;
      top: 50%;
      transform: translate(0,-50%);
      width: 100%;
      padding: 56px 48px;
    }

    .c-details p:last-child {
      margin-bottom: 0;
    }

    .c-details.type-one {
      right: -33%;
      max-width: 338px;
    }

    .c-details.type-zero {
      width: 33%;
      right: 6%;
      z-index: 3;
    }

    .c-details.type-two {
      width: 360px;
      right: 0;
      z-index: 3;
    }

    @media (max-width: 1680px) {
      .c-details {

      }
      .c-details.type-zero {
        right: 0;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
      }
      .even .c-details.type-zero {
        left: 0;
      }
    }

    @media (max-width: 1440px) {
      .c-details.type-two {
        position: relative;
        transform: none;
        width: 100%;
      }
      .c-details {
        padding: 48px 32px;
      }
    }

    @media (max-width: 1300px) {
      .c-details.type-zero {
        width: 50%;
      }
      .c-item.odd {
        padding-bottom: 7rem;
      }
      .c-content.-foundation-action.-index .c-item {
        padding-bottom: 7rem;
      }

      .c-details.type-one {
        right: 6%;
        max-width: 338px;
      }


    }

    @media (max-width: 840px) {
      .c-details.type-zero {
        width: 100%;
      }
      .c-details {
        padding: 32px 16px;
      }
      .c-item.odd {
        padding-bottom: 4rem;
      }
      .c-content.-foundation-action.-index .c-item {
        padding-bottom: 4rem;
      }
    }

    @media (max-width: 740px) {
      .c-details.type-one {
        position: relative;
        transform: none;
        right: 0;
        max-width: 100%;
      }
    }

    .c-details h4 {
      color: #67C08D;
      font-size: 32px;
      line-height: 1.5;
      font-weight: 700 !important;
      margin-bottom: 0;
      text-transform: uppercase;
    }

    .c-details p {
      font-size: 1.5rem;
      color: #A8A8A8;
    }

    .c-details .c-btn-anim {
      margin-bottom: 0;
    }

    .c-txt {
      font-size: 1.5rem;
      color: #A8A8A8;
    }

    @media (max-width: 1300px) {
      .c-txt,
      .c-txt p,
      .c-details p {
        font-size: 1.2rem;
      }
      .c-details h4 {
        font-size: 20px;
      }

      .c-content .c-title-cstm-two {
        font-size: 32px;
      }
    }

    @media (max-width: 840px) {
      .c-txt,
      .c-txt p,
      .c-details p {
        font-size: 1rem;
      }
      .c-details h4 {
        font-size: 18px;
      }
      .c-content .c-title-cstm-two {
        font-size: 24px;
      }
    }

    .sctn-title {
      font-size: 85px;
      line-height: 1;
      padding-bottom: 0;
      margin-bottom: 88px;
      margin-top: 0;
    }

    @media (max-width: 1300px) {
      .sctn-title {
        font-size: 56px;
        margin-bottom: 64px;
        }}
        @media (max-width: 840px) {
          .sctn-title {
            font-size: 48px;
            margin-bottom: 56px;
            }}
            .sctn-title:before {
              display: none;
            }

            .pb-cstm {
              padding-bottom: 8rem;
            }
            @media (max-width: 840px) {
              .pb-cstm {
                padding-bottom: 6rem;
              }
            }

            .mb-minus {
              margin-bottom: -3.5rem;
            }

            .mb-minus-one {
              margin-bottom: -1rem;
            }

            .mt-home {
              margin-top: 7rem;
              text-align: center;
              padding-bottom: 15rem;
            }

            @media (max-width: 1300px) {
              .mt-home {
                margin-top: 5rem;
                padding-bottom: 12rem;
              }
            }

            @media (max-width: 840px) {
              .mt-home {
                margin-top: 3rem;
                padding-bottom: 7rem;
              }
            }

            .swiper-container.header .swiper-slide .box {
              max-height: 0px;
              opacity: 0;
            }

            .swiper-container.header .swiper-slide .c-slide-border {
              max-height: 0px;
              opacity: 0;
            }

            .swiper-container.header .swiper-slide .c-slide-desc {
              margin-bottom: 1.5rem;
            }

            .swiper-container.header .swiper-slide-active .c-slide-border {
              max-height: 100px;
              opacity: 1;
              transition: max-height 0.10s 0.4s cubic-bezier(0.12, 0, 0.39, 0), opacity 0.1s 0.4s cubic-bezier(0.12, 0, 0.39, 0);
            }

            .swiper-container.header .swiper-slide-active .box {
              max-height: 600px;
              opacity: 1;
              transition: max-height 0.45s 0.39s cubic-bezier(0.12, 0, 0.39, 0), opacity 0.4s 0s cubic-bezier(0.12, 0, 0.39, 0);
            }

            .swiper-container.header .o-wrap {
              overflow: hidden;
            }

            .single-mb {
              margin-bottom: 8rem;
            }
            @media (max-width: 1300px) {
              .single-mb {
                margin-bottom: 6rem;
              }
            }

            @media (max-width: 840px) {
              .single-mb {
                margin-bottom: 4rem;
              }
            }

            .relative {
              position: relative;
            }


            .c-component-video {
              margin-bottom: 32px;
            }





/*------ CAMPAGNE 35 ANS ------*/
.logo-35ans {
    padding-left: 20px;
}

.c-header__link {
    background: #F0DBD5;
}

.c-header__link h3 {
    color: #E5007D;
}

.-foundation-action .title-with-logo {
    width: 66.66%;
    display: flex;
    align-items: center;
    margin-bottom: 88px;
    gap: 100px;
}

.-foundation-action .title-with-logo .sctn-title {
        margin-bottom: 0px;
}

.-foundation-action .title-with-logo .tag-35ans {
    padding-left: 50px;
    opacity: 0;
}

.-foundation-action .title-with-logo .tag-35ans.anim-tag35ans {
    animation: zoom-in-zoom-out 2s ease-in-out;
    opacity: 1;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.c-slide-content .c-btn-anim {
    border: none;
    background: #F0DBD5;
}

.c-btn-anim span {
    color: #E5007D;
}

.c-btn-anim a:hover span {
    color: #E5007D !important;
}

.c-btn-anim a {
    padding-bottom: 1em;
    padding-top: 1em;
}

.c-btn-anim.-pink {
    border-color: #F0DBD5;
    background: #F0DBD5;
}

.c-btn-anim.-pink span {
    color: #E5007D;
}

.mt-home {
    padding-bottom: 7rem;
}

.c-content.-events {
    background: #F0DBD5;
    padding-top: 7rem
}

.c-content.-events h2.sctn-title {
    color: #E5007D;
}

.c-content.-events .c-details h4 {
    color: #E5007D;
}

.c-content.-events .c-details .c-btn-anim.-pink {
    border-color: #D1E8DC;
    background: #D1E8DC;
}

.c-content.-events .c-details .c-btn-anim.-pink span {
    color: #67C08D;
}

.c-content.-events .c-details .c-btn-anim.-pink a:hover span {
    color: #67C08D !important;
}

.mission-content {
    padding-left: 50px;
    padding-top: 40px;
    max-width: 870px;
}

.c-content.-mission {
    padding: 10rem 0;
    position: relative;
}

.c-content.-mission:before {
    content: "";
    background-image: url("/assets/ftp-images/background/texture-mission-accueil-crop.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 830px;
    height: 205px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.c-footer-info {
    text-align: right;
}

.social-media-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.social-media-footer a {
    width: 38px;
    height: 38px;
    display: block;
    background: #555555;
    text-align: center;
    line-height: 32px;
    border-radius: 50px;
    transition: all 300ms ease-in-out;
}

.social-media-footer a:hover {
    background: #E5007D;
}



@media (max-width: 1430px) {
    .c-content.-mission:before {
        width: 500px;
        height: 124px;
    }
}




@media (max-width: 840px) {
    .c-footer .c-partners, .c-footer .c-footer-info {
        width: 100% !important;
    }

    .mission-content {
        padding-left: 0px;
    }
}

@media (max-width: 800px) {
    .-foundation-action .title-with-logo .sctn-title {
        width: calc(100% - 100px);
    }

    .-foundation-action .title-with-logo {
        width: 100%;
        gap: 0px;
    }

    .-foundation-action .title-with-logo .tag-35ans {
        max-width: 70px;
        padding: 0px;
    }
}

@media (max-width: 530px) {
    .logo-35ans {
        padding-left: 15px;
        max-width: 60px!important;
    }

    .c-footer-info {
        text-align: center;
        padding: 0px;
    }

    .social-media-footer {
        justify-content: center;
    }

    .c-partners {
        margin-left: 0;
    }

    .c-partners li {
        width: calc(50% - 65px);
        margin-bottom: 1em;
    }
}

@media (max-width: 500px) {
    .c-header__logo.o-layout\@media-720__item {
        padding-left: 10px;
        width: calc(100% - 130px) !important;
    }

    .hamburger {
        margin-right: 20px;
    }

    .c-footer .c-partners {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 30px;
    }
}