@charset "UTF-8";
/**
*
* Components JU
*
**/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/**
*
* Utils
*
**/
/*==========  VARIABLES  ==========*/
/*==========  FUNCTIONS  ==========*/
/*==========  MIXINS  ==========*/
/**
*
* Global
*
**/
a:focus,
a:active,
a:visited,
a:link,
a:hover,
a:visited {
  outline: none;
  text-decoration: none;
}

a {
  transition-property: background, color, opacity, border, width;
  transition-duration: 0.2s;
  /*-webkit-transition-delay:0.2s;
      transition-delay:0.2s;*/
  transition-timing-function: ease-in-out;
}

.main-container {
  box-sizing: content-box;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 880px) {
  .main-container {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (min-width: 1380px) {
  .main-container {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}

.container {
  box-sizing: content-box;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 880px) {
  .container {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (min-width: 1380px) {
  .container {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}

@media only screen and (min-width: 880px) {
  .container-medium {
    box-sizing: content-box;
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 880px) and (min-width: 880px) {
  .container-medium {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (min-width: 880px) and (min-width: 1380px) {
  .container-medium {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}

@media only screen and (max-width: 879px) {
  .container-small {
    box-sizing: content-box;
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 879px) and (min-width: 880px) {
  .container-small {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (max-width: 879px) and (min-width: 1380px) {
  .container-small {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}

/**
*
* Helper
*
**/
/**********************************************/
/**********************************************/
a {
  outline: none;
}
a:visited {
  outline: none;
}

.clear::before, .clear::after {
  content: '';
  display: table;
}
.clear::after {
  clear: both;
}

/*==========  COLORS  ==========*/
/*==========  ANIMATIONS  ==========*/
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/*==========  GENERIC  ==========*/
.centered {
  text-align: center;
}

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

.align-right {
  text-align: right;
}

.upper {
  text-transform: uppercase;
}

.overflowhidden {
  overflow: hidden;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.layer {
  position: absolute;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.inline-block {
  display: inline-block;
}

.boxshadow {
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
}

/*==========  UTILS JU  ==========*/
.img-rounded {
  border-radius: 0;
}

.img-circle {
  border-radius: 50%;
  overflow: hidden;
}

.img {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.centered {
  text-align: center !important;
}

.videoContent.iframe {
  display: block;
  margin: 0 auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.img-responsive {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.table {
  display: table;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
}

.table-cell {
  display: table-cell;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
.table-cell.vtop {
  vertical-align: top;
}

.ellipsis {
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.ellipsis:after {
  content: '...';
}

.single-actu_events .actu_events blockquote {
  position: relative;
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #0072BC;
  display: block;
  max-width: 660px;
  min-width: 270px;
  margin: 80px auto;
}
.single-actu_events .actu_events blockquote:before {
  content: '';
  background: url("../assets/images/quote.png");
  position: absolute;
  top: 0;
  left: -30px;
  width: 23px;
  height: 19px;
}
.single-actu_events .actu_events blockquote:after {
  content: '';
  background: url("../assets/images/quote.png");
  transform: rotate(180deg);
  position: absolute;
  width: 23px;
  height: 19px;
  bottom: 0;
  right: -30px;
}
.single-actu_events .actu_events blockquote p,
.single-actu_events .actu_events blockquote span {
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #0072BC !important;
  display: block;
  width: 100%;
}

@media all and (max-width: 880px) {
  .img {
    background: none;
    box-shadow: none;
    height: inherit;
  }
  .img.chiffres {
    background: inherit;
    box-shadow: inherit;
    height: inherit;
  }

  .img-responsive {
    display: block;
    margin-bottom: 25px;
    box-shadow: 0px 0px 10px #012B4742;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}
/**
*
* Grid
*
**/
@media only screen and (min-width: 880px) and (max-width: 1379px) {
  .g-medium--1 {
    float: left;
    margin-right: 4.5%;
    width: 30.3%;
  }

  .g-medium--push-1 {
    margin-left: 34.8%;
  }

  .g-medium--pull-1 {
    margin-right: 34.8%;
  }

  .g-medium--2 {
    float: left;
    margin-right: 4.5%;
    width: 65.1%;
  }

  .g-medium--push-2 {
    margin-left: 69.6%;
  }

  .g-medium--pull-2 {
    margin-right: 69.6%;
  }

  .g-medium--3 {
    float: left;
    margin-right: 4.5%;
    width: 99.9%;
    margin-right: 0;
  }

  .g-medium--full {
    float: left;
    margin-right: 4.5%;
    margin-right: 0;
    width: 100%;
  }

  .g--third {
    float: left;
    margin-right: 4.5%;
    width: 30.3%;
  }

  .g--half,
  .g-medium--half {
    float: left;
    margin-right: 4.5%;
    width: 47.75%;
  }

  .g-medium--last {
    margin-right: 0;
  }

  .g-medium--last + .g-medium--half {
    clear: left;
  }

  .g--pull-half {
    margin-right: 52.25%;
  }
}
@media only screen and (min-width: 1380px) {
  .g-wide--1 {
    float: left;
    margin-right: 4.5%;
    width: 30.3%;
  }

  .g-wide--push-1 {
    margin-left: 34.8%;
  }

  .g-wide--pull-1 {
    margin-right: 34.8%;
  }

  .g-wide--2 {
    float: left;
    margin-right: 4.5%;
    width: 65.1%;
  }

  .g-wide--push-2 {
    margin-left: 69.6%;
  }

  .g-wide--pull-2 {
    margin-right: 69.6%;
  }

  .g-wide--3 {
    float: left;
    margin-right: 4.5%;
    width: 99.9%;
    margin-right: 0;
  }

  .g-wide--last {
    margin-right: 0;
  }

  .g-wide--full {
    float: left;
    margin-right: 4.5%;
    margin-right: 0;
    width: 100%;
  }

  .g--third {
    float: left;
    margin-right: 4.5%;
    width: 30.3%;
  }

  .g--half,
  .g-wide--half {
    float: left;
    margin-right: 4.5%;
    width: 47.75%;
  }

  .g--pull-half {
    margin-right: 52.25%;
  }
}
.g--last {
  margin-right: 0;
}

.g--centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.grid-overlay {
  display: none;
  pointer-events: none;
}
.debug .grid-overlay {
  box-sizing: content-box;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: block;
}
@media only screen and (min-width: 880px) {
  .debug .grid-overlay {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (min-width: 1380px) {
  .debug .grid-overlay {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}
.debug .grid-overlay [class*="g-"] {
  height: 100%;
  background-color: rgba(89, 89, 89, 0.2);
}
@media only screen and (min-width: 880px) and (max-width: 1379px) {
  .debug .grid-overlay .g-wide--last {
    display: none;
  }
}
@media only screen and (max-width: 879px) {
  .debug .grid-overlay {
    display: none;
  }
}

/**
*
* Button
*
**/
.button, .button--primary, .button--secondary, .button--secondary-variation {
  display: inline-block;
  padding: 11px 20px;
  margin-bottom: 12px;
  margin-top: 12px;
  min-height: 24px;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  min-width: 144px;
}

.button--primary {
  background: transparent;
  color: #1C1C53;
  border: 1px solid #1C1C53;
}
.button--primary:hover {
  background: #1C1C53;
  color: #ffffff;
}
.button--primary.bluelight {
  background: transparent;
  color: #4CB2FF;
  border: 1px solid #4CB2FF;
}
.button--primary.bluelight:hover {
  background: #4CB2FF;
  color: #ffffff;
}
.button--primary.blue {
  background: transparent;
  color: #1C1C53;
  border: 1px solid #1C1C53;
}
.button--primary.blue:hover {
  background: #1C1C53;
  color: #ffffff;
}
.button--primary.orange {
  background: transparent;
  color: #DA6C37;
  border: 1px solid #DA6C37;
}
.button--primary.orange:hover {
  background: #DA6C37;
  color: #ffffff;
}
.button--primary.rose {
  background: transparent;
  color: #B2006D;
  border: 1px solid #B2006D;
}
.button--primary.rose:hover {
  background: #B2006D;
  color: #ffffff;
}
.button--primary.white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.button--primary.white:hover {
  background: #ffffff;
  color: #343434;
}

.button--secondary {
  background: transparent;
  color: #1C1C53;
  border: 1px solid #1C1C53;
}
.button--secondary:hover {
  background: #1C1C53;
  color: #ffffff;
}
.button--secondary:hover:visited {
  color: #ffffff;
}
.button--secondary:visited {
  color: #0072BC;
}
.button--secondary.bluelight {
  background: transparent;
  color: #4CB2FF;
  border: 1px solid #4CB2FF;
}
.button--secondary.bluelight:hover {
  background: #4CB2FF;
  color: #ffffff;
}
.button--secondary.bluelight:hover:visited {
  color: #ffffff;
}
.button--secondary.bluelight:visited {
  color: #4CB2FF;
}
.button--secondary.blue {
  background: transparent;
  color: #1C1C53;
  border: 1px solid #1C1C53;
}
.button--secondary.blue:hover {
  background: #1C1C53;
  color: #ffffff;
}
.button--secondary.blue:hover:visited {
  color: #ffffff;
}
.button--secondary.blue:visited {
  color: #0072BC;
}
.button--secondary.orange {
  background: transparent;
  color: #DA6C37;
  border: 1px solid #DA6C37;
}
.button--secondary.orange:hover {
  background: #DA6C37;
  color: #ffffff;
}
.button--secondary.orange:hover:visited {
  color: #ffffff;
}
.button--secondary.orange:visited {
  color: #DA6C37;
}
.button--secondary.rose {
  background: transparent;
  color: #B2006D;
  border: 1px solid #B2006D;
}
.button--secondary.rose:hover {
  background: #B2006D;
  color: #ffffff;
}
.button--secondary.rose:hover:visited {
  color: #ffffff;
}
.button--secondary.rose:visited {
  color: #B2006D;
}
.button--secondary.white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.button--secondary.white:hover {
  background: #ffffff;
  color: #343434;
}
.button--secondary.white:hover:visited {
  color: #343434;
}
.button--secondary.white:visited {
  color: #ffffff;
}

.button--secondary-variation {
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  border: none;
  background: #1C1C53;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-color: transparent;
}
.button--secondary-variation:hover {
  background: #1C1C53;
  color: #ffffff;
}

@media all and (max-width: 880px) {
  .button, .button--primary, .button--secondary, .button--secondary-variation {
    max-width: 340px;
    width: 100%;
    margin: 10px auto;
    display: block;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.page .row,
.archive .row,
.single .row {
  margin-left: -15px;
  margin-right: -15px;
}
.page .col-xs-1,
.page .col-sm-1,
.page .col-md-1,
.page .col-lg-1,
.page .col-xs-2,
.page .col-sm-2,
.page .col-md-2,
.page .col-lg-2,
.page .col-xs-3,
.page .col-sm-3,
.page .col-md-3,
.page .col-lg-3,
.page .col-xs-4,
.page .col-sm-4,
.page .col-md-4,
.page .col-lg-4,
.page .col-xs-5,
.page .col-sm-5,
.page .col-md-5,
.page .col-lg-5,
.page .col-xs-6,
.page .col-sm-6,
.page .col-md-6,
.page .col-lg-6,
.page .col-xs-7,
.page .col-sm-7,
.page .col-md-7,
.page .col-lg-7,
.page .col-xs-8,
.page .col-sm-8,
.page .col-md-8,
.page .col-lg-8,
.page .col-xs-9,
.page .col-sm-9,
.page .col-md-9,
.page .col-lg-9,
.page .col-xs-10,
.page .col-sm-10,
.page .col-md-10,
.page .col-lg-10,
.page .col-xs-11,
.page .col-sm-11,
.page .col-md-11,
.page .col-lg-11,
.page .col-xs-12,
.page .col-sm-12,
.page .col-md-12,
.page .col-lg-12,
.archive .col-xs-1,
.archive .col-sm-1,
.archive .col-md-1,
.archive .col-lg-1,
.archive .col-xs-2,
.archive .col-sm-2,
.archive .col-md-2,
.archive .col-lg-2,
.archive .col-xs-3,
.archive .col-sm-3,
.archive .col-md-3,
.archive .col-lg-3,
.archive .col-xs-4,
.archive .col-sm-4,
.archive .col-md-4,
.archive .col-lg-4,
.archive .col-xs-5,
.archive .col-sm-5,
.archive .col-md-5,
.archive .col-lg-5,
.archive .col-xs-6,
.archive .col-sm-6,
.archive .col-md-6,
.archive .col-lg-6,
.archive .col-xs-7,
.archive .col-sm-7,
.archive .col-md-7,
.archive .col-lg-7,
.archive .col-xs-8,
.archive .col-sm-8,
.archive .col-md-8,
.archive .col-lg-8,
.archive .col-xs-9,
.archive .col-sm-9,
.archive .col-md-9,
.archive .col-lg-9,
.archive .col-xs-10,
.archive .col-sm-10,
.archive .col-md-10,
.archive .col-lg-10,
.archive .col-xs-11,
.archive .col-sm-11,
.archive .col-md-11,
.archive .col-lg-11,
.archive .col-xs-12,
.archive .col-sm-12,
.archive .col-md-12,
.archive .col-lg-12,
.single .col-xs-1,
.single .col-sm-1,
.single .col-md-1,
.single .col-lg-1,
.single .col-xs-2,
.single .col-sm-2,
.single .col-md-2,
.single .col-lg-2,
.single .col-xs-3,
.single .col-sm-3,
.single .col-md-3,
.single .col-lg-3,
.single .col-xs-4,
.single .col-sm-4,
.single .col-md-4,
.single .col-lg-4,
.single .col-xs-5,
.single .col-sm-5,
.single .col-md-5,
.single .col-lg-5,
.single .col-xs-6,
.single .col-sm-6,
.single .col-md-6,
.single .col-lg-6,
.single .col-xs-7,
.single .col-sm-7,
.single .col-md-7,
.single .col-lg-7,
.single .col-xs-8,
.single .col-sm-8,
.single .col-md-8,
.single .col-lg-8,
.single .col-xs-9,
.single .col-sm-9,
.single .col-md-9,
.single .col-lg-9,
.single .col-xs-10,
.single .col-sm-10,
.single .col-md-10,
.single .col-lg-10,
.single .col-xs-11,
.single .col-sm-11,
.single .col-md-11,
.single .col-lg-11,
.single .col-xs-12,
.single .col-sm-12,
.single .col-md-12,
.single .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.page .col-xs-1,
.page .col-xs-2,
.page .col-xs-3,
.page .col-xs-4,
.page .col-xs-5,
.page .col-xs-6,
.page .col-xs-7,
.page .col-xs-8,
.page .col-xs-9,
.page .col-xs-10,
.page .col-xs-11,
.page .col-xs-12,
.archive .col-xs-1,
.archive .col-xs-2,
.archive .col-xs-3,
.archive .col-xs-4,
.archive .col-xs-5,
.archive .col-xs-6,
.archive .col-xs-7,
.archive .col-xs-8,
.archive .col-xs-9,
.archive .col-xs-10,
.archive .col-xs-11,
.archive .col-xs-12,
.single .col-xs-1,
.single .col-xs-2,
.single .col-xs-3,
.single .col-xs-4,
.single .col-xs-5,
.single .col-xs-6,
.single .col-xs-7,
.single .col-xs-8,
.single .col-xs-9,
.single .col-xs-10,
.single .col-xs-11,
.single .col-xs-12 {
  float: left;
}
.page .col-xs-1,
.archive .col-xs-1,
.single .col-xs-1 {
  width: 8.33333%;
}
.page .col-xs-2,
.archive .col-xs-2,
.single .col-xs-2 {
  width: 16.66667%;
}
.page .col-xs-3,
.archive .col-xs-3,
.single .col-xs-3 {
  width: 25%;
}
.page .col-xs-4,
.archive .col-xs-4,
.single .col-xs-4 {
  width: 33.33333%;
}
.page .col-xs-5,
.archive .col-xs-5,
.single .col-xs-5 {
  width: 41.66667%;
}
.page .col-xs-6,
.archive .col-xs-6,
.single .col-xs-6 {
  width: 50%;
}
.page .col-xs-7,
.archive .col-xs-7,
.single .col-xs-7 {
  width: 58.33333%;
}
.page .col-xs-8,
.archive .col-xs-8,
.single .col-xs-8 {
  width: 66.66667%;
}
.page .col-xs-9,
.archive .col-xs-9,
.single .col-xs-9 {
  width: 75%;
}
.page .col-xs-10,
.archive .col-xs-10,
.single .col-xs-10 {
  width: 83.33333%;
}
.page .col-xs-11,
.archive .col-xs-11,
.single .col-xs-11 {
  width: 91.66667%;
}
.page .col-xs-12,
.archive .col-xs-12,
.single .col-xs-12 {
  width: 100%;
}
.page .col-xs-pull-0,
.archive .col-xs-pull-0,
.single .col-xs-pull-0 {
  right: auto;
}
.page .col-xs-pull-1,
.archive .col-xs-pull-1,
.single .col-xs-pull-1 {
  right: 8.33333%;
}
.page .col-xs-pull-2,
.archive .col-xs-pull-2,
.single .col-xs-pull-2 {
  right: 16.66667%;
}
.page .col-xs-pull-3,
.archive .col-xs-pull-3,
.single .col-xs-pull-3 {
  right: 25%;
}
.page .col-xs-pull-4,
.archive .col-xs-pull-4,
.single .col-xs-pull-4 {
  right: 33.33333%;
}
.page .col-xs-pull-5,
.archive .col-xs-pull-5,
.single .col-xs-pull-5 {
  right: 41.66667%;
}
.page .col-xs-pull-6,
.archive .col-xs-pull-6,
.single .col-xs-pull-6 {
  right: 50%;
}
.page .col-xs-pull-7,
.archive .col-xs-pull-7,
.single .col-xs-pull-7 {
  right: 58.33333%;
}
.page .col-xs-pull-8,
.archive .col-xs-pull-8,
.single .col-xs-pull-8 {
  right: 66.66667%;
}
.page .col-xs-pull-9,
.archive .col-xs-pull-9,
.single .col-xs-pull-9 {
  right: 75%;
}
.page .col-xs-pull-10,
.archive .col-xs-pull-10,
.single .col-xs-pull-10 {
  right: 83.33333%;
}
.page .col-xs-pull-11,
.archive .col-xs-pull-11,
.single .col-xs-pull-11 {
  right: 91.66667%;
}
.page .col-xs-pull-12,
.archive .col-xs-pull-12,
.single .col-xs-pull-12 {
  right: 100%;
}
.page .col-xs-push-0,
.archive .col-xs-push-0,
.single .col-xs-push-0 {
  left: auto;
}
.page .col-xs-push-1,
.archive .col-xs-push-1,
.single .col-xs-push-1 {
  left: 8.33333%;
}
.page .col-xs-push-2,
.archive .col-xs-push-2,
.single .col-xs-push-2 {
  left: 16.66667%;
}
.page .col-xs-push-3,
.archive .col-xs-push-3,
.single .col-xs-push-3 {
  left: 25%;
}
.page .col-xs-push-4,
.archive .col-xs-push-4,
.single .col-xs-push-4 {
  left: 33.33333%;
}
.page .col-xs-push-5,
.archive .col-xs-push-5,
.single .col-xs-push-5 {
  left: 41.66667%;
}
.page .col-xs-push-6,
.archive .col-xs-push-6,
.single .col-xs-push-6 {
  left: 50%;
}
.page .col-xs-push-7,
.archive .col-xs-push-7,
.single .col-xs-push-7 {
  left: 58.33333%;
}
.page .col-xs-push-8,
.archive .col-xs-push-8,
.single .col-xs-push-8 {
  left: 66.66667%;
}
.page .col-xs-push-9,
.archive .col-xs-push-9,
.single .col-xs-push-9 {
  left: 75%;
}
.page .col-xs-push-10,
.archive .col-xs-push-10,
.single .col-xs-push-10 {
  left: 83.33333%;
}
.page .col-xs-push-11,
.archive .col-xs-push-11,
.single .col-xs-push-11 {
  left: 91.66667%;
}
.page .col-xs-push-12,
.archive .col-xs-push-12,
.single .col-xs-push-12 {
  left: 100%;
}
.page .col-xs-offset-0,
.archive .col-xs-offset-0,
.single .col-xs-offset-0 {
  margin-left: 0%;
}
.page .col-xs-offset-1,
.archive .col-xs-offset-1,
.single .col-xs-offset-1 {
  margin-left: 8.33333%;
}
.page .col-xs-offset-2,
.archive .col-xs-offset-2,
.single .col-xs-offset-2 {
  margin-left: 16.66667%;
}
.page .col-xs-offset-3,
.archive .col-xs-offset-3,
.single .col-xs-offset-3 {
  margin-left: 25%;
}
.page .col-xs-offset-4,
.archive .col-xs-offset-4,
.single .col-xs-offset-4 {
  margin-left: 33.33333%;
}
.page .col-xs-offset-5,
.archive .col-xs-offset-5,
.single .col-xs-offset-5 {
  margin-left: 41.66667%;
}
.page .col-xs-offset-6,
.archive .col-xs-offset-6,
.single .col-xs-offset-6 {
  margin-left: 50%;
}
.page .col-xs-offset-7,
.archive .col-xs-offset-7,
.single .col-xs-offset-7 {
  margin-left: 58.33333%;
}
.page .col-xs-offset-8,
.archive .col-xs-offset-8,
.single .col-xs-offset-8 {
  margin-left: 66.66667%;
}
.page .col-xs-offset-9,
.archive .col-xs-offset-9,
.single .col-xs-offset-9 {
  margin-left: 75%;
}
.page .col-xs-offset-10,
.archive .col-xs-offset-10,
.single .col-xs-offset-10 {
  margin-left: 83.33333%;
}
.page .col-xs-offset-11,
.archive .col-xs-offset-11,
.single .col-xs-offset-11 {
  margin-left: 91.66667%;
}
.page .col-xs-offset-12,
.archive .col-xs-offset-12,
.single .col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 720px) {
  .home .col-sm-1,
  .home .col-sm-2,
  .home .col-sm-3,
  .home .col-sm-4,
  .home .col-sm-5,
  .home .col-sm-6,
  .home .col-sm-7,
  .home .col-sm-8,
  .home .col-sm-9,
  .home .col-sm-10,
  .home .col-sm-11,
  .home .col-sm-12 {
    float: left;
  }
  .home .col-sm-1 {
    width: 8.33333%;
  }
  .home .col-sm-2 {
    width: 16.66667%;
  }
  .home .col-sm-3 {
    width: 25%;
  }
  .home .col-sm-4 {
    width: 33.33333%;
  }
  .home .col-sm-5 {
    width: 41.66667%;
  }
  .home .col-sm-6 {
    width: 50%;
  }
  .home .col-sm-7 {
    width: 58.33333%;
  }
  .home .col-sm-8 {
    width: 66.66667%;
  }
  .home .col-sm-9 {
    width: 75%;
  }
  .home .col-sm-10 {
    width: 83.33333%;
  }
  .home .col-sm-11 {
    width: 91.66667%;
  }
  .home .col-sm-12 {
    width: 100%;
  }
  .home .col-sm-pull-0 {
    right: auto;
  }
  .home .col-sm-pull-1 {
    right: 8.33333%;
  }
  .home .col-sm-pull-2 {
    right: 16.66667%;
  }
  .home .col-sm-pull-3 {
    right: 25%;
  }
  .home .col-sm-pull-4 {
    right: 33.33333%;
  }
  .home .col-sm-pull-5 {
    right: 41.66667%;
  }
  .home .col-sm-pull-6 {
    right: 50%;
  }
  .home .col-sm-pull-7 {
    right: 58.33333%;
  }
  .home .col-sm-pull-8 {
    right: 66.66667%;
  }
  .home .col-sm-pull-9 {
    right: 75%;
  }
  .home .col-sm-pull-10 {
    right: 83.33333%;
  }
  .home .col-sm-pull-11 {
    right: 91.66667%;
  }
  .home .col-sm-pull-12 {
    right: 100%;
  }
  .home .col-sm-push-0 {
    left: auto;
  }
  .home .col-sm-push-1 {
    left: 8.33333%;
  }
  .home .col-sm-push-2 {
    left: 16.66667%;
  }
  .home .col-sm-push-3 {
    left: 25%;
  }
  .home .col-sm-push-4 {
    left: 33.33333%;
  }
  .home .col-sm-push-5 {
    left: 41.66667%;
  }
  .home .col-sm-push-6 {
    left: 50%;
  }
  .home .col-sm-push-7 {
    left: 58.33333%;
  }
  .home .col-sm-push-8 {
    left: 66.66667%;
  }
  .home .col-sm-push-9 {
    left: 75%;
  }
  .home .col-sm-push-10 {
    left: 83.33333%;
  }
  .home .col-sm-push-11 {
    left: 91.66667%;
  }
  .home .col-sm-push-12 {
    left: 100%;
  }
  .home .col-sm-offset-0 {
    margin-left: 0%;
  }
  .home .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .home .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .home .col-sm-offset-3 {
    margin-left: 25%;
  }
  .home .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .home .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .home .col-sm-offset-6 {
    margin-left: 50%;
  }
  .home .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .home .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .home .col-sm-offset-9 {
    margin-left: 75%;
  }
  .home .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .home .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .home .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .home .col-md-1,
  .home .col-md-2,
  .home .col-md-3,
  .home .col-md-4,
  .home .col-md-5,
  .home .col-md-6,
  .home .col-md-7,
  .home .col-md-8,
  .home .col-md-9,
  .home .col-md-10,
  .home .col-md-11,
  .home .col-md-12 {
    float: left;
  }
  .home .col-md-1 {
    width: 8.33333%;
  }
  .home .col-md-2 {
    width: 16.66667%;
  }
  .home .col-md-3 {
    width: 25%;
  }
  .home .col-md-4 {
    width: 33.33333%;
  }
  .home .col-md-5 {
    width: 41.66667%;
  }
  .home .col-md-6 {
    width: 50%;
  }
  .home .col-md-7 {
    width: 58.33333%;
  }
  .home .col-md-8 {
    width: 66.66667%;
  }
  .home .col-md-9 {
    width: 75%;
  }
  .home .col-md-10 {
    width: 83.33333%;
  }
  .home .col-md-11 {
    width: 91.66667%;
  }
  .home .col-md-12 {
    width: 100%;
  }
  .home .col-md-pull-0 {
    right: auto;
  }
  .home .col-md-pull-1 {
    right: 8.33333%;
  }
  .home .col-md-pull-2 {
    right: 16.66667%;
  }
  .home .col-md-pull-3 {
    right: 25%;
  }
  .home .col-md-pull-4 {
    right: 33.33333%;
  }
  .home .col-md-pull-5 {
    right: 41.66667%;
  }
  .home .col-md-pull-6 {
    right: 50%;
  }
  .home .col-md-pull-7 {
    right: 58.33333%;
  }
  .home .col-md-pull-8 {
    right: 66.66667%;
  }
  .home .col-md-pull-9 {
    right: 75%;
  }
  .home .col-md-pull-10 {
    right: 83.33333%;
  }
  .home .col-md-pull-11 {
    right: 91.66667%;
  }
  .home .col-md-pull-12 {
    right: 100%;
  }
  .home .col-md-push-0 {
    left: auto;
  }
  .home .col-md-push-1 {
    left: 8.33333%;
  }
  .home .col-md-push-2 {
    left: 16.66667%;
  }
  .home .col-md-push-3 {
    left: 25%;
  }
  .home .col-md-push-4 {
    left: 33.33333%;
  }
  .home .col-md-push-5 {
    left: 41.66667%;
  }
  .home .col-md-push-6 {
    left: 50%;
  }
  .home .col-md-push-7 {
    left: 58.33333%;
  }
  .home .col-md-push-8 {
    left: 66.66667%;
  }
  .home .col-md-push-9 {
    left: 75%;
  }
  .home .col-md-push-10 {
    left: 83.33333%;
  }
  .home .col-md-push-11 {
    left: 91.66667%;
  }
  .home .col-md-push-12 {
    left: 100%;
  }
  .home .col-md-offset-0 {
    margin-left: 0%;
  }
  .home .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .home .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .home .col-md-offset-3 {
    margin-left: 25%;
  }
  .home .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .home .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .home .col-md-offset-6 {
    margin-left: 50%;
  }
  .home .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .home .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .home .col-md-offset-9 {
    margin-left: 75%;
  }
  .home .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .home .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .home .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .home .col-lg-1,
  .home .col-lg-2,
  .home .col-lg-3,
  .home .col-lg-4,
  .home .col-lg-5,
  .home .col-lg-6,
  .home .col-lg-7,
  .home .col-lg-8,
  .home .col-lg-9,
  .home .col-lg-10,
  .home .col-lg-11,
  .home .col-lg-12 {
    float: left;
  }
  .home .col-lg-1 {
    width: 8.33333%;
  }
  .home .col-lg-2 {
    width: 16.66667%;
  }
  .home .col-lg-3 {
    width: 25%;
  }
  .home .col-lg-4 {
    width: 33.33333%;
  }
  .home .col-lg-5 {
    width: 41.66667%;
  }
  .home .col-lg-6 {
    width: 50%;
  }
  .home .col-lg-7 {
    width: 58.33333%;
  }
  .home .col-lg-8 {
    width: 66.66667%;
  }
  .home .col-lg-9 {
    width: 75%;
  }
  .home .col-lg-10 {
    width: 83.33333%;
  }
  .home .col-lg-11 {
    width: 91.66667%;
  }
  .home .col-lg-12 {
    width: 100%;
  }
  .home .col-lg-pull-0 {
    right: auto;
  }
  .home .col-lg-pull-1 {
    right: 8.33333%;
  }
  .home .col-lg-pull-2 {
    right: 16.66667%;
  }
  .home .col-lg-pull-3 {
    right: 25%;
  }
  .home .col-lg-pull-4 {
    right: 33.33333%;
  }
  .home .col-lg-pull-5 {
    right: 41.66667%;
  }
  .home .col-lg-pull-6 {
    right: 50%;
  }
  .home .col-lg-pull-7 {
    right: 58.33333%;
  }
  .home .col-lg-pull-8 {
    right: 66.66667%;
  }
  .home .col-lg-pull-9 {
    right: 75%;
  }
  .home .col-lg-pull-10 {
    right: 83.33333%;
  }
  .home .col-lg-pull-11 {
    right: 91.66667%;
  }
  .home .col-lg-pull-12 {
    right: 100%;
  }
  .home .col-lg-push-0 {
    left: auto;
  }
  .home .col-lg-push-1 {
    left: 8.33333%;
  }
  .home .col-lg-push-2 {
    left: 16.66667%;
  }
  .home .col-lg-push-3 {
    left: 25%;
  }
  .home .col-lg-push-4 {
    left: 33.33333%;
  }
  .home .col-lg-push-5 {
    left: 41.66667%;
  }
  .home .col-lg-push-6 {
    left: 50%;
  }
  .home .col-lg-push-7 {
    left: 58.33333%;
  }
  .home .col-lg-push-8 {
    left: 66.66667%;
  }
  .home .col-lg-push-9 {
    left: 75%;
  }
  .home .col-lg-push-10 {
    left: 83.33333%;
  }
  .home .col-lg-push-11 {
    left: 91.66667%;
  }
  .home .col-lg-push-12 {
    left: 100%;
  }
  .home .col-lg-offset-0 {
    margin-left: 0%;
  }
  .home .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .home .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .home .col-lg-offset-3 {
    margin-left: 25%;
  }
  .home .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .home .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .home .col-lg-offset-6 {
    margin-left: 50%;
  }
  .home .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .home .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .home .col-lg-offset-9 {
    margin-left: 75%;
  }
  .home .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .home .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .home .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/**
*
* Link
*
**/
a:visited,
a:link {
  color: inherit;
}

.cta--primary {
  font-family: "Roboto", Arial, sans-serif;
  color: #B2006D;
  font-weight: 300;
  display: inline-block;
  line-height: 1;
  text-decoration: underline;
  color: #1C1C53 !important;
  text-decoration: underline !important;
}
.cta--primary:hover {
  text-decoration: none;
  color: #B2006D;
}
.cta--primary:hover {
  text-decoration: none !important;
}

.cta--secondary {
  font-family: "Roboto", Arial, sans-serif;
  color: #1C1C53;
  font-weight: 300;
  display: inline-block;
  line-height: 1;
  text-decoration: underline;
  color: #B2006D !important;
  text-decoration: none !important;
}
.cta--secondary:hover {
  text-decoration: none;
  color: #1C1C53;
}
.cta--secondary:hover {
  text-decoration: none !important;
  font-family: "Roboto", Arial, sans-serif;
  color: #B2006D;
  font-weight: 300;
  display: inline-block;
  line-height: 1;
  text-decoration: underline;
  color: #4CB2FF !important;
}
.cta--secondary:hover:hover {
  text-decoration: none;
  color: #B2006D;
}

a.cta--secondary:visited {
  color: #1C1C53 !important;
}

.elementor a {
  text-decoration: inherit;
}

h2 a:hover {
  color: #B2006D !important;
}

h2.entry-title a:visited,
h2.entry-title a {
  color: #fff;
}

h2 a.cta--secondary:visited,
h2 a.cta--secondary {
  color: #1C1C53;
}

/*.cta--secondary {
    @include style-cta(#0072BC, $icon-chevron-right);
}*/
    /**
*
* Table
*
**/
table {
  margin-top: 24px;
  width: 100%;
  border: 0 !important;
}
table thead {
  background: #1C1C53;
  color: #ffffff;
}
table th {
  text-align: center;
  display: none;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
}
@media only screen and (min-width: 880px) {
  table tr {
    border-bottom: 1px solid #ffffff;
  }
}
table tr:nth-child(1) td, table tr:nth-child(3) td, table tr:nth-child(5) td {
  background: #fff;
}
table tbody {
  background: #F8F8F8;
}
table td {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #343434;
}
table td:before {
  content: attr(data-th);
  display: inline-block;
  color: #ffffff;
  background: #1C1C53;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  max-height: 100%;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-left: 12px;
  padding-top: 12px;
  min-height: 69px;
  text-align: left;
}
@media only screen and (min-width: 880px) {
  table td:before {
    display: none;
  }
}
table td .bluelight {
  color: #0072BC;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
}
table td .rose {
  color: #B2006D;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
}
table th,
table td {
  position: relative;
}
@media only screen and (min-width: 880px) {
  table th,
  table td {
    display: table-cell;
  }
}
@media only screen and (min-width: 880px) {
  table th {
    padding: 24px;
    padding-top: 13px;
    padding-bottom: 11px;
  }
}
@media only screen and (min-width: 880px) {
  table td {
    padding: 24px;
    padding-bottom: 23px;
  }
}

td:last-child:after {
  content: "";
  display: block;
  background: #ffffff;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media only screen and (min-width: 880px) {
  td:last-child:after {
    display: none;
  }
}

.table-2 col {
  width: 581px;
}
@media only screen and (min-width: 1380px) {
  .table-2 col {
    width: 670px;
  }
}
@media only screen and (min-width: 880px) {
  .table-2 th:first-child,
  .table-2 td:first-child {
    border-right: 2px solid #ffffff;
  }
}
.table-2 th:before,
.table-2 td:before {
  display: none;
}

.table-3 col {
  width: 387.33333px;
}
@media only screen and (min-width: 1380px) {
  .table-3 col {
    width: 446.66667px;
  }
}
@media only screen and (min-width: 880px) {
  .table-3 th:nth-child(2),
  .table-3 td:nth-child(2) {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}

.table-4 col {
  width: 290.5px;
}
@media only screen and (min-width: 1380px) {
  .table-4 col {
    width: 335px;
  }
}
@media only screen and (min-width: 880px) {
  .table-4 th:nth-child(2), .table-4 th:nth-child(3),
  .table-4 td:nth-child(2),
  .table-4 td:nth-child(3) {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}

em.informations {
  display: block;
  padding: 30px 0;
  text-align: left;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #343434;
}

@media all and (max-width: 880px) {
  table td {
    max-width: 320px;
    height: 70px;
    text-align: right;
    width: 100%;
    min-width: 765px;
    padding-left: 160px;
  }

  table {
    width: auto;
    overflow: auto;
    display: block;
  }

  .table-2 th {
    display: table-cell;
  }
  .table-2 td {
    max-width: inherit;
    height: inherit;
    text-align: inherit;
    width: inherit;
    min-width: inherit;
    padding-left: inherit;
    display: table-cell;
  }
}
@font-face {
  font-family: icons;
  src: url(../assets/images/icons/icons.eot);
  src: url(../assets/images/icons/icons.eot?#iefix) format("embedded-opentype"), url(../assets/images/icons/icons.woff2) format("woff2"), url(../assets/images/icons/icons.woff) format("woff"), url(../assets/images/icons/icons.ttf) format("truetype"), url(../assets/images/icons/icons.svg?#icons) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?10k7qa");
  src: url("../fonts/icomoon.eot?10k7qa#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?10k7qa") format("truetype"), url("../fonts/icomoon.woff?10k7qa") format("woff"), url("../fonts/icomoon.svg?10k7qa#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon,
.round {
  font-family: 'icons';
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 10px;
}

.round {
  position: relative;
  width: 188px;
  height: 188px;
  background: url("../assets/images/round_icon.png") no-repeat 0 0;
}
.round .icomoon {
  position: absolute;
  top: 50%;
  /* pouss├® de la moiti├® de hauteur du r├®f├®rent */
  transform: translateY(-50%);
  /* tir├® de la moiti├® de sa propre hauteur */
  text-align: center;
  width: 188px;
}
.round p {
  color: #da6c37;
}
.round:hover p {
  color: #0072BC;
}
.round:hover [class^="icon-"]:before {
  color: #0072BC;
}

.polygon {
  position: relative;
  width: 148px;
  height: 129px;
  background: url("../assets/images/polygone.png") no-repeat 0 0;
  /*&:hover {
      p {
          color: $colorBlue;
      }
      [class^="icon-"]:before {
          color: $colorBlue;
      }
  }*/
}
.polygon .icomoon {
  position: absolute;
  top: 50%;
  /* pouss├® de la moiti├® de hauteur du r├®f├®rent */
  transform: translateY(-50%);
  /* tir├® de la moiti├® de sa propre hauteur */
  text-align: center;
  width: 148px;
}
.polygon h4 {
  color: #da6c37;
  font-weight: 300;
  margin: 8px 0;
}

.icomoon [class^="icon-"],
.icomoon [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
}

.icomoon span {
  display: block;
}

.icomoon p {
  margin: 15px 0 !important;
  text-align: center !important;
}

.icon-vr:before {
  content: "\e900";
  color: #da6c37;
}

.icon-security:before {
  content: "\e901";
  color: #da6c37;
}

.icon-iot:before {
  content: "\e902";
  color: #da6c37;
}

.icon-ia:before {
  content: "\e903";
  color: #da6c37;
}

.icon-healthtech:before {
  content: "\e904";
  color: #da6c37;
}

.icon-greentech:before {
  content: "\e905";
  color: #da6c37;
}

.icon-fintech:before {
  content: "\e906";
  color: #da6c37;
}

.icon-cloud:before {
  content: "\e907";
  color: #da6c37;
}

.icon-caddy:before {
  content: "\e908";
  color: #da6c37;
}

.icon-retailtech:before {
  content: "\e908";
  color: #da6c37;
}

.icon-bigdata:before {
  content: "\e909";
  color: #da6c37;
}

.icon-bullet::before {
  content: "\e001";
}

.icon-chevron-down::before {
  content: '\e002';
}

.icon-chevron-large::before {
  content: '\e003';
}

.icon-chevron-left::before {
  content: '\e004';
}

.icon-chevron-right::before {
  content: '\e005';
}

.icon-chevron-up::before {
  content: '\e006';
}

.icon-close::before {
  content: '\e007';
}

.icon-cog::before {
  content: '\e008';
}

.icon-diamond::before {
  content: '\e009';
}

.icon-exclamation::before {
  content: '\e00a';
}

.icon-google-dev::before {
  content: '\e00b';
}

.icon-hash::before {
  content: '\e00c';
}

.icon-introduction-to-media::before {
  content: '\e00d';
}

.icon-lessons::before {
  content: '\e00e';
}

.icon-menu::before {
  content: '\e00f';
}

.icon-minus::before {
  content: '\e010';
}

.icon-multi-device-layouts::before {
  content: '\e011';
}

.icon-performance::before {
  content: '\e012';
}

.icon-plus::before {
  content: '\e013';
}

.icon-question::before {
  content: '\e014';
}

.icon-slash::before {
  content: '\e015';
}

.icon-star::before {
  content: '\e016';
}

.icon-tick::before {
  content: '\e017';
}

.icon-user-input::before {
  content: '\e018';
}

/**
*
* Typography
*
**/
h1,
h2,
h3,
h4,
h5,
p {
  font-family: "Roboto", sans-serif !important;
  color: #1C1C53;
}

/*
.small,
small {
    @include type--small;
}

.base,
p,
ul,
ol {
    @include type--base;
}

.medium,
h4 {
    @include type--medium;
}

.large,
h3 {
    @include type--large;
}

.xlarge,
h2 {
    @include type--xlarge;
}

.xxlarge,
h1 {
    @include type--xxlarge;
}

.huge {
    @include type--huge;
}

li>p {
    padding-top: 0;
}

*/
/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(28, 28, 83, 0.96);
  z-index: 1000;
}

/* Overlay closing cross */
.overlay .overlay-close {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 65px;
  top: 32px;
  overflow: hidden;
  border: none;
  text-indent: 200%;
  color: transparent;
  background: transparent !important;
  outline: none;
  z-index: 100;
}

/* Menu style */
.overlay nav {
  text-align: center;
  position: relative;
  top: 50%;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay .languages.polylang {
  position: absolute;
  right: 20px !important;
  top: unset !important;
  transform: none !important;
  bottom: 20px !important;
  z-index: 1;
  height: 30px;
  display: none;
}
.overlay .languages.polylang ul {
  width: auto;
  display: inline-block;
}
.overlay .languages.polylang .lang-item {
  list-style: none;
  display: inline-block;
  min-width: 28px;
  margin: 0 3px;
  color: #1C1C53;
}
.overlay .languages.polylang .lang-item a {
  text-transform: uppercase;
  padding: 3px 6px;
  font-weight: 300;
  font-size: 14px;
  border: 1px solid transparent !important;
  border-radius: 3px;
  color: #ffffff;
}
.overlay .languages.polylang .lang-item a.on, .overlay .languages.polylang .lang-item a:hover {
  border: 1px solid #ffffff !important;
  border-radius: 3px;
}
.overlay .languages.polylang .lang-item a:visited, .overlay .languages.polylang .lang-item a:link {
  color: #ffffff !important;
}
.overlay .languages.polylang .lang-item.current-lang a {
  border: 1px solid #ffffff !important;
  border-radius: 3px;
  color: #ffffff;
}

.overlay nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
  text-align: left;
}

.overlay nav ul li {
  position: relative;
  display: block;
  height: 20%;
  height: calc(100% / 5);
  min-height: 46px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.overlay nav ul li:before {
  position: absolute;
  content: '>';
  display: block;
  left: -28px;
  top: 50%;
  transform: translateY(-60%);
  font-size: 16px;
  color: #6a6a8f;
  font-weight: 300;
  font-family: 'Roboto';
}

.overlay nav ul li a {
  font-size: 32px;
  font-weight: 300;
  display: block;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.overlay nav ul li a:hover,
.overlay nav ul li a:focus {
  color: #f0f0f0;
}

/* Effects */
.overlay-cornershape {
  background: transparent;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}

.overlay-cornershape.open {
  visibility: visible;
  -webkit-transition: none;
  transition: none;
}

.overlay-cornershape svg {
  position: absolute;
  top: 0;
  left: 0;
}

.overlay-cornershape .overlay-path {
  fill: rgba(28, 28, 83, 0.9);
}

.overlay-cornershape nav,
.overlay-cornershape .overlay-close {
  opacity: 0;
  -webkit-transition: opacity 0.4s 0.4s;
  transition: opacity 0.4s 0.4s;
}

.overlay-cornershape.open nav,
.overlay-cornershape.open .overlay-close {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.overlay-cornershape.close nav,
.overlay-cornershape.close .overlay-close {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

@media screen and (max-width: 880px) {
  .overlay nav ul li a {
    font-size: 25px;
  }

  .overlay .languages.polylang {
    display: block !important;
  }
}
@media screen and (max-width: 880px) {
  .overlay nav ul li:before {
    left: -28px;
    top: 50%;
    transform: translateY(-60%);
  }

  .overlay nav ul li a {
    font-size: 20px;
  }
}
/* Effects */
.overlay-slidedown {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}

/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 25px;
  }

  .overlay nav ul li {
    min-height: 25px;
  }
}
[data-scroll] {
  will-change: transform;
}

.adn-epitech .links-epitech .content {
  counter-reset: figure;
}
.adn-epitech .links-epitech .item {
  margin: 0px 0 0 0;
  max-width: 100%;
  position: relative;
  will-change: transform;
}
.adn-epitech .links-epitech .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1c53 0% 0% no-repeat;
  opacity: 0.26;
}
.adn-epitech .links-epitech .item__img-wrap {
  --aspect-ratio: 1/1.5;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding-bottom: calc(100% / (var(--aspect-ratio)));
  max-width: calc(100%);
  will-change: transform;
}
.adn-epitech .links-epitech .epitech-it .item .item__img-wrap {
  --aspect-ratio: 900/505;
  --image: url("https://www.epitech.eu/wp-content/themes/epitech-adn/assets/images/adn/viseul_it_parallax-desktop.jpg");
}
.adn-epitech .links-epitech .epitech-digital .item .item__img-wrap {
  --aspect-ratio: 900/505;
  --image: url("https://www.epitech.eu/wp-content/themes/epitech-adn/assets/images/adn/viseul_digital_parallax-desktop.jpg");
}
.adn-epitech .links-epitech .item__img {
  --overflow: 40px;
  height: calc(100% + (2 * var(--overflow)));
  top: calc( -1 * var(--overflow));
  width: 100%;
  position: absolute;
  background-image: var(--image);
  background-size: cover;
  background-position: 50% 0%;
  will-change: transform;
}
.adn-epitech .links-epitech .item__img--t1 {
  --overflow: 110px;
}
.adn-epitech .links-epitech .item__img--t2 {
  --overflow: 80px;
}
@media all and (max-width: 880px) {
  .adn-epitech .links-epitech .epitech-it .item .item__img-wrap {
    --aspect-ratio: 820/620;
    --image: url("https://www.epitech.eu/wp-content/themes/epitech-adn/assets/images/adn/viseul_it_parallax-desktop.jpg");
  }
  .adn-epitech .links-epitech .epitech-digital .item .item__img-wrap {
    --aspect-ratio: 820/620;
    --image: url("https://www.epitech.eu/wp-content/themes/epitech-adn/assets/images/adn/viseul_digital_parallax-desktop.jpg");
  }
}

.demo-2 {
  --color-text: #fff;
  --color-bg: #201f21;
  --color-link: #fff;
  --color-link-hover: #7b7b7b;
  --color-info: #7b7b7b;
  border-left: 4rem solid #181819;
}

/* Fade effect */
.js body {
  opacity: 0;
  transition: opacity 0.6s;
}

.js body.render {
  opacity: 1;
}

/* Page Loader */
.js .loading::before {
  content: '';
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  content: '';
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/**************/
.slides {
  position: relative;
}

.js .slides--contained {
  /* 
  margin: 0 11rem 0 0;
  width: calc(100vw - 11rem - 4rem);
  display: flex;
  justify-content: flex-end;
  */
}

.js .slide {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

.js .slide--current {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.slide:first-child .slide__text {
  color: #ffae1a;
}

.slide:nth-child(2) .slide__text {
  color: #58e8b3;
}

.slide:nth-child(3) .slide__text {
  color: #15c9ff;
}

.slide:nth-child(4) .slide__text {
  color: #ffc107;
}

.slide:nth-child(5) .slide__text {
  color: #fff;
}

.slide--current .slide__title {
  animation: glitch-anim-title 0.25s linear alternate 1 backwards;
}

.slide__title {
  cursor: default;
}

.slide__description {
  margin: 0;
  cursor: default;
}

.slide__description a {
  pointer-events: auto;
}

/*
.slide-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 20vw;
    width: 60vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
*/
/*
.slides--contained+.slide-nav {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    margin: 0 0 0 0.25rem;
    top: calc(50% - 0.5rem);
    left: calc(100vw - 600px - 11rem - 4rem - 10vw);
}
*/
/*
.slide-nav__button {
    display: block;
    background: none;
    border: 0;
    margin: 0 1rem 0 0;
    padding: 0;
    text-transform: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    color: var(--color-link);
}

.slide-nav__button span {
    display: block;
}

.slide-nav__button:focus {
    outline: none;
}

.slide-nav__button:hover span {
    animation: glitch-anim-text 0.5s linear alternate 1 backwards;
}

.slide-nav__text {
    font-size: 4vw;
    margin: 0.75rem 0;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: 0;
    color: inherit;
}

.slide-nav__text:hover {
    color: var(--color-link-hover);
}

.slide-nav__text--current:hover,
.slide-nav__text:focus {
    color: var(--color-link);
}

.slide-nav__text--current {
    background-image: linear-gradient(transparent 58%, var(--color-link) 58%, var(--color-link) 64%, transparent 64%);
}

@media screen and (max-width: 65em) {
    .slides--contained {
        margin: 0 !important;
        width: 80vw !important;
        padding: 0 0 2rem 0;
        justify-content: center !important;
    }
    .slide__text {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem 0 0 0;
        text-align: center;
    }
    .slides--contained .slide__text {
        left: auto;
    }
    .slide {
        width: 100%;
    }
    .slide__title {
        font-size: 2rem;
    }
    .slide__description {
        font-size: 1rem;
    }
    .slides--contained .slide__img {
        height: 80vh;
        width: 100%;
    }
    .slide__description {
        max-width: none;
    }
    .slides--contained+.slide-nav {
        left: auto !important;
        justify-content: center !important;
        position: relative !important;
        top: auto !important;
    }
    .slide-nav__text {
        font-size: 1.5rem;
    }
}
*/
.effect-1 {
  --gap-horizontal: 40px;
  --gap-vertical: 50px;
  --time-anim: 2s;
  --delay-anim: 0s;
  --blend-mode-1: none;
  --blend-mode-2: luminosity;
  --blend-mode-3: none;
  --blend-mode-4: none;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: #436161;
  --blend-color-3: transparent;
  --blend-color-4: transparent;
  --blend-color-5: #af4949;
}

.effect-2 {
  --gap-horizontal: 0px;
  --gap-vertical: 0px;
  --time-anim: 2s;
  --delay-anim: 0.25s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: none;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: transparent;
  --blend-color-5: #af4949;
}

/* Glitch styles */
.glitch {
  overflow: hidden;
  position: relative;
}

.glitch,
.glitch__img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.glitch__img {
  position: absolute;
  top: calc(-1 * var(--gap-vertical));
  left: calc(-1 * var(--gap-horizontal));
  width: calc(100% + var(--gap-horizontal) * 2);
  height: calc(100% + var(--gap-vertical) * 2);
  background-color: var(--blend-color-1);
  transform: translate3d(0, 0, 0);
  background-blend-mode: var(--blend-mode-1);
}

.glitch__img:nth-child(n+2) {
  opacity: 0;
}

.glitch--animate .glitch__img:nth-child(n+2) {
  animation-duration: var(--time-anim);
  animation-delay: var(--delay-anim);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.glitch--animate .glitch__img:nth-child(2) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-1;
}

.glitch--animate .glitch__img:nth-child(3) {
  background-color: var(--blend-color-3);
  background-blend-mode: var(--blend-mode-3);
  animation-name: glitch-anim-2;
}

.glitch--animate .glitch__img:nth-child(4) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-3;
}

.glitch--animate .glitch__img:nth-child(5) {
  background-color: var(--blend-color-5);
  background-blend-mode: var(--blend-mode-5);
  animation-name: glitch-anim-flash;
}

/* Animations */
@keyframes glitch-anim-1 {
  0%,
    100% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  20% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  30% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  40% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  50% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  55% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  60% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  65% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  70% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  80% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  85% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
    clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
  }
  95% {
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
    clip-path: polygon(0 72%, 100% 72%, 100% 78%, 0 78%);
  }
}
@keyframes glitch-anim-2 {
  0%,
    100% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }
  10% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  15% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }
  17% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  19% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }
  33% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }
  35% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  40% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }
  45% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }
  49% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }
  50% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }
  55% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  }
  60% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  70% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
    clip-path: polygon(0 65%, 100% 65%, 100% 60%, 0 60%);
  }
  80% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
    clip-path: polygon(0 80%, 100% 80%, 100% 85%, 0 85%);
  }
  90% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
    clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
  }
}
@keyframes glitch-anim-3 {
  0%,
    100% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }
  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  11% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  20% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  25% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  35% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  42% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  48% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  50% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  56% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  61% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  68% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  72% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  77% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  81% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  86% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  90% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  92% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  94% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
}
@keyframes glitch-anim-text {
  0%,
    100% {
    transform: translate3d(2px, -2px, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  20% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  41% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  52% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  61% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  75% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  80% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  96% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
}
@keyframes glitch-anim-title {
  0%,
    100% {
    transform: translate3d(2px, -2px, 0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  20% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  41% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  52% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  61% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  75% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  80% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  96% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
}
/* Flash */
@keyframes glitch-anim-flash {
  0%,
    5% {
    opacity: 0.2;
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
  }
  5.5%,
    100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}
.asteroids-belt {
  display: none;
  border-color: transparent !important;
  height: 327px;
  width: 327px;
  margin-top: -163.5px;
  margin-left: -163.5px;
  animation: orb 179.95583s linear infinite;
  overflow: hidden;
  border-radius: 1000px;
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: 999;
  border: 1px solid rgba(102, 166, 229, 0.12);
}
.asteroids-belt:before {
  top: 50%;
  left: 50%;
  border-radius: 100px;
  content: "";
  position: absolute;
  height: 210px;
  width: 210px;
  margin-left: -105px;
  margin-top: -105px;
  background: transparent;
  border-radius: 140px !important;
  box-shadow: -127px -42px 0 -104px rgba(250, 250, 250, 0.63) , 91px -139px 0 -104px rgba(250,250,250, 0.797) , -85px -85px 0 -104px rgba(250,250,250, 0.82) , -71px 67px 0 -104px rgba(250,250,250, 0.458) , 122px -79px 0 -104px rgba(250,250,250, 0.607) , 136px 101px 0 -104px rgba(250,250,250, 0.953) , -122px 117px 0 -104px rgba(250,250,250, 0.194) , 119px -44px 0 -104px rgba(250,250,250, 0.627) , 21px 67px 0 -104px rgba(250,250,250, 0.199) , -41px 85px 0 -104px rgba(250,250,250, 0.039) , -101px 35px 0 -104px rgba(250,250,250, 0.306) , -28px -18px 0 -104px rgba(250,250,250, 0.352) , -55px 41px 0 -104px rgba(250,250,250, 0.308) , -138px -88px 0 -104px rgba(250,250,250, 0.553) , -18px -77px 0 -104px rgba(250,250,250, 0.489) , -60px 23px 0 -104px rgba(250,250,250, 0.462) , -7px -36px 0 -104px rgba(250,250,250, 0.237) , 29px -28px 0 -104px rgba(250,250,250, 0.841) , 58px -47px 0 -104px rgba(250,250,250, 0.803) , 7px 40px 0 -104px rgba(250,250,250, 0.363) , 13px -29px 0 -104px rgba(250,250,250, 0.503) , -16px 19px 0 -104px rgba(250,250,250, 0.863) , -98px 116px 0 -104px rgba(250,250,250, 0.023) , 45px -71px 0 -104px rgba(250,250,250, 0.276) , 36px -45px 0 -104px rgba(250,250,250, 0.631) , 35px -106px 0 -104px rgba(250,250,250, 0.577) , 34px -82px 0 -104px rgba(250,250,250, 0.789) , 43px -80px 0 -104px rgba(250,250,250, 0.262) , -89px -38px 0 -104px rgba(250,250,250, 0.994) , -133px 79px 0 -104px rgba(250,250,250, 0.711) , -24px -53px 0 -104px rgba(250,250,250, 0.008) , 81px 38px 0 -104px rgba(250,250,250, 0.921) , 96px 67px 0 -104px rgba(250,250,250, 0.669) , 80px 93px 0 -104px rgba(250,250,250, 0.614) , -128px 36px 0 -104px rgba(250,250,250, 0.605) , -53px 34px 0 -104px rgba(250,250,250, 0.116) , 72px 105px 0 -104px rgba(250,250,250, 0.523) , -42px 130px 0 -104px rgba(250,250,250, 0.175) , 8px -61px 0 -104px rgba(250,250,250, 0.994) , -8px -51px 0 -104px rgba(250,250,250, 0.642) , -62px 5px 0 -104px rgba(250,250,250, 0.408) , 57px -101px 0 -104px rgba(250,250,250, 0.176) , -6px 0px 0 -104px rgba(250,250,250, 0.842) , 139px 14px 0 -104px rgba(250,250,250, 0.231) , 46px 139px 0 -104px rgba(250,250,250, 0.063) , -96px 135px 0 -104px rgba(250,250,250, 0.139) , 126px 144px 0 -104px rgba(250,250,250, 0.951) , -132px -140px 0 -104px rgba(250,250,250, 0.953) , -38px -43px 0 -104px rgba(250,250,250, 0.508) , -52px 82px 0 -104px rgba(250,250,250, 0.123) , -114px 22px 0 -104px rgba(250,250,250, 0.769) , -105px 107px 0 -104px rgba(250,250,250, 0.33) , 40px -88px 0 -104px rgba(250,250,250, 0.251) , -65px 2px 0 -104px rgba(250,250,250, 0.331) , 21px -95px 0 -104px rgba(250,250,250, 0.446) , -142px 9px 0 -104px rgba(250,250,250, 0.585) , 89px -117px 0 -104px rgba(250,250,250, 0.494) , -111px 56px 0 -104px rgba(250,250,250, 0.893) , 42px 28px 0 -104px rgba(250,250,250, 0.133) , 139px 85px 0 -104px rgba(250,250,250, 0.969) , -119px 121px 0 -104px rgba(250,250,250, 0.979) , -8px 34px 0 -104px rgba(250,250,250, 0.567) , 61px 97px 0 -104px rgba(250,250,250, 0.142) , 34px -67px 0 -104px rgba(250,250,250, 0.944) , -58px -124px 0 -104px rgba(250,250,250, 0.952) , -55px 14px 0 -104px rgba(250,250,250, 0.391) , 37px 67px 0 -104px rgba(250,250,250, 0.082) , -129px -71px 0 -104px rgba(250,250,250, 0.975) , 31px -51px 0 -104px rgba(250,250,250, 0.099) , 25px -4px 0 -104px rgba(250,250,250, 0.748) , -94px -134px 0 -104px rgba(250,250,250, 0.765) , -15px 64px 0 -104px rgba(250,250,250, 0.438) , -111px 87px 0 -104px rgba(250,250,250, 0.153) , 119px 52px 0 -104px rgba(250,250,250, 0.544) , 28px 144px 0 -104px rgba(250,250,250, 0.121) , 75px -79px 0 -104px rgba(250,250,250, 0.409) , -141px -90px 0 -104px rgba(250,250,250, 0.417) , 110px -16px 0 -104px rgba(250,250,250, 0.66) , 0px 40px 0 -104px rgba(250,250,250, 0.847) , 32px -89px 0 -104px rgba(250,250,250, 0.06) , 57px 41px 0 -104px rgba(250,250,250, 0.077) , -120px 28px 0 -104px rgba(250,250,250, 0.851) , 86px 108px 0 -104px rgba(250,250,250, 0.791) , -110px -43px 0 -104px rgba(250,250,250, 0.678) , -70px 35px 0 -104px rgba(250,250,250, 0.317) , -63px 49px 0 -104px rgba(250,250,250, 0.605) , -53px 119px 0 -104px rgba(250,250,250, 0.182) , 137px 125px 0 -104px rgba(250,250,250, 0.461) , 45px 60px 0 -104px rgba(250,250,250, 0.408) , 127px -2px 0 -104px rgba(250,250,250, 0.787) , 10px -23px 0 -104px rgba(250,250,250, 0.071) , -17px 90px 0 -104px rgba(250,250,250, 0.878) , -35px -91px 0 -104px rgba(250,250,250, 0.901) , -41px -119px 0 -104px rgba(250,250,250, 0.913) , -20px -89px 0 -104px rgba(250,250,250, 0.866) , 33px 77px 0 -104px rgba(250,250,250, 0.875) , 90px 69px 0 -104px rgba(250,250,250, 0.78) , -33px 59px 0 -104px rgba(250,250,250, 0.465) , -9px -79px 0 -104px rgba(250,250,250, 0.686) , -135px 80px 0 -104px rgba(250,250,250, 0.076) , -16px -40px 0 -104px rgba(250,250,250, 0.134) , 72px -97px 0 -104px rgba(250,250,250, 0.283) , 120px -14px 0 -104px rgba(250,250,250, 0.018) , -45px 7px 0 -104px rgba(250,250,250, 0.972) , -91px 89px 0 -104px rgba(250,250,250, 0.664) , 11px 88px 0 -104px rgba(250,250,250, 0.18) , 62px -5px 0 -104px rgba(250,250,250, 0.768) , 123px -63px 0 -104px rgba(250,250,250, 0.066) , 105px -70px 0 -104px rgba(250,250,250, 0.031) , 5px -18px 0 -104px rgba(250,250,250, 0.341) , 45px -38px 0 -104px rgba(250,250,250, 0.861) , 137px 52px 0 -104px rgba(250,250,250, 0.615) , -125px 62px 0 -104px rgba(250,250,250, 0.531) , 33px 61px 0 -104px rgba(250,250,250, 0.197) , -5px -56px 0 -104px rgba(250,250,250, 0.533) , -126px -106px 0 -104px rgba(250,250,250, 0.681) , 74px -1px 0 -104px rgba(250,250,250, 0.863) , -65px 129px 0 -104px rgba(250,250,250, 0.415) , 136px -91px 0 -104px rgba(250,250,250, 0.183) , 44px 52px 0 -104px rgba(250,250,250, 0.077) , 61px 133px 0 -104px rgba(250,250,250, 0.612) , -71px 62px 0 -104px rgba(250,250,250, 0.746) , 104px -34px 0 -104px rgba(250,250,250, 0.306) , 8px 65px 0 -104px rgba(250,250,250, 0.291) , 29px -88px 0 -104px rgba(250,250,250, 0.995) , 113px 81px 0 -104px rgba(250,250,250, 0.271) , 119px 6px 0 -104px rgba(250,250,250, 0.275) , 90px -20px 0 -104px rgba(250,250,250, 0.367) , -21px 88px 0 -104px rgba(250,250,250, 0.126) , 51px 142px 0 -104px rgba(250,250,250, 0.326) , 36px 69px 0 -104px rgba(250,250,250, 0.773) , -21px -140px 0 -104px rgba(250,250,250, 0.853) , -38px 74px 0 -104px rgba(250,250,250, 0.55) , 32px 34px 0 -104px rgba(250,250,250, 0.571) , -81px -141px 0 -104px rgba(250,250,250, 0.917) , 90px -19px 0 -104px rgba(250,250,250, 0.36) , -44px 145px 0 -104px rgba(250,250,250, 0.526) , 93px 69px 0 -104px rgba(250,250,250, 0.273) , 85px -75px 0 -104px rgba(250,250,250, 0.245) , 121px -106px 0 -104px rgba(250,250,250, 0.639) , -36px -133px 0 -104px rgba(250,250,250, 0.68) , 85px 7px 0 -104px rgba(250,250,250, 0.363) , -110px -109px 0 -104px rgba(250,250,250, 0.522) , 98px -84px 0 -104px rgba(250,250,250, 0.115) , 133px -21px 0 -104px rgba(250,250,250, 0.933) , 89px -75px 0 -104px rgba(250,250,250, 0.217) , 124px -22px 0 -104px rgba(250,250,250, 0.215) , 98px -94px 0 -104px rgba(250,250,250, 0.96) , 103px 37px 0 -104px rgba(250,250,250, 0.635) , -65px 139px 0 -104px rgba(250,250,250, 0.161) , -111px 99px 0 -104px rgba(250,250,250, 0.391) , 114px 105px 0 -104px rgba(250,250,250, 0.727) , 22px 7px 0 -104px rgba(250,250,250, 0.356) , 72px 14px 0 -104px rgba(250,250,250, 0.932) , -108px 14px 0 -104px rgba(250,250,250, 0.264) , 99px -18px 0 -104px rgba(250,250,250, 0.958) , -8px -46px 0 -104px rgba(250,250,250, 0.172) , -48px -76px 0 -104px rgba(250,250,250, 0.43) , 28px -102px 0 -104px rgba(250,250,250, 0.971) , -36px 96px 0 -104px rgba(250,250,250, 0.483) , 18px 23px 0 -104px rgba(250,250,250, 0.682) , 13px -81px 0 -104px rgba(250,250,250, 0.067) , -53px -91px 0 -104px rgba(250,250,250, 0.546) , -61px -114px 0 -104px rgba(250,250,250, 0.645) , -3px 81px 0 -104px rgba(250,250,250, 0.823) , -121px 111px 0 -104px rgba(250,250,250, 0.982) , 144px -137px 0 -104px rgba(250,250,250, 0.995) , -126px -9px 0 -104px rgba(250,250,250, 0.263) , 117px 59px 0 -104px rgba(250,250,250, 0.534) , -105px -86px 0 -104px rgba(250,250,250, 0.107) , 12px -132px 0 -104px rgba(250,250,250, 0.731) , -79px -55px 0 -104px rgba(250,250,250, 0.488) , -144px -129px 0 -104px rgba(250,250,250, 0.934) , 62px 65px 0 -104px rgba(250,250,250, 0.597) , -60px 71px 0 -104px rgba(250,250,250, 0.159) , 91px -17px 0 -104px rgba(250,250,250, 0.899) , -63px 28px 0 -104px rgba(250,250,250, 0.683) , 27px -136px 0 -104px rgba(250,250,250, 0.21) , -92px -4px 0 -104px rgba(250,250,250, 0.256) , -119px -22px 0 -104px rgba(250,250,250, 0.816) , 38px -122px 0 -104px rgba(250,250,250, 0.576) , -54px 69px 0 -104px rgba(250,250,250, 0.225) , -135px -21px 0 -104px rgba(250,250,250, 0.674) , -62px 42px 0 -104px rgba(250,250,250, 0.021) , 98px -101px 0 -104px rgba(250,250,250, 0.535) , 3px 74px 0 -104px rgba(250,250,250, 0.962) , 68px 39px 0 -104px rgba(250,250,250, 0.904) , 77px -91px 0 -104px rgba(250,250,250, 0.726) , -62px 3px 0 -104px rgba(250,250,250, 0.549) , -127px 26px 0 -104px rgba(250,250,250, 0.693) , 13px 62px 0 -104px rgba(250,250,250, 0.887) , 25px 101px 0 -104px rgba(250,250,250, 0.936) , -116px 135px 0 -104px rgba(250,250,250, 0.277) , -95px -31px 0 -104px rgba(250,250,250, 0.838) , -93px -34px 0 -104px rgba(250,250,250, 0.725) , 99px 17px 0 -104px rgba(250,250,250, 0.751) , -49px 44px 0 -104px rgba(250,250,250, 0.772) , -96px -101px 0 -104px rgba(250,250,250, 0.523) , 5px -65px 0 -104px rgba(250,250,250, 0.759) , 83px -67px 0 -104px rgba(250,250,250, 0.087) , 140px -50px 0 -104px rgba(250,250,250, 0.748) , -85px 105px 0 -104px rgba(250,250,250, 0.626) , 42px 68px 0 -104px rgba(250,250,250, 0.592) , -27px -120px 0 -104px rgba(250,250,250, 0.989) , 141px 5px 0 -104px rgba(250,250,250, 0.665) , -130px -137px 0 -104px rgba(250,250,250, 0.233) , 73px -32px 0 -104px rgba(250,250,250, 0.06) , 67px 95px 0 -104px rgba(250,250,250, 0.87) , 70px -31px 0 -104px rgba(250,250,250, 0.801) , 11px 81px 0 -104px rgba(250,250,250, 0.422) , -141px -18px 0 -104px rgba(250,250,250, 0.682) , -142px 106px 0 -104px rgba(250,250,250, 0.988) , -61px 135px 0 -104px rgba(250,250,250, 0.235) , -95px -104px 0 -104px rgba(250,250,250, 0.631) , 43px 100px 0 -104px rgba(250,250,250, 0.493) , 80px 50px 0 -104px rgba(250,250,250, 0.096) , 20px -18px 0 -104px rgba(250,250,250, 0.576) , -109px -48px 0 -104px rgba(250,250,250, 0.275) , 84px -77px 0 -104px rgba(250,250,250, 0.146) , 73px -109px 0 -104px rgba(250,250,250, 0.048) , 1px -79px 0 -104px rgba(250,250,250, 0.658) , 33px 85px 0 -104px rgba(250,250,250, 0.571) , -44px -67px 0 -104px rgba(250,250,250, 0.963) , 2px 74px 0 -104px rgba(250,250,250, 0.752) , 71px 130px 0 -104px rgba(250,250,250, 0.691) , 74px 79px 0 -104px rgba(250,250,250, 0.233) , -86px -64px 0 -104px rgba(250,250,250, 0.015) , 90px -132px 0 -104px rgba(250,250,250, 0.023) , 115px -16px 0 -104px rgba(250,250,250, 0.262) , 61px 116px 0 -104px rgba(250,250,250, 0.94) , 55px 71px 0 -104px rgba(250,250,250, 0.601) , 145px 7px 0 -104px rgba(250,250,250, 0.917) , 27px -59px 0 -104px rgba(250,250,250, 0.837) , -102px -48px 0 -104px rgba(250,250,250, 0.899) , 14px 117px 0 -104px rgba(250,250,250, 0.91) , 60px 130px 0 -104px rgba(250,250,250, 0.274) , -98px -49px 0 -104px rgba(250,250,250, 0.671) , -130px 105px 0 -104px rgba(250,250,250, 0.872) , -60px 9px 0 -104px rgba(250,250,250, 0.331) , 121px 4px 0 -104px rgba(250,250,250, 0.297) , 102px -39px 0 -104px rgba(250,250,250, 0.846) , -139px 54px 0 -104px rgba(250,250,250, 0.292) , 88px -116px 0 -104px rgba(250,250,250, 0.395) , -110px -87px 0 -104px rgba(250,250,250, 0.003) , 60px -65px 0 -104px rgba(250,250,250, 0.463) , 51px -73px 0 -104px rgba(250,250,250, 0.688) , 84px -89px 0 -104px rgba(250,250,250, 0.001) , -120px 145px 0 -104px rgba(250,250,250, 0.511) , -107px -106px 0 -104px rgba(250,250,250, 0.479) , 50px -12px 0 -104px rgba(250,250,250, 0.523) , 1px -102px 0 -104px rgba(250,250,250, 0.053) , 41px 13px 0 -104px rgba(250,250,250, 0.821) , 140px -125px 0 -104px rgba(250,250,250, 0.819) , 126px 0px 0 -104px rgba(250,250,250, 0.072) , 4px 31px 0 -104px rgba(250,250,250, 0.611) , -142px 66px 0 -104px rgba(250,250,250, 0.892) , -87px -109px 0 -104px rgba(250,250,250, 0.817) , -113px -48px 0 -104px rgba(250,250,250, 0.826) , -30px 85px 0 -104px rgba(250,250,250, 0.162) , -109px -52px 0 -104px rgba(250,250,250, 0.658) , -76px -13px 0 -104px rgba(250,250,250, 0.676) , -129px 135px 0 -104px rgba(250,250,250, 0.744) , -22px 6px 0 -104px rgba(250,250,250, 0.38) , 24px 75px 0 -104px rgba(250,250,250, 0.292) , 114px 53px 0 -104px rgba(250,250,250, 0.272) , 52px 95px 0 -104px rgba(250,250,250, 0.447) , -25px 132px 0 -104px rgba(250,250,250, 0.462) , 34px -58px 0 -104px rgba(250,250,250, 0.481) , -141px -127px 0 -104px rgba(250,250,250, 0.174) , -79px -55px 0 -104px rgba(250,250,250, 0.079) , 59px 71px 0 -104px rgba(250,250,250, 0.562) , -98px -142px 0 -104px rgba(250,250,250, 0.617) , 118px -114px 0 -104px rgba(250,250,250, 0.09) , 20px 59px 0 -104px rgba(250,250,250, 0.331) , -127px 72px 0 -104px rgba(250,250,250, 0.683) , -95px -23px 0 -104px rgba(250,250,250, 0.108) , -85px -70px 0 -104px rgba(250,250,250, 0.348) , -53px -134px 0 -104px rgba(250,250,250, 0.162) , 115px 136px 0 -104px rgba(250,250,250, 0.752) , -109px 80px 0 -104px rgba(250,250,250, 0.169) , 25px 8px 0 -104px rgba(250,250,250, 0.314) , 31px 145px 0 -104px rgba(250,250,250, 0.805) , 51px -90px 0 -104px rgba(250,250,250, 0.366) , 145px 113px 0 -104px rgba(250,250,250, 0.755) , 95px 14px 0 -104px rgba(250,250,250, 0.077) , -90px 14px 0 -104px rgba(250,250,250, 0.357) , -57px -29px 0 -104px rgba(250,250,250, 0.414) , 128px -115px 0 -104px rgba(250,250,250, 0.238) , 0px -17px 0 -104px rgba(250,250,250, 0.217) , -54px 11px 0 -104px rgba(250,250,250, 0.135) , -20px -92px 0 -104px rgba(250,250,250, 0.829) , 120px 50px 0 -104px rgba(250,250,250, 0.577) , 138px -60px 0 -104px rgba(250,250,250, 0.693) , 32px -95px 0 -104px rgba(250,250,250, 0.689) , 36px -45px 0 -104px rgba(250,250,250, 0.544) , -15px -95px 0 -104px rgba(250,250,250, 0.685) , 50px 122px 0 -104px rgba(250,250,250, 0.858) , -7px 133px 0 -104px rgba(250,250,250, 0.545) , 109px -19px 0 -104px rgba(250,250,250, 0.614) , 89px 50px 0 -104px rgba(250,250,250, 0.559) , 123px 7px 0 -104px rgba(250,250,250, 0.777) , -4px -17px 0 -104px rgba(250,250,250, 0.438) , 127px -5px 0 -104px rgba(250,250,250, 0.587) , -114px -99px 0 -104px rgba(250,250,250, 0.677) , -102px -7px 0 -104px rgba(250,250,250, 0.772) , 5px 84px 0 -104px rgba(250,250,250, 0.453) , -14px 129px 0 -104px rgba(250,250,250, 0.033) , -90px 12px 0 -104px rgba(250,250,250, 0.528) , 101px 101px 0 -104px rgba(250,250,250, 0.576) , -57px -38px 0 -104px rgba(250,250,250, 0.47) , -142px 84px 0 -104px rgba(250,250,250, 0.189) , 54px -22px 0 -104px rgba(250,250,250, 0.976) , -112px -103px 0 -104px rgba(250,250,250, 0.017) , 39px 62px 0 -104px rgba(250,250,250, 0.339) , -138px -108px 0 -104px rgba(250,250,250, 0.719) , 91px 82px 0 -104px rgba(250,250,250, 0.207) , -30px 65px 0 -104px rgba(250,250,250, 0.946) , 28px -134px 0 -104px rgba(250,250,250, 0.602) , 124px 73px 0 -104px rgba(250,250,250, 0.312) , -117px -52px 0 -104px rgba(250,250,250, 0.055) , -8px -104px 0 -104px rgba(250,250,250, 0.883) , 139px -74px 0 -104px rgba(250,250,250, 0.152) , -137px -1px 0 -104px rgba(250,250,250, 0.022) , -131px 4px 0 -104px rgba(250,250,250, 0.048) , 121px -55px 0 -104px rgba(250,250,250, 0.18) , -32px -116px 0 -104px rgba(250,250,250, 0.479) , 112px -18px 0 -104px rgba(250,250,250, 0.586) , 7px -23px 0 -104px rgba(250,250,250, 0.045) , 98px 29px 0 -104px rgba(250,250,250, 0.956) , 28px 94px 0 -104px rgba(250,250,250, 0.151) , -43px -126px 0 -104px rgba(250,250,250, 0.68) , -21px -82px 0 -104px rgba(250,250,250, 0.459) , 16px 102px 0 -104px rgba(250,250,250, 0.659) , -119px -55px 0 -104px rgba(250,250,250, 0.522) , 31px 102px 0 -104px rgba(250,250,250, 0.272) , 92px 141px 0 -104px rgba(250,250,250, 0.849) , 120px 18px 0 -104px rgba(250,250,250, 0.451) , 36px 108px 0 -104px rgba(250,250,250, 0.265) , -56px -30px 0 -104px rgba(250,250,250, 0.116) , -54px 116px 0 -104px rgba(250,250,250, 0.374) , 117px -23px 0 -104px rgba(250,250,250, 0.657) , -20px 76px 0 -104px rgba(250,250,250, 0.274) , -56px -48px 0 -104px rgba(250,250,250, 0.723) , -96px 20px 0 -104px rgba(250,250,250, 0.469) , 96px 89px 0 -104px rgba(250,250,250, 0.96) , -33px 5px 0 -104px rgba(250,250,250, 0.762) , 108px -16px 0 -104px rgba(250,250,250, 0.794) , 51px -52px 0 -104px rgba(250,250,250, 0.826) , 47px -111px 0 -104px rgba(250,250,250, 0.627) , 130px -72px 0 -104px rgba(250,250,250, 0.771) , 80px 139px 0 -104px rgba(250,250,250, 0.179) , 125px -40px 0 -104px rgba(250,250,250, 0.537) , 66px 39px 0 -104px rgba(250,250,250, 0.774) , -136px 75px 0 -104px rgba(250,250,250, 0.519) , 19px -31px 0 -104px rgba(250,250,250, 0.887) , 20px 9px 0 -104px rgba(250,250,250, 0.864) , 5px -89px 0 -104px rgba(250,250,250, 0.845) , -121px -10px 0 -104px rgba(250,250,250, 0.358) , 122px 77px 0 -104px rgba(250,250,250, 0.467) , -102px 45px 0 -104px rgba(250,250,250, 0.534) , -126px -86px 0 -104px rgba(250,250,250, 0.681) , 54px -127px 0 -104px rgba(250,250,250, 0.688) , 54px 29px 0 -104px rgba(250,250,250, 0.201) , 109px -130px 0 -104px rgba(250,250,250, 0.334) , -24px -11px 0 -104px rgba(250,250,250, 0.341) , 10px -116px 0 -104px rgba(250,250,250, 0.82) , 11px 134px 0 -104px rgba(250,250,250, 0.465) , -134px 81px 0 -104px rgba(250,250,250, 0.292) , -121px -119px 0 -104px rgba(250,250,250, 0.136) , -87px 94px 0 -104px rgba(250,250,250, 0.794) , -79px 60px 0 -104px rgba(250,250,250, 0.591) , -102px 13px 0 -104px rgba(250,250,250, 0.413) , -53px -124px 0 -104px rgba(250,250,250, 0.605) , -142px -33px 0 -104px rgba(250,250,250, 0.429) , 6px -140px 0 -104px rgba(250,250,250, 0.08) , -9px -128px 0 -104px rgba(250,250,250, 0.84) , -19px -75px 0 -104px rgba(250,250,250, 0.147) , -35px -31px 0 -104px rgba(250,250,250, 0.554) , 141px -123px 0 -104px rgba(250,250,250, 0.576) , 13px -98px 0 -104px rgba(250,250,250, 0.922) , -60px 129px 0 -104px rgba(250,250,250, 0.731) , -16px 44px 0 -104px rgba(250,250,250, 0.435) , 118px -21px 0 -104px rgba(250,250,250, 0.636) , 34px 134px 0 -104px rgba(250,250,250, 0.489) , 68px -126px 0 -104px rgba(250,250,250, 0.438) , -115px -91px 0 -104px rgba(250,250,250, 0.075) , -62px 19px 0 -104px rgba(250,250,250, 0.131) , -132px -103px 0 -104px rgba(250,250,250, 0.174) , 81px 12px 0 -104px rgba(250,250,250, 0.955) , -89px 100px 0 -104px rgba(250,250,250, 0.049);
}

@keyframes orb {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/**
*
* Styleguide
*
**/
.page--styleguide .container {
  box-sizing: content-box;
}
.page--styleguide pre {
  background: #f0f0f0;
  padding: 13px;
  padding-right: 13px;
  padding-left: 13px;
  overflow: auto;
}
.page--styleguide .styleguide__module-title {
  margin-bottom: 24px;
}
.page--styleguide section {
  margin-bottom: 48px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 71px;
}
.page--styleguide .styleguide__color-list {
  text-align: center;
}
.page--styleguide .styleguide__color-list li {
  border-bottom: 48px solid;
  margin-bottom: 24px;
  position: relative;
}
.page--styleguide .styleguide__breadcrumb .breadcrumbs {
  display: block;
}
.page--styleguide .styleguide__lists ul,
.page--styleguide .styleguide__lists ol {
  margin-bottom: 24px;
}
.page--styleguide .styleguide__inverted-block {
  padding: 60px !important;
  background: #343434;
  padding: 13px;
  text-align: center;
}
.page--styleguide .styleguide__theme-block {
  background: #1C1C53;
  padding: 0 13px;
}
.page--styleguide ol > li {
  position: relative;
  padding-left: 0px;
  color: #fff;
}
.page--styleguide .list-links {
  padding: 20px 0;
}
.page--styleguide ol.list-links li::before {
  display: none;
}
.page--styleguide ol.list-links li::before {
  display: none;
}
.page--styleguide ol.list-links li a {
  display: inline-block;
  font-weight: 300;
  color: #fff;
  font-family: 'Roboto';
}

/**
*
* Resources page
*
**/
.page .title,
.page .sstitle,
.single .title,
.single .sstitle,
.archive .title,
.archive .sstitle,
.error404 .title,
.error404 .sstitle {
  display: block;
  text-align: left;
  font-family: Roboto;
  font-weight: 300;
  color: #0072BC;
  clear: both;
  text-transform: none;
}
.page .title.xxlarge,
.page .sstitle.xxlarge,
.single .title.xxlarge,
.single .sstitle.xxlarge,
.archive .title.xxlarge,
.archive .sstitle.xxlarge,
.error404 .title.xxlarge,
.error404 .sstitle.xxlarge {
  font-size: 40px;
  line-height: 53px;
}
.page .title.xlarge,
.page .sstitle.xlarge,
.single .title.xlarge,
.single .sstitle.xlarge,
.archive .title.xlarge,
.archive .sstitle.xlarge,
.error404 .title.xlarge,
.error404 .sstitle.xlarge {
  font-size: 32px;
  line-height: 43px;
}
.page .title.large,
.page .sstitle.large,
.single .title.large,
.single .sstitle.large,
.archive .title.large,
.archive .sstitle.large,
.error404 .title.large,
.error404 .sstitle.large {
  font-weight: 300;
  font-size: 21px;
  line-height: 23px;
}
.page .title.medium,
.page .sstitle.medium,
.single .title.medium,
.single .sstitle.medium,
.archive .title.medium,
.archive .sstitle.medium,
.error404 .title.medium,
.error404 .sstitle.medium {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.page .title.base,
.page .sstitle.base,
.single .title.base,
.single .sstitle.base,
.archive .title.base,
.archive .sstitle.base,
.error404 .title.base,
.error404 .sstitle.base {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
}
.page .title.small,
.page .sstitle.small,
.single .title.small,
.single .sstitle.small,
.archive .title.small,
.archive .sstitle.small,
.error404 .title.small,
.error404 .sstitle.small {
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
}
.page .title.bold,
.page .sstitle.bold,
.single .title.bold,
.single .sstitle.bold,
.archive .title.bold,
.archive .sstitle.bold,
.error404 .title.bold,
.error404 .sstitle.bold {
  font-weight: 700;
}
.page .title.orange,
.page .sstitle.orange,
.single .title.orange,
.single .sstitle.orange,
.archive .title.orange,
.archive .sstitle.orange,
.error404 .title.orange,
.error404 .sstitle.orange {
  color: #DA6C37;
}
.page .title.blue,
.page .sstitle.blue,
.single .title.blue,
.single .sstitle.blue,
.archive .title.blue,
.archive .sstitle.blue,
.error404 .title.blue,
.error404 .sstitle.blue {
  color: #0072BC;
}
.page .title.white,
.page .sstitle.white,
.single .title.white,
.single .sstitle.white,
.archive .title.white,
.archive .sstitle.white,
.error404 .title.white,
.error404 .sstitle.white {
  color: #fff;
}
.page .title.bluelight,
.page .sstitle.bluelight,
.single .title.bluelight,
.single .sstitle.bluelight,
.archive .title.bluelight,
.archive .sstitle.bluelight,
.error404 .title.bluelight,
.error404 .sstitle.bluelight {
  color: #4CB2FF;
}
.page .txt,
.single .txt,
.archive .txt,
.error404 .txt {
  display: block;
  text-align: left;
  font-family: Roboto;
  font-weight: 300;
  color: #343434;
  margin-top: 0;
}
.page .txt.xxlarge,
.single .txt.xxlarge,
.archive .txt.xxlarge,
.error404 .txt.xxlarge {
  font-size: 40px;
  line-height: 53px;
}
.page .txt.xlarge,
.single .txt.xlarge,
.archive .txt.xlarge,
.error404 .txt.xlarge {
  font-size: 32px;
  line-height: 43px;
}
.page .txt.large,
.single .txt.large,
.archive .txt.large,
.error404 .txt.large {
  font-weight: 300;
  font-size: 21px;
  line-height: 23px;
}
.page .txt.medium,
.single .txt.medium,
.archive .txt.medium,
.error404 .txt.medium {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.page .txt.base,
.single .txt.base,
.archive .txt.base,
.error404 .txt.base {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
}
.page .txt.small,
.single .txt.small,
.archive .txt.small,
.error404 .txt.small {
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
}
.page .txt.bold,
.single .txt.bold,
.archive .txt.bold,
.error404 .txt.bold {
  font-weight: 700;
}
.page .txt strong,
.single .txt strong,
.archive .txt strong,
.error404 .txt strong {
  font-weight: 700;
}
.page .texte,
.single .texte,
.archive .texte,
.error404 .texte {
  text-align: left;
  font-weight: 300;
  color: #343434;
}
.page .texte.medium,
.single .texte.medium,
.archive .texte.medium,
.error404 .texte.medium {
  font-size: 18px;
  line-height: 28px;
}
.page .texte.base,
.single .texte.base,
.archive .texte.base,
.error404 .texte.base {
  font-size: 14px;
  line-height: 24px;
}
.page .texte.orange,
.single .texte.orange,
.archive .texte.orange,
.error404 .texte.orange {
  color: #DA6C37;
}
.page .texte.blue,
.single .texte.blue,
.archive .texte.blue,
.error404 .texte.blue {
  color: #0072BC;
}
.page .texte.white,
.single .texte.white,
.archive .texte.white,
.error404 .texte.white {
  color: #fff;
}
.page .texte.bluelight,
.single .texte.bluelight,
.archive .texte.bluelight,
.error404 .texte.bluelight {
  color: #4CB2FF;
}
.page .texte strong,
.single .texte strong,
.archive .texte strong,
.error404 .texte strong {
  font-weight: 700;
}
.page .main-breadcrumbs,
.single .main-breadcrumbs,
.archive .main-breadcrumbs,
.error404 .main-breadcrumbs {
  position: relative;
  background: #fff;
  top: -13px;
  width: auto;
  padding: 5px;
  float: left;
  padding: 0 8px;
  left: 0px;
  z-index: 1;
}
.page .breadcrumbs,
.single .breadcrumbs,
.archive .breadcrumbs,
.error404 .breadcrumbs {
  font-weight: 400;
}
.page .breadcrumbs p,
.page .breadcrumbs a,
.single .breadcrumbs p,
.single .breadcrumbs a,
.archive .breadcrumbs p,
.archive .breadcrumbs a,
.error404 .breadcrumbs p,
.error404 .breadcrumbs a {
  font: 400 12px/22px Roboto;
}
.page .breadcrumbs span,
.single .breadcrumbs span,
.archive .breadcrumbs span,
.error404 .breadcrumbs span {
  color: #343434 !important;
}
.page .breadcrumbs a,
.single .breadcrumbs a,
.archive .breadcrumbs a,
.error404 .breadcrumbs a {
  color: #0072BC;
  text-decoration: underline;
}
.page .breadcrumbs a:hover,
.single .breadcrumbs a:hover,
.archive .breadcrumbs a:hover,
.error404 .breadcrumbs a:hover {
  color: #0072BC !important;
  text-decoration: none;
}
.page .breadcrumbs a:visited,
.single .breadcrumbs a:visited,
.archive .breadcrumbs a:visited,
.error404 .breadcrumbs a:visited {
  color: #0072BC !important;
}
.page .quote,
.single .quote,
.archive .quote,
.error404 .quote {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding-bottom: 40px;
}
.page .quote blockquote,
.single .quote blockquote,
.archive .quote blockquote,
.error404 .quote blockquote {
  position: relative;
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #0072BC;
  display: block;
  max-width: 660px;
  min-width: 270px;
  margin: 80px auto 0;
}
.page .quote blockquote:before,
.single .quote blockquote:before,
.archive .quote blockquote:before,
.error404 .quote blockquote:before {
  content: '';
  background: url("../assets/images/quote.png");
  position: absolute;
  top: 0;
  left: -30px;
  width: 23px;
  height: 19px;
}
.page .quote blockquote:after,
.single .quote blockquote:after,
.archive .quote blockquote:after,
.error404 .quote blockquote:after {
  content: '';
  background: url("../assets/images/quote.png");
  transform: rotate(180deg);
  position: absolute;
  width: 23px;
  height: 19px;
  bottom: 0;
  right: -30px;
}
.page .quote blockquote.orange,
.single .quote blockquote.orange,
.archive .quote blockquote.orange,
.error404 .quote blockquote.orange {
  color: #DA6C37;
}
.page .quote blockquote.orange p,
.single .quote blockquote.orange p,
.archive .quote blockquote.orange p,
.error404 .quote blockquote.orange p {
  color: #DA6C37 !important;
  text-align: center !important;
}
.page .quote blockquote.orange:before,
.single .quote blockquote.orange:before,
.archive .quote blockquote.orange:before,
.error404 .quote blockquote.orange:before {
  background: url("../assets/images/quote_orange.png");
}
.page .quote blockquote.orange:after,
.single .quote blockquote.orange:after,
.archive .quote blockquote.orange:after,
.error404 .quote blockquote.orange:after {
  background: url("../assets/images/quote_orange.png");
}
.page .quote blockquote.orange p,
.single .quote blockquote.orange p,
.archive .quote blockquote.orange p,
.error404 .quote blockquote.orange p {
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #DA6C37;
  display: block;
  width: 100%;
}
.page .quote blockquote p,
.single .quote blockquote p,
.archive .quote blockquote p,
.error404 .quote blockquote p {
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  color: #0072BC;
  display: block;
  width: 100%;
}
.page .quote .blockquote-author,
.single .quote .blockquote-author,
.archive .quote .blockquote-author,
.error404 .quote .blockquote-author {
  display: block;
  float: right;
  text-align: right;
  font-weight: 700;
  font-size: 15px;
}
.page .quote .blockquote-date,
.single .quote .blockquote-date,
.archive .quote .blockquote-date,
.error404 .quote .blockquote-date {
  display: block;
  float: right;
  text-align: right;
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
}
.page .quote p,
.single .quote p,
.archive .quote p,
.error404 .quote p {
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  max-width: 660px;
  min-width: 270px;
}
.page .quote p.txt,
.single .quote p.txt,
.archive .quote p.txt,
.error404 .quote p.txt {
  color: #ffffff;
  padding: 0;
  margin: 0;
  height: 244px;
  overflow: hidden;
  font-weight: 300;
  font-style: italic;
}
.page .quote p.author,
.single .quote p.author,
.archive .quote p.author,
.error404 .quote p.author {
  position: absolute;
  bottom: -10px;
  left: 0;
  min-height: 60px;
  margin: 0 64px !important;
  color: #4CB2FF;
  height: 60px;
}
.page .quote p.author strong,
.single .quote p.author strong,
.archive .quote p.author strong,
.error404 .quote p.author strong {
  font-weight: 700;
}
.page .quote .content,
.single .quote .content,
.archive .quote .content,
.error404 .quote .content {
  position: relative;
  margin-right: 0;
}
.page .quote .content.medium,
.single .quote .content.medium,
.archive .quote .content.medium,
.error404 .quote .content.medium {
  max-width: 520px;
  min-width: 300px;
  width: 100%;
  height: 418px;
  padding: 64px 60px 64px 60px;
  padding-bottom: 120px;
}
.page .quote .content.medium.blue,
.single .quote .content.medium.blue,
.archive .quote .content.medium.blue,
.error404 .quote .content.medium.blue {
  background: url("../assets/images/bg_quote.png");
  background-repeat: no-repeat;
  background-size: auto auto;
}
.page .quote .content.medium.orange,
.single .quote .content.medium.orange,
.archive .quote .content.medium.orange,
.error404 .quote .content.medium.orange {
  background: url("../assets/images/bg_quote_orange.png");
  background-repeat: no-repeat;
  background-size: auto auto;
}
.page .quote .content.medium.orange .author,
.single .quote .content.medium.orange .author,
.archive .quote .content.medium.orange .author,
.error404 .quote .content.medium.orange .author {
  color: #DA6C37;
}
.page .quote .content.large,
.single .quote .content.large,
.archive .quote .content.large,
.error404 .quote .content.large {
  max-width: 1062px;
  min-width: 300px;
  width: 100%;
  height: 285px;
  padding: 64px 60px 64px 60px;
  padding-bottom: 120px;
}
.page .quote .content.large.blue,
.single .quote .content.large.blue,
.archive .quote .content.large.blue,
.error404 .quote .content.large.blue {
  background: url("../assets/images/bg_quote_blue_large.png");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-size: contain;
}
.page .quote .content.large.orange,
.single .quote .content.large.orange,
.archive .quote .content.large.orange,
.error404 .quote .content.large.orange {
  background: url("../assets/images/bg_quote_orange_large.png");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-size: contain;
}
.page .quote .content.large.orange .author,
.single .quote .content.large.orange .author,
.archive .quote .content.large.orange .author,
.error404 .quote .content.large.orange .author {
  color: #DA6C37;
}
.page .list ul,
.single .list ul,
.archive .list ul,
.error404 .list ul {
  text-align: left;
  padding-left: 40px;
}
.page .list li,
.single .list li,
.archive .list li,
.error404 .list li {
  font: 300 14px/22px Roboto;
  list-style: none;
  color: #343434;
}
.page .list li:before,
.single .list li:before,
.archive .list li:before,
.error404 .list li:before {
  content: '';
  background-image: url("../assets/images/list_style.png");
  width: 9px;
  height: 8px;
  display: inline-block;
  position: relative;
  left: -10px;
}
.page .list li.blue,
.single .list li.blue,
.archive .list li.blue,
.error404 .list li.blue {
  text-align: left;
}
.page .list li.blue:before,
.single .list li.blue:before,
.archive .list li.blue:before,
.error404 .list li.blue:before {
  background-image: url("../assets/images/list_style_blue.png") !important;
}
.page .list li.medium,
.single .list li.medium,
.archive .list li.medium,
.error404 .list li.medium {
  font-size: 18px;
  line-height: 28px;
}
.page .bloc,
.single .bloc,
.archive .bloc,
.error404 .bloc {
  margin-bottom: 30px;
}
.page .bloc.color,
.single .bloc.color,
.archive .bloc.color,
.error404 .bloc.color {
  padding: 23px 35px 40px;
}
.page .bloc.color .title,
.single .bloc.color .title,
.archive .bloc.color .title,
.error404 .bloc.color .title {
  color: #fff;
}
.page .bloc.color .texte,
.single .bloc.color .texte,
.archive .bloc.color .texte,
.error404 .bloc.color .texte {
  color: #fff;
}
.page .bloc.color .button, .page .bloc.color .button--primary, .page .bloc.color .button--secondary, .page .bloc.color .button--secondary-variation,
.single .bloc.color .button,
.single .bloc.color .button--primary,
.single .bloc.color .button--secondary,
.single .bloc.color .button--secondary-variation,
.archive .bloc.color .button,
.archive .bloc.color .button--primary,
.archive .bloc.color .button--secondary,
.archive .bloc.color .button--secondary-variation,
.error404 .bloc.color .button,
.error404 .bloc.color .button--primary,
.error404 .bloc.color .button--secondary,
.error404 .bloc.color .button--secondary-variation {
  text-align: center;
  float: none !important;
  display: block;
  margin: 0 auto;
  max-width: 144px;
}
.page .bloc.color .button.large, .page .bloc.color .large.button--primary, .page .bloc.color .large.button--secondary, .page .bloc.color .large.button--secondary-variation,
.single .bloc.color .button.large,
.single .bloc.color .large.button--primary,
.single .bloc.color .large.button--secondary,
.single .bloc.color .large.button--secondary-variation,
.archive .bloc.color .button.large,
.archive .bloc.color .large.button--primary,
.archive .bloc.color .large.button--secondary,
.archive .bloc.color .large.button--secondary-variation,
.error404 .bloc.color .button.large,
.error404 .bloc.color .large.button--primary,
.error404 .bloc.color .large.button--secondary,
.error404 .bloc.color .large.button--secondary-variation {
  max-width: 100%;
}
.page .bloc.blue,
.single .bloc.blue,
.archive .bloc.blue,
.error404 .bloc.blue {
  background-color: #0072BC;
}
.page .bloc.bluelight,
.single .bloc.bluelight,
.archive .bloc.bluelight,
.error404 .bloc.bluelight {
  background-color: #4CB2FF;
}
.page .bloc.orange,
.single .bloc.orange,
.archive .bloc.orange,
.error404 .bloc.orange {
  background-color: #DA6C37;
}
.page .blocwhite .button, .page .blocwhite .button--primary, .page .blocwhite .button--secondary, .page .blocwhite .button--secondary-variation,
.single .blocwhite .button,
.single .blocwhite .button--primary,
.single .blocwhite .button--secondary,
.single .blocwhite .button--secondary-variation,
.archive .blocwhite .button,
.archive .blocwhite .button--primary,
.archive .blocwhite .button--secondary,
.archive .blocwhite .button--secondary-variation,
.error404 .blocwhite .button,
.error404 .blocwhite .button--primary,
.error404 .blocwhite .button--secondary,
.error404 .blocwhite .button--secondary-variation {
  float: right;
}
.page .blocdark,
.single .blocdark,
.archive .blocdark,
.error404 .blocdark {
  background: #343434;
  padding: 23px 35px 40px;
  float: left;
}
.page .blocdark.blue .title,
.single .blocdark.blue .title,
.archive .blocdark.blue .title,
.error404 .blocdark.blue .title {
  color: #0072BC;
}
.page .blocdark.bluelight .title,
.single .blocdark.bluelight .title,
.archive .blocdark.bluelight .title,
.error404 .blocdark.bluelight .title {
  color: #4CB2FF;
}
.page .blocdark.orange .title,
.single .blocdark.orange .title,
.archive .blocdark.orange .title,
.error404 .blocdark.orange .title {
  color: #DA6C37;
}
.page .blocdark.white .title,
.single .blocdark.white .title,
.archive .blocdark.white .title,
.error404 .blocdark.white .title {
  color: #ffffff;
}
.page .blocdark .texte,
.single .blocdark .texte,
.archive .blocdark .texte,
.error404 .blocdark .texte {
  color: #fff;
}
.page .blocdark .title,
.single .blocdark .title,
.archive .blocdark .title,
.error404 .blocdark .title {
  padding-top: 0;
  margin-bottom: 12px !important;
}
.page .blocdark .button, .page .blocdark .button--primary, .page .blocdark .button--secondary, .page .blocdark .button--secondary-variation,
.single .blocdark .button,
.single .blocdark .button--primary,
.single .blocdark .button--secondary,
.single .blocdark .button--secondary-variation,
.archive .blocdark .button,
.archive .blocdark .button--primary,
.archive .blocdark .button--secondary,
.archive .blocdark .button--secondary-variation,
.error404 .blocdark .button,
.error404 .blocdark .button--primary,
.error404 .blocdark .button--secondary,
.error404 .blocdark .button--secondary-variation {
  float: right;
}
.page .g-wide--2 .blocdark .button, .page .g-wide--2 .blocdark .button--primary, .page .g-wide--2 .blocdark .button--secondary, .page .g-wide--2 .blocdark .button--secondary-variation,
.single .g-wide--2 .blocdark .button,
.single .g-wide--2 .blocdark .button--primary,
.single .g-wide--2 .blocdark .button--secondary,
.single .g-wide--2 .blocdark .button--secondary-variation,
.archive .g-wide--2 .blocdark .button,
.archive .g-wide--2 .blocdark .button--primary,
.archive .g-wide--2 .blocdark .button--secondary,
.archive .g-wide--2 .blocdark .button--secondary-variation,
.error404 .g-wide--2 .blocdark .button,
.error404 .g-wide--2 .blocdark .button--primary,
.error404 .g-wide--2 .blocdark .button--secondary,
.error404 .g-wide--2 .blocdark .button--secondary-variation {
  float: right;
}
.page .g-wide--1 .blocdark .button, .page .g-wide--1 .blocdark .button--primary, .page .g-wide--1 .blocdark .button--secondary, .page .g-wide--1 .blocdark .button--secondary-variation,
.single .g-wide--1 .blocdark .button,
.single .g-wide--1 .blocdark .button--primary,
.single .g-wide--1 .blocdark .button--secondary,
.single .g-wide--1 .blocdark .button--secondary-variation,
.archive .g-wide--1 .blocdark .button,
.archive .g-wide--1 .blocdark .button--primary,
.archive .g-wide--1 .blocdark .button--secondary,
.archive .g-wide--1 .blocdark .button--secondary-variation,
.error404 .g-wide--1 .blocdark .button,
.error404 .g-wide--1 .blocdark .button--primary,
.error404 .g-wide--1 .blocdark .button--secondary,
.error404 .g-wide--1 .blocdark .button--secondary-variation {
  text-align: center;
  float: none !important;
  display: block;
  margin: 0 auto;
  margin-top: 25px;
  max-width: 144px;
}
.page .content,
.single .content,
.archive .content,
.error404 .content {
  margin: 10px 0;
  float: left;
}
.page .content.visuels,
.single .content.visuels,
.archive .content.visuels,
.error404 .content.visuels {
  float: none;
  margin: 45px 0;
}
.page .content.visuels .img,
.single .content.visuels .img,
.archive .content.visuels .img,
.error404 .content.visuels .img {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 10px #012B4742;
}
.page .content.visuels .img.chiffre, .page .content.visuels .img.chiffres,
.single .content.visuels .img.chiffre,
.single .content.visuels .img.chiffres,
.archive .content.visuels .img.chiffre,
.archive .content.visuels .img.chiffres,
.error404 .content.visuels .img.chiffre,
.error404 .content.visuels .img.chiffres {
  position: relative;
  color: #fff;
  background-size: cover;
}
.page .content.visuels .img.chiffre .slider, .page .content.visuels .img.chiffres .slider,
.single .content.visuels .img.chiffre .slider,
.single .content.visuels .img.chiffres .slider,
.archive .content.visuels .img.chiffre .slider,
.archive .content.visuels .img.chiffres .slider,
.error404 .content.visuels .img.chiffre .slider,
.error404 .content.visuels .img.chiffres .slider {
  text-align: center;
}
.page .content.visuels .img.chiffre .animatenumber, .page .content.visuels .img.chiffres .animatenumber,
.single .content.visuels .img.chiffre .animatenumber,
.single .content.visuels .img.chiffres .animatenumber,
.archive .content.visuels .img.chiffre .animatenumber,
.archive .content.visuels .img.chiffres .animatenumber,
.error404 .content.visuels .img.chiffre .animatenumber,
.error404 .content.visuels .img.chiffres .animatenumber {
  background: url("../assets/images/ondulation_bg.png") center center no-repeat;
  width: 238px;
  height: 327px;
  margin: 0 auto;
}
.page .content.visuels .img.chiffre .animatenumber li.hiring, .page .content.visuels .img.chiffres .animatenumber li.hiring,
.single .content.visuels .img.chiffre .animatenumber li.hiring,
.single .content.visuels .img.chiffres .animatenumber li.hiring,
.archive .content.visuels .img.chiffre .animatenumber li.hiring,
.archive .content.visuels .img.chiffres .animatenumber li.hiring,
.error404 .content.visuels .img.chiffre .animatenumber li.hiring,
.error404 .content.visuels .img.chiffres .animatenumber li.hiring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: inherit;
  font-weight: 300;
  width: 156px;
}
.page .content.visuels .img.chiffre .animatenumber li.hiring .s50, .page .content.visuels .img.chiffres .animatenumber li.hiring .s50,
.single .content.visuels .img.chiffre .animatenumber li.hiring .s50,
.single .content.visuels .img.chiffres .animatenumber li.hiring .s50,
.archive .content.visuels .img.chiffre .animatenumber li.hiring .s50,
.archive .content.visuels .img.chiffres .animatenumber li.hiring .s50,
.error404 .content.visuels .img.chiffre .animatenumber li.hiring .s50,
.error404 .content.visuels .img.chiffres .animatenumber li.hiring .s50 {
  display: unset;
  font-size: 56px;
}
.page .content.visuels .img.chiffre .animatenumber li.hiring sup, .page .content.visuels .img.chiffres .animatenumber li.hiring sup,
.single .content.visuels .img.chiffre .animatenumber li.hiring sup,
.single .content.visuels .img.chiffres .animatenumber li.hiring sup,
.archive .content.visuels .img.chiffre .animatenumber li.hiring sup,
.archive .content.visuels .img.chiffres .animatenumber li.hiring sup,
.error404 .content.visuels .img.chiffre .animatenumber li.hiring sup,
.error404 .content.visuels .img.chiffres .animatenumber li.hiring sup {
  top: -12px;
  position: relative;
  left: 0;
  font-size: 27px;
}
.page .content.videotxt .title,
.single .content.videotxt .title,
.archive .content.videotxt .title,
.error404 .content.videotxt .title {
  margin: 0;
}
.page .full-width,
.single .full-width,
.archive .full-width,
.error404 .full-width {
  position: relative;
  width: 100%;
  height: auto;
  padding: 67px 0;
  margin-bottom: 40px;
}
.page .full-width.bg,
.single .full-width.bg,
.archive .full-width.bg,
.error404 .full-width.bg {
  background-position: center 0;
  background-repeat: no-repeat;
  height: 526px;
  min-height: 428px;
  background-size: cover;
}
.page .full-width.bg .texte,
.page .full-width.bg .txt,
.single .full-width.bg .texte,
.single .full-width.bg .txt,
.archive .full-width.bg .texte,
.archive .full-width.bg .txt,
.error404 .full-width.bg .texte,
.error404 .full-width.bg .txt {
  color: #fff;
}
.page .full-width.bg .button, .page .full-width.bg .button--primary, .page .full-width.bg .button--secondary, .page .full-width.bg .button--secondary-variation,
.single .full-width.bg .button,
.single .full-width.bg .button--primary,
.single .full-width.bg .button--secondary,
.single .full-width.bg .button--secondary-variation,
.archive .full-width.bg .button,
.archive .full-width.bg .button--primary,
.archive .full-width.bg .button--secondary,
.archive .full-width.bg .button--secondary-variation,
.error404 .full-width.bg .button,
.error404 .full-width.bg .button--primary,
.error404 .full-width.bg .button--secondary,
.error404 .full-width.bg .button--secondary-variation {
  float: right;
}
.page .full-width.innovation,
.single .full-width.innovation,
.archive .full-width.innovation,
.error404 .full-width.innovation {
  min-height: 1020px;
  height: 1020px;
  padding: 90px 0;
  margin-bottom: 90px;
  box-sizing: border-box;
}
.page .full-width.innovation .button--primary,
.single .full-width.innovation .button--primary,
.archive .full-width.innovation .button--primary,
.error404 .full-width.innovation .button--primary {
  float: left;
}
.page .full-width.innovation .g--half .title,
.single .full-width.innovation .g--half .title,
.archive .full-width.innovation .g--half .title,
.error404 .full-width.innovation .g--half .title {
  min-height: 46px;
}
.page .full-width .g-wide--full,
.single .full-width .g-wide--full,
.archive .full-width .g-wide--full,
.error404 .full-width .g-wide--full {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page .full-width .g-wide--full .title,
.single .full-width .g-wide--full .title,
.archive .full-width .g-wide--full .title,
.error404 .full-width .g-wide--full .title {
  margin-top: 0;
}
.page .full-width .visuel,
.single .full-width .visuel,
.archive .full-width .visuel,
.error404 .full-width .visuel {
  padding: 20px;
  background: rgba(76, 178, 255, 0.1);
  max-width: 496px;
  width: 100%;
  margin-top: calc(220px * 0.3);
}
.page .full-width .visuel img,
.single .full-width .visuel img,
.archive .full-width .visuel img,
.error404 .full-width .visuel img {
  box-shadow: 0px 0px 10px #012B4742;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 880px) {
  .page .full-width.innovation,
  .single .full-width.innovation,
  .archive .full-width.innovation,
  .error404 .full-width.innovation {
    padding: 35px 0 90px 0;
    height: auto;
    max-height: 1420px;
    min-height: inherit;
  }
  .page .full-width.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .single .full-width.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .archive .full-width.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .error404 .full-width.innovation.hub .g-medium--full.g-wide--full .g--half img {
    margin: 0 auto;
    max-width: 100%;
  }
  .page .full-width.innovation .visuels,
  .single .full-width.innovation .visuels,
  .archive .full-width.innovation .visuels,
  .error404 .full-width.innovation .visuels {
    float: left;
  }
}
@media (max-width: 768px) {
  .page .full-half.bg.innovation,
  .single .full-half.bg.innovation,
  .archive .full-half.bg.innovation,
  .error404 .full-half.bg.innovation {
    height: auto;
    max-height: 1720px !important;
    min-height: inherit;
  }
}
@media (max-width: 414px) {
  .page .full-width.bg.innovation,
  .single .full-width.bg.innovation,
  .archive .full-width.bg.innovation,
  .error404 .full-width.bg.innovation {
    height: auto;
    max-height: 1712px;
    min-height: inherit;
  }
}
@media (max-width: 375px) {
  .page .full-width.bg.innovation,
  .single .full-width.bg.innovation,
  .archive .full-width.bg.innovation,
  .error404 .full-width.bg.innovation {
    height: auto;
    max-height: 1720px !important;
    min-height: inherit;
  }
}
.page .full-half,
.single .full-half,
.archive .full-half,
.error404 .full-half {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.page .full-half.bg,
.single .full-half.bg,
.archive .full-half.bg,
.error404 .full-half.bg {
  background-position: center 0;
  background-repeat: no-repeat;
  height: 220px;
  background-size: cover;
}
.page .full-half.innovation,
.single .full-half.innovation,
.archive .full-half.innovation,
.error404 .full-half.innovation {
  min-height: 1020px;
  height: 1020px;
  padding: 90px 0;
  box-sizing: border-box;
  margin-bottom: 90px;
}
.page .full-half.innovation .button--primary,
.single .full-half.innovation .button--primary,
.archive .full-half.innovation .button--primary,
.error404 .full-half.innovation .button--primary {
  float: left;
}
.page .full-half.innovation .visuel,
.single .full-half.innovation .visuel,
.archive .full-half.innovation .visuel,
.error404 .full-half.innovation .visuel {
  margin-top: calc(220px * 0.18) !important;
}
.page .full-half.innovation .g--half .title,
.single .full-half.innovation .g--half .title,
.archive .full-half.innovation .g--half .title,
.error404 .full-half.innovation .g--half .title {
  min-height: 46px;
}
.page .full-half .visuel,
.single .full-half .visuel,
.archive .full-half .visuel,
.error404 .full-half .visuel {
  padding: 20px;
  background: rgba(76, 178, 255, 0.1);
  max-width: 496px;
  width: 100%;
  margin-top: calc(220px * 0.3);
}
.page .full-half .visuel img,
.single .full-half .visuel img,
.archive .full-half .visuel img,
.error404 .full-half .visuel img {
  box-shadow: 0px 0px 10px #012B4742;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 880px) {
  .page .full-half.bg.innovation,
  .single .full-half.bg.innovation,
  .archive .full-half.bg.innovation,
  .error404 .full-half.bg.innovation {
    padding: 35px 0 90px 0;
    height: auto;
    max-height: 1420px;
    min-height: 1420px;
  }
  .page .full-half.bg.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .single .full-half.bg.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .archive .full-half.bg.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .error404 .full-half.bg.innovation.hub .g-medium--full.g-wide--full .g--half img {
    margin: 0 auto;
    max-width: 100%;
  }
  .page .full-half.bg.innovation .visuels,
  .single .full-half.bg.innovation .visuels,
  .archive .full-half.bg.innovation .visuels,
  .error404 .full-half.bg.innovation .visuels {
    float: left;
  }
}
@media (max-width: 768px) {
  .page .full-half.bg.innovation,
  .single .full-half.bg.innovation,
  .archive .full-half.bg.innovation,
  .error404 .full-half.bg.innovation {
    height: auto;
    max-height: 1420px;
    min-height: inherit;
  }
}
@media (max-width: 414px) {
  .page .full-half.bg.innovation,
  .single .full-half.bg.innovation,
  .archive .full-half.bg.innovation,
  .error404 .full-half.bg.innovation {
    height: auto;
    max-height: 1712px;
    min-height: inherit;
  }
}
@media (max-width: 375px) {
  .page .full-half.bg.innovation,
  .single .full-half.bg.innovation,
  .archive .full-half.bg.innovation,
  .error404 .full-half.bg.innovation {
    height: auto;
    max-height: 1712px;
    min-height: inherit;
  }
}
.page .full,
.single .full,
.archive .full,
.error404 .full {
  position: relative;
  width: 100%;
  height: auto;
}
.page .full.bg,
.single .full.bg,
.archive .full.bg,
.error404 .full.bg {
  background-position: center 0;
  background-repeat: no-repeat;
  height: 277px;
  background-size: cover;
  margin-top: 20px;
}
.page .full.chiffres,
.single .full.chiffres,
.archive .full.chiffres,
.error404 .full.chiffres {
  position: relative;
  color: #fff;
  background-size: cover;
  height: 328px;
  padding: 46px 0;
  margin: 20px 0;
}
.page .full.chiffres .g-medium--full,
.single .full.chiffres .g-medium--full,
.archive .full.chiffres .g-medium--full,
.error404 .full.chiffres .g-medium--full {
  float: none;
}
.page .full.chiffres #slick-chiffres,
.page .full.chiffres #slick-coding,
.single .full.chiffres #slick-chiffres,
.single .full.chiffres #slick-coding,
.archive .full.chiffres #slick-chiffres,
.archive .full.chiffres #slick-coding,
.error404 .full.chiffres #slick-chiffres,
.error404 .full.chiffres #slick-coding {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.page .full.chiffres #slick-chiffres.owl-carousel.owl-loaded,
.page .full.chiffres #slick-coding.owl-carousel.owl-loaded,
.single .full.chiffres #slick-chiffres.owl-carousel.owl-loaded,
.single .full.chiffres #slick-coding.owl-carousel.owl-loaded,
.archive .full.chiffres #slick-chiffres.owl-carousel.owl-loaded,
.archive .full.chiffres #slick-coding.owl-carousel.owl-loaded,
.error404 .full.chiffres #slick-chiffres.owl-carousel.owl-loaded,
.error404 .full.chiffres #slick-coding.owl-carousel.owl-loaded {
  text-align: center;
}
.page .full.chiffres #slick-chiffres .owl-nav .owl-prev,
.page .full.chiffres #slick-coding .owl-nav .owl-prev,
.single .full.chiffres #slick-chiffres .owl-nav .owl-prev,
.single .full.chiffres #slick-coding .owl-nav .owl-prev,
.archive .full.chiffres #slick-chiffres .owl-nav .owl-prev,
.archive .full.chiffres #slick-coding .owl-nav .owl-prev,
.error404 .full.chiffres #slick-chiffres .owl-nav .owl-prev,
.error404 .full.chiffres #slick-coding .owl-nav .owl-prev {
  width: 70px;
  height: 70px;
  background: url("../assets/images/prev-owl.png") no-repeat center;
  text-indent: -10000px;
}
.page .full.chiffres #slick-chiffres .owl-nav .owl-next,
.page .full.chiffres #slick-coding .owl-nav .owl-next,
.single .full.chiffres #slick-chiffres .owl-nav .owl-next,
.single .full.chiffres #slick-coding .owl-nav .owl-next,
.archive .full.chiffres #slick-chiffres .owl-nav .owl-next,
.archive .full.chiffres #slick-coding .owl-nav .owl-next,
.error404 .full.chiffres #slick-chiffres .owl-nav .owl-next,
.error404 .full.chiffres #slick-coding .owl-nav .owl-next {
  width: 70px;
  height: 70px;
  background: url("../assets/images/next-owl.png") no-repeat center;
  text-indent: -10000px;
}
.page .full.chiffres .item,
.single .full.chiffres .item,
.archive .full.chiffres .item,
.error404 .full.chiffres .item {
  display: inline-block;
  text-align: center;
  margin: 0 2%;
  width: 237px;
}
.page .full.chiffres .item p,
.single .full.chiffres .item p,
.archive .full.chiffres .item p,
.error404 .full.chiffres .item p {
  text-align: center !important;
}
.page .full.chiffres .item .entry-content p:last-of-type,
.page .full.chiffres .item .entry-content p:only-of-type,
.single .full.chiffres .item .entry-content p:last-of-type,
.single .full.chiffres .item .entry-content p:only-of-type,
.archive .full.chiffres .item .entry-content p:last-of-type,
.archive .full.chiffres .item .entry-content p:only-of-type,
.error404 .full.chiffres .item .entry-content p:last-of-type,
.error404 .full.chiffres .item .entry-content p:only-of-type {
  text-align: center !important;
}
.page .full.chiffres .animatenumber,
.single .full.chiffres .animatenumber,
.archive .full.chiffres .animatenumber,
.error404 .full.chiffres .animatenumber {
  background: url("../assets/images/ondulation_bg.png") center center no-repeat;
  width: 237px;
  height: 236px;
  position: relative;
}
.page .full.chiffres .animatenumber li,
.single .full.chiffres .animatenumber li,
.archive .full.chiffres .animatenumber li,
.error404 .full.chiffres .animatenumber li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: inherit;
  font-weight: 300;
  width: 156px;
  line-height: 22px;
}
.page .full.chiffres .animatenumber li .s50,
.single .full.chiffres .animatenumber li .s50,
.archive .full.chiffres .animatenumber li .s50,
.error404 .full.chiffres .animatenumber li .s50 {
  font-size: 56px;
}
.page .full.chiffres .animatenumber li sup,
.single .full.chiffres .animatenumber li sup,
.archive .full.chiffres .animatenumber li sup,
.error404 .full.chiffres .animatenumber li sup {
  top: -12px;
  position: relative;
  left: 0;
  font-size: 27px;
}
.page .full.chiffres #slick-coding .animatenumber li .s50,
.single .full.chiffres #slick-coding .animatenumber li .s50,
.archive .full.chiffres #slick-coding .animatenumber li .s50,
.error404 .full.chiffres #slick-coding .animatenumber li .s50 {
  padding-bottom: 20px;
}
.page .full .visuel,
.single .full .visuel,
.archive .full .visuel,
.error404 .full .visuel {
  padding: 20px;
  background: rgba(76, 178, 255, 0.1);
  max-width: 1042px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: calc(277px * 0.3);
}
.page .full .visuel img,
.single .full .visuel img,
.archive .full .visuel img,
.error404 .full .visuel img {
  box-shadow: 0px 0px 10px #012B4742;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 880px) {
  .page .portrait .info,
  .single .portrait .info,
  .archive .portrait .info {
    bottom: -5px;
  }
}
.page .videoContent .title,
.single .videoContent .title,
.archive .videoContent .title {
  margin-bottom: 0;
}
.page .activites,
.single .activites,
.archive .activites {
  position: relative;
}
.page .activites:before,
.single .activites:before,
.archive .activites:before {
  position: absolute;
  width: 169px;
  height: 62px;
  content: '';
  background: url("../assets/images/link_donnees.png") 0 0 no-repeat;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translateY(-50%) translateX(44%);
  text-align: center;
  width: 100%;
  left: 50%;
}
.page .activites.bg,
.single .activites.bg,
.archive .activites.bg {
  width: 495px;
  height: 495px;
  background: url("../assets/images/bg_ondulation.png") center center no-repeat;
}
.page .activites.bg.rotate,
.single .activites.bg.rotate,
.archive .activites.bg.rotate {
  transform: rotate(90deg);
}
.page .activites.bg.rotate:before,
.single .activites.bg.rotate:before,
.archive .activites.bg.rotate:before {
  display: none;
}
.page .activites.bg.rotate .content,
.single .activites.bg.rotate .content,
.archive .activites.bg.rotate .content {
  transform: rotate(-90deg) translateY(-50%);
  margin: 0;
  float: none;
  left: 35px;
  top: 209px;
}
.page .activites .content,
.single .activites .content,
.archive .activites .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  float: none;
  margin: 0;
}
.page .activites .content .title,
.single .activites .content .title,
.archive .activites .content .title {
  text-align: center;
  max-width: 230px;
  margin: 0 auto;
}
.page .secteurs,
.single .secteurs,
.archive .secteurs {
  background: #343434;
  padding: 13px;
  text-align: center;
}
.page .secteurs .pictos,
.single .secteurs .pictos,
.archive .secteurs .pictos {
  position: relative;
  display: block;
  min-height: 340px;
}
.page .secteurs .pictos ul,
.single .secteurs .pictos ul,
.archive .secteurs .pictos ul {
  list-style: none;
  position: absolute;
  width: 690px;
  max-width: 690px;
  min-width: 320px;
  display: inline-block;
  text-align: center;
  left: -50%;
  transform: translateX(27%);
}
.page .secteurs .pictos ul.two-icons:before,
.single .secteurs .pictos ul.two-icons:before,
.archive .secteurs .pictos ul.two-icons:before {
  content: '';
  width: 174px;
  height: 111px;
  background: url("../assets/images/before_2_icons.png") center center no-repeat;
  display: block;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-53%);
}
.page .secteurs .pictos ul.four-icons:before,
.single .secteurs .pictos ul.four-icons:before,
.archive .secteurs .pictos ul.four-icons:before {
  content: '';
  width: 512px;
  height: 111px;
  background: url("../assets/images/before_4_icons.png") center center no-repeat;
  display: block;
  position: absolute;
  top: -57px;
  left: 50%;
  transform: translateX(-51%);
}
.page .secteurs .pictos ul li,
.single .secteurs .pictos ul li,
.archive .secteurs .pictos ul li {
  display: inline-block;
  margin: 0 11px;
  list-style: none;
  margin-top: 57px;
}
.page .secteurs .pictos ul li:first-child,
.single .secteurs .pictos ul li:first-child,
.archive .secteurs .pictos ul li:first-child {
  margin-left: 0;
}

@media (max-width: 1304px) {
  .page .secteurs .container,
  .single .secteurs .container,
  .archive .secteurs .container {
    max-width: 100%;
  }
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    min-width: 1162px !important;
    transform: scale(0.8) translateX(7%);
  }
  .page .secteurs .g--half,
  .single .secteurs .g--half,
  .archive .secteurs .g--half {
    width: 43.75%;
    min-width: 396px;
  }

  /*  .page {
      .secteurs {
          .container {
              transform: scale(0.8);
          }
          .g--half {
              width: 392px;
             
          }
      }
  }
  */
}
@media (max-width: 1192px) {
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    transform: scale(0.7) translateX(0%);
  }
  .page .secteurs .g--half,
  .single .secteurs .g--half,
  .archive .secteurs .g--half {
    width: 47.75%;
    min-width: 346px;
  }
}
@media (max-width: 1024px) {
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    transform: scale(0.7) translateX(-21%);
  }
}
@media (max-width: 950px) {
  .page .secteurs .container,
  .single .secteurs .container,
  .archive .secteurs .container {
    padding: 0;
  }
  .page .secteurs .g--half,
  .single .secteurs .g--half,
  .archive .secteurs .g--half {
    width: 100%;
    min-width: inherit;
    display: block;
    margin: 0 auto;
  }
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    transform: scale(1);
    min-width: 100% !important;
  }
  .page .page .secteurs .pictos,
  .page .single .secteurs .pictos,
  .single .page .secteurs .pictos,
  .single .single .secteurs .pictos,
  .archive .page .secteurs .pictos,
  .archive .single .secteurs .pictos {
    position: relative;
    display: inline-block;
    min-height: 340px;
    text-align: center;
  }
  .page .page .secteurs .pictos ul,
  .page .single .secteurs .pictos ul,
  .single .page .secteurs .pictos ul,
  .single .single .secteurs .pictos ul,
  .archive .page .secteurs .pictos ul,
  .archive .single .secteurs .pictos ul {
    transform: translateX(0%);
    left: inherit;
    width: 100%;
    position: relative;
  }
  .page .page .secteurs .pictos ul:before,
  .page .single .secteurs .pictos ul:before,
  .single .page .secteurs .pictos ul:before,
  .single .single .secteurs .pictos ul:before,
  .archive .page .secteurs .pictos ul:before,
  .archive .single .secteurs .pictos ul:before {
    background: url("../assets/images/before_2_icons.png") center center no-repeat !important;
  }
  .page .page .secteurs .pictos ul.four-icons,
  .page .single .secteurs .pictos ul.four-icons,
  .single .page .secteurs .pictos ul.four-icons,
  .single .single .secteurs .pictos ul.four-icons,
  .archive .page .secteurs .pictos ul.four-icons,
  .archive .single .secteurs .pictos ul.four-icons {
    width: 70%;
  }
  .page .page .secteurs .pictos ul.four-icons li:nth-child(1):after,
  .page .single .secteurs .pictos ul.four-icons li:nth-child(1):after,
  .single .page .secteurs .pictos ul.four-icons li:nth-child(1):after,
  .single .single .secteurs .pictos ul.four-icons li:nth-child(1):after,
  .archive .page .secteurs .pictos ul.four-icons li:nth-child(1):after,
  .archive .single .secteurs .pictos ul.four-icons li:nth-child(1):after {
    content: '';
    height: 100px;
    width: 1px;
    border-left: 1px dashed #DA6C37;
    display: block;
    position: absolute;
    left: 105px;
    left: 50%;
    margin-left: 0.5px;
  }
  .page .page .secteurs .pictos ul.four-icons li:nth-child(2):after,
  .page .single .secteurs .pictos ul.four-icons li:nth-child(2):after,
  .single .page .secteurs .pictos ul.four-icons li:nth-child(2):after,
  .single .single .secteurs .pictos ul.four-icons li:nth-child(2):after,
  .archive .page .secteurs .pictos ul.four-icons li:nth-child(2):after,
  .archive .single .secteurs .pictos ul.four-icons li:nth-child(2):after {
    content: '';
    height: 100px;
    width: 1px;
    border-left: 1px dashed #DA6C37;
    display: block;
    position: absolute;
    right: 50%;
    margin-right: 0.5px;
  }
  .page .page .secteurs .pictos ul li,
  .page .single .secteurs .pictos ul li,
  .single .page .secteurs .pictos ul li,
  .single .single .secteurs .pictos ul li,
  .archive .page .secteurs .pictos ul li,
  .archive .single .secteurs .pictos ul li {
    position: relative;
  }
  .page .page .activites:before,
  .page .single .activites:before,
  .page .archive .activites:before,
  .single .page .activites:before,
  .single .single .activites:before,
  .single .archive .activites:before,
  .archive .page .activites:before,
  .archive .single .activites:before,
  .archive .archive .activites:before {
    background: none;
  }
  .page .page .activites.bg,
  .page .single .activites.bg,
  .page .archive .activites.bg,
  .single .page .activites.bg,
  .single .single .activites.bg,
  .single .archive .activites.bg,
  .archive .page .activites.bg,
  .archive .single .activites.bg,
  .archive .archive .activites.bg {
    width: inherit;
  }
}
@media (max-width: 575px) {
  .page .secteurs .pictos ul.four-icons,
  .single .secteurs .pictos ul.four-icons,
  .archive .secteurs .pictos ul.four-icons {
    width: 100% !important;
  }
  .page .secteurs .pictos ul li,
  .single .secteurs .pictos ul li,
  .archive .secteurs .pictos ul li {
    position: relative;
  }
}
@media (max-width: 480px) {
  .page .secteurs,
  .single .secteurs,
  .archive .secteurs {
    height: 1600px;
  }
  .page .secteurs .container,
  .single .secteurs .container,
  .archive .secteurs .container {
    transform: scale(0.8) translate(0%, -9%);
    width: 118%;
    padding: 0 !important;
  }
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    transform: scale(1);
    min-width: 345px !important;
  }
  .page .secteurs .activites.bg,
  .single .secteurs .activites.bg,
  .archive .secteurs .activites.bg {
    width: 432px !important;
    overflow: visible;
    margin-left: -30px;
  }
}
@media (max-width: 410px) {
  .page .secteurs,
  .single .secteurs,
  .archive .secteurs {
    height: 1600px;
  }
  .page .secteurs .container,
  .single .secteurs .container,
  .archive .secteurs .container {
    transform: scale(0.8) translate(0%, -9%);
    width: 118%;
    padding: 0 !important;
  }
  .page .secteurs .g-medium--full,
  .page .secteurs .g-wide--full,
  .single .secteurs .g-medium--full,
  .single .secteurs .g-wide--full,
  .archive .secteurs .g-medium--full,
  .archive .secteurs .g-wide--full {
    transform: scale(1);
    min-width: 345px !important;
  }
  .page .secteurs .activites.bg,
  .single .secteurs .activites.bg,
  .archive .secteurs .activites.bg {
    overflow: visible;
    margin-left: -42px;
  }
}
.page .accordion,
.single .accordion,
.archive .accordion {
  float: none;
}
.page .accordion .article-collapse,
.single .accordion .article-collapse,
.archive .accordion .article-collapse {
  margin-left: 20px;
  border-left: 1px dashed #cdcbcb;
}
.page .accordion .article-collapse h3.title,
.single .accordion .article-collapse h3.title,
.archive .accordion .article-collapse h3.title {
  text-align: left;
  font-size: 21px;
  line-height: 27px;
  font-weight: 400;
  letter-spacing: 0;
  color: #4cb2ff;
}
.page .accordion .article-collapse h3.sstitle,
.single .accordion .article-collapse h3.sstitle,
.archive .accordion .article-collapse h3.sstitle {
  text-align: left;
  font-size: 32px;
  line-height: 23px;
  color: #4cb2ff;
  font-weight: 300;
}
.page .accordion .article-collapse h4,
.single .accordion .article-collapse h4,
.archive .accordion .article-collapse h4 {
  margin: 0;
  line-height: 34px;
  margin-top: 40px;
}
.page .accordion .article-collapse h4.title,
.single .accordion .article-collapse h4.title,
.archive .accordion .article-collapse h4.title {
  text-align: left;
  font-size: 21px;
  line-height: 23px;
  font-weight: 300;
  color: #da6c37;
}
.page .accordion .article-collapse p,
.single .accordion .article-collapse p,
.archive .accordion .article-collapse p {
  color: #343434;
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
}
.page .accordion .article-collapse h4 .rgt,
.single .accordion .article-collapse h4 .rgt,
.archive .accordion .article-collapse h4 .rgt {
  float: right;
  font-size: 18px;
  line-height: 24px;
  color: rgba(52, 52, 52, 0.74);
  font-weight: 500;
  line-height: 24px;
  padding: 15px;
}
.page .accordion .article-collapse h4 > a,
.single .accordion .article-collapse h4 > a,
.archive .accordion .article-collapse h4 > a {
  display: block;
  position: relative;
  padding-right: 58px;
}
.page .accordion .article-collapse h4 > a:after,
.single .accordion .article-collapse h4 > a:after,
.archive .accordion .article-collapse h4 > a:after {
  width: 58px;
  height: 58px;
  content: '';
  background: url(../assets/images/collapse-plus.png) no-repeat center center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -28px;
  transform: rotate(-45deg);
  transition: all 250ms ease-in-out;
}
.page .accordion .article-collapse h4 > a.collapsed:after,
.single .accordion .article-collapse h4 > a.collapsed:after,
.archive .accordion .article-collapse h4 > a.collapsed:after {
  transform: rotate(0deg);
}
.page .accordion .article-collapse-post,
.single .accordion .article-collapse-post,
.archive .accordion .article-collapse-post {
  position: relative;
}
.page .accordion .article-collapse-num,
.single .accordion .article-collapse-num,
.archive .accordion .article-collapse-num {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #4cb2ff;
  border: 10px solid #f1f1f1;
  content: '';
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  font-weight: 700 !important;
  color: #fff;
  left: -34px;
  top: -5px;
}
.page .accordion .article-collapse-title,
.single .accordion .article-collapse-title,
.archive .accordion .article-collapse-title {
  font-size: 22px;
  color: rgba(52, 52, 52, 0.74);
  font-weight: 500;
  padding-left: 60px;
}
.page .accordion .article-collapse-title span.highlight,
.single .accordion .article-collapse-title span.highlight,
.archive .accordion .article-collapse-title span.highlight {
  color: #4cb2ff;
  border: 0.5px solid #bebebe;
  line-height: 52px;
  display: inline-block;
  border-left: 0;
  border-right: 0;
  margin-right: 10px;
}
.page .accordion .article-collapse-title span.highlight:before,
.single .accordion .article-collapse-title span.highlight:before,
.archive .accordion .article-collapse-title span.highlight:before {
  position: absolute;
  width: 18px;
  height: 54px;
  background: url(../assets/images/highlight_gray.png) no-repeat 0 0;
  background-size: 18px 54px;
  content: '';
  left: 42px;
  top: 0;
}
@media (max-width: 768px) {
  .page .accordion .article-collapse-title,
  .single .accordion .article-collapse-title,
  .archive .accordion .article-collapse-title {
    font-size: 16px;
  }
  .page .accordion .article-collapse h4 .rgt,
  .single .accordion .article-collapse h4 .rgt,
  .archive .accordion .article-collapse h4 .rgt {
    font-size: 13px;
    padding: 16px 0;
  }
}
.page .accordion .article-collapse-title:focus,
.page .accordion .article-collapse-title:active,
.page .accordion .article-collapse-title:hover,
.single .accordion .article-collapse-title:focus,
.single .accordion .article-collapse-title:active,
.single .accordion .article-collapse-title:hover,
.archive .accordion .article-collapse-title:focus,
.archive .accordion .article-collapse-title:active,
.archive .accordion .article-collapse-title:hover {
  text-decoration: none;
}
.page .accordion .article-collapse-body,
.single .accordion .article-collapse-body,
.archive .accordion .article-collapse-body {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0px;
  max-width: 100%;
  min-width: 280px;
  margin: 0 auto;
  box-sizing: content-box;
}
.page .accordion .article-collapse-body img,
.single .accordion .article-collapse-body img,
.archive .accordion .article-collapse-body img {
  width: 100%;
  height: auto;
}
.page .accordion .article-collapse-body .g--third,
.single .accordion .article-collapse-body .g--third,
.archive .accordion .article-collapse-body .g--third {
  min-height: 420px;
}
.page .accordion .article-collapse-body .g--third img,
.single .accordion .article-collapse-body .g--third img,
.archive .accordion .article-collapse-body .g--third img {
  width: 28%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.page .accordion .article-collapse-body .textwidget .sstitle,
.single .accordion .article-collapse-body .textwidget .sstitle,
.archive .accordion .article-collapse-body .textwidget .sstitle {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .page .accordion .article-collapse-body,
  .single .accordion .article-collapse-body,
  .archive .accordion .article-collapse-body {
    padding: 5%;
  }
}
.page .accordion .article-collapse-result,
.single .accordion .article-collapse-result,
.archive .accordion .article-collapse-result {
  position: relative;
  padding-top: 63px;
  border: 0;
}
.page .accordion .article-collapse-result .title-epitech,
.single .accordion .article-collapse-result .title-epitech,
.archive .accordion .article-collapse-result .title-epitech {
  background: none !important;
  padding: 0 !important;
  position: relative;
  padding-left: 60px !important;
}
.page .accordion .article-collapse-result .title-epitech span,
.single .accordion .article-collapse-result .title-epitech span,
.archive .accordion .article-collapse-result .title-epitech span {
  text-transform: uppercase;
  color: #4cb2ff;
  font-weight: 300;
  font-size: 18px;
}
.page .accordion .article-collapse-result .title-epitech p,
.single .accordion .article-collapse-result .title-epitech p,
.archive .accordion .article-collapse-result .title-epitech p {
  margin: 0;
}
.page .accordion .article-collapse-result .title-epitech:before,
.single .accordion .article-collapse-result .title-epitech:before,
.archive .accordion .article-collapse-result .title-epitech:before {
  background: url(../assets/images/collapse-title-program.png) no-repeat center center;
  width: 130px;
  height: 123px;
  position: absolute;
  content: '';
  display: block;
  left: -87px;
  top: 50%;
  transform: translateY(-50%);
}
.page .accordion .article-collapse-result.niveau3 .title-epitech:before,
.single .accordion .article-collapse-result.niveau3 .title-epitech:before,
.archive .accordion .article-collapse-result.niveau3 .title-epitech:before {
  background: url(../assets/images/collapse-title-program-niveau3.png) no-repeat center center;
  width: 130px;
  height: 123px;
  position: absolute;
  content: '';
  display: block;
  left: -87px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .page .accordion .content-collapse,
  .single .accordion .content-collapse,
  .archive .accordion .content-collapse {
    background: #FCFCFC 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 12px #00000021;
    border-radius: 6px;
    margin-bottom: 66px;
  }
  .page .accordion .content-collapse .textwidget,
  .single .accordion .content-collapse .textwidget,
  .archive .accordion .content-collapse .textwidget {
    padding-bottom: 40px;
  }
  .page .accordion .article-collapse-post,
  .single .accordion .article-collapse-post,
  .archive .accordion .article-collapse-post {
    padding: 30px 30px 75px 30px;
  }
  .page .accordion .article-collapse,
  .single .accordion .article-collapse,
  .archive .accordion .article-collapse {
    margin-left: 0;
    border: 0;
    margin-top: 15px;
  }
  .page .accordion .article-collapse-num,
  .single .accordion .article-collapse-num,
  .archive .accordion .article-collapse-num {
    position: relative;
    left: unset;
    top: unset;
    display: block;
    margin: 0 auto;
  }
  .page .accordion .article-collapse h4,
  .single .accordion .article-collapse h4,
  .archive .accordion .article-collapse h4 {
    text-align: center;
    font: 700 18px/27px Roboto;
    letter-spacing: 0;
    color: rgba(0, 17, 26, 0.74);
    margin-top: 25px;
    min-height: 180px;
  }
  .page .accordion .article-collapse h4 .rgt,
  .single .accordion .article-collapse h4 .rgt,
  .archive .accordion .article-collapse h4 .rgt {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
    font: 300 17px/27px Roboto;
    letter-spacing: 0;
    color: rgba(0, 17, 26, 0.74);
  }
  .page .accordion .article-collapse h4 > a,
  .single .accordion .article-collapse h4 > a,
  .archive .accordion .article-collapse h4 > a {
    padding-right: 0;
    position: relative;
  }
  .page .accordion .article-collapse h4 > a:after,
  .single .accordion .article-collapse h4 > a:after,
  .archive .accordion .article-collapse h4 > a:after {
    width: 58px;
    height: 58px;
    content: '';
    background: url(../assets/images/collapse-plus.png) no-repeat center center;
    position: absolute;
    right: unset;
    top: 166px;
    margin-top: unset;
    transform: translateX(-50%) rotate(0deg) !important;
    z-index: 1;
    left: 50%;
  }
  .page .accordion .article-collapse-title,
  .single .accordion .article-collapse-title,
  .archive .accordion .article-collapse-title {
    padding-left: 0;
  }
  .page .accordion .article-collapse-title span.highlight,
  .single .accordion .article-collapse-title span.highlight,
  .archive .accordion .article-collapse-title span.highlight {
    margin-right: 0;
    text-align: center;
    font-size: 25px;
    display: block;
    border: 0;
    width: 100%;
  }
  .page .accordion .article-collapse-title span.highlight::before,
  .single .accordion .article-collapse-title span.highlight::before,
  .archive .accordion .article-collapse-title span.highlight::before {
    background: none;
  }
  .page .accordion .article-collapse-body,
  .single .accordion .article-collapse-body,
  .archive .accordion .article-collapse-body {
    padding: 0% 10%;
  }
  .page .accordion .article-collapse-title,
  .single .accordion .article-collapse-title,
  .archive .accordion .article-collapse-title {
    font-size: 16px;
  }
  .page .accordion .article-collapse h4 .rgt,
  .single .accordion .article-collapse h4 .rgt,
  .archive .accordion .article-collapse h4 .rgt {
    font-size: 13px;
    padding: 16px 0;
  }
  .page .accordion .article-collapse-result .title-epitech:before,
  .single .accordion .article-collapse-result .title-epitech:before,
  .archive .accordion .article-collapse-result .title-epitech:before {
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .page .accordion .article-collapse-result .title-epitech,
  .single .accordion .article-collapse-result .title-epitech,
  .archive .accordion .article-collapse-result .title-epitech {
    padding-left: 0px !important;
    text-align: center;
  }
  .page .accordion .article-collapse .textwidget h4,
  .single .accordion .article-collapse .textwidget h4,
  .archive .accordion .article-collapse .textwidget h4 {
    min-height: inherit !important;
  }
}
.page .timeline,
.single .timeline,
.archive .timeline {
  padding: 120px 0 0;
  position: relative;
}
.page .timeline:before,
.single .timeline:before,
.archive .timeline:before {
  background: url(../assets/images/before_timeline.png) no-repeat 0 0;
  width: 241px;
  height: 241px;
  position: absolute;
  content: '';
  left: 50%;
  top: -85px;
  transform: translateX(-50%);
}
.page .timeline.valeurs,
.single .timeline.valeurs,
.archive .timeline.valeurs {
  background: url(../assets/images/bg_valeurs.png) no-repeat center 0;
  background-size: cover;
  margin-bottom: 40px;
}
.page .timeline.valeurs h2,
.single .timeline.valeurs h2,
.archive .timeline.valeurs h2 {
  font-size: 35px;
  font-weight: 300;
}
.page .timeline .cd-timeline,
.single .timeline .cd-timeline,
.archive .timeline .cd-timeline {
  overflow: hidden;
  padding-bottom: 120px;
}
.page .timeline .cd-timeline__container,
.single .timeline .cd-timeline__container,
.archive .timeline .cd-timeline__container {
  position: relative;
  padding: 0;
}
.page .timeline .cd-timeline__container::before,
.single .timeline .cd-timeline__container::before,
.archive .timeline .cd-timeline__container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 49.5%;
  height: 100%;
  width: 9px;
  background: url(../assets/images/top_ondulation.png) no-repeat 0 0;
}
.page .timeline .cd-timeline__container::after,
.single .timeline .cd-timeline__container::after,
.archive .timeline .cd-timeline__container::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -97%;
  right: 48%;
  height: 100%;
  width: 47px;
  background: url(../assets/images/bottom_ondulation.png) no-repeat 0 0;
}
.page .timeline .cd-timeline__block,
.single .timeline .cd-timeline__block,
.archive .timeline .cd-timeline__block {
  position: relative;
  display: flex;
}
.page .timeline .cd-timeline__block:nth-child(odd),
.single .timeline .cd-timeline__block:nth-child(odd),
.archive .timeline .cd-timeline__block:nth-child(odd) {
  flex-direction: row-reverse;
}
.page .timeline .cd-timeline__block:nth-child(odd) .title,
.page .timeline .cd-timeline__block:nth-child(odd) .color-contrast-medium,
.single .timeline .cd-timeline__block:nth-child(odd) .title,
.single .timeline .cd-timeline__block:nth-child(odd) .color-contrast-medium,
.archive .timeline .cd-timeline__block:nth-child(odd) .title,
.archive .timeline .cd-timeline__block:nth-child(odd) .color-contrast-medium {
  text-align: left;
}
.page .timeline .cd-timeline__block:nth-child(even),
.single .timeline .cd-timeline__block:nth-child(even),
.archive .timeline .cd-timeline__block:nth-child(even) {
  flex-direction: row;
}
.page .timeline .cd-timeline__block:nth-child(even) .title,
.page .timeline .cd-timeline__block:nth-child(even) .color-contrast-medium,
.single .timeline .cd-timeline__block:nth-child(even) .title,
.single .timeline .cd-timeline__block:nth-child(even) .color-contrast-medium,
.archive .timeline .cd-timeline__block:nth-child(even) .title,
.archive .timeline .cd-timeline__block:nth-child(even) .color-contrast-medium {
  text-align: right;
}
.page .timeline .cd-timeline__block::before,
.single .timeline .cd-timeline__block::before,
.archive .timeline .cd-timeline__block::before {
  content: '';
  position: absolute;
  top: -55px;
  right: 49.5%;
  height: 100%;
  width: 9px;
  background: url(../assets/images/middle_ondulation.png) no-repeat 0 0;
}
.page .timeline .cd-timeline__block:nth-child(2):before,
.single .timeline .cd-timeline__block:nth-child(2):before,
.archive .timeline .cd-timeline__block:nth-child(2):before {
  background: none !important;
}
.page .timeline .cd-timeline__img,
.single .timeline .cd-timeline__img,
.archive .timeline .cd-timeline__img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  order: 1;
  width: 10%;
}
.page .timeline .cd-timeline__content,
.single .timeline .cd-timeline__content,
.archive .timeline .cd-timeline__content {
  flex-grow: 1;
  width: 45%;
  flex-grow: 0;
}
.page .timeline .cd-timeline__content .title,
.single .timeline .cd-timeline__content .title,
.archive .timeline .cd-timeline__content .title {
  font-size: 35px;
  font-weight: 400;
  margin: 10px 0;
}
.page .timeline .cd-timeline__content .title span,
.single .timeline .cd-timeline__content .title span,
.archive .timeline .cd-timeline__content .title span {
  color: #4cb2ff;
}
.page .timeline .cd-timeline__content .color-contrast-medium,
.single .timeline .cd-timeline__content .color-contrast-medium,
.archive .timeline .cd-timeline__content .color-contrast-medium {
  line-height: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}
@media all and (max-width: 1106px) {
  .page .timeline .cd-timeline__container h2,
  .single .timeline .cd-timeline__container h2,
  .archive .timeline .cd-timeline__container h2 {
    text-align: center;
  }
  .page .timeline .cd-timeline__content,
  .single .timeline .cd-timeline__content,
  .archive .timeline .cd-timeline__content {
    flex-grow: 1;
    width: 45%;
    padding: 0 20px;
  }
  .page .timeline .cd-timeline__content .title,
  .single .timeline .cd-timeline__content .title,
  .archive .timeline .cd-timeline__content .title {
    text-align: left !important;
  }
  .page .timeline .cd-timeline__content .texte,
  .single .timeline .cd-timeline__content .texte,
  .archive .timeline .cd-timeline__content .texte {
    text-align: left !important;
  }
  .page .timeline .cd-timeline__img,
  .single .timeline .cd-timeline__img,
  .archive .timeline .cd-timeline__img {
    display: none;
  }
  .page .timeline .cd-timeline__container::after,
  .single .timeline .cd-timeline__container::after,
  .archive .timeline .cd-timeline__container::after {
    content: '';
    right: 45%;
    bottom: -97%;
  }
}
.page .vae,
.single .vae,
.archive .vae {
  display: block;
  width: 100%;
  max-width: 546px;
  margin: 0 auto;
}
.page .vae .item,
.single .vae .item,
.archive .vae .item {
  position: relative;
  display: block;
  width: 100%;
}
.page .vae .item:after,
.single .vae .item:after,
.archive .vae .item:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 51px;
  background: url(../assets/images/after_item_vae.png) 0 0 no-repeat;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.page .vae .item:nth-child(7),
.single .vae .item:nth-child(7),
.archive .vae .item:nth-child(7) {
  margin-bottom: 88px;
}
.page .vae .item:nth-child(7):after,
.single .vae .item:nth-child(7):after,
.archive .vae .item:nth-child(7):after {
  width: 385px;
  height: 112px;
  background: url(../assets/images/after_item_vae_result.png) 0 0 no-repeat;
  bottom: -100px;
}
.page .vae .item .inner,
.single .vae .item .inner,
.archive .vae .item .inner {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 25px 0px;
}
.page .vae .item .inner:before,
.single .vae .item .inner:before,
.archive .vae .item .inner:before {
  content: '';
  position: absolute;
  width: 122px;
  height: 56px;
  background: url(../assets/images/left-vae@2x.png) 0 0 no-repeat;
  background-size: 122px 56px;
  left: -25%;
  top: 50%;
  transform: translateY(-35%);
}
.page .vae .item .inner:after,
.single .vae .item .inner:after,
.archive .vae .item .inner:after {
  content: '';
  position: absolute;
  width: 122px;
  height: 56px;
  background: url(../assets/images/left-vae@2x.png) 0 0 no-repeat;
  background-size: 122px 56px;
  right: -25%;
  top: 50%;
  transform: translateY(-35%) rotate(180deg);
}
.page .vae .item .inner .title,
.page .vae .item .inner .txt,
.page .vae .item .inner .texte,
.single .vae .item .inner .title,
.single .vae .item .inner .txt,
.single .vae .item .inner .texte,
.archive .vae .item .inner .title,
.archive .vae .item .inner .txt,
.archive .vae .item .inner .texte {
  text-align: center;
  color: #0072BC;
}
.page .vae .resultat .g--half .button--secondary-variation,
.single .vae .resultat .g--half .button--secondary-variation,
.archive .vae .resultat .g--half .button--secondary-variation {
  position: relative;
  right: 2%;
}
.page .vae .resultat .g--last .button--secondary-variation,
.single .vae .resultat .g--last .button--secondary-variation,
.archive .vae .resultat .g--last .button--secondary-variation {
  left: 28%;
  right: inherit;
}
@media all and (max-width: 880px) {
  .page .vae .item,
  .single .vae .item,
  .archive .vae .item {
    position: relative;
    display: block;
    width: 100%;
  }
  .page .vae .item:nth-child(7),
  .single .vae .item:nth-child(7),
  .archive .vae .item:nth-child(7) {
    margin-bottom: 26px;
  }
  .page .vae .item:nth-child(7):after,
  .single .vae .item:nth-child(7):after,
  .archive .vae .item:nth-child(7):after {
    content: '';
    position: absolute;
    width: 7px;
    height: 51px;
    background: url(../assets/images/after_item_vae.png) 0 0 no-repeat;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page .vae .item .inner,
  .single .vae .item .inner,
  .archive .vae .item .inner {
    padding: 25px 50px;
  }
  .page .vae .item .inner:after,
  .single .vae .item .inner:after,
  .archive .vae .item .inner:after {
    width: 25px;
    right: 0;
  }
  .page .vae .item .inner:before,
  .single .vae .item .inner:before,
  .archive .vae .item .inner:before {
    width: 25px;
    left: 0;
  }
  .page .resultat .g--half .button--secondary-variation,
  .single .resultat .g--half .button--secondary-variation,
  .archive .resultat .g--half .button--secondary-variation {
    position: relative !important;
    right: inherit !important;
  }
  .page .resultat .g--last .button--secondary-variation,
  .single .resultat .g--last .button--secondary-variation,
  .archive .resultat .g--last .button--secondary-variation {
    left: inherit !important;
    margin-top: 30px !important;
  }
  .page .resultat .g--last .button--secondary-variation:before,
  .single .resultat .g--last .button--secondary-variation:before,
  .archive .resultat .g--last .button--secondary-variation:before {
    content: 'OU';
    text-align: center;
    position: absolute;
    top: -30px;
    width: 268px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    color: #0072BC;
  }
}
.page .contact,
.single .contact,
.archive .contact {
  float: none;
}
.page .contact .blocdark,
.single .contact .blocdark,
.archive .contact .blocdark {
  position: relative;
  float: none;
  padding: 23px 100px 40px 100px;
}
.page .contact .blocdark:before,
.single .contact .blocdark:before,
.archive .contact .blocdark:before {
  background: url(../assets/images/informations.png) #343434 0 0 no-repeat;
  width: 43px;
  height: 41px;
  content: '';
  position: absolute;
  top: 36px;
  left: 30px;
}
.page .contact .blocdark a.button--primary,
.single .contact .blocdark a.button--primary,
.archive .contact .blocdark a.button--primary {
  float: none;
  display: block;
  margin: 0 auto;
  min-width: 200px;
  max-width: 264px;
  font-size: 12px;
}

/* TIMELINE */
.cd-timeline__img--hidden,
.cd-timeline__content--hidden {
  visibility: hidden;
}

.cd-timeline__img--bounce-in {
  animation: cd-bounce-1 0.6s;
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media all and (max-width: 1380px) {
  .page .quote .g--half,
  .page .quote .g-wide--half,
  .single .quote .g--half,
  .single .quote .g-wide--half,
  .archive .quote .g--half,
  .archive .quote .g-wide--half {
    margin-right: 0;
  }
  .page .g-wide--2 .blocdark .button, .page .g-wide--2 .blocdark .button--primary, .page .g-wide--2 .blocdark .button--secondary, .page .g-wide--2 .blocdark .button--secondary-variation,
  .single .g-wide--2 .blocdark .button,
  .single .g-wide--2 .blocdark .button--primary,
  .single .g-wide--2 .blocdark .button--secondary,
  .single .g-wide--2 .blocdark .button--secondary-variation,
  .archive .g-wide--2 .blocdark .button,
  .archive .g-wide--2 .blocdark .button--primary,
  .archive .g-wide--2 .blocdark .button--secondary,
  .archive .g-wide--2 .blocdark .button--secondary-variation {
    text-align: center;
    float: none !important;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    max-width: 144px;
  }
}
@media all and (max-width: 1162px) {
  /*.page {}*/
}
@media all and (max-width: 768px) {
  /*.page {}*/
}
@media all and (max-width: 880px) {
  .page .title.xxlarge,
  .single .title.xxlarge,
  .archive .title.xxlarge {
    font-size: 34px;
    line-height: 42px;
  }
  .page .title.xlarge,
  .single .title.xlarge,
  .archive .title.xlarge {
    font-size: 27px;
    line-height: 36px;
  }
  .page .title.large,
  .single .title.large,
  .archive .title.large {
    font-size: 21px;
    line-height: 23px;
  }
  .page .txt.xxlarge,
  .single .txt.xxlarge,
  .archive .txt.xxlarge {
    font-size: 34px;
    line-height: 42px;
  }
  .page .txt.xlarge,
  .single .txt.xlarge,
  .archive .txt.xlarge {
    font-size: 27px;
    line-height: 36px;
  }
  .page .txt.large,
  .single .txt.large,
  .archive .txt.large {
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
  }
  .page .txt.medium,
  .single .txt.medium,
  .archive .txt.medium {
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
  }
  .page .txt.base,
  .single .txt.base,
  .archive .txt.base {
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
  }
  .page .txt.small,
  .single .txt.small,
  .archive .txt.small {
    font-weight: 400;
    font-size: 12px;
    line-height: 23px;
  }
  .page p.texte,
  .single p.texte,
  .archive p.texte {
    text-align: left !important;
  }
  .page p.texte.medium,
  .single p.texte.medium,
  .archive p.texte.medium {
    font-size: 17px;
    line-height: 27px;
  }
  .page p.texte.base,
  .single p.texte.base,
  .archive p.texte.base {
    font-size: 16px;
    line-height: 27px;
  }
  .page .quote .blockquote,
  .single .quote .blockquote,
  .archive .quote .blockquote {
    margin-bottom: 30px;
  }
  .page .quote blockquote,
  .single .quote blockquote,
  .archive .quote blockquote {
    margin: 30px auto;
    padding: 0 30px;
  }
  .page .quote blockquote:before,
  .single .quote blockquote:before,
  .archive .quote blockquote:before {
    left: -10px;
  }
  .page .quote blockquote:after,
  .single .quote blockquote:after,
  .archive .quote blockquote:after {
    right: -10px;
  }
  .page .quote .content,
  .single .quote .content,
  .archive .quote .content {
    margin: 25px auto;
    background-repeat: no-repeat;
  }
  .page .quote .content.large,
  .single .quote .content.large,
  .archive .quote .content.large {
    height: 418px !important;
    max-width: 520px;
    min-width: 300px;
  }
  .page .quote .content p,
  .single .quote .content p,
  .archive .quote .content p {
    font-size: 16px;
    line-height: 24px;
    /*&.txt {
                height: 306px;
            }*/
  }
  .page .quote .content p.author,
  .single .quote .content p.author,
  .archive .quote .content p.author {
    position: relative;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
  }
  .page .quote .content.large.blue,
  .single .quote .content.large.blue,
  .archive .quote .content.large.blue {
    background: url("../assets/images/bg_quote.png");
    background-repeat: no-repeat;
  }
  .page .quote .content.large.orange,
  .single .quote .content.large.orange,
  .archive .quote .content.large.orange {
    background: url("../assets/images/bg_quote_orange.png");
    background-repeat: no-repeat;
  }
  .page .timeline:before,
  .single .timeline:before,
  .archive .timeline:before {
    background-size: 171px 171px;
    width: 171px;
    height: 171px;
    top: -25px;
  }
  .page .timeline .cd-timeline,
  .single .timeline .cd-timeline,
  .archive .timeline .cd-timeline {
    padding-bottom: 100px;
  }
  .page .timeline .cd-timeline__block::before,
  .single .timeline .cd-timeline__block::before,
  .archive .timeline .cd-timeline__block::before {
    top: -82px;
  }
  .page .timeline .cd-timeline__container h2,
  .single .timeline .cd-timeline__container h2,
  .archive .timeline .cd-timeline__container h2 {
    font-size: 27px;
    padding: 25px 0;
  }
  .page .timeline .cd-timeline__block:nth-child(2),
  .single .timeline .cd-timeline__block:nth-child(2),
  .archive .timeline .cd-timeline__block:nth-child(2) {
    margin-top: 42px;
  }
  .page .timeline .cd-timeline__block:nth-child(3),
  .single .timeline .cd-timeline__block:nth-child(3),
  .archive .timeline .cd-timeline__block:nth-child(3) {
    margin-top: 76px;
  }
  .page .timeline .cd-timeline__block:nth-child(3),
  .single .timeline .cd-timeline__block:nth-child(3),
  .archive .timeline .cd-timeline__block:nth-child(3) {
    margin-top: 82px;
  }
  .page .timeline .cd-timeline__block:nth-child(4),
  .single .timeline .cd-timeline__block:nth-child(4),
  .archive .timeline .cd-timeline__block:nth-child(4) {
    margin-top: 82px;
  }
  .page .timeline .cd-timeline__block:nth-child(5),
  .single .timeline .cd-timeline__block:nth-child(5),
  .archive .timeline .cd-timeline__block:nth-child(5) {
    margin-top: 76px;
  }
  .page .timeline .cd-timeline__block:nth-child(6),
  .single .timeline .cd-timeline__block:nth-child(6),
  .archive .timeline .cd-timeline__block:nth-child(6) {
    margin-top: 76px;
  }

  .page .content.visuels .img,
  .single .content.visuels .img,
  .archive .content.visuels .img {
    height: 100% !important;
  }

  .page .blocdark,
  .single .blocdark,
  .archive .blocdark {
    margin: 25px 0;
  }

  .page .blocwhite .button, .page .blocwhite .button--primary, .page .blocwhite .button--secondary, .page .blocwhite .button--secondary-variation,
  .page .blocdark .button,
  .page .blocdark .button--primary,
  .page .blocdark .button--secondary,
  .page .blocdark .button--secondary-variation,
  .single .blocwhite .button,
  .single .blocwhite .button--primary,
  .single .blocwhite .button--secondary,
  .single .blocwhite .button--secondary-variation,
  .single .blocdark .button,
  .single .blocdark .button--primary,
  .single .blocdark .button--secondary,
  .single .blocdark .button--secondary-variation,
  .archive .blocwhite .button,
  .archive .blocwhite .button--primary,
  .archive .blocwhite .button--secondary,
  .archive .blocwhite .button--secondary-variation,
  .archive .blocdark .button,
  .archive .blocdark .button--primary,
  .archive .blocdark .button--secondary,
  .archive .blocdark .button--secondary-variation {
    float: none;
    margin-bottom: 45px;
    max-width: 144px;
    display: block;
    margin: 25px auto;
  }

  .page p.texte {
    text-align: justify;
  }

  .page p.texte.centered {
    text-align: center !important;
  }

  .page .full-width.bg {
    height: auto !important;
    padding: 70px 0;
  }

  .page .full-width .g-wide--full {
    position: relative !important;
    top: inherit !important;
    transform: inherit !important;
  }

  .page .full-width.bg .button, .page .full-width.bg .button--primary, .page .full-width.bg .button--secondary, .page .full-width.bg .button--secondary-variation {
    float: none !important;
  }

  .page .full-width.bg .g--half,
  .page .full-width.bg .g--third {
    margin-bottom: 35px;
  }

  .page .full-width .g-wide--full .title {
    margin-top: inherit;
  }

  .page .full-width p.texte.base {
    padding: 25px 0;
  }

  .page .full-half .visuel {
    margin-left: auto;
    margin-right: auto;
  }

  .page .full.bg {
    height: 160px;
  }
  .page .full.bg .g-medium--full,
  .page .full.bg .g-wide--full {
    float: left;
  }
  .page .full.bg.chiffres {
    height: 328px;
  }
  .page .full.bg.chiffres .g-medium--full,
  .page .full.bg.chiffres .g-wide--full {
    float: none;
  }

  .page .full .visuel {
    margin-top: calc(160px * 0.3);
  }

  .page .full-width,
  .single .full-width {
    padding: 87px 0;
    margin-bottom: 90px;
  }
  .page .full-width.bg,
  .single .full-width.bg {
    background-position: center 0;
    background-repeat: no-repeat;
    height: 526px;
    min-height: 428px;
    background-size: cover;
  }
  .page .full-width.bg .texte,
  .page .full-width.bg .txt,
  .single .full-width.bg .texte,
  .single .full-width.bg .txt {
    color: #fff;
  }
  .page .full-width.bg .button, .page .full-width.bg .button--primary, .page .full-width.bg .button--secondary, .page .full-width.bg .button--secondary-variation,
  .single .full-width.bg .button,
  .single .full-width.bg .button--primary,
  .single .full-width.bg .button--secondary,
  .single .full-width.bg .button--secondary-variation {
    float: right;
  }
  .page .full-width.innovation .button--primary,
  .single .full-width.innovation .button--primary {
    float: none;
  }
  .page .full-width.innovation .g--half img,
  .single .full-width.innovation .g--half img {
    display: block;
    margin: 10px auto;
    max-width: 80%;
  }
  .page .full-width .g-wide--full,
  .single .full-width .g-wide--full {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .page .full-width .g-wide--full .title,
  .single .full-width .g-wide--full .title {
    margin-top: 0;
  }
  .page .full-width .visuel,
  .single .full-width .visuel {
    margin-top: calc(220px * 0.3);
  }
  .page .full-width .visuel img,
  .single .full-width .visuel img {
    box-shadow: 0px 0px 10px #012B4742;
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .page .full-half.bg,
  .single .full-half.bg {
    background-position: center 0;
    background-repeat: no-repeat;
    height: 220px;
    background-size: cover;
  }
  .page .full-half.innovation.hub .button--primary,
  .single .full-half.innovation.hub .button--primary {
    float: none;
  }
  .page .full-half.innovation.hub .visuel,
  .single .full-half.innovation.hub .visuel {
    margin-top: calc(220px * 0.18) !important;
  }
  .page .full-half.innovation.hub .g-medium--full.g-wide--full .g--half img,
  .single .full-half.innovation.hub .g-medium--full.g-wide--full .g--half img {
    display: block;
    margin: 10px auto;
    max-width: 80%;
  }
  .page .full-half .visuel,
  .single .full-half .visuel {
    margin-top: calc(220px * 0.3);
  }
  .page .full-half .visuel img,
  .single .full-half .visuel img {
    box-shadow: 0px 0px 10px #012B4742;
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}
body.home .metiers * {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.home .breadcrumbs,
.home .header-bg {
  display: none !important;
}

.home .header-widget {
  display: none !important;
}

.home .widget-area {
  width: 0%;
  display: none;
}

.home #mobile-menu-button {
  transition: 0ms;
}

.home img.lazyloaded {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.home .mobile {
  display: none;
}

.home.topbar-out .site-header {
  top: -1px;
}

html,
body {
  background: #fff;
}

body * {
  box-sizing: border-box;
}

ul {
  margin: 0 !important;
}

.ellipsis {
  overflow: hidden;
  display: inline-block;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
}

.ellipsis:after {
  content: '...';
}

/* BOOTSTRAP */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 720px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* COMMON BUTTON ROLLOVER */
.home .btn {
  vertical-align: middle;
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  outline: 0;
  padding: 8px 36px;
  -webkit-transition: all .35s;
  transition: all .35s;
  text-transform: uppercase;
}
.home .btn > span {
  display: block;
}
.home .btn:hover {
  color: inherit;
}
.home .btn-primary {
  padding: 0;
  border: 1px solid #fff;
  background-color: transparent;
  overflow: hidden;
  color: #fff;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.home .btn-primary::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.home .btn-primary::after,
.home .btn-primary > span {
  padding: 8px 36px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  color: #fff;
}
.home .btn-primary:hover {
  border-color: #fff;
  background-color: rgba(63, 81, 181, 0.1);
}
.home .btn-primary:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding: 8px 36px;
}
.home .btn-primary:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.home .blue {
  padding: 0;
  overflow: hidden;
  border: 1px solid #0072bc;
  background-color: transparent;
  color: #0072bc;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.home .blue > span {
  color: #0072bc;
}
.home .blue:hover {
  border: 1px solid #0072bc;
  background-color: rgba(63, 81, 181, 0.1);
}
.home .blue::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  color: #0072bc;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.home .blue::after,
.home .blue > span {
  padding: 6px 25px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.home .blue:hover {
  background-color: rgba(63, 81, 181, 0.1);
}
.home .blue:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding: 6px 25px;
}
.home .blue:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.home .blue-secondary {
  background: #1c7bbc;
  background: linear-gradient(90deg, #1c7bbc 0%, #127bc6 45%, #2990dc 100%);
}
.home .btn-secondary {
  background: #1a5178;
  background: linear-gradient(90deg, #1a5178 0%, #0c4b7a 45%, #1c649b 100%);
}
.home a.blue-secondary:hover {
  background: #1c7bbc;
  background: linear-gradient(90deg, #2990dc 0%, #127bc6 45%, #1c7bbc 100%);
  color: #fff;
}
.home a.btn-secondary:hover {
  background: #1a5178;
  background: linear-gradient(90deg, #1c649b 0%, #0c4b7a 45%, #1a5178 100%);
  color: #fff;
}
.home .elementor-widget {
  position: relative;
}

/* Header Section0 */
.home #section0 {
  background: url("../assets/images/background.jpg") top center;
  background-size: cover;
  height: 881px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  padding: 0;
  position: relative;
  width: 100%;
}

.entry-header {
  margin-bottom: 0;
  /* display: none; */
}

.header-txt h1 {
  font-size: 17px;
  line-height: 24px;
  margin: 32px 0 !important;
}

.header-txt .content {
  max-width: 550px;
  width: 100%;
}

.header-txt .content ul {
  margin: 0 0 32px 25px !important;
}

.header-txt .content p {
  line-height: 20px;
  text-align: left !important;
  font-size: 14px;
}

.header-txt .content span {
  text-transform: uppercase;
}

.header-cta .content {
  padding: 1px 25px 25px;
  background: #d5f7fb;
  background: linear-gradient(180deg, rgba(213, 247, 251, 0.8) 0%, rgba(213, 247, 251, 0.65) 35%, rgba(213, 247, 251, 0.4458) 100%);
  max-width: 300px;
  width: 100%;
  text-align: center;
}

.header-cta .content .btn {
  min-width: 238px;
}

.header-cta .content h2 {
  font-size: 23px;
  font-weight: 900;
  color: #0072bc;
  text-transform: uppercase;
  line-height: 27px;
  margin: 25px 0 !important;
}

.header-cta .content ul,
.header-cta .content li {
  list-style: none;
}

.header-cta .content ul {
  display: inline-block;
  /*padding-top: 50px;*/
}

.header-cta .content li {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.header-cta .content li .btn {
  padding: 6px 0;
}

.home #section0 p {
  margin: 0 0 46px;
}

.home #section0 #pgc-10550-0-0 p,
.home #section0 #pgc-10593-0-0 p {
  margin: 0 0 44px !important;
}

#pgc-10550-0-1 > .panel-cell-style,
#pgc-10593-0-1 > .panel-cell-style {
  padding: 143px 20px 20px 154px !important;
}

.elementor-7954 .elementor-element.elementor-element-042dc3c > .elementor-widget-container {
  padding: 143px 20px 20px 154px !important;
}

.header-cta .mythbuster h2 {
  font-size: 20px !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

@media (max-width: 1140px) {
  #section0 .container {
    display: block;
  }

  .header-txt .content {
    max-width: 100%;
    width: 100%;
  }

  #pgc-10593-0-0,
  #pgc-10593-0-1 {
    width: 100%;
    display: inline-block;
  }

  .menu-campus-container {
    overflow-x: scroll !important;
    height: 40px;
    z-index: 1;
  }

  .menu-campus-container ul {
    width: 1240px;
    height: 100%;
    z-index: 1;
  }
}
/* SECTION 1 */
.white-bloc {
  position: absolute;
  width: 100%;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 35px;
  padding-bottom: 210px;
  /*box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);*/
  max-width: 1280px !important;
  /* elementor change */
  top: -142px;
  z-index: 1;
}

.white-bloc h3 {
  font-size: 35px;
  text-align: center;
  line-height: 40px;
  color: #0072bc;
  font-weight: 300;
  margin-top: 25px !important;
  margin-bottom: 5px !important;
}

.formation {
  position: relative;
  top: -164px;
}

.formation .group {
  display: inline-block;
  padding: 0 62px;
  /*text-align: center;*/
  margin-top: 160px;
}

.formation .item {
    /*display: inline-block;
	vertical-align: top;*/
  margin-left: 1px;
  margin-top: 1px;
  width: 230px;
  height: 390px;
  float: left;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background-size: cover !important;
}

.formation .item.grande-ecole {
  background: url("../assets/images/bg_formation_01.jpg") 0 0 no-repeat;
}

.formation .item.msc-pro {
  background: url("../assets/images/bg_formation_02.jpg") 0 0 no-repeat;
}

.formation .item.coding-a {
  background: url("../assets/images/bg_formation_03.jpg") 0 0 no-repeat;
}

.formation .item.web-a {
  background: url("../assets/images/bg_formation_04.jpg") 0 0 no-repeat;
}

.formation .item.mba {
  background: url("../assets/images/bg_formation_05.jpg") 0 0 no-repeat;
}

.formation .item a {
  /* padding: 320px 15px 40px 15px;*/
  position: relative;
  padding: 256px 15px 40px 15px;
  display: block;
  color: #4cb2ff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 25px;
  transition-duration: 0s;
  width: 100%;
}

.formation .item a.active {
  color: #f14e4e;
}

.formation .item a.shadow:after {
  position: absolute;
  content: '';
  background: #303030;
  opacity: 0.7;
  padding: 256px 15px 40px 15px;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.formation .item a span {
  display: block;
  color: #eaf2f4;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}

.formation .owl-item {
  width: 230px;
  height: 390px;
}

/* SECTION 2 BANNER */
.banner-digital {
  margin: 0 62px;
  margin-top: -140px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);
}

.so-widget-sow-image-default-4b231843ec72 .sow-image-container {
  display: flex;
  align-items: flex-start;
}

.so-widget-sow-image-default-4b231843ec72 .sow-image-container > a {
  display: inline-block;
  width: 100%;
  max-width: 1164px;
  max-height: 100px;
}

@media (max-width: 920px) {
  .banner-digital {
    margin: 0 48px;
  }

  .banner-digital .sow-image-container .so-widget-image {
    display: none !important;
  }

  .banner-digital .sow-image-container {
    background: url("../assets/images/bloc_epitech_digital_768.jpg") center center no-repeat;
    /*width: 768px;*/
    height: 224px;
    position: relative;
    background-size: contain;
  }

  .banner-digital .sow-image-container a {
    display: block;
  }
}
/* SECTION 3 full width */
.home #section3 {
  max-width: 100% !important;
  padding: 0 !important;
  margin: inherit !important;
  width: 100%;
  min-height: 746px;
}

.chiffres-cles {
  background-size: cover;
  height: 636px;
  width: 140%;
  position: relative;
  top: 54px;
  background-image: url(../assets/images/bg_chiffrescles.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}

.chiffres-cles .widget-title {
  display: inline-block;
  text-align: center;
  width: 325px;
  margin: 0px 22%;
  font-size: 35px;
  padding-top: 97px;
  color: #fff;
}

.chiffres-cles .animatenumber {
  background: url("../assets/images/ondes_chiffres_cles.png") 0 0 no-repeat;
  width: 325px;
  height: 320px;
  margin: 40px 22%;
  position: relative;
  color: #fff;
}

.animatenumber li {
  position: absolute;
  list-style: none;
  text-align: center;
  line-height: 18px;
  color: #fff;
}

.animatenumber li span,
.animatenumber li em {
  font-size: 13px;
  font-weight: 300px;
  text-align: center;
  color: #fff;
  font-style: normal;
}

.animatenumber li .s50 {
  font-size: 50px;
  font-weight: 900;
  padding-top: 10px;
  padding-bottom: 0;
}

.elementor-container .animatenumber li .s50 {
  display: block;
}

#post-7853 .elementor-container .animatenumber li .s50 {
  display: unset;
}

.animatenumber li p,
.animatenumber li .p {
  display: block;
}

.animatenumber li sup {
  top: -30px;
  font-family: 'Roboto', sans-s├®rif;
  font-weight: 300;
  font-size: 20px;
  left: 40px;
  color: #fff;
}

.animatenumber li.campus-fr {
  width: 120px;
  left: 108px;
  top: -3px;
}

.animatenumber li.partners {
  width: 160px;
  left: 220px;
  top: 67px;
}

.animatenumber li.students {
  width: 160px;
  left: 230px;
  bottom: 34px;
}

.animatenumber li.hiring {
  width: 140px;
  left: -47px;
  bottom: 31px;
}

.animatenumber li.campus-world {
  width: 100px;
  top: 61px;
  left: -20px;
}

#panel-10550-3-1-0 > .panel-widget-style {
  width: 100%;
}

#panel-10550-3-1-0 > .panel-widget-style .so-widget-sow-editor.so-widget-sow-editor-base {
  max-width: 560px;
}

#panel-10593-3-1-0 > .panel-widget-style .so-widget-sow-editor.so-widget-sow-editor-base {
  max-width: 560px;
}

.metiers {
  padding: 70px 142px 70px 200px;
  position: relative;
  right: 0;
  background-size: cover;
  height: 746px;
  width: 100%;
  background-image: url(../assets/images/bg_criteres.png);
  background-position: 0 0;
  background-repeat: no-repeat;
}

.metiers .widget-title {
  font-size: 35px;
  color: #fff;
}

.metiers .title {
  min-height: 145px;
  color: #fff;
}

.metiers .title strong {
  font-weight: 900;
  font-size: 22px;
  line-height: 36px;
}

.metiers .txt {
  color: #fff;
}

@media (max-width: 1280px) {
  .metiers .widget-title {
    font-size: 31px;
  }

  .metiers .title {
    min-height: inherit;
    font-size: 10px;
  }

  .metiers .txt {
    font-size: 13px;
  }
}
@media (max-width: 1120px) {
  .metiers {
    padding: 70px 20px 70px 190px;
  }

  .metiers .widget-title {
    font-size: 28px;
  }

  .metiers .title strong {
    font-size: 29px;
  }

  .chiffres-cles .animatenumber {
    transform: scale(0.8);
  }
}
@media (max-width: 969px) {
  .chiffres-cles .widget-title {
    margin: 0px auto !important;
    text-align: center;
    width: 100%;
  }

  .chiffres-cles {
    /*top: 20px;*/
  }

  .home #section3 .container {
    display: block;
  }

  .chiffres-cles .animatenumber {
    /*transform: scale(1);*/
    margin: 20px auto !important;
    transform: scale(0.7);
    margin: 20px auto !important;
    left: -6px;
  }

  .metiers {
    padding: 70px 30px 70px 30px;
    height: auto;
  }

  #pgc-10550-3-0,
  #pgc-10593-3-0 {
    width: 100% !important;
  }

  #panel-10550-3-0-0 > .panel-widget-style,
  #panel-10593-3-0-0 > .panel-widget-style {
    width: 100% !important;
    position: relative !important;
  }

  #pgc-10550-3-1,
  #pgc-10593-3-1 {
    width: 100% !important;
  }

  #panel-10550-3-1-0 > .panel-widget-style,
  #panel-10593-3-1-0 > .panel-widget-style {
    background-image: url(../assets/images/bleu_visuel_bg.jpg) !important;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: relative !important;
    left: 0;
    background-size: cover;
    height: 640px;
    width: 100% !important;
    right: inherit !important;
    padding-bottom: 120px;
  }

  #panel-10550-3-1-0 > .panel-widget-style .so-widget-sow-editor.so-widget-sow-editor-base {
    max-width: inherit;
  }

  #panel-10593-3-1-0 > .panel-widget-style .so-widget-sow-editor.so-widget-sow-editor-base {
    max-width: inherit;
  }
}
/* SECTION 4 Features */
.home #section4 {
  padding: 0 62px;
}

.features {
  padding: 0 62px;
}

.title-blue .widget-title {
  font-size: 35px;
  text-align: center;
  line-height: 40px;
  color: #0072bc;
  font-weight: 300;
  margin-top: 80px !important;
}

.features .sow-features-list .sow-features-feature {
  /* width: 24%!important;*/
  width: 100% !important;
  margin: 5px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.features .owl-item:nth-child(1) .sow-features-feature,
.features .owl-item:nth-child(5) .sow-features-feature {
  background: url("../assets/images/bg_architecture.jpg") 0 0 no-repeat;
  background-size: cover;
  height: 345px;
}

.features .sow-features-feature:nth-child(1) .sow-icon-image,
.features .sow-features-feature:nth-child(1) .sow-icon-container {
    /* width: 32px!important;
height: 37px!important;*/
}

.features .owl-item:nth-child(2) .sow-features-feature,
.features .owl-item:nth-child(6) .sow-features-feature {
  background: url("../assets/images/bg_devops.jpg") 0 0 no-repeat;
  background-size: cover;
  height: 345px;
}

.features .sow-features-feature:nth-child(2) .sow-icon-image,
.features .sow-features-feature:nth-child(2) .sow-icon-container {
    /* width: 44px!important;
height: 19px!important;*/
}

.features .owl-item:nth-child(3) .sow-features-feature,
.features .owl-item:nth-child(7) .sow-features-feature {
  background: url("../assets/images/bg_developpeur.jpg") 0 0 no-repeat;
  background-size: cover;
  height: 345px;
}

.features .sow-features-feature:nth-child(3) .sow-icon-image,
.features .sow-features-feature:nth-child(3) .sow-icon-container {
    /*width: 39px!important;
height: 23px!important;*/
}

.features .owl-item:nth-child(4) .sow-features-feature,
.features .owl-item:nth-child(8) .sow-features-feature {
  background: url("../assets/images/bg_cdp.jpg") 0 0 no-repeat;
  background-size: cover;
  height: 345px;
}

.features .sow-features-feature:nth-child(4) .sow-icon-image,
.features .sow-features-feature:nth-child(4) .sow-icon-container {
    /*width: 70px!important;
height: 29px!important;*/
}

.sow-features-list .sow-features-feature:nth-of-type(4n+1) {
  padding-left: 25px !important;
}

.sow-features-list .sow-features-feature:nth-of-type(4n) {
  padding-right: 25px !important;
}

.features .sow-features-feature a:first-child {
  /* padding: 36% 0 0 0; */
}

.features .sow-features-feature a {
  padding: 15% 0 0;
}

.features .sow-features-list .sow-icon-container {
  top: 20px;
}

.sow-features-list .sow-features-feature .sow-icon-container [class^="sow-icon-"],
.sow-features-list .sow-features-feature .sow-icon-container .sow-icon-image {
  background-size: inherit !important;
}

.sow-features-list .sow-features-feature .textwidget {
  margin: inherit !important;
}

.sow-features-list .sow-features-feature p.sow-more-text {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.sow-features-list .sow-features-feature p.sow-more-text a {
  font-weight: 300 !important;
  font-size: 30px !important;
}

.sow-features-list .sow-features-feature p.sow-more-text a {
  text-decoration: none !important;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
    /*-webkit-transition-delay:0.2s;
transition-delay:0.2s;*/
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.sow-features-list .sow-features-feature p.sow-more-text a:hover {
  transform: rotate(90deg);
  color: #da6c37 !important;
}

.sow-icon-container [class^="sow-icon-"],
.sow-features-list .sow-features-feature .sow-icon-container .sow-icon-image {
  /*background-size: contain!important;*/
}

.sow-features-list .sow-features-feature .textwidget > h5 {
  line-height: 24px;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  color: #da6c37;
}

/*section 5 CTA test */
.cta-test {
  height: 280px;
  position: relative;
  display: none;
}

.cta-test .widget-title {
  font-size: 20px;
  line-height: 30px;
  color: #da6c37;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-top: 30px;
}

.cta-test .btn-container {
  position: absolute;
  left: 50%;
  transform: translateX(-51%);
  width: 226px;
  height: 226px;
  background: url("../assets/images/cta_test.png") 0 0 no-repeat;
  background-size: auto;
  top: 40px;
}

.cta-test .btn-container .btn-round {
  display: table-cell;
  vertical-align: middle;
  width: 93px;
  height: 93px;
  background: url("../assets/images/btn_test.png") 0 0 no-repeat;
  background-size: auto;
  text-align: center;
  line-height: 22px;
  position: relative;
  top: 64px;
  left: 64px;
  box-shadow: 0 0 14px #2C2C2C;
  border-radius: 50%;
}

.cta-test .btn-container .btn-round a {
  text-align: center;
  font-size: 19px;
  font-weight: 300;
  display: inline-block;
}

/*section 6 T├®moignages interviews */
.alumni .widget-title {
  color: #303030;
  font-size: 35px;
  text-align: center;
  line-height: 40px;
  font-weight: 300;
  margin-top: 25px !important;
}

.home .temoignages {
  padding: 0 117px;
}

.temoignages .portrait {
  float: left;
  margin-right: 3.7%;
  width: 47.85%;
  height: 475px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.temoignages .portrait:nth-child(2) {
  margin-right: 0;
}

.portrait .picture {
  position: relative;
  width: 100%;
  /*max-width: 500px;*/
  padding: 0px;
  height: 100%;
  cursor: pointer;
  display: inline-block;
}

.portrait .picture:after {
  /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(156, 156, 156, 0) 39%, black 100%);*/
  background: url("../assets/images/bg_twt_temoignage.jpg") 0 0 no-repeat;
  position: absolute;
  bottom: -8px;
  left: 0px;
  content: '';
  display: block;
  z-index: 1;
  width: 100%;
  height: 123px;
  background-size: cover;
}

.portrait .picture img {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  max-width: 100%;
  height: auto;
  width: 100%;
}

.portrait .picture img .img-responsive {
  display: none !important;
}

@media (min-width: 720px) {
  .portrait .picture img {
        /*top: 50%;
			transform: translate(-50%, -50%);*/
  }

  body.home .portrait .picture img {
    /*width: auto;*/
  }
}
.portrait .info {
  position: absolute;
  left: 18px;
  bottom: 0;
  z-index: 2;
  color: #fff;
}

.portrait .info .cta {
  display: block;
  width: 47px;
  margin-bottom: 15px;
  margin-top: 8px;
  height: 47px;
  float: left;
}

.portrait .info .cta:hover {
  background: url("../assets/images/play_hov.png") 0 0 no-repeat;
  width: 47px;
  height: 47px;
  background-size: 47px 47px;
}

.portrait .info .cta:hover svg {
  display: none;
}

.portrait .info .content {
  float: left;
  margin-left: 20px;
  text-align: left;
}

.portrait .info .content:hover {
  /*background: url('../assets/images/roll_interviews.png') 0 0 no-repeat;*/
}

.portrait .info .function {
  font-size: 20px;
  font-weight: 300;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 2.1em;
  margin-bottom: 0;
}

.portrait .info .name {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  line-height: 1em;
  margin-bottom: 5px;
  color: #fff;
}

.portrait .info .excerpt {
  line-height: 1.2em;
  margin: 0;
  font-size: 24px;
  margin-top: 30px;
  display: none;
  font-style: italic;
}

.btn,
.blue {
  text-align: center;
}

.overlay-video-player {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.overlay-video-player .close-video-player {
  margin-top: 20px;
  text-transform: uppercase;
  border: none;
}

.overlay-video-player .close-video-player:hover {
  background: none;
}

body.video-player {
  overflow-y: hidden;
}

body.video-player .overlay-video-player {
  display: flex;
}

body.video-player .overlay-video-player .video-player {
  background: #FFF;
  padding: 20px;
}

body:not(.single) .entry-content p:last-of-type,
body:not(.single) .entry-content p:only-of-type {
  text-align: center;
}

/* carousel metiers */
.articles-job {
  padding: 0 62px;
}

.articles-job article .content-metier {
  background-color: #fff;
  padding: 40px 20px 25px;
  height: 100%;
}

.articles-job article .content-metier .entry-header {
  text-align: center;
}

@media (min-width: 992px) {
  .articles-job article .content-metier {
    min-height: 300px;
  }
}
.articles-job article .content-metier,
.articles-job article .content-metier p {
  color: #585858;
}

.articles-job article .content-metier .entry-title {
  font-size: 18px;
  font-weight: bold;
  color: #0072bc;
  margin: 0;
  margin-bottom: 18px;
  min-height: 38px;
}

.articles-job article .content-metier .subtitle {
  color: #f4783d;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 25px;
}

.articles-job article .content-metier .entry-content {
  height: 140px;
  overflow: hidden;
}

/*  Map SVG */
#section7 .container {
  max-width: 100%;
}

.title-blue .widget-title {
  font-size: 35px;
  text-align: center;
  line-height: 40px;
  color: #0072bc;
  font-weight: 300;
  margin-top: 25px !important;
}

.box-white {
  position: relative;
  background: #fff;
  max-width: 906px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  /*top:45px;*/
  top: 0;
  z-index: 1;
  padding-bottom: 15px;
}

.box-white .widget-title {
  font-size: 30px;
}

/* plugins map SVG */
.mapsvg {
  background: url("../assets/images/bg_map.jpg") center top no-repeat;
  width: 100%;
  height: 647px !important;
  background-size: cover;
}

.mapsvg .mapsvg-buttons {
  display: block !important;
}

.map-original,
.mapsvg {
  display: block;
}

.map-original .textwidget,
.mapsvg .textwidget {
  text-align: center;
  color: #585858;
}

@media (max-width: 480px) {
  .map-original,
  .mapsvg {
    display: none;
  }
}
.map-fallback {
  display: none;
}

.panel-grid.panel-has-style > .panel-row-style,
.panel-grid.panel-no-style {
  display: block !important;
}

@media (max-width: 480px) {
  .map-fallback {
    display: block;
  }
}
/* Tranche site origin image map  */
.map {
  background: url("../assets/images/bg_map.jpg") center top no-repeat;
  width: 100%;
  height: 960px;
  background-size: cover;
  background-attachment: fixed;
}

.map img {
  height: auto;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-44%) translateX(-50%) scale(1.4);
}

.popin {
  display: none;
  background: #fff;
  width: 176px;
  height: 178px;
  position: absolute;
  box-shadow: 0px 0px 30px #1C1C53BD;
  border-radius: 8px;
}
.popin .close {
  background: url("../assets/images/close.png") center top no-repeat;
  width: 10px;
  height: 10px;
}

/*.popin:before {
		content: '';
		background: url('../asset/images/stick_layer.png') 0 0 no-repeat;
		width: 204px;
		height: 99px;
		position: absolute;
		top: -49px;
		left: 38px;
		display: none;
}*/
.popin:before {
  content: '';
  background: url("../assets/images/adn/marker@2x.png") 0 0 no-repeat;
  background-size: 45px 45px;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

/*#epitech_nyc:before {
		background: url('../asset/images/stick_layer_green.png') 0 0 no-repeat;
		left: -61px;
		display: none;
}*/
.popin ul {
  margin: 25px 0 !important;
  text-align: left;
  color: #1C1C53;
  font-weight: 300;
  font-size: 12px;
  float: left;
  width: 50%;
}

#epitech_france {
  width: 260px;
  height: 220px;
}

#epitech_france .content {
  padding: 30px 40px;
  width: 260px;
}

.popin li {
  text-align: left;
  color: #1C1C53;
  font-weight: 300;
  font-size: 12px;
}

.popin li a {
  text-align: left;
  font-size: 13px;
  text-transform: capitalize;
  color: #1C1C53;
}

.popin .table {
  display: table;
  height: 170px;
}

.popin .content {
  display: table-cell;
  padding: 15px;
  color: #1C1C53;
  text-align: center;
  width: 176px;
  line-height: 16px;
  vertical-align: middle;
  float: none;
}

.popin .content h5 {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #1C1C53;
  margin: 0;
}

.popin ul.col-xs-12 {
  width: 50%;
}

.popin#epitech_nyc .content,
.popin#epitech_nyc .content h5,
.popin#epitech_nyc .close {
  /*color: #96ce35;*/
}

.popin .content p {
  margin: 0 !important;
}

.popin .content .address,
.popin .content .tel {
  font-weight: 300;
  font-size: 12px;
}

.popin .close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #1C1C53;
  cursor: pointer;
  font-weight: 300;
  text-indent: -10000px;
}

@media (max-width: 1160px) {
  .map {
    height: 600px;
  }

  .map img {
    transform: translateY(-45%) translateX(-50%) scale(1.4) !important;
  }

  .popin {
    top: 50% !important;
    left: 40% !important;
  }
}
@media (max-width: 880px) {
  .map {
    height: 660px;
  }

  .map img {
    transform: translateY(-36%) translateX(-41%) scale(2.3) !important;
  }

  .popin {
    top: 50% !important;
    left: 40% !important;
  }
}
@media (max-width: 480px) {
  .map img {
    transform: translateY(-23%) translateX(-35%) scale(2.3) !important;
  }

  .popin {
    top: 50% !important;
    left: 50% !important;
    transform: translate(76%, -50%);
  }
}
@media (max-width: 420px) {
  .map {
    height: 460px;
  }

  .map img {
    transform: translateY(-45%) translateX(-61%) scale(4) !important;
  }

  .popin {
    top: 50% !important;
    left: 50% !important;
    transform: translate(76%, -50%);
  }
}
/* OWL NAV EPITECH */
.owl-nav > div {
  width: 30px;
  height: 30px;
  /*text-indent: -9999px;*/
  content: '';
  display: block;
  background: url("../assets/images/owl-carousel-lft.png") no-repeat center center;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.owl-nav > div.owl-prev {
  left: -50px;
}

@media (max-width: 800px) {
  .articles-job .owl-nav > div.owl-prev {
    left: -10px;
  }
}
@media (max-width: 568px) {
  #slick-chiffres .owl-nav > div.owl-prev {
    left: -30px;
  }

  #slick-chiffres .owl-nav > div.owl-next {
    right: -30px;
  }
}
.owl-nav > div.owl-next {
  background-image: url("../assets/images/owl-carousel-rgt.png");
  right: -50px;
}

.features .owl-nav > div {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: -1;
}

.features .owl-nav > div.owl-prev:before {
  content: '<';
  position: absolute;
  left: 20px;
  font-size: 30px;
  font-weight: 300;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.features .owl-nav > div.owl-next:before {
  content: '>';
  position: absolute;
  left: 32px;
  font-size: 30px;
  font-weight: 300;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.features .owl-nav > div:hover:before {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .features .owl-nav > div.owl-next,
  .formation .owl-nav > div.owl-next {
    right: -10px;
  }
}
.features .owl-nav > div.owl-next {
  background: rgba(0, 0, 0, 0.4);
  content: '>';
  right: -50px;
}

.owl-item .portrait {
  width: 260px;
  height: 480px;
}

.owl-item .sow-features-feature {
  width: 280px;
  height: 345px;
}

/*
*  Owl Carousel - Core
*/
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
*  Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
* 	Owl Carousel - Auto Height Plugin
*/
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
* 	Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
* 	Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
* 	Default theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-nav [class*='owl-']:hover {
  background: #fff;
  color: #FFF;
  text-decoration: none;
}

.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: rgba(255, 255, 255, 0.13);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: white;
}

#pg-10550-6,
#pg-10593-6 {
  display: none !important;
}

/* news home 3 items*/
.news-actu,
#news-actu {
  padding: 0 62px;
}

.home .actu_events {
  width: 32%;
  margin-right: 1.3333%;
  float: left;
  margin-bottom: 1.5%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.news-list .news-cta,
.elementor-post__card a {
  display: block;
  position: relative;
}

.news-list .excerpt p,
.elementor-post__card .excerpt p {
  text-align: left !important;
}

.news-list .news-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(76, 178, 255, 0.2);
  z-index: 10;
}

.news-list .news-overlay span {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #4cb2ff;
  border-radius: 50%;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  color: #FFF;
  opacity: 0;
}

.news-image {
  height: 236px;
  overflow: hidden;
}

.news-list img,
.elementor-post__card img {
  transition: all 0.3s ease-in-out;
}

.news-list:hover .news-overlay span {
  opacity: 1;
}

.news-list:hover img,
.elementor-post__card:hover img {
  transform: scale(1.1);
}

.news-list .news-image img {
  height: auto;
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  position: relative;
}

.news-list .entry-header {
  background: #2c2c2c none repeat scroll 0 0;
  font-size: 14px;
  padding: 30px 35px;
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.news-list .entry-header .map {
  background: url("../asset/images/icon_map.png") no-repeat top left;
  min-height: 20px;
  height: 20px;
  padding-left: 20px;
  color: #f26522;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #da6c37;
}

.news-list .entry-header .date {
  color: #da6c37;
  font-weight: 500;
  font-size: 12px;
}

.news-list .entry-title {
  padding: 30px 0;
  height: 105px;
  overflow: hidden;
  width: 100%;
}

.news-list .entry-title,
.news-list .entry-title a {
  font-size: 20px;
  font-weight: 300;
  color: #4cb2ff;
}

.news-list .excerpt p {
  text-align: left !important;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  height: 176px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .news-actu {
    padding: 0 15px !important;
  }

  .home .actu_events {
    width: 100%;
    margin-bottom: 20px;
    float: left;
  }

  .news-image {
    height: auto;
    overflow: hidden;
  }

  .home #pg-10550-9 {
    margin-bottom: 0px;
  }
}
/* Footer */
.site-footer {
  position: relative;
  margin-top: 0 !important;
}

.site-footer {
  background: #2c2c2c !important;
  background: url("../assets/images/adn/bg_footer_desktop.jpg") center bottom no-repeat !important;
}
.site-footer:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: transparent linear-gradient(180deg, #0d0d26 0%, rgba(28, 28, 83, 0.82) 100%) 0% 0% no-repeat padding-box;
}

.site-footer .container {
  max-width: 1280px;
  padding: 0 62px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  display: block;
}

#ecoles .bottom-bar {
  background: #fff !important;
  color: #2c2c2c !important;
  padding: 45px 15px !important;
}

.site-footer .widget_nav_menu {
  width: 25%;
  padding-top: 36px !important;
}

.site-footer .widget_nav_menu li:before {
  content: '>';
  color: #a19e9e;
  padding: 0 5px;
}

.sow-social-media-button {
  font-size: 2.3em !important;
  padding: 0.3em 0.2em !important;
  margin: 0.2em 0.2em 0.2em 0 !important;
}

.sow-social-media-button.ow-button-hover:hover {
  background: none !important;
  border-bottom-color: transparent !important;
}

.sow-icon-fontawesome[data-sow-icon]:before {
  transition: all 0.3s ease-in-out;
}

.sow-icon-fontawesome[data-sow-icon]:hover:before {
  color: #fff !important;
}

#ecoles .bottom-bar .container {
  display: block;
}

#ecoles .bottom-bar p {
  display: block;
  padding: 0 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 13px;
}

#ecoles .bottom-bar #footer-ecoles a {
  color: #1C1C53 !important;
  font-weight: 500;
  font-size: 13px;
}

#ecoles .bottom-bar #footer-ecoles a:hover {
  text-decoration: underline;
}

#ecoles .site-info {
  text-align: center !important;
  padding: 15px;
}
#ecoles .site-info span {
  font-size: 14px;
  line-height: 27px;
  font-weight: 300;
  letter-spacing: 0;
  color: #00111A;
}

.site-footer .widgets {
  padding: 50px 0 !important;
  padding: 50px 0 140px 0 !important;
  width: 100%;
}

.site-footer .widgets .widget {
  margin: 0 2.75% 0px 0 !important;
}

.site-footer .widgets .widget_text {
  width: 40% !important;
}

.site-footer .widgets .widget_text p {
  color: #fff;
  padding: 20px 0 0 0;
  line-height: 25px;
  font-size: 13px;
}

.site-footer .widgets.widgets-4 .widget {
  /*width: 31.5%!important;*/
  width: 33.3%;
  margin-right: 0 !important;
}

.site-footer .widgets .widget:last-of-type {
  padding-top: 0;
}

.site-footer .widgets #text-3,
.site-footer .widgets #text-8,
.site-footer .widgets #text-6,
.site-footer .widgets #text-9 {
  position: absolute;
  right: 62px;
  margin-right: 0;
  max-width: 238px;
}

.site-footer .widgets #text-3 li,
.site-footer .widgets #text-3 li a,
.site-footer .widgets #text-8 li,
.site-footer .widgets #text-8 li a,
.site-footer .widgets #text-6 li,
.site-footer .widgets #text-6 li a,
.site-footer .widgets #text-9 li,
.site-footer .widgets #text-9 li a {
  display: block;
}

.site-footer .widgets #text-3 li a,
.site-footer .widgets #text-8 li a,
.site-footer .widgets #text-6 li a,
.site-footer .widgets #text-9 li a {
  background-color: #f26522;
  color: #fff;
  text-transform: uppercase;
  padding: 9px;
  font-size: 14px;
  max-width: 238px;
  margin-bottom: 10px;
}

.site-footer .widgets .widget a {
  color: #fff !important;
  font-weight: 300;
  font-size: 14px;
}

.site-footer .widgets .widget .textwidget a {
  font-weight: 400;
  font-size: 13px;
  text-decoration: underline;
}

.site-footer .widgets .menu-main-footer-container {
  max-width: 260px;
  padding: 25px;
}

.site-footer .widgets.widgets-4 .widget {
  width: 22.9375%;
}

.site-footer .widgets.widgets-4 .widget.widget_sow-social-media-buttons {
  width: 35%;
  padding-top: 36px !important;
}

.site-footer .widgets.widgets-4 .widget .so-widget-sow-social-media-buttons,
.site-footer .widgets.widgets-4 .widget .social-media-button-container {
  text-align: center;
}

.site-footer .widgets.widgets-4 .widget .social-media-button-container {
  padding: 25px 0;
}

.site-footer .widgets.widgets-4 .widget .so-widget-sow-social-media-buttons .widget-title {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  top: 20px;
  text-transform: capitalize;
}

/*!
 * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid .08em #eee;
  border-radius: .1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: 'sow-fontawesome-brands';
  font-style: normal;
  font-weight: 400;
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.eot);
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.woff) format("woff"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.ttf) format("truetype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format("svg");
}
.sow-fab {
  font-family: 'sow-fontawesome-brands';
  font-style: normal !important;
  font-weight: 400 !important;
}

@font-face {
  font-family: 'sow-fontawesome-free';
  font-style: normal;
  font-weight: 400;
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.eot);
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.woff) format("woff"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.ttf) format("truetype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format("svg");
}
.sow-far {
  font-family: 'sow-fontawesome-free';
  font-style: normal !important;
  font-weight: 400 !important;
}

@font-face {
  font-family: 'sow-fontawesome-free';
  font-style: normal;
  font-weight: 900;
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.eot);
  src: url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.woff) format("woff"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.ttf) format("truetype"), url(//www.epitech.eu/fr/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format("svg");
}
.sow-fa,
.sow-fas {
  font-family: 'sow-fontawesome-free';
  font-weight: 900 !important;
  font-style: normal !important;
}

.sow-icon-fontawesome {
  display: inline-block;
  speak: none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sow-icon-fontawesome[data-sow-icon]:before {
  content: attr(data-sow-icon);
}

/* search layer */
.search-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: none;
}

.search-wrapper .container {
  max-width: 1280px;
  padding: 0;
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: flex;
}

.search-wrapper .row {
  width: 100%;
}

@media (min-width: 480px) {
  body.admin-bar .search-wrapper {
    top: 32px;
  }
}
body.search-open .search-wrapper {
  display: block;
}

.search-wrapper > .container,
.search-wrapper > .site-content {
  position: relative;
}

.search-wrapper .close-search {
  position: absolute;
  right: 0;
  top: 25px;
}

.search-wrapper .search-results {
  padding-top: 20px;
  margin-top: 180px !important;
}

@media (max-width: 480px) {
  .search-wrapper .close-search {
    right: 20px;
  }
}
.search-wrapper .search-input-wrapper {
  background: rgba(6, 56, 106, 0.95) !important;
  padding: 30px 0;
  position: fixed;
  z-index: 1;
  width: 100%;
}

.stick .search-wrapper .search-input-wrapper {
  background: rgba(19, 19, 19, 0.95) !important;
}

@media (max-width: 480px) {
  .search-wrapper .search-input-wrapper {
    padding: 15px 0;
  }
}
.search-wrapper .search-input-wrapper .search-input {
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 48px;
  color: #fff !important;
  display: block;
  font-weight: 300;
  outline: none;
}

@media (max-width: 480px) {
  .search-wrapper .search-input-wrapper .search-input {
    font-size: 24px;
    padding-right: 50px;
  }

  .search-wrapper .search-results {
    padding-top: 20px;
    margin-top: 80px !important;
  }
}
.search-wrapper .search-results .loading {
  width: 64px;
  width: 64px;
  height: 120px;
  position: relative;
  left: 50%;
  margin-left: -22px;
  top: 50%;
  margin-top: 25%;
}

.search-wrapper .search-results .search-type {
  font-size: 24px;
  font-weight: bold;
  color: #4CB2FF;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: left;
}

.search-wrapper .search-results ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
}

.search-wrapper .search-results ul li {
  margin-bottom: 25px;
}

.search-wrapper .search-results ul li .search-title {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.search-wrapper .search-results ul li .search-excerpt {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
}

.search-wrapper .search-results ul li .search-date {
  color: #4CB2FF;
  font-size: 14px;
  font-weight: bold;
}

.search-icon-menu > a,
.search-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../asset/images/search-icon.png") no-repeat center center;
  text-indent: -9999px;
  content: '';
}

@media (max-width: 480px) {
  .search-icon-menu > a,
  .search-icon {
    margin-right: 20px;
  }
}
.search-icon-menu {
  padding-top: 16px;
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 992px) {
  .search-icon-menu {
    padding-top: 23px;
  }

  .search-icon-menu > a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
/* MEDIA QUERIES */
@media all and (max-width: 1400px) {
  .chiffres-cles .widget-title {
    margin: 0px 15%;
  }

  .chiffres-cles .animatenumber {
    margin: 40px 15%;
  }
}
@media all and (max-width: 1340px) {
  .white-bloc {
    max-width: 1280px !important;
  }

  #pgc-10550-0-0 > .panel-cell-style {
    padding: 208px 0px 20px 106px !important;
  }

  #pgc-10550-0-1 > .panel-cell-style {
    padding: 143px 20px 20px 154px;
  }

  .formation .group {
    padding: 0 48px;
    margin-top: 0;
  }

  .banner-digital {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .so-widget-sow-image-default-4b231843ec72 .sow-image-container > a {
    max-height: 77px;
  }

  .formation {
    position: relative;
    top: 0;
  }

  #panel-10550-3-0-0 > .panel-widget-style {
    width: 100%;
  }
}
@media all and (max-width: 1280px) {
  #masthead .main-navigation ul:not(.shopping-cart) {
    display: inline-block;
    padding: 5px 0;
  }

  #mobile-menu-button {
    top: -3px !important;
  }

  #mobile-navigation {
    overflow: auto;
    /*top: 104px!important;*/
    top: 40px !important;
  }

  .main-navigation {
    position: relative;
    padding-top: inherit;
    text-align: inherit;
    margin: 0 auto;
    padding-left: inherit !important;
    padding: 0;
    width: 100%;
    background: #fff !important;
    height: 104px;
  }
  .main-navigation ul li a {
    font-size: 11px !important;
  }

  .stuck .main-navigation {
    display: block !important;
  }

  .main-navigation .search-toggle {
    display: none !important;
    width: 100%;
    height: 40px !important;
    position: absolute !important;
    top: 29px !important;
    padding: 0 !important;
    margin: 0px !important;
    left: unset !important;
    right: -70px !important;
  }

  .stuck .main-navigation .search-toggle {
    display: block !important;
  }

  .main-navigation .search-toggle .open {
    position: absolute !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.2);
    top: 25px;
    right: 96px;
    border: 1px solid #0072bc;
  }

  .main-navigation .search-toggle .open svg path {
    fill: #0072bc !important;
  }
}
@media all and (max-width: 1240px) {
  .white-bloc {
    max-width: 1024px !important;
  }

  .home .section .container {
    max-width: 1024px !important;
  }

  #section6 .container {
    max-width: 1024px !important;
  }

  .home .menu-campus-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
    max-width: inherit !important;
  }

  #pgc-10550-0-1 > .panel-cell-style {
    padding: 257px 20px 20px 115px !important;
  }

  #pgc-10550-0-0 > .panel-cell-style {
    padding: 208px 0px 20px 30px !important;
  }

  .formation {
    position: relative;
  }

  .formation .owl-nav > div.owl-prev {
    left: -20px;
  }

  .formation .owl-nav > div.owl-next {
    right: -20px;
  }

  .home .temoignages {
    padding: 0 40px !important;
  }
}
@media all and (max-width: 1064px) {
  .site-footer .container {
    padding: 0 20px;
  }

  .site-footer .widgets.widgets-4 .widget {
    width: 100% !important;
    float: none;
    display: block;
  }

  .site-footer .widget_mailpoet_form,
  .site-footer .widget.widget_wysija {
    padding: 0;
  }

  .site-footer .widgets .widget_mailpoet_form .widget-title,
  .site-footer .widget.widget_wysija .widget-title {
    padding: 0;
  }

  .site-footer #mailpoet_form_1 .mailpoet_form,
  .site-footer .widget_wysija_cont .widget_wysija {
    max-width: 260px;
    padding: 0;
  }

  .site-footer .widgets #text-3,
  .site-footer .widgets #text-8,
  .site-footer .widgets #text-6,
  .site-footer .widgets #text-9 {
    right: inherit;
    margin-right: 0;
    max-width: 260px;
    position: relative;
    margin-top: 50px !important;
  }

  .site-footer .widgets #text-3 li a,
  .site-footer .widgets #text-8 li a,
  .site-footer .widgets #text-6 li a,
  .site-footer .widgets #text-9 li a {
    max-width: 260px;
  }

  .site-footer .widgets .widget:last-of-type {
    padding-top: 0;
  }

  .site-footer .widgets .menu-main-footer-container {
    padding: inherit;
  }

  #panel-10550-3-1-0 > .panel-widget-style {
    background-position: 0 center !important;
  }

  #panel-10593-3-1-0 > .panel-widget-style {
    background-position: 0 center !important;
  }

  .site-footer .widgets.widgets-4 .widget.widget_sow-social-media-buttons {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
@media all and (max-width: 1024px) {
  #pgc-10550-0-1 {
    width: calc(54% - ( 0.55 * 0px));
    position: absolute;
    right: 0;
    top: -20px;
  }

  #pgc-10593-0-1 {
    width: calc(54% - ( 0.55 * 0px));
    position: absolute;
    right: 0;
    top: -20px;
  }

  #pgc-10593-0-0,
  #pgc-10593-0-1 {
    width: 55%;
  }

  #masthead .main-navigation ul:not(.shopping-cart) {
    display: none !important;
  }
}
@media all and (max-width: 1024px) {
  .white-bloc {
    max-width: 880px !important;
    /* margin-top: 463px;*/
  }

  .home .section .container {
    max-width: 880px !important;
  }

  #pgc-10550-0-1 > .panel-cell-style {
    padding: 257px 20px 20px 55px !important;
  }

  #pgc-10593-0-1 > .panel-cell-style {
    padding: 257px 20px 20px 55px !important;
  }

  .formation {
    position: relative;
    top: -86px;
  }

  .banner-digital {
    margin-top: -60px;
    margin-bottom: 30px;
  }

  .temoignages {
    padding: 0 0px;
    text-align: center;
  }
  .temoignages .portrait .picture:after {
    height: 108px;
  }

  .home .temoignages {
    padding: 0 15px;
    text-align: center;
  }

  .temoignages .portrait .content {
    text-align: left;
  }

  #pgc-10550-0-0 > .panel-cell-style {
    padding: 208px 20px 20px 20px !important;
  }

  #pgc-10593-0-0 > .panel-cell-style {
    padding: 208px 20px 20px 20px !important;
  }

  .header-txt-widget .elementor-widget-container {
    padding: 208px 20px 20px 20px !important;
  }
}
@media all and (max-width: 980px) {
  .temoignages .portrait {
    float: none;
    display: inline-block;
    height: 450px;
    width: 100% !important;
  }

  .elementor-7954 .elementor-element.elementor-element-1129a1d {
    width: 100% !important;
  }

  .elementor-7954 .elementor-element.elementor-element-54e70ef {
    width: 100% !important;
  }
}
@media all and (max-width: 880px) {
  #pgc-10550-0-0 > .panel-cell-style {
    padding: 84px 20px 0px 20px !important;
  }

  #pgc-10593-0-0 > .panel-cell-style {
    padding: 84px 20px 0px 20px !important;
  }

  .header-txt-widget .elementor-widget-container {
    padding: 84px 20px 0px 20px !important;
    width: 100% !important;
  }

  .home #section0 {
    display: block;
    height: auto !important;
    margin-bottom: 40px;
  }

  #pgc-10550-0-0 {
    width: 100% !important;
  }

  #pgc-10593-0-0 {
    width: 100% !important;
  }

  body,
  button,
  input,
  optgroup,
  select,
  textarea {
    line-height: 1.36;
  }

  .header-cta .content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  #pgc-10550-0-1 > .panel-cell-style {
    padding: 0 !important;
  }

  #pgc-10593-0-1 > .panel-cell-style {
    padding: 0 !important;
  }

  .header-cta {
    padding: 0 !important;
  }

  #pgc-10550-0-1,
  #pgc-10593-0-1,
  .header-cta {
    width: 100% !important;
    position: relative;
    right: inherit;
    top: inherit;
  }

  .home #pl-10550 .so-panel,
  .header-txt .content {
    text-align: center !important;
  }

  .home #pl-10593 .so-panel,
  .header-txt .content {
    text-align: center !important;
  }

  .header-txt .content .logo img {
    width: 50%;
  }

  .header-txt .content ul {
    text-align: left;
  }

  #pg-10550-0 {
    margin-bottom: 40px;
  }

  #pg-10593-0 {
    margin-bottom: 40px;
  }

  .elementor-7954 .elementor-element.elementor-element-042dc3c > .elementor-widget-container {
    padding: 15px 20px 20px 20px !important;
  }

  .white-bloc {
    display: none;
  }

  .formation {
    /* top: 120px;*/
    top: 0;
  }

  .formation:before {
    content: 'A chaque profil sa formation :';
    position: relative;
    top: 0px;
    font-size: 35px;
    text-align: center;
    line-height: 40px;
    color: #0072bc;
    font-weight: 300;
    width: 100%;
    padding: 20px;
    left: 0px;
    display: block;
  }

  .formation .owl-nav {
    display: none;
  }

  .banner-digital {
    margin-top: 0;
    box-shadow: none;
    margin-bottom: 0px;
  }

  .main-navigation .search-toggle {
    /*display:none;*/
  }

  .menu-campus-international-container {
    display: none;
  }

  .main-navigation {
    display: none;
  }

  .stuck .main-navigation {
    display: block;
  }

  .stuck .menu-campus-international-container {
    display: block;
  }

  .stuck .main-navigation .search-toggle .open {
    border: 0;
  }
}
@media (max-width: 480px) {
  .menu-campus-international-container {
    display: none;
  }

  .banner-digital .sow-image-container {
    height: 130px;
  }

  .elementor-10952 .elementor-element.elementor-element-4190e73 .actu_events {
    padding: 0 20px;
  }

  .alumni .widget-title {
    font-size: 24px;
    line-height: 30px;
    padding: 0 15px;
  }

  .temoignages {
    padding: 0 15px !important;
  }

  .temoignages .portrait {
    height: 320px;
  }

  .temoignages .portrait .info {
    width: auto;
    bottom: 0px;
  }

  .temoignages .portrait .info .cta {
    width: 27px;
    height: 27px;
  }

  .portrait .info .cta:hover {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
  }

  .chiffres-cles .animatenumber {
    top: -40px;
  }

  .temoignages .portrait .info .content {
    margin-left: 15px;
    width: 66%;
    text-align: left;
  }

  .temoignages .portrait .info .name {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 0px;
    line-height: 1em;
    margin-bottom: 5px;
    color: #fff;
  }

  .temoignages .portrait .info p.function {
    text-align: left;
    line-height: 20px;
    width: 85%;
  }

  .home #section4,
  .home .features {
    padding: 0 20px !important;
  }

  .features .owl-nav > div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .features .owl-nav > div.owl-prev::before {
    left: 8px;
    font-size: 24px;
    font-weight: 300;
    line-height: 29px;
  }

  .features .owl-nav > div.owl-next::before {
    left: 8px;
    font-size: 24px;
    font-weight: 300;
    line-height: 29px;
  }

  .features .owl-nav > div.owl-prev {
    left: -25px !important;
  }

  .features .owl-nav > div.owl-next {
    right: -30px !important;
  }

  .title-blue .widget-title {
    font-size: 24px;
    line-height: 26px;
    padding: 0 20px;
  }

  .banner-digital {
    margin-top: 0px;
    box-shadow: none;
    margin-bottom: 0px;
  }

  #panel-10550-3-0-0 > .panel-widget-style {
    background-position: 0 0;
    height: inherit !important;
  }

  #panel-10593-3-0-0 > .panel-widget-style {
    background-position: 0 0;
    height: inherit !important;
  }

  .chiffres-cles .widget-title {
    font-size: 25px !important;
    padding-top: 37px !important;
  }

  .metiers .widget-title {
    font-size: 25px !important;
  }

  .metiers {
    padding: 30px 30px 50px 30px !important;
    height: auto !important;
  }

  #panel-10550-3-1-0 > .panel-widget-style {
    height: 760px !important;
  }

  #panel-10593-3-1-0 > .panel-widget-style {
    height: 760px !important;
  }

  body:not(.single) .entry-content p:last-of-type,
  body:not(.single) .entry-content p:only-of-type {
    text-align: center;
    display: inline-block;
  }

  .home #pg-10550-9 {
    margin-top: 89px;
  }

  .home #pg-10593-9 {
    margin-top: 89px;
  }

  .home .box-white {
    top: -55px;
    width: 90%;
  }

  .home .box-white .widget-title {
    font-size: 18px;
  }

  .home .formation::before {
    top: inherit;
    font-size: 28px;
  }

  .home .portrait .info .content {
    width: 85% !important;
  }
}
.adn-epitech {
  opacity: 0;
  background: url("../assets/images/adn/bg_header_3000x2000.jpg") #fff no-repeat center 0 !important;
}
.adn-epitech.page, .adn-epitech.single, .adn-epitech.archive, .adn-epitech.error404 {
  background: none !important;
}
@media only screen and (min-width: 1380px) {
  .adn-epitech.page .container, .adn-epitech.single .container, .adn-epitech.archive .container, .adn-epitech.error404 .container {
    padding-left: 0%;
    padding-right: 0%;
    max-width: 1162px;
  }
  .adn-epitech.page .site-footer .container, .adn-epitech.single .site-footer .container, .adn-epitech.archive .site-footer .container, .adn-epitech.error404 .site-footer .container {
    max-width: 1280px;
    padding: 0 62px;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
.adn-epitech.page .site-header, .adn-epitech.single .site-header, .adn-epitech.archive .site-header, .adn-epitech.error404 .site-header {
  background: #fff;
}
.adn-epitech.page .site-branding, .adn-epitech.single .site-branding, .adn-epitech.archive .site-branding, .adn-epitech.error404 .site-branding {
  display: none;
}
.adn-epitech.page .site-footer, .adn-epitech.single .site-footer, .adn-epitech.archive .site-footer, .adn-epitech.error404 .site-footer {
  margin-top: 80px !important;
}
@media all and (max-width: 880px) {
  .adn-epitech.page .navigation, .adn-epitech.single .navigation, .adn-epitech.archive .navigation, .adn-epitech.error404 .navigation {
    transform: scale(0.7);
    top: 5px;
    right: 2px;
  }
}
.adn-epitech.page.page-id-12136 .elementor-section-full_width .container:nth-child(1), .adn-epitech.single.page-id-12136 .elementor-section-full_width .container:nth-child(1), .adn-epitech.archive.page-id-12136 .elementor-section-full_width .container:nth-child(1), .adn-epitech.error404.page-id-12136 .elementor-section-full_width .container:nth-child(1) {
  padding: 0;
  max-width: 100%;
}
.adn-epitech.page .navigation, .adn-epitech.single .navigation, .adn-epitech.archive .navigation, .adn-epitech.error404 .navigation {
  right: inherit;
  left: 50%;
  transform: translateX(600%);
  transition: 0.2s;
}
@media all and (max-width: 1220px) {
  .adn-epitech.page .navigation, .adn-epitech.single .navigation, .adn-epitech.archive .navigation, .adn-epitech.error404 .navigation {
    left: inherit;
    right: 10px !important;
    transform: translateX(0%) !important;
  }
}
.adn-epitech.page .title,
.adn-epitech.page .sstitle, .adn-epitech.single .title,
.adn-epitech.single .sstitle, .adn-epitech.archive .title,
.adn-epitech.archive .sstitle, .adn-epitech.home .title,
.adn-epitech.home .sstitle, .adn-epitech.error404 .title,
.adn-epitech.error404 .sstitle {
  color: #1C1C53;
}
.adn-epitech.page .title.rose,
.adn-epitech.page .sstitle.rose, .adn-epitech.single .title.rose,
.adn-epitech.single .sstitle.rose, .adn-epitech.archive .title.rose,
.adn-epitech.archive .sstitle.rose, .adn-epitech.home .title.rose,
.adn-epitech.home .sstitle.rose, .adn-epitech.error404 .title.rose,
.adn-epitech.error404 .sstitle.rose {
  color: #B2006D !important;
}
.adn-epitech.page .title.orange,
.adn-epitech.page .sstitle.orange, .adn-epitech.single .title.orange,
.adn-epitech.single .sstitle.orange, .adn-epitech.archive .title.orange,
.adn-epitech.archive .sstitle.orange, .adn-epitech.home .title.orange,
.adn-epitech.home .sstitle.orange, .adn-epitech.error404 .title.orange,
.adn-epitech.error404 .sstitle.orange {
  color: #B2006D !important;
}
.adn-epitech.page .title.blue,
.adn-epitech.page .sstitle.blue, .adn-epitech.single .title.blue,
.adn-epitech.single .sstitle.blue, .adn-epitech.archive .title.blue,
.adn-epitech.archive .sstitle.blue, .adn-epitech.home .title.blue,
.adn-epitech.home .sstitle.blue, .adn-epitech.error404 .title.blue,
.adn-epitech.error404 .sstitle.blue {
  color: #1C1C53 !important;
}
.adn-epitech.page .title.white,
.adn-epitech.page .sstitle.white, .adn-epitech.single .title.white,
.adn-epitech.single .sstitle.white, .adn-epitech.archive .title.white,
.adn-epitech.archive .sstitle.white, .adn-epitech.home .title.white,
.adn-epitech.home .sstitle.white, .adn-epitech.error404 .title.white,
.adn-epitech.error404 .sstitle.white {
  color: #fff !important;
}
.adn-epitech.page .title.bluelight,
.adn-epitech.page .sstitle.bluelight, .adn-epitech.single .title.bluelight,
.adn-epitech.single .sstitle.bluelight, .adn-epitech.archive .title.bluelight,
.adn-epitech.archive .sstitle.bluelight, .adn-epitech.home .title.bluelight,
.adn-epitech.home .sstitle.bluelight, .adn-epitech.error404 .title.bluelight,
.adn-epitech.error404 .sstitle.bluelight {
  color: #4CB2FF !important;
}
.adn-epitech.page .header-bg, .adn-epitech.single .header-bg, .adn-epitech.archive .header-bg, .adn-epitech.home .header-bg, .adn-epitech.error404 .header-bg {
  background: url("../assets/images/bg_header.jpg") no-repeat center 0;
  background-size: auto;
}
.adn-epitech.page .nav-icon, .adn-epitech.single .nav-icon, .adn-epitech.archive .nav-icon, .adn-epitech.home .nav-icon, .adn-epitech.error404 .nav-icon {
  width: 24%;
  height: 18px;
  margin: 30px auto;
  z-index: 1;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}
.adn-epitech.page .nav-icon span, .adn-epitech.single .nav-icon span, .adn-epitech.archive .nav-icon span, .adn-epitech.home .nav-icon span, .adn-epitech.error404 .nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1C1C53;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.adn-epitech.page .nav-icon span:nth-child(1), .adn-epitech.single .nav-icon span:nth-child(1), .adn-epitech.archive .nav-icon span:nth-child(1), .adn-epitech.home .nav-icon span:nth-child(1), .adn-epitech.error404 .nav-icon span:nth-child(1) {
  top: 3px;
}
.adn-epitech.page .nav-icon span:nth-child(2),
.adn-epitech.page .nav-icon span:nth-child(3), .adn-epitech.single .nav-icon span:nth-child(2),
.adn-epitech.single .nav-icon span:nth-child(3), .adn-epitech.archive .nav-icon span:nth-child(2),
.adn-epitech.archive .nav-icon span:nth-child(3), .adn-epitech.home .nav-icon span:nth-child(2),
.adn-epitech.home .nav-icon span:nth-child(3), .adn-epitech.error404 .nav-icon span:nth-child(2),
.adn-epitech.error404 .nav-icon span:nth-child(3) {
  top: 10px;
}
.adn-epitech.page .nav-icon span:nth-child(4), .adn-epitech.single .nav-icon span:nth-child(4), .adn-epitech.archive .nav-icon span:nth-child(4), .adn-epitech.home .nav-icon span:nth-child(4), .adn-epitech.error404 .nav-icon span:nth-child(4) {
  top: 17px;
}
.adn-epitech.page .nav-icon.open span:nth-child(1), .adn-epitech.single .nav-icon.open span:nth-child(1), .adn-epitech.archive .nav-icon.open span:nth-child(1), .adn-epitech.home .nav-icon.open span:nth-child(1), .adn-epitech.error404 .nav-icon.open span:nth-child(1) {
  top: 20px;
  width: 0%;
  left: 50%;
}
.adn-epitech.page .nav-icon.open span:nth-child(2), .adn-epitech.single .nav-icon.open span:nth-child(2), .adn-epitech.archive .nav-icon.open span:nth-child(2), .adn-epitech.home .nav-icon.open span:nth-child(2), .adn-epitech.error404 .nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.adn-epitech.page .nav-icon.open span:nth-child(3), .adn-epitech.single .nav-icon.open span:nth-child(3), .adn-epitech.archive .nav-icon.open span:nth-child(3), .adn-epitech.home .nav-icon.open span:nth-child(3), .adn-epitech.error404 .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.adn-epitech.page .nav-icon.open span:nth-child(4), .adn-epitech.single .nav-icon.open span:nth-child(4), .adn-epitech.archive .nav-icon.open span:nth-child(4), .adn-epitech.home .nav-icon.open span:nth-child(4), .adn-epitech.error404 .nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.adn-epitech.page .languages.polylang, .adn-epitech.single .languages.polylang, .adn-epitech.archive .languages.polylang, .adn-epitech.home .languages.polylang, .adn-epitech.error404 .languages.polylang {
  position: absolute;
  right: 160px;
  top: 50%;
  transform: translateY(-63%);
}
.adn-epitech.page .languages.polylang ul, .adn-epitech.single .languages.polylang ul, .adn-epitech.archive .languages.polylang ul, .adn-epitech.home .languages.polylang ul, .adn-epitech.error404 .languages.polylang ul {
  width: auto;
  display: inline-block;
}
.adn-epitech.page .languages.polylang .lang-item, .adn-epitech.single .languages.polylang .lang-item, .adn-epitech.archive .languages.polylang .lang-item, .adn-epitech.home .languages.polylang .lang-item, .adn-epitech.error404 .languages.polylang .lang-item {
  list-style: none;
  display: inline-block;
  min-width: 28px;
  color: #1C1C53;
}
.adn-epitech.page .languages.polylang .lang-item a, .adn-epitech.single .languages.polylang .lang-item a, .adn-epitech.archive .languages.polylang .lang-item a, .adn-epitech.home .languages.polylang .lang-item a, .adn-epitech.error404 .languages.polylang .lang-item a {
  text-transform: uppercase;
  padding: 3px;
  font-weight: 300;
  font-size: 14px;
  border: 1px solid #ffffff;
}
.adn-epitech.page .languages.polylang .lang-item a.on, .adn-epitech.page .languages.polylang .lang-item a:hover, .adn-epitech.single .languages.polylang .lang-item a.on, .adn-epitech.single .languages.polylang .lang-item a:hover, .adn-epitech.archive .languages.polylang .lang-item a.on, .adn-epitech.archive .languages.polylang .lang-item a:hover, .adn-epitech.home .languages.polylang .lang-item a.on, .adn-epitech.home .languages.polylang .lang-item a:hover, .adn-epitech.error404 .languages.polylang .lang-item a.on, .adn-epitech.error404 .languages.polylang .lang-item a:hover {
  border: 1px solid #1C1C53;
  border-radius: 3px;
}
.adn-epitech.page .languages.polylang .lang-item a:visited, .adn-epitech.page .languages.polylang .lang-item a:link, .adn-epitech.single .languages.polylang .lang-item a:visited, .adn-epitech.single .languages.polylang .lang-item a:link, .adn-epitech.archive .languages.polylang .lang-item a:visited, .adn-epitech.archive .languages.polylang .lang-item a:link, .adn-epitech.home .languages.polylang .lang-item a:visited, .adn-epitech.home .languages.polylang .lang-item a:link, .adn-epitech.error404 .languages.polylang .lang-item a:visited, .adn-epitech.error404 .languages.polylang .lang-item a:link {
  color: #1C1C53;
}
.adn-epitech.page .languages.polylang .lang-item.current-lang a, .adn-epitech.single .languages.polylang .lang-item.current-lang a, .adn-epitech.archive .languages.polylang .lang-item.current-lang a, .adn-epitech.home .languages.polylang .lang-item.current-lang a, .adn-epitech.error404 .languages.polylang .lang-item.current-lang a {
  border: 1px solid #1C1C53;
  border-radius: 3px;
}
.adn-epitech.page .navigation, .adn-epitech.single .navigation, .adn-epitech.archive .navigation, .adn-epitech.home .navigation, .adn-epitech.error404 .navigation {
  position: fixed;
  z-index: 1000;
  top: 8px;
  right: 62px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.2s;
  /*&:after,*/
}
.adn-epitech.page .navigation .after, .adn-epitech.single .navigation .after, .adn-epitech.archive .navigation .after, .adn-epitech.home .navigation .after, .adn-epitech.error404 .navigation .after {
  border: 1px solid #1C1C53;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: inline-block;
  top: 8px;
  position: absolute;
  left: 8px;
  transition: 0.2s;
}
.adn-epitech.page .navigation .languages, .adn-epitech.single .navigation .languages, .adn-epitech.archive .navigation .languages, .adn-epitech.home .navigation .languages, .adn-epitech.error404 .navigation .languages {
  position: absolute;
  width: 100%;
  max-width: 60px;
  top: 30px;
  right: 100px;
  transition: 0.2s;
}
.adn-epitech.page .navigation .languages ul, .adn-epitech.single .navigation .languages ul, .adn-epitech.archive .navigation .languages ul, .adn-epitech.home .navigation .languages ul, .adn-epitech.error404 .navigation .languages ul {
  list-style: none;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.adn-epitech.page .navigation .languages li, .adn-epitech.single .navigation .languages li, .adn-epitech.archive .navigation .languages li, .adn-epitech.home .navigation .languages li, .adn-epitech.error404 .navigation .languages li {
  display: inline-block;
  max-width: 28px;
  width: 100%;
  color: #1C1C53;
  margin: 0 1px;
}
.adn-epitech.page .navigation .languages li a, .adn-epitech.single .navigation .languages li a, .adn-epitech.archive .navigation .languages li a, .adn-epitech.home .navigation .languages li a, .adn-epitech.error404 .navigation .languages li a {
  display: block;
  width: auto;
  font-weight: 300;
  font-size: 14px;
  border: 1px solid #ffffff;
}
.adn-epitech.page .navigation .languages li a.on, .adn-epitech.page .navigation .languages li a:hover, .adn-epitech.single .navigation .languages li a.on, .adn-epitech.single .navigation .languages li a:hover, .adn-epitech.archive .navigation .languages li a.on, .adn-epitech.archive .navigation .languages li a:hover, .adn-epitech.home .navigation .languages li a.on, .adn-epitech.home .navigation .languages li a:hover, .adn-epitech.error404 .navigation .languages li a.on, .adn-epitech.error404 .navigation .languages li a:hover {
  border: 1px solid #1C1C53;
  border-radius: 3px;
}
.adn-epitech.page .navigation .languages li a:visited, .adn-epitech.page .navigation .languages li a:link, .adn-epitech.single .navigation .languages li a:visited, .adn-epitech.single .navigation .languages li a:link, .adn-epitech.archive .navigation .languages li a:visited, .adn-epitech.archive .navigation .languages li a:link, .adn-epitech.home .navigation .languages li a:visited, .adn-epitech.home .navigation .languages li a:link, .adn-epitech.error404 .navigation .languages li a:visited, .adn-epitech.error404 .navigation .languages li a:link {
  color: #1C1C53;
}
.adn-epitech.page .sidebar .content-area,
.adn-epitech.page .sidebar .site-main, .adn-epitech.single .sidebar .content-area,
.adn-epitech.single .sidebar .site-main, .adn-epitech.archive .sidebar .content-area,
.adn-epitech.archive .sidebar .site-main, .adn-epitech.home .sidebar .content-area,
.adn-epitech.home .sidebar .site-main, .adn-epitech.error404 .sidebar .content-area,
.adn-epitech.error404 .sidebar .site-main {
  margin: 0 !important;
}
.adn-epitech.error404 .header-bg {
  background: url("../assets/images/adn/404@2x.png") no-repeat center 0 !important;
  background-size: auto;
  height: 888px !important;
}
.adn-epitech.error404 .site-content {
  position: relative;
}
.adn-epitech.error404 .site-footer {
  margin-top: 0 !important;
}
.adn-epitech.error404 .main-header {
  display: none !important;
}
.adn-epitech.error404 .content-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 511px;
  width: 100%;
}
.adn-epitech.error404 .error-404 .page-header {
  display: none;
}
@media all and (min-width: 1380px) {
  .adn-epitech.home .container {
    padding-left: 0%;
    padding-right: 0%;
    max-width: 1340px;
  }
}
@media all and (max-width: 1220px) {
  .adn-epitech.home .languages {
    display: none;
  }
}
.adn-epitech.home .navigation {
  top: 31px;
  left: inherit !important;
  transform: inherit !important;
  transition: 0.2s;
}
.adn-epitech.home .site-footer {
  margin-top: 0px !important;
}
.adn-epitech .txt,
.adn-epitech .texte {
  color: #343434;
}
.adn-epitech .txt.orange,
.adn-epitech .texte.orange {
  color: #B2006D !important;
}
.adn-epitech .txt.rose,
.adn-epitech .texte.rose {
  color: #B2006D !important;
}
.adn-epitech .txt.blue,
.adn-epitech .texte.blue {
  color: #1C1C53 !important;
}
.adn-epitech .txt.white,
.adn-epitech .texte.white {
  color: #fff !important;
}
.adn-epitech .txt.bluelight,
.adn-epitech .texte.bluelight {
  color: #4CB2FF !important;
}
.adn-epitech .breadcrumbs a {
  color: #1C1C53;
  color: #1C1C53;
  text-decoration: underline;
}
.adn-epitech .breadcrumbs a:hover {
  color: #1C1C53 !important;
  text-decoration: none;
}
.adn-epitech .breadcrumbs a:visited {
  color: #1C1C53 !important;
}
.adn-epitech .breadcrumbs .breadcrumb_last,
.adn-epitech .breadcrumbs span {
  color: #B2006D !important;
}
.adn-epitech .bloc {
  min-height: 180px;
}
.adn-epitech .bloc.color.blue {
  background-color: #1C1C53;
}
.adn-epitech .bloc.color.bluelight {
  background-color: #4CB2FF;
}
.adn-epitech .bloc.color.rose {
  background-color: #B2006D;
}
.adn-epitech .bloc.color.roselight {
  background-color: #db30cc;
}
.adn-epitech .blocdark .title {
  color: #1C1C53;
}
.adn-epitech .blocdark.blue {
  background-color: #1C1C53;
}
.adn-epitech .blocdark.blue .title {
  color: #373d41;
}
.adn-epitech .blocdark.bluelight {
  background-color: #4CB2FF;
}
.adn-epitech .blocdark.bluelight .title {
  color: #4CB2FF;
}
.adn-epitech .blocdark.rose {
  background-color: #B2006D;
}
.adn-epitech .blocdark.rose .title {
  color: #B2006D;
}
.adn-epitech .quote blockquote {
  color: #1C1C53;
  border: 0;
}
.adn-epitech .quote blockquote:before {
  background: url("../assets/images/quote.png");
}
.adn-epitech .quote blockquote:after {
  background: url("../assets/images/quote.png");
}
.adn-epitech .quote blockquote.rose {
  color: #B2006D;
}
.adn-epitech .quote blockquote.rose p {
  color: #B2006D !important;
  text-align: center !important;
}
.adn-epitech .quote blockquote.rose:before {
  background: url("../assets/images/quote_rose.png");
}
.adn-epitech .quote blockquote.rose:after {
  background: url("../assets/images/quote_rose.png");
}
.adn-epitech .quote blockquote.rose p {
  color: #B2006D;
}
.adn-epitech .quote blockquote p {
  color: #1C1C53;
}
.adn-epitech .quote p.txt {
  color: #ffffff;
}
.adn-epitech .quote p.author {
  color: #1C1C53;
}
.adn-epitech .quote .content.medium.blue {
  background: url("../assets/images/bg_quote.png");
  background-repeat: no-repeat;
}
.adn-epitech .quote .content.medium.rose {
  background: url("../assets/images/bg_quote_rose.png");
  background-repeat: no-repeat;
}
.adn-epitech .quote .content.large.blue {
  background: url("../assets/images/bg_quote_blue_large.png");
  background-repeat: no-repeat;
}
.adn-epitech .quote .content.large.rose {
  background: url("../assets/images/bg_quote_rose_large.png");
  background-repeat: no-repeat;
}
.adn-epitech .site-header {
  padding: 0;
  margin-bottom: 0px;
  top: 0 !important;
  border-bottom: 0;
}
.adn-epitech .site-header .navigation {
  background: transparent;
}
.adn-epitech .site-footer .widgets #text-5,
.adn-epitech .site-footer .widgets #text-6 {
  float: left !important;
  width: 66% !important;
  position: relative;
  right: inherit;
  margin-right: 0;
  max-width: inherit;
}
.adn-epitech .site-footer .widgets #nav_menu-2,
.adn-epitech .site-footer .widgets #nav_menu-3 {
  float: right !important;
  width: 21.625% !important;
}
@media all and (max-width: 880px) {
  .adn-epitech .site-footer .widgets #text-5,
  .adn-epitech .site-footer .widgets #text-6 {
    float: left !important;
    width: 100% !important;
  }
  .adn-epitech .site-footer .widgets #nav_menu-2,
  .adn-epitech .site-footer .widgets #nav_menu-3 {
    float: left !important;
    width: 100% !important;
  }
  .adn-epitech .site-footer {
    background-size: cover !important;
  }
}
.adn-epitech.home {
  background: url("../assets/images/adn/bg_header_3000x2000.jpg") #fff no-repeat center 0 !important;
}
.adn-epitech.home .nav-header .navigation:after,
.adn-epitech.home .nav-header .navigation .after {
  border: 0 !important;
}
.adn-epitech.home .txt,
.adn-epitech.home .texte {
  color: #0D0D26;
}
.adn-epitech.home .site-header {
  position: relative !important;
}
.adn-epitech.home .site-header.stuck {
  box-shadow: none !important;
  border: 0 !important;
}
@media all and (max-width: 482px) {
  .adn-epitech.home .nav-icon {
    width: 32%;
  }
}
@media all and (max-width: 482px) {
  .adn-epitech.home .navigation {
    transform: scale(0.7) !important;
    top: 22px;
    right: 22px !important;
  }
}
.adn-epitech .header.desktop {
  background: url("../assets/images/adn/bg_header-desktop_galaxy.png") center 0 no-repeat;
  min-height: 386px;
}
.adn-epitech .header.desktop .logo {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  display: block;
  width: 296px;
}
.adn-epitech .header.desktop .logo a {
  display: block;
}
.adn-epitech .header.desktop .logo a img {
  display: block;
}
.adn-epitech .header.desktop #particle-canvas {
  width: 806px;
  height: 386px;
  overflow: hidden;
  position: absolute !important;
  left: 50%;
  margin-left: -403px;
  top: 0;
}
.adn-epitech .header.mobile {
  background: url("../assets/images/adn/bg_header-mobile_galaxy_X2.png") center 0 no-repeat;
  min-height: 378px;
  background-size: contain;
  position: absolute;
  width: 100%;
}
.adn-epitech .header.mobile .logo {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  display: block;
  width: 214px;
  height: 85px;
}
.adn-epitech .header.mobile .logo a {
  display: block;
  margin-top: 62px;
}
.adn-epitech .header.mobile .logo a img {
  display: block;
}
.adn-epitech .header.mobile #particle-canvas-mobile {
  width: 806px;
  height: 386px;
  overflow: hidden;
  position: absolute !important;
  left: 50%;
  margin-left: -403px;
  top: 0;
}
@media all and (max-width: 880px) {
  .adn-epitech .nav-header .languages {
    display: none;
  }
}
@media all and (max-width: 482px) {
  .adn-epitech .header.mobile {
    background-size: cover;
  }
}
.adn-epitech .expertise-epitech {
  padding: 30px 0 0px 0;
}
.adn-epitech .expertise-epitech .title {
  font-weight: 300;
  font-size: 30px;
  line-height: 39px;
  color: #1C1C53;
}
.adn-epitech .expertise-epitech .title strong {
  font-weight: 500;
}
.adn-epitech .expertise-epitech .texte {
  padding: 15px 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
  color: #0D0D26;
}
.adn-epitech .expertise-epitech .slider {
  position: relative;
}
.adn-epitech .expertise-epitech .slider .animate {
  width: 251px;
  height: 251px;
  /* &:nth-child(4) {
              background: url('../assets/images/adn/bg_chiffre-01_desktop.png') 0 0 no-repeat;
              position: absolute;
              top: -20px;
              left: 113px;
          }
          &:nth-child(5) {
              background: url('../assets/images/adn/bg_chiffre-02_desktop.png') 0 0 no-repeat;
              position: absolute;
              top: -156px;
              left: 380px;
          }
          &:nth-child(6) {
              background: url('../assets/images/adn/bg_chiffre-03_desktop.png') 0 0 no-repeat;
              position: absolute;
              top: 143px;
              left: 380px;
          }*/
}
.adn-epitech .expertise-epitech .slider .animate:nth-child(1) {
  background: url("../assets/images/adn/bg_chiffre-01_desktop.png") 0 0 no-repeat;
  position: absolute;
  top: -20px;
  left: 113px;
}
.adn-epitech .expertise-epitech .slider .animate:nth-child(2) {
  background: url("../assets/images/adn/bg_chiffre-02_desktop.png") 0 0 no-repeat;
  position: absolute;
  top: -156px;
  left: 380px;
}
.adn-epitech .expertise-epitech .slider .animate:nth-child(3) {
  background: url("../assets/images/adn/bg_chiffre-03_desktop.png") 0 0 no-repeat;
  position: absolute;
  top: 143px;
  left: 380px;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: inherit;
  font-weight: 300;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background-color: #ffffff;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li {
  position: absolute;
  top: 50%;
  /* pouss├® de la moiti├® de hauteur du r├®f├®rent */
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 27px;
  font-weight: 300;
  color: #1C1C53;
  text-align: center;
  width: 100%;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li sup {
  color: #1C1C53;
  top: -20px;
  position: relative;
  left: 0;
  font-weight: 300;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span {
  color: #1C1C53;
  line-height: 27px;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span.s14 {
  font-size: 14px;
  line-height: 18px;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span.s56 {
  font-size: 56px;
  line-height: 36px;
  font-weight: 900;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span.s24 {
  font-size: 24px;
  line-height: 27px !important;
  font-weight: 600;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span.s50 {
  display: inline;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li span.p {
  line-height: 18px;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li em {
  color: #1C1C53;
  line-height: 27px;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li img {
  display: block;
  margin: 0 auto;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li strong {
  font-weight: 900;
}
.adn-epitech .expertise-epitech .slider .animate .animatenumber ul li.salaire .s56 {
  margin-bottom: 6px;
}
@media all and (max-width: 1380px) {
  .adn-epitech .expertise-epitech .slider .animate:nth-child(1) {
    left: 0px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(2) {
    left: 267px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(3) {
    left: 267px;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .expertise-epitech .slider {
    width: 293px !important;
    margin: 0 auto;
    /* .item {
                position: relative!important;
                top: inherit!important;
                left: inherit!important;
                background-position: center center!important;
                width: 293px;
                height: 293px;
                &:nth-child(1) {
                    background: url('../assets/images/adn/bg_chiffre-01_mobile.png') 0 0 no-repeat;
                    left: inherit;
                }
                &:nth-child(2) {
                    background: url('../assets/images/adn/bg_chiffre-02_mobile.png') 0 0 no-repeat;
                    position: absolute;
                    left: inherit;
                }
                &:nth-child(3) {
                    background: url('../assets/images/adn/bg_chiffre-03_mobile.png') 0 0 no-repeat;
                    left: inherit;
                }
                .animatenumber {
                    width: 222px;
                    height: 222px;
                }
            }*/
  }
  .adn-epitech .expertise-epitech .slider .animate {
    width: 293px;
    height: 293px;
    position: relative !important;
    top: inherit !important;
    left: inherit !important;
    background: none !important;
    margin-bottom: 20px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(1) .item {
    background: url("../assets/images/adn/bg_chiffre-01_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(2) .item {
    background: url("../assets/images/adn/bg_chiffre-02_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(3) .item {
    background: url("../assets/images/adn/bg_chiffre-03_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(4) .item {
    background: url("../assets/images/adn/bg_chiffre-01_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(5) .item {
    background: url("../assets/images/adn/bg_chiffre-02_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate:nth-child(6) .item {
    background: url("../assets/images/adn/bg_chiffre-03_mobile.png") 0 0 no-repeat;
    width: 293px;
    height: 293px;
  }
  .adn-epitech .expertise-epitech .slider .animate .animatenumber {
    width: 222px;
    height: 222px;
  }
  .adn-epitech .expertise-epitech .slider .slick-prev {
    background: url("../assets/images/adn/previous@2x.png") center center no-repeat !important;
    width: 10px;
    height: 20px;
    background-size: 10px 20px !important;
    top: 50%;
    position: absolute;
    transform: translate(0, -50%);
    left: -6px;
    z-index: 1;
    font-size: 0;
  }
  .adn-epitech .expertise-epitech .slider .slick-prev:before {
    content: url(../assets/images/adn/prev-before.svg);
    width: 20px;
    height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
  }
  .adn-epitech .expertise-epitech .slider .slick-next {
    background: url("../assets/images/adn/next@2x.png") center center no-repeat !important;
    width: 10px;
    height: 20px;
    background-size: 10px 20px !important;
    top: 50%;
    position: absolute;
    transform: translate(0%, -50%);
    right: -6px;
    z-index: 1;
    font-size: 0;
  }
  .adn-epitech .expertise-epitech .slider .slick-next:after {
    content: url(../assets/images/adn/next-after.svg);
    width: 20px;
    height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
  }
}
.adn-epitech .expertise-epitech .controls {
  display: inline-block;
  vertical-align: middle;
  margin-top: 292px;
  height: 70px;
  position: relative;
  margin-left: 40px;
}
.adn-epitech .expertise-epitech .controls a {
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.adn-epitech .expertise-epitech .controls .previous {
  position: relative;
  display: inline-block;
  width: 75px;
}
.adn-epitech .expertise-epitech .controls .previous:before {
  content: url(../assets/images/adn/prev-before.svg);
  width: 20px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.adn-epitech .expertise-epitech .controls .previous a {
  left: 30px;
}
.adn-epitech .expertise-epitech .controls .next {
  position: relative;
  display: inline-block;
  width: 75px;
}
.adn-epitech .expertise-epitech .controls .next:after {
  content: url(../assets/images/adn/next-after.svg);
  width: 20px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.adn-epitech .expertise-epitech .controls .next a {
  right: 30px;
}
@media all and (min-width: 1340px) {
  .adn-epitech .expertise-epitech .controls {
    margin-left: 156px;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .expertise-epitech {
    padding-top: 375px;
  }
}
.adn-epitech .diversity-epitech {
  padding-bottom: 93px;
}
.adn-epitech .diversity-epitech .blocdark {
  padding: 0 !important;
  float: none !important;
  overflow: hidden;
  background: url("../assets/images/adn/img_deiversity_desktop.jpg") 0 center no-repeat;
  box-shadow: 0px 0px 30px #1C1C53B4;
  background-color: #191919 !important;
}
.adn-epitech .diversity-epitech .blocdark [class*="col-"] {
  padding: 0;
}
.adn-epitech .diversity-epitech .blocdark .content {
  margin: 0;
  float: none;
}
.adn-epitech .diversity-epitech .blocdark .content.maxwidth {
  max-width: 75%;
}
.adn-epitech .diversity-epitech .blocdark .content .picture {
  display: table-cell;
  vertical-align: middle;
  width: 409px;
  height: 260px;
}
.adn-epitech .diversity-epitech .blocdark .content .picture img {
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 880px) {
  .adn-epitech .diversity-epitech .blocdark .content .picture {
    background: url("../assets/images/adn/deiversity_mobile_X2.jpg") center center no-repeat;
    width: 750px;
    height: 320px;
    background-size: cover;
  }
  .adn-epitech .diversity-epitech .blocdark .content .more {
    position: relative;
    float: none;
  }
}
.adn-epitech .diversity-epitech .blocdark .content .texte {
  padding: 60px 0;
  max-width: 603px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  display: inline-block;
}
.adn-epitech .diversity-epitech .blocdark .content .more {
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 80px;
  width: 28.332px;
  height: 28.332px;
}
.adn-epitech .diversity-epitech .blocdark .content .more:hover {
  transform: rotate(90deg);
}
@media all and (max-width: 880px) {
  .adn-epitech .diversity-epitech .blocdark .content .more {
    float: none;
    top: inherit;
    transform: inherit;
    bottom: 0px;
    right: inherit;
    left: 50%;
    margin-left: -15px;
  }
  .adn-epitech .diversity-epitech .blocdark .content .texte {
    padding: 30px 15px;
  }
}
@media all and (max-width: 980px) {
  .adn-epitech .diversity-epitech .blocdark .content .more {
    right: 20px;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .diversity-epitech .blocdark .content.maxwidth {
    max-width: 100%;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .diversity-epitech .container {
    padding: 0;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .diversity-epitech {
    padding-bottom: 93px;
  }
  .adn-epitech .diversity-epitech .blocdark {
    padding-bottom: 30px !important;
    background-image: none !important;
  }
}
.adn-epitech .links-epitech {
  padding-bottom: 69px;
}
.adn-epitech .links-epitech .title {
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  letter-spacing: 0;
  color: #1C1C53;
  padding-bottom: 23px;
  font-weight: 300;
}
.adn-epitech .links-epitech .ecole {
  position: relative;
  margin-bottom: 29px;
}
.adn-epitech .links-epitech .ecole .content .ecole-news {
  position: absolute;
  top: 20px;
  right: 0px;
  background: #E00629;
  z-index: 1;
  color: #fff;
  list-style: none;
  padding: 10px;
  box-shadow: 0px 5px 10px #1C1C53B4;
}
.adn-epitech .links-epitech .ecole .content .infos {
  position: relative;
  padding: 0 60px 60px 60px;
}
.adn-epitech .links-epitech .ecole .content .infos:after {
  background: url(../assets/images/adn/carte-france@2x.png);
  width: 99px;
  height: 97px;
  position: absolute;
  right: 33px;
  top: 33px;
  background-size: 99px 97px;
  content: '';
}
.adn-epitech .links-epitech .ecole .content .infos .name {
  position: relative;
  font-size: 40px;
  line-height: 53px;
  font-weight: 300;
}
.adn-epitech .links-epitech .ecole .content .infos .sstitle {
  position: relative;
  font-size: 28px;
  line-height: 37px;
  font-weight: 300;
}
.adn-epitech .links-epitech .ecole .content .infos .texte {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: #ffffff;
  min-height: 130px;
}
.adn-epitech .links-epitech .ecole .content .infos .button-txt {
  position: relative;
  color: #fff;
  text-align: right;
  padding-right: 35px;
  cursor: pointer;
}
.adn-epitech .links-epitech .ecole .content .infos .logo {
  position: relative;
  top: -30px;
  width: 83px;
  height: 83px;
  background-size: 83px 83px !important;
}
.adn-epitech .links-epitech .ecole .content .infos .more {
  position: absolute;
  right: -18px;
  width: 28.332px;
  height: 28.332px;
}
.adn-epitech .links-epitech .ecole .content .infos .more:hover {
  transform: rotate(90deg);
}
.adn-epitech .links-epitech .ecole .content .infos .overlay-bloc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1c53 0% 0% no-repeat;
  opacity: 0.93;
}
@media all and (min-width: 860px) and (max-width: 1080px) {
  .adn-epitech .links-epitech .ecole .content .infos .name {
    font-size: 30px;
    line-height: 39px;
    margin-top: 0;
  }
  .adn-epitech .links-epitech .ecole .content .infos .title {
    font-size: 34px !important;
    line-height: 36px !important;
  }
  .adn-epitech .links-epitech .ecole .content .infos .texte {
    font-size: 14px;
    line-height: 24px;
    min-height: 144px;
  }
  .adn-epitech .links-epitech .ecole .content .infos .sstitle {
    font-size: 25px;
    line-height: 33px;
  }
}
@media all and (max-width: 880px) {
  .adn-epitech .links-epitech .ecole .content .infos {
    padding: 0 25px 60px 25px;
  }
  .adn-epitech .links-epitech .ecole .content .infos .name {
    font-size: 30px;
    line-height: 39px;
    margin-top: 0;
  }
  .adn-epitech .links-epitech .ecole .content .infos .title {
    font-size: 27px !important;
    line-height: 35px !important;
  }
  .adn-epitech .links-epitech .ecole .content .infos .sstitle {
    font-size: 22px;
    line-height: 29px;
  }
}
@media all and (max-width: 482px) {
  .adn-epitech .links-epitech .ecole .content .infos:after {
    width: 69px;
    height: 67px;
    background-size: 69px 67px;
    content: '';
  }
}
.adn-epitech .links-epitech .ecole.epitech-it {
  cursor: pointer;
  overflow: hidden;
}
.adn-epitech .links-epitech .ecole.epitech-it .infos {
  background: url("../assets/images/adn/bg_it_parallax.jpg") center bottom no-repeat;
  background-size: cover;
}
.adn-epitech .links-epitech .ecole.epitech-it .infos .logo {
  background: url("../assets/images/adn/logo-epitech-it@2x.png") center bottom no-repeat;
}
.adn-epitech .links-epitech .ecole.epitech-it .infos .name {
  color: #126BA5;
}
.adn-epitech .links-epitech .ecole.epitech-it .infos .sstitle {
  color: #126BA5;
}
.adn-epitech .links-epitech .ecole.epitech-digital {
  cursor: pointer;
  overflow: hidden;
}
.adn-epitech .links-epitech .ecole.epitech-digital .infos {
  background: url("../assets/images/adn/bg_digital_parallax.jpg") center bottom no-repeat;
  background-size: cover;
}
.adn-epitech .links-epitech .ecole.epitech-digital .infos .logo {
  background: url("../assets/images/adn/logo-epitech-digital@2x.png") center bottom no-repeat;
}
.adn-epitech .links-epitech .ecole.epitech-digital .infos .name {
  color: #E00629;
}
.adn-epitech .links-epitech .ecole.epitech-digital .infos .sstitle {
  color: #E00629;
}
@media all and (max-width: 880px) {
  .adn-epitech .links-epitech .title {
    font-size: 27px;
  }
}
.adn-epitech .test .title {
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  letter-spacing: 0;
  color: #1C1C53;
  padding-bottom: 23px;
  font-weight: 300;
}
.adn-epitech .test .texte {
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: #1C1C53;
  max-width: 850px;
  width: 100%;
  margin: 0 auto !important;
  display: block;
}
.adn-epitech .test .eye {
  background: url("../assets/images/adn/eye-v2.png") center -20px no-repeat;
  width: 100%;
  min-width: 327px;
  height: 294px;
}
.adn-epitech .test .eye:before {
  content: url(../assets/images/adn/test_before@2x.png);
  width: 134px;
  height: 61px;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(150%, 56%);
}
.adn-epitech .test .eye:after {
  content: url(../assets/images/adn/test_after@2x.png);
  width: 134px;
  height: 61px;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(-150%, 54%);
}
.adn-epitech .test .eye a {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  position: relative;
  display: block;
  margin: 0px auto;
  width: 99px;
  height: 99px;
  top: 74px;
  text-align: center;
}
.adn-epitech .test .eye a span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}
@media all and (max-width: 880px) {
  .adn-epitech .test .eye {
    background-size: contain;
  }
  .adn-epitech .test .eye:before {
    content: '';
  }
  .adn-epitech .test .eye:after {
    content: '';
  }
  .adn-epitech .test .title {
    font-size: 27px;
    line-height: 35px;
  }
}
.adn-epitech .europe {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-bottom: 110px;
}
.adn-epitech .europe .title {
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  letter-spacing: 0;
  color: #1C1C53;
  padding-bottom: 23px;
  font-weight: 300;
}
.adn-epitech .europe img {
  display: inline-block;
  vertical-align: middle;
}
.adn-epitech .europe figcaption {
  display: inline-block;
  vertical-align: middle;
  font-size: 32px;
  line-height: 43px;
  font-weight: 300;
  color: #1C1C53;
  margin-left: 10px;
}
.adn-epitech .europe .texte {
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: #1C1C53;
  max-width: 850px;
  width: 100%;
  margin: 0 auto !important;
  display: block;
  text-align: left;
}
.adn-epitech .europe .more {
  display: block;
  margin: 40px auto;
  width: 28.332px;
  height: 28.332px;
}
.adn-epitech .europe .more:hover {
  transform: rotate(90deg);
}
@media all and (max-width: 880px) {
  .adn-epitech .europe .title {
    font-size: 27px;
    line-height: 35px;
  }
  .adn-epitech .europe .texte {
    text-align: center;
  }
}
.adn-epitech .map {
  position: relative;
  padding: 60px;
  background: url("../assets/images/adn/Groupe_2101@2x.jpg") center top no-repeat !important;
  background-attachment: scroll;
  background-size: auto;
  height: 940px;
}
.adn-epitech .map img[usemap] {
  max-width: 100%;
  height: auto;
}
.adn-epitech .map img {
  height: auto;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-44%) translateX(-50%) scale(1);
}
.adn-epitech .map .title {
  text-align: center;
  font-size: 32px;
  line-height: 43px;
  letter-spacing: 0;
  color: #ffffff !important;
  padding-bottom: 23px;
  font-weight: 300;
  margin: 0;
}
.adn-epitech .map .overlay-map {
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0% 0%;
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
}
@media all and (max-width: 880px) {
  .adn-epitech .map {
    padding: 20px;
    height: 772px;
  }
  .adn-epitech .map .title {
    font-size: 22px;
    line-height: 29px;
  }
  .adn-epitech .map .more {
    float: right;
  }
  .adn-epitech .map .overlay-map {
    width: 1500px;
  }
}
@media (orientation: landscape) and (max-device-width: 880px) {
  .adn-epitech .map {
    height: 840px;
  }
}
@media all and (max-width: 482px) {
  .adn-epitech .map {
    height: 772px;
    overflow-x: auto;
  }
  .adn-epitech .map .title {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 89%;
  }
  .adn-epitech .map img {
    left: 0;
    transform: translateY(-45%) translateX(50%) scale(4) !important;
  }
}
@media (orientation: landscape) and (max-device-width: 482px) {
  .adn-epitech .map {
    height: 840px;
  }
}

@media all and (max-width: 880px) {
  .adn-epitech {
    background-attachment: fixed !important;
  }
}
@media all and (max-width: 482px) {
  .adn-epitech.page.home .navigation {
    transform: scale(0.7) !important;
    right: 22px !important;
  }

  .adn-epitech .links-epitech .ecole .content .infos .more {
    right: -6px;
  }
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  box-sizing: border-box;
  min-height: 100%;
}

body * {
  font-family: 'Roboto', sans-serif;
  outline: none;
}

/*p,
ul,
ol,
em {
    //margin: 0;
}*/
ul,
ol {
  padding: 0;
  margin: 0;
}

/**
*
* STRUCTURE 
*
**/
#wrapper {
  width: 100%;
  min-height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 5px !important;
}

p {
  margin: 5px 0 15px !important;
}

#footer-ecoles p {
  margin: 0 0 0 !important;
}

#post-7826 p,
#post-7826 h3 {
  margin: 25px 0 !important;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 !important;
}

.header-bg {
  position: relative;
  z-index: 1;
  background: url("../assets/images/bg_header.png") no-repeat center 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 328px;
  padding: 0;
  width: 100%;
  /* COMMON BUTTON ROLLOVER */
}
.header-bg .content {
  float: right;
}
.header-bg .content ul {
  position: absolute;
  top: 125px;
  right: 88px;
}
.header-bg .content ul li {
  margin: 5px 0;
}
.header-bg .content ul li a {
  min-width: 238px;
}
.header-bg .btn {
  vertical-align: middle;
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  outline: 0;
  padding: 8px 36px;
  -webkit-transition: all .35s;
  transition: all .35s;
  text-transform: uppercase;
}
.header-bg .btn > span {
  display: block;
}
.header-bg .btn:hover {
  color: inherit;
}
.header-bg .btn-primary {
  padding: 0;
  border: 1px solid #fff;
  background-color: transparent;
  overflow: hidden;
  color: #fff;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.header-bg .btn-primary::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.header-bg .btn-primary::after,
.header-bg .btn-primary > span {
  padding: 8px 36px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  color: #fff;
}
.header-bg .btn-primary:hover {
  border-color: #fff;
  background-color: rgba(63, 81, 181, 0.1);
}
.header-bg .btn-primary:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding: 8px 36px;
}
.header-bg .btn-primary:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.header-bg .blue {
  padding: 0;
  overflow: hidden;
  border: 1px solid #0072bc;
  background-color: transparent;
  color: #0072bc;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.header-bg .blue > span {
  color: #0072bc;
}
.header-bg .blue:hover {
  border: 1px solid #0072bc;
  background-color: rgba(63, 81, 181, 0.1);
}
.header-bg .blue::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  color: #0072bc;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.header-bg .blue::after,
.header-bg .blue > span {
  padding: 6px 25px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.header-bg .blue:hover {
  background-color: rgba(63, 81, 181, 0.1);
}
.header-bg .blue:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding: 6px 25px;
}
.header-bg .blue:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.header-bg .blue-secondary {
  background: #1c7bbc;
  background: linear-gradient(90deg, #1c7bbc 0%, #127bc6 45%, #2990dc 100%);
}
.header-bg .btn-secondary {
  background: #1a5178;
  background: linear-gradient(90deg, #1a5178 0%, #0c4b7a 45%, #1c649b 100%);
}
.header-bg a.blue-secondary:hover {
  background: #1c7bbc;
  background: linear-gradient(90deg, #2990dc 0%, #127bc6 45%, #1c7bbc 100%);
  color: #fff;
}
.header-bg a.btn-secondary:hover {
  background: #1a5178;
  background: linear-gradient(90deg, #1c649b 0%, #0c4b7a 45%, #1a5178 100%);
  color: #fff;
}

.site-footer .container {
  box-sizing: border-box;
}

/* override DIV ELEMENTOR */
.elementor-posts-container .elementor-post__thumbnail img {
  width: auto !important;
  max-height: inherit !important;
  max-width: inherit !important;
}

.elementor-posts-container .elementor-post__thumbnail {
  display: inline-block !important;
  text-align: center !important;
}

.elementor-posts-container .elementor-post__thumbnail {
  overflow: visible !important;
}

.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail.elementor-fit-height img {
  height: auto;
}

#section4 .elementor-shortcode .owl-item:nth-child(5) .elementor-post__thumbnail.elementor-fit-height img {
  height: 220%;
}

#section4 .elementor-shortcode .owl-item:nth-child(6) .elementor-post__thumbnail.elementor-fit-height img {
  height: 150%;
}

#section4 .elementor-shortcode .elementor-posts-container .elementor-post__text > h5 {
  min-height: 80px;
}

.elementor-10815 .elementor-element.elementor-element-fa6aba7 .elementor-post__thumbnail__link {
  width: inherit !important;
}

.elementor-widget-posts .elementor-post__excerpt p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7333;
}

/* NEWS HP */
.elementor-post__title a {
  font-weight: 300 !important;
}

.elementor-posts__hover-gradient .elementor-post__card .elementor-post__thumbnail__link::after {
  bottom: 7px !important;
}

.elementor-10952 .elementor-element.elementor-element-4190e73 .elementor-posts-container .elementor-post__thumbnail {
  padding-bottom: 0 !important;
  height: 250px;
  width: 100%;
}
.elementor-10952 .elementor-element.elementor-element-4190e73 .elementor-posts-container .elementor-post__thumbnail img {
  height: 100%;
}

/* FEATURES */
.elementor-10815 .elementor-element.elementor-element-fa6aba7 .elementor-posts-container .elementor-post__thumbnail {
  padding-bottom: 0 !important;
}

.elementor-widget-posts .elementor-post__read-more {
  color: #fff !important;
}

.elementor-7879 .elementor-element.elementor-element-fd53f97 .visuels .g-wide--1 {
  max-width: 100%;
}
.elementor-7879 .elementor-element.elementor-element-fd53f97 .visuels .g-wide--1 .img {
  max-width: 100%;
}

/******/
.page-layout-full-width-no-sidebar .elementor-section .elementor-container,
.page-layout-full-width-no-sidebar .elementor-row,
.page-layout-full-width-no-sidebar .elementor-column-wrap {
  display: block !important;
  max-width: 100% !important;
}
.page-layout-full-width-no-sidebar .search-wrapper .container {
  text-align: left !important;
}
.page-layout-full-width-no-sidebar .elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}
.page-layout-full-width-no-sidebar .elementor .container {
  padding: 0;
}

body:not(.single) .entry-content p:last-of-type,
body:not(.single) .entry-content p:only-of-type,
body:not(.single) .entry-content p {
  text-align: left;
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
  top: 0;
  left: 50%;
}

.styleguide__inverted-block {
  background: #343434;
  padding: 13px;
  text-align: center;
}

.map .elementor-text-editor {
  height: 960px;
}

@media (max-width: 1360px) {
  .map .elementor-text-editor {
    height: 720px !important;
  }
}
@media (max-width: 1160px) {
  .map .elementor-text-editor {
    height: 600px !important;
  }
}
@media (max-width: 880px) {
  .map .elementor-text-editor {
    height: 660px !important;
  }

  #pgc-10593-0-0 > .panel-cell-style {
    padding: 84px 20px 0 !important;
  }

  .home #pl-10593 .so-panel,
  .header-txt .content p {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  .map img {
    transform: translateY(-23%) translateX(-35%) scale(2.3);
  }

  .popin {
    top: 50% !important;
    left: 50% !important;
    transform: translate(76%, -50%);
  }
}
@media (max-width: 420px) {
  .map .elementor-text-editor {
    height: 460px !important;
  }
}
.page-id-7820 .elementor-section {
  overflow: hidden;
}

.page-id-7820 .elementor-section:nth-child(1) {
  overflow: inherit;
}

@media all and (min-width: 1380px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
  }
}
@media all and (max-width: 1340px) {
  .page-layout-full-width-no-sidebar .elementor .container {
    padding: inherit;
    padding-left: 5%;
    padding-right: 5%;
  }
  .page-layout-full-width-no-sidebar .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
  }
}
.stick .site-header-inner {
  background: #fff !important;
  height: 110px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  display: block !important;
}

.stick .navigation ul .children li a,
.stick .navigation ul .sub-menu li a {
  color: #fff !important;
}

.stick .site-header-inner {
  transition: 0.2s;
}

.stick .site-header-inner .container {
  height: 110px;
  position: relative;
  box-sizing: content-box;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1162px !important;
}
@media only screen and (min-width: 880px) {
  .stick .site-header-inner .container {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 1162px;
  }
}
@media only screen and (min-width: 1380px) {
  .stick .site-header-inner .container {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1340px;
  }
}

.stick .site-header-inner .container:before {
  width: 289px;
  height: 114px;
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  content: '';
  display: none;
}

.stick .site-header-inner .container .logo-epitech {
  width: 289px;
  height: 114px;
  position: relative;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.2s;
}

.stick .site-header-inner .container .backhome {
  width: 228px;
  height: 90px;
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

@media all and (max-width: 880px) {
  .stick .site-header-inner .container .backhome {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
.stick .mobile.backhome {
  width: 41px;
  height: 37px;
  position: absolute;
  z-index: 2;
  left: calc(98px - 5rem);
  top: 44px;
  display: block;
}

.stick .navigation .search-toggle .open svg path {
  fill: #0072bc !important;
}

.stick .menu-campus-container {
  display: block;
  background: #343434;
  max-width: 1240px;
  margin-left: -620px;
}
.stick .menu-campus-container:before {
  left: calc(163px - 9rem);
  top: 44px;
}
.stick .menu-campus-container .my-campus-menu li:after {
  color: #fff;
}
.stick .menu-campus-container .my-campus-menu li a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
}

.page .stuck .menu-campus-container:before,
.single .stuck .menu-campus-container:before,
.archive .stuck .menu-campus-container:before {
  left: calc(163px - 9rem);
  top: 44px;
}
.page .stuck .menu-campus-container .my-campus-menu li:after,
.single .stuck .menu-campus-container .my-campus-menu li:after,
.archive .stuck .menu-campus-container .my-campus-menu li:after {
  color: #fff;
}
.page .stuck .menu-campus-container .my-campus-menu li a,
.single .stuck .menu-campus-container .my-campus-menu li a,
.archive .stuck .menu-campus-container .my-campus-menu li a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
}
.page .stuck .site-header-inner,
.single .stuck .site-header-inner,
.archive .stuck .site-header-inner {
  height: 98px;
}
.page .stuck .navigation,
.single .stuck .navigation,
.archive .stuck .navigation {
  padding-top: 44px;
}
.page .stuck .navigation:before,
.single .stuck .navigation:before,
.archive .stuck .navigation:before {
  top: 44px;
}

.home .stuck .site-header-inner {
  height: inherit;
}
.home .stuck .navigation {
  padding-top: inherit;
}
.home .stuck .navigation:before {
  top: inherit;
}

.stick .my-campus-menu li {
  padding: 0 10px 4px 10px;
}

.stick .menu-campus-international-container ul {
  list-style: none;
  position: absolute;
  top: 16px;
  right: 26px;
  display: none;
}

.stick .menu-campus-international-container ul a {
  color: #0072bc !important;
}

.stick .navigation .search-toggle {
  padding: 0;
  position: relative;
  top: -15px;
  right: -39px;
}

.stick .navigation .search-toggle .open {
  top: -10px !important;
  right: 40px !important;
}

.stick #mobile-menu-button {
  top: 15px !important;
}

.stick #mobile-navigation {
  top: inherit !important;
}

.page .stuck .navigation,
.single .stuck .navigation,
.archive .stuck .navigation {
  padding-left: 76px;
}
.page .stuck .my-campus-menu li,
.single .stuck .my-campus-menu li,
.archive .stuck .my-campus-menu li {
  padding: 0 10px 4px 10px;
}
.page .stuck .menu-campus-international-container ul,
.single .stuck .menu-campus-international-container ul,
.archive .stuck .menu-campus-international-container ul {
  list-style: none;
  position: absolute;
  top: 16px;
  right: 26px;
}
.page .stuck .menu-campus-international-container ul a,
.single .stuck .menu-campus-international-container ul a,
.archive .stuck .menu-campus-international-container ul a {
  color: #0072bc !important;
}
.page .stuck .navigation .search-toggle,
.single .stuck .navigation .search-toggle,
.archive .stuck .navigation .search-toggle {
  padding: 0;
  position: relative;
  top: -15px;
  right: -39px;
}
.page .stuck .navigation .search-toggle .open,
.single .stuck .navigation .search-toggle .open,
.archive .stuck .navigation .search-toggle .open {
  top: 0px !important;
  right: 40px !important;
}
.page .stuck #mobile-menu-button,
.single .stuck #mobile-menu-button,
.archive .stuck #mobile-menu-button {
  top: 15px !important;
}
.page .stuck #mobile-navigation,
.single .stuck #mobile-navigation,
.archive .stuck #mobile-navigation {
  top: 11px !important;
}

@media (max-width: 1280px) {
  .stick .menu-campus-international-container ul {
    right: 10px;
  }

  .page .stuck .navigation .search-toggle .open,
  .single .stuck .navigation .search-toggle .open,
  .archive .stuck .navigation .search-toggle .open {
    top: -20px !important;
    right: 81px !important;
  }
  .page .stuck #mobile-navigation,
  .single .stuck #mobile-navigation,
  .archive .stuck #mobile-navigation {
    top: 60px !important;
    text-align: left;
  }

  .stick .menu-campus-container {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    margin-left: 0;
    text-align: center;
  }

  .stick .navigation .search-toggle {
    margin-left: 37px !important;
    display: inline-block !important;
    width: unset !important;
  }

  .stick .navigation .search-toggle .open {
    top: 17px !important;
    right: 90px !important;
  }

  .stick .menu-campus-container {
    overflow-x: scroll !important;
    height: 40px;
    z-index: 1;
  }

  .stick .menu-campus-container ul {
    width: 1240px;
    height: 100%;
    z-index: 1;
  }

  .stick .navigation:before {
    top: 48px !important;
  }
}
@media (max-width: 1340px) {
  /* .page .stick .navigation {
      height: 60px;
      background: #FFF !important;
      position: absolute;
      padding-top: 0;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      top: 20px;
  }*/
}
@media (max-width: 1074px) {
  .stick .navigation .search-toggle {
    top: -18px;
    right: 89px;
    left: inherit;
  }

  .stick .navigation::before {
    left: 50%;
    top: 48px !important;
    margin-left: -20px;
  }

  .stick .mobile.backhome {
    display: block;
    left: 50%;
    top: 45px;
    margin-left: -20px;
  }

  .stick #mobile-navigation {
    top: 98px !important;
    text-align: left;
  }

  .stick .navigation {
    display: block !important;
  }

  .stick #mobile-menu-button {
    left: 7px;
    top: 54px !important;
    width: 30px;
    position: absolute;
    transition: 0ms;
    display: block !important;
  }
}
@media all and (max-width: 880px) {
  .stick .site-header-inner,
  .stick .site-header-inner .container {
    height: 98px;
  }

  .stick .site-header-inner .container:before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .stick .navigation {
    display: block;
  }

  .stick .menu-campus-international-container {
    display: block;
  }

  .stick .navigation .search-toggle .open {
    border: 0;
  }

  .stick .navigation .search-toggle .open svg path {
    fill: #ffffff !important;
  }

  .stick #mobile-menu-button svg path {
    fill: #ffffff !important;
  }

  .stick .navigation {
    top: 5px !important;
    right: 2px !important;
  }

  .stick .navigation .search-toggle .open {
    background: none;
  }

  .stick #mobile-navigation {
    top: 98px !important;
    background: none !important;
  }

  .header-bg {
    height: 200px;
  }
  .header-bg ul {
    display: none;
  }

  .site-header .site-branding {
    display: none;
  }

  .stick #mobile-navigation ul li a {
    background: rgba(19, 19, 19, 0.9) !important;
  }

  .stick #mobile-navigation ul ul li a {
    background: rgba(19, 19, 19, 0.8) !important;
  }

  .stick #mobile-navigation ul li {
    background: transparent !important;
  }

  .stick #mobile-navigation ul li a:hover {
    background: rgba(19, 19, 19, 0.85) !important;
  }

  .stick #mobile-navigation ul ul li a:hover {
    background: rgba(19, 19, 19, 0.75) !important;
  }
}
a.privacy-policy-link {
    color: #1C1C53 !important;
  padding-left:5px;
}
a.privacy-policy-link:hover {
    text-decoration: underline;
}