@charset "UTF-8";
/**
 * Import Vendor for components dependencies
 *
 */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6; }

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7; }

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in; }

.parsley-errors-list.filled {
  opacity: 1; }

/* ========================= */
/* PARSLEY Extends */
/* ========================= */
.parsley-error {
  background-color: #FFCDD2;
  border: 1px solid #F44336; }

.parsley-errors-list {
  margin-top: -5px;
  list-style: none;
  font-size: 80%;
  color: #F44336;
  /*li{
    border-left: 1px solid #222;
    padding-left: 2%;
    margin-left: 5%;
  }*/ }

.alert {
  border: 1px solid #ccc;
  padding: 10px;
  color: #ccc;
  margin-bottom: 10px; }
  .alert-success {
    border-color: #4CAF50;
    background-color: #E8F5E9;
    color: #4CAF50; }

body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #002643;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #333;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -ms-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  background-color: #0092FF;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #0092FF; }

.sweet-alert button:active {
  background-color: #0092FF; }

.sweet-alert button.cancel {
  background-color: #C1C1C1; }

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9; }

.sweet-alert button.cancel:active {
  background-color: #a8a8a8; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #FD9500; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #FD9500;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
 * Animations
 */

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s; }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in; }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  animation: animateErrorIcon 0.5s; }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  animation: animateXMark 0.5s; }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate; }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate; }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */

@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    transform: translateY(0); }
  80% {
    opacity: 1;
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    transform: translateY(145%); } }

/*! Flickity v1.2.1
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1; }

/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity .3s ease; }

.lity.lity-opened {
  opacity: 1; }

.lity.lity-closed {
  opacity: 0; }

.lity * {
  box-sizing: border-box; }

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important; }

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial,Helvetica,sans-serif;
  opacity: 0;
  transition: opacity .3s ease; }

.lity-loading .lity-loader {
  opacity: 1; }

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important; }

.lity-content {
  z-index: 9993;
  width: 100%;
  -ms-transform: scale(1);
  transform: scale(1);
  transition: transform .3s ease; }

.lity-loading .lity-content, .lity-closed .lity-content {
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none; }

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0; }

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none; }

.lity-close:active {
  top: 1px; }

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0; }

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px; }

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch; }

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

.lity-hide {
  display: none; }

/**
 * Import website Framwork base
 *
 *    Settings
 *    --------
 *      Colors pallet and Fonts
 *
 *    Mixins
 *    --------
 *      Usefull CSS functions to help develop
 *
 */
/*
 *    Colors
 *    ------
 */
/*
 *    Fonts
 *    -----
 */
/*
 *    Breakpoints
 *    -----------
 */
/**
 *  CLEARFIX AN ELEMENT
 *  ==============================================
 *
 * Usage :
 *
 * .container-with-floated-children {
 *     @extend %clearfix;
 * }
 *
 */
.init-grid .row, .site-btn-center, .main-form .form-row, .site-hr-container, .main-nav, .bloc-informations, .bloc-arguments-2 .listWrap, .publication-wrap .publication-data, .contact2 .adresses, .contact2 .foot-note, .main-footer {
  *zoom: 1; }
  .init-grid .row:before, .site-btn-center:before, .main-form .form-row:before, .site-hr-container:before, .main-nav:before, .bloc-informations:before, .bloc-arguments-2 .listWrap:before, .publication-wrap .publication-data:before, .contact2 .adresses:before, .contact2 .foot-note:before, .main-footer:before, .init-grid .row:after, .site-btn-center:after, .main-form .form-row:after, .site-hr-container:after, .main-nav:after, .bloc-informations:after, .bloc-arguments-2 .listWrap:after, .publication-wrap .publication-data:after, .contact2 .adresses:after, .contact2 .foot-note:after, .main-footer:after {
    content: " ";
    display: table; }
  .init-grid .row:after, .site-btn-center:after, .main-form .form-row:after, .site-hr-container:after, .main-nav:after, .bloc-informations:after, .bloc-arguments-2 .listWrap:after, .publication-wrap .publication-data:after, .contact2 .adresses:after, .contact2 .foot-note:after, .main-footer:after {
    clear: both; }

/**
 * Reset
 *
 */
/**
*
* Global
*
**/
*,
*::before,
*::after {
  box-sizing: border-box; }

html,
body,
button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

body {
  font-family: "Asap", "Roboto", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  line-height: 1.6250em;
  /* 26px */
  font-weight: 400;
  color: #222; }

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0; }

/* ==========================================================================
 Outdated Browser prompt
 ========================================================================== */
.outdatedbrowser {
  z-index: 999999;
  padding: 20px 35px;
  background: white;
  color: #444;
  font-size: 19px;
  line-height: 29px;
  margin: 0;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  width: 100%;
  height: auto; }

.lt-ie9 .outdatedbrowser {
  position: relative; }

/* ==========================================================================
 Browser Selection color
 ========================================================================== */
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

a {
  color: inherit;
  text-decoration: none; }

/* j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #333; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/**
 * Small Components
 *
 */
.init-grid {
  position: relative; }
  .init-grid .row {
    position: relative; }
    .init-grid .row.max-width {
      max-width: 1400px;
      margin: 0 auto; }
  .init-grid .col {
    position: relative;
    width: 100%; }
    .init-grid .col.half {
      float: left;
      width: 50%; }
    .init-grid .col.one-third {
      float: left;
      width: 33.3333%; }
      .init-grid .col.one-third.with-margin {
        width: 32%; }
  @media all and (max-width: 1024px) {
    .init-grid .col.half {
      float: none;
      width: 100%; } }
  @media all and (max-width: 767px) {
    .init-grid .col.one-third {
      float: none;
      width: 100%;
      padding-bottom: 25px; }
      .init-grid .col.one-third.with-margin {
        width: 100%;
        max-width: 445px;
        margin-left: auto;
        margin-right: auto; }
      .init-grid .col.one-third .main-text {
        max-width: 300px;
        margin: 0 auto; }
    .init-grid .col.small-half {
      float: left;
      width: 50%; } }

.site-btn-center {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 2vw;
  padding-bottom: 4vw; }

.site-btn {
  display: inline-block;
  margin: 0;
  padding: 20px 35px;
  border: 2px solid #8798FF;
  background: #8798FF;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: "Asap", "Roboto", sans-serif;
  transition: all 0.2s ease-in-out; }
  .site-btn:hover {
    background: transparent;
    border-color: #8798FF;
    color: #8798FF; }
  .site-btn.orange {
    background: #DD5C35;
    border-color: #DD5C35;
    color: #fff; }
    .site-btn.orange:hover {
      background: #fff;
      color: #DD5C35; }
  .site-btn.white {
    background-color: #fff;
    border-color: #fff;
    color: #414042; }
    .site-btn.white:hover {
      background: transparent;
      color: #fff; }
  .site-btn.outlined {
    background: transparent;
    border-color: #8798FF;
    color: #8798FF; }
    .site-btn.outlined:hover {
      background: #8798FF;
      border-color: #8798FF;
      color: #fff; }
    .site-btn.outlined.orange {
      background: transparent;
      border-color: #DD5C35;
      color: #DD5C35; }
      .site-btn.outlined.orange:hover {
        background: #DD5C35;
        border-color: #DD5C35;
        color: #fff; }
  .site-btn.contrast:hover {
    border-color: #8798FF; }
  @media all and (max-width: 767px) {
    .site-btn {
      padding: 13px 20px;
      font-size: 14px; } }
  @media all and (max-width: 599px) {
    .site-btn {
      padding: 13px 15px;
      font-size: 13px; } }

.main-form {
  padding: 25px 0 0 0; }
  .main-form .form-field,
  .main-form .form-input {
    position: relative;
    width: 100%; }
    .main-form .form-field.half,
    .main-form .form-input.half {
      float: left;
      width: 49%;
      margin-right: 2%; }
    .main-form .form-field.one-third,
    .main-form .form-input.one-third {
      float: left;
      width: 32%;
      margin-right: 2%; }
    .main-form .form-field.one-forth,
    .main-form .form-input.one-forth {
      float: left;
      width: 24%;
      margin-right: 2%; }
      @media only screen and (max-width: 365px) {
        .main-form .form-field.one-forth,
        .main-form .form-input.one-forth {
          width: 63%;
          margin-right: 2%; }
          .main-form .form-field.one-forth:last-child,
          .main-form .form-input.one-forth:last-child {
            width: 35%;
            margin-right: 0; } }
    .main-form .form-field.three-forth,
    .main-form .form-input.three-forth {
      float: left;
      width: 74%;
      margin-right: 2%; }
      @media only screen and (max-width: 365px) {
        .main-form .form-field.three-forth,
        .main-form .form-input.three-forth {
          width: 63%;
          margin-right: 2%; } }
    .main-form .form-field:last-child, .main-form .form-field.last,
    .main-form .form-input:last-child,
    .main-form .form-input.last {
      margin-right: 0; }
  .main-form label {
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #D1D2D4;
    font-weight: 400;
    font-size: 16px; }
    .main-form label span {
      display: block; }
  .main-form input,
  .main-form select,
  .main-form textarea {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ABB0B7;
    border-radius: 3px;
    color: #3a3a3a;
    font-weight: 400;
    outline: none; }
  .main-form textarea {
    height: 175px;
    min-height: 175px;
    max-width: 100%;
    min-width: 100%; }
  .main-form input[type="submit"],
  .main-form button {
    outline: none; }
  .main-form .payment-errors {
    color: #e74c3c; }
  .main-form input.parsley-success,
  .main-form select.parsley-success,
  .main-form textarea.parsley-success {
    color: #3a3a3a; }
  .main-form input.parsley-error,
  .main-form select.parsley-error,
  .main-form textarea.parsley-error {
    color: #DA620C; }
  .main-form .checkbox {
    line-height: 25px;
    vertical-align: top; }
    .main-form .checkbox label span,
    .main-form .checkbox input {
      display: inline-block;
      width: inherit;
      height: 25px;
      margin-right: 0.5%;
      line-height: 25px;
      vertical-align: top; }
  .main-form .has-error input,
  .main-form .has-error select {
    background: #e74c3c; }
  .main-form .parsley-errors-list {
    position: absolute;
    right: 0;
    bottom: -7px;
    font-size: 12px;
    font-weight: 500;
    color: #DA620C; }

.title1 {
  font-family: "Asap", "Roboto", sans-serif;
  text-transform: uppercase;
  color: #DD5C35;
  margin: 0;
  padding: 0 0 35px 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 300; }

.title2 {
  font-family: "Asap", "Roboto", sans-serif;
  text-transform: uppercase;
  color: #DD5C35;
  margin: 0;
  padding: 0 0 25px 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 600; }

.title3 {
  position: relative;
  font-family: "Asap", "Roboto", sans-serif;
  color: #414042;
  margin: 0;
  width: 100%;
  clear: both;
  padding: 0 0 3vw 0;
  font-size: 24px;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase; }

.title4 {
  font-family: "Asap", "Roboto", sans-serif;
  color: #414042;
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase; }

.title1 i, .title2 i, .title3 i, .title4 i {
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  font-size: 255%;
  color: #D1D2D4; }

.title1 strong, .title2 strong, .title3 strong, .title4 strong {
  font-family: "Asap", "Roboto", sans-serif; }

@media all and (max-width: 969px) {
  .title1 i, .title2 i, .title3 i, .title4 i {
    margin-top: 0; } }

.main-text {
  color: #D1D2D4;
  margin: 0;
  padding: 0 0 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px; }

.main-list {
  width: 100%;
  color: #414042;
  margin: 0;
  padding: 25px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  list-style-type: none; }
  .main-list li {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    padding-left: 30px;
    line-height: 1; }
    .main-list li i {
      position: absolute;
      top: 50%;
      left: 0;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      color: #8798FF;
      font-size: 135%; }

a {
  cursor: pointer; }

.site-hr {
  display: inline-block;
  width: 55px;
  height: 5px;
  background: #D1D2D4;
  margin: 0 auto 25px auto;
  padding: 0;
  border: none; }

/**
 * Import Component's core modules
 *
 */
.site-content {
  padding-top: 85px; }
  @media all and (max-width: 790px) {
    .site-content {
      padding-top: 65px; } }

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 85px;
  padding: 20px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease-in-out; }
  @media all and (max-width: 790px) {
    .main-nav {
      height: 65px; } }
  .main-nav .wrap {
    position: relative;
    width: 100%;
    height: 100%; }
    .main-nav .wrap :first-child, .main-nav .wrap :nth-child(2) {
      z-index: 1; }
  .main-nav .logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    height: 45px;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
    @media all and (max-width: 1024px) {
      .main-nav .logo {
        height: 35px; } }
    @media all and (max-width: 790px) {
      .main-nav .logo {
        height: 30px; } }
    .main-nav .logo.mobile {
      display: none; }
  .main-nav .right {
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
    .main-nav .right.mobile {
      display: none; }
    @media all and (min-width: 791px) {
      .main-nav .right.links {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-align: center;
        align-items: center; }
        .main-nav .right.links a {
          padding: 0 15px; } }
    .main-nav .right a {
      display: inline-block;
      padding: 5px 15px;
      color: #414042;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 700; }
      @media all and (max-width: 1024px) {
        .main-nav .right a {
          padding: 5px 5px; } }
      .main-nav .right a .twitter {
        color: #8798FF;
        font-size: 36px; }
        .main-nav .right a .twitter:hover {
          color: #DD5C35; }
      .main-nav .right a.active {
        color: #DD5C35; }
      .main-nav .right a:hover {
        color: #DD5C35; }
  .main-nav .burger {
    position: relative;
    width: 37px;
    height: 50px;
    cursor: pointer;
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
    .main-nav .burger:hover .lines:before {
      top: -12px; }
    .main-nav .burger:hover .lines:after {
      top: 10px; }
    .main-nav .burger.active .lines {
      background: transparent; }
      .main-nav .burger.active .lines:before {
        top: 0;
        background: #E30613;
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .main-nav .burger.active .lines:after {
        top: -2px;
        background: #E30613;
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    .main-nav .burger .lines {
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -1px;
      display: block;
      width: 100%;
      height: 2px;
      background: #8798FF; }
      .main-nav .burger .lines:before, .main-nav .burger .lines:after {
        display: block;
        content: '';
        position: relative;
        top: -10px;
        width: 100%;
        height: 100%;
        background: #DD5C35;
        transition: all 0.25s ease-out 0.1s; }
      .main-nav .burger .lines:after {
        top: 8px; }
  .main-nav .icons {
    display: inline-block; }
    .main-nav .icons a {
      font-size: 125%; }
      .main-nav .icons a:first-child {
        padding-left: 0;
        padding-right: 0; }
      .main-nav .icons a:last-child {
        padding-left: 10px;
        padding-right: 0; }
    .main-nav .icons i {
      position: relative;
      top: 3px; }
  .main-nav .tel {
    display: none;
    position: relative;
    top: 50%;
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
    float: left;
    margin-right: 25px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Asap", "Roboto", sans-serif; }
    .main-nav .tel.mobile {
      display: none; }
  .main-nav .site-btn {
    display: none;
    float: left; }
  .main-nav.follow {
    background: #fff; }
    .main-nav.follow .site-btn {
      border-color: #DD5C35;
      color: #fff;
      background: #DD5C35; }
      .main-nav.follow .site-btn:hover {
        background: #fff;
        color: #DD5C35; }
    .main-nav.follow .right {
      padding-top: 0; }
  @media all and (max-width: 1689px) {
    .main-nav, .main-nav.follow {
      padding: 15px 50px; } }
  @media all and (max-width: 1024px) {
    .main-nav, .main-nav.follow {
      padding: 15px 20px;
      background: #fff;
      border-bottom: 1px solid #eee; }
      .main-nav .tel, .main-nav.follow .tel {
        color: #D1D2D4; }
      .main-nav .site-btn, .main-nav.follow .site-btn {
        border-color: #DD5C35;
        color: #DD5C35;
        background: #fff; }
        .main-nav .site-btn:hover, .main-nav.follow .site-btn:hover {
          border-color: #DD5C35;
          background: #DD5C35;
          color: #fff; }
      .main-nav .right, .main-nav.follow .right {
        padding-top: 0; } }
  @media all and (max-width: 790px) {
    .main-nav .right.mobile, .main-nav.follow .right.mobile {
      display: block; }
    .main-nav .right.links, .main-nav.follow .right.links {
      position: fixed;
      top: 65px;
      right: 0;
      left: auto;
      width: 50%;
      min-width: 320px;
      height: calc( 100vh - 65px);
      background: #DD5C35;
      -ms-transform: translate(100%, 0);
      transform: translate(100%, 0); }
      .main-nav .right.links a,
      .main-nav .right.links .icons, .main-nav.follow .right.links a,
      .main-nav.follow .right.links .icons {
        display: block;
        width: 100%;
        color: #fff;
        text-align: center;
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
        .main-nav .right.links a:hover,
        .main-nav .right.links .icons:hover, .main-nav.follow .right.links a:hover,
        .main-nav.follow .right.links .icons:hover {
          opacity: .8;
          background: rgba(0, 0, 0, 0.1); }
      .main-nav .right.links .icons, .main-nav.follow .right.links .icons {
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: 5px solid #fff; }
        .main-nav .right.links .icons:hover, .main-nav.follow .right.links .icons:hover {
          background: transparent; }
      .main-nav .right.links .icons a, .main-nav.follow .right.links .icons a {
        width: auto;
        display: inline-block;
        border: none;
        padding: 15px;
        border-radius: 12px; }
    .main-nav.active .right.links, .main-nav.follow.active .right.links {
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
      transition: all 0.35s ease; } }
  @media all and (max-width: 767px) {
    .main-nav, .main-nav.follow {
      padding: 10px 20px; }
      .main-nav .tel, .main-nav.follow .tel {
        -ms-transform: translate(0, 40%);
        transform: translate(0, 40%);
        font-size: 16px; } }
  @media all and (max-width: 529px) {
    .main-nav .site-btn, .main-nav.follow .site-btn {
      margin-top: 2px;
      padding: 13px 15px;
      font-size: 12px; }
    .main-nav .tel, .main-nav.follow .tel {
      -ms-transform: translate(0, 41%);
      transform: translate(0, 41%);
      font-size: 14px; }
      .main-nav .tel.mobile, .main-nav.follow .tel.mobile {
        -ms-transform: translate(0, 9%);
        transform: translate(0, 9%); } }
  @media all and (max-width: 469px) {
    .main-nav, .main-nav.follow {
      padding: 7px 20px; }
      .main-nav .tel, .main-nav.follow .tel {
        display: none; }
      .main-nav .site-btn, .main-nav.follow .site-btn {
        display: none; } }

.nav-links-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: transparent;
  transition: all ease 0.33s; }
  @media all and (max-width: 767px) {
    .nav-links-overlay.active {
      z-index: 98;
      background: rgba(0, 0, 0, 0.33); } }

#hero {
  background: #f1f2f2 url("/assets/images/hero-home.jpg") no-repeat center/100% 100%; }
  @media screen and (max-width: 768px) {
    #hero {
      background: #f1f2f2 url("/assets/images/hero-mobile.jpg") no-repeat bottom center/100%; } }

.hero {
  position: relative;
  overflow: hidden; }
  .hero img {
    position: relative;
    display: none;
    width: 100%;
    height: auto; }
    .hero img.mobile {
      display: none; }
  .hero .scroll {
    width: 100%;
    max-width: 25px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -15px; }
  .hero .overlay-opacity {
    width: 100%;
    min-height: calc( 85vh - 85px);
    background-color: #DD5C35;
    opacity: 0.5; }
  .hero .content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    max-width: inherit;
    min-height: inherit;
    padding: 75px;
    z-index: 2;
    text-align: right; }
    @media screen and (max-width: 1140px) {
      .hero .content {
        padding-right: 10%; } }
    @media screen and (max-width: 768px) {
      .hero .content {
        -ms-flex-pack: normal;
        justify-content: normal;
        padding-top: 40px; } }
    @media screen and (max-width: 568px) {
      .hero .content {
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 50px;
        font-size: 40px;
        text-align: left; } }
    .hero .content .bottom {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: end;
      align-items: flex-end; }
      .hero .content .bottom p {
        font-family: "Asap", "Roboto", sans-serif;
        color: #8798FF;
        font-weight: 700;
        font-size: 30px;
        font-style: italic; }
        @media screen and (max-width: 568px) {
          .hero .content .bottom p {
            font-size: 28px; } }
      .hero .content .bottom a {
        width: 64px;
        height: 64px; }
        .hero .content .bottom a i {
          width: 64px;
          height: 64px;
          font-size: 26px;
          color: #DD5C35;
          border: 2px solid #8798FF;
          border-radius: 50%;
          padding: 5px; }
    .hero .content .title1 {
      max-width: 500px;
      padding: 0;
      font-size: 55px;
      color: #DD5C35;
      font-weight: 700;
      line-height: 1.05;
      font-family: "Asap", "Roboto", sans-serif; }
      .hero .content .title1 span {
        font-size: 70%; }
      @media screen and (max-width: 568px) {
        .hero .content .title1 {
          font-size: 40px; } }
    .hero .content .site-btn {
      color: #fff; }
    .hero .content .site-hr {
      background: #fff;
      margin-bottom: 15px; }
    .hero .content .title2 {
      font-weight: 500;
      font-size: 18px;
      color: #DD5C35; }

.hero.fullheight {
  min-height: calc( 85vh - 85px);
  background: #F1F2F2 center center no-repeat;
  background-size: 100%;
  background-position: center center; }
  @media all and (max-width: 1000px) {
    .hero.fullheight {
      background-size: cover; } }

#hero-2 {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 25vw;
  margin-bottom: 60px;
  background: #f1f2f2 url("/assets/images/hero-home.jpg") no-repeat center/75%; }
  @media screen and (max-width: 768px) {
    #hero-2 {
      background-size: 100%; } }
  #hero-2 .title1 {
    font-size: 50px;
    font-family: "Asap", "Roboto", sans-serif;
    line-height: 80px;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
    padding: 0;
    position: relative;
    top: -60px; }
    @media all and (max-width: 1260px) {
      #hero-2 .title1 {
        font-size: 50px; } }
    @media all and (max-width: 1260px) {
      #hero-2 .title1 {
        font-size: 50px;
        top: -30px; } }
  @media all and (max-width: 1260px) {
    #hero-2 {
      height: 35vw; } }
  @media all and (max-width: 800px) {
    #hero-2 {
      height: 45vw; } }
  @media all and (max-width: 800px) {
    #hero-2 {
      height: 55vw; }
      #hero-2 .title1 {
        font-size: 30px;
        position: relative;
        top: -58px; } }
  @media all and (max-width: 500px) {
    #hero-2 {
      height: 65vw; } }

.bloc-video {
  width: 100%;
  background-color: #DD5C35;
  padding: 5vw 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }
  .bloc-video a {
    max-width: 800px; }
    .bloc-video a img {
      width: 100%;
      margin: 0 auto; }
  .bloc-video .youtube-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }

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

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.bloc-services-wrapper section:first-child .row, .bloc-services-wrapper section:last-child .row {
  display: -ms-flexbox;
  display: flex; }

@media screen and (max-width: 768px) {
  .bloc-services-wrapper section:first-child .row {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media screen and (max-width: 768px) {
  .bloc-services-wrapper section:last-child .row {
    -ms-flex-direction: column;
    flex-direction: column; } }

.bloc-services {
  background-color: #fff; }
  .bloc-services .content {
    float: left; }
    .bloc-services .content .wrap {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 6vw 50px 0;
      background-color: #fff; }
      .bloc-services .content .wrap .title3 {
        padding: 0 0 32px;
        font-size: 30px;
        font-weight: 700; }
      .bloc-services .content .wrap .main-text {
        margin-bottom: 15px;
        color: #414042;
        font-size: 16px;
        line-height: 30px; }
    .bloc-services .content .partners {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 0 50px; }
      .bloc-services .content .partners .partner-wrap {
        width: 100%;
        border-bottom: 1px solid #ccc; }
        .bloc-services .content .partners .partner-wrap:last-child {
          border: none; }
          .bloc-services .content .partners .partner-wrap:last-child .partner {
            width: 33%; }
        .bloc-services .content .partners .partner-wrap:after {
          content: '';
          clear: both;
          display: block; }
        .bloc-services .content .partners .partner-wrap .partner {
          width: 50%;
          display: inline-block;
          float: left;
          padding: 30px; }
          @media all and (max-width: 768px) {
            .bloc-services .content .partners .partner-wrap .partner {
              padding: 10px; } }
  .bloc-services .visual {
    position: relative;
    float: right;
    top: auto;
    right: auto;
    bottom: auto; }
    .bloc-services .visual .img-square {
      position: absolute;
      left: 50%;
      top: 10%;
      width: 225px;
      height: 225px;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  .bloc-services .services-carousel .carousel-cell {
    width: 100%;
    height: auto; }
    .bloc-services .services-carousel .carousel-cell img:not(.img-square) {
      display: block;
      width: 100%;
      height: auto; }
  .bloc-services .services-carousel .flickity-prev-next-button {
    background: transparent; }
  @media all and (max-width: 1499px) {
    .bloc-services .col.half.content {
      width: 50%; }
    .bloc-services .col.half.visual {
      width: 50%; } }
  @media all and (max-width: 1023px) {
    .bloc-services .col.half.content {
      position: relative;
      top: auto;
      left: auto;
      bottom: auto;
      width: 100%; }
      .bloc-services .col.half.content .wrap {
        padding: 40px 20px; }
    .bloc-services .col.half.visual {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      height: auto; } }

.bloc-services {
  background-color: #fff; }
  .bloc-services .content {
    float: left; }
    .bloc-services .content .wrap {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 6vw 50px 0;
      background-color: #fff; }
      .bloc-services .content .wrap.service-2 {
        padding: 3vw 50px; }
      .bloc-services .content .wrap .title3 {
        padding: 0 0 32px;
        font-size: 30px;
        font-weight: 700; }
      .bloc-services .content .wrap .main-text {
        margin-bottom: 15px;
        color: #414042;
        font-size: 16px;
        line-height: 30px; }
  .bloc-services .visual {
    position: relative;
    float: right;
    top: auto;
    right: auto;
    bottom: auto; }
    .bloc-services .visual .img-square {
      position: absolute;
      left: 50%;
      top: 10%;
      width: 225px;
      height: 225px;
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  .bloc-services .services-carousel .carousel-cell {
    width: 100%;
    height: auto; }
    .bloc-services .services-carousel .carousel-cell img:not(.img-square) {
      display: block;
      width: 100%;
      height: auto; }
  .bloc-services .services-carousel .flickity-prev-next-button {
    background: transparent; }
  @media all and (max-width: 1499px) {
    .bloc-services .col.half.content {
      width: 50%; }
    .bloc-services .col.half.visual {
      width: 50%; } }
  @media all and (max-width: 1023px) {
    .bloc-services .col.half.content {
      position: relative;
      top: auto;
      left: auto;
      bottom: auto;
      width: 100%; }
      .bloc-services .col.half.content .wrap {
        padding: 40px 20px; }
    .bloc-services .col.half.visual {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      height: auto; } }

.bloc-informations {
  position: relative;
  width: 100%;
  height: auto;
  background: #F1F2F2; }
  .bloc-informations .subjects-list {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30%;
    height: auto;
    /* padding-top: 15px; */
    background: #414042; }
    .bloc-informations .subjects-list nav a {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      padding: 35px 65px 35px 90px;
      color: #fff; }
      .bloc-informations .subjects-list nav a .num {
        display: block;
        position: absolute;
        top: 50%;
        left: 25px;
        transform: translate(0, -50%) translateZ(0);
        filter: blur(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        width: 47px;
        height: 47px;
        border: 2px solid #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 41px;
        text-indent: 2px;
        font-size: 18px;
        color: #fff; }
      .bloc-informations .subjects-list nav a .title {
        display: block;
        line-height: 1;
        font-weight: 300;
        color: #fff;
        font-size: 17px; }
      .bloc-informations .subjects-list nav a i {
        display: block;
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translate(0, -50%) translateZ(0);
        filter: blur(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 28px;
        text-indent: 2px;
        font-size: 11px;
        color: #fff; }
      .bloc-informations .subjects-list nav a:hover, .bloc-informations .subjects-list nav a.active {
        background: #002C50; }
  .bloc-informations .subject-content {
    position: relative;
    float: right;
    width: 70%;
    height: auto;
    padding: 8%;
    overflow: hidden; }
    .bloc-informations .subject-content .visual {
      position: absolute;
      top: 15%;
      right: 0; }
    .bloc-informations .subject-content article {
      display: none;
      width: 100%;
      margin: 0 0;
      max-width: 875px;
      min-height: 475px; }
      .bloc-informations .subject-content article .content {
        opacity: 0;
        -ms-transform: translate(-60px, 0);
        transform: translate(-60px, 0);
        transition: all 0.35s ease-out; }
      .bloc-informations .subject-content article.active {
        display: block; }
      .bloc-informations .subject-content article .content.active {
        opacity: 1;
        -ms-transform: translate(0, 0);
        transform: translate(0, 0); }
    .bloc-informations .subject-content .main-text {
      margin-bottom: 35px; }
      .bloc-informations .subject-content .main-text a {
        color: #DD5C35; }
    .bloc-informations .subject-content .site-hr {
      float: left; }
  @media only screen and (max-width: 1274px) {
    .bloc-informations .subjects-list {
      width: 35%; }
      .bloc-informations .subjects-list nav a .title {
        font-size: 17px; }
      .bloc-informations .subjects-list nav a .subtitle {
        font-size: 11px; }
    .bloc-informations .subject-content {
      width: 65%;
      padding: 40px 25px; }
      .bloc-informations .subject-content p {
        font-size: 19px; } }
  @media only screen and (max-width: 1044px) {
    .bloc-informations .subjects-list {
      width: 40%; }
      .bloc-informations .subjects-list nav a {
        padding: 20px 45px 20px 55px; }
        .bloc-informations .subjects-list nav a .title {
          font-size: 13px;
          font-weight: 400; }
        .bloc-informations .subjects-list nav a .subtitle {
          font-size: 12px; }
        .bloc-informations .subjects-list nav a .num {
          position: absolute;
          top: 50%;
          left: 15px;
          -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
          width: 30px;
          height: 30px;
          background: transparent;
          line-height: 25px; }
        .bloc-informations .subjects-list nav a i {
          right: 15px; }
    .bloc-informations .subject-content {
      width: 60%; }
      .bloc-informations .subject-content h2 {
        font-size: 28px; }
      .bloc-informations .subject-content p {
        font-size: 15px; }
      .bloc-informations .subject-content .site-btn-container {
        padding-top: 15px; } }
  @media only screen and (max-width: 767px) {
    .bloc-informations .subjects-list {
      display: block;
      position: relative;
      width: 100%; }
      .bloc-informations .subjects-list nav a i {
        transform: translate(0, -50%) translateZ(0) rotate(90deg); }
    .bloc-informations .subject-content {
      float: none;
      width: 100%; }
      .bloc-informations .subject-content .circle-effect {
        width: 425px;
        height: 585px;
        border: 45px solid rgba(51, 50, 51, 0.15); }
      .bloc-informations .subject-content article {
        min-height: inherit; } }
  @media only screen and (max-width: 575px) {
    .bloc-informations .subject-content {
      padding: 40px 25px; }
      .bloc-informations .subject-content h2 {
        font-size: 22px; }
      .bloc-informations .subject-content p {
        font-size: 14px;
        text-align: justify;
        font-weight: 300; } }
  @media only screen and (max-width: 374px) {
    .bloc-informations .subject-content h2 {
      font-size: 19px; } }

.bloc-arguments {
  padding: 6vw 50px;
  text-align: center;
  background: #F1F2F2; }
  .bloc-arguments i {
    color: #8798FF;
    font-size: 75px; }
  .bloc-arguments .title3 {
    padding: 0;
    font-family: "Asap", "Roboto", sans-serif;
    font-weight: 500; }
  .bloc-arguments .title4 {
    padding-top: 15px;
    color: #DD5C35;
    font-weight: 500;
    font-size: 18px; }
  .bloc-arguments .main-text {
    color: #DD5C35; }
  .bloc-arguments .arguments {
    padding: 6vw 50px; }
  .bloc-arguments .argument {
    text-align: center;
    padding: 0 3%; }
  @media all and (max-width: 1024px) {
    .bloc-arguments {
      padding: 60px 20px; }
      .bloc-arguments .arguments {
        padding: 40px 20px; }
      .bloc-arguments .argument {
        padding: 5%; } }

.bloc-arguments-2 {
  padding: 0 50px;
  text-align: center;
  background: #fff; }
  .bloc-arguments-2 .faits-temporaires {
    width: 100%; }
  .bloc-arguments-2 .row {
    padding: 4vw; }
  .bloc-arguments-2 .top {
    overflow: hidden;
    position: relative;
    background-color: #DD5C35; }
    .bloc-arguments-2 .top .preparation {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 100;
      margin: 0;
      padding: 0;
      display: inline-block;
      background-color: #8798FF;
      padding: 3px 5px;
      font-size: 14px;
      color: #fff; }
    .bloc-arguments-2 .top .play {
      width: 100%;
      max-width: 60px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -30px;
      margin-left: -30px;
      z-index: 100; }
    .bloc-arguments-2 .top .thumb {
      display: block;
      width: 100%;
      height: auto;
      -ms-transform: scale(1.01);
      transform: scale(1.01);
      transition: all 0.5s ease-in-out;
      opacity: 1; }
    .bloc-arguments-2 .top .overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      opacity: 1;
      z-index: 5; }
      .bloc-arguments-2 .top .overlay.light {
        border: 21px solid rgba(255, 255, 255, 0.5); }
      .bloc-arguments-2 .top .overlay.orange {
        border: 21px solid rgba(221, 92, 53, 0.5); }
      .bloc-arguments-2 .top .overlay.blue {
        border: 21px solid rgba(221, 92, 53, 0.5); }
  .bloc-arguments-2 .title3 {
    font-size: 33px;
    font-weight: 700;
    line-height: 38px;
    padding: 0; }
  .bloc-arguments-2 .title4 {
    padding: 0 0 10px 0;
    line-height: 1;
    max-width: 330px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 400;
    color: #D1D2D4;
    letter-spacing: 1px; }
  .bloc-arguments-2 .title3.text {
    font-size: 16px;
    line-height: 1.5; }
  .bloc-arguments-2 .listWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .bloc-arguments-2 .arguments {
    padding: 0 0 0 0; }
  .bloc-arguments-2 .argument {
    text-align: center;
    margin: 0 .5% 2.5% .5%;
    background: #fff; }
    .bloc-arguments-2 .argument.col-center {
      margin: 0 auto 2.5%; }
    .bloc-arguments-2 .argument .content {
      padding: 40px 15% 0 15%; }
      .bloc-arguments-2 .argument .content .main-text {
        margin-top: 15px;
        line-height: 1.2;
        text-transform: uppercase; }
  .bloc-arguments-2.light {
    background: #fff; }
    .bloc-arguments-2.light .top {
      background-color: #fff; }
    .bloc-arguments-2.light .argument {
      background: #fff; }
    .bloc-arguments-2.light .main-text {
      color: #414042; }
  .bloc-arguments-2.orange {
    background: #DD5C35; }
    .bloc-arguments-2.orange .title3 {
      color: #fff; }
    .bloc-arguments-2.orange .top {
      background-color: #DD5C35; }
    .bloc-arguments-2.orange .argument {
      background: #DD5C35; }
    .bloc-arguments-2.orange .main-text {
      color: #fff; }
  .bloc-arguments-2.blue {
    background: #8798FF; }
    .bloc-arguments-2.blue .title3 {
      color: #fff; }
    .bloc-arguments-2.blue .top {
      background-color: #8798FF; }
    .bloc-arguments-2.blue .argument {
      background: #8798FF; }
    .bloc-arguments-2.blue .main-text {
      color: #fff; }
  .bloc-arguments-2 .post-filters {
    margin: 0 0 72px; }
    .bloc-arguments-2 .post-filters a {
      color: #414042;
      font-family: "Asap", "Roboto", sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 23px;
      letter-spacing: 0;
      font-size: 20px; }
      .bloc-arguments-2 .post-filters a:not(:last-child) {
        margin-right: 25px; }
  @media all and (max-width: 1429px) {
    .bloc-arguments-2 .main-text {
      font-size: 13px;
      line-height: 24px; } }
  @media all and (max-width: 1249px) {
    .bloc-arguments-2 .title4 {
      font-size: 14px; } }
  @media all and (max-width: 1024px) {
    .bloc-arguments-2 {
      padding: 40px 20px; } }
  @media all and (max-width: 1119px) {
    .bloc-arguments-2 .title4 {
      min-height: 53px; }
    .bloc-arguments-2 .main-text {
      line-height: 1.6; }
    .bloc-arguments-2 .argument .content {
      padding: 40px 10%; } }
  @media all and (max-width: 767px) {
    .bloc-arguments-2 .title4,
    .bloc-arguments-2 .main-text {
      min-height: inherit; } }
  @media all and (max-width: 599px) {
    .bloc-arguments-2 .title3 {
      font-size: 18px; }
    .bloc-arguments-2 .arguments {
      padding: 0 0; } }

.publication-wrap {
  width: 100%; }
  .publication-wrap .capsule-header {
    width: 100%;
    min-height: calc( 85vh - 85px);
    background: url("../images/hero.jpg") #F1F2F2 center center no-repeat;
    background-size: cover;
    text-align: center;
    position: relative; }
    @media all and (max-width: 767px) {
      .publication-wrap .capsule-header {
        min-height: 0; } }
    .publication-wrap .capsule-header .video-wrap {
      width: 100%;
      max-width: 850px;
      position: absolute;
      z-index: 100;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      @media all and (max-width: 767px) {
        .publication-wrap .capsule-header .video-wrap {
          position: relative;
          top: 0;
          left: 0;
          -ms-transform: translate(0, 0);
          transform: translate(0, 0); } }
      .publication-wrap .capsule-header .video-wrap .video {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 */
        padding-top: 25px;
        height: 0; }
        .publication-wrap .capsule-header .video-wrap .video iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%; }
    .publication-wrap .capsule-header .overlay-opacity {
      width: 100%;
      min-height: calc( 85vh - 85px);
      background-color: #DD5C35;
      opacity: 0.9; }
      @media all and (max-width: 767px) {
        .publication-wrap .capsule-header .overlay-opacity {
          min-height: 0; } }
  .publication-wrap .publication-header {
    width: 100%;
    min-height: calc( 75vh - 85px);
    background: #F1F2F2 center center no-repeat;
    background-size: cover;
    text-align: center; }
    .publication-wrap .publication-header [data-bg-cover-img] {
      display: none; }
    .publication-wrap .publication-header .overlay-opacity {
      width: 100%;
      min-height: calc( 85vh - 85px);
      background-color: #8798FF;
      opacity: 0.6; }
    .publication-wrap .publication-header .shares {
      position: absolute;
      bottom: 5%;
      left: 50%;
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      z-index: 100; }
      .publication-wrap .publication-header .shares .small-title {
        padding: 0;
        text-transform: uppercase;
        color: #fff;
        font-family: "Asap", "Roboto", sans-serif;
        font-size: 18px;
        line-height: 21px;
        letter-spacing: 0;
        font-weight: 700; }
      .publication-wrap .publication-header .shares .icons i {
        width: 40px;
        height: 40px;
        padding: 10px;
        margin: 0;
        color: #fff;
        font-size: 100%;
        text-align: center;
        border-radius: 50%;
        background: #DD5C35; }
    .publication-wrap .publication-header .content {
      position: absolute;
      top: 45%;
      left: 0;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 100%;
      height: auto;
      padding-left: 20px;
      padding-right: 20px;
      z-index: 2;
      text-align: center; }
      @media all and (max-width: 767px) {
        .publication-wrap .publication-header .content {
          top: 40%; } }
      .publication-wrap .publication-header .content .title1 {
        font-size: 42px;
        margin: 0 auto;
        max-width: 740px;
        color: #fff;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0;
        font-family: "Asap", "Roboto", sans-serif; }
        @media all and (max-width: 767px) {
          .publication-wrap .publication-header .content .title1 {
            font-size: 24px;
            line-height: 1.5;
            padding: 0;
            margin-bottom: 20px;
            max-width: 540px; } }
        .publication-wrap .publication-header .content .title1 span {
          color: #DD5C35; }
  .publication-wrap .publication-data {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 25px 50px 25px;
    color: #414042;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px; }
    .publication-wrap .publication-data:first-of-type {
      padding-top: 50px; }
    @media all and (max-width: 767px) {
      .publication-wrap .publication-data {
        padding: 25px 15px;
        font-size: 16px;
        line-height: 28px; } }
    .publication-wrap .publication-data .article-title {
      background-color: #F1F2F2;
      color: #DD5C35;
      margin: 0;
      padding: 15px 20px;
      font-weight: 400;
      text-transform: uppercase; }
    .publication-wrap .publication-data p,
    .publication-wrap .publication-data p span,
    .publication-wrap .publication-data .main-text,
    .publication-wrap .publication-data ul li {
      font-family: "Asap", "Roboto", sans-serif;
      color: #414042;
      font-size: 16px;
      line-height: 33px;
      letter-spacing: 0;
      margin-bottom: 20px; }
      @media all and (max-width: 767px) {
        .publication-wrap .publication-data p,
        .publication-wrap .publication-data p span,
        .publication-wrap .publication-data .main-text,
        .publication-wrap .publication-data ul li {
          font-size: 16px;
          line-height: 28px; } }
    .publication-wrap .publication-data a {
      font-family: "Asap", "Roboto", sans-serif;
      color: #8798FF;
      font-size: 16px;
      line-height: 33px;
      letter-spacing: 0;
      margin-bottom: 20px; }
      @media all and (max-width: 767px) {
        .publication-wrap .publication-data a {
          font-size: 16px;
          line-height: 28px; } }
    .publication-wrap .publication-data ul li {
      margin: 0;
      padding: 0; }
    .publication-wrap .publication-data .sub-title,
    .publication-wrap .publication-data h1,
    .publication-wrap .publication-data h2,
    .publication-wrap .publication-data h3,
    .publication-wrap .publication-data h4 {
      color: #DD5C35;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px; }
    .publication-wrap .publication-data img {
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      margin: 20px 0; }
    .publication-wrap .publication-data .ingredients {
      width: 40%;
      display: inline-block;
      float: left; }
      @media all and (max-width: 767px) {
        .publication-wrap .publication-data .ingredients {
          width: 100%; } }
      .publication-wrap .publication-data .ingredients .recette-sub-header h2 {
        color: #fff;
        margin: 0; }
      .publication-wrap .publication-data .ingredients ul {
        background-color: #F1F2F2;
        padding: 25px 25px 15px 45px;
        margin: 0; }
        .publication-wrap .publication-data .ingredients ul li {
          line-height: 1.4;
          margin-bottom: 25px;
          font-size: 16px;
          font-weight: 400;
          list-style-type: none;
          position: relative;
          text-align: left; }
        .publication-wrap .publication-data .ingredients ul li:before {
          content: '';
          display: inline-block;
          width: 13px;
          height: 13px;
          background-image: url("../images/check.png");
          background-size: 13px;
          position: absolute;
          top: 5px;
          left: -25px; }
    .publication-wrap .publication-data .preparation {
      width: 60%;
      display: inline-block;
      float: left;
      padding-left: 5px; }
      @media all and (max-width: 767px) {
        .publication-wrap .publication-data .preparation {
          width: 100%;
          padding-left: 0;
          margin-top: 15px; } }
      .publication-wrap .publication-data .preparation .recette-sub-header {
        background-color: #F1F2F2; }
        .publication-wrap .publication-data .preparation .recette-sub-header h2 {
          color: #DD5C35;
          margin: 0; }
        @media all and (max-width: 767px) {
          .publication-wrap .publication-data .preparation .recette-sub-header {
            background-color: #DD5C35; }
            .publication-wrap .publication-data .preparation .recette-sub-header h2 {
              color: #fff; } }
      .publication-wrap .publication-data .preparation ul {
        list-style-type: decimal;
        padding: 25px 25px 15px 35px;
        margin: 0; }
        .publication-wrap .publication-data .preparation ul li {
          line-height: 1.4;
          margin-bottom: 25px;
          font-size: 16px;
          font-weight: 400; }
    .publication-wrap .publication-data .recette-sub-header {
      background-color: #DD5C35;
      padding: 15px 20px;
      color: #fff; }
      .publication-wrap .publication-data .recette-sub-header h2 {
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase; }

.bloc-temoignages {
  padding: 6vw 50px;
  text-align: center;
  background: #fff; }
  .bloc-temoignages .title3 {
    color: #DD5C35;
    padding-bottom: 50px;
    font-weight: 500; }
  .bloc-temoignages .ico-temoignages {
    display: inline-block;
    padding: 5px 0 20px 0;
    font-size: 60px;
    color: #F1F2F2; }
  .bloc-temoignages .main-text {
    width: 100%;
    max-width: 800px;
    height: auto;
    padding: 0;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #DD5C35; }
    .bloc-temoignages .main-text strong {
      color: #DD5C35; }
  .bloc-temoignages span {
    display: block;
    color: #DD5C35;
    line-height: 1.3; }
    .bloc-temoignages span.second {
      color: #D1D2D4; }
  .bloc-temoignages .temoignages-carousel {
    padding-bottom: 100px; }
    .bloc-temoignages .temoignages-carousel .carousel-cell {
      position: relative;
      width: 100%;
      height: auto; }
    .bloc-temoignages .temoignages-carousel .flickity-page-dots {
      bottom: 0; }
      .bloc-temoignages .temoignages-carousel .flickity-page-dots .dot {
        width: 13px;
        height: 13px;
        margin: 0 5px;
        background: transparent;
        border: 2px solid #DD5C35;
        opacity: 1; }
        .bloc-temoignages .temoignages-carousel .flickity-page-dots .dot.is-selected {
          background-color: #DD5C35;
          border-color: #DD5C35; }
  @media only screen and (max-width: 1024px) {
    .bloc-temoignages {
      padding: 60px 20px; } }
  @media only screen and (max-width: 929px) {
    .bloc-temoignages .temoignages h2 {
      font-size: 28px; }
    .bloc-temoignages .temoignages p {
      font-size: 18px;
      line-height: 1.2; }
    .bloc-temoignages .temoignages img {
      max-width: 50px; } }
  @media only screen and (max-width: 739px) {
    .bloc-temoignages .temoignages h2 {
      font-size: 20px; } }

.bloc-temoignages.showfaces .temoignages-carousel {
  padding-bottom: 170px; }
  .bloc-temoignages.showfaces .temoignages-carousel .flickity-page-dots .dot {
    position: relative;
    width: 95px;
    height: 95px;
    overflow: hidden;
    margin: 0 25px;
    border: none;
    opacity: .45;
    background: url("../images/user-placeholder.jpg") transparent center center no-repeat;
    background-size: cover; }
    .bloc-temoignages.showfaces .temoignages-carousel .flickity-page-dots .dot.is-selected {
      opacity: 1; }

@media only screen and (max-width: 739px) {
  .bloc-temoignages.showfaces .temoignages-carousel {
    padding-bottom: 75px; }
    .bloc-temoignages.showfaces .temoignages-carousel .flickity-page-dots .dot {
      width: 45px;
      height: 45px;
      margin: 0 15px; } }

.bloc-pricing {
  padding: 6vw 50px;
  text-align: center;
  background: #8798FF; }
  .bloc-pricing .triangles {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 12vw; }
  .bloc-pricing .title3,
  .bloc-pricing .main-text {
    color: #fff; }
    .bloc-pricing .title3.more,
    .bloc-pricing .main-text.more {
      padding-top: 35px; }
  .bloc-pricing .subtitle {
    font-size: 19px; }
  .bloc-pricing .pricing-container {
    position: relative;
    text-align: center;
    padding-top: 75px; }
    .bloc-pricing .pricing-container .pricing-pannel-wrapper {
      position: relative;
      display: inline-block;
      width: 35%;
      height: auto;
      margin: 0 3px;
      background: #fff; }
    .bloc-pricing .pricing-container .pricing-pannel {
      padding: 0 0; }
      .bloc-pricing .pricing-container .pricing-pannel header {
        padding: 45px 20px;
        background: #fff; }
      .bloc-pricing .pricing-container .pricing-pannel .title4 {
        color: #414042;
        margin-bottom: 0; }
      .bloc-pricing .pricing-container .pricing-pannel .date {
        color: #414042;
        font-family: "Asap", "Roboto", sans-serif;
        font-size: 40px;
        font-weight: 400;
        display: inline-block;
        line-height: 1;
        margin-bottom: 10px; }
      .bloc-pricing .pricing-container .pricing-pannel .main-text {
        color: #D1D2D4;
        line-height: 1.2;
        letter-spacing: 1px; }
        .bloc-pricing .pricing-container .pricing-pannel .main-text strong {
          color: #DD5C35;
          font-weight: 600; }
        .bloc-pricing .pricing-container .pricing-pannel .main-text.mention {
          padding-top: 20px; }
          .bloc-pricing .pricing-container .pricing-pannel .main-text.mention.margin-bottom {
            margin-bottom: 47px; }
      .bloc-pricing .pricing-container .pricing-pannel .price {
        display: inline-block;
        font-family: "Asap", "Roboto", sans-serif;
        text-align: center;
        color: #8798FF;
        font-size: 48px;
        margin-top: 0;
        margin-bottom: 7px;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 4px; }
      .bloc-pricing .pricing-container .pricing-pannel .price-details {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 25px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-align: center;
        color: #DD5C35; }
      .bloc-pricing .pricing-container .pricing-pannel .price-container {
        position: relative;
        width: 100%;
        text-align: center; }
        .bloc-pricing .pricing-container .pricing-pannel .price-container .price-bloc {
          position: relative;
          padding: 43px 22px 22px 22px;
          background: rgba(0, 0, 0, 0.2);
          font-size: 38px; }
      .bloc-pricing .pricing-container .pricing-pannel .site-btn-center {
        padding: 25px 0 0 0; }
      .bloc-pricing .pricing-container .pricing-pannel article {
        padding: 0 0;
        background: #F1F2F2; }
        .bloc-pricing .pricing-container .pricing-pannel article .main-list {
          margin: 0;
          padding: 0; }
          .bloc-pricing .pricing-container .pricing-pannel article .main-list li {
            margin: 0;
            padding: 20px;
            border-bottom: 1px solid #8798FF; }
            .bloc-pricing .pricing-container .pricing-pannel article .main-list li.ghost {
              border-color: rgba(0, 0, 0, 0.25); }
  .bloc-pricing .singe {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    max-width: 500px; }
  @media all and (max-width: 1249px) {
    .bloc-pricing .main-list {
      font-size: 13px; }
    .bloc-pricing .pricing-container .pricing-pannel-wrapper {
      width: 40%; } }
  @media all and (max-width: 1024px) {
    .bloc-pricing {
      padding: 40px 20px; }
      .bloc-pricing .pricing-container .pricing-pannel-wrapper .pricing-pannel .price-container .price-bloc {
        font-size: 23px; }
        .bloc-pricing .pricing-container .pricing-pannel-wrapper .pricing-pannel .price-container .price-bloc:last-child {
          margin-top: 5px; } }
  @media all and (max-width: 900px) {
    .bloc-pricing {
      padding: 25px 15px; }
      .bloc-pricing .singe {
        display: none; }
      .bloc-pricing .pricing-container .pricing-pannel-wrapper {
        width: 100%;
        margin: 0;
        margin-bottom: 15px; }
        .bloc-pricing .pricing-container .pricing-pannel-wrapper article .main-list li.ghost {
          display: none; } }

.bloc-quoteCta {
  position: relative;
  padding: 10vw 50px;
  background: #F1F2F2;
  text-align: center; }
  .bloc-quoteCta .title2 {
    font-size: 38px;
    padding-bottom: 40px;
    font-weight: 500; }
  .bloc-quoteCta .title3 {
    font-weight: 500; }
  .bloc-quoteCta .title1,
  .bloc-quoteCta .title2,
  .bloc-quoteCta .title3,
  .bloc-quoteCta .main-text,
  .bloc-quoteCta .main-list {
    color: #DD5C35; }
  @media all and (max-width: 1024px) {
    .bloc-quoteCta {
      padding: 10vw 20px; } }
  @media all and (max-width: 819px) {
    .bloc-quoteCta .title2 {
      font-size: 25px; } }
  @media all and (max-width: 599px) {
    .bloc-quoteCta {
      padding: 20vw 20px; }
      .bloc-quoteCta .title2 {
        font-size: 17px;
        padding-bottom: 25px; } }

.contact {
  position: relative; }
  .contact .bloc-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20%;
    width: 420px;
    background: #fff;
    z-index: 2; }
    .contact .bloc-text .content {
      position: absolute;
      top: 50%;
      left: 0;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 100%;
      height: auto;
      padding: 60px 50px; }
      .contact .bloc-text .content .title4 {
        text-align: left;
        font-size: 22px;
        margin: 0;
        padding: 0 0 0 0;
        font-weight: 500; }
      .contact .bloc-text .content p {
        padding: 40px 0 0 0;
        margin: 0;
        color: #414042;
        font-size: 16px;
        line-height: 25px;
        text-align: left; }
      .contact .bloc-text .content a {
        transition: all 0.35s ease;
        color: #414042;
        font-size: 16px;
        line-height: 25px;
        text-align: left; }
        .contact .bloc-text .content a:hover {
          color: #DD5C35; }
      .contact .bloc-text .content i {
        font-size: 150%;
        color: #414042; }
  .contact .map {
    position: relative;
    width: 100%;
    height: 50vw;
    min-width: 100%;
    max-width: 100%;
    max-height: 515px;
    z-index: 1; }
  @media only screen and (max-width: 1024px) {
    .contact .bloc-text .content {
      padding: 60px 50px; } }
  @media only screen and (max-width: 1139px) {
    .contact .bloc-text {
      left: 10%; } }
  @media only screen and (max-width: 919px) {
    .contact .bloc-text {
      left: 7%; } }
  @media only screen and (max-width: 799px) {
    .contact .bloc-text,
    .contact .bloc-text .content {
      position: relative;
      float: none;
      top: auto;
      left: auto;
      bottom: auto;
      right: auto;
      -ms-transform: none;
      transform: none;
      width: 100%;
      text-align: center; }
      .contact .bloc-text p, .contact .bloc-text .title4,
      .contact .bloc-text .content p,
      .contact .bloc-text .content .title4 {
        text-align: center; }
      .contact .bloc-text p:last-child,
      .contact .bloc-text .content p:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: center; } }

.contact2 {
  position: relative; }
  .contact2 .map {
    position: relative;
    width: 100%;
    height: 30vw;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    z-index: 1; }
  .contact2 .adresses {
    position: relative;
    width: 100%;
    height: auto;
    background: #fff; }
    .contact2 .adresses .bloc-adresse {
      position: relative;
      float: left;
      width: 50%;
      height: auto;
      padding: 100px 40px;
      text-align: center;
      cursor: pointer; }
      .contact2 .adresses .bloc-adresse:hover {
        background: #F1F2F2; }
      .contact2 .adresses .bloc-adresse.active {
        background: #F1F2F2; }
      .contact2 .adresses .bloc-adresse:first-child {
        border-right: 1px solid #eee; }
      .contact2 .adresses .bloc-adresse:last-child {
        border-left: 1px solid #eee; }
      .contact2 .adresses .bloc-adresse .title4 {
        text-align: center;
        font-size: 22px;
        margin: 0;
        padding: 0 0 35px 0; }
      .contact2 .adresses .bloc-adresse p,
      .contact2 .adresses .bloc-adresse a {
        padding: 0 0 40px 0;
        margin: 0;
        color: #000;
        font-size: 16px;
        line-height: 30px;
        text-align: center; }
      .contact2 .adresses .bloc-adresse p:last-child {
        margin-bottom: 0;
        padding-bottom: 0; }
      .contact2 .adresses .bloc-adresse a {
        transition: all 0.35s ease; }
        .contact2 .adresses .bloc-adresse a:hover {
          color: #DD5C35; }
      .contact2 .adresses .bloc-adresse i {
        font-size: 150%;
        color: #8798FF; }
  .contact2 .foot-note {
    position: relative;
    background: #DD5C35;
    z-index: 3;
    border-top: 5px solid #8798FF; }
    .contact2 .foot-note p {
      float: left;
      width: 50%;
      padding: 25px 25px;
      margin: 0;
      color: #fff;
      text-align: left;
      line-height: 1; }
      .contact2 .foot-note p.links {
        text-align: right; }
  @media all and (max-width: 979px) {
    .contact2 {
      border-top: 5px solid #fff; } }
  @media only screen and (max-width: 1278px) {
    .contact2 .adresses .bloc-adresse {
      padding: 41px 40px; }
      .contact2 .adresses .bloc-adresse p,
      .contact2 .adresses .bloc-adresse a {
        font-size: 14px;
        line-height: 26px; } }
  @media only screen and (max-width: 1139px) {
    .contact2 .bloc-text {
      left: 10%; }
    .contact2 .map {
      height: 375px; }
    .contact2 .adresses .bloc-adresse p,
    .contact2 .adresses .bloc-adresse a {
      font-size: 14px; } }
  @media only screen and (max-width: 919px) {
    .contact2 .bloc-text {
      left: 7%; } }
  @media only screen and (max-width: 799px) {
    .contact2 .bloc-text,
    .contact2 .bloc-text .content {
      position: relative;
      float: none;
      top: auto;
      left: auto;
      bottom: auto;
      right: auto;
      -ms-transform: none;
      transform: none;
      width: 100%;
      padding-top: 20px;
      padding-bottom: 20px;
      text-align: center; }
      .contact2 .bloc-text p, .contact2 .bloc-text .title4,
      .contact2 .bloc-text .content p,
      .contact2 .bloc-text .content .title4 {
        text-align: center; }
      .contact2 .bloc-text p:last-child,
      .contact2 .bloc-text .content p:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: center; } }
  @media only screen and (max-width: 799px) {
    .contact2 .foot-note p, .contact2 .foot-note p.links {
      width: 100%;
      float: none;
      text-align: center;
      padding-top: 15px;
      padding-bottom: 5px; }
    .contact2 .foot-note p.links {
      padding-top: 0;
      padding-bottom: 15px; } }
  @media only screen and (max-width: 768px) {
    .contact2 .adresses .bloc-adresse {
      float: none;
      width: 100%;
      border: none; }
      .contact2 .adresses .bloc-adresse.active {
        background: #F1F2F2; }
      .contact2 .adresses .bloc-adresse:hover, .contact2 .adresses .bloc-adresse:first-child, .contact2 .adresses .bloc-adresse:last-child {
        border: none; }
      .contact2 .adresses .bloc-adresse p,
      .contact2 .adresses .bloc-adresse a {
        font-size: 12px; } }
  @media only screen and (max-width: 399px) {
    .contact2 .foot-note p, .contact2 .foot-note p.links {
      font-size: 13px; } }

.contact.bottom .bloc-text {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 40%;
  background: #fff;
  z-index: 2;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }
  .contact.bottom .bloc-text .content {
    position: relative;
    top: 0;
    left: 0;
    -ms-transform: none;
    transform: none;
    width: 100%;
    height: auto;
    padding: 75px 25px; }
    .contact.bottom .bloc-text .content .title4 {
      text-align: center; }
    .contact.bottom .bloc-text .content p,
    .contact.bottom .bloc-text .content a {
      text-align: center; }

.site-content section,
.site-content header {
  position: relative;
  z-index: 2; }

.site-content section.bloc-infolettre {
  padding: 6vw 50px;
  background: #fff;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 48px;
  width: 100%;
  z-index: 1; }
  .site-content section.bloc-infolettre .title3 {
    color: #DD5C35;
    max-width: 380px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.5;
    padding: 35px; }
  .site-content section.bloc-infolettre i {
    position: relative;
    top: 7px;
    display: inline-block;
    color: #DD5C35;
    font-size: 53px;
    font-weight: 100;
    line-height: 1; }
  .site-content section.bloc-infolettre .input-infolettre {
    position: relative;
    width: 80%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    padding: 0 0; }
    .site-content section.bloc-infolettre .input-infolettre .form-field {
      position: relative; }
    .site-content section.bloc-infolettre .input-infolettre input[type="email"] {
      width: 100%;
      padding: 20px 15px;
      border: none;
      outline: none;
      border-radius: 6px;
      outline: none;
      background: #F1F2F2;
      color: #181818;
      font-size: 15px;
      font-weight: 400; }
    .site-content section.bloc-infolettre .input-infolettre [type="submit"] {
      position: absolute;
      top: 0;
      right: 0;
      width: 60px;
      height: 100%;
      border: none;
      outline: none;
      border-radius: 6px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      overflow: hidden;
      color: #fff;
      background: #8798FF;
      text-transform: uppercase; }
      .site-content section.bloc-infolettre .input-infolettre [type="submit"] i {
        position: absolute;
        top: 50%;
        left: 0;
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 100%;
        font-size: 28px;
        text-align: center;
        color: #fff;
        padding-bottom: 0; }
    .site-content section.bloc-infolettre .input-infolettre .parsley-errors-list {
      position: absolute;
      left: 0;
      bottom: -18px;
      width: 100%; }
  @media all and (max-width: 1024px) {
    .site-content section.bloc-infolettre {
      position: relative;
      padding: 40px 20px;
      bottom: 0; } }
  @media all and (max-width: 799px) {
    .site-content section.bloc-infolettre .icon {
      width: 50px; }
    .site-content section.bloc-infolettre .title3 {
      font-size: 18px; } }
  @media all and (max-width: 599px) {
    .site-content section.bloc-infolettre .title3 {
      font-size: 14px; }
    .site-content section.bloc-infolettre .input-infolettre {
      width: 100%; }
      .site-content section.bloc-infolettre .input-infolettre input[type="email"] {
        width: 100%;
        padding: 15px;
        border: none;
        outline: none;
        border-radius: 6px;
        outline: none;
        color: #181818;
        font-size: 15px;
        font-weight: 400; } }

@media all and (max-width: 1024px) {
  .site-content {
    padding-bottom: 0; } }

.main-footer {
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  padding: 0px;
  background: #F1F2F2; }
  .main-footer .block-share {
    height: 48px;
    text-transform: uppercase;
    letter-spacing: 0;
    background-color: #DD5C35;
    transition: all 0.2s ease-in-out; }
    .main-footer .block-share:hover {
      background-color: #8798FF;
      cursor: pointer; }
    .main-footer .block-share .main-text {
      line-height: 30px;
      font-weight: 600;
      letter-spacing: 0;
      color: #fff; }
  .main-footer .icon-share {
    width: 48px;
    height: 48px;
    display: inline-block;
    float: left;
    margin-left: 5px;
    text-align: center; }
    .main-footer .icon-share i {
      color: #fff;
      font-size: 20px;
      margin-top: 15px;
      display: inline-block; }
  .main-footer .main-text {
    color: #414042;
    display: inline-block;
    margin: 0;
    padding: 0;
    float: left;
    padding-top: 12px;
    padding-left: 20px;
    font-size: 14px; }
    @media all and (max-width: 499px) {
      .main-footer .main-text {
        padding-top: 0;
        padding-left: 0;
        padding: 15px 0; } }
  .main-footer .left {
    float: left; }
  .main-footer .right {
    float: right; }
  @media all and (max-width: 1024px) {
    .main-footer {
      position: relative; } }
  @media all and (max-width: 620px) {
    .main-footer .left {
      float: none;
      width: 100%;
      padding-bottom: 15px; }
    .main-footer .right {
      display: none; }
    .main-footer .main-text {
      width: 100%;
      text-align: center; } }

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 28, 36, 0.75);
  opacity: 0;
  z-index: -1;
  transition: all 0.25s ease-in-out; }
  .overlay.visible {
    opacity: .8;
    z-index: 100; }

.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 0 0;
  background: #F1F2F2;
  text-align: center;
  opacity: 0;
  z-index: -1;
  transition: all 0.25s ease-in-out; }
  .custom-popup.visible {
    opacity: 1;
    z-index: 200;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .custom-popup .title3 {
    position: relative;
    width: 100%;
    line-height: 1;
    padding: 25px 0;
    text-align: center;
    background: #fff;
    color: #D1D2D4;
    font-size: 24px; }
    .custom-popup .title3 strong {
      color: #DD5C35; }
    .custom-popup .title3:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      -ms-transform: translate(-50%, 95%);
      transform: translate(-50%, 95%);
      width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 12px solid #fff; }
  .custom-popup .content {
    padding: 35px 50px; }
  .custom-popup hr {
    position: relative;
    width: 65px;
    height: 2px;
    margin: 2% auto 2% auto;
    padding: 0;
    background: #DD5C35;
    border: none; }
  .custom-popup .cta-container .cta {
    font-size: 18px;
    margin-bottom: 0;
    padding: 15px 50px;
    border: none;
    box-shadow: 0 0 0 3px #DD5C35; }
    .custom-popup .cta-container .cta:disabled {
      opacity: .65; }
  .custom-popup .number {
    display: inline-block;
    font-size: 75px;
    color: #DD5C35;
    font-weight: 400;
    text-align: center;
    border: 1px solid #899999;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    line-height: 135px; }
  .custom-popup .text {
    padding: 15px 0;
    text-align: center; }
    .custom-popup .text p {
      margin: 0;
      padding: 0;
      font-size: 17px;
      color: #899999;
      font-weight: 500;
      line-height: 1.4;
      text-align: center; }
  .custom-popup .main-form .form-field.half {
    float: none;
    width: 100%; }
  .custom-popup .main-form input[type="submit"].site-btn,
  .custom-popup .main-form button.site-btn {
    margin-top: 25px; }
  .custom-popup .popup-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #D1D2D4;
    border-radius: 50%; }
    .custom-popup .popup-close-btn .close-cross {
      font-size: 32px;
      font-weight: 100;
      font-family: sans-serif;
      text-align: center;
      line-height: 33px;
      text-indent: 1px;
      color: #D1D2D4; }
  @media only screen and (max-height: 899px) {
    .custom-popup .content {
      padding: 20px 45px; }
    .custom-popup .title3 {
      padding-top: 15px;
      padding-bottom: 15px; }
    .custom-popup h2 {
      font-size: 15px; }
    .custom-popup .main-form label {
      font-size: 12px; }
    .custom-popup .main-form input,
    .custom-popup .main-form select {
      height: 40px;
      margin-bottom: 0; }
    .custom-popup .main-form {
      padding: 0; }
    .custom-popup .main-form input[type="submit"].site-btn,
    .custom-popup .main-form button.site-btn {
      margin-top: 10px;
      line-height: 0;
      padding-top: 20px;
      padding-bottom: 20px; }
    .custom-popup .main-form .parsley-errors-list {
      right: 3px;
      bottom: 1px;
      font-size: 10px; }
    .custom-popup .custom-popup .title3 {
      font-size: 19px; } }
  @media only screen and (max-width: 574px) {
    .custom-popup .popup-close-btn {
      top: 15px;
      right: 15px;
      -ms-transform: translate(0, 0);
      transform: translate(0, 0); }
    .custom-popup .title3 {
      text-align: left;
      padding-left: 15px; } }
  @media only screen and (max-width: 464px) {
    .custom-popup {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      border-radius: 0;
      -ms-transform: none;
      transform: none;
      overflow: scroll; }
      .custom-popup.visible {
        -ms-transform: none;
        transform: none; }
      .custom-popup h2 {
        font-size: 15px; }
      .custom-popup .main-form label {
        font-size: 12px; }
      .custom-popup .main-form input,
      .custom-popup .main-form select {
        height: 40px;
        margin-bottom: 0; }
      .custom-popup .main-form {
        padding: 0; }
      .custom-popup .main-form input[type="submit"].site-btn,
      .custom-popup .main-form button.site-btn {
        width: 100%;
        max-width: inherit;
        margin-top: 10px;
        line-height: 0; }
      .custom-popup .main-form .parsley-errors-list {
        right: 3px;
        bottom: 1px;
        font-size: 10px; }
      .custom-popup .custom-popup .title3 {
        font-size: 19px; } }
  @media (max-height: 899px) and (max-width: 574px) {
    .custom-popup .popup-close-btn {
      top: 7px; } }

.appointment .main-nav .site-btn {
  display: none; }

.appointment .back-btn {
  position: absolute;
  top: 125px;
  left: 50px;
  z-index: 5; }

.appointment .bloc-appointment {
  height: auto;
  background: #f0f0f0;
  padding-bottom: 50px; }
  .appointment .bloc-appointment .hero-banner {
    width: 100%;
    height: 70vh;
    background-color: #000;
    text-align: center;
    background-image: url("../images/hero.jpg");
    background-attachment: scroll;
    background-size: cover;
    background-position: center center; }
    .appointment .bloc-appointment .hero-banner .title1 {
      color: #414042;
      padding-top: 20vh;
      font-size: 36px;
      max-width: 610px;
      margin: 0 auto;
      font-weight: 500; }

.appointment .main-form {
  padding: 0; }
  .appointment .main-form .form-field.half,
  .appointment .main-form .form-input.half {
    width: 100%; }

.appointment .form-container {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 535px;
  height: auto;
  padding: 45px;
  margin: 0 auto;
  background: #fff;
  margin-top: -250px; }
  .appointment .form-container .site-btn {
    margin-top: 25px;
    width: 100%; }

@media all and (max-width: 819px) {
  .appointment .bloc-appointment {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px; }
    .appointment .bloc-appointment .hero-banner {
      background-attachment: scroll;
      background-size: cover; } }

@media only screen and (max-width: 650px) {
  .appointment .form-container {
    margin-top: -50px;
    padding: 25px; }
  .appointment .bloc-appointment {
    padding-bottom: 0; }
    .appointment .bloc-appointment .hero-banner {
      height: 35vh;
      padding: 0 25px; }
      .appointment .bloc-appointment .hero-banner .title1 {
        font-size: 26px;
        padding-top: 10vh; } }

@media only screen and (max-width: 374px) {
  .appointment .bloc-appointment .form-container {
    margin-top: 0;
    padding: 25px; }
  .appointment .bloc-appointment .form-container {
    padding-left: 25px;
    padding-right: 25px; } }

.twitter-wrapper {
  margin: 0 auto;
  padding: 30px;
  max-width: 600px !important; }
  @media screen and (max-width: 768px) {
    .twitter-wrapper {
      padding: 20px; } }

.youtube-wrap {
  width: 100%;
  max-width: 800px;
  margin: 50px auto; }

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

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.header-title {
  position: relative;
  min-height: 70vh;
  background-color: #F1F2F2; }
  .header-title .content {
    color: #fff;
    padding-top: 30vh;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 2;
    text-align: center; }
    .header-title .content .title1 {
      font-size: 32px;
      margin: 0 auto;
      max-width: 740px;
      color: #DD5C35; }
      .header-title .content .title1 span {
        color: #DD5C35; }
  @media all and (max-width: 1024px) {
    .header-title {
      padding-top: 80px; } }
  @media all and (max-width: 767px) {
    .header-title {
      padding-top: 65px; }
      .header-title .content .title1 {
        font-size: 24px;
        line-height: 1.5; } }
  @media all and (max-width: 599px) {
    .header-title .content .title1 {
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 10px; } }
  @media all and (max-width: 469px) {
    .header-title {
      padding-top: 61px; } }

.header-title.fullheight {
  min-height: 100vh;
  background: url("../images/hero.jpg") #F1F2F2 center center no-repeat;
  background-size: cover; }

.policy-section {
  background-color: #E30613;
  padding-bottom: 60px; }
  @media (max-width: 767px) {
    .policy-section {
      padding: 0; } }
  .policy-section .content {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 850px;
    height: auto;
    padding: 45px;
    margin: 0 auto;
    background: #fff;
    margin-top: -150px; }
    @media (max-width: 767px) {
      .policy-section .content {
        margin-top: 0; } }
    .policy-section .content .title3 {
      font-size: 16px;
      font-weight: 900;
      margin-top: 40px;
      padding-bottom: 19px;
      margin-bottom: 19px;
      position: relative; }
      .policy-section .content .title3:before {
        content: '';
        width: 75px;
        height: 2px;
        background-color: #F1F2F2;
        position: absolute;
        left: 0;
        bottom: 0; }
    .policy-section .content p.main-text {
      margin-bottom: 15px;
      line-height: 18px;
      font-size: 15px;
      color: #414042; }
      .policy-section .content p.main-text strong {
        display: block;
        margin-bottom: 5px; }
    .policy-section .content ul {
      padding: 0; }
      .policy-section .content ul li {
        line-height: 18px;
        font-size: 15px;
        color: #414042;
        position: relative; }
        .policy-section .content ul li:before {
          content: "\e905";
          font-family: icomoon !important;
          speak: none;
          font-style: normal;
          font-weight: 400;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
          position: absolute;
          top: 0;
          left: 0;
          color: #E30613;
          width: 20px;
          height: 20px;
          font-size: 20px; }

/**
 * Admin
 *
 */
/* --------------------------------

#Vars

-------------------------------- */
.admin {
  background: #747881; }
  .admin .site-content {
    position: relative;
    padding: 5% 10%;
    background-size: cover;
    background-attachment: scroll; }
  .admin .title2 {
    text-align: center; }
  .admin .site-btn {
    display: block;
    margin: 0 auto; }
  .admin .success {
    color: #16a085; }
  .admin .danger {
    color: #e74c3c; }
  .admin .header {
    position: relative;
    width: 100%;
    height: 95px;
    padding-left: 35px;
    padding-right: 35px;
    margin-bottom: 5px;
    background: #21263a;
    z-index: 9999; }
    .admin .header .hoff-logo {
      display: block;
      float: left; }
    .admin .header .actions {
      position: absolute;
      top: 50%;
      right: 65px;
      color: #fff;
      font-weight: 500;
      letter-spacing: 1px;
      font-size: 17px;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      line-height: 1;
      margin: 0;
      padding: 0; }
      .admin .header .actions i {
        position: relative;
        top: 2px;
        font-size: 130%;
        margin-left: 5px; }
    .admin .header .pop-menu {
      position: absolute;
      top: -50%;
      right: 65px;
      width: 215px;
      height: auto;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 6px;
      box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.25);
      opacity: 0;
      transition: all 0.45s ease;
      z-index: -1; }
      .admin .header .pop-menu.open {
        top: 70%;
        opacity: 1;
        z-index: 99; }
      .admin .header .pop-menu a {
        display: block;
        padding: 5% 0;
        text-align: center;
        color: #333;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        border-bottom: 1px solid #eee;
        letter-spacing: 1px; }
        .admin .header .pop-menu a:hover {
          background: #eee; }
    .admin .header .gradient {
      position: absolute;
      bottom: -5px;
      left: 0;
      height: 5px;
      width: 100%;
      background: url("../images/admin-gradient.jpg") transparent 0 center no-repeat;
      background-size: 100% auto; }
  .admin .main-nav {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 25px;
    background-color: white;
    border-bottom: 0; }
    .admin .main-nav .links {
      float: left; }
      .admin .main-nav .links a {
        float: left;
        position: relative;
        width: auto;
        height: 55px;
        padding: 0 25px;
        color: #333;
        line-height: 55px;
        text-transform: uppercase;
        font-size: 14px; }
        .admin .main-nav .links a.active:after {
          content: '';
          position: absolute;
          left: 15%;
          right: 15%;
          bottom: 0;
          height: 3px;
          background: #DD5C35; }
    .admin .main-nav .add {
      position: absolute;
      top: 50%;
      right: 25px;
      width: auto;
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .admin .button {
    display: inline-block;
    padding: 5px 20px;
    background: #DD5C35;
    color: #fff;
    border-radius: 4px; }
  .admin .main-footer {
    width: 100%;
    height: 95px;
    background: #0f1216;
    border-bottom: 10px solid #4f0808; }
    .admin .main-footer p {
      padding: 0;
      margin: 0;
      color: #fff;
      font-size: 38px;
      text-align: center;
      line-height: 95px; }
  .admin .content-heading {
    padding: 10px 40px;
    background-color: #eee; }
  .admin .table {
    width: 100%;
    margin: 0 auto;
    border: 0;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden; }
    .admin .table tr {
      background: transparent; }
      .admin .table tr.pending {
        background: #FFE5D6;
        border-bottom: 3px solid #EFD3C2; }
      .admin .table tr.annule {
        display: none; }
    .admin .table th {
      padding: 15px 35px;
      color: #fff;
      font-family: 'Open Sans';
      font-size: .9em;
      font-weight: 600;
      line-height: 2em;
      text-decoration: none;
      text-align: center;
      border: none;
      background: #21263a; }
    .admin .table td {
      padding: 15px 35px;
      color: #333;
      font-size: .8em;
      font-weight: 400;
      line-height: 2em;
      text-decoration: none;
      text-align: center; }
      .admin .table td:first-child, .admin .table td:last-child {
        background: #fbfbfb; }
      .admin .table td.active {
        background: #F9F9F9; }
    .admin .table .action {
      display: inline-block;
      width: 26px;
      height: 26px;
      padding: 0 0;
      border-radius: 50%;
      background-color: #DD5C35;
      border: 2px solid #DD5C35;
      color: #e7eaf3;
      font-size: .8em;
      font-weight: 300;
      text-decoration: none;
      text-align: center;
      line-height: 23px; }
      .admin .table .action.success {
        background: #16a085;
        border-color: #16a085; }
      .admin .table .action.danger {
        background: #e74c3c;
        border-color: #e74c3c; }
  .admin .main-footer {
    width: 100%;
    height: 95px;
    padding: 0 0;
    background: #0f1216;
    border-bottom: 10px solid #4f0808;
    z-index: 999; }

.admin.show .bloc-visual {
  position: relative;
  top: 0;
  right: 0;
  width: 35%;
  height: auto;
  z-index: 5;
  padding: 50px 50px 50px 50px;
  float: left; }
  .admin.show .bloc-visual img {
    display: block;
    width: 100%;
    height: auto; }

.admin.show .bloc-infos {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
  z-index: 5;
  padding: 50px 50px 50px 50px;
  background: #fff;
  border-radius: 6px; }
  .admin.show .bloc-infos:before {
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(600px, -50%);
    transform: translate(600px, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #f6f6f6; }
  .admin.show .bloc-infos .colLeft,
  .admin.show .bloc-infos .colRight {
    float: left;
    width: 50%; }
  .admin.show .bloc-infos .row {
    position: relative;
    width: 100%;
    padding: 0 35px 0 0;
    padding-bottom: 35px; }
  .admin.show .bloc-infos h1 {
    padding-bottom: 15px;
    border-bottom: 2px solid #262626; }
  .admin.show .bloc-infos h2 {
    padding: 0 0 5px 0;
    font-size: 22px; }
  .admin.show .bloc-infos p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5; }
  .admin.show .bloc-infos .notifications {
    text-align: center; }
    .admin.show .bloc-infos .notifications .danger {
      display: inline-block;
      color: #e74c3c;
      text-align: center;
      border-top: 1px solid #e74c3c;
      border-bottom: 1px solid #e74c3c;
      margin: 10px; }
  .admin.show .bloc-infos .main-form .form-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); }
  .admin.show .bloc-infos .main-form label {
    color: #e41f39;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px; }
    .admin.show .bloc-infos .main-form label .fa {
      position: relative;
      top: 2px;
      font-size: 145%;
      cursor: pointer;
      color: #16a085; }
    .admin.show .bloc-infos .main-form label[for="pubdate"] {
      margin: 0; }
  .admin.show .bloc-infos .main-form input,
  .admin.show .bloc-infos .main-form select,
  .admin.show .bloc-infos .main-form textarea {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: none;
    background-color: #eee;
    border-radius: 0;
    font-weight: 400;
    outline: none;
    font-size: 14px;
    letter-spacing: 1px;
    color: #565656;
    margin: 5px 0 15px 0; }
    .admin.show .bloc-infos .main-form input.list,
    .admin.show .bloc-infos .main-form select.list,
    .admin.show .bloc-infos .main-form textarea.list {
      margin-bottom: -5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .admin.show .bloc-infos .main-form textarea {
    min-height: 1000px; }
  .admin.show .bloc-infos .main-form input[disabled],
  .admin.show .bloc-infos .main-form select[disabled],
  .admin.show .bloc-infos .main-form textarea[disabled] {
    padding-left: 25px;
    padding-right: 25px;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.02);
    color: #333; }
  .admin.show .bloc-infos .main-form .form-radio {
    float: left;
    width: 30%;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 6px;
    margin: 0 25px 25px 0; }
    .admin.show .bloc-infos .main-form .form-radio input,
    .admin.show .bloc-infos .main-form .form-radio label {
      position: relative;
      display: inline-block;
      width: auto;
      margin: 0 5px;
      padding: 0;
      vertical-align: top;
      height: 40px;
      line-height: 40px;
      color: #132434;
      cursor: pointer;
      text-transform: none; }
  .admin.show .bloc-infos .form-field.fr, .admin.show .bloc-infos .form-field.en {
    position: relative;
    width: 50%;
    float: left; }
  .admin.show .bloc-infos .form-field.fr {
    padding-right: 20px; }
  .admin.show .bloc-infos .form-field.en {
    padding-left: 20px; }
  .admin.show .bloc-infos .form-field .adder {
    float: right;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    background-color: #16a085;
    border: 2px solid #16a085;
    color: #e7eaf3;
    font-size: .8em;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    line-height: 23px;
    margin: 10px 0; }
  .admin.show .bloc-infos .form-field .field {
    position: relative; }
    .admin.show .bloc-infos .form-field .field:hover .remover {
      display: block; }
    .admin.show .bloc-infos .form-field .field .remover {
      display: none;
      position: absolute;
      top: 50%;
      right: 15px;
      -ms-transform: translate(0, -30%);
      transform: translate(0, -30%);
      width: 26px;
      height: 26px;
      padding: 0;
      border-radius: 50%;
      background-color: #e41f39;
      border: 2px solid #e41f39;
      color: #e7eaf3;
      font-size: .8em;
      font-weight: 300;
      text-decoration: none;
      text-align: center;
      line-height: 23px; }
  .admin.show .bloc-infos .main-form .form-field.membre {
    margin-bottom: 2%;
    border-radius: 6px;
    border: 2px solid #eee;
    padding: 3% 5%; }
    .admin.show .bloc-infos .main-form .form-field.membre.half {
      width: 48%; }

/* --------------------------------

Table of content
  -#Imports
  -#Vars
  -#Vb-fullScreenLogin
  -#Parsleyjs - validation assets
  -#Responsive

  -------------------------------- */
/* --------------------------------

#Vb-fullScreenLogin

-------------------------------- */
.vb-fullScreenLogin {
  position: fixed;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../images/cms-background.jpg") transparent center center no-repeat;
  background-size: cover;
  background-attachment: scroll;
  /* --------------------------------

  #Parsleyjs

  -------------------------------- */
  /* --------------------------------

  #Responsive

  -------------------------------- */ }
  .vb-fullScreenLogin .fsl-gradients {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Chrome 10+, Saf5.1+ */
    /* FF3.6+ */
    /* IE10 */
    /* Opera 11.10+ */
    background: linear-gradient(145deg, #DD5C35 10%, #002C50 90%);
    /* W3C */
    opacity: 0.65; }
  .vb-fullScreenLogin .fsl-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    min-width: 300px;
    max-width: 500px;
    min-height: 555px;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    filter: blur(0); }
  .vb-fullScreenLogin .fsl-nav {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0 65px 25px; }
    .vb-fullScreenLogin .fsl-nav a {
      display: inline-block;
      margin: 0;
      padding: 5px 0;
      font-size: 25px;
      color: #fff;
      text-transform: uppercase;
      font-weight: bold;
      margin-right: 35px;
      opacity: 0.5; }
      .vb-fullScreenLogin .fsl-nav a.active {
        opacity: 1;
        border-bottom: 2px solid #fff; }
  .vb-fullScreenLogin .fsl-form-signin {
    position: relative;
    width: 100%;
    height: auto; }
    .vb-fullScreenLogin .fsl-form-signin .form-signin-heading {
      display: none; }
    .vb-fullScreenLogin .fsl-form-signin label {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      color: #fff;
      padding: 10px 25px;
      margin: 10px 0;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      opacity: 1; }
    .vb-fullScreenLogin .fsl-form-signin input {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      background: rgba(255, 255, 255, 0.45);
      border: none;
      outline: none;
      border-radius: 25px;
      line-height: 1.5;
      padding: 10px 25px;
      margin: 10px 0;
      font-size: 16px;
      color: #002C50;
      font-weight: 400; }
    .vb-fullScreenLogin .fsl-form-signin .checkbox {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      padding-bottom: 3px; }
      .vb-fullScreenLogin .fsl-form-signin .checkbox input {
        float: left;
        width: auto;
        height: auto;
        margin: 1px 15px 0 0;
        padding: 0; }
      .vb-fullScreenLogin .fsl-form-signin .checkbox label {
        float: left;
        text-transform: none;
        opacity: 1;
        font-size: 16px; }
    .vb-fullScreenLogin .fsl-form-signin .btn {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      background: #DD5C35;
      border: none;
      outline: none;
      border-radius: 25px;
      line-height: 1.5;
      padding: 12px 25px;
      margin: 10px 0;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      color: #fff;
      transition: all 0.45s ease-out; }
      .vb-fullScreenLogin .fsl-form-signin .btn:hover {
        background: #fff;
        color: #002C50; }
    .vb-fullScreenLogin .fsl-form-signin hr {
      position: relative;
      display: block;
      width: 100%;
      height: 3px;
      border: none;
      background: #fff;
      opacity: 0.45;
      border-radius: 25px;
      margin: 75px 0 0 0;
      padding: 0 0; }
    .vb-fullScreenLogin .fsl-form-signin .fsl-foot-links {
      position: relative;
      width: 100%;
      height: auto;
      padding: 25px 25px;
      text-align: center; }
      .vb-fullScreenLogin .fsl-form-signin .fsl-foot-links a {
        display: inline-block;
        text-align: center;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        opacity: 1;
        padding: 15px;
        transition: all 0.45s ease-out; }
        .vb-fullScreenLogin .fsl-form-signin .fsl-foot-links a:hover {
          opacity: 1; }
  .vb-fullScreenLogin .fsl-form-signin .parsley-errors-list {
    margin: 0;
    padding: 0 25px;
    list-style-type: none; }
    .vb-fullScreenLogin .fsl-form-signin .parsley-errors-list li {
      margin: 0;
      padding: 0 10px;
      border-left: 1px solid #fff;
      color: #002C50;
      font-size: 12px;
      font-weight: bold; }
  @media only screen and (max-width: 375px) {
    .vb-fullScreenLogin {
      position: relative;
      width: auto;
      height: auto;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto; }
      .vb-fullScreenLogin .fsl-gradients {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto; }
      .vb-fullScreenLogin .fsl-content {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        padding: 0 20px; }
      .vb-fullScreenLogin .fsl-nav {
        padding-bottom: 35px; }
        .vb-fullScreenLogin .fsl-nav a {
          margin-right: 15px; }
      .vb-fullScreenLogin .fsl-form-signin hr {
        margin-top: 35px; } }
  @media only screen and (max-width: 320px) {
    .vb-fullScreenLogin .fsl-nav {
      padding-bottom: 0; }
    .vb-fullScreenLogin .fsl-form-signin hr {
      margin-top: 0; }
    .vb-fullScreenLogin .fsl-form-signin label {
      padding-top: 8px;
      padding-bottom: 8px; }
    .vb-fullScreenLogin .fsl-form-signin input {
      padding-top: 8px;
      padding-bottom: 8px; }
    .vb-fullScreenLogin .fsl-form-signin .fsl-foot-links {
      padding-top: 10px;
      padding-bottom: 10px; } }

/**
 * Cropper
 *
 */
.modal-title {
  text-align: center; }

.site-content section.avatar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  position: initial;
  top: -6px;
  margin-bottom: -60px;
  padding-bottom: 60px; }
  .site-content section.avatar .heading {
    padding-top: 45px; }

.avatar-view {
  cursor: pointer;
  text-align: center; }
  .avatar-view img {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    height: auto; }

.avatar-body {
  padding-right: 15px;
  padding-left: 15px; }

.avatar-upload {
  overflow: hidden;
  text-align: center; }
  .avatar-upload p {
    padding: 3% 0; }
  .avatar-upload label, .avatar-upload input[type=file] {
    display: inline-block;
    margin: 0;
    padding: 0; }

.avatar-upload label {
  display: none;
  width: 100px; }

.avatar-upload input {
  display: block;
  margin-left: 110px; }

.avatar-alert {
  margin-top: 10px;
  margin-bottom: 10px; }

.avatar-wrapper {
  height: 364px;
  width: 100%;
  margin-top: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.25);
  background-color: #fcfcfc;
  overflow: hidden; }

.avatar-wrapper img {
  display: block;
  height: auto;
  max-width: 100%; }

.avatar-preview {
  float: left;
  margin-top: 15px;
  margin-right: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden; }

.avatar-preview:hover {
  border-color: #ccf;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); }

.avatar-preview img {
  width: 100%; }

.preview-lg {
  height: 184px;
  width: 184px;
  margin-top: 15px; }

.preview-md {
  height: 100px;
  width: 100px; }

.preview-sm {
  height: 50px;
  width: 50px; }

@media (min-width: 992px) {
  .avatar-preview {
    float: none; } }

.avatar-btns {
  margin-top: 30px;
  margin-bottom: 15px; }

.avatar-btns .btn-group {
  margin-right: 5px; }

.loading {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff url("../images/loading.gif") no-repeat center center;
  opacity: .75;
  filter: alpha(opacity=75);
  z-index: 20140628; }

.table td.drag-handle-col {
  /*padding-left: 8px;
  padding-right: 8px;*/
  text-align: center; }

.handle {
  display: inline-block;
  cursor: move;
  cursor: -webkit-grabbing;
  font-size: 25px;
  color: #21263a; }

.select-filter {
  float: right;
  margin-bottom: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: white;
  background-color: #21263a;
  padding: 20px;
  border-radius: 6px; }
  .select-filter.for-categories {
    float: left; }
  .select-filter select {
    background: none;
    border: 1px solid white;
    outline: none; }
  .select-filter option {
    color: #333; }

#ajax-wrap {
  position: relative; }

#ajax-loader {
  padding: 100px 0; }

.loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: content-box; }
  .loader-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: transparent;
    z-index: -1;
    transition: top 1.2s linear 3.1s; }
  .loader-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: transparent;
    z-index: -1;
    transition: bottom 1.2s linear 3.1s; }
  .loader-container:before, .loader-container:after {
    box-sizing: content-box; }
  .loader-container *,
  .loader-container *:before,
  .loader-container *:after {
    box-sizing: content-box; }

.progress {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -ms-transform-origin: center;
  transform-origin: center; }
  .progress .progress__item {
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 2px solid #DD5C35;
    border-radius: 50%; }
    .progress .progress__item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      margin-top: -3px;
      margin-left: 0px;
      width: 45px;
      height: 45px;
      border-top: solid 10px #DD5C35;
      border-right: solid 10px #DD5C35;
      border-top-right-radius: 100%;
      -ms-transform-origin: left bottom;
      transform-origin: left bottom;
      animation: spin 3s linear infinite; }
  .progress.float .progress__item:before {
    border-top-width: 2px;
    margin-top: 0px;
    height: 50px; }
  .progress.float.shadow:before {
    border-top-width: 2px;
    margin-top: -41px;
    height: 50px; }
  .progress.shadow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -43px 0 0 12px;
    width: 45px;
    height: 45px;
    border-top: solid 10px rgba(0, 0, 0, 0.08);
    border-right: solid 10px rgba(0, 0, 0, 0.08);
    border-top-right-radius: 100%;
    z-index: -1;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    animation: spin 3s linear infinite; }
  .progress.shadow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    color: rgba(0, 0, 0, 0.08);
    text-align: center;
    line-height: 100px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    margin: -40px 0 0 -40px;
    z-index: -1;
    -ms-transform-origin: center;
    transform-origin: center; }
  .progress.done .progress__item {
    opacity: 0;
    animation: done 3.1s;
    transition: opacity 0.3s linear 3.1s; }
    .progress.done .progress__item:before {
      display: none; }
  .progress.done:before {
    display: none; }
  .progress.done:after {
    opacity: 0;
    animation: done 3.1s;
    transition: opacity 0.15s linear 3.1s; }

@keyframes spin {
  100% {
    transform: rotate(360deg); } }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.picker,
.picker * {
  outline: none;
  box-shadow: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%; }

/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12); }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em; } }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em; } }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--outfocus {
  color: #dddddd; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */

/*# sourceMappingURL=app.css.map */
