/*
Theme Name: Smart Power
Description: Thème Wordpress du site Pole Smart Power
Version: 1.0
Author: BABAWEB
Author URI: http://www.babaweb.fr/
Domain: wpml_theme
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    border: 0;
    border-radius: 0;
    margin: 0;
    background: none;
    text-align: inherit;
    text-decoration: none;
    font: inherit;
    color: inherit;
    list-style: none;
    outline: none;
}

input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: inherit;
}

a,
button {
    overflow: visible;
    cursor: pointer;
}

::-ms-expand {
    display: none;
}

:root {  
    /* Colors */
    --black: #060017;
    --white: #FFF;
    --white-off: #E3D2D2;
    --primary: #7E54FF;
    --secondary: #BB8BFC;
    --light: #F2EEFF;
    --background: #fff;
    --background-off: #F9F6F6

    /* Fonts Family */
    --font-primary: font-family: "Montserrat", sans-serif;
    --font-content : font-family: "Inter", sans-serif;

    /* Fonts Size */
    --h1: 3rem;
    --h2: 2.625rem;
    --h3: 2rem;
    --h4: 1.5rem;
    --h5: 1rem;
    --h6: 0.875rem;

    --samll-extra: 0.75rem;
    --small: 0.875rem;
    --normal:1rem;
    --big: 1.125rem;
    --extra: 1.25rem;

    /* Fonts weight */
    --300: 300;
    --400: 400; /* regular */
    --500: 500; 
    --600: 600; /* semibold */
    --700: 700; /* bold */
    --800: 800; 

    /* Border radius */
    --round: 20px;
    --roundbig: 50px;
  }

/* General */
html {
    font-size: 93.75%;
}

body {
    display: block;
    width: 100%;

    font-family: 'Manrope', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 2;
    color: var(--black);
}

.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-list {
    width: 100%;
    overflow: hidden;
}

.slick-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.slick-track[dir='rtl'] {
    justify-content: flex-end;
}

/* Buttons */
.buttons-list {
    display: flex;
    max-width: calc(100% + 30px);

    margin: -10px -15px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.button-list:not(:first-child) {
    margin-top: 40px;
}

.button-list:not(:last-child) {
    margin-bottom: 40px;
}

.buttons-item {
    display: block;

    margin: 10px 15px;
}

.button {
    display: inline-flex;

    padding: 1rem 2rem;
    border: 1px solid #272727;
    border-radius: 9999px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.25;
    color: #272727;

    transition: .2s ease;
}

.button:hover {
    background-color: #272727;
}

.button:not(.button--white):not(.button--filled):not(.text--blue):hover {
    color: #FFF;
}

.button--round {
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;

    justify-content: center;

    padding: 0;

    font-size: 1rem;
}

.button--round.button--small {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    min-height: 2rem;

    font-size: .8rem;
}

.button--wide {
    width: 100%;
    justify-content: center;
}

.button-icon,
.button-label {
    display: block;
}

.button-icon {
    font-size: 1rem;
    line-height: 1;
}

img.button-icon {
    display: inline-block;
    width: auto;
    height: 1rem;
}

.button-icon:not(:last-child) {
    margin-right: 1em;
}

.button-icon:not(:first-child) {
    margin-left: 1em;
}

.button--filled {
    background-color: #272727;
    color: #FFF;
}

.button--filled:hover {
    background-color: #151515;
}

.button--light-grey {
    border-color: #E6E6E6;
    color: #E6E6E6;
}

.button--light-blue {
    border-color: #2499D6;
    color: #2499D6;
}

.button--white {
    border-color: #FFF;
    color: #FFF;
}

.button--white:hover {
    background-color: #FFF;
}

.button--white:not(.button--filled):hover {
    color: #272727;
}

.button--filled.button--white {
    background-color: #FFF;
}

.button--filled.button--white:hover {
    background-color: #E6E6E6;
}

.button--light-blue:hover,
.button--filled.button--light-blue {
    background-color: #2499D6;
    color: #FFF;
}

.button--filled.button--light-blue:hover {
    background-color: #2091CE;
}

.button--orange {
    border-color: #E45724;
    color: #E45724;
}

.button--orange:hover {
    background-color: #E45724;
}

.button--filled.button--orange {
    background-color: #E45724;
    color: #FFF;
}

.button--filled.button--orange:hover {
    background-color: #B4461E;
}

.button--blue {
    border-color: #100CA4;
    color: #100CA4;
}

.button--blue:hover {
    background-color: #100CA4;
}

.button--filled.button--blue {
    background-color: #100CA4;
    color: #FFF;
}

.button--filled.button--blue:hover {
    background-color: #0E0A77;
}

.button--alt {
    border: 0;
    color: inherit;
}

.button--alt:hover {
    background-color: transparent;
    /* color: inherit; */
}

.button-icon--alt {
    display: flex;
    width: 3.24rem;
    min-width: 3.24rem;
    height: 3.24rem;

    border: 1px solid;
    border-color: transparent;
    border-radius: 100%;
    margin: -15px 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    transition: .2s ease;
}

.button-icon--alt:not(:last-child) {
    margin-right: 30px;
    margin-left: -30px;
}

.button-icon--alt:not(:first-child) {
    margin-left: 30px;
    margin-right: -30px;
}

.button-icon--white {
    background-color: #FFF;
    color: #100CA4;
}

.button--alt:hover .button-icon--alt.button-icon--white {
    background-color: #E6E6E6;
}

.button-icon--blue {
    border-color: #100CA4;
    color: #100CA4;
}

.button--alt:hover .button-icon--alt.button-icon--blue {
    background-color: #100CA4;
    color: #FFF;
}

.scroll-button {
    position: absolute;
    bottom: calc(80px + .4rem);
    right: calc((100% - 200px) / 4);
    z-index: 10;

    transform: translate(50%, 50%);
}

/* Text */
strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

.h1,
.formatted-text h1,
.h2,
.formatted-text h2,
.h3,
.formatted-text h3,
.h4,
.formatted-text h4,
.h5,
.formatted-text h5 {
    text-transform: uppercase;
    line-height: 1.5;
}

.formatted-text:not(:last-child) {
    margin-bottom: 3rem;
}

.h1:not(:first-child),
.formatted-text h1:not(:first-child) {
    margin-top: .5em;
}

.h1:not(:last-child),
.formatted-text h1:not(:last-child) {
    margin-bottom: .25em;
}

.h1 + .button {
    margin-top: 2rem;
}

.section-header .h1 + .button {
    margin-top: 0;
}

.h2:not(:last-child),
.formatted-text h2:not(:last-child),
.h3:not(:last-child),
.formatted-text h3:not(:last-child),
.h4:not(:last-child),
.formatted-text h4:not(:last-child),
.h6:not(:last-child),
.formatted-text h6:not(:last-child) {
    margin-bottom: 1em;
}

.h1,
.formatted-text h1,
.h2,
.formatted-text h2,
.h3,
.formatted-text h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
}

.h1,
.formatted-text h1 {
    font-size: 3rem;
}

.h2,
.formatted-text h2 {
    font-size: 2.6rem;
}

.h3,
.formatted-text h3 {
    font-size: 1.6rem;
    line-height: 1.8;
}

.h4,
.formatted-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.h5,
.formatted-text h5,
.h6,
.formatted-text h6 {
    font-size: 1rem;
    font-weight: 600;
}

.p,
.formatted-text p,
.formatted-text ul,
.formatted-text ol {
    color: #9D9D9D;
}

.formatted-text strong {
    color: #272727;
}

.formatted-text ul {
    display: block;
    width: 100%;

    padding: 0 0 0 65px;
}

.formatted-text ol {
    display: block;
    width: 100%;

    padding: 0 0 0 20px;

    counter-reset: ol;
}

.formatted-text li {
    display: block;
    width: 100%;

    position: relative;
}

.formatted-text li:not(:last-child) {
    margin: 0 0 10px 0;
}

.formatted-text ul li::before {
    display: block;
    width: 50px;
    height: 1px;

    position: absolute;
    top: calc(1em - .5px);
    left: -65px;

    background-color: var(--primary);

    content: '';
}

.formatted-text ol li::before {
    display: block;

    position: absolute;
    top: 0;
    left: -20px;

    counter-increment: ol;
    content: counter(ol)'.';
    font-weight: 700;
    color: #000;
}

.section--fill .p,
.section--fill .formatted-text p,
.section--fill .formatted-text strong,
.section--fill .formatted-text ul {
    color: inherit;
}

.section--fill .formatted-text ul li::before {
    background-color: #FFF;
}

.p:not(:last-child),
.formatted-text p:not(:last-child) {
    margin-bottom: 2em;
}

.text--orange {
    color: #E45724;
}

.text--light-blue {
    color: #2499D6;
}

.text--blue {
    color: #100CA4;
}

.text--grey {
    color: #9D9D9D;
}

.text--black {
    color: #272727;
}

.title-line {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;

    line-height: 1.5;
}

.title-line::after {
    display: block;
    height: 1px;

    margin: calc(.75em - .5px) 0 calc(.75em - .5px) 1.2rem;

    flex: 1 1 auto;

    background-color: #E6E6E6;

    content: '';
}

/* Images */
.img--contain,
.img--cover {
    position: relative;

    overflow: hidden;
}

.img--contain img,
.img--cover img {
    display: block;
    width: auto;
    height: auto;

    position: absolute;
    top: -10000%;
    left: -10000%;
    bottom: -10000%;
    right: -10000%;

    margin: auto;
}

.img--contain img {
    max-width: 100%;
    max-height: 100%;
}

.img--cover img {
    min-width: 1000%;
    min-height: 1000%;

    -moz-transform: scale(.1);
    -webkit-transform: scale(.1);
    -o-transform: scale(.1);
    -ms-transform: scale(.1);
    transform: scale(.1);
}

.round-image {
    display: block;
    width: 60%;
    max-width: 420px;

    position: relative;

    border: 10px solid #F7F7F7;
    border-radius: 100%;

    margin: 0 0 0 auto;
}

.round-image:not(:first-child) {
    margin-top: 50px;
}

.section > .round-image:first-child {
    margin-top: -100px;
}

.section > .round-image:last-child {
    margin-bottom: 30%;
}

.round-image:not(:last-child) {
    margin-bottom: 50px;
}

.round-image::before {
    display: block;
    width: 0;

    padding: 100% 0 0 0;

    content: '';
}

.round-image::after {
    display: block;
    width: 250%;
    height: 250%;

    position: absolute;
    top: -75%;
    left: -75%;
    z-index: -1;

    border: 160px solid #F7F7F7;
    border-radius: 100%;

    content: '';
}

.round-image-wrapper {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    border-radius: 100%;
}

.round-image--light-blue,
.round-image--light-blue::after {
    border-color: #DBF0FB;
}

.round-image--orange {
    border-color: #E45724;
}

.round-image--medium-blue {
    border-color: var(--secondary);
}

.round-image--medium-blue:empty {
    box-shadow: inset 0 0 0 90px var(--light);
}

.round-image--medium-blue::after {
    border-color: var(--secondary);
}

.round-image--blue {
    border-color: var(--primary);
}

/* Video */
.video--cover {
    position: relative;
    overflow: hidden;
}

.video--cover video {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    margin: auto;
}

.video--cover video {
    min-width: 100%;
    min-height: 100%;
}

/* Header */
.header {
    display: flex;
    width: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    padding: 20px 80px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    text-transform: uppercase;
    font-size: .8rem;
    color: #002F5C;
}

.header::before {
    display: block;
    width: 100%;
    height: 10px;

    position: absolute;
    bottom: 100%;
    left: 0;

    background-color: #FFF;

    content: '';

    opacity: 1;
    transition: opacity .15s ease;
}

.header::after {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    border-radius: 0 0 50px 50px;

    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

    content: '';

    transition: background-color .15s ease, box-shadow .15s ease, color .15s ease;
}

.header--transparent::before {
    opacity: 0;
}

.header--transparent {
    position: absolute;
    top: 10px;

    color: #FFF;
}

.header--transparent::after {
    background-color: transparent;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
}

.header-logo,
.header-logo-image {
    display: block;
}

.header-logo {
    position: relative;
}

.header-logo::after {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background-image: url(img/assets/logo-white.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0;

    content: '';

    transition: opacity .15s ease;
}

.header--transparent .header-logo::after {
    opacity: 1;
}

.header-logo-image {
    width: 87px;
    height: auto;

    opacity: 1;

    transition: opacity .15s ease;
}

.header--transparent .header-logo-image {
    opacity: 0;
}

.header-search {
    display: flex;
    max-width: 300px;

    position: relative;
    z-index: 1;

    padding: 0 0 0 10px;
    border-left: 1px solid #F0F0F0;
    margin: 0 auto 0 25px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    flex: 1 1 auto;
}

.header-search-submit {
    display: flex;
    width: calc(1rem + 30px);
    height: calc(1rem + 30px);

    position: relative;
    z-index: 1;

    margin: 0 calc(-1rem - 30px) 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.header-search-input {
    display: block;
    width: 100%;
    height: calc(1rem + 30px);

    padding: 0 0 0 calc(1rem + 30px);
}

.header-search-input::-webkit-input-placeholder {
    color: #002F5C;
}

.header-search-input::-moz-placeholder {
    color: #002F5C;
}

.header-search-input:-ms-input-placeholder {
    color: #002F5C;
}

.header-search-input:-moz-placeholder {
    color: #002F5C;
}

.header--transparent .header-search-input::-webkit-input-placeholder {
    color: #FFF;
}

.header--transparent .header-search-input::-moz-placeholder {
    color: #FFF;
}

.header--transparent .header-search-input:-ms-input-placeholder {
    color: #FFF;
}

.header--transparent .header-search-input:-moz-placeholder {
    color: #FFF;
}

.header-menu .header-search {
    display: none;
}

.header-menu {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-self: stretch;
}

.header-menu-controls {
    display: none;
}

.header-menu-list {
    display: flex;

    margin: -20px 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
}

.header--transparent .header-menu .header-menu-list {
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

.header--transparent .header-menu .header-menu-list:hover {
    border-color: #FFF;
}

.header-menu-item {
    display: flex;

    position: relative;

    padding: 20px 0;
    margin: 0 20px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.header-menu-link {
    display: block;
    padding: 5px;
    margin: -5px;

    white-space: nowrap;
    transition: color .15s ease;
}

.header-menu-link:hover,
.header-menu-link--current {
    color: var(--primary);
}
.header--transparent .header-menu-link:hover,
.header--transparent .header-menu-link--current {
    color: var(--black);
}

.header-menu-toggle {
    display: none;
}

.header-menu-dropdown {
    display: block;

    position: absolute;
    top: 100%;
    left: -45px;
    z-index: -1;

    padding: 25px 45px;
    border-radius: 0 0 20px 20px;

    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,.05);

    white-space: nowrap;

    transform: translateY(-100%);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
    color: #002F5C;
}

:hover > .header-menu-dropdown {
    opacity: 1;
    transform: translateY(0);
}

.header--transparent .header-menu-dropdown {
    left: -1000000px;
    background-color: var(--black);
    color: var(--white);
    transform: translateY(0);
    opacity: 0;
    transition: opacity .2s ease, left .1ms linear .2s;
}

.header--transparent :hover > .header-menu-dropdown {
    left: -45px;
    opacity: 1;
    transition: opacity .2s ease;
}

.header-menu-dropdown-item {
    display: block;
    width: 100%;
}

.header-menu-dropdown-item:not(:last-child) {
    margin-bottom: 5px;
}

.header-menu-dropdown-link {
    position: relative;

    font-size: .75rem;
    font-weight: 600;
}

.header-menu-dropdown-link::before {
    display: block;
    width: 2px;
    height: 100%;

    position: absolute;
    top: 0;
    left: -16px;

    border-radius: 2px;

    background-color: var(--primary);

    content: '';
    pointer-events: none;
    transform: scaleY(0);
    transition: transform .2s ease;
}

.header-menu-dropdown-link--current::before,
.header-menu-dropdown-link:hover::before {
    transform: scaleY(1);
}

.hamburger {
    display: none;
}

.header-menu-button,
.hamburger-button {
    display: inline-flex;

    padding: 1rem 2rem;
    border-radius: 9999px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    line-height: 1.25;
    color: #FFF;

    transition: .15s ease;
}

.header-menu-button {
    background-color: var(--primary);
}

.header-menu-button:hover {
    background-color: var(--black);
}

.header--transparent .header-menu-button {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--primary);
}

.header--transparent .header-menu-button:hover {
    background-color: var(--primary);
    color: var(--white);
}

.header-menu-button-icon {
    margin: 0 10px 0 0;
}

.language-switcher {
    display: inline-block;

    position: relative;
    z-index: 1;

    border: 1px solid transparent;
    border-radius: 5px;
    margin: 0 -15px 0 7px;

    font-size: .8rem;
}

.language-switcher--opened,
.language-switcher:hover {
    background-color: #FFF;
    border-color: #E6E6E6;
    color: #272727;
}

.language-switcher--opened {
    z-index: 200;
    border-radius: 5px 5px 0 0;
}

.language-switcher-button,
.language-switcher-link {
    display: flex;

    padding: 7px 15px 7px 18px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.language-switcher-button {
    position: relative;

    border-radius: 10px;
    margin: -1px;
}

.language-switcher-button::after {
    display: block;

    margin: 0 0 0 10px;

    content: '\e800';
    font-family: 'Icons', sans-serif;
}

.language-switcher--opened .language-switcher-button::before {
    display: block;
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;

    content: '';
    cursor: default;
}

.language-switcher-link:hover {
    background-color: rgba(0, 0, 0, .1);
}

.language-switcher-flag {
    display: block;
    width: 20px;
    height: auto;

    margin: 0 10px 0 0;
}

.language-switcher-list {
    display: none;
    width: calc(100% + 2px);

    position: absolute;
    top: 100%;
    left: -1px;

    border: solid #E6E6E6;
    border-width: 0 1px 1px 1px;

    background-color: #FFF;

    overflow: hidden;
}

.language-switcher--opened .language-switcher-list {
    display: block;

    border-radius: 0 0 5px 5px;
}

/* Footer */
.footer {
    display: block;
    width: 100%;
}

.footer-top {
    display: flex;
    width: 100%;

    padding: 80px 100px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;

    background-color: var(--black);

    font-size: .8rem;
    color: var(--white);
}

.footer-top-col {
    display: block;
    max-width: 360px;
    line-height: 2.5;
}

.footer-top-title {
    display: block;

    margin: 0 0 1.75em 0;

    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.newsletter {
    display: flex;
    width: 360px;

    margin: 1rem 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.newsletter-wrapper {
    margin: 0 30px 0 0;

    flex: 1 1 auto;
}

.newsletter-input {
    display: block;
    width: 100%;

    padding: 1rem 0;
    border-bottom: 1px solid #FFF;

    font-size: 0.8rem;
    line-height: 1;
}

.newsletter-submit {
    display: flex;
    width: 3rem;
    height: 3rem;

    border: 1px solid #FFF;
    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    transition: .2s ease;
}

.newsletter-submit:hover {
    background-color: #FFF;
    color: #272727;
}

.footer-social-networks {
    display: flex;
    width: 3rem;

    margin: -5px;

    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.footer-social-networks-item {
    display: block;
    margin: 5px;
}

.footer-social-networks-button {
    display: flex;
    width: 3rem;
    height: 3rem;
    min-height: 3rem;

    border: 1px solid transparent;
    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    font-size: 1.3rem;
    line-height: 1;

    transition: border-color .15s ease;
}

.footer-social-networks-button:hover {
    border-color: #FFF;
}

.newsletter {
    width: auto;
}

.footer-to-top {
    display: flex;
    width: 3rem;
    min-width: 3rem;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    overflow: hidden;
}

.footer-to-top-label {
    text-transform: uppercase;
    letter-spacing: .6px;
    white-space: nowrap;
    transform: rotate(-90deg) translate(-50%, 0);
}

.footer-to-top-icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    min-height: 3rem;

    border: 1px solid #FFF;
    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    transition: .2s ease;
}

.footer-to-top:hover .footer-to-top-icon {
    background-color: #FFF;
    color: #272727;
}

.footer-bottom {
    display: block;
    width: 100%;

    padding: 50px 100px 50px 100px;
}

.footer-partners,
.footer-partners-list {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.footer-partners {
    width: 100%;

    justify-content: flex-start;
}

.footer-partners-list {
    flex: 1 1 auto;
}

.footer-partners-label {
    display: block;

    margin: 0 auto 0 0;

    text-transform: uppercase;
    font-weight: 800;
}

.footer-partners-item {
    display: block;

    margin: auto;
}

.footer-partners-item:last-child {
    margin-right: 0;
}

.footer-partners-logo {
    display: block;
    width: auto;
    max-width: 100px;
    height: auto;
    max-height: 50px;
}

.footer-bottom-separator {
    display: block;
    width: 100%;
    height: 1px;

    margin: 30px 0;

    background-color: #E6E6E6;
}

.footer-nav {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

    font-size: .8rem;
    color: #B7B7B7;
}

.footer-nav-list {
    display: flex;

    margin: -10px -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-nav-list + .footer-nav-list:last-child {
    justify-content: flex-end;
}

.footer-nav-item {
    display: block;
    margin: 10px 25px;
}

.footer-nav-link {
    font-weight: 600;
    transition: color .15s ease;
}

.footer-nav-link:hover {
    color: #272727;
}

/* Pages */
.wrapper {
    display: block;
    width: 100%;

    overflow: hidden;
}

.breadcrumb {
    display: flex;
    width: 100%;

    margin: -10px 0 50px 0;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-transform: uppercase;
    font-size: .8rem;
    line-height: 1;
    color: #B7B7B7;
}

.breadcrumb-item,
.breadcrumb-back {
    margin-top: 10px;
}

.breadcrumb-back {
    margin-right: 2rem;
}

.breadcrumb-item:not(.breadcrumb-item--current) {
    padding-right: 1em;
    border-right: 1px solid #B7B7B7;
    margin-right: 1em;
}

.breadcrumb-link,
.breadcrumb-current {
    display: inline-flex;

    margin: -.25em 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    line-height: 1.5;
}

.breadcrumb-icon {
    display: block;
    margin-right: 1rem;

    font-size: .8em;
}

.container {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
}

.container--small {
    max-width: 800px;
}

.section-group {
    display: flex;
    width: 100%;

    position: relative;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.section-group-item {
    display: block;
    width: 100%;

    flex: 1;
}

.section {
    display: block;
    width: 100%;

    position: relative;
    /* z-index: 1; */

    padding: 0 80px;
    margin: 120px 0;

    flex: 1;
}

.section + .section-group:not(.bounce) {
    margin-top: -120px;
}

.section-group + .section {
    margin-top: 0;
}

.section--fill {
    padding: 120px 100px;
    margin: 0;
}

.section--fill--big {
    padding: calc(160px + .8rem) 100px;
}

.section--grey {
    background-color: #F7F7F7;
}

.section--blue-gradient {
    background-image: linear-gradient(116deg, #100CA4, #002F5C);

    color: #FFF;
}

.section--light-gradient {
    background-image: linear-gradient(116deg, #2499D6, #DBF0FB);
    color: #FFF;
}

.section--orange-gradient {
    background-image: linear-gradient(116deg, #E45724, #FF7600);
    color: #FFF;
}

.section--home {
    overflow: hidden;
}

.section--home::before {
    display: block;
    width: 660px;
    height: 660px;

    position: absolute;
    top: -220px;
    right: -300px;
    z-index: -1;

    border: 120px solid #FFF;
    border-radius: 100%;

    content: '';

    opacity: .15;
}

.section--results {
    margin-bottom: 220px;
}

.section--results::after {
    display: block;
    width: 660px;
    height: 660px;

    position: absolute;
    top: calc(100% - 220px);
    left: calc(50% - 152px);

    border: 120px solid #FFF;
    border-radius: 100%;

    content: '';

    opacity: .3;
}

.section--contact,
.section--article {
    z-index: 1;
    overflow: hidden;
}

.section--contact:first-child::before,
.section--contact:last-child::after,
.section--team::before,
.section--team::after {
    display: block;
    width: 660px;
    height: 660px;

    position: absolute;
    z-index: -1;

    border: 120px solid #FFF;
    border-radius: 100%;

    content: '';

    opacity: .1;
}

.section--contact:first-child::before {
    top: 60px;
    left: -400px;
}

.section--contact:last-child::after {
    bottom: calc(100% - 220px);
    right: -220px;
}

.section--article::before,
.section--article::after {
    display: block;

    position: absolute;
    z-index: -1;

    border-radius: 100%;

    content: '';

    opacity: .1;
}

.section--article::before {
    width: 500px;
    height: 500px;

    bottom: -200px;
    left: -50px;

    border: 100px solid #FFF;
}

.section--article--no-img::before {
    left: calc(75% - 250px);
}

.section--article::after {
    width: 200px;
    height: 200px;

    top: -15px;
    right: 40px;

    border: 50px solid #FFF;
}

.section--article--no-img::after {
    top: 40px;
}

.section--team {
    overflow: hidden;
}

.section--team::before {
    top: calc(50% - 330px);
    left: -100px;
}

.section--team::after {
    top: -200px;
    right: -400px;
}

.section--article--no-img .section-col:last-child {
    position: relative;
    z-index: 1;
}

.section--article--no-img .section-col:last-child::after {
    display: block;
    width: 150px;
    height: 150px;

    position: absolute;
    top: -25px;
    left: calc(100% + 50px);

    border-radius: 100%;

    background-color: #FFF;

    content: '';

    opacity: .1;
}

.section--member,
.section--project,
.section--training,
.section--call-for-project {
    position: relative;
    z-index: 1;

    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 50px 0 0 50px;

    align-self: flex-start;

    color: #FFF;

    overflow: hidden;
}

.section--member {
    background-image: linear-gradient(140deg, var(--secondary), var(--primary));
}

.section--project {
    background-image: linear-gradient(140deg, var(--primary), var(--secondary));
}

.section--training,
.section--call-for-project {
    background-color: var(--primary);
}

.section--training {
    margin-bottom: 80px;
}

.section--trainers {
    padding-left: 0;
    margin-top: 80px;
}

.section--bounce::before {
    display: block;
    width: 100%;
    
    border-top: 1px solid #E6E6E6;
    margin-bottom: 40px;

    content: '';
}

.section--member::before,
.section--member::after,
.section--project::before,
.section--project::after,
.section--training::before,
.section--training::after,
.section--call-for-project::before,
.section--call-for-project::after {
    position: absolute;
    z-index: -1;

    border-radius: 100%;

    content: '';

    opacity: .3;
}

.section--member::before,
.section--project::before,
.section--training::before,
.section--call-for-project::before {
    width: 30px;
    height: 30px;

    top: 50px;
    right: 50px;

    background-color: #FFF;
}

.section--member::after,
.section--project::after,
.section--training::after,
.section--call-for-project::after {
    width: 300px;
    height: 300px;

    bottom: -110px;
    left: -110px;

    border: 80px solid #FFF;
}

.section--news {
    position: relative;
    z-index: 1;
}

.section--news::before {
    display: block;
    width: 50vw;
    height: 50vw;

    position: absolute;
    bottom: 0;
    right: -50px;
    z-index: -1;

    border: 160px solid #9D9D9D;
    border-radius: 100%;

    content: '';

    opacity: .1;
}

.section--404 {
    position: relative;
    z-index: 1;
}

.section--404::before {
    display: flex;

    position: absolute;
    top: 160px;
    right: -10vw;
    z-index: -1;

    content: '404';
    font-family: 'Gilroy', sans-serif;
    font-size: 50vw;
    font-weight: 800;
    line-height: .75;
    color: #B7B7B7;

    opacity: .1;
}

[data-background]::before {
    display: flex;
    width: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    padding: 100px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    content: attr(data-background);
    text-align: left;
    text-transform: uppercase;
    font-size: 200px;
    font-weight: 800;
    line-height: 1.2;
    color: #B7B7B7;

    transform: translate(0, -50%);
    opacity: .1;

    pointer-events: none;
    overflow: hidden;
}

.data-background--nowrap::before {
    white-space: nowrap;
}

.section-header {
    display: flex;
    width: 100%;

    margin: 0 0 60px 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.section-header--50{
    max-width: 50%;
}

.section-header-buttons {
    display: flex;

    margin: 0 -7.5px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.section-header-buttons:not(:last-child) {
    margin-right: 22.5px;
}

.section-header-buttons > * {
    margin: 0 7.5px;
}

.section-header-line {
    display: block;

    height: 1px;

    flex: 1 1 auto;

    background-color: #E6E6E6;
}

.section-header-line:not(:first-child) {
    margin-left: 30px;
}

.section-header-line:not(:last-child) {
    margin-right: 30px;
}

.section-body {
    display: block;
    width: 100%;

    padding: 0 0 0 calc(4rem + 50px);
}

.section-icon {
    display: flex;
    height: 4rem;
    width: 4rem;

    position: relative;
    z-index: 1;

    padding: 1rem 0 0 1rem;
    border-radius: 100%;

    font-size: 3.25rem;
    line-height: 1;
}

.section-icon:not(:last-child) {
    margin-bottom: 2rem;
}

.section-header .section-icon:not(:last-child) {
    margin: 0 50px 0 0;
}

.section-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 3.25rem;
    max-height: 3.25rem;

    margin: auto;
}

.section-icon::after {
    display: block;
    width: 4rem;
    height: 4rem;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    border-radius: 100%;

    background-color: #B7B7B7;

    content: '';

    opacity: .2;
}

.section-icon--orange {
    color: #E45724;
}

.section-icon--orange::after {
    background-color: #E45724;
}

.section-anchor {
    display: block;
    width: 4rem;
    min-width: 4rem;

    position: relative;

    margin-right: 50px;
}

.section-anchor-label {
    display: block;

    position: absolute;
    top: 0;
    right: 100%;

    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;

    transform: rotate(-90deg);
    transform-origin: top right;
}

.section-anchor + .section-col {
    width: calc(100% - 50px - 4rem);
}

.section-title {
    flex: 1 1 auto;
}

.section-title:not(:last-child) {
    margin: 0;
    width: 50%;
}

.section-row {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.section-row:not(:last-child) {
    margin: 0 0 50px 0;
}

.section-col {
    width: 100%;
    flex: 1 1 auto;
}

.section-col--6 {
    width: calc(50% - 50px);
    flex: 0 0 auto;
}

.section-col:not(:last-child) {
    margin-right: 100px;
}

.section-col--video,
.section-col--image {
    width: calc(50% + 100px);
    align-self: center;
    flex: 0 0 calc(50% + 100px);
}

.section-col--video::before,
.section-col--image::before {
    display: block;
    width: 0;

    padding: 56.25% 0 0 0;

    content: '';
}

.section-col--video:first-child,
.section-col--video:first-child video,
.section-col--image:first-child {
    border-radius: 0 50px 50px 0;
}

.section-col--video:first-child,
.section-col--image:first-child {
    margin-left: -100px;
}

.section-col--video:last-child,
.section-col--video:last-child video,
.section-col--image:last-child {
    border-radius: 50px 0 0 50px;
}

.section-col--video:last-child,
.section-col--image:last-child {
    margin-right: -100px;
}

.section-separator {
    display: block;
    width: 100%;
    height: 1px;

    margin: 50px 0;

    background-color: #E6E6E6;
}

.section-stamp {
    display: block;
    width: 120px;
    height: 120px;

    border-radius: 100%;
    margin: calc((-120px + 4rem) / 2) 0;
}

/* Collapsible */
.collapsible {
    display: block;
    width: 100%;
}

.collapsible:not(:last-child) {
    margin-bottom: 80px;
}

.collapsible-header {
    display: flex;
    width: 100%;

    padding: 0 0 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    color: rgba(255, 255, 255, .4);

    cursor: pointer;

    transition: color .2s ease;
}

.collapsible-header:not(:last-child) {
    margin-bottom: 0;
}

.collapsible--opened .collapsible-header,
.collapsible-header:hover {
    color: #fff;
}

.collapsible-header::after {
    content: '\e82e';
    font-family: 'icons', sans-serif;
    color: #fff;

    transition: transform .2s ease;
}

.collapsible--opened .collapsible-header::after {
    transform: rotate(-45deg);
}

.collapsible-body {
    display: flex;
    width: 100%;

    padding: 30px 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.collapsible:not(.collapsible--opened) .collapsible-body {
    display: none;
}

.collapsible-list {
    display: block;
    width: calc((100% - 1px) / 1.5 - 25px);

    column-count: 2;
    column-gap: 50px;
}

.collapsible-list {
    padding-right: 50px;
    border-right: 1px solid #fff;
    margin-right: 50px;
}

.collapsible-list-item {
    display: block;

    position: relative;

    padding-left: 25px;
}

.collapsible-list-item:not(:last-child) {
    margin-bottom: 10px;
}

.collapsible-list-item::before {
    display: block;
    width: 25px;

    position: absolute;
    top: 0;
    left: 0;

    content: '\e81c';
    font-family: 'icons', sans-serif;
}

.collapsible-contact {
    display: flex;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 auto;

    font-weight: 700;
}

.collapsible-contact > * {
    display: block;
    width: 100%;
}

.collapsible-contact-name {
    margin-top: auto;
    text-transform: uppercase;
}

/* Services */
.services {
    display: flex;
    width: calc(100% + 50px);

    margin: -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.service {
    display: block;
    width: calc(25% - 50px);

    margin: 25px;
}

.service-text:not(:first-child) {
    margin-top: 30px;
}

.services-cta {
    display: flex;
    width: calc(25% + 80px);

    position: relative;
    z-index: 1;

    padding: 60px;
    border-radius: 50px 0 0 0;
    margin: 25px -55px -95px -25px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    background-image: linear-gradient(180deg, var(--primary), var(--secondary));

    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFF;

    overflow: hidden;
}

.services-cta-text {
    display: block;
    width: 100%;

    margin: 0 0 2rem 0;
}

/* Forms */
.form-instruction {
    display: block;
    width: 100%;

    margin: 0 0 50px 0;

    font-size: .8rem;
    font-weight: 500;
    color: #9D9D9D;
}

.form-section {
    display: block;
    width: 100%;
}

.form-section:not(:last-child) {
    margin: 0 0 30px 0;
}

.form-group p{
    display: flex;
    width: calc(100% + 50px);

    margin: -15px -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-item {
    display: block;

    margin: 15px 25px;
}

.form-item--4 {
    width: calc((100% - 1px) / 3 - 50px);
}

.form-item--6 {
    width: calc((100% - 1px) / 2 - 50px);
}

.form-item--8 {
    width: calc((100% - 1px) / 1.5 - 50px);
}

.form-item--12 {
    width: calc(100% - 50px);
}

.form-label {
    display: block;
    width: 100%;

    font-size: .8rem;
    color: #9D9D9D;
}

.form-input,
.form-textarea {
    display: block;
    width: 100%;

    padding: .5rem 0;
    border-bottom: 1px solid #E6E6E6;

    line-height: 1rem;
}

.form-textarea {
    height: 4rem;
    min-height: 4rem;
    resize: vertical;
}

.form-checkbox label {
    display: inline-block;
    max-width: 100%;

    position: relative;

    cursor: pointer;
}

.form-checkbox input {
    width: 0;
    height: 0;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1000;

    opacity: 0;
}

.form-checkbox .wpcf7-list-item-label {
    display: inline-flex;
    max-width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    line-height: 1.5;
}

.form-checkbox .wpcf7-list-item-label::before {
    display: block;
    width: 1em;
    min-width: 1em;
    height: 1em;

    border: 1px solid #E6E6E6;
    border-radius: 100%;
    margin: .2em 1em 0 0;

    content: '';
}

.form-checkbox label:hover .wpcf7-list-item-label::before,
.form-checkbox input:checked + .wpcf7-list-item-label::before {
    border-color: #272727;
}

.form-checkbox input:checked + .wpcf7-list-item-label::before {
    background-color: #272727;
    box-shadow: inset 0 0 0 2px #FFF;
}

.form-checkbox--blue label:hover .wpcf7-list-item-label::before,
.form-checkbox--blue input:checked + .wpcf7-list-item-label::before {
    border-color: var(--primary);
}

.form-checkbox--blue input:checked + .wpcf7-list-item-label::before {
    background-color: var(--primary);
}

.form-checkbox--orange label:hover .wpcf7-list-item-label::before,
.form-checkbox--orange input:checked + .wpcf7-list-item-label::before {
    border-color: #E45724;
}

.form-checkbox--orange input:checked + .wpcf7-list-item-label::before {
    background-color: #E45724;
}

.form-file {
    display: flex;
    width: 100%;

    position: relative;

    padding: 1rem 0;
    border-bottom: 1px solid #E6E6E6;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    font-size: .8rem;
    line-height: 1rem;
}

.form-file-icon {
    display: flex;
    width: 1rem;
    height: 1rem;

    margin: 0 1rem;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.form-file-label {
    display: block;
}

.form-file-label:empty::before {
    content: attr(data-placeholder);
    color: #9D9D9D;
}

.form-file .wpcf7-form-control-wrap,
.form-file input {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

.form-file input {
    opacity: 0;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;

    position: relative;
}

.wpcf7-not-valid-tip {
    display: block;
    width: 100%;

    position: absolute;
    top: 100%;
    left: 0;

    font-size: .8rem;
    color: #F00;
}

.wpcf7-response-output {
    display: block;
    width: 100%;

    padding: 2.25rem 1rem .75rem 1rem;
    margin: -1.5rem 0 0 0;

    line-height: 1.5;
}

.wpcf7-validation-errors {
    background-color: rgba(255, 0, 0, .1);
    color: #F00;
}

.wpcf7 {
    display: block;
    width: 100%;

    position: relative;
}

.screen-reader-response {
    display: block;
    width: 0;
    height: 0;

    position: absolute;
    top: 0;
    height: 0;
    z-index: -1000;

    overflow: hidden;
    opacity: 0;
}

/* Home */
.home-services {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.home-services-text {
    display: block;
    width: calc(35% - 50px);
}

.home-services-graph {
    display: block;
    width: calc(65% - 50px);

    margin: 0 0 0 100px;
}

.graph {
    display: block;
    width: 100%;
    max-width: 460px;

    position: relative;

    margin: 0 auto 5rem auto;
}

.graph::before {
    display: block;
    width: 0;

    padding: 100% 0 0 0;

    content: '';
}

.graph-circle {
    display: block;

    position: absolute;

    border: 1px solid #E6E6E6;
    border-radius: 100%;
}

.graph-circle--big {
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
}

.graph-circle--small {
    display: flex;
    width: 50%;
    height: 50%;

    top: 25%;
    left: 25%;

    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.graph-point {
    display: flex;

    position: relative;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    color: var(--primary);
}

.graph-point--vertical {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.graph-point:not(.graph-point--center) {
    position: absolute;
}

.graph-point--left,
.graph-point--right {
    top: calc(50% - 1.5rem);
}

.graph-point--left {
    right: calc(100% + 1px - 1.5rem);
}

.graph-point--right {
    left: calc(100% + 1px - 1.5rem);
}

.graph-point--bottom {
    top: calc(100% + 1px - 1.5rem);
    left: 50%;

    transform: translate(-50%, 0);
}

.graph-icon {
    display: flex;
    width: 3.25rem;
    height: 3.25rem;

    position: relative;

    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);

    font-size: 1.2rem;
    line-height: 1;
}

.graph-icon--big {
    width: 4.5rem;
    height: 4.5rem;

    font-size: 1.5rem;
}

.graph-icon--orange {
    background-color: #E45724;
    color: #FFF;
}

.graph-label {
    display: block;

    position: absolute;

    text-transform: uppercase;
    font-weight: 800;
}

.graph-point--bottom .graph-label,
.graph-point--center .graph-label {
    top: calc(100% + 1em);
    left: 50%;

    transform: translateX(-50%);
}

.graph-point--left .graph-label {
    right: calc(100% + 1em);
    top: 50%;

    transform: translateY(-50%);
}

.graph-point--right .graph-label {
    left: calc(100% + 1em);
    top: 50%;

    transform: translateY(-50%);
}

.graph-beacon {
    display: block;
    width: 8px;
    height: 8px;

    position: absolute;
    bottom: calc(100% + 5px);
    left: calc(100% + 5px);
    z-index: 10;


    border-radius: 100%;

    background-color: var(--primary);
}

.graph-beacon::before,
.graph-beacon::after {
    display: block;
    width: 30px;
    height: 30px;

    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);

    border: 1px solid rgba(16, 12, 164, .12);
    border-radius: 100%;

    background-color: rgba(16, 12, 164, .14);

    content: '';

    opacity: 0;

    animation-name: beacon;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.25, .46, .45, .94);
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}

.graph-beacon::after {
    animation-delay: .45s;
}

.graph-beacon--disabled {
    background-color: rgba(16, 12, 164, .5);
}

.graph-beacon--disabled::before,
.graph-beacon--disabled::after {
    animation-iteration-count: 1;
}

.graph-tooltip {
    display: none;
    width: auto;
    min-width: 220px;

    position: absolute;
    bottom: calc(100% + .75rem);
    left: calc(-.5rem + 2px);
    z-index: 100;

    padding: .8rem 1rem;

    background-color: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

    font-size: .8rem;
    line-height: 1.6;
    color: #B7B7B7;
}

:hover > .graph-tooltip {
    display: block;
}

.graph-tooltip::before {
    display: block;
    width: 0;
    height: 0;

    position: absolute;
    top: 100%;
    left: 0;

    border: .5rem solid;
    border-color: #FFF transparent transparent transparent;

    content: '';
}

@keyframes beacon {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.results {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.results-data {
    display: block;
    width: calc(50% - 100px);

    margin: 0 100px 0 0;
}

.figures {
    display: flex;
    width: 100%;

    margin: -40px 0;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.figures-item {
    display: block;
    width: 50%;

    position: relative;

    padding: 0 20px;
    margin: 40px 0;

    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
}

.figures--wide .figures-item {
    width: 20%;
}

.figures-figure,
.figures-label {
    display: block;
    width: 100%;
}

.figures-figure {
    font-size: 2rem;
}

.figures-item::before {
    display: block;
    width: 5px;
    height: 100%;

    position: absolute;
    bottom: 0;
    left: 0;

    background-color: var(--secondary);

    content: '';
}

.results-image {
    display: block;
    width: calc(50% + 100px);

    border-radius: 50px 0 0 50px;
    margin: 0 -100px -220px 0;
}

.cta {
    display: block;
    width: 100%;
    position: relative;
    padding: 100px calc(150px + 4rem) 100px 120px;
    border-radius: 50px;
    background-color: var(--light);
}

.cta-stamp {
    display: block;
    width: 260px;
    height: 260px;

    position: absolute;
    top: 120px;
    right: 100px;

    overflow: hidden;
}

.cta-stamp::before,
.cta-stamp::after {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    content: '';
}

.cta-stamp::before {
    background-image: url(img/assets/join-stamp.svg);

    animation: spin 20s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(-360deg);
    }
}

.cta-stamp::after {
    background-image: url(img/assets/join-icon.svg);
}

.cta-container {
    width: 60%;
    max-width: calc(100% + 4rem - 260px);
}

.cta-container-text {
    color: #bbb;
}

.cta-icon {
    margin-left: calc(-4rem - 40px);
}

.cta-list {
    display: flex;
    width: calc(100% + 80px);

    margin: 25px -40px -25px -40px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.cta-list::before,
.cta-list-item {
    display: block;
    width: calc(25% - 80px);

    margin: 25px 40px;
}

.cta-list::before {
    order: 1;

    content: '';
}

.cta-list-item {
    padding: 0 0 25px 0;
    border-bottom: 1px solid var(--black);

    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.cta-list-item:nth-child(n+4) {
    order: 1;
}

.cta-list-icon {
    display: block;
    width: auto;
    height: auto;
    max-height: 1.25rem;

    margin: 0 0 1rem 0;
}

.members-slider {
    display: flex;
    width: calc(100% + 200px);

    margin: 0 -100px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.members-slider-list {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    flex: 0 0 auto;
    animation-name: members;
    animation-duration: 250s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.members-slider-item {
    display: block;

    margin: 0 0 0 100px;
}

.members-slider-logo {
    display: block;
    /* width: auto;
    height: auto; */
    max-width: 150px;
    max-height: 60px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.members-slider-logo:hover {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.members-slider:hover .members-slider-list {
    animation-play-state: paused;
}

@keyframes members {
    to {
        transform: translate(-100%, 0);
    }
}

.featured {
    display: flex;
    width: calc(100% + 80px);

    margin: 0 -40px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.featured-col {
    display: flex;
    width: 50%;

    padding: 0 40px;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.featured-col:not(.featured-col--no-border):not(:last-child) {
    border-right: 1px solid #E6E6E6;
}
.featured-col-100 {
    width: 100%;
}

.featured-slider,
.featured-slider-home-news {
    display: flex;
    width: 100%;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.featured-slider-track {
    display: block;
    width: calc(100% + 140px);

    margin: 0 -40px 0 -100px;

    flex: 1 1 auto;
}

.featured-slider-controls {
    display: flex;
    width: 100%;

    margin: 30px 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.featured-slider-button {
    margin: -1.625rem 0;
}

.featured-slider-dots {
    display: flex;

    margin: 0 0 0 auto;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.slick-dots {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.slick-dots li {
    display: block;
    width: .6rem;
    height: .6rem;

    border-radius: 100%;
    margin: 5px;

    background-color: #272727;

    opacity: .5;
}

.slick-dots button {
    display: block;
    width: 1.2rem;
    height: 1.2rem;

    border-radius: 100%;
    margin: -.3rem;

    opacity: 0;
}

.slick-dots li.slick-active {
    opacity: 1;
}

.featured-list {
    display: flex;
    width: calc(100% + 40px);

    margin: -20px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.featured-item {
    display: flex;
    width: calc(50% - 40px);

    border-radius: 10px;
    margin: 20px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    background-color: #100CA4;

    font-size: 1.3rem;
    color: #FFF;
}

.featured-item::before {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background-image: linear-gradient(to top, var(--black), rgba(6, 0, 23, 0));

    content: '';
}

.featured-item::after {
    display: block;
    width: 0;

    padding: 75% 0 0 0;

    content: '';
}

.featured-slider-item {
    display: flex;

    padding: 0 40px 0 100px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.featured-slider-item .featured-item {
    width: 100%;
    margin: 0;

    font-size: 1.6rem;
}

.featured-slider-item .featured-item::after {
    padding: calc((100% + 15px) * .75) 0 0 0;
}

.featured-item-wrapper {
    display: flex;
    width: 100%;

    position: relative;
    z-index: 1;

    padding: 1.5em;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.featured-item-wrapper::before {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    background-image: linear-gradient(to top, var(--primary), rgba(126, 84, 255, 0));

    content: '';

    opacity: 0;
    transition: opacity .15s ease;
}

.featured-item:hover .featured-item-wrapper::before {
    opacity: 1;
}

.featured-item-row, .featured-item-row-home {
    display: flex;
    width: 100%;

    position: relative;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.featured-item-row:not(:last-child):not(:first-child), .featured-item-row-home:not(:last-child):not(:first-child) {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.featured-item-row:first-child {
    margin-bottom: auto;
}

.featured-item-row:last-child, .featured-item-row-home:last-child  {
    margin-top: auto;
}

.featured-info {
    display: block;
    max-width: 100%;

    line-height: 1.5;
}

.featured-dash {
    display: block;
    width: 30px;
    height: 1px;

    margin: 30px auto 30px 0;

    background-color: #FFF;
}

.featured-tag {
    font-size: .8rem;
}

.featured-date {
    font-size: 1rem;
}

.featured-button {
    opacity: 0;

    transition: opacity .15s ease;
}

.featured-item:hover .featured-button {
    opacity: 1;
}

.featured-tag {
    transform: translate(-50%, 0);
    opacity: 0;

    transition: .15s ease;
}

.featured-item:hover .featured-tag {
    transform: translate(0, 0);
    opacity: 1;
}

.featured-link {
    margin-left: auto;

    transform: translate(0, 100%);
    opacity: 0;

    transition: .15s ease;
}

.featured-item:hover .featured-link {
    transform: translate(0, 0);
    opacity: 1;
}

.featured-icon {
    position: absolute;
    bottom: 0;
    right: 0;

    transition: .15s ease;
}

.featured-item:hover .featured-icon {
    transform: translate(0, -100%);
    opacity: 0;
}

.featured-cards {
    display: flex;
    width: 100%;

    padding: 50px;
    border-radius: 10px;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    background-color: #F7F7F7;

    flex: 1 1 auto;
}

.featured-card {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    flex: 1 1 auto;
}

.featured-card:not(:last-child) {
    margin-bottom: 50px;
}

.featured-card:first-child:last-child {
    margin: auto 0;
    flex: 0 0 auto;
}

/* Activity */
.activity-slider {
    display: block;
    width: 100%;

    position: relative;

    overflow: hidden;
}

.activity-slider-dots {
    display: flex;
    width: calc(50% - 100px);

    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.activity-slider-dot {
    display: block;
    width: 80px;
    height: 80px;

    border-radius: 100%;
}

.activity-slider-dot:not(:last-child) {
    margin: 0 20px 0 0;
}

.activity-slider-progress {
    display: none;
    width: 100%;
    height: 100%;

    position: relative;
    z-index: 1;
}

.activity-slider-dot--current .activity-slider-progress {
    display: block;
}

.activity-slider-progress-circle {
    fill: transparent;
    stroke: rgba(0, 0, 0, .5);
    stroke-dasharray: 252, 252;
    stroke-dashoffset: 252;

    transform: rotate(90deg);
    transform-origin: center;

    animation: progress-circle 8s linear forwards .5s;
}

@keyframes progress-circle {
    to {
        stroke-dashoffset: 0;
    }
}

.activity-slider-item {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.activity-slider-image {
    display: block;
    width: 50%;

    border-radius: 20px;
    margin: 0 100px 0 0;
}

.activity-slider-content {
    display: block;
    width: calc(50% - 100px);

    padding: 140px 0;
}

/* Team */
.team {
    display: flex;
    width: calc(100% + 50px);

    position: relative;
    z-index: 1;

    margin: -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.team::before {
    display: block;
    width: 200%;
    height: calc(50% + 100px);

    position: absolute;
    top: 50%;
    left: -50%;
    z-index: -1;

    background-color: #FFF;

    content: '';
}

.team-member {
    display: flex;
    width: calc(20% - 50px);

    position: relative;
    z-index: 1;

    border-radius: 10px;
    margin: 25px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    overflow: hidden;
}

.team-member::before {
    display: block;
    width: 0;

    padding: 115% 0 0 0;

    content: '';
}

.team-member-image {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.team-member-photo {
    z-index: -1;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.team-member-photo--blurred {
    opacity: 0;
    -webkit-filter: blur(30px) grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: blur(30px) grayscale(100%);

    transition: opacity .2s ease;
}

.team-member-wrapper {
    display: flex;
    width: 100%;

    padding: 30px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(126, 84, 255, 0.4);

    text-align: center;

    opacity: 0;

    transition: opacity .2s ease;
}

.team-member:hover .team-member-photo--blurred {
    opacity: 1;
}

.team-member:hover .team-member-wrapper {
    opacity: 1;
}

.team-member-name {
    display: block;
    width: 100%;

    margin: 0 0 10px 0;

    text-transform: uppercase;
    font-weight: 700;
}

.team-member-role {
    display: block;
    width: 100%;

    margin: 0 0 10px 0;

    text-transform: uppercase;
}

.team-member-info {
    display: block;
    width: 100%;
}

/* Map */
.map {
    display: flex;
    width: calc(100% + 100px);

    margin: 0 -100px 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.map-poles {
    display: block;
    width: 350px;
    height: 730px;
    max-height: calc(100vh - (3rem + 140px));

    overflow: auto;
}

.map-pole {
    width: 100%;

    padding: 25px;
    border-left: 2px solid transparent;

    transition: .2s ease;
}

.map-pole .pole-title {
    cursor: pointer;

    transition: color .2s ease;
}

.map-pole .pole-title:hover {
    color: #E45724;
}

.map-pole--selected {
    border-color: var(--secondary);
    background-color: var(--light);
}

.map-container {
    display: block;

    position: relative;
    z-index: 1;

    flex: 1 1 auto;
}

.map-container::before {
    display: block;
    width: 40%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));

    content: '';
    pointer-events: none;
}

/* Organisation */
.organisation {
    display: flex;
    width: calc(100% + 100px);

    margin: 0 -100px 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.organisation-slider {
    display: block;
    width: calc((100% - 100px) / 2);
}

.organisation-slider-track {
    display: block;
    width: 100%;

    overflow: hidden;
}

.organisation-slider-item {
    display: block;
}

.organisation-slider-icon {
    display: flex;
    width: 5rem;
    height: 5rem;

    border-radius: 100%;
    margin: 0 0 30px 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: var(--primary);

    font-size: 2.5rem;
    color: var(--white);
}

.organisation-slider-controls {
    display: flex;
    width: 100%;

    margin: 30px 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.organisation-slider-dots {
    display: flex;

    margin: 0 0 0 auto;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.organisation-themes {
    display: flex;
    max-width: calc((100% - 100px) / 2 - 100px);

    margin: auto;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.organisation-theme {
    display: block;
    max-width: 100%;

    line-height: 1.3;

    opacity: .2;
    cursor: pointer;

    transition: opacity .2s ease;
}

.organisation-theme:not(:last-child) {
    margin: 0 0 30px 0;
}

.organisation-theme:not(.organisation-theme--current):hover {
    opacity: .6;
}

.organisation-theme--current {
    opacity: 1;
}

.organisation-title {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.organisation-title:not(:last-child) {
    margin: 0 0 30px 0;
}

.organisation-theme-icon {
    display: block;
    width: 1em;

    margin: 0 1em 0 0;

    text-align: center;
}

/* Contact */
.poles {
    display: flex;
    width: calc(100% + 50px);

    margin: 25px -25px -25px -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.pole {
    display: block;
    width: calc(50% - 50px);

    margin: 25px;
}

.pole-title:not(:last-child) {
    margin-bottom: 10px;
}

.pole-description {
    display: block;

    color: var(--primary);
}

.pole-address,
.pole-phone {
    font-weight: 500;
}

.pole-phone i {
    margin-right: 10px;
}

/* Search */
.search-form {
    display: flex;
    width: 100%;
    max-width: 800px;

    margin: 150px auto 0 auto;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    font-size: 60px;
    line-height: 1;
    color: #B7B7B7;
}

.search-form-submit {
    display: flex;
    width: calc(1em + 40px);
    height: calc(1em + 40px);

    margin: 0 calc(-1em - 40px) 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.search-form-submit::before {
    font-size: .7em;
}

.search-form-input {
    display: block;
    width: 100%;

    padding: 0 0 0 calc(1em + 40px);
    border-bottom: 1px solid #B7B7B7;

    font-weight: 600;
}

.cards {
    display: flex;
    width: 100%;

    margin: 100px 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.cards-wrapper {
    display: block;
    width: 75%;

    flex: 1 1 auto;
}

.cards-list {
    display: flex;
    width: calc(100% + 80px);

    position: relative;

    margin: -25px -40px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;

    overflow: hidden;
}

.cards-list::before {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;

    background-color: #FFF;

    content: '';

    opacity: 0;

    transition: opacity .2s ease, left .1ms linear .2s;
}

.cards-list::after {
    display: block;
    width: 50px;
    height: 50px;

    position: absolute;
    top: calc(50% - 25px);
    left: 100%;
    z-index: 11;

    border: 2px solid;
    border-color: #272727 #272727 #272727 transparent;
    border-radius: 100%;

    content: '';

    opacity: 0;

    transition: opacity .2s ease, left .1ms linear .2s;
    animation: spin .6s linear infinite;
}

.cards-wrapper--loading .cards-list::before {
    left: 0;

    opacity: 1;

    transition: opacity .2s ease;
}

.cards-wrapper--loading .cards-list::after {
    left: calc(50% - 25px);

    opacity: 1;

    transition: opacity .2s ease;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.cards-wrapper--orange .cards-list::after {
    border-color: #E45724 #E45724 #E45724 transparent;
}

.cards-wrapper--blue .cards-list::after {
    border-color: #100CA4 #100CA4 #100CA4 transparent;
}

.cards-item {
    display: flex;
    width: calc(50% - 80px);

    margin: 25px 40px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.cards-controls {
    display: flex;
    width: 100%;

    margin: 50px 0 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.cards-pagination {
    display: flex;

    margin: -5px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.cards-pagination-item {
    display: block;

    margin: 5px;
}

.cards-pagination-ellipsis {
    display: block;
    width: 2.5rem;

    text-align: center;
}

.cards-pagination-button {
    display: flex;
    width: 3.25rem;
    height: 3.25rem;

    border-radius: 10px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: #272727;

    color: #FFF;

    transition: .2s ease;
}

.cards-pagination-button:hover {
    background-color: #151515;
}

.cards-pagination-button--orange {
    background-color: #E45724;
}

.cards-pagination-button--orange:hover {
    background-color: #B4461E;
}

.cards-pagination-button--blue {
    background-color: #100CA4;
}

.cards-pagination-button--blue:hover {
    background-color: #0E0A77;
}

.cards-pagination-button--current {
    background-color: #000;
}

.cards-pagination-button--current.cards-pagination-button--orange {
    background-color: #B4461E;
}

.cards-pagination-button--current.cards-pagination-button--blue {
    background-color: #0E0A77;
}

.card {
    display: flex;
    width: 100%;

    position: relative;

    padding: 0 30px 0 0;
    border: 1px solid #E6E6E6;
    border-radius: 10px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    overflow: hidden;

    transition: background-color .2s ease, color .2s ease;
    ;
}

.card-limit {
    display: flex;
    min-width: 200px;
    min-height: 200px;

    position: relative;

    padding: 15px;
    border-right: 1px solid #E6E6E6;
    margin: 0 30px 0 0;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--secondary);

    color: #FFF;
}

.card-limit::before,
.card-limit::after {
    opacity: 0;

    transition: opacity .2s ease;
}

.card:hover .card-limit::before,
.card:hover .card-limit::after {
    opacity: 1;
}

.card-limit::before {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background-color: rgba(0, 0, 0, .3);

    content: '';
}

.card-limit::after {
    display: flex;
    width: 3rem;
    height: 3rem;

    position: absolute;
    top: calc(50% - 1.5rem);
    left: calc(50% - 1.5rem);
    z-index: 1;

    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: #FFF;

    content: '\e81c';
    text-align: center;
    font-family: 'Icons', sans-serif;
    color: #2499D6;
}

.card-limit-icon {
    display: block;

    margin: 0 0 15px 0;

    font-size: 1.5rem;
    line-height: 1;
}

.card-limit-label {
    display: block;

    margin: 0 0 20px 0;
}

.card-limit-date {
    display: block;

    font-size: 1.125rem;
    font-weight: 500;
}

.card-image {
    display: flex;
    min-width: 200px;
    min-height: 200px;

    position: relative;

    padding: 15px;
    border-right: 1px solid #E6E6E6;
    margin: 0 30px 0 0;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    /* background-color: #F7F7F7; */
    background-color: #FFF;
}

.card--no-min .card-image {
    min-height: 0;
}

.card-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.card--blue .card-image-placeholder {
    background-color: #002F5C;
    color: #FFF
}

.card-image::before,
.card-image::after {
    opacity: 0;

    transition: opacity .2s ease;
}

.card:hover .card-image::before,
.card:hover .card-image::after {
    opacity: 1;
}

.card-image::before {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    background-color: rgba(0, 0, 0, .3);

    content: '';
}

.card-image::after {
    display: flex;
    width: 3rem;
    height: 3rem;

    position: absolute;
    top: calc(50% - 1.5rem);
    left: calc(50% - 1.5rem);
    z-index: 1;

    border-radius: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: #FFF;
    color: var(--primary);

    content: '\e81c';
    text-align: center;
    font-family: 'Icons', sans-serif;
}

.card-icons {
    display: flex;
    width: calc(100% + 10px);

    margin: -5px -5px 5px -5px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.card-icon {
    display: block;
    width: 30px;
    height: 30px;

    border-radius: 100%;
    margin: 5px;
}

.card-logo {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;

    text-transform: uppercase;
    color: #272727;
}

.card-body {
    display: flex;

    padding: 30px 0;
    /* border-bottom: 1px solid #E6E6E6; */

    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 1 auto;

    transition: border-color .2s ease;
}

.card:hover .card-body {
    border-bottom-color: transparent;
}

.card-image + .card-body {
    width: calc(100% - 200px);
}

.card-body--spacing {
    justify-content: space-between;
}

.card--no-border {
    border: 0;
}

.card--no-border .card-image {
    background-color: transparent;
    border: 0;
}

.card-tags,
.card-info {
    display: flex;
    width: calc(100% + 20px);

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;

    font-size: .8em;
}

.card-tags {
    margin: -20px -10px auto -10px;
}

.card-info {
    margin: auto -10px -20px -10px;
}

.card-tag,
.card-date,
.card-time,
.card-localisation {
    display: block;
    margin: 5px 10px;
}

.card-date {
    color: #9D9D9D;
}

.card-tag,
.card-time,
.card-localisation {
    color: var(--secondary);
}

.card-date,
.card-localisation {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.card-date::before,
.card-localisation::before {
    display: block;

    margin: 0 10px 0 0;

    font-family: 'icons';
}

.card-date::before {
    content: '\e806';
}

.card-localisation::before {
    content: '\e82a';
}

.card-title {
    display: block;
    width: 100%;

    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4rem;
}

.card-title:not(:first-child) {
    margin-top: 1rem;
}

.card-title:not(:last-child) {
    margin-bottom: 1rem;
}

.card-excerpt {
    display: block;
    width: 100%;
}

.card-excerpt:not(:last-child) {
    margin-bottom: 30px;
}

.card--blue:hover {
    background-color: var(--primary);
    color: var(--white);
}

.card--blue .card-image::after {
    color: var(--primary);
}

.card--orange:hover {
    background-color: #E45724;

    color: #FFF;
}

.card--orange .card-image::after {
    color: #E45724;
}

.cards-filters {
    display: block;
    width: calc(25% - 40px);
    min-width: calc(25% - 40px);

    padding: 0 0 0 40px;
    border-left: 1px solid #E6E6E6;
    margin: 0 0 0 40px;
}

.training-card {
    display: block;
    width: 100%;
}

.training-card-image {
    display: flex;
    width: 100%;

    padding: 15px;
    border-radius: 10px 10px 0 0;
    margin: 0 0 20px 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.training-card-image::before {
    display: block;
    width: 0;

    padding: 35% 0 0 0;

    content: '';
}

.filters {
    display: block;
    width: 100%;
}

.filters-toggle {
    display: none;
}

.filters-group {
    display: block;
    width: 100%;
}

.filters-group:not(:last-child) {
    margin-bottom: 2rem;
}

.filters-title {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;

    font-weight: 600;
    color: #9D9D9D;
}

.filters-title:not(:last-child) {
    margin-bottom: 2rem;
}

.filters-title::after {
    display: block;
    height: 1px;

    margin: 0 0 calc(1em - .5px) 1em;

    flex: 1 1 auto;

    background-color: #E6E6E6;

    content: '';
}

.filters-item {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.filters-item:not(:last-child) {
    margin: 0 0 15px 0;
}

.filters-select {
    position: relative;
}

.filters-select::after {
    display: flex;
    width: 3rem;
    height: 100%;

    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;

    padding: 0 2rem 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    content: '\e800';
    font-family: 'Icons', sans-serif;
    font-size: .8rem;
}

.filters-input {
    display: block;
    width: 100%;
    height: 3rem;

    padding: 0 2rem;

    border: 1px solid #E6E6E6;
    border-radius: 9999px;

    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
}

.filters-input:not(:last-child),
.filters-select .filters-input {
    padding-right: 5rem;
}

.filters-datepicker:focus {
    border-radius: 1.5rem 1.5rem 0 0;
}

.filters-search {
    display: flex;
    width: 5rem;
    height: 3rem;

    border-radius: 9999px;
    margin: 0 0 0 -5rem;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    transition: background-color .2s ease, color .2s ease;
}

.filters-search--blue:hover {
    background-color: #100CA4;

    color: #FFF;
}

.filters-range {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.filters-range-ui {
    width: 100%;
}

.filters-range-min,
.filters-range-max {
    display: block;
    width: 50%;
}

.filters-range-max {
    text-align: right;
}

.filters-checkbox {
    display: flex;
    width: calc(100% + 15px);

    position: relative;

    margin: -7.5px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.filters-checkbox::before {
    display: block;
    width: 100%;

    order: 1;

    content: '';
}

.filters-checkbox-input {
    width: 0;
    height: 0;

    position: absolute;
    top: 0;
    left: 0;

    border: 0;

    opacity: 0;
}

.filters-checkbox-icon {
    display: block;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;

    margin: -1rem .8rem -1rem -1rem;
}

.filters-checkbox-label {
    display: inline-flex;
    max-width: calc(100% - 15px);

    padding: 1rem 2rem;
    border: 1px solid #E6E6E6;
    border-radius: 9999px;
    margin: 7.5px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.5;

    transition: background-color .2s ease;

    order: 2;
    cursor: pointer;
}

.filters-checkbox-input:checked + .filters-checkbox-label {
    background-color: #F0F0F0;
    order: 0;
}

.filters-checkbox-input:checked + .filters-checkbox-label::after {
    display: block;
    width: .8rem;

    margin: 0 0 0 1em;

    content: '\e82d';
    text-align: center;
    font-family: 'Icons', sans-serif;
}

.archives {
    display: block;
    width: 100%;
}

.archives-item {
    display: block;
    width: 100%;
}

.archives-item:not(:last-child) {
    margin: 0 0 30px 0;
}

.archives-item-wrapper {
    display: block;
    width: 100%;

    padding: 0 0 15px 0;
    border-bottom: 1px solid #E6E6E6;

    line-height: 1.5;
}

.archives-item-title {
    display: block;
    width: 100%;

    font-size: 1.2rem;
    font-weight: 600;
}

.archives-item-title:not(:last-child) {
    margin-bottom: 10px;
}

.archives-item-excerpt {
    display: block;
    width: 100%;

    color: #9D9D9D;
}

.side-link {
    display: inline-flex;
    height: 3rem;

    position: fixed;
    top: 50%;
    right: 4.5rem;
    z-index: 900;

    padding: 0 2rem 0 0;
    border-radius: 10px 0 0 10px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;

    transform: translateX(100%);
    transition: transform .2s ease;
}

.side-link:hover {
    transform: translateX(4.5rem);
}

.side-link--blue {
    background-image: linear-gradient(102deg, #100CA4, #002F5C);

    color: #FFF;
}

.side-link--orange {
    background-image: linear-gradient(102deg, #E45724, #FF7600);

    color: #FFF;
}

.side-link-icon {
    display: block;
    min-width: 3rem;

    padding: 0 0 0 1.5rem;
    margin: 0 1rem 0 0;

    text-align: center;
}

.side-link-label {
    line-height: 1;
    opacity: 0;

    transition: opacity .2s ease;
}

.side-link:hover .side-link-label {
    opacity: 1;
}

.slider-controls {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.slider-body {
    display: block;
    width: calc(100% + 200px);

    position: relative;

    margin: 0 -100px;
}

.slider-body::before,
.slider-body::after {
    display: block;
    width: 100px;
    height: 100%;

    position: absolute;
    top: 0;
    z-index: 10;

    content: '';
}

.slider-body::before {
    left: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
}

.slider-body::after {
    right: 0;
    background-image: linear-gradient(to left, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
}

.slider-item {
    display: flex;
    width: calc((100vw - 170px) / 4 + 50px);

    padding: 0 0 0 100px;
    margin: 0 -50px 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.slider-item .featured-item {
    width: 100%;
    margin: 0;
}

.slider-item .featured-item::after {
    padding: 100% 0 0 0;
}

.social-network-card {
    display: flex;
    width: 100%;

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.social-network-card-image {
    display: block;
    width: 100%;

    padding: 40% 0 0 0;
    border-radius: 10px 10px 0 0;
}

.social-network-card-icon {
    display: flex;
    width: 3.25rem;
    height: 3.25rem;

    position: relative;
    z-index: 1;

    border: 1px solid #E6E6E6;
    border-radius: 100%;
    margin: -1.625rem auto 30px 15px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    background-color: #FFF;

    color: #100CA4;
}

.social-network-card-title {
    display: block;
    width: 100%;

    margin: 0 0 10px 0;

    font-size: 1.2rem;
    font-weight: 600;
}

.social-network-card-excerpt {
    display: block;
    width: 100%;

    margin: 0 0 30px 0;

    color: #9D9D9D;
}

.social-network-card-link {
    display: inline-block;

    /*margin: auto auto 0 0;*/

    font-size: .8rem;
    color: var(--primary);
}

.gallery {
    display: flex;
    width: calc(100% + 50px);

    margin: -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.gallery-item {
    display: block;
    width: calc(50% - 50px);

    border-radius: 10px;
    margin: 25px;
}

.gallery-item::before {
    display: block;
    width: 0;

    padding: 80% 0 0 0;

    content: '';
}

.gallery-item:nth-child(3n+3),
.gallery-item:first-child:last-child {
    width: calc(100% - 50px);
}

.gallery-item:nth-child(3n+3)::before {
    padding: calc((100% - 50px) * .4) 0 0 0;
}

.sticky-section {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.sticky-section:not(:last-child) {
    margin-bottom: 120px;
}

.sticky-section-content {
    display: block;
    width: 50%;
}

.sticky-section-image {
    display: flex;
    width: 50%;
    height: calc(100vh - 5rem - 50px);

    padding: 50px;
    border-radius: 0 0 0 50px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.sticky-section-image::before,
.sticky-section-image::after {
    display: block;

    position: absolute;
    z-index: 1;

    border-radius: 100%;

    content: '';
}

.sticky-section-image::before {
    width: 520px;
    height: 520px;

    top: -300px;
    right: -260px;

    background-color: #FFF;

    opacity: .3;
}

.sticky-section-image::after {
    width: 660px;
    height: 660px;

    bottom: -290px;
    left: -220px;

    border: 120px solid #FFF;

    opacity: .35;
}

.share {
    display: flex;

    position: relative;
    z-index: 2;

    margin: 25px;

    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.share-list {
    display: flex;
    width: 0;

    margin: -5px;

    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;

    overflow: hidden;

    transition: width .0001ms linear .2s;
}

.share--opened .share-list {
    width: calc(2rem + 10px);

    transition: none;
}

.share-list-item {
    margin: 5px;

    transform: translateY(50%);
    opacity: 0;

    transition: opacity .2s ease, transform .0001ms linear .2s;
}

.share--opened .share-list-item {
    transform: translateY(0);
    opacity: 1;
    transition: opacity .2s ease, transform .2s ease;
}

.share--opened .share-list-item:nth-child(2) {
    transition-delay: .05s, .05s;
}

.share--opened .share-list-item:nth-child(3) {
    transition-delay: .1s, .1s;
}

.share-button {
    position: relative;
    z-index: 1;

    margin: 55px 0 0 0;
}

.share-button::after {
    display: block;
    width: calc(100% + 50px);
    height: calc(100% + 50px);

    position: absolute;
    top: -25px;
    left: -25px;
    z-index: -1;

    border-radius: 100%;

    background-color: rgba(255, 255, 255, .35);

    content: '';

    transition: transform .2s ease;

    pointer-events: none;
}

.share-button:hover::after {
    transform: scale(1.1);
}

.share-button:active::after {
    transform: scale(.8);
}

/* Event */
.event-info {
    display: block;
    width: 100%;
}

.event-info:not(:last-child) {
    margin-bottom: 2rem;
}

.event-info-item {
    display: block;
    width: 100%;

    position: relative;

    padding: 0 0 0 35px;
}

.event-info-item:not(:last-child) {
    margin: 0 0 1rem 0;
}

.event-info-item::before {
    position: absolute;
    top: 0;
    left: 0;

    color: #2499D6;
}

.event-info-table td:not(:last-child) {
    padding-right: 2rem;
}

.infobar {
    display: flex;
    width: 100%;

    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 101;

    padding: 0.8rem 50px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    background-color: #FFF;

    transform: translateY(100%);

    transition: transform .2s ease;
}

.infobar--active {
    transform: translateY(0);
}

.infobar-progress {
    display: block;
    width: 100%;
    height: 3px;

    position: absolute;
    top: -1.5px;
    left: 0;

    background-color: var(--primary);

    transform: scaleX(0);
    transform-origin: center left;
}

.infobar-content {
    display: block;

    margin: 0 auto 0 0;
}

.infobar-title {
    display: block;

    margin: 0 30px 0 0;

    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

.infobar-list {
    display: flex;

    margin: 0 auto 0 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.infobar-list-item {
    display: inline-flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.infobar-list-item:not(:last-child) {
    margin-right: 30px;
}

.event-partners {
    display: flex;
    width: calc(100% + 30px);

    margin: 22.5px -15px 42.5px -15px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.event-partners-item {
    display: block;

    margin: 7.5px 15px;
}

.event-partners-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 125px;
    max-height: 75px;
}

.event-tags {
    display: flex;
    width: calc(100% + 30px);

    margin: -7.5px -15px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.event-tag {
    display: inline-block;

    margin: 7.5px 15px;

    font-weight: 500;
    color: #100CA4;
}

.event-tag::before {
    content: '#';
}

.event-tags + .h1 {
    margin-top: 10px;
}


.criteria {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.criteria-title {
    display: block;
    max-width: 400px;
}

.criteria-title:not(:last-child) {
    margin-bottom: 0;
}

.criteria-list {
    display: flex;

    margin: -25px 0;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1 1 auto;
}

.criteria-list-item {
    display: block;
    max-width: 170px;

    margin: 25px 0 25px auto;

    text-align: center;
}

.criteria-list-item .section-icon {
    margin: 0 auto;
}

.criteria-text {
    margin-top: 25px;
}

/* Single */
.single-body {
    padding-top: 30px;
}

.single-header {
    display: flex;
    width: 100%;

    margin-bottom: 50px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.single-header .h1:not(:last-child) {
    margin-bottom: 0;
}

.single-group + .title-line {
    margin-top: 3rem;
}

.single-status {
    display: inline-flex;

    padding: 1rem 2rem;
    border: 1px solid #E6E6E6;
    border-radius: 9999px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.25;
}

.single-status--3 {
    color: #2499D6;
}

.single-group {
    display: flex;
    width: calc(100% + 30px);

    margin: -10px -15px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.single-group:empty {
    display: none;
}

.single-item {
    display: block;
    width: calc(100% - 30px);

    margin: 10px 15px;
}

.single-item--auto {
    width: auto;
    max-width: calc(100% - 30px);

    align-self: center;
}

.single-item--6 {
    width: calc(50% - 30px);
}

.single-item--4 {
    width: calc((100% - 1px) / 3 - 30px);
}

.single-label {
    opacity: .5;
}

.single-label:not(:last-child) {
    margin-bottom: 10px;
}

.single-value {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    line-height: 1.5;
}

a.single-value {
    display: inline-flex;
    width: auto;
    max-width: 100%;
}

.single-value:not(:last-child) {
    margin-bottom: 10px;
}

.single-icon {
    display: block;

    margin-right: 10px;
}

img.single-icon {
    width: 2rem;
    height: 2rem;

    margin-top: -.25rem;
}

.single-icon--centered {
    font-size: 1.25em;
    align-self: center;
}

.section--training .single-icon {
    opacity: .5;
}

.single-separator {
    display: block;
    width: 100%;

    border-top: 1px solid;
    margin: 30px 0;
}

.single-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 60px;
}

.single-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 80px;
    max-height: 150px;

    border-radius: 10px;
    margin-right: 15px;
}

.single-slider {
    display: block;
    width: calc(100% + 200px);

    position: relative;

    margin: 0 -100px;
}

.single-slider:not(.slick-slider) {
    display: none;
}

.single-slider::after {
    display: block;
    width: 25vw;
    height: 100%;

    position: absolute;
    top: 0;
    right: 0;

    background-image: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));

    content: '';

    pointer-events: none;
}

.single-slider-item {
    display: flex;
    width: calc(32vw + 100px);

    padding-left: 100px;
    margin-right: -70px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.single-slider-item .cards-item {
    width: 100%;
    margin: 0;
}

/* Downloads */
.downloads {
    display: flex;
    width: calc(100% + 50px);

    margin: -25px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.downloads-item {
    display: flex;
    width: calc(50% - 50px);

    padding: 0 40px 30px 0;
    border-bottom: 1px solid #E6E6E6;
    margin: 25px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.downloads-item-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 75px;

    margin: 0 2rem 0 0;
}

.downloads-item-content {
    display: block;

    margin: 0 auto 0 0;
}

.downloads-item-title {
    display: block;

    font-size: 1.2rem;
    font-weight: 600;
}

.downloads-item-filename {
    color: #9D9D9D;
}

.downloads-item-button {
    display: inline-flex;

    padding: 0 0 0 2rem;
    border-radius: 9999px;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;

    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.25;
}

.downloads-item-button-label {
    color: var(--primary);

    opacity: 0;
    transition: .2s ease;
}

.downloads-item:hover .downloads-item-button-label {
    opacity: 1;
}

.downloads-item-button-icon {
    display: flex;
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;

    border-radius: 100%;
    margin: 0 0 0 2rem;

    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: var(--primary);

    font-size: 1rem;
    color: var(--white);
}

/* jQuery UI */
.ui-datepicker {
    display: block;

    padding: 1rem;
    border: 1px solid #E6E6E6;
    border-top: 0;
    border-radius: 0 0 1.5rem 1.5rem;

    background-color: #FFF;
}

.ui-datepicker-header {
    display: flex;
    width: 100%;

    margin: 0 0 1rem 0;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    display: flex;
    width: 2rem;
    height: 2rem;

    position: relative;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
    display: block;
    width: 0;
    height: 0;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    font-size: 1px;
    color: transparent;

    opacity: 0;
    overflow: hidden;
}

.ui-datepicker-prev::before,
.ui-datepicker-next::before {
    font-family: 'icons';
    line-height: 1;
}

.ui-datepicker-prev::before {
    content: '\e801';
}

.ui-datepicker-next::before {
    content: '\e802';
}

.ui-datepicker-next {
    order: 2;
}

.ui-datepicker-title {
    display: block;

    margin: 0 20px;

    flex: 1 1 auto;

    text-align: center;
}

.ui-datepicker-calendar {
    width: 100%;

    text-align: center;

    table-layout: fixed;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
    height: 2rem;
}

.ui-datepicker-calendar td a {
    display: flex;
    width: 2rem;
    height: 2rem;

    border-radius: 100%;
    margin: auto;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    transition: background-color .2s ease, color .2s ease;
}

.ui-datepicker-calendar td:hover a {
    background-color: rgba(0,0,0,.1);
}

.ui-datepicker-calendar td a.ui-state-active,
.ui-datepicker-calendar td:hover a.ui-state-active {
    background-color: #272727;
    color: #FFF;
}

.ui-slider {
    display: block;
    width: calc(100% - 1rem);
    height: 1px;

    position: relative;

    margin: 0 .5rem .5rem .5rem;

    background-color: #E6E6E6;
}

.ui-slider-range {
    display: block;
    height: 100%;

    position: absolute;
    top: 0;
    z-index: 1;

    background-color: #2499D6;
}

.ui-slider-handle {
    display: block;
    width: calc(1rem + 1px);
    height: calc(1rem + 1px);

    position: absolute;
    top: -.5rem;
    z-index: 1;
    cursor: pointer;

    border-radius: 100%;
    margin: 0 0 0 -.5rem;

    background-color: #2499D6;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* 404 */
.not-found {
    max-width: 800px;
    margin: 120px 0;
}

.not-found-icon {
    font-weight: 800;
}

.not-found-title:not(:last-child) {
    margin-bottom: 50px;
}

.courses {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.courses-list {
    display: block;
    width: 30%;

    margin: 0 50px 0 0;

    counter-reset: courses;
}

.courses-list-item {
    display: block;
    width: 100%;

    padding: 30px 0;
    border-bottom: 1px solid #DDD;

    counter-increment: courses;
    cursor: pointer;
}

.courses-list-item::before {
    display: block;
    width: 100%;

    margin: 0 20px 0 0;

    content: '0'counter(courses)'.';
    font-weight: 700;
}

.courses-list-title {
    display: flex;
    width: 100%;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary)
}

.courses-list-title::after {
    display: block;

    margin: 0 0 0 20px;

    content: '\e81c';
    font-family: 'icons';
    color: var(--primary);

    opacity: 0;
    transition: opacity .2s ease;
}

.courses-list-item--selected .courses-list-title::after {
    opacity: 1;
}

.courses-slider {
    display: block;
    width: calc(70% - 50px);

    counter-reset: coursesItem;
}

.courses-collapsible {
    display: none;
}

.courses-slider-item {
    display: block;
    width: 100%;

    padding: 50px;
    border-radius: 20px;

    background-color: #FFF;

    overflow: hidden;

    counter-increment: coursesItem;
}

.courses-slider-item::before {
    display: block;
    width: 100%;

    margin: 0 0 -20px -70px;

    content: '0'counter(coursesItem);
    font-size: 150px;
    line-height: 100px;
    font-weight: 700;
    color: #F7F7F7;
}

.courses-slider-item .formatted-text ul li::before {
    background-color: var(--primary);
}

.courses-slider-title {
    display: block;
    width: 100%;

    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.courses-slider-content {
    display: block;
    width: 100%;

    padding: 30px 0;
    border: solid #E6E6E6;
    border-width: 1px 0;
    margin: 30px 0;
}

.courses-slider-footer {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.courses-slider-info {
    display: block;

    margin: 0 50px 0 0;

    font-size: .875rem;
}

.courses-slider-info-label {
    display: block;

    margin: 0 0 5px 0;

    text-transform: uppercase;
    color: var(--primary);
}

.courses-slider-info-value {
    display: block;

    color: #9D9D9D;
}

.courses-slider-footer .button {
    margin-left: auto;
}

.prices {
    display: block;
    width: 100%;

    padding: 0 0 0 10px;
    border-left: 1px solid rgba(255,255,255,.5);
}

.prices-item {
    display: block;
    width: 100%;

    line-height: 1.5;
}

.prices-item:not(:last-child) {
    margin-bottom: 20px;
}

.prices-value {
    font-weight: 700;
}

.prices-label {
    font-size: .8rem;
}

.trainers {
    --width: 50%;
    --margin: 30px;

    display: flex;
    width: calc(100% + var(--margin));

    margin: 0 calc(-1 * var(--margin)) calc(-1 * var(--margin)) 0;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.trainer {
    display: block;
    width: calc(var(--width) - var(--margin));

    margin: 0 var(--margin) var(--margin) 0;
}

.trainer-name {
    display: block;
    width: 100%;

    margin: 0 0 15px 0;

    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.single-contact {
    display: flex;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    text-align: center;
}

.single-contact-title {
    display: block;

    margin: 0 0 30px 0;
    
    text-transform: uppercase;
    font-size: 1.5625rem;
    font-weight: 800;
}

.single-contact-title-highlight {
    display: block;

    font-size: 2.5rem;
    color: var(--primary);
}

.single-contact-content {
    display: block;

    padding: 30px;
    border-radius: 10px;

    background-color: var(--primary);

    font-weight: 700;
    color: var(--white);
}

.single-contact-name {
    display: block;

    margin: 0 0 15px 0;

    text-transform: uppercase;
}

.single-contact-item {
    display: flex;
    
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.single-contact-icon {
    display: block;

    margin: 0 10px 0 0;
}

/* Branding smart power */
.button-brand-white,
.button-brand-icon-white {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--primary);
}
.button-brand-white:hover,
.button-brand-icon-white:hover {
    background-color: var(--primary);
    color: var(--white);
}
.button-brand,
.button-brand-icon {
    border: 0;
    background-color: var(--primary);
    color: var(--white);
}
.button-brand:hover,
.button-brand-icon:hover {
    background-color: var(--black);
}
.button-brand-secondary,
.button-brand-secondary-icon {
    border: 0;
    background-color: var(--secondary);
    color: var(--white);
}
.button-brand-secondary:hover,
.button-brand-secondary-icon:hover {
    background-color: var(--black);
}
.button-brand.button--border {
    background-color:transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.button-brand.button--border:hover {
    background-color:var(--primary);
    color: var(--white);
}

.graph-icon--primary {
    background-color: var(--primary);
    color: #FFF;
}

.section--bg-primary {
    background-color: var(--primary);
    color: var(--white);
}
.section--bg-secondary {
    background-color: var(--secondary);
    color: var(--white);
}
.section--gradient-primary {
    background-image: linear-gradient(116deg, var(--primary), var(--secondary));
    color: var(--white);
}
.section--gradient-dark {
    background-image: linear-gradient(45deg, var(--black), var(--primary));
    color: var(--white);
}

.text--primary {
    color:var(--primary)
}
.text--secondary {
    color:var(--secondary)
}

.card--primary {
    background-color: var(--primary);
    color: var(--white);
}

.round-image--secondary {
    border-color: var(--light);
}

.round-image--secondary:empty {
    box-shadow: inset 0 0 0 90px var(--light);
}

.round-image--secondary::after {
    border-color: var(--secondary);
}

.round-image--primary {
    border-color: var(--primary);
}

.section-icon--primary {
    color: var(--primary);
}
.section-icon--secondary {
    color: var(--secondary);
}

.cards-pagination-button--primary {
    background-color: var(--primary);
}
/* Branding smart power */

@media screen and (max-width: 1600px) {
    .team-member {
        width: calc((100% - 1px) / 3 - 50px);
    }

    .header-menu-item {
        margin: 0 10px;
    }
}

@media screen and (max-width: 1400px) {
    .services-cta {
        padding: 30px;
    }
    .header-menu-item {
			margin: 0 5px;
		}
		.header--transparent .header-menu-button {
			width: min-content;
		}
}
@media screen and (max-width: 1280px) {
		.header--transparent .header-menu-button {
			width:auto;
		}
}

@media screen and (min-width: 801px) {
    .mobile-show {
        display: none !important;
    }
}

body #tarteaucitronAlertSmall {
    z-index: 100;
}

.responsive-only,
.mobile-only {
    display: none;
}