/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

button {
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 9px;
  height: 9px;
  opacity: 0.3;
  border-radius: 50%;
  margin-right: 7px;
  text-indent: -999em;
  transition: all 0.4s ease(in-out-quint);
  cursor: pointer;
  background-color: #1F1F23;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li:hover, .slick-dots li.slick-active {
  opacity: 1;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

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

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

/**
*    FONTS
**/
/**
*    COLORS
**/
.color-1 {
  color: #1a1a1a;
}

.color-2 {
  color: #999999;
}

.bg-black {
  background: #000000;
}

.bg-white {
  background: #ffffff;
}

.bg-color-1 {
  background: #1a1a1a;
}

.bg-color-2 {
  background: #999999;
}

.bg-green {
  background: #CCF1E3;
}

.bg-yellow {
  background: #FFF088;
}

.bg-orange {
  background: #F7C7B8;
}

.bg-blue {
  background: #BBDAFF;
}

.bg-grey {
  background: #CCCCCC;
}

.bg-lightGrey {
  background: #F0F0F0;
}

/**
*    FORMS
**/
/**
*    CUSTOM EASING
**/
.grabCursor {
  cursor: grab;
}

.sticky {
  position: sticky;
  top: 160px;
}

.full-height, .header .nav-main, .page-transition {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
.flex.start {
  justify-content: flex-start;
}
.flex.end {
  justify-content: flex-end;
}
.flex.top {
  align-items: flex-start;
}
.flex.middle {
  align-items: center;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.stretch {
  align-items: stretch;
}
.flex.baseline {
  align-items: baseline;
}

@-webkit-keyframes anim_underline {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  49.9% {
    width: 0%;
    left: auto;
    right: 0;
  }
  50% {
    width: 0%;
    left: 0;
    right: auto;
  }
  100% {
    width: 100%;
    left: 0;
    right: auto;
  }
}
@keyframes anim_underline {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  49.9% {
    width: 0%;
    left: auto;
    right: 0;
  }
  50% {
    width: 0%;
    left: 0;
    right: auto;
  }
  100% {
    width: 100%;
    left: 0;
    right: auto;
  }
}
@-webkit-keyframes anim_growFromLeft {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  100% {
    width: 100%;
    left: 0;
    right: auto;
  }
}
@keyframes anim_growFromLeft {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  100% {
    width: 100%;
    left: 0;
    right: auto;
  }
}
@-webkit-keyframes anim_shrinkToRight {
  0% {
    width: 100%;
    right: 0;
    left: auto;
  }
  100% {
    width: 0;
    right: 0;
    left: auto;
  }
}
@keyframes anim_shrinkToRight {
  0% {
    width: 100%;
    right: 0;
    left: auto;
  }
  100% {
    width: 0;
    right: 0;
    left: auto;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
html, body {
  font-family: "sofia-pro", sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}

body.no-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: #1a1a1a;
}
a:hover {
  color: #999999;
}

.big-arrow {
  position: fixed;
  width: 100px;
  height: 100px;
  top: 200px;
  left: 50vw;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.big-arrow svg * {
  fill: #ffffff;
}
@media only screen and (min-width: 1040px) {
  .big-arrow.visible {
    opacity: 1;
  }
}

.spacer {
  height: 30px;
}
.spacer.big {
  height: 100px;
}
.spacer.small {
  height: 20px;
}

.shadow {
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.padding-header {
  padding-top: 180px;
}
@media only screen and (min-width: 1040px) {
  .padding-header {
    padding-top: 260px;
  }
}

/*
**   CUSTOM SELECTION
*/
::-moz-selection { /* Code for Firefox */
  color: var(--main-color);
  background: #1a1a1a;
}

::selection {
  color: var(--main-color);
  background: #1a1a1a;
}

.white ::-moz-selection { /* Code for Firefox */
  color: #1a1a1a;
  background: var(--main-color);
}
.white ::selection {
  color: #1a1a1a;
  background: var(--main-color);
}

/*
**  CUSTOM SCROLLBAR
*/
/* width */
::-webkit-scrollbar {
  width: 2px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--main-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1a1a1a;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1a1a1a;
}

.font-l0 {
  font-weight: 700;
  letter-spacing: normal;
  font-size: clamp(50px, 6.6vw, 80px);
  line-height: clamp(60px, 8vw, 100px);
}

.font-l1, .faq-container.all-faqs .left .title {
  font-weight: 700;
  letter-spacing: normal;
  font-size: clamp(30px, 3.4vw, 55px);
  line-height: clamp(36px, 3.75vw, 60px);
}

.font-l2, .faq-container .left .title, .block_text.small-title .susy-container .titre, .block_text.small-title .slider-articles .slick-container .titre, .slider-articles .block_text.small-title .slick-container .titre {
  font-weight: 700;
  letter-spacing: normal;
  font-size: clamp(25px, 2.5vw, 40px);
  line-height: clamp(32px, 2.9vw, 46px);
}

.font-l3, .wp-content h3, .wp-content h2 {
  font-weight: 700;
  letter-spacing: normal;
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: clamp(28px, 2.1vw, 34px);
}

.font-l4, .article-content .content > .right .blog-author a, .wp-content h5, .wp-content h4 {
  font-weight: 400;
  letter-spacing: normal;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: clamp(28px, 2.1vw, 34px);
}
.font-l4.regular, .article-content .content > .right .blog-author a.regular, .wp-content h5.regular, .wp-content h4.regular {
  font-weight: 400;
}
.font-l4.regular strong, .article-content .content > .right .blog-author a.regular strong, .wp-content h5.regular strong, .wp-content h4.regular strong {
  font-weight: 700;
}

.surtitre {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 18px;
  line-height: 28px;
}

.font-p, .wp-content .wp-block-table tbody tr td:before, .wp-content .wp-block-table th, .wp-content .wp-block-table td, .wp-content ul li, .wp-content ol li, .wp-content p, .wp-content h6, .files-manager .inputfile + label, .btn.full-black {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 26px;
}
.font-p strong, .wp-content .wp-block-table tbody tr td:before strong, .wp-content .wp-block-table th strong, .wp-content .wp-block-table td strong, .wp-content ul li strong, .wp-content ol li strong, .wp-content p strong, .wp-content h6 strong, .files-manager .inputfile + label strong, .btn.full-black strong {
  font-weight: 700;
}
.font-p em, .wp-content .wp-block-table tbody tr td:before em, .wp-content .wp-block-table th em, .wp-content .wp-block-table td em, .wp-content ul li em, .wp-content ol li em, .wp-content p em, .wp-content h6 em, .files-manager .inputfile + label em, .btn.full-black em {
  font-style: italic;
}

.font-menu, .wp-content .wp-block-button .wp-block-button__link {
  font-weight: 700;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 26px;
}

.font-btn, .footer .footer-middle .col.newsletter .nl-title, .footer .footer-middle .col.menus .menu .menu-item a, .btn {
  font-weight: 700;
  letter-spacing: normal;
  font-size: 20px;
  line-height: 20px;
}

.font-btn-small {
  font-weight: 700;
  letter-spacing: normal;
  font-size: 20px;
  line-height: 20px;
}

.font-lien, .article-content .article-infos .post-categories li a, .link, .btn.small {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 24px;
}
.font-lien.bold, .article-content .article-infos .post-categories li a.bold, .bold.link, .bold.btn.small {
  font-weight: 700;
}

.font-mention, .wp-content .wp-block-table figcaption, .wp-content .wp-block-quote .cite, .footer .footer-bottom .col.akrolab a, .footer .footer-bottom .col.credits .menu-item a, .footer .footer-bottom .col.credits .menu-item span, .footer .footer-middle .col.contact, .custom-checkbox, .custom-radio {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 14px;
  line-height: 20px;
}

.font-forms, .files-manager .add-file, .custom-select, input[type=text], input[type=text]:focus,
input[type=password], input[type=password]:focus,
input[type=tel], input[type=tel]:focus,
input[type=email], input[type=email]:focus,
input[type=date], input[type=date]:focus,
textarea, textarea:focus {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 26px;
}

.font-label, .label-anime label, .label-static label {
  font-weight: 400;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 26px;
}

input[type=text], input[type=text]:focus,
input[type=password], input[type=password]:focus,
input[type=tel], input[type=tel]:focus,
input[type=email], input[type=email]:focus,
input[type=date], input[type=date]:focus,
textarea, textarea:focus {
  font-family: "sofia-pro", sans-serif;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 20px 30px;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  outline: none;
  color: #1a1a1a;
  border: none;
  border-bottom: 2px solid #1a1a1a;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
input[type=text].no-border, input[type=text]:focus.no-border,
input[type=password].no-border, input[type=password]:focus.no-border,
input[type=tel].no-border, input[type=tel]:focus.no-border,
input[type=email].no-border, input[type=email]:focus.no-border,
input[type=date].no-border, input[type=date]:focus.no-border,
textarea.no-border, textarea:focus.no-border {
  border: none;
}
input[type=text].required, input[type=text]:focus.required,
input[type=password].required, input[type=password]:focus.required,
input[type=tel].required, input[type=tel]:focus.required,
input[type=email].required, input[type=email]:focus.required,
input[type=date].required, input[type=date]:focus.required,
textarea.required, textarea:focus.required {
  color: #dd4747;
  border-bottom: 2px solid #dd4747;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:active, input[type=text]:focus:-webkit-autofill, input[type=text]:focus:-webkit-autofill:hover, input[type=text]:focus:-webkit-autofill:focus, input[type=text]:focus:-webkit-autofill:active,
input[type=password]:-webkit-autofill,
input[type=password]:-webkit-autofill:hover,
input[type=password]:-webkit-autofill:focus,
input[type=password]:-webkit-autofill:active, input[type=password]:focus:-webkit-autofill, input[type=password]:focus:-webkit-autofill:hover, input[type=password]:focus:-webkit-autofill:focus, input[type=password]:focus:-webkit-autofill:active,
input[type=tel]:-webkit-autofill,
input[type=tel]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill:active, input[type=tel]:focus:-webkit-autofill, input[type=tel]:focus:-webkit-autofill:hover, input[type=tel]:focus:-webkit-autofill:focus, input[type=tel]:focus:-webkit-autofill:active,
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill:active, input[type=email]:focus:-webkit-autofill, input[type=email]:focus:-webkit-autofill:hover, input[type=email]:focus:-webkit-autofill:focus, input[type=email]:focus:-webkit-autofill:active,
input[type=date]:-webkit-autofill,
input[type=date]:-webkit-autofill:hover,
input[type=date]:-webkit-autofill:focus,
input[type=date]:-webkit-autofill:active, input[type=date]:focus:-webkit-autofill, input[type=date]:focus:-webkit-autofill:hover, input[type=date]:focus:-webkit-autofill:focus, input[type=date]:focus:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active, textarea:focus:-webkit-autofill, textarea:focus:-webkit-autofill:hover, textarea:focus:-webkit-autofill:focus, textarea:focus:-webkit-autofill:active {
  background: rgba(255, 255, 255, 0);
  color: #1a1a1a;
}
input[type=text]::placeholder, input[type=text]:focus::placeholder,
input[type=password]::placeholder, input[type=password]:focus::placeholder,
input[type=tel]::placeholder, input[type=tel]:focus::placeholder,
input[type=email]::placeholder, input[type=email]:focus::placeholder,
input[type=date]::placeholder, input[type=date]:focus::placeholder,
textarea::placeholder, textarea:focus::placeholder {
  color: #1a1a1a;
  opacity: 0.7;
}
input[type=text]::-webkit-input-placeholder, input[type=text]:focus::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder, input[type=password]:focus::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder, input[type=tel]:focus::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder, input[type=email]:focus::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder, input[type=date]:focus::-webkit-input-placeholder,
textarea::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #1a1a1a;
  opacity: 0.7;
}
input[type=text]:-moz-placeholder, input[type=text]:focus:-moz-placeholder,
input[type=password]:-moz-placeholder, input[type=password]:focus:-moz-placeholder,
input[type=tel]:-moz-placeholder, input[type=tel]:focus:-moz-placeholder,
input[type=email]:-moz-placeholder, input[type=email]:focus:-moz-placeholder,
input[type=date]:-moz-placeholder, input[type=date]:focus:-moz-placeholder,
textarea:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #1a1a1a;
  opacity: 0.7;
}
input[type=text]::-moz-placeholder, input[type=text]:focus::-moz-placeholder,
input[type=password]::-moz-placeholder, input[type=password]:focus::-moz-placeholder,
input[type=tel]::-moz-placeholder, input[type=tel]:focus::-moz-placeholder,
input[type=email]::-moz-placeholder, input[type=email]:focus::-moz-placeholder,
input[type=date]::-moz-placeholder, input[type=date]:focus::-moz-placeholder,
textarea::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #1a1a1a;
  opacity: 0.7;
}
input[type=text]:-ms-input-placeholder, input[type=text]:focus:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder, input[type=tel]:focus:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder, input[type=email]:focus:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder, input[type=date]:focus:-ms-input-placeholder,
textarea:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #1a1a1a;
  opacity: 0.7;
}
input[type=text].opacity-filled, input[type=text]:focus.opacity-filled,
input[type=password].opacity-filled, input[type=password]:focus.opacity-filled,
input[type=tel].opacity-filled, input[type=tel]:focus.opacity-filled,
input[type=email].opacity-filled, input[type=email]:focus.opacity-filled,
input[type=date].opacity-filled, input[type=date]:focus.opacity-filled,
textarea.opacity-filled, textarea:focus.opacity-filled {
  opacity: 0.4;
}
input[type=text].opacity-filled.filled, input[type=text].opacity-filled:focus, input[type=text]:focus.opacity-filled.filled, input[type=text]:focus.opacity-filled:focus,
input[type=password].opacity-filled.filled,
input[type=password].opacity-filled:focus, input[type=password]:focus.opacity-filled.filled, input[type=password]:focus.opacity-filled:focus,
input[type=tel].opacity-filled.filled,
input[type=tel].opacity-filled:focus, input[type=tel]:focus.opacity-filled.filled, input[type=tel]:focus.opacity-filled:focus,
input[type=email].opacity-filled.filled,
input[type=email].opacity-filled:focus, input[type=email]:focus.opacity-filled.filled, input[type=email]:focus.opacity-filled:focus,
input[type=date].opacity-filled.filled,
input[type=date].opacity-filled:focus, input[type=date]:focus.opacity-filled.filled, input[type=date]:focus.opacity-filled:focus,
textarea.opacity-filled.filled,
textarea.opacity-filled:focus, textarea:focus.opacity-filled.filled, textarea:focus.opacity-filled:focus {
  opacity: 1;
}
input[type=text]:hover, input[type=text]:focus:hover,
input[type=password]:hover, input[type=password]:focus:hover,
input[type=tel]:hover, input[type=tel]:focus:hover,
input[type=email]:hover, input[type=email]:focus:hover,
input[type=date]:hover, input[type=date]:focus:hover,
textarea:hover, textarea:focus:hover {
  color: #1a1a1a;
}
input[type=text]:hover:-webkit-autofill, input[type=text]:hover:-webkit-autofill:hover, input[type=text]:hover:-webkit-autofill:focus, input[type=text]:hover:-webkit-autofill:active, input[type=text]:focus:hover:-webkit-autofill, input[type=text]:focus:hover:-webkit-autofill:hover, input[type=text]:focus:hover:-webkit-autofill:focus, input[type=text]:focus:hover:-webkit-autofill:active,
input[type=password]:hover:-webkit-autofill,
input[type=password]:hover:-webkit-autofill:hover,
input[type=password]:hover:-webkit-autofill:focus,
input[type=password]:hover:-webkit-autofill:active, input[type=password]:focus:hover:-webkit-autofill, input[type=password]:focus:hover:-webkit-autofill:hover, input[type=password]:focus:hover:-webkit-autofill:focus, input[type=password]:focus:hover:-webkit-autofill:active,
input[type=tel]:hover:-webkit-autofill,
input[type=tel]:hover:-webkit-autofill:hover,
input[type=tel]:hover:-webkit-autofill:focus,
input[type=tel]:hover:-webkit-autofill:active, input[type=tel]:focus:hover:-webkit-autofill, input[type=tel]:focus:hover:-webkit-autofill:hover, input[type=tel]:focus:hover:-webkit-autofill:focus, input[type=tel]:focus:hover:-webkit-autofill:active,
input[type=email]:hover:-webkit-autofill,
input[type=email]:hover:-webkit-autofill:hover,
input[type=email]:hover:-webkit-autofill:focus,
input[type=email]:hover:-webkit-autofill:active, input[type=email]:focus:hover:-webkit-autofill, input[type=email]:focus:hover:-webkit-autofill:hover, input[type=email]:focus:hover:-webkit-autofill:focus, input[type=email]:focus:hover:-webkit-autofill:active,
input[type=date]:hover:-webkit-autofill,
input[type=date]:hover:-webkit-autofill:hover,
input[type=date]:hover:-webkit-autofill:focus,
input[type=date]:hover:-webkit-autofill:active, input[type=date]:focus:hover:-webkit-autofill, input[type=date]:focus:hover:-webkit-autofill:hover, input[type=date]:focus:hover:-webkit-autofill:focus, input[type=date]:focus:hover:-webkit-autofill:active,
textarea:hover:-webkit-autofill,
textarea:hover:-webkit-autofill:hover,
textarea:hover:-webkit-autofill:focus,
textarea:hover:-webkit-autofill:active, textarea:focus:hover:-webkit-autofill, textarea:focus:hover:-webkit-autofill:hover, textarea:focus:hover:-webkit-autofill:focus, textarea:focus:hover:-webkit-autofill:active {
  background: rgba(255, 255, 255, 0);
  color: #1a1a1a;
}
input[type=text]:hover::placeholder, input[type=text]:focus:hover::placeholder,
input[type=password]:hover::placeholder, input[type=password]:focus:hover::placeholder,
input[type=tel]:hover::placeholder, input[type=tel]:focus:hover::placeholder,
input[type=email]:hover::placeholder, input[type=email]:focus:hover::placeholder,
input[type=date]:hover::placeholder, input[type=date]:focus:hover::placeholder,
textarea:hover::placeholder, textarea:focus:hover::placeholder {
  color: #1a1a1a;
}
input[type=text]:hover::-webkit-input-placeholder, input[type=text]:focus:hover::-webkit-input-placeholder,
input[type=password]:hover::-webkit-input-placeholder, input[type=password]:focus:hover::-webkit-input-placeholder,
input[type=tel]:hover::-webkit-input-placeholder, input[type=tel]:focus:hover::-webkit-input-placeholder,
input[type=email]:hover::-webkit-input-placeholder, input[type=email]:focus:hover::-webkit-input-placeholder,
input[type=date]:hover::-webkit-input-placeholder, input[type=date]:focus:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder, textarea:focus:hover::-webkit-input-placeholder {
  color: #1a1a1a;
}
input[type=text]:hover:-moz-placeholder, input[type=text]:focus:hover:-moz-placeholder,
input[type=password]:hover:-moz-placeholder, input[type=password]:focus:hover:-moz-placeholder,
input[type=tel]:hover:-moz-placeholder, input[type=tel]:focus:hover:-moz-placeholder,
input[type=email]:hover:-moz-placeholder, input[type=email]:focus:hover:-moz-placeholder,
input[type=date]:hover:-moz-placeholder, input[type=date]:focus:hover:-moz-placeholder,
textarea:hover:-moz-placeholder, textarea:focus:hover:-moz-placeholder {
  color: #1a1a1a;
}
input[type=text]:hover::-moz-placeholder, input[type=text]:focus:hover::-moz-placeholder,
input[type=password]:hover::-moz-placeholder, input[type=password]:focus:hover::-moz-placeholder,
input[type=tel]:hover::-moz-placeholder, input[type=tel]:focus:hover::-moz-placeholder,
input[type=email]:hover::-moz-placeholder, input[type=email]:focus:hover::-moz-placeholder,
input[type=date]:hover::-moz-placeholder, input[type=date]:focus:hover::-moz-placeholder,
textarea:hover::-moz-placeholder, textarea:focus:hover::-moz-placeholder {
  color: #1a1a1a;
}
input[type=text]:hover:-ms-input-placeholder, input[type=text]:focus:hover:-ms-input-placeholder,
input[type=password]:hover:-ms-input-placeholder, input[type=password]:focus:hover:-ms-input-placeholder,
input[type=tel]:hover:-ms-input-placeholder, input[type=tel]:focus:hover:-ms-input-placeholder,
input[type=email]:hover:-ms-input-placeholder, input[type=email]:focus:hover:-ms-input-placeholder,
input[type=date]:hover:-ms-input-placeholder, input[type=date]:focus:hover:-ms-input-placeholder,
textarea:hover:-ms-input-placeholder, textarea:focus:hover:-ms-input-placeholder {
  color: #1a1a1a;
}

textarea {
  resize: vertical;
  min-height: 70px;
  height: auto;
}

.label-static label {
  display: block;
  padding-left: 30px;
  padding-bottom: 15px;
}

.label-anime {
  position: relative;
}
.label-anime input[type=text], .label-anime input[type=text]:focus,
.label-anime input[type=password], .label-anime input[type=password]:focus,
.label-anime input[type=tel], .label-anime input[type=tel]:focus,
.label-anime input[type=email], .label-anime input[type=email]:focus,
.label-anime input[type=date], .label-anime input[type=date]:focus {
  padding: 30px 10px 10px;
}
.label-anime textarea, .label-anime textarea:focus {
  padding: 0 10px;
}
.label-anime label {
  pointer-events: none;
  position: absolute;
  left: 10px;
  top: 23px;
  z-index: 1;
  color: #1a1a1a;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.label-anime.focused label {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
  font-size: 12px;
  opacity: 0.6;
}

.textarea-container {
  padding-top: 30px;
}
.textarea-container .label-anime label {
  top: -10px;
}

.input-with-button {
  position: relative;
}
.input-with-button input[type=text], .input-with-button input[type=text]:focus,
.input-with-button input[type=password], .input-with-button input[type=password]:focus,
.input-with-button input[type=tel], .input-with-button input[type=tel]:focus,
.input-with-button input[type=email], .input-with-button input[type=email]:focus,
.input-with-button textarea, .input-with-button textarea:focus {
  padding: 20px 140px 20px 30px;
}
.input-with-button.label-anime input[type=text], .input-with-button.label-anime input[type=text]:focus,
.input-with-button.label-anime input[type=password], .input-with-button.label-anime input[type=password]:focus,
.input-with-button.label-anime input[type=tel], .input-with-button.label-anime input[type=tel]:focus,
.input-with-button.label-anime input[type=email], .input-with-button.label-anime input[type=email]:focus,
.input-with-button.label-anime input[type=date], .input-with-button.label-anime input[type=date]:focus,
.input-with-button.label-anime textarea, .input-with-button.label-anime textarea:focus {
  padding: 30px 140px 10px 30px;
}
.input-with-button .btn {
  position: absolute;
  top: 0;
  right: 0;
}

.checkbox-list, .radio-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.checkbox-list .title, .radio-list .title {
  margin-bottom: 15px;
}

.required input[type=text], .required input[type=text]:focus,
.required input[type=password], .required input[type=password]:focus,
.required input[type=tel], .required input[type=tel]:focus,
.required input[type=email], .required input[type=email]:focus,
.required input[type=date], .required input[type=date]:focus,
.required textarea, .required textarea:focus {
  color: #dd4747;
  border-bottom: 2px solid #dd4747;
  opacity: 1;
}
.required label {
  color: #dd4747;
}

.susy-container, .slider-articles .slick-container {
  width: 100%;
  margin: auto;
  max-width: 90%;
}
@media only screen and (min-width: 800px) {
  .susy-container, .slider-articles .slick-container {
    max-width: calc(145px + ((100% - 203px) / 8 * 6));
  }
}
@media only screen and (min-width: 1040px) {
  .susy-container, .slider-articles .slick-container {
    max-width: calc(319px + ((100% - 377px) / 14 * 12));
  }
}

/**
TODO

buttons
links
others...

*/
.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 22px 27px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-sizing: border-box;
}
.btn:before {
  content: "";
  z-index: 0;
  box-sizing: border-box;
  position: absolute;
  border-radius: 32px;
  width: 64px;
  height: 64px;
  opacity: 0.4;
  background: #ffffff;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  line-height: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn .btn-text {
  position: relative;
  z-index: 1;
}
.btn.button-input {
  border-radius: 0;
  padding: 20px 30px;
}
.btn.button-input:before {
  border-radius: 0;
}
.btn.small {
  padding: 4px 15px;
}
.btn.small:before {
  width: 100%;
  height: 32px;
}
.btn.white {
  color: #ffffff;
}
.btn.black {
  color: #1a1a1a;
}
.btn.black:before {
  opacity: 0.5;
}
.btn.full-black {
  color: #ffffff;
  padding: 15px 45px;
}
.btn.full-black:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}
.btn.green:before {
  background: #CCF1E3;
}
.btn.yellow:before {
  background: #FFF088;
}
.btn.orange:before {
  background: #F7C7B8;
}
.btn.blue:before {
  background: #BBDAFF;
}
.btn:hover:before, .btn.on:before {
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.btn:hover.white, .btn.on.white {
  color: #000000;
}
.btn:hover.small:before, .btn.on.small:before {
  opacity: 1;
}

.link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  padding-right: 45px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.link.white {
  color: #ffffff;
}
.link.white .picto svg * {
  fill: #ffffff;
}
.link.color_1 {
  color: #1a1a1a;
}
.link.color_1 .picto svg * {
  fill: #1a1a1a;
}
.link .picto {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 7px;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.link .picto.off {
  opacity: 1;
  right: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.link .picto.on {
  left: -20px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}
.link:hover, .link.on {
  padding-right: 0;
  padding-left: 45px;
}
.link:hover .picto.off, .link.on .picto.off {
  right: -20px;
  opacity: 0;
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
.link:hover .picto.on, .link.on .picto.on {
  left: 0;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.page-template-design-system .color-sampler {
  width: 120px;
  margin-right: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.page-template-design-system .color-sampler .color {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.page-template-design-system .font-l1, .page-template-design-system .faq-container.all-faqs .left .title, .faq-container.all-faqs .left .page-template-design-system .title {
  position: relative;
  display: inline-block;
}
.page-template-design-system .font-l1 .picto, .page-template-design-system .faq-container.all-faqs .left .title .picto, .faq-container.all-faqs .left .page-template-design-system .title .picto {
  position: absolute;
  width: 60px;
  top: -40px;
  right: -50px;
}
.page-template-design-system hr {
  border: none;
  border-top: 1px solid #999999;
}
.page-template-design-system .cols-container {
  flex-direction: column;
}
.page-template-design-system .cols-container .left, .page-template-design-system .cols-container .right {
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .page-template-design-system .cols-container {
    flex-direction: row;
  }
  .page-template-design-system .cols-container .left, .page-template-design-system .cols-container .right {
    width: calc(145px + ((100% - 319px) / 12 * 6));
  }
}
.page-template-design-system .video-player-container {
  position: relative;
  width: calc(203px + ((100% - 319px) / 12 * 8));
  min-height: 40vw;
  margin: auto;
}
.page-template-design-system .video-player-container.fullscreen {
  width: 100%;
  min-height: calc(100vh - 70px);
}
.page-template-design-system .video-list {
  width: 100%;
}
.page-template-design-system .video-list .video-player-container {
  width: calc(87px + ((100% - 319px) / 12 * 4));
  min-height: 20vw;
  margin-bottom: 30px;
}

.custom-select {
  position: relative;
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.custom-select .select-container {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 0 30px;
  border: 2px solid #1a1a1a;
  border-radius: 25px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
  overflow: hidden;
}
.custom-select.open .select-container {
  z-index: 3;
}
.custom-select .select-selected {
  position: relative;
  padding: 10px 60px 10px 30px;
  margin: auto -30px;
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  width: 15px;
  height: 15px;
  background: url(../img/pictos/arrow_small_down.svg) 0px 3px no-repeat;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select .select-selected.select-arrow-active:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.custom-select .select-items div,
.custom-select .select-selected {
  color: #1a1a1a;
  cursor: pointer;
  user-select: none;
}
.custom-select .select-items {
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 9;
  overflow: hidden;
  margin: auto -30px;
}
.custom-select .select-hide {
  height: 0;
}
.custom-select .select-items div {
  position: relative;
  padding: 10px 60px 10px 30px;
}
.custom-select .select-items div:last-child {
  padding-bottom: 10px;
}
.custom-select .select-items div:hover {
  /*color:$color_1;
  background:$form-bg-hover;*/
}
.custom-select .select-items div.disabled {
  opacity: 0.7;
}
.custom-select .select-items div.disabled:hover {
  background: #000000;
}
.custom-select .same-as-selected {
  display: none;
  color: #1a1a1a !important;
}
.custom-select.open .select-selected {
  border-bottom: 2px solid #1a1a1a;
}
.custom-select.open .select-items {
  padding: 0;
}

/* Customize the label (the container) */
.custom-checkbox, .custom-radio {
  display: inline-block;
  position: relative;
  padding: 2px;
  padding-left: 30px;
  cursor: pointer;
  color: #1a1a1a;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  /* Hide input */
  /* Create a custom checkbox */
}
.custom-checkbox:hover, .custom-checkbox.selected, .custom-radio:hover, .custom-radio.selected {
  opacity: 1;
}
.custom-checkbox input, .custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .checkmark, .custom-radio .checkmark {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: 0;
  left: 0px;
  margin: auto;
  height: 18px;
  width: 18px;
  border-radius: 4px;
  border: 1px solid #1a1a1a;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.custom-checkbox .checkmark:after, .custom-radio .checkmark:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50%;
}
.custom-checkbox input:checked ~ .checkmark:after, .custom-radio input:checked ~ .checkmark:after {
  background-color: #1a1a1a;
}
.custom-checkbox.required, .custom-radio.required {
  color: #dd4747;
}
.custom-checkbox.required .checkmark, .custom-radio.required .checkmark {
  border-color: #dd4747;
}

.custom-radio .checkmark {
  border-radius: 50%;
}

.files-manager .files-title {
  margin-bottom: 0px;
}
.files-manager .form-items .form-item:first-child {
  margin-top: 20px;
}
.files-manager .add-file {
  display: inline-block;
  display: none; /* PAS DE BOUTON AJOUTER UN FICHIER, LE REACTIVER SI BESOIN */
  position: relative;
  margin-top: 20px;
  color: #1a1a1a;
  cursor: pointer;
  opacity: 1;
  /*
  &:before{
  	content:"";
  	width:30px;
  	height:30px;
  	position:absolute;
  	left:0;
  	top:-2px;
  	background:url(../img/pictos/picto_add.svg);

  	@include transition(transform .5s);
  }
  */
}
.files-manager .add-file.hidden {
  opacity: 0;
  pointer-events: none;
}
.files-manager .add-file .bt-text {
  position: relative;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.files-manager .add-file .bt-text:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background: #1a1a1a;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.files-manager .add-file .bt-text:hover:after, .files-manager .add-file .bt-text.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.files-manager .add-file:hover .bt-text:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.files-manager .add-file:hover:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.files-manager .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.files-manager .inputfile + label {
  position: relative;
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 0;
  /*padding-right:40px;*/
  cursor: pointer;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  position: relative;
  /*
  &:before{
  	content:"";
  	width:30px;
  	height:30px;
  	position:absolute;
  	right:0;
  	top:0;
  	background:url(../img/pictos/picto_file.svg);

  	@include transition(opacity .5s);
  }
  */
}
.files-manager .inputfile + label:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background: #1a1a1a;
  top: auto;
  bottom: 1px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.files-manager .inputfile + label:hover:after, .files-manager .inputfile + label.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.files-manager .inputfile + label * {
  pointer-events: none;
}
.files-manager .inputfile + label:after {
  bottom: 0;
}
.files-manager .inputfile.filled {
  pointer-events: none;
}
.files-manager .inputfile.filled + label {
  color: #1a1a1a;
  padding-right: 0;
}
.files-manager .inputfile.filled + label:before {
  opacity: 0;
}
.files-manager .inputfile:focus + label,
.files-manager .inputfile + label:hover {
  outline: 0px dotted #000;
  outline: -webkit-focus-ring-color auto 0px;
}
.files-manager .inputfile:focus + label:after,
.files-manager .inputfile + label:hover:after {
  width: 100%;
}
.files-manager .bt-close {
  position: relative;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  width: 20px;
  height: 20px;
  top: 6px;
  right: -20px;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.files-manager .bt-close:before, .files-manager .bt-close:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background: #1a1a1a;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.files-manager .bt-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.files-manager .bt-close.filled {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.files-manager .bt-close.filled:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  background: #1a1a1a;
}
.files-manager .bt-close.filled:hover:before, .files-manager .bt-close.filled:hover:after {
  background: #ffffff;
}

*[gsap-reveal-bottom],
*[gsap-reveal-bottom-bis],
*[gsap-reveal-target] {
  opacity: 0;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
}

*[gsap-reveal-successif-child] {
  opacity: 0;
}

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

.slick-track {
  width: 100% !important;
  display: flex;
  flex-wrap: nowrap;
}

.slick-dots {
  padding: 60px 0 10px;
}
.slick-dots li {
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 12px;
  opacity: 1;
  background: #1a1a1a;
  opacity: 0.4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.slick-dots li:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.slick-dots li:hover, .slick-dots li.slick-active {
  opacity: 1;
}
.slick-dots li:hover:after, .slick-dots li.slick-active:after {
  width: 18px;
  height: 18px;
  top: -4px;
  left: -4px;
  opacity: 1;
}
.slick-dots li.slick-active {
  background: #999999;
}
.slick-dots li.slick-active:after {
  opacity: 1;
  border-color: #999999;
}

.page-transition {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-transition .obj-anime {
  background: #1a1a1a;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform-origin: 50%;
}
.page-transition.animated .obj-anime {
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.page-transition.visible {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.page-transition.hidden .obj-anime {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}

.video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(255, 0, 0, 0.5);
}
.video-player .shadow {
  position: fixed;
  pointer-events: none;
  background: #000;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.video-player video {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.video-player .youtube-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.video-player .btn-play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 140px;
  height: 140px;
  pointer-events: none;
}
.video-player .btn-play circle {
  fill: #ffffff;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -moz-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -ms-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -o-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
}
.video-player .btn-play polygon {
  fill: #1a1a1a;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -moz-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -ms-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  -o-transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
  transition: all 0.5s cubic-bezier(0.28, 1.54, 0.72, 1.01);
}
.video-player:hover .btn-play circle {
  fill: #999999;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.video-player:hover .btn-play polygon {
  fill: #ffffff;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
.video-player.playing.cinema-mode .shadow {
  opacity: 0.9;
  pointer-events: all;
}
.video-player.playing .btn-play {
  display: none;
}
.video-player.passive * {
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.header ::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.header .spacer {
  height: 30px;
}
.header .overlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.header.open .overlay {
  opacity: 1;
  pointer-events: all;
}
.header.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header.shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  /*
  	.wrapper{
  	@include box-shadow(0 0 20px 20px rgba(0, 0, 0, 0.05));
  }
  	*/
}
.header.white .left .burger .barre, .header.stay-white .left .burger .barre, .header .midnightHeader.white .left .burger .barre {
  background: #ffffff;
}
.header.white .middle .hdr-logo-link svg *, .header.stay-white .middle .hdr-logo-link svg *, .header .midnightHeader.white .middle .hdr-logo-link svg * {
  fill: #ffffff;
}
.header.white .right .btn-devis .btn, .header.stay-white .right .btn-devis .btn, .header .midnightHeader.white .right .btn-devis .btn {
  color: #ffffff;
}
.header.white .right .btn-devis .btn:hover, .header.stay-white .right .btn-devis .btn:hover, .header .midnightHeader.white .right .btn-devis .btn:hover {
  color: #1a1a1a;
}
.header .wrapper {
  position: relative;
  background: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 50;
  pointer-events: none;
}
.header .wrapper .bg-menu-desktop {
  display: none;
}
.header .left .burger {
  pointer-events: all;
  display: block;
  cursor: pointer;
  position: relative;
  width: 55px;
  height: 55px;
  margin-left: 0;
  border-radius: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -moz-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -ms-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -o-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
}
.header .left .burger .barre {
  position: absolute;
  width: 42px;
  height: 3px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -moz-transition: all 0.4s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -ms-transition: all 0.4s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -o-transition: all 0.4s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  transition: all 0.4s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  background: #1a1a1a;
}
.header .left .burger .barre:nth-child(1) {
  -webkit-transform: translateX(-3px) translateY(-10px);
  -moz-transform: translateX(-3px) translateY(-10px);
  -ms-transform: translateX(-3px) translateY(-10px);
  -o-transform: translateX(-3px) translateY(-10px);
  transform: translateX(-3px) translateY(-10px);
}
.header .left .burger .barre:nth-child(2) {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  -ms-transform: translateX(3px);
  -o-transform: translateX(3px);
  transform: translateX(3px);
}
.header .left .burger .barre:nth-child(3) {
  -webkit-transform: translateX(-3px) translateY(10px);
  -moz-transform: translateX(-3px) translateY(10px);
  -ms-transform: translateX(-3px) translateY(10px);
  -o-transform: translateX(-3px) translateY(10px);
  transform: translateX(-3px) translateY(10px);
}
.header .left .burger:hover .barre:nth-child(1) {
  -webkit-transform: translateX(3px) translateY(-10px);
  -moz-transform: translateX(3px) translateY(-10px);
  -ms-transform: translateX(3px) translateY(-10px);
  -o-transform: translateX(3px) translateY(-10px);
  transform: translateX(3px) translateY(-10px);
}
.header .left .burger:hover .barre:nth-child(2) {
  -webkit-transform: translateX(-3px);
  -moz-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  -o-transform: translateX(-3px);
  transform: translateX(-3px);
}
.header .left .burger:hover .barre:nth-child(3) {
  -webkit-transform: translateX(3px) translateY(10px);
  -moz-transform: translateX(3px) translateY(10px);
  -ms-transform: translateX(3px) translateY(10px);
  -o-transform: translateX(3px) translateY(10px);
  transform: translateX(3px) translateY(10px);
}
.header .middle .hdr-logo-link {
  pointer-events: all;
  position: relative;
  display: block;
  width: 105px;
  z-index: 50;
}
.header .middle .hdr-logo-link svg * {
  fill: #1a1a1a;
  -webkit-transition: fill 0.5s;
  -moz-transition: fill 0.5s;
  -ms-transition: fill 0.5s;
  -o-transition: fill 0.5s;
  transition: fill 0.5s;
}
.header .right {
  display: none;
}
.header .right .btn-devis {
  pointer-events: all;
  margin-right: -27px;
}
.header.open .left .burger .barre {
  width: 28px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.header.open .left .burger .barre:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header.open .left .burger .barre:nth-child(2) {
  width: 0;
}
.header.open .left .burger .barre:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 800px) {
  .header .middle .hdr-logo-link {
    width: 125px;
  }
}
@media only screen and (min-width: 1040px) {
  .header .wrapper .bg-menu-desktop {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    background: transparent;
    -webkit-transition: height 0.5s ease-out;
    -moz-transition: height 0.5s ease-out;
    -ms-transition: height 0.5s ease-out;
    -o-transition: height 0.5s ease-out;
    transition: height 0.5s ease-out;
  }
  .header .wrapper .bg-menu-desktop.open {
    height: 300px;
  }
  .header .middle .hdr-logo-link {
    width: 150px;
  }
  .header .left {
    width: 235px;
  }
  .header .right {
    display: block;
    min-width: 235px;
  }
  .header .right .desktop {
    display: flex;
  }
}

body.page-template-methodologie .header:not(.open) .midnightHeader.default .right .btn-devis .btn:before,
body.page-template-aPropos .header:not(.open) .midnightHeader.default .right .btn-devis .btn:before,
body.page-template-contact .header:not(.open) .midnightHeader.default .right .btn-devis .btn:before,
body.single-post .header:not(.open) .midnightHeader.default .right .btn-devis .btn:before {
  background: #1a1a1a;
  opacity: 0.06;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  overflow: hidden;
}
.footer .menu-container .menu-item .picto {
  display: none;
}
.footer .footer-top {
  padding-top: 60px;
}
.footer .footer-top .hdr-logo {
  width: 105px;
}
.footer .footer-top .hdr-logo svg * {
  fill: #ffffff;
}
.footer .footer-middle .col {
  width: 100%;
}
.footer .footer-middle .col.contact {
  color: #ffffff;
  padding: 10px 0;
  order: 1;
  margin-bottom: 60px;
  margin-right: 30px;
}
.footer .footer-middle .col.contact .adresse, .footer .footer-middle .col.contact .tel {
  opacity: 0.5;
}
.footer .footer-middle .col.menus {
  order: 3;
  margin-bottom: 60px;
}
.footer .footer-middle .col.menus .menu {
  width: calc(((100% - 29px) / 2 * 1));
}
.footer .footer-middle .col.menus .menu .menu-item {
  padding: 10px 0;
}
.footer .footer-middle .col.menus .menu .menu-item a {
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.footer .footer-middle .col.menus .menu .menu-item a:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background: #ffffff;
  top: auto;
  bottom: -4px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.footer .footer-middle .col.menus .menu .menu-item a:hover:after, .footer .footer-middle .col.menus .menu .menu-item a.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.footer .footer-middle .col.newsletter {
  width: 100%;
  order: 2;
  margin-bottom: 60px;
}
.footer .footer-middle .col.newsletter .nl-title {
  padding-bottom: 15px;
}
.footer .footer-bottom {
  padding-bottom: 100px;
}
.footer .footer-bottom .col {
  width: calc(((100% - 29px) / 2 * 1));
}
.footer .footer-bottom .col.credits .copyright {
  order: 2;
  margin-top: 30px;
}
.footer .footer-bottom .col.credits .menu-item {
  display: inline-block;
  padding: 5px 0;
}
.footer .footer-bottom .col.credits .menu-item a, .footer .footer-bottom .col.credits .menu-item span {
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.footer .footer-bottom .col.credits .menu-item a:after, .footer .footer-bottom .col.credits .menu-item span:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background: #ffffff;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.footer .footer-bottom .col.credits .menu-item a:hover:after, .footer .footer-bottom .col.credits .menu-item a.selected:after, .footer .footer-bottom .col.credits .menu-item span:hover:after, .footer .footer-bottom .col.credits .menu-item span.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.footer .footer-bottom .col.akrolab {
  text-align: right;
}
.footer .footer-bottom .col.akrolab a {
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.footer .footer-bottom .col.akrolab a:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background: #ffffff;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.footer .footer-bottom .col.akrolab a:hover:after, .footer .footer-bottom .col.akrolab a.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@media only screen and (min-width: 1040px) {
  .footer .footer-top .hdr-logo {
    width: 150px;
  }
  .footer .footer-middle {
    flex-direction: row;
    padding: 40px 0;
    width: calc(319px + (100% - 319px));
  }
  .footer .footer-middle .col.contact {
    width: calc(58px + ((100% - 319px) / 12 * 3));
  }
  .footer .footer-middle .col.menus {
    width: calc(116px + ((100% - 319px) / 12 * 5));
    order: 2;
  }
  .footer .footer-middle .col.newsletter {
    width: calc(87px + ((100% - 319px) / 12 * 4));
    order: 3;
    margin-left: auto;
  }
  .footer .footer-bottom {
    flex-direction: row;
  }
  .footer .footer-bottom .col.credits {
    width: calc(203px + ((100% - 319px) / 12 * 8));
    flex-direction: row;
  }
  .footer .footer-bottom .col.credits .copyright {
    order: 0;
    margin-top: 0;
    padding: 5px 0;
  }
  .footer .footer-bottom .col.credits .menu-item a, .footer .footer-bottom .col.credits .menu-item span {
    margin-left: 40px;
  }
  .footer .footer-bottom .col.akrolab {
    width: calc(58px + ((100% - 319px) / 12 * 3));
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .footer .footer-middle {
    width: calc(290px + ((100% - 319px) / 12 * 11));
  }
  .footer .footer-middle .col.contact {
    width: calc(58px + ((100% - 290px) / 11 * 2.5));
  }
  .footer .footer-middle .col.menus {
    width: calc(116px + ((100% - 290px) / 11 * 4.5));
    order: 2;
  }
  .footer .footer-middle .col.newsletter {
    width: calc(58px + ((100% - 290px) / 11 * 3));
    order: 3;
    margin-left: auto;
  }
}

.g-reviews {
  margin-top: 20px;
}

.header .nav-main {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  top: -100vh;
  left: 0;
  width: 100vw;
  padding: 80px 0 0;
  -webkit-transition: top 0.6s ease-out;
  -moz-transition: top 0.6s ease-out;
  -ms-transition: top 0.6s ease-out;
  -o-transition: top 0.6s ease-out;
  transition: top 0.6s ease-out;
  background: #1a1a1a;
  color: #ffffff;
  z-index: 21;
}
.header .nav-main .scroller {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.header .nav-main .susy-container, .header .nav-main .slider-articles .slick-container, .slider-articles .header .nav-main .slick-container {
  overflow: auto;
  padding: 0;
  /*
  font-size:0;
  line-height:0;
  */
}
.header .nav-main .susy-container .menu-container, .header .nav-main .slider-articles .slick-container .menu-container, .slider-articles .header .nav-main .slick-container .menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 2;
  width: 100%;
}
.header .nav-main .susy-container .menu-container > .menu-item, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item {
  width: 100%;
  /*height:0;*/
  text-align: center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .nav-main .susy-container .menu-container > .menu-item a, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item a, .header .nav-main .susy-container .menu-container > .menu-item span, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item span, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 0;
  opacity: 1;
  overflow: hidden;
  color: #ffffff;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .nav-main .susy-container .menu-container > .menu-item a .picto, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item a .picto, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item a .picto, .header .nav-main .susy-container .menu-container > .menu-item span .picto, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item span .picto, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item span .picto {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 51px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: none;
}
.header .nav-main .susy-container .menu-container > .menu-item a:hover .picto svg *, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item a:hover .picto svg *, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item a:hover .picto svg *, .header .nav-main .susy-container .menu-container > .menu-item span:hover .picto svg *, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item span:hover .picto svg *, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item span:hover .picto svg * {
  fill: #999999;
}
.header .nav-main .susy-container .menu-container > .menu-item.menu-item-has-children > a .picto, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item.menu-item-has-children > a .picto, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item.menu-item-has-children > a .picto, .header .nav-main .susy-container .menu-container > .menu-item.menu-item-has-children > span .picto, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item.menu-item-has-children > span .picto, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item.menu-item-has-children > span .picto {
  display: flex;
}
.header .nav-main .susy-container .menu-container > .menu-item.menu-item-has-children > a .picto svg, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item.menu-item-has-children > a .picto svg, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item.menu-item-has-children > a .picto svg, .header .nav-main .susy-container .menu-container > .menu-item.menu-item-has-children > span .picto svg, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item.menu-item-has-children > span .picto svg, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item.menu-item-has-children > span .picto svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header .nav-main .susy-container .menu-item.open > .menu-container > .menu-item, .header .nav-main .slider-articles .slick-container .menu-item.open > .menu-container > .menu-item, .slider-articles .header .nav-main .slick-container .menu-item.open > .menu-container > .menu-item,
.header .nav-main .susy-container > .menu-container > .menu-item,
.header .nav-main .slider-articles .slick-container > .menu-container > .menu-item,
.slider-articles .header .nav-main .slick-container > .menu-container > .menu-item {
  height: auto;
}
.header .nav-main .susy-container .menu-item.open > .menu-container > .menu-item > a, .header .nav-main .slider-articles .slick-container .menu-item.open > .menu-container > .menu-item > a, .slider-articles .header .nav-main .slick-container .menu-item.open > .menu-container > .menu-item > a, .header .nav-main .susy-container .menu-item.open > .menu-container > .menu-item > span, .header .nav-main .slider-articles .slick-container .menu-item.open > .menu-container > .menu-item > span, .slider-articles .header .nav-main .slick-container .menu-item.open > .menu-container > .menu-item > span,
.header .nav-main .susy-container > .menu-container > .menu-item > a,
.header .nav-main .slider-articles .slick-container > .menu-container > .menu-item > a,
.slider-articles .header .nav-main .slick-container > .menu-container > .menu-item > a,
.header .nav-main .susy-container > .menu-container > .menu-item > span,
.header .nav-main .slider-articles .slick-container > .menu-container > .menu-item > span,
.slider-articles .header .nav-main .slick-container > .menu-container > .menu-item > span {
  opacity: 1;
  height: auto;
}
.header .nav-main .susy-container .menu-item.open, .header .nav-main .slider-articles .slick-container .menu-item.open, .slider-articles .header .nav-main .slick-container .menu-item.open {
  border-bottom: none !important;
}
.header .nav-main .susy-container .menu-item.open > a .picto.prev, .header .nav-main .slider-articles .slick-container .menu-item.open > a .picto.prev, .slider-articles .header .nav-main .slick-container .menu-item.open > a .picto.prev, .header .nav-main .susy-container .menu-item.open > span .picto.prev, .header .nav-main .slider-articles .slick-container .menu-item.open > span .picto.prev, .slider-articles .header .nav-main .slick-container .menu-item.open > span .picto.prev {
  opacity: 1 !important;
  pointer-events: all !important;
}
.header .nav-main .susy-container .menu-item.open > a .picto.next, .header .nav-main .slider-articles .slick-container .menu-item.open > a .picto.next, .slider-articles .header .nav-main .slick-container .menu-item.open > a .picto.next, .header .nav-main .susy-container .menu-item.open > span .picto.next, .header .nav-main .slider-articles .slick-container .menu-item.open > span .picto.next, .slider-articles .header .nav-main .slick-container .menu-item.open > span .picto.next {
  opacity: 0 !important;
  pointer-events: none !important;
}
.header .nav-main .susy-container .menu-item.open > a.prev, .header .nav-main .slider-articles .slick-container .menu-item.open > a.prev, .slider-articles .header .nav-main .slick-container .menu-item.open > a.prev, .header .nav-main .susy-container .menu-item.open > span.prev, .header .nav-main .slider-articles .slick-container .menu-item.open > span.prev, .slider-articles .header .nav-main .slick-container .menu-item.open > span.prev {
  height: 30px !important;
  padding: 5px 0 !important;
}
.header .nav-main .susy-container .menu-item.closed, .header .nav-main .slider-articles .slick-container .menu-item.closed, .slider-articles .header .nav-main .slick-container .menu-item.closed {
  /*height:0 !important;*/
  border: none !important;
}
.header .nav-main .susy-container .menu-item.closed a, .header .nav-main .slider-articles .slick-container .menu-item.closed a, .slider-articles .header .nav-main .slick-container .menu-item.closed a, .header .nav-main .susy-container .menu-item.closed span, .header .nav-main .slider-articles .slick-container .menu-item.closed span, .slider-articles .header .nav-main .slick-container .menu-item.closed span {
  opacity: -1 !important;
  /*height:0 !important;*/
  padding: 0 !important;
}
.header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
  position: relative;
  min-height: 365px;
  padding: 60px 0;
}
.header .nav-main .susy-container.main-menu .menu-container > .menu-item a, .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item a,
.header .nav-main .susy-container.main-menu .menu-container > .menu-item span,
.header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item span,
.slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item span {
  text-transform: uppercase;
  font-size: 30px;
  padding: 15px 0;
}
.header .nav-main .susy-container.main-menu .arrow, .header .nav-main .slider-articles .main-menu.slick-container .arrow, .slider-articles .header .nav-main .main-menu.slick-container .arrow {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: auto;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .nav-main .susy-container.main-menu .arrow svg *, .header .nav-main .slider-articles .main-menu.slick-container .arrow svg *, .slider-articles .header .nav-main .main-menu.slick-container .arrow svg * {
  fill: #ffffff;
}
.header .nav-main .susy-container.main-menu .roll-container, .header .nav-main .slider-articles .main-menu.slick-container .roll-container, .slider-articles .header .nav-main .main-menu.slick-container .roll-container {
  display: none;
}
.header .nav-main .susy-container.menu-additional, .header .nav-main .slider-articles .menu-additional.slick-container, .slider-articles .header .nav-main .menu-additional.slick-container {
  min-height: 315px;
  padding: 60px 0 90px;
}
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item a, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a,
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item span,
.header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span,
.slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span {
  width: auto;
  display: inline-block;
  text-transform: none;
  font-size: 20px;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item a:after, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a:after, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a:after,
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item span:after,
.header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span:after,
.slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background: #ffffff;
  top: auto;
  bottom: 0px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item a:hover:after, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a:hover:after, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a:hover:after, .header .nav-main .susy-container.menu-additional .menu-container > .menu-item a.selected:after, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a.selected:after, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a.selected:after,
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item span:hover:after,
.header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span:hover:after,
.slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span:hover:after,
.header .nav-main .susy-container.menu-additional .menu-container > .menu-item span.selected:after,
.header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span.selected:after,
.slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.header.open .nav-main {
  top: 0;
}
@media screen and (max-height: 840px) {
  .header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
    padding: 0;
    min-height: 220px;
  }
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item a, .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item span,
  .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item span {
    padding: 12px 0;
  }
  .header .nav-main .susy-container.menu-additional, .header .nav-main .slider-articles .menu-additional.slick-container, .slider-articles .header .nav-main .menu-additional.slick-container {
    padding: 0;
    min-height: 160px;
  }
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item a, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item span,
  .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span {
    padding: 10px 0;
  }
}
@media screen and (max-height: 670px) {
  .header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
    min-height: 180px;
  }
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item a, .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item span,
  .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item span {
    font-size: 24px;
    padding: 10px 0;
  }
  .header .nav-main .susy-container.menu-additional, .header .nav-main .slider-articles .menu-additional.slick-container, .slider-articles .header .nav-main .menu-additional.slick-container {
    min-height: 104px;
  }
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item a, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item span,
  .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span {
    font-size: 16px;
    padding: 5px 0;
  }
}
@media screen and (max-height: 520px) {
  .header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
    min-height: 124px;
  }
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item a, .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item span,
  .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item span {
    font-size: 20px;
    padding: 5px 0;
  }
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item a, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item span,
  .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span {
    font-size: 16px;
  }
}
@media only screen and (max-width: calc(1040px - 1px)) {
  .header .nav-main {
    position: absolute;
  }
  .header .nav-main .susy-container .menu-container > .menu-item, .header .nav-main .slider-articles .slick-container .menu-container > .menu-item, .slider-articles .header .nav-main .slick-container .menu-container > .menu-item {
    position: relative;
  }
}
@media only screen and (min-width: 1040px) {
  .header .nav-main .btn-container {
    display: none;
  }
  .header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
    overflow: visible;
  }
  .header .nav-main .susy-container.main-menu .roll-container, .header .nav-main .slider-articles .main-menu.slick-container .roll-container, .slider-articles .header .nav-main .main-menu.slick-container .roll-container {
    display: block;
    position: absolute;
    top: 60px;
    left: calc(232px + ((100% - 319px) / 12 * 8));
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .header .nav-main .susy-container.main-menu .roll-container .roll-content, .header .nav-main .slider-articles .main-menu.slick-container .roll-container .roll-content, .slider-articles .header .nav-main .main-menu.slick-container .roll-container .roll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header .nav-main .susy-container.main-menu .roll-container .roll-content.visible, .header .nav-main .slider-articles .main-menu.slick-container .roll-container .roll-content.visible, .slider-articles .header .nav-main .main-menu.slick-container .roll-container .roll-content.visible {
    opacity: 1;
    pointer-events: all;
  }
  .header .nav-main .susy-container.main-menu .roll-container .roll-content .illustration, .header .nav-main .slider-articles .main-menu.slick-container .roll-container .roll-content .illustration, .slider-articles .header .nav-main .main-menu.slick-container .roll-container .roll-content .illustration {
    width: 100%;
    padding-top: 55%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .header .nav-main .susy-container.main-menu .roll-container .roll-content .texts, .header .nav-main .slider-articles .main-menu.slick-container .roll-container .roll-content .texts, .slider-articles .header .nav-main .main-menu.slick-container .roll-container .roll-content .texts {
    padding-top: 20px;
  }
  .header .nav-main .susy-container.main-menu .roll-container .roll-content .texts .text, .header .nav-main .slider-articles .main-menu.slick-container .roll-container .roll-content .texts .text, .slider-articles .header .nav-main .main-menu.slick-container .roll-container .roll-content .texts .text {
    padding-bottom: 5px;
  }
  .header .nav-main .susy-container.menu-additional, .header .nav-main .slider-articles .menu-additional.slick-container, .slider-articles .header .nav-main .menu-additional.slick-container {
    min-height: 255px;
    padding: 0px 0 90px;
  }
  .header .nav-main .susy-container.menu-additional .menu-container, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container {
    flex-wrap: wrap;
    width: calc(87px + ((100% - 319px) / 12 * 4));
    margin-left: calc(29px + ((100% - 319px) / 12 * 1));
    max-height: 90px;
  }
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item {
    text-align: left;
    width: calc(58px + ((100% - 87px) / 4 * 2));
  }
  .header .nav-main .susy-container.menu-additional .menu-container > .menu-item a, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item a, .header .nav-main .susy-container.menu-additional .menu-container > .menu-item span, .header .nav-main .slider-articles .menu-additional.slick-container .menu-container > .menu-item span, .slider-articles .header .nav-main .menu-additional.slick-container .menu-container > .menu-item span {
    text-transform: none;
    font-size: 20px;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .header .nav-main .susy-container.main-menu, .header .nav-main .slider-articles .main-menu.slick-container, .slider-articles .header .nav-main .main-menu.slick-container {
    min-height: 485px;
  }
  .header .nav-main .susy-container.main-menu .arrow, .header .nav-main .slider-articles .main-menu.slick-container .arrow, .slider-articles .header .nav-main .main-menu.slick-container .arrow {
    left: calc(145px + ((100% - 319px) / 12 * 6));
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item a, .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item a, .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item a,
  .header .nav-main .susy-container.main-menu .menu-container > .menu-item span,
  .header .nav-main .slider-articles .main-menu.slick-container .menu-container > .menu-item span,
  .slider-articles .header .nav-main .main-menu.slick-container .menu-container > .menu-item span {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1550px) {
  .header .nav-main .susy-container.main-menu .arrow, .header .nav-main .slider-articles .main-menu.slick-container .arrow, .slider-articles .header .nav-main .main-menu.slick-container .arrow {
    left: calc(116px + ((100% - 319px) / 12 * 5));
  }
  .header .nav-main .susy-container.main-menu .roll-container, .header .nav-main .slider-articles .main-menu.slick-container .roll-container, .slider-articles .header .nav-main .main-menu.slick-container .roll-container {
    left: calc(174px + ((100% - 319px) / 12 * 6));
    width: calc(116px + ((100% - 319px) / 12 * 5));
  }
}

/*@import 'partial/_nav_main_desktop';*/
.social-networks .btn-social {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  margin: 0 2px;
  -webkit-transition: all 0.2s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -moz-transition: all 0.2s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -ms-transition: all 0.2s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  -o-transition: all 0.2s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  transition: all 0.2s cubic-bezier(0.29, 1.63, 0.81, 1.04);
}
.social-networks .btn-social svg {
  width: 27px;
  height: auto;
}
.social-networks .btn-social svg * {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  fill: #ffffff;
}
.social-networks .btn-social:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media only screen and (min-width: 1040px) {
  .social-networks .btn-social {
    width: 40px;
    height: 40px;
    margin: 0 5px;
  }
  .social-networks .btn-social svg {
    width: 34px;
  }
}

.block-share .text {
  max-width: 300px;
}
.block-share .social-networks .btn-social {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-color: #1a1a1a;
}
.block-share .social-networks .btn-social svg {
  width: 24px;
  height: 24px;
}
.block-share .social-networks .btn-social svg * {
  fill: #1a1a1a;
}
.block-share .social-networks .btn-social:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  background: #1a1a1a;
}
.block-share .social-networks .btn-social:hover svg * {
  fill: #ffffff;
}

.newsletter {
  position: relative;
}
.newsletter .form-response.hidden, .newsletter .form-content.hidden {
  display: none;
}
.newsletter .form-response {
  padding-top: 30px;
  color: #CCF1E3;
}
.newsletter .form-response div {
  display: none;
}
.newsletter .form-response.wait .wait {
  -webkit-animation: 0.5s linear 0s infinite blink;
  -moz-animation: 0.5s linear 0s infinite blink;
  -o-animation: 0.5s linear 0s infinite blink;
  animation: 0.5s linear 0s infinite blink;
  display: block;
}
.newsletter .form-response.success .success {
  display: block;
}
.newsletter .form-response.error .error {
  color: #CCF1E3;
  display: block;
}
.newsletter.label-anime label {
  left: 0;
  color: #ffffff;
  opacity: 0.4;
}
.newsletter.input-with-button.label-anime input[type=text], .newsletter.input-with-button.label-anime input[type=text]:focus,
.newsletter.input-with-button.label-anime input[type=email], .newsletter.input-with-button.label-anime input[type=email]:focus input[type=text]:-webkit-autofill,
.newsletter.input-with-button.label-anime input[type=text]:-webkit-autofill:hover, .newsletter.input-with-button.label-anime input[type=text]:-webkit-autofill:focus,
.newsletter.input-with-button.label-anime input[type=email]:-webkit-autofill, .newsletter.input-with-button.label-anime input[type=email]:-webkit-autofill:hover, .newsletter.input-with-button.label-anime input[type=email]:-webkit-autofill:focus {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 30px 50px 10px 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0);
}
.newsletter button[type=submit] {
  position: absolute;
  bottom: 7px;
  right: 0;
  width: 25px;
  padding: 0;
}
.newsletter button[type=submit] svg {
  width: 100%;
  height: 100%;
}
.newsletter button[type=submit] svg * {
  fill: #ffffff;
}

.wp-content h2 {
  margin: 60px auto 30px;
}
.wp-content h3 {
  margin: 40px auto 30px;
}
.wp-content h4 {
  margin: 30px auto;
}
.wp-content h5 {
  margin: 30px auto;
}
.wp-content h6 {
  font-weight: 700;
  margin: 30px auto;
}
.wp-content p {
  margin: 30px auto;
}
.wp-content strong {
  font-weight: 700;
}
.wp-content em {
  font-style: italic;
}
.wp-content .wp-block-image {
  width: 100%;
  height: auto;
  margin: 30px auto;
}
.wp-content .wp-block-image img {
  width: 100%;
  height: auto;
}
.wp-content a {
  color: #1a1a1a;
  cursor: pointer;
  position: relative;
}
.wp-content a:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #1a1a1a;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.wp-content a:hover:after {
  -webkit-animation: 0.5s anim_underline;
  -moz-animation: 0.5s anim_underline;
  -o-animation: 0.5s anim_underline;
  animation: 0.5s anim_underline;
}
.wp-content ul, .wp-content ol {
  margin: 30px auto;
}
.wp-content ul li, .wp-content ol li {
  list-style: disc outside;
  margin: 0 0 5px 50px;
}
.wp-content ol li {
  list-style: decimal outside;
}
.wp-content .wp-block-quote {
  background: #F0F0F0;
  padding: 60px;
  margin-bottom: 60px;
}
.wp-content h2:first-child, .wp-content h3:first-child, .wp-content h4:first-child, .wp-content h5:first-child, .wp-content h6:first-child, .wp-content p:first-child, .wp-content wp-block-image:first-child {
  margin-top: 0;
}
.wp-content .wp-block-gallery {
  display: none;
}
.wp-content .wp-block-gallery.columns-1, .wp-content .wp-block-gallery.columns-2 {
  display: flex;
  width: 100%;
}
.wp-content .wp-block-gallery.columns-1, .wp-content .wp-block-gallery.columns-2 {
  margin-bottom: 30px;
}
.wp-content .wp-block-gallery.columns-1 .blocks-gallery-grid, .wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid {
  margin: 0;
  width: 100%;
  justify-content: space-between;
}
.wp-content .wp-block-gallery.columns-1 .blocks-gallery-grid .blocks-gallery-item, .wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item {
  position: relative;
  margin: 0;
  width: 100%;
  height: 0;
  padding-top: 60%;
  flex-grow: 0;
}
.wp-content .wp-block-gallery.columns-1 .blocks-gallery-grid .blocks-gallery-item figure, .wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item figure {
  position: absolute;
  top: 0;
  width: 100%;
}
.wp-content .wp-block-gallery.columns-2 {
  margin-bottom: 0;
}
.wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item {
  margin-bottom: 30px;
  width: 100%;
  padding-top: 120%;
}
.wp-content .wp-block-table th, .wp-content .wp-block-table td {
  text-align: left;
  padding: 10px;
}
.wp-content .wp-block-table th {
  font-weight: 700;
}
.wp-content .wp-block-table thead {
  background: #F0F0F0;
  display: none;
}
.wp-content .wp-block-table tbody tr {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 50px;
}
.wp-content .wp-block-table tbody tr td {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #F0F0F0;
}
.wp-content .wp-block-table tbody tr td:last-child {
  border-bottom: none;
}
.wp-content .wp-block-table tbody tr td:before {
  content: attr(data-label);
  display: inline-block;
  font-weight: 700;
}
.wp-content .wp-block-table figcaption {
  text-align: right;
  padding-top: 20px;
  opacity: 0.5;
}
.wp-content .wp-block-button .wp-block-button__link {
  position: relative;
  background-color: transparent;
  padding: 10px 0;
  padding-right: 45px;
  border-radius: 0;
  margin-top: 40px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.wp-content .wp-block-button .wp-block-button__link:before, .wp-content .wp-block-button .wp-block-button__link:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/pictos/arrow_right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  top: 8px;
  bottom: auto;
  left: auto;
  right: auto;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.wp-content .wp-block-button .wp-block-button__link:before {
  opacity: 0;
  left: -20px;
}
.wp-content .wp-block-button .wp-block-button__link:after {
  right: 0;
}
.wp-content .wp-block-button .wp-block-button__link:hover {
  padding-right: 0;
  padding-left: 45px;
  color: #1a1a1a;
}
.wp-content .wp-block-button .wp-block-button__link:hover:before {
  opacity: 1;
  left: 0;
}
.wp-content .wp-block-button .wp-block-button__link:hover:after {
  animation: none;
  opacity: 0;
  right: -20px;
}
.wp-content .wp-block-button.is-style-fill .wp-block-button__link {
  background: #999999;
  color: #ffffff;
  border: 1px solid #999999;
  border-radius: btn_border_radius;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.wp-content .wp-block-button.is-style-fill .wp-block-button__link:hover {
  color: #ffffff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.wp-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: btn_border_radius;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.wp-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #ffffff;
  background: #1a1a1a;
}
@media only screen and (min-width: 620px) {
  .wp-content .wp-block-gallery.columns-1 .blocks-gallery-grid .blocks-gallery-item, .wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item {
    padding-top: 60%;
  }
  .wp-content .wp-block-gallery.columns-2 {
    margin-bottom: 30px;
  }
  .wp-content .wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item {
    margin-bottom: 0;
    width: calc(87px + ((100% - 203px) / 8 * 4));
  }
}
@media only screen and (min-width: 800px) {
  .wp-content .wp-block-table thead {
    display: table-header-group;
  }
  .wp-content .wp-block-table tbody tr {
    display: flex;
    border-top: 1px solid #CCCCCC;
    border-bottom: none;
    margin-bottom: 0;
  }
  .wp-content .wp-block-table tbody tr td {
    display: table-cell;
    border-bottom: none;
  }
  .wp-content .wp-block-table tbody tr td:last-child {
    border-bottom: none;
  }
  .wp-content .wp-block-table tbody tr td:before {
    display: none;
  }
  .wp-content .wp-block-table thead tr, .wp-content .wp-block-table tbody tr {
    display: table-row;
  }
}

.pagination-container {
  background: #1a1a1a;
  color: #ffffff;
  padding-bottom: 200px;
}
.pagination-container a {
  color: #ffffff;
}
.pagination-container .pagination li {
  opacity: 0.4;
  margin: 0 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pagination-container .pagination li.current {
  pointer-events: none;
  opacity: 1;
}
.pagination-container .pagination li:hover {
  opacity: 1;
}
.pagination-container .pagination li:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.pagination-container .pagination li.prev, .pagination-container .pagination li.next {
  width: 26px;
  height: 26px;
  cursor: pointer;
  background-image: url("../img/pictos/arrow_right_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 30px;
  opacity: 1;
}
.pagination-container .pagination li.prev.disabled, .pagination-container .pagination li.next.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pagination-container .pagination li.prev {
  margin-left: 0;
  margin-right: 30px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.text-seo {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
  padding: 90px 0px;
}
.text-seo .seo-content {
  height: 110px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.text-seo .seo-content.open {
  height: auto;
}
.text-seo .seo-more-less {
  margin-top: 15px;
  cursor: pointer;
}

.slider-articles {
  overflow: hidden;
  background: #1a1a1a;
  color: #ffffff;
  padding: 160px 0;
  --nbslide:1;
}
.slider-articles .articles-header .title {
  margin-bottom: 50px;
  width: 250px;
}
.slider-articles .articles-header .link {
  margin-bottom: 40px;
}
.slider-articles .slick-container.slick-initialized {
  flex-direction: column;
  align-items: flex-start;
}
.slider-articles .slick-container .slick-dots {
  align-self: center;
}
.slider-articles .slick-container .tease-post {
  margin-right: 30px;
}
.slider-articles .slick-container .tease-post:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 620px) {
  .slider-articles {
    --nbslide:2;
  }
}
@media only screen and (min-width: 1040px) {
  .slider-articles {
    --nbslide:3;
  }
  .slider-articles .articles-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .slider-articles .articles-header .title {
    width: 400px;
  }
}
@media only screen and (min-width: 1280px) {
  .slider-articles {
    --nbslide:3;
  }
  .slider-articles .articles-header .title {
    width: 430px;
  }
}

*[accordeon-container] {
  position: relative;
}
*[accordeon-container] .item {
  padding: 0;
  border-bottom: 1px solid #CCCCCC;
  width: 100%;
}
*[accordeon-container] .item:first-child {
  border-top: 1px solid #CCCCCC;
}
*[accordeon-container] .item .title {
  color: #ffffff;
  cursor: pointer;
  padding: 30px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
*[accordeon-container] .item .title .picto {
  width: 20px;
  height: 20px;
  min-width: 17px;
  margin-top: 7px;
  margin-left: 30px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
*[accordeon-container] .item .title .picto svg {
  width: 100%;
}
*[accordeon-container] .item .title .picto svg * {
  fill: #ffffff;
}
*[accordeon-container] .item .title:hover {
  color: #ffffff;
}
*[accordeon-container] .item .title:hover .picto svg * {
  fill: #ffffff;
}
*[accordeon-container] .item .texte-container {
  height: 0;
  overflow: hidden;
  padding-right: 0;
  margin: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
*[accordeon-container] .item .texte-container.no-anime {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  -ms-transition: height 0s;
  -o-transition: height 0s;
  transition: height 0s;
}
*[accordeon-container] .item .texte-container .texte {
  box-sizing: border-box;
  padding: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
*[accordeon-container] .item.open .title .picto {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
*[accordeon-container] .item.open .texte-container {
  margin: 30px 0 60px;
}
*[accordeon-container] .item.open .texte-container .texte {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear 0.3s;
  -moz-transition: opacity 0.5s linear 0.3s;
  -ms-transition: opacity 0.5s linear 0.3s;
  -o-transition: opacity 0.5s linear 0.3s;
  transition: opacity 0.5s linear 0.3s;
}
*[accordeon-container] .item.scroll .texte-container {
  overflow: auto;
  padding-right: 30px;
}

.text-slider *[accordeon-container] .item {
  border: none;
}
.text-slider *[accordeon-container] .item .title {
  padding: 20px 0;
}
.text-slider *[accordeon-container] .item .title .picto {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-slider *[accordeon-container] .item.open .title .picto {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
@media only screen and (min-width: 1040px) {
  .text-slider *[accordeon-container] {
    position: relative;
    justify-content: flex-start;
  }
  .text-slider *[accordeon-container] .item .title {
    opacity: 0.3;
  }
  .text-slider *[accordeon-container] .item .title .picto {
    display: none;
  }
  .text-slider *[accordeon-container] .item .texte-container {
    pointer-events: none;
    position: absolute;
    width: calc(174px + ((100% - 319px) / 12 * 7));
    height: auto !important;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
  }
  .text-slider *[accordeon-container] .item.current .title {
    opacity: 1;
  }
  .text-slider *[accordeon-container] .item.current .texte-container {
    pointer-events: all;
  }
  .text-slider *[accordeon-container] .item.current .texte-container .texte {
    opacity: 1;
  }
}

.image-fullscreen {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
}
.image-fullscreen .illustration {
  position: absolute;
  width: 100%;
  padding-top: 120%;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 620px) {
  .image-fullscreen {
    padding-top: 80%;
  }
  .image-fullscreen .illustration {
    padding-top: 100%;
  }
}
@media only screen and (min-width: 800px) {
  .image-fullscreen {
    padding-top: 70%;
  }
  .image-fullscreen .illustration {
    padding-top: 85%;
  }
}
@media only screen and (min-width: 1040px) {
  .image-fullscreen {
    padding-top: 55%;
  }
  .image-fullscreen .illustration {
    padding-top: 68%;
  }
}
@media only screen and (min-width: 1280px) {
  .image-fullscreen {
    padding-top: 45%;
  }
  .image-fullscreen .illustration {
    padding-top: 60%;
  }
}
@media only screen and (min-width: 1550px) {
  .image-fullscreen {
    padding-top: 40%;
  }
  .image-fullscreen .illustration {
    padding-top: 60%;
  }
}

.text-slider {
  padding: 120px 0;
}
.text-slider *[accordeon-container] .item .title {
  color: #1a1a1a;
}
.text-slider.white {
  background: #1a1a1a;
  color: #ffffff;
}
.text-slider.white *[accordeon-container] .item .title {
  color: #ffffff;
}
.text-slider .surtitre {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1040px) {
  .text-slider {
    padding: 200px 0;
  }
  .text-slider *[accordeon-container] .item .texte-container {
    margin-top: 25px;
  }
}
.text-slider *[accordeon-container].solo .item .title .picto {
  display: none;
}

.block_text {
  padding: 100px 0 30px;
}
.block_text.padding-header {
  padding-top: 180px;
}
.block_text.white {
  background: #1a1a1a;
  color: #ffffff;
}
.block_text .susy-container .surtitre, .block_text .slider-articles .slick-container .surtitre, .slider-articles .block_text .slick-container .surtitre {
  padding-bottom: 30px;
}
.block_text .susy-container .titre, .block_text .slider-articles .slick-container .titre, .slider-articles .block_text .slick-container .titre {
  max-width: 340px;
  padding-bottom: 60px;
}
.block_text .susy-container .texte, .block_text .slider-articles .slick-container .texte, .slider-articles .block_text .slick-container .texte {
  padding-bottom: 30px;
}
.block_text.small-title {
  padding-bottom: 100px;
}
.block_text.intro {
  padding-bottom: 0;
}
.block_text.intro .susy-container .titre, .block_text.intro .slider-articles .slick-container .titre, .slider-articles .block_text.intro .slick-container .titre {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1040px) {
  .block_text {
    padding: 100px 0 80px;
  }
  .block_text.padding-header {
    padding-top: 260px;
  }
  .block_text.small-title {
    padding-bottom: 150px;
  }
  .block_text .susy-container .flex, .block_text .slider-articles .slick-container .flex, .slider-articles .block_text .slick-container .flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .block_text .susy-container .flex .titre, .block_text .slider-articles .slick-container .flex .titre, .slider-articles .block_text .slick-container .flex .titre {
    max-width: none;
    width: 50%;
  }
  .block_text .susy-container .flex .texte, .block_text .slider-articles .slick-container .flex .texte, .slider-articles .block_text .slick-container .flex .texte {
    padding-top: 10px;
    width: 50%;
  }
  .block_text.intro .susy-container .flex .titre, .block_text.intro .slider-articles .slick-container .flex .titre, .slider-articles .block_text.intro .slick-container .flex .titre {
    width: 36vw;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .block_text.small-title {
    padding-bottom: 200px;
  }
  .block_text.intro .susy-container .flex .titre, .block_text.intro .slider-articles .slick-container .flex .titre, .slider-articles .block_text.intro .slick-container .flex .titre {
    width: 580px;
  }
}

.section-map {
  position: relative;
  background: #1a1a1a;
  color: #ffffff;
  overflow: hidden;
}
.section-map .location-container {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 110vh;
  height: calc(var(--vh, 1vh) * 110);
  background: #1a1a1a;
  color: var(--main-color);
  z-index: 50;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.section-map .location-container .item {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 80px 5%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.section-map .location-container .item.visible {
  pointer-events: all;
  opacity: 1;
}
.section-map .location-container .item .lieu {
  order: 0;
  padding-bottom: 20px;
}
.section-map .location-container .item .title {
  order: 1;
  padding-bottom: 10px;
}
.section-map .location-container .item .subtitle {
  order: 1;
  padding-bottom: 40px;
}
.section-map .location-container .item .image {
  order: 2;
  width: 100%;
  height: 100%;
  max-height: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-map .location-container .bt-close {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  bottom: auto;
  right: 0;
  margin: auto;
  margin-top: 0;
  margin-right: 0;
  background: #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.section-map .location-container .bt-close:before, .section-map .location-container .bt-close:after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.section-map .location-container .bt-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section-map .location-container .bt-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.section-map .location-container .bt-close:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.section-map .location-container.open {
  left: 0;
}
.section-map .marker-map {
  display: none;
}
.section-map .marker-map .color {
  fill: var(--main-color);
}
.section-map .map-container {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media only screen and (min-width: 1040px) {
  .section-map .location-container {
    position: absolute;
    width: calc(203px + ((100% - 377px) / 14 * 8));
    height: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -moz-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -ms-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -o-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  }
  .section-map .location-container .item {
    padding: 50px calc(116px + ((100% - 203px) / 8 * 4)) 50px calc(29px + ((100% - 203px) / 8 * 1));
  }
  .section-map .location-container .item .lieu {
    padding-bottom: 30px;
  }
  .section-map .location-container .item .title {
    padding-bottom: 30px;
  }
  .section-map .location-container .item .subtitle {
    padding-bottom: 50px;
  }
  .section-map .location-container .item .image {
    max-height: 23vw;
  }
  .section-map .location-container .bt-close {
    bottom: 0;
    right: auto;
    width: 100px;
    height: 100px;
    left: 0;
    margin-right: 0;
    margin-top: auto;
    margin-left: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -moz-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -ms-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    -o-transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
    transition: all 0.5s cubic-bezier(0.29, 1.63, 0.81, 1.04);
  }
  .section-map .location-container .bt-close:before, .section-map .location-container .bt-close:after {
    width: 45px;
    height: 4px;
  }
  .section-map .location-container.open {
    left: calc(232px + ((100% - 377px) / 14 * 8));
  }
  .section-map .location-container.open .bt-close {
    margin-left: -50px;
  }
  .section-map .map-container {
    height: 55vw;
    min-height: 700px;
    max-height: 100vh;
  }
  .section-map .map-container.infos-open {
    width: calc(232px + ((100% - 377px) / 14 * 8));
  }
}
@media only screen and (min-width: 1280px) {
  .section-map .map-container {
    height: 45vw;
    min-height: 720px;
  }
}
@media only screen and (min-width: 1550px) {
  .section-map .map-container {
    height: 40vw;
    min-height: 750px;
  }
}

.faq-container {
  background: #1a1a1a;
  color: #ffffff;
  padding-top: 200px;
  padding-bottom: 200px;
}
.faq-container .left, .faq-container .right {
  width: 100%;
}
.faq-container .left .title {
  margin-bottom: 50px;
}
.faq-container .right {
  text-align: left;
}
.faq-container .right .link {
  margin-top: 30px;
  margin-bottom: 100px;
}
.faq-container .right .block-accordeon {
  text-align: left;
}
.faq-container .right .block-accordeon .flex .item.open, .faq-container .right .block-accordeon .flex .item:hover {
  color: #CCF1E3;
  color: var(--main-color);
}
.faq-container .right .block-accordeon .flex .item.open .title, .faq-container .right .block-accordeon .flex .item:hover .title {
  color: #CCF1E3;
  color: var(--main-color);
}
.faq-container .right .block-accordeon .flex .item.open .title .picto svg *, .faq-container .right .block-accordeon .flex .item:hover .title .picto svg * {
  fill: #CCF1E3;
  fill: var(--main-color);
}
@media only screen and (min-width: 1040px) {
  .faq-container {
    padding-top: 260px;
    padding-bottom: 260px;
  }
  .faq-container .susy-container, .faq-container .slider-articles .slick-container, .slider-articles .faq-container .slick-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .faq-container .left {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .faq-container .right {
    width: calc(174px + ((100% - 319px) / 12 * 7));
    text-align: right;
  }
  .faq-container .right .link {
    margin-top: 0;
    margin-bottom: 60px;
  }
}

.block-cta {
  padding: 160px 0;
}
.block-cta .title {
  padding-bottom: 30px;
}
.block-cta .text {
  padding-bottom: 50px;
}
@media only screen and (max-width: calc(1040px - 1px)) {
  .block-cta .btn:before {
    width: 100%;
    opacity: 0.8;
  }
}
@media only screen and (min-width: 1040px) {
  .block-cta {
    padding: 200px 0;
  }
  .block-cta .flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .block-cta .flex .left {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .block-cta .flex .left .title, .block-cta .flex .left .text {
    padding-bottom: 50px;
  }
  .block-cta .flex .right {
    width: calc(145px + ((100% - 319px) / 12 * 6));
    margin-right: calc(29px + ((100% - 319px) / 12 * 1));
  }
  .block-cta .flex .right .btn {
    margin-left: -27px;
  }
}

.block-3-columns {
  padding: 50px 0;
}
.block-3-columns .surtitre {
  padding-bottom: 60px;
}
.block-3-columns .columns-container .column {
  padding-bottom: 60px;
}
.block-3-columns .columns-container .column .titre {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1040px) {
  .block-3-columns {
    padding: 150px 0;
  }
  .block-3-columns .columns-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .block-3-columns .columns-container .column {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
}

.site-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1a1a1a;
  color: #ffffff;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 2147483646;
  perspective-origin: center;
  perspective: 800px;
  pointer-events: all;
  -webkit-transition: all 1s linear 0.5s;
  -moz-transition: all 1s linear 0.5s;
  -ms-transition: all 1s linear 0.5s;
  -o-transition: all 1s linear 0.5s;
  transition: all 1s linear 0.5s;
}
.site-intro .expertises-list {
  width: 100%;
  height: 100%;
}
.site-intro .logo, .site-intro .expertise {
  position: absolute;
  right: 0;
  left: 0;
  bottom: auto;
  top: 47%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: translateX(5vw);
  -moz-transform: translateX(5vw);
  -ms-transform: translateX(5vw);
  -o-transform: translateX(5vw);
  transform: translateX(5vw);
}
.site-intro .logo.visible, .site-intro .expertise.visible {
  opacity: 1;
  -webkit-transition: all 0.5s linear 0.3s;
  -moz-transition: all 0.5s linear 0.3s;
  -ms-transition: all 0.5s linear 0.3s;
  -o-transition: all 0.5s linear 0.3s;
  transition: all 0.5s linear 0.3s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.site-intro .logo.hidden, .site-intro .expertise.hidden {
  -webkit-transform: translateX(-5vw);
  -moz-transform: translateX(-5vw);
  -ms-transform: translateX(-5vw);
  -o-transform: translateX(-5vw);
  transform: translateX(-5vw);
}
.site-intro .logo {
  bottom: auto;
  top: 48%;
  width: 105px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.site-intro .logo.visible {
  -webkit-transition: all 2s ease-out 0.5s;
  -moz-transition: all 2s ease-out 0.5s;
  -ms-transition: all 2s ease-out 0.5s;
  -o-transition: all 2s ease-out 0.5s;
  transition: all 2s ease-out 0.5s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.site-intro .logo svg * {
  fill: #ffffff;
}
.site-intro.ended {
  pointer-events: none;
  opacity: 0;
}
.site-intro.ended .logo.visible {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.site-intro.ended-immediate {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  -o-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
@media only screen and (min-width: 800px) {
  .site-intro .logo {
    width: 125px;
  }
}
@media only screen and (min-width: 1040px) {
  .site-intro {
    -webkit-transition: all 1s linear 0.5s;
    -moz-transition: all 1s linear 0.5s;
    -ms-transition: all 1s linear 0.5s;
    -o-transition: all 1s linear 0.5s;
    transition: all 1s linear 0.5s;
  }
  .site-intro .logo {
    width: 150px;
  }
  .site-intro.ended .logo {
    top: 35px;
  }
  .site-intro.ended .logo.visible {
    opacity: 1;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
}

.tease-post {
  width: calc(95% - 30px);
  min-width: calc(95% - 30px);
  margin: 0;
  /*
  &.enseignes{
  	.tease-header .categorie a{
  		color:$green;
  		@include bt-underline-hover($green, -2px, 1px);
  	}
  	&:hover .tease-content .tease-title{
  		color:$green;	
  	}
  }
  &.adhesifs{
  	.tease-header .categorie a{
  		color:$yellow;
  		@include bt-underline-hover($yellow, -2px, 1px);
  	}
  	&:hover .tease-content .tease-title{
  		color:$yellow;	
  	}
  }
  &.signaletique{
  	.tease-header .categorie a{
  		color:$orange;
  		@include bt-underline-hover($orange, -2px, 1px);
  	}
  	&:hover .tease-content .tease-title{
  		color:$orange;	
  	}
  }
  &.vitrophanie{
  	.tease-header .categorie a{
  		color:$blue;
  		@include bt-underline-hover($blue, -2px, 1px);
  	}
  	&:hover .tease-content .tease-title{
  		color:$blue;	
  	}
  }
  */
}
.tease-post .img-link .img-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.tease-post .img-link .img-container .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tease-post:hover .img-link .img-container .bg-img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tease-post .tease-header {
  padding: 15px 0;
}
.tease-post .tease-header .categorie .post-categories {
  display: flex;
  flex-wrap: wrap;
}
.tease-post .tease-header .categorie .post-categories li {
  margin-right: 10px;
}
.tease-post .tease-header .categorie .post-categories li:last-child {
  margin-right: 0;
}
.tease-post .tease-header .categorie a {
  color: #999999;
  cursor: pointer;
  position: relative;
}
.tease-post .tease-header .categorie a:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background: #999999;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-animation: 0.5s anim_shrinkToRight;
  -moz-animation: 0.5s anim_shrinkToRight;
  -o-animation: 0.5s anim_shrinkToRight;
  animation: 0.5s anim_shrinkToRight;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.tease-post .tease-header .categorie a:hover:after, .tease-post .tease-header .categorie a.selected:after {
  -webkit-animation: 0.5s anim_growFromLeft;
  -moz-animation: 0.5s anim_growFromLeft;
  -o-animation: 0.5s anim_growFromLeft;
  animation: 0.5s anim_growFromLeft;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.tease-post .tease-header .date {
  text-transform: uppercase;
}
.tease-post .tease-content {
  padding-top: 15px;
}
.tease-post .tease-content .tease-title {
  color: #ffffff;
  margin-bottom: 50px;
}
@media only screen and (min-width: 620px) {
  .tease-post {
    width: calc(((100% - 29px) / 2 * 1));
    min-width: calc(((100% - 29px) / 2 * 1));
  }
}
@media only screen and (min-width: 800px) {
  .tease-post {
    width: calc(58px + ((100% - 145px) / 6 * 3));
    min-width: calc(58px + ((100% - 145px) / 6 * 3));
  }
}
@media only screen and (min-width: 1040px) {
  .tease-post {
    width: calc(87px + ((100% - 319px) / 12 * 4));
    min-width: calc(87px + ((100% - 319px) / 12 * 4));
  }
}
@media only screen and (min-width: 1280px) {
  .tease-post {
    width: calc(87px + ((100% - 319px) / 12 * 4));
    min-width: calc(87px + ((100% - 319px) / 12 * 4));
  }
}

.article-content .content {
  flex-direction: column-reverse;
  padding-bottom: 150px;
}
.article-content .content > .left {
  display: none;
  width: 100%;
  padding-top: 100px;
  min-width: 180px;
}
.article-content .content > .left .sticky {
  text-align: center;
}
.article-content .content > .right {
  width: 100%;
}
.article-content .content > .right .blog-author {
  display: inline-block;
  margin-top: 100px;
}
.article-content .content > .right .blog-author a {
  color: #999999;
  cursor: pointer;
  position: relative;
}
.article-content .content > .right .blog-author a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #999999;
  top: auto;
  bottom: -2px;
  left: auto;
  right: 0;
  margin: auto;
  pointer-events: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.article-content .content > .right .blog-author a:hover:after {
  -webkit-animation: 0.5s anim_underline;
  -moz-animation: 0.5s anim_underline;
  -o-animation: 0.5s anim_underline;
  animation: 0.5s anim_underline;
}
@media only screen and (min-width: 1040px) {
  .article-content .content {
    flex-direction: row;
  }
  .article-content .content > .left {
    display: block;
    padding-top: 0;
    width: calc(58px + ((100% - 319px) / 12 * 3));
  }
  .article-content .content > .left .sticky {
    align-items: flex-start;
    text-align: left;
  }
  .article-content .content > .right {
    width: calc(232px + ((100% - 319px) / 12 * 9));
  }
}
@media only screen and (min-width: 1280px) {
  .article-content .content > .left {
    width: calc(58px + ((100% - 319px) / 12 * 3));
  }
  .article-content .content > .right {
    width: calc(203px + ((100% - 319px) / 12 * 8));
  }
}

.article-content .article-infos {
  padding-bottom: 20px;
}
.article-content .article-infos .post-categories {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.article-content .article-infos .post-categories li {
  margin-left: 20px;
}
.article-content .article-infos .post-categories li a {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 4px 15px;
  border-radius: 32px;
  box-sizing: border-box;
}
.article-content .article-infos .post-categories li a .background {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.article-content .article-infos .post-categories li a .title {
  position: relative;
}
.article-content .article-infos .post-categories li a:hover {
  color: #1a1a1a;
}
.article-content .article-infos .post-categories li a:hover .background {
  opacity: 1;
}
.article-content .article-header .left,
.article-content .article-header .right {
  width: 100%;
}
.article-content .article-header .left .article-title,
.article-content .article-header .right .article-title {
  margin-bottom: 50px;
}
.article-content .article-header .left .article-text-intro,
.article-content .article-header .right .article-text-intro {
  padding-bottom: 50px;
}
.article-content .article-header .left .image, .article-content .article-header .left picture,
.article-content .article-header .right .image,
.article-content .article-header .right picture {
  margin-top: 60px;
  width: 100%;
  height: auto;
}
.article-content .article-header .left .image img, .article-content .article-header .left picture img,
.article-content .article-header .right .image img,
.article-content .article-header .right picture img {
  width: 100%;
}
@media only screen and (min-width: 1040px) {
  .article-content .article-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .article-content .article-header .left {
    width: calc(116px + ((100% - 319px) / 12 * 5));
  }
  .article-content .article-header .right {
    width: calc(174px + ((100% - 319px) / 12 * 7));
  }
}

.blog-list {
  background: #1a1a1a;
  color: #ffffff;
  padding-bottom: 60px;
}
.blog-list .tease-post {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 60px;
}
.blog-list .tease-post .link {
  display: none;
}
@media only screen and (min-width: 620px) {
  .blog-list .tease-post {
    width: calc(145px + ((100% - 319px) / 12 * 6));
    margin-right: 28px;
  }
  .blog-list .tease-post:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .blog-list .tease-post {
    width: calc(87px + ((100% - 319px) / 12 * 4));
    margin-right: 28px;
  }
  .blog-list .tease-post:nth-child(2n) {
    margin-right: 30px;
  }
  .blog-list .tease-post:nth-child(3n) {
    margin-right: 0;
  }
}

.homepage-slider {
  position: relative;
  background: #1a1a1a;
  color: #ffffff;
}
.homepage-slider .site-title {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.homepage-slider .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1A1A1A 96%);
}
.homepage-slider .bg-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.homepage-slider .bg-container .illustration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.homepage-slider .bg-container .illustration.slick-current {
  opacity: 1;
}
.homepage-slider .slider-container {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 1;
}
.homepage-slider .slider-container.slick-initialized .slick-slide {
  display: flex;
}
.homepage-slider .slider-container .slider {
  width: 100%;
  min-width: 100%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.homepage-slider .slider-container .slider .title {
  padding-bottom: 60px;
}
.homepage-presentation {
  background: #1a1a1a;
  color: #ffffff;
  padding: 100px 0 100px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.homepage-presentation a {
  color: #ffffff;
}
.homepage-presentation .top-container {
  padding-bottom: 60px;
}
.homepage-presentation .top-container .title {
  padding-bottom: 60px;
}
.homepage-presentation .top-container .link .picto svg * {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.homepage-presentation .content .liens-hover {
  display: none;
}
.homepage-presentation .content .text a {
  color: #CCF1E3;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.homepage-presentation .content .text p {
  margin-bottom: 30px;
}
.homepage-presentation.colored {
  color: #1a1a1a;
}
.homepage-presentation.colored a {
  color: #1a1a1a;
}
.homepage-presentation.colored .link .picto svg * {
  fill: #1a1a1a;
}
@media only screen and (min-width: 1040px) {
  .homepage-presentation {
    padding: 150px 0 180px;
  }
  .homepage-presentation .top-container {
    padding-bottom: 100px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .homepage-presentation .top-container .title {
    padding-bottom: 0;
    width: calc(145px + ((100% - 319px) / 12 * 6));
  }
  .homepage-presentation .content .liens-hover {
    pointer-events: none;
    display: block;
    position: relative;
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .homepage-presentation .content .liens-hover .lien-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 0;
    padding-top: 60%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .homepage-presentation .content .liens-hover .lien-hover.visible {
    opacity: 1;
  }
  .homepage-presentation .content .text {
    width: calc(145px + ((100% - 319px) / 12 * 6));
  }
}
@media only screen and (min-width: 1550px) {
  .homepage-presentation {
    padding: 200px 0 250px;
  }
}

.homepage-expertise {
  position: relative;
  background: #ffffff;
  color: #1a1a1a;
  padding: 160px 0 140px;
}
.homepage-expertise .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.homepage-expertise .background-container .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.homepage-expertise .background-container .background:first-child {
  opacity: 1;
}
.homepage-expertise .title {
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1040px) {
  .homepage-expertise {
    padding: 200px 0;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

.block-scroll-horizontal {
  position: relative;
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 1040px) {
  .block-scroll-horizontal {
    display: block;
  }
}

.full-screen {
  display: block;
  overflow: visible;
}

#panels #panels-container, #panels #panels_mobile_container, #panels_mobile #panels-container, #panels_mobile #panels_mobile_container {
  width: 100%;
  height: calc(100vh - 50px);
  padding-top: 160px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0;
  overflow: visible;
}
#panels #panels-container .panel, #panels #panels_mobile_container .panel, #panels_mobile #panels-container .panel, #panels_mobile #panels_mobile_container .panel {
  position: relative;
  width: calc(232px + ((100% - 319px) / 12 * 8));
  min-width: calc(232px + ((100% - 319px) / 12 * 8));
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
#panels #panels-container .panel .container, #panels #panels_mobile_container .panel .container, #panels_mobile #panels-container .panel .container, #panels_mobile #panels_mobile_container .panel .container {
  width: 100%;
  height: 100%;
  cursor: none;
}
#panels #panels-container .panel .container .image-container, #panels #panels_mobile_container .panel .container .image-container, #panels_mobile #panels-container .panel .container .image-container, #panels_mobile #panels_mobile_container .panel .container .image-container {
  position: relative;
  width: calc(203px + (100% - 232px));
  height: calc(100% - 200px);
  overflow: hidden;
}
#panels #panels-container .panel .container .image-container .image, #panels #panels_mobile_container .panel .container .image-container .image, #panels_mobile #panels-container .panel .container .image-container .image, #panels_mobile #panels_mobile_container .panel .container .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#panels #panels-container .panel .container .image-container .shadow, #panels #panels_mobile_container .panel .container .image-container .shadow, #panels_mobile #panels-container .panel .container .image-container .shadow, #panels_mobile #panels_mobile_container .panel .container .image-container .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.2;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#panels #panels-container .panel .container .image-container .step-title, #panels #panels_mobile_container .panel .container .image-container .step-title, #panels_mobile #panels-container .panel .container .image-container .step-title, #panels_mobile #panels_mobile_container .panel .container .image-container .step-title {
  position: relative;
  color: #ffffff;
  padding: 0 30px 40px;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
#panels #panels-container .panel .container .produits-list, #panels #panels_mobile_container .panel .container .produits-list, #panels_mobile #panels-container .panel .container .produits-list, #panels_mobile #panels_mobile_container .panel .container .produits-list {
  padding: 20px 0 0 30px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
#panels #panels-container .panel .container .produits-list .produit, #panels #panels_mobile_container .panel .container .produits-list .produit, #panels_mobile #panels-container .panel .container .produits-list .produit, #panels_mobile #panels_mobile_container .panel .container .produits-list .produit {
  color: #1a1a1a;
}
#panels #panels-container .panel:hover .container .image-container .image, #panels #panels-container .panel.slick-current .container .image-container .image, #panels #panels_mobile_container .panel:hover .container .image-container .image, #panels #panels_mobile_container .panel.slick-current .container .image-container .image, #panels_mobile #panels-container .panel:hover .container .image-container .image, #panels_mobile #panels-container .panel.slick-current .container .image-container .image, #panels_mobile #panels_mobile_container .panel:hover .container .image-container .image, #panels_mobile #panels_mobile_container .panel.slick-current .container .image-container .image {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#panels #panels-container .panel:hover .container .image-container .shadow, #panels #panels-container .panel.slick-current .container .image-container .shadow, #panels #panels_mobile_container .panel:hover .container .image-container .shadow, #panels #panels_mobile_container .panel.slick-current .container .image-container .shadow, #panels_mobile #panels-container .panel:hover .container .image-container .shadow, #panels_mobile #panels-container .panel.slick-current .container .image-container .shadow, #panels_mobile #panels_mobile_container .panel:hover .container .image-container .shadow, #panels_mobile #panels_mobile_container .panel.slick-current .container .image-container .shadow {
  opacity: 0.1;
}
#panels #panels-container .panel:hover .container .image-container .step-title, #panels #panels-container .panel.slick-current .container .image-container .step-title, #panels #panels_mobile_container .panel:hover .container .image-container .step-title, #panels #panels_mobile_container .panel.slick-current .container .image-container .step-title, #panels_mobile #panels-container .panel:hover .container .image-container .step-title, #panels_mobile #panels-container .panel.slick-current .container .image-container .step-title, #panels_mobile #panels_mobile_container .panel:hover .container .image-container .step-title, #panels_mobile #panels_mobile_container .panel.slick-current .container .image-container .step-title {
  opacity: 1;
}
#panels #panels-container .panel:hover .container .produits-list, #panels #panels-container .panel.slick-current .container .produits-list, #panels #panels_mobile_container .panel:hover .container .produits-list, #panels #panels_mobile_container .panel.slick-current .container .produits-list, #panels_mobile #panels-container .panel:hover .container .produits-list, #panels_mobile #panels-container .panel.slick-current .container .produits-list, #panels_mobile #panels_mobile_container .panel:hover .container .produits-list, #panels_mobile #panels_mobile_container .panel.slick-current .container .produits-list {
  opacity: 1;
}
@media screen and (max-height: 900px) {
  #panels #panels-container, #panels #panels_mobile_container, #panels_mobile #panels-container, #panels_mobile #panels_mobile_container {
    padding-top: 100px !important;
  }
  #panels #panels-container .panel .container .image-container, #panels #panels_mobile_container .panel .container .image-container, #panels_mobile #panels-container .panel .container .image-container, #panels_mobile #panels_mobile_container .panel .container .image-container {
    height: calc(100% - 160px);
  }
}

#panels_mobile {
  display: flex;
  overflow: hidden;
}
@media only screen and (min-width: 1040px) {
  #panels_mobile {
    display: none;
  }
}
#panels_mobile #panels_mobile_container {
  height: auto;
}
#panels_mobile #panels_mobile_container .panel {
  width: 95%;
  min-width: 95%;
}
#panels_mobile #panels_mobile_container .panel .container .image-container {
  position: relative;
  justify-content: center;
  align-items: center;
  padding-top: 50vw;
}
#panels_mobile #panels_mobile_container .panel .container .image-container .image {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
#panels_mobile #panels_mobile_container .panel .container .image-container .step-title {
  position: absolute;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#panels_mobile #panels_mobile_container .panel .container .arrow-mobile {
  position: absolute;
  right: 50px;
  margin-top: 30px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.2s;
  -moz-transition: all 0.5s ease-out 0.2s;
  -ms-transition: all 0.5s ease-out 0.2s;
  -o-transition: all 0.5s ease-out 0.2s;
  transition: all 0.5s ease-out 0.2s;
}
@media only screen and (min-width: 620px) {
  #panels_mobile #panels_mobile_container .panel .container .arrow-mobile {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (min-width: 800px) {
  #panels_mobile #panels_mobile_container .panel .container .arrow-mobile {
    width: 30px;
    height: 30px;
  }
}
#panels_mobile #panels_mobile_container .panel .container .arrow-mobile svg * {
  fill: #1a1a1a;
}
#panels_mobile #panels_mobile_container .panel .container .produits-list {
  opacity: 1;
  padding-left: 0;
  min-height: 50px;
}
#panels_mobile #panels_mobile_container .panel.slick-current .container .arrow-mobile {
  right: 30px;
  opacity: 1;
}

.page-intro {
  padding-bottom: 60px;
}
.page-intro .susy-container .left, .page-intro .slider-articles .slick-container .left, .slider-articles .page-intro .slick-container .left, .page-intro .susy-container .right, .page-intro .slider-articles .slick-container .right, .slider-articles .page-intro .slick-container .right {
  width: 100%;
}
.page-intro .susy-container .left .sticky .surtitre, .page-intro .slider-articles .slick-container .left .sticky .surtitre, .slider-articles .page-intro .slick-container .left .sticky .surtitre {
  padding-bottom: 40px;
}
.page-intro .susy-container .left .sticky .titre, .page-intro .slider-articles .slick-container .left .sticky .titre, .slider-articles .page-intro .slick-container .left .sticky .titre {
  padding-bottom: 50px;
}
.page-intro .susy-container .left .sticky .texte, .page-intro .slider-articles .slick-container .left .sticky .texte, .slider-articles .page-intro .slick-container .left .sticky .texte {
  padding-bottom: 80px;
}
.page-intro .susy-container .left .sticky .texte p, .page-intro .slider-articles .slick-container .left .sticky .texte p, .slider-articles .page-intro .slick-container .left .sticky .texte p {
  margin-bottom: 24px;
}
.page-intro .susy-container .left .sticky .texte p strong, .page-intro .slider-articles .slick-container .left .sticky .texte p strong, .slider-articles .page-intro .slick-container .left .sticky .texte p strong {
  font-weight: bold;
}
.page-intro .susy-container .left .sticky .btn, .page-intro .slider-articles .slick-container .left .sticky .btn, .slider-articles .page-intro .slick-container .left .sticky .btn {
  margin-bottom: 50px;
}
@media only screen and (max-width: calc(1040px - 1px)) {
  .page-intro .susy-container .left .sticky .btn:before, .page-intro .slider-articles .slick-container .left .sticky .btn:before, .slider-articles .page-intro .slick-container .left .sticky .btn:before {
    width: 100%;
    opacity: 0.8;
  }
}
.page-intro .right .images-container {
  margin-bottom: 30px;
}
.page-intro .right .images-container.hidden {
  display: none;
}
.page-intro .right .images-container .image {
  width: 100%;
  padding-top: 60%;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.page-intro .right .images-container .image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  transform: scale(1.1);
}
.page-intro .right .images-container .image:hover img {
  transform: scale(1);
}
.page-intro .right .images-container.column-2 {
  display: flex;
  justify-content: space-between;
}
.page-intro .right .images-container.column-2 .image {
  width: calc(((100% - 29px) / 2 * 1));
}
.page-intro .right .images-container.column-2.hidden {
  display: none;
}
.page-intro .right .more-images {
  width: 100%;
  padding: 35px 0;
  text-align: center;
  color: #1A1A1A;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  border: 1px solid #1A1A1A;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.page-intro .right .more-images:hover {
  font-size: 21px;
}
@media only screen and (min-width: 1040px) {
  .page-intro {
    padding-bottom: 100px;
  }
  .page-intro .susy-container, .page-intro .slider-articles .slick-container, .slider-articles .page-intro .slick-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .page-intro .susy-container .left, .page-intro .slider-articles .slick-container .left, .slider-articles .page-intro .slick-container .left {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .page-intro .susy-container .left .sticky .btn, .page-intro .slider-articles .slick-container .left .sticky .btn, .slider-articles .page-intro .slick-container .left .sticky .btn {
    margin-bottom: 30px;
  }
  .page-intro .susy-container .right, .page-intro .slider-articles .slick-container .right, .slider-articles .page-intro .slick-container .right {
    width: calc(174px + ((100% - 319px) / 12 * 7));
  }
}

.page-intro-methodo .surtitre,
.page-intro-methodo .titre,
.page-intro-methodo .texte {
  width: 100%;
}
.page-intro-methodo .surtitre {
  padding-bottom: 30px;
}
.page-intro-methodo .titre {
  padding-bottom: 50px;
}
.page-intro-methodo .texte {
  padding-bottom: 30px;
}
.page-intro-methodo .texte p {
  margin-bottom: 30px;
}
.page-intro-methodo .texte p strong {
  font-weight: 700;
}
.page-intro-methodo .images-container {
  width: 100%;
}
.page-intro-methodo .images-container .image {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1040px) {
  .page-intro-methodo .surtitre, .page-intro-methodo .titre {
    width: calc(174px + ((100% - 319px) / 12 * 7));
  }
  .page-intro-methodo .texte {
    width: calc(145px + ((100% - 319px) / 12 * 6));
    margin-left: calc(174px + ((100% - 319px) / 12 * 6));
    padding-bottom: 50px;
  }
  .page-intro-methodo .images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-intro-methodo .images-container .image {
    width: calc(145px + ((100% - 319px) / 12 * 6));
    padding-top: 60%;
  }
  .page-intro-methodo .images-container .image:first-child {
    margin-top: 20%;
  }
}

.expertise-types {
  padding: 60px 0;
  background-color: #ffffff;
}
.expertise-types .title {
  padding-bottom: 50px;
  width: 400px;
  max-width: 100%;
}
.expertise-types .products-list .product {
  border-top: 1px solid #1a1a1a;
}
.expertise-types .products-list .product .product__content {
  color: #1a1a1a;
}
.expertise-types .products-list .product .product__content:hover {
  color: #1a1a1a;
}
.expertise-types .products-list .product .product__content .product-title {
  padding: 40px 0 30px;
  width: 220px;
}
.expertise-types .products-list .product .product__content .product-text {
  padding: 30px 0;
  text-align: left;
}
.expertise-types .products-list .product .product__content .product-text .link-product {
  margin-top: 25px;
  float: left;
}
.expertise-types .products-list .product .product__content .product-img .img {
  width: 100%;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.expertise-types .products-list .product .link {
  margin-bottom: 50px;
}
.expertise-types.white {
  background: #1a1a1a;
  color: #ffffff;
}
.expertise-types.white .products-list .product {
  border-top: 1px solid #ffffff;
}
.expertise-types.white .products-list .product a {
  color: #ffffff;
}
.expertise-types.white .products-list .product a:hover {
  color: var(--main-color);
}
@media only screen and (min-width: 1040px) {
  .expertise-types {
    padding: 100px 0;
  }
  .expertise-types .title {
    width: calc(116px + ((100% - 319px) / 12 * 5));
  }
  .expertise-types .products-list .product .product__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .expertise-types .products-list .product .product__content .product-title, .expertise-types .products-list .product .product__content .product-text, .expertise-types .products-list .product .product__content .product-img {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .expertise-types .products-list .product .product__content .product-title {
    padding: 30px 0;
  }
  .expertise-types .products-list .product .product__content .product-text {
    padding: 40px 0 30px;
  }
  .expertise-types .products-list .product .product__content .product-title {
    padding-right: calc(((100% - 319px) / 12 * 1));
  }
  .expertise-types .products-list .product .product__content .product-img {
    order: 1;
    opacity: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .expertise-types .products-list .product .product__content:hover .product-img {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.products-content {
  margin-top: 100px;
  flex-direction: column;
}
.products-content h2 {
  color: #1A1A1A;
  font-family: "sofia-pro";
  font-size: 55px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px; /* 109.091% */
  margin-right: 30px;
  min-width: 100%;
}
.products-content h3 {
  color: #1A1A1A;
  font-family: "sofia-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px; /* 136% */
  margin-top: 40px;
  margin-bottom: 15px;
}
.products-content p {
  color: #1A1A1A;
  font-family: "sofia-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
@media only screen and (min-width: 1040px) {
  .products-content {
    flex-direction: row;
  }
  .products-content h2 {
    min-width: 40%;
  }
}

.clients-list {
  padding-bottom: 100px;
}
.clients-list .susy-container, .clients-list .slider-articles .slick-container, .slider-articles .clients-list .slick-container {
  margin: 0 auto;
}
.clients-list .susy-container .clients-container, .clients-list .slider-articles .slick-container .clients-container, .slider-articles .clients-list .slick-container .clients-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.clients-list .susy-container .clients-container .client, .clients-list .slider-articles .slick-container .clients-container .client, .slider-articles .clients-list .slick-container .clients-container .client {
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
}
.clients-list .susy-container .clients-container .client img, .clients-list .slider-articles .slick-container .clients-container .client img, .slider-articles .clients-list .slick-container .clients-container .client img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 800px) {
  .clients-list .susy-container .clients-container, .clients-list .slider-articles .slick-container .clients-container, .slider-articles .clients-list .slick-container .clients-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (min-width: 1040px) {
  .clients-list .susy-container .clients-container, .clients-list .slider-articles .slick-container .clients-container, .slider-articles .clients-list .slick-container .clients-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

.clients-slider {
  padding: 100px 0;
  --nbslide:3;
}
.clients-slider .clients-header {
  width: 100%;
  padding-bottom: 40px;
}
.clients-slider .clients-header a, .clients-slider .clients-header a:hover {
  color: #1a1a1a;
}
.clients-slider .clients-list {
  width: 100%;
  padding: 0;
}
.clients-slider .clients-list .slick-list {
  padding: 30px 0;
  /*overflow: visible;*/
}
.clients-slider .clients-list li {
  /*cursor:pointer;*/
  position: relative;
  display: block;
  width: calc(((100% - 58px) / 3 * 1));
  z-index: 1;
  -webkit-transition: all 0.5s cubic-bezier(0, 1.95, 0.83, 0.67);
  -moz-transition: all 0.5s cubic-bezier(0, 1.95, 0.83, 0.67);
  -ms-transition: all 0.5s cubic-bezier(0, 1.95, 0.83, 0.67);
  -o-transition: all 0.5s cubic-bezier(0, 1.95, 0.83, 0.67);
  transition: all 0.5s cubic-bezier(0, 1.95, 0.83, 0.67);
}
.clients-slider .clients-list li img {
  width: 100%;
  height: auto;
}
.clients-slider .clients-list li.hidden {
  display: none;
}
.clients-slider .clients-list li.desktop {
  display: flex;
}
.clients-slider .clients-list li:hover {
  /*@include transform(scale(1.1));*/
}
.clients-slider .clients-list li span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.clients-slider .clients-list li span img {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.clients-slider .clients-list li span.visible {
  position: relative;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: opacity 0.5s ease-in-out 0.5s;
  -moz-transition: opacity 0.5s ease-in-out 0.5s;
  -ms-transition: opacity 0.5s ease-in-out 0.5s;
  -o-transition: opacity 0.5s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out 0.5s;
}
.clients-slider .clients-list li span.hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media only screen and (min-width: 800px) {
  .clients-slider {
    --nbslide:4;
  }
  .clients-slider .clients-list li {
    width: calc(29px + ((100% - 203px) / 8 * 2));
  }
}
@media only screen and (min-width: 1040px) {
  .clients-slider {
    padding: 150px 0 100px;
    --nbslide:5;
  }
  .clients-slider .clients-list li {
    width: calc(29px + ((100% - 261px) / 10 * 2));
  }
}
@media only screen and (min-width: 1280px) {
  .clients-slider {
    padding: 200px 0 100px;
  }
}
@media only screen and (min-width: 1550px) {
  .clients-slider {
    --nbslide:6;
  }
  .clients-slider .clients-list li {
    width: calc(29px + ((100% - 319px) / 12 * 2));
  }
}

.page-contact .left,
.page-contact .right {
  width: 100%;
}
.page-contact .right {
  padding-bottom: 150px;
}
.page-contact .right .form-response.hidden, .page-contact .right .form-content.hidden {
  display: none;
}
.page-contact .right .form-response {
  padding-top: 30px;
}
.page-contact .right .form-response div {
  display: none;
}
.page-contact .right .form-response.wait .wait {
  -webkit-animation: 0.5s linear 0s infinite blink;
  -moz-animation: 0.5s linear 0s infinite blink;
  -o-animation: 0.5s linear 0s infinite blink;
  animation: 0.5s linear 0s infinite blink;
  display: block;
}
.page-contact .right .form-response.success .success {
  display: block;
}
.page-contact .right .form-response.error .error {
  display: block;
}
.page-contact .left a, .page-contact .left a:hover {
  color: #1a1a1a;
}
.page-contact .left .title {
  max-width: 350px;
}
.page-contact .infos-container {
  padding: 100px 0 40px;
}
.page-contact .infos-container .title-question {
  padding-bottom: 30px;
}
.page-contact .infos-container .link, .page-contact .infos-container .adresse {
  margin: 5px 0;
}
.page-contact .infos-container .adresse {
  padding: 10px 0;
}
.page-contact .form-ajax .container-2-cols {
  display: flex;
  flex-direction: column;
}
.page-contact .form-ajax .container-2-cols .content {
  width: 100%;
  margin-bottom: 30px;
}
.page-contact .form-ajax .file-container {
  padding: 60px 0;
}
.page-contact .form-ajax .consent {
  margin-bottom: 30px;
}
.page-contact .form-ajax button {
  padding: 30px 0 0;
}
@media only screen and (min-width: 1040px) {
  .page-contact .susy-container, .page-contact .slider-articles .slick-container, .slider-articles .page-contact .slick-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-contact .susy-container .left, .page-contact .slider-articles .slick-container .left, .slider-articles .page-contact .slick-container .left,
  .page-contact .susy-container .right,
  .page-contact .slider-articles .slick-container .right,
  .slider-articles .page-contact .slick-container .right {
    padding-bottom: 150px;
  }
  .page-contact .susy-container .left, .page-contact .slider-articles .slick-container .left, .slider-articles .page-contact .slick-container .left {
    width: calc(87px + ((100% - 319px) / 12 * 4));
  }
  .page-contact .susy-container .left .title, .page-contact .slider-articles .slick-container .left .title, .slider-articles .page-contact .slick-container .left .title {
    max-width: 440px;
  }
  .page-contact .susy-container .right, .page-contact .slider-articles .slick-container .right, .slider-articles .page-contact .slick-container .right {
    width: calc(203px + ((100% - 319px) / 12 * 8));
  }
  .page-contact .form-ajax {
    padding-top: 50px;
  }
  .page-contact .form-ajax .container-2-cols {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-contact .form-ajax .container-2-cols .content {
    width: calc(87px + ((100% - 203px) / 8 * 4));
  }
}

.page-legal .col-container {
  padding: 100px 0 200px;
  flex-direction: column;
}
.page-legal .col-container .left,
.page-legal .col-container .right {
  width: 100%;
}
.page-legal .col-container .left .site-title {
  margin-bottom: 30px;
}
.page-legal .col-container .left .email, .page-legal .col-container .left .telephone, .page-legal .col-container .left .adresse {
  display: block;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1040px) {
  .page-legal .col-container {
    flex-direction: row;
  }
  .page-legal .col-container .left {
    width: calc(58px + ((100% - 319px) / 12 * 3));
  }
  .page-legal .col-container .right {
    width: calc(203px + ((100% - 319px) / 12 * 8));
  }
}

.blog-title {
  padding-bottom: 60px;
  background: #1a1a1a;
  color: #ffffff;
}
.blog-title .left {
  width: 250px;
  margin-bottom: 50px;
}
.blog-title .categories-list {
  color: #1a1a1a;
  max-height: 50px;
}
@media only screen and (min-width: 1040px) {
  .blog-title .susy-container, .blog-title .slider-articles .slick-container, .slider-articles .blog-title .slick-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .blog-title .left {
    width: 26vw;
    max-width: 450px;
    margin-bottom: 0;
  }
}

.page-expertise {
  background: var(--main-color);
}
.page-expertise .big-arrow svg * {
  fill: #1a1a1a;
}
.page-expertise .surtitre p {
  margin-bottom: 24px;
}
.page-expertise .surtitre strong {
  font-weight: bold !important;
}
.page-expertise .surtitre ul {
  list-style: disc !important;
  list-style-position: inside;
}
.page-expertise .surtitre ul li {
  margin-bottom: 24px;
}

.page-produit {
  background: var(--main-color);
}
.page-produit .big-arrow svg * {
  fill: var(--main-color);
}
.page-produit .texte p {
  margin-bottom: 24px;
}
.page-produit .texte strong {
  font-weight: bold !important;
}
.page-produit .texte ul {
  list-style: disc !important;
  list-style-position: inside;
}
.page-produit .texte ul li {
  margin-bottom: 24px;
}

.page-methodologie .block-cta {
  background: var(--main-color);
}

.page-a-propos .block-cta {
  background: #BBDAFF;
}

/* WOOCOMMERCE
@import 'woocommerce/_woocommerce_page';
@import 'woocommerce/_woocommerce_cart';
*/


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