@charset "UTF-8";
/*
VARIABLES & MIXINS
 */
/*
COLORS
*/
/*
FONT LOADING
*/
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap);
/*
RESPONSIVE WIDTH
*/
/*
BASE STYLES
 */
/*
INITIALIZE
*/
/* Inherit box-sizing to more easily change it's value on a component level. */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* Resets default browser CSS. */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

img {
  vertical-align: middle;
}

body {
  line-height: normal;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

table, td, th {
  vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

/* Remove  border on linked images. */
a img {
  border: none;
}

*:focus {
  outline: none;
}

/*
BUTTONS STYLES
*/
button {
  background: inherit;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

.btn {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 1.5rem 3.3rem;
  transition: all 0.4s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
@media (min-width: 576px) {
  .btn {
    width: auto;
  }
}
@media (min-width: 768px) {
  .btn {
    padding: 2.5rem 4.3rem;
    font-size: 1.7rem;
  }
}
.btn.btn-black {
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
}
.btn.btn-black:hover {
  background: #000000;
  color: #FFFFFF;
}
.btn.btn-white {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
}
.btn.btn-white:hover {
  background: #FFFFFF;
  color: #000000;
}

/*
LINKS STYLES
*/
a {
  text-decoration: none;
}

/*
CURSOR STYLES
*/
#cursor {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  #cursor .cursor_circle {
    width: 1rem;
    height: 1rem;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    background: #1FC5DA;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  #cursor.project .cursor_circle {
    width: 11rem;
    height: 11rem;
    background-color: #000000;
  }
  #cursor.project::after {
    content: "Voir le projet";
    color: #FFFFFF;
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #cursor.video .cursor_circle {
    width: 11rem;
    height: 11rem;
    background-color: #000000;
  }
  #cursor.video::after {
    content: "Lire la vidéo";
    color: #FFFFFF;
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #cursor.blog .cursor_circle {
    width: 11rem;
    height: 11rem;
    background-color: #000000;
  }
  #cursor.blog::after {
    content: "Lire l'article";
    color: #FFFFFF;
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #cursor.download .cursor_circle {
    width: 11rem;
    height: 11rem;
    background-color: #000000;
  }
  #cursor.download::after {
    content: "Je télécharge";
    color: #FFFFFF;
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/*
FORMS STYLES
*/
/* ------ Input ------ */
input {
  height: 6.3rem;
  border-radius: 0;
  background: transparent;
  padding: 1.5rem 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid #000000;
}
@media (min-width: 768px) {
  input {
    font-size: 2.4rem !important;
  }
}
input::placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400 !important;
  color: #000000;
}
@media (min-width: 768px) {
  input::placeholder {
    font-size: 2.4rem !important;
  }
}

/* ------ Textarea ------ */
textarea {
  border-radius: 0;
  background: transparent;
  padding: 1.5rem 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid #000000;
}
@media (min-width: 768px) {
  textarea {
    font-size: 2.4rem !important;
  }
}
textarea::placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400 !important;
  color: #000000;
}
@media (min-width: 768px) {
  textarea::placeholder {
    font-size: 2.4rem !important;
  }
}

/* ------ Checkbox ------ */
.form-group-check label {
  align-items: center;
  display: flex;
  position: relative;
}
.form-group-check .label {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
}
@media (min-width: 768px) {
  .form-group-check .label {
    font-size: 2.4rem !important;
  }
}
.form-group-check input[type=checkbox] {
  display: none;
}
.form-group-check input[type=checkbox]:checked ~ .checkbox {
  display: block;
  background: #000000;
}
.form-group-check input[type=checkbox]:checked ~ .checkbox:after {
  border-color: #000000;
}
.form-group-check .checkbox {
  border: 1px solid #000000;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
  margin-right: 2rem;
  transition: all 0.4s;
  flex: 0 0 3rem;
}
.form-group-check .checkbox:after {
  border: solid transparent;
  border-width: 0 1px 1px 0;
  content: "";
  height: 2.5rem;
  left: 0.8rem;
  top: 0.3rem;
  position: absolute;
  transform: rotate(45deg);
  width: 0.8rem;
  transition: all 0.4s;
}

/* ------ Radio ------ */
.form-group-radio label {
  align-items: center;
  display: flex;
  position: relative;
}
.form-group-radio label .label {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
}
@media (min-width: 768px) {
  .form-group-radio label .label {
    font-size: 2.4rem !important;
  }
}
.form-group-radio label input[type=radio] {
  display: none;
}
.form-group-radio label input[type=radio]:checked ~ .radio {
  display: flex;
  background: #000000;
}
.form-group-radio label input[type=radio]:checked ~ .radio:after {
  background: #000000;
}
.form-group-radio label .radio {
  align-items: center;
  border: 1px solid #000000;
  border-radius: 3rem;
  cursor: pointer;
  display: flex;
  height: 3rem;
  width: 3rem;
  justify-content: center;
  margin-right: 2rem;
  transition: all 0.4s;
  flex: 0 0 3rem;
}
.form-group-radio label .radio:after {
  background: #FFFFFF;
  border-radius: 100%;
  content: "";
  height: 2.5rem;
  position: absolute;
  width: 2.5rem;
  transition: all 0.4s;
}

/* ------ Ninja Forms ------ */
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-fields-required {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .nf-field-label .ninja-forms-req-symbol {
  display: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field input {
  background: none;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 0;
  color: #000000;
  height: 7rem;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field input::placeholder {
  color: #000000;
  font-size: 1.8rem;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field input[type=checkbox], .nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field input[type=radio] {
  height: inherit;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 0;
  height: 12rem;
  color: #000000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field textarea::placeholder {
  color: #000000;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .textarea-wrap .nf-field-label {
  margin-top: 2rem;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .textarea-wrap .nf-field-label label {
  font-size: 3rem;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .listradio-wrap label:after {
  border: 1px solid #000000;
  background: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .listradio-wrap label.nf-checked-label:before {
  top: 0.265em;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-field .nf-field-element:after {
  content: none;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container.submit-container .submit-wrap input {
  display: inline-block;
  font-size: 1.4rem !important;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 1.5rem 3.3rem;
  transition: all 0.4s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container.submit-container .submit-wrap input:hover {
  background: #000000;
  color: #FFFFFF;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-form-content .nf-field-container .nf-after-field .nf-error-msg {
  margin-right: 10px;
  font-size: 1.4rem;
}
.nf-form-cont .nf-form-wrap .nf-form-layout .nf-after-form-content .nf-error-msg {
  display: none;
}
.nf-form-cont .nf-form-wrap.nf-multi-cell .nf-cell {
  padding: 0;
}
@media (min-width: 576px) {
  .nf-form-cont .nf-form-wrap.nf-multi-cell .nf-cell {
    padding: 0 15px;
  }
}
.nf-form-cont .nf-form-wrap .nf-response-msg {
  padding: 0 20px;
}

/*
ICONS STYLES
*/
svg.icon {
  background: transparent;
  fill: #D8D8D8;
  margin: 0;
  padding: 0;
  width: 2.7rem;
  height: 2.7rem;
}

/*
STRUCTURE STYLES
*/
.hidden {
  display: none;
}

.container {
  width: 100%;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }
}

/*
TEXTS STYLES
*/
html {
  font-size: 10px;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
}

h1, .first-title {
  font-family: "Manrope", sans-serif;
  font-size: 4.5rem;
  color: #000000;
  font-weight: 500;
  line-height: 5rem;
}
@media (min-width: 768px) {
  h1, .first-title {
    font-size: 8.4rem;
    line-height: 9rem;
  }
}

h2, .second-title {
  font-family: "Manrope", sans-serif;
  font-size: 2.6rem;
  line-height: 3.6rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  h2, .second-title {
    font-size: 3.6rem;
    line-height: 5rem;
  }
}

h3, .third-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  h3, .third-title {
    font-size: 2.4rem;
    line-height: 3.3rem;
  }
}

h4, .fourth-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  color: #1FC5DA;
  font-weight: 700;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  h4, .fourth-title {
    font-size: 2.4rem;
    line-height: 3.3rem;
  }
}

span.first-title, span.second-title, span.third-title, span.fourth-title {
  display: block;
}
span.word-underline-blue {
  font-weight: 700;
  background-image: var(--wpr-bg-e34b53b6-0d6f-48f9-8d22-6f873b60d2ac);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
span.word-underline-white {
  font-weight: 700;
  background-image: var(--wpr-bg-6350185d-0b79-4698-a9b1-a3ee11cfb3a1);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
span.word-rounded-grey {
  font-weight: 700;
  background-image: var(--wpr-bg-632df8d4-835b-4d4f-bd72-ba1cef480ec7);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 0.7rem;
  background-position: center;
}
span.word-rounded-blue {
  font-weight: 700;
  background-image: var(--wpr-bg-d70d1742-4272-492a-ba6a-c7abf54961be);
  background-repeat: no-repeat;
  background-size: 104%;
  padding: 0.7rem;
  background-position: center;
}

p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #000000;
  opacity: 0.6;
}
@media (min-width: 768px) {
  p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
p.large {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  p.large {
    font-size: 2rem;
    line-height: 3.7rem;
  }
}
p a {
  color: #1FC5DA;
  border-bottom: 1px solid #1FC5DA;
}

.tag {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0.14rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
}
@media (min-width: 768px) {
  .tag {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

ul li {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: #000000;
}
@media (min-width: 768px) {
  ul li {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

::marker {
  color: #000000;
}

blockquote p {
  font-size: 2rem;
}
@media (min-width: 768px) {
  blockquote p {
    font-size: 3rem;
  }
}
blockquote cite {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.04rem !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  font-style: inherit;
}
@media (min-width: 768px) {
  blockquote cite {
    font-size: 1.4rem;
    line-height: 1.7rem;
    letter-spacing: 0.05rem;
  }
}

.wp-block-column ul, .wp-block-column ol, .container ul, .container ol {
  margin-left: 17px;
  opacity: 0.6;
}

/*
MODALS STYLES
*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 29, 44, 0.7);
  z-index: 1000;
}
.modal .modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  max-height: 90%;
  background: #FFFFFF;
  padding: 3rem;
}
@media (min-width: 768px) {
  .modal .modal-content {
    padding: 5rem;
  }
}
.modal .modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

/*
GUTEMBERG ACF BLOCK STYLES
*/
/* --- Header Home Block --- */
.section_header-home-block {
  background: #000000;
  position: relative;
}
.section_header-home-block .header-home-block_container {
  display: grid;
  align-items: stretch;
}
@media (min-width: 768px) {
  .section_header-home-block .header-home-block_container {
    grid-template-columns: 3fr 2fr;
  }
}
.section_header-home-block .header-home-block_container .header-home_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 1.8rem;
  align-items: center;
  text-align: center;
  height: inherit;
}
@media (min-width: 576px) {
  .section_header-home-block .header-home-block_container .header-home_content {
    padding: 10rem 3rem;
  }
}
@media (min-width: 768px) {
  .section_header-home-block .header-home-block_container .header-home_content {
    align-items: flex-start;
    text-align: left;
    height: 815px;
  }
}
@media (min-width: 1200px) {
  .section_header-home-block .header-home-block_container .header-home_content {
    padding: 7rem 4rem;
  }
}
.section_header-home-block .header-home-block_container .header-home_content .header-home_title {
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section_header-home-block .header-home-block_container .header-home_content .header-home_title {
    margin-bottom: 5rem;
  }
}
.section_header-home-block .header-home-block_container .header-home_scroll {
  position: absolute;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: auto;
  font-size: 1.6rem;
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
}
@media (min-width: 576px) {
  .section_header-home-block .header-home-block_container .header-home_scroll {
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
  }
}
@media (min-width: 768px) {
  .section_header-home-block .header-home-block_container .header-home_scroll {
    justify-content: inherit;
    right: inherit;
  }
}
@media (min-width: 1200px) {
  .section_header-home-block .header-home-block_container .header-home_scroll {
    bottom: 4rem;
    left: 4rem;
  }
}
.section_header-home-block .header-home-block_container .header-home_img {
  display: none;
  height: inherit;
}
@media (min-width: 768px) {
  .section_header-home-block .header-home-block_container .header-home_img {
    display: flex;
    height: 815px;
  }
}
.section_header-home-block .header-home-block_container .header-home_img img {
  object-fit: cover;
  object-position: left;
  height: 100%;
  width: 100%;
}

/* --- Carousel Logos Block --- */
.section_carousel-logos-block {
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .section_carousel-logos-block {
    padding: 2.5rem 0;
  }
}
.section_carousel-logos-block .carousel-logos-block_container .carousel-logos .slick-track {
  display: flex;
  align-items: center;
}
.section_carousel-logos-block .carousel-logos-block_container .carousel-logos .logos_item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: all 0.8s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_carousel-logos-block .carousel-logos-block_container .carousel-logos .logos_item img {
  width: 17rem;
  height: auto;
}
.section_carousel-logos-block .carousel-logos-block_container .carousel-logos .logos_item:hover {
  opacity: 1;
}

/* --- Content Block --- */
.section_content-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section_content-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.section_content-block .content-block_container .content_content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1FC5DA;
  line-height: initial;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section_content-block .content-block_container .content_content h1 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.section_content-block .content-block_container .content_content .second-title {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section_content-block .content-block_container .content_content .second-title {
    margin-bottom: 2rem;
  }
}
.section_content-block .content-block_container .content_content .btn-black {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section_content-block .content-block_container .content_content .btn-black {
    margin-top: 4rem;
  }
}
.section_content-block .content-block_container .content_img {
  position: relative;
}
.section_content-block .content-block_container .content_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 70vw;
}
@media (min-width: 768px) {
  .section_content-block .content-block_container .content_img img {
    max-height: inherit;
  }
}
.section_content-block .content-block_container .content_img:after {
  content: url(../../../../../../../../themes/stafe/assets/img/corner-grey.svg);
  position: absolute;
  bottom: 10px;
  right: -70px;
  transform: rotate(-45deg);
}
.section_content-block .content-block_container.content-block_img-left, .section_content-block .content-block_container.content-block_img-right {
  display: grid;
  align-items: center;
  gap: 5rem;
}
@media (min-width: 768px) {
  .section_content-block .content-block_container.content-block_img-left, .section_content-block .content-block_container.content-block_img-right {
    gap: 12rem;
    grid-template-columns: 1fr 1fr;
  }
}
.section_content-block .content-block_container.content-block_img-left .content_img {
  order: 1;
}
.section_content-block .content-block_container.content-block_img-left .content_content {
  order: 2;
}

/* --- Expert Block --- */
.section_expert-block {
  background: #000000;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section_expert-block {
    margin-bottom: 5rem;
    overflow: inherit;
  }
}
.section_expert-block .expert-block_container {
  display: grid;
}
.section_expert-block .expert-block_container:after {
  content: url(../../../../../../../../themes/stafe/assets/img/expertise-icon.png);
  position: absolute;
  top: -110px;
  right: -8%;
  transform: scale(0.6);
}
@media (min-width: 768px) {
  .section_expert-block .expert-block_container {
    grid-template-columns: 1fr 1fr;
  }
  .section_expert-block .expert-block_container:after {
    top: -90px;
    right: 10%;
    transform: inherit;
  }
}
.section_expert-block .expert-block_container .expert_content {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section_expert-block .expert-block_container .expert_content {
    height: 55rem;
    padding: 10rem 10rem 10rem 0;
  }
}
.section_expert-block .expert-block_container .expert_content .expert_title {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section_expert-block .expert-block_container .expert_content .expert_title {
    margin-bottom: 2rem;
  }
}
.section_expert-block .expert-block_container .expert_content .expert_featured .featured_item {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section_expert-block .expert-block_container .expert_content .expert_featured .featured_item svg {
  fill: #FFFFFF;
  opacity: 0.6;
}
.section_expert-block .expert-block_container .expert_content .expert_featured .featured_item h2 {
  margin-bottom: 0;
  color: #FFFFFF;
  background-image: var(--wpr-bg-be76d387-65e2-45e1-9751-d505be1adb55);
  background-repeat: no-repeat;
  background-size: 32rem;
  background-position: 0 163%;
  transition: all 0.6s;
}
.section_expert-block .expert-block_container .expert_content .expert_featured .featured_item h2:hover {
  background-position: 0 135%;
}
.section_expert-block .expert-block_container .expert_content .expert_featured.active a {
  background-position: 0 135%;
}
.section_expert-block .expert-block_container .expert_content .expert_cta {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section_expert-block .expert-block_container .expert_content .expert_cta {
    margin-top: 4rem;
  }
}
.section_expert-block .expert-block_container .expert_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  background: #FFFFFF;
  height: 100%;
  display: none;
}
@media (min-width: 768px) {
  .section_expert-block .expert-block_container .expert_img {
    display: flex;
  }
}
.section_expert-block .expert-block_container .expert_img .featured_item {
  opacity: 0;
  position: absolute;
  height: 100%;
  top: 5rem;
  right: 0;
  left: 0;
  transition: all 0.6s;
}
.section_expert-block .expert-block_container .expert_img .featured_item.active {
  opacity: 1;
  visibility: visible;
}
.section_expert-block .expert-block_container .expert_img .featured_item img {
  object-fit: cover;
  width: 100%;
  height: 68rem;
}

/* --- Steps Block --- */
.section_steps-block {
  background: #000000;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section_steps-block {
    margin-bottom: 5rem;
    overflow: inherit;
  }
}
.section_steps-block .steps-block_container {
  display: grid;
}
.section_steps-block .steps-block_container:after {
  content: url(../../../../../../../../themes/stafe/assets/img/expertise-icon.png);
  position: absolute;
  top: -110px;
  right: -8%;
  transform: scale(0.6);
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container {
    grid-template-columns: 1fr 1fr;
  }
  .section_steps-block .steps-block_container:after {
    top: -90px;
    right: 10%;
    transform: inherit;
  }
}
.section_steps-block .steps-block_container .steps_content {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container .steps_content {
    height: 50rem;
    padding: 10rem 10rem 10rem 0;
  }
}
.section_steps-block .steps-block_container .steps_content .steps_title {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container .steps_content .steps_title {
    margin-bottom: 2rem;
  }
}
.section_steps-block .steps-block_container .steps_content .steps_featured .featured_item {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container .steps_content .steps_featured .featured_item {
    margin-bottom: 2rem;
  }
}
.section_steps-block .steps-block_container .steps_content .steps_featured .featured_item svg {
  fill: #FFFFFF;
  opacity: 0.6;
}
.section_steps-block .steps-block_container .steps_content .steps_featured .featured_item span {
  color: #FFFFFF;
  background-image: var(--wpr-bg-30133888-5ee5-4622-bc09-3fbb64f8182b);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 185%;
  transition: all 0.6s;
}
.section_steps-block .steps-block_container .steps_content .steps_featured .featured_item span:hover {
  background-position: 0 145%;
}
.section_steps-block .steps-block_container .steps_content .steps_featured .featured_item.active span {
  background-position: 0 145%;
}
.section_steps-block .steps-block_container .steps_content .steps_cta {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container .steps_content .steps_cta {
    margin-top: 4rem;
  }
}
.section_steps-block .steps-block_container .steps_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  background: #FFFFFF;
  height: 100%;
  display: none;
}
@media (min-width: 768px) {
  .section_steps-block .steps-block_container .steps_img {
    display: flex;
  }
}
.section_steps-block .steps-block_container .steps_img .featured_item {
  opacity: 0;
  position: absolute;
  height: 100%;
  top: 5rem;
  right: 0;
  left: 0;
  transition: all 0.6s;
}
.section_steps-block .steps-block_container .steps_img .featured_item.active {
  opacity: 1;
  visibility: visible;
}
.section_steps-block .steps-block_container .steps_img .featured_item img {
  object-fit: cover;
  width: 100%;
  height: 50rem;
}

/* --- Liste Expert Block --- */
.section_list-expert-block {
  background: #000000;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section_list-expert-block {
    margin-bottom: 5rem;
    overflow: inherit;
  }
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container {
    display: grid;
  }
}
.section_list-expert-block .list-expert-block_container:after {
  content: url(../../../../../../../../themes/stafe/assets/img/expertise-icon.png);
  position: absolute;
  top: -110px;
  right: -8%;
  transform: scale(0.6);
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container {
    grid-template-columns: 1fr 1fr;
  }
  .section_list-expert-block .list-expert-block_container:after {
    top: -90px;
    right: 10%;
    transform: inherit;
  }
}
.section_list-expert-block .list-expert-block_container .list-expert_content {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container .list-expert_content {
    height: auto;
    padding: 10rem 10rem 10rem 0;
  }
}
.section_list-expert-block .list-expert-block_container .list-expert_content .list-expert_item {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section_list-expert-block .list-expert-block_container .list-expert_content .list-expert_item svg {
  fill: #FFFFFF;
  opacity: 0.6;
}
.section_list-expert-block .list-expert-block_container .list-expert_content .list-expert_item h2 {
  margin-bottom: 0;
  color: #FFFFFF;
  background-image: var(--wpr-bg-f501cf2e-cc86-487a-ac69-f572f754c182);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
}
.section_list-expert-block .list-expert-block_container .list-expert_content .list-expert_item h2:hover {
  background-position: bottom;
}
.section_list-expert-block .list-expert-block_container .list-expert_content .list-expert_item.active a {
  background-position: bottom;
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent {
  height: auto;
  margin-right: -3rem;
  margin-left: -3rem;
  min-height: 100%;
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container .list-expert_subcontent {
    top: 0;
    right: 0;
    background: #FFFFFF;
    display: flex;
    padding: 5rem 0;
    width: 50vw;
    position: absolute;
    margin-right: inherit;
    margin-left: inherit;
  }
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item {
  opacity: 0;
  height: auto;
  min-height: 100%;
  right: 0;
  left: 0;
  transition: all 0.6s;
  background: #101010;
  padding: 5rem;
  display: none;
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item {
    top: 5rem;
    padding: 10rem;
    position: absolute;
    display: block;
  }
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  display: block;
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item p {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item p {
    margin-bottom: 3.5rem;
  }
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item a {
  display: flex;
  color: #fff;
  font-weight: 400;
  cursor: pointer !important;
}
.section_list-expert-block .list-expert-block_container .list-expert_subcontent .list-expert_item a:not(:last-child) {
  margin-bottom: 1.7rem;
}

/* --- Keynumber Block --- */
.section_keynumber-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}
.section_keynumber-block:after {
  content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
  top: 20%;
  right: -50%;
  position: absolute;
}
@media (min-width: 768px) {
  .section_keynumber-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .section_keynumber-block:after {
    right: 0;
  }
}
.section_keynumber-block .keynumber-block_container .second-title {
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .second-title {
    width: 50%;
    margin-bottom: 7rem;
  }
}
.section_keynumber-block .keynumber-block_container .second-title .word-rounded-grey {
  background-position: center;
}
.section_keynumber-block .keynumber-block_container .keynumber-keynumbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .keynumber-keynumbers {
    row-gap: 7rem;
    column-gap: 16rem;
  }
}
.section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-title {
    font-size: 2.4rem;
  }
}
.section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-number {
  display: block;
  font-size: 6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-number {
    font-size: 8.5rem;
  }
}
.section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-icon svg {
  height: 3rem;
  width: 3rem;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-icon svg {
    height: 6rem;
    width: 6rem;
  }
}
.section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-content {
  display: none;
}
@media (min-width: 768px) {
  .section_keynumber-block .keynumber-block_container .keynumber-keynumbers .keynumber-content {
    display: flex;
    opacity: 0.6;
  }
}

/* --- Features Projects Block --- */
.section_featured-project-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
.section_featured-project-block:after {
  content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
  left: -60%;
  bottom: 5%;
  position: absolute;
  transform: rotate(160deg);
}
@media (min-width: 768px) {
  .section_featured-project-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .section_featured-project-block:after {
    left: 0;
    bottom: 10%;
  }
}
.section_featured-project-block .featured-project-block_container .project_title {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
}
@media (min-width: 576px) {
  .section_featured-project-block .featured-project-block_container .project_title {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .section_featured-project-block .featured-project-block_container .project_title {
    width: 50%;
    margin-bottom: 10rem;
  }
}
.section_featured-project-block .featured-project-block_container .project_title .word-rounded-blue {
  background-position: center;
}
.section_featured-project-block .featured-project-block_container .project_featured .slick-track {
  padding-bottom: 2.5rem;
}
.section_featured-project-block .featured-project-block_container .project_featured .slick-slide {
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_featured-project-block .featured-project-block_container .project_featured .slick-slide.slick-active {
  transform: scale(1);
}
.section_featured-project-block .featured-project-block_container .project_featured .slick-slide.slick-active:before {
  content: url(../../../../../../../../themes/stafe/assets/img/corner-grey.svg);
  position: absolute;
  bottom: 2.5rem;
  right: -70px;
  z-index: 2;
  transform: rotate(-45deg) scale(0.7);
}
@media (min-width: 768px) {
  .section_featured-project-block .featured-project-block_container .project_featured .slick-slide.slick-active:before {
    transform: rotate(-45deg) scale(1);
  }
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item {
  min-height: 22rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section_featured-project-block .featured-project-block_container .project_featured .featured_item {
    min-height: 51rem;
    padding: 6rem;
  }
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0, rgba(0, 0, 0, 0.768627451), transparent);
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-terms {
  z-index: 2;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-terms .tag {
  color: #FFFFFF;
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-terms .tag:not(:last-child):after {
  content: "-";
  padding-left: 0.5rem;
  padding-right: 0.3rem;
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-title {
  z-index: 2;
  color: #1FC5DA;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-title {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item .project-title .project-subtitle {
  color: #FFFFFF;
  font-weight: 400;
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item img {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_featured-project-block .featured-project-block_container .project_featured .featured_item:hover img {
  transform: scale(1.1);
}
.section_featured-project-block .featured-project-block_container .project_cta {
  margin: auto;
  text-align: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .section_featured-project-block .featured-project-block_container .project_cta {
    margin-top: 7.5rem;
  }
}

/* --- Header Page Block --- */
.section_header-page-block {
  background: #000000;
  position: relative;
  background-size: cover;
  background-position: center;
}
.section_header-page-block .header-page-block_container .header-page_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 1.8rem;
  align-items: center;
  text-align: center;
  height: inherit;
}
@media (min-width: 576px) {
  .section_header-page-block .header-page-block_container .header-page_content {
    padding: 10rem 3rem;
  }
}
@media (min-width: 768px) {
  .section_header-page-block .header-page-block_container .header-page_content {
    align-items: flex-start;
    text-align: left;
    height: 81.5rem;
  }
}
@media (min-width: 1200px) {
  .section_header-page-block .header-page-block_container .header-page_content {
    padding: 7rem 4rem 12rem 4rem;
  }
}
.section_header-page-block .header-page-block_container .header-page_content .header-page_title {
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section_header-page-block .header-page-block_container .header-page_content .header-page_title {
    margin-bottom: 5rem;
  }
}
.section_header-page-block .header-page-block_container .header-page_content .header-page_title > * {
  color: #FFFFFF;
}
.section_header-page-block .header-page-block_container .header-page_scroll {
  z-index: 3;
  position: absolute;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: auto;
  font-size: 1.6rem;
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
}
@media (min-width: 576px) {
  .section_header-page-block .header-page-block_container .header-page_scroll {
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
  }
}
@media (min-width: 768px) {
  .section_header-page-block .header-page-block_container .header-page_scroll {
    justify-content: inherit;
    left: inherit;
  }
}
@media (min-width: 1200px) {
  .section_header-page-block .header-page-block_container .header-page_scroll {
    bottom: 4rem;
    right: 4rem;
  }
}

/* --- Carousel Images Block --- */
.section_carousel-img-block {
  position: relative;
}
@media (min-width: 768px) {
  .section_carousel-img-block:after {
    content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
    bottom: 8%;
    left: -4%;
    position: absolute;
  }
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .slick-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section_carousel-img-block .carousel-img-block_container .carousel-img .slick-track {
    gap: 3.5rem;
  }
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .img_item {
  position: relative;
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .img_item img {
  width: 100%;
  height: auto;
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .img_item:nth-child(2n+2) {
  padding-bottom: 30px;
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .img_item:nth-child(2n+2):after {
  content: url(../../../../../../../../themes/stafe/assets/img/corner-grey.svg);
  position: absolute;
  bottom: 50px;
  right: -70px;
  transform: rotate(-45deg);
}
.section_carousel-img-block .carousel-img-block_container .carousel-img .img_item:nth-child(3n+4):after {
  content: url(../../../../../../../../themes/stafe/assets/img/corner-grey.svg);
  position: absolute;
  top: -10px;
  right: 20px;
  transform: rotate(35deg);
}

/* --- Team Block --- */
.section_team-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.section_team-block:after {
  content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
  top: 6%;
  right: -50%;
  position: absolute;
}
@media (min-width: 768px) {
  .section_team-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .section_team-block:after {
    right: 0;
  }
}
.section_team-block .team-block_container .team_title {
  width: 100%;
  margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
  .section_team-block .team-block_container .team_title {
    width: 50%;
    margin-bottom: 12rem;
  }
}
.section_team-block .team-block_container .team_title .word-rounded-grey {
  background-position: center;
}
.section_team-block .team-block_container .team-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .section_team-block .team-block_container .team-members {
    row-gap: 3rem;
    column-gap: 5rem;
    margin-top: 10rem;
  }
}
.section_team-block .team-block_container .team-members .member_item:nth-child(odd) {
  margin-top: -2.5rem;
}
@media (min-width: 768px) {
  .section_team-block .team-block_container .team-members .member_item:nth-child(odd) {
    margin-top: -5rem;
  }
}
.section_team-block .team-block_container .team-members .member_item:nth-child(even) {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .section_team-block .team-block_container .team-members .member_item:nth-child(even) {
    padding-top: 3rem;
  }
}
.section_team-block .team-block_container .team-members .member_item .member-img {
  margin-bottom: 2rem;
  position: relative;
}
.section_team-block .team-block_container .team-members .member_item .member-img img {
  width: 100%;
  height: auto;
}
.section_team-block .team-block_container .team-members .member_item .member-img .member-hobby {
  position: absolute;
  width: 110%;
  top: -5%;
  left: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_team-block .team-block_container .team-members .member_item .member-img:hover .member-hobby {
  opacity: 1;
  visibility: visible;
}
.section_team-block .team-block_container .team-members .member_item .member-name {
  color: #000000;
}

/* --- Liste Logos Block --- */
.section_list-logos-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  background: #000000;
}
@media (min-width: 768px) {
  .section_list-logos-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.section_list-logos-block .list-logos-block_container .list-logos_title {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5rem;
}
@media (min-width: 576px) {
  .section_list-logos-block .list-logos-block_container .list-logos_title {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .section_list-logos-block .list-logos-block_container .list-logos_title {
    margin-bottom: 10rem;
  }
}
.section_list-logos-block .list-logos-block_container .list-logos_title .word-rounded-blue {
  background-position: center;
}
.section_list-logos-block .list-logos-block_container .list-logos-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (min-width: 768px) {
  .section_list-logos-block .list-logos-block_container .list-logos-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 9rem;
  }
}
.section_list-logos-block .list-logos-block_container .list-logos-logos .logo_item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_list-logos-block .list-logos-block_container .list-logos-logos .logo_item img {
  width: 100%;
  max-width: 130px;
  height: auto;
  opacity: 0.75;
  transition: all 0.8s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.section_list-logos-block .list-logos-block_container .list-logos-logos .logo_item:hover img {
  opacity: 1;
}
.section_list-logos-block .list-logos-block_container .list-logos_cta {
  margin: auto;
  text-align: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .section_list-logos-block .list-logos-block_container .list-logos_cta {
    margin-top: 7.5rem;
  }
}

/* --- Vidéo Block --- */
.section_video-block {
  padding-top: 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .section_video-block {
    padding-top: 10rem;
  }
}
@media (min-width: 992px) {
  .section_video-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .section_video-block:after {
    content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
    bottom: 2%;
    left: -9%;
    position: absolute;
  }
}
.section_video-block .video-block_container {
  gap: 6rem;
  align-items: stretch;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .section_video-block .video-block_container {
    display: flex;
  }
}
.section_video-block .video-block_container .video_img-left, .section_video-block .video-block_container .video_img-right {
  display: none;
  box-shadow: 0 0 55px 0 rgba(0, 0, 0, 0.2);
}
.section_video-block .video-block_container .video_img-left img, .section_video-block .video-block_container .video_img-right img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .section_video-block .video-block_container .video_img-left, .section_video-block .video-block_container .video_img-right {
    display: flex;
  }
}
.section_video-block .video-block_container .video_video {
  width: 100%;
  max-height: 57rem;
  margin-bottom: -6px;
  box-shadow: 0 0 55px 0 rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
@media (min-width: 992px) {
  .section_video-block .video-block_container .video_video {
    margin-bottom: 0;
  }
}

/* --- Formulaire Block --- */
.section_form-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .section_form-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.section_form-block .form-block_container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .section_form-block .form-block_container {
    gap: 12rem;
    grid-template-columns: 2fr 3fr;
  }
}
.section_form-block .form-block_container .form_content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1FC5DA;
  line-height: initial;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section_form-block .form-block_container .form_content h1 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.section_form-block .form-block_container .form_content .second-title {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section_form-block .form-block_container .form_content .second-title {
    margin-bottom: 2rem;
  }
}
.section_form-block .form-block_container .form_content .btn-black {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section_form-block .form-block_container .form_content .btn-black {
    margin-top: 4rem;
  }
}
@media (min-width: 768px) {
  .section_form-block:after {
    content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
    position: absolute;
    bottom: 17%;
    left: 0;
    transform: rotate(-195deg);
  }
}

/* --- Testimonial Block --- */
.section_testimonial-block {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: #000000;
}
@media (min-width: 768px) {
  .section_testimonial-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.section_testimonial-block .testimonial-block_container .testimonial_img {
  height: 10rem;
  width: 10rem;
  border-radius: 10rem;
  overflow: hidden;
  margin: auto;
}
.section_testimonial-block .testimonial-block_container .testimonial_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.section_testimonial-block .testimonial-block_container .testimonial_content {
  font-size: 2rem;
  line-height: 3.2rem;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  padding: 2rem;
}
@media (min-width: 768px) {
  .section_testimonial-block .testimonial-block_container .testimonial_content {
    font-size: 3rem;
    line-height: 4rem;
    padding: 3rem 8rem;
  }
}
.section_testimonial-block .testimonial-block_container .testimonial_name {
  color: #FFFFFF;
  display: flex;
  text-align: center;
  justify-content: center;
  opacity: 0.6;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 1.8rem;
  font-weight: 400;
}

/*
ANIMATE EFFECT
*/
body {
  animation: fadeEnterAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* --- Fade enter --- */
@keyframes fadeEnterAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Fade effect --- */
@keyframes fadeInElement {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
  }
}
/* --- Animate scroll --- */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.fade-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.fade-in-global {
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.fade-in-global.show {
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

/* --- Fade item --- */
.fade-item {
  opacity: 0;
}
.fade-item.show {
  opacity: 0;
  -webkit-animation: fadeInElement 0.6s ease 0.6s forwards;
  -moz-animation: fadeInElement 0.6s ease 0.6s forwards;
  -o-animation: fadeInElement 0.6s ease 0.6s forwards;
  animation: fadeInElement 0.6s ease 0.6s forwards;
}
.fade-item.show:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.fade-item.show:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.fade-item.show:nth-of-type(3) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.fade-item.show:nth-of-type(4) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.fade-item.show:nth-of-type(5) {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.fade-item.show:nth-of-type(6) {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.fade-item.show:nth-of-type(7) {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.fade-item.show:nth-of-type(8) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.fade-item.show:nth-of-type(9) {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.fade-item.show:nth-of-type(10) {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.fade-item.show:nth-of-type(11) {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.fade-item.show:nth-of-type(12) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}
.fade-item.show:nth-of-type(13) {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}
.fade-item.show:nth-of-type(14) {
  -webkit-animation-delay: 7s;
  -moz-animation-delay: 7s;
  animation-delay: 7s;
}
.fade-item.show:nth-of-type(15) {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
.fade-item.show:nth-of-type(16) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  animation-delay: 8s;
}
.fade-item.show:nth-of-type(17) {
  -webkit-animation-delay: 8.5s;
  -moz-animation-delay: 8.5s;
  animation-delay: 8.5s;
}
.fade-item.show:nth-of-type(18) {
  -webkit-animation-delay: 9s;
  -moz-animation-delay: 9s;
  animation-delay: 9s;
}
.fade-item.show:nth-of-type(19) {
  -webkit-animation-delay: 9.5s;
  -moz-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
.fade-item.show:nth-of-type(20) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s;
}

/* --- Header --- */
.header-logo, .header-burger {
  opacity: 0;
  -webkit-animation: fadeInElement 0.6s ease 1s forwards;
  -moz-animation: fadeInElement 0.6s ease 1s forwards;
  -o-animation: fadeInElement 0.6s ease 1s forwards;
  animation: fadeInElement 0.6s ease 1s forwards;
}
.header-logo:nth-child(1), .header-burger:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.header-logo:nth-child(2), .header-burger:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.header-logo:nth-child(3), .header-burger:nth-child(3) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.header-logo:nth-child(4), .header-burger:nth-child(4) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.header-logo:nth-child(5), .header-burger:nth-child(5) {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.header-logo:nth-child(6), .header-burger:nth-child(6) {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.header-logo:nth-child(7), .header-burger:nth-child(7) {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.header-logo:nth-child(8), .header-burger:nth-child(8) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.header-logo:nth-child(9), .header-burger:nth-child(9) {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.header-logo:nth-child(10), .header-burger:nth-child(10) {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.header-logo:nth-child(11), .header-burger:nth-child(11) {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.header-logo:nth-child(12), .header-burger:nth-child(12) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}
.header-logo:nth-child(13), .header-burger:nth-child(13) {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}
.header-logo:nth-child(14), .header-burger:nth-child(14) {
  -webkit-animation-delay: 7s;
  -moz-animation-delay: 7s;
  animation-delay: 7s;
}
.header-logo:nth-child(15), .header-burger:nth-child(15) {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
.header-logo:nth-child(16), .header-burger:nth-child(16) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  animation-delay: 8s;
}
.header-logo:nth-child(17), .header-burger:nth-child(17) {
  -webkit-animation-delay: 8.5s;
  -moz-animation-delay: 8.5s;
  animation-delay: 8.5s;
}
.header-logo:nth-child(18), .header-burger:nth-child(18) {
  -webkit-animation-delay: 9s;
  -moz-animation-delay: 9s;
  animation-delay: 9s;
}
.header-logo:nth-child(19), .header-burger:nth-child(19) {
  -webkit-animation-delay: 9.5s;
  -moz-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
.header-logo:nth-child(20), .header-burger:nth-child(20) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s;
}

/* --- Header Title Bloc --- */
.header-home_content > div, .header-home_content > span, .header-home_content > .btn-white {
  opacity: 0;
  -webkit-animation: fadeInElement 0.6s ease 1s forwards;
  -moz-animation: fadeInElement 0.6s ease 1s forwards;
  -o-animation: fadeInElement 0.6s ease 1s forwards;
  animation: fadeInElement 0.6s ease 1s forwards;
}
.header-home_content > div:nth-of-type(1), .header-home_content > span:nth-of-type(1), .header-home_content > .btn-white:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.header-home_content > div:nth-of-type(2), .header-home_content > span:nth-of-type(2), .header-home_content > .btn-white:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.header-home_content > div:nth-of-type(3), .header-home_content > span:nth-of-type(3), .header-home_content > .btn-white:nth-of-type(3) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.header-home_content > div:nth-of-type(4), .header-home_content > span:nth-of-type(4), .header-home_content > .btn-white:nth-of-type(4) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.header-home_content > div:nth-of-type(5), .header-home_content > span:nth-of-type(5), .header-home_content > .btn-white:nth-of-type(5) {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.header-home_content > div:nth-of-type(6), .header-home_content > span:nth-of-type(6), .header-home_content > .btn-white:nth-of-type(6) {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.header-home_content > div:nth-of-type(7), .header-home_content > span:nth-of-type(7), .header-home_content > .btn-white:nth-of-type(7) {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.header-home_content > div:nth-of-type(8), .header-home_content > span:nth-of-type(8), .header-home_content > .btn-white:nth-of-type(8) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.header-home_content > div:nth-of-type(9), .header-home_content > span:nth-of-type(9), .header-home_content > .btn-white:nth-of-type(9) {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.header-home_content > div:nth-of-type(10), .header-home_content > span:nth-of-type(10), .header-home_content > .btn-white:nth-of-type(10) {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.header-home_content > div:nth-of-type(11), .header-home_content > span:nth-of-type(11), .header-home_content > .btn-white:nth-of-type(11) {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.header-home_content > div:nth-of-type(12), .header-home_content > span:nth-of-type(12), .header-home_content > .btn-white:nth-of-type(12) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}
.header-home_content > div:nth-of-type(13), .header-home_content > span:nth-of-type(13), .header-home_content > .btn-white:nth-of-type(13) {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}
.header-home_content > div:nth-of-type(14), .header-home_content > span:nth-of-type(14), .header-home_content > .btn-white:nth-of-type(14) {
  -webkit-animation-delay: 7s;
  -moz-animation-delay: 7s;
  animation-delay: 7s;
}
.header-home_content > div:nth-of-type(15), .header-home_content > span:nth-of-type(15), .header-home_content > .btn-white:nth-of-type(15) {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
.header-home_content > div:nth-of-type(16), .header-home_content > span:nth-of-type(16), .header-home_content > .btn-white:nth-of-type(16) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  animation-delay: 8s;
}
.header-home_content > div:nth-of-type(17), .header-home_content > span:nth-of-type(17), .header-home_content > .btn-white:nth-of-type(17) {
  -webkit-animation-delay: 8.5s;
  -moz-animation-delay: 8.5s;
  animation-delay: 8.5s;
}
.header-home_content > div:nth-of-type(18), .header-home_content > span:nth-of-type(18), .header-home_content > .btn-white:nth-of-type(18) {
  -webkit-animation-delay: 9s;
  -moz-animation-delay: 9s;
  animation-delay: 9s;
}
.header-home_content > div:nth-of-type(19), .header-home_content > span:nth-of-type(19), .header-home_content > .btn-white:nth-of-type(19) {
  -webkit-animation-delay: 9.5s;
  -moz-animation-delay: 9.5s;
  animation-delay: 9.5s;
}
.header-home_content > div:nth-of-type(20), .header-home_content > span:nth-of-type(20), .header-home_content > .btn-white:nth-of-type(20) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s;
}

body.open {
  overflow: hidden;
}

/* ------ PRISE EN CHARGE IMG FULL-WIDTH ------ */
.alignwide {
  margin-left: -80px;
  margin-right: -80px;
  max-width: 100vw;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}
.alignfull img {
  width: 100vw;
}

/* ------ HEADER ------ */
.header .header_container {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}
@media (min-width: 576px) {
  .header .header_container {
    padding: 3rem;
  }
}
@media (min-width: 1200px) {
  .header .header_container {
    padding: 4rem;
  }
}
.header .header_container .header-logo img {
  max-width: 110px;
}
@media (min-width: 768px) {
  .header .header_container .header-logo img {
    max-width: 150px;
  }
}
.header .header_container .header-burger {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: position 0.6s;
  transition: width 0.6s;
}
.header .header_container .header-burger.scrolled {
  position: fixed;
  right: 0;
  top: 0;
  background: #000000;
  height: 10rem;
  width: 10rem;
  transition: position 0.6s;
  transition: width 0.6s;
}
.header .header_container .header-burger.scrolled div {
  margin-right: auto;
}
.header .header_container .header-burger .burger-icon {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  opacity: 0;
  margin: 0;
}
.header .header_container .header-burger div {
  margin: auto;
  margin-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 27px;
  height: 22px;
}
.header .header_container .header-burger span {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.6s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.header .header_container .header-burger span:first-of-type {
  top: 0;
}
.header .header_container .header-burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .header_container .header-burger span:last-of-type {
  bottom: 0;
}
.header .header_container .header-burger.active span:first-of-type,
.header .header_container .header-burger .burger-icon:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 9px;
}
.header .header_container .header-burger.active span:nth-child(2),
.header .header_container .header-burger .burger-icon:checked + div span:nth-child(2) {
  opacity: 0;
}
.header .header_container .header-burger.active span:last-of-type,
.header .header_container .header-burger .burger-icon:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 10px;
}
.header .header_container .header-burger.active:hover span:first-of-type, .header .header_container .header-burger.active:hover span:last-of-type, .header .header_container .header-burger:hover .burger-icon:checked + div span:first-of-type, .header .header_container .header-burger:hover .burger-icon:checked + div span:last-of-type {
  width: 27px;
}
.header .header_container .header-burger:hover span:first-of-type, .header .header_container .header-burger:hover span:last-of-type {
  width: 18px;
}
.header .header-navigation {
  background-color: #000000;
  position: fixed;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2rem;
  height: 100vh;
  top: 0;
  right: 0;
  width: 0;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
@media (min-width: 768px) {
  .header .header-navigation {
    gap: 10rem;
    flex-direction: inherit;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.header .header-navigation.open {
  width: 100vw;
}
.header .header-navigation.open .menu .menu-item {
  opacity: 0;
  -webkit-animation: fadeInElement 0.6s ease 0.6s forwards;
  -moz-animation: fadeInElement 0.6s ease 0.6s forwards;
  -o-animation: fadeInElement 0.6s ease 0.6s forwards;
  animation: fadeInElement 0.6s ease 0.6s forwards;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(2) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(3) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(4) {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(5) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(6) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(7) {
  -webkit-animation-delay: 2.8s;
  -moz-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(8) {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  animation-delay: 3.2s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(9) {
  -webkit-animation-delay: 3.6s;
  -moz-animation-delay: 3.6s;
  animation-delay: 3.6s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(10) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(11) {
  -webkit-animation-delay: 4.4s;
  -moz-animation-delay: 4.4s;
  animation-delay: 4.4s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(12) {
  -webkit-animation-delay: 4.8s;
  -moz-animation-delay: 4.8s;
  animation-delay: 4.8s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(13) {
  -webkit-animation-delay: 5.2s;
  -moz-animation-delay: 5.2s;
  animation-delay: 5.2s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(14) {
  -webkit-animation-delay: 5.6s;
  -moz-animation-delay: 5.6s;
  animation-delay: 5.6s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(15) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(16) {
  -webkit-animation-delay: 6.4s;
  -moz-animation-delay: 6.4s;
  animation-delay: 6.4s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(17) {
  -webkit-animation-delay: 6.8s;
  -moz-animation-delay: 6.8s;
  animation-delay: 6.8s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(18) {
  -webkit-animation-delay: 7.2s;
  -moz-animation-delay: 7.2s;
  animation-delay: 7.2s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(19) {
  -webkit-animation-delay: 7.6s;
  -moz-animation-delay: 7.6s;
  animation-delay: 7.6s;
}
.header .header-navigation.open .menu .menu-item:nth-of-type(20) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  animation-delay: 8s;
}
.header .header-navigation .menu-menu-principal-container {
  padding: 1.8rem;
}
@media (min-width: 576px) {
  .header .header-navigation .menu-menu-principal-container {
    padding: 3rem;
  }
}
@media (min-width: 1200px) {
  .header .header-navigation .menu-menu-principal-container {
    padding: 4rem;
  }
}
.header .header-navigation .menu-menu-principal-container .menu {
  list-style: none;
}
.header .header-navigation .menu-menu-principal-container .menu .menu-item a {
  color: #FFFFFF;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: 500;
  background-image: var(--wpr-bg-073af036-dad4-4d16-964b-f9649c04805b);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 135%;
  transition: all 0.6s;
}
.header .header-navigation .menu-menu-principal-container .menu .menu-item a:hover {
  background-position: bottom;
}
@media (min-width: 768px) {
  .header .header-navigation .menu-menu-principal-container .menu .menu-item a {
    font-size: 4.5rem;
    line-height: 7.5rem;
  }
}
.header .header-navigation .header-navigation_contact {
  padding: 1.8rem;
}
@media (min-width: 576px) {
  .header .header-navigation .header-navigation_contact {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .header .header-navigation .header-navigation_contact {
    padding: 4rem;
  }
}
.header .header-navigation .header-navigation_contact .header-socials {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact .header-socials {
    margin-bottom: 2rem;
  }
}
.header .header-navigation .header-navigation_contact .header-socials .social_item svg {
  fill: #FFFFFF;
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact .header-socials .social_item svg {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.header .header-navigation .header-navigation_contact .header-contact .contact_phone, .header .header-navigation .header-navigation_contact .header-contact .contact_email {
  display: flex;
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact .header-contact .contact_phone, .header .header-navigation .header-navigation_contact .header-contact .contact_email {
    justify-content: flex-end;
  }
}
.header .header-navigation .header-navigation_contact .header-contact .contact_phone a, .header .header-navigation .header-navigation_contact .header-contact .contact_email a {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 3.5rem;
  background-image: var(--wpr-bg-bce83f4c-e09c-413c-bce5-dfd5a179b07f);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
}
.header .header-navigation .header-navigation_contact .header-contact .contact_phone a:hover, .header .header-navigation .header-navigation_contact .header-contact .contact_email a:hover {
  background-position: bottom;
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact .header-contact .contact_phone a, .header .header-navigation .header-navigation_contact .header-contact .contact_email a {
    font-size: 3.4rem;
    line-height: 5rem;
  }
}
.header .header-navigation .header-navigation_contact .header-contact .contact_address {
  margin-top: 1.5rem;
  line-height: 2.5rem;
  color: #FFFFFF;
  opacity: 1;
}
@media (min-width: 768px) {
  .header .header-navigation .header-navigation_contact .header-contact .contact_address {
    margin-top: 3rem;
  }
}

/* ------ FOOTER ------ */
.footer .pre-footer {
  display: grid;
}
@media (min-width: 768px) {
  .footer .pre-footer {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -6rem;
  }
}
.footer .pre-footer .footer-blog {
  position: relative;
  background: #FBF9FA;
  padding: 5rem 1.8rem;
}
@media (min-width: 576px) {
  .footer .pre-footer .footer-blog {
    padding: 6rem;
  }
}
.footer .pre-footer .footer-blog:after {
  content: url(../../../../../../../../themes/stafe/assets/img/calendar-icon.png);
  position: absolute;
  top: -65px;
  right: 3%;
  transform: scale(0.6);
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-blog:after {
    top: -70px;
    right: 9%;
    transform: inherit;
  }
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-blog .blog-title {
    width: 460px;
    margin-left: auto;
  }
}
.footer .pre-footer .footer-blog .news-title {
  font-weight: 700;
  display: flex;
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-blog .news-title {
    width: 460px;
    margin-left: auto;
  }
}
.footer .pre-footer .footer-blog .news-date {
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-blog .news-date {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-blog .news-date {
    width: 460px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-blog .blog-cta {
    width: 460px;
    margin-left: auto;
  }
}
.footer .pre-footer .footer-title {
  position: relative;
  background: #FBF9FA;
  padding: 5rem 1.8rem;
}
@media (min-width: 576px) {
  .footer .pre-footer .footer-title {
    padding: 6rem;
  }
}
.footer .pre-footer .footer-title:after {
  content: url(../../../../../../../../themes/stafe/assets/img/calendar-icon.png);
  position: absolute;
  top: -65px;
  right: 3%;
  transform: scale(0.6);
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-title:after {
    top: -70px;
    right: 9%;
    transform: inherit;
  }
}
.footer .pre-footer .footer-title .title-title {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-title .title-title {
    width: 460px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-title .title-content {
    width: 460px;
    margin-left: auto;
  }
}
.footer .pre-footer .footer-title .title-cta {
  margin-top: 3rem;
}
@media (min-width: 1200px) {
  .footer .pre-footer .footer-title .title-cta {
    width: 460px;
    margin-left: auto;
  }
}
.footer .pre-footer .footer-contact {
  background: #1B1B1B;
  padding: 5rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  .footer .pre-footer .footer-contact {
    padding: 6rem;
  }
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contact {
    margin-top: 6rem;
  }
}
.footer .pre-footer .footer-contact .contact_phone, .footer .pre-footer .footer-contact .contact_email {
  display: flex;
}
.footer .pre-footer .footer-contact .contact_phone a, .footer .pre-footer .footer-contact .contact_email a {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 3.5rem;
  background-image: var(--wpr-bg-f1e93427-e183-46b2-8468-0203dbd86e06);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
}
.footer .pre-footer .footer-contact .contact_phone a:hover, .footer .pre-footer .footer-contact .contact_email a:hover {
  background-position: bottom;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contact .contact_phone a, .footer .pre-footer .footer-contact .contact_email a {
    font-size: 3.4rem;
    line-height: 5rem;
  }
}
.footer .pre-footer .footer-contact .contact_address {
  margin-top: 2rem;
  line-height: 2.5rem;
  color: #FFFFFF;
  opacity: 1;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contact .contact_address {
    margin-top: 3rem;
  }
}
.footer .pre-footer .footer-contact .footer-socials {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contact .footer-socials {
    margin-top: 2rem;
  }
}
.footer .pre-footer .footer-contact .footer-socials .social_item svg {
  fill: #FFFFFF;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contact .footer-socials .social_item svg {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.footer .footer-navigation {
  background: #000000;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .footer .footer-navigation {
    padding: 3rem 0;
  }
}
.footer .footer-navigation .copyright:after {
  content: "|";
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: #FFFFFF;
}
.footer .footer-navigation .footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .footer .footer-navigation .footer-container {
    justify-content: center;
  }
}
.footer .footer-navigation .footer-container .menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-navigation .footer-container .menu li a {
  color: #FFFFFF;
  font-size: 1.5rem;
  background-image: var(--wpr-bg-e4708568-dc32-449e-a79a-881485aecba6);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
}
.footer .footer-navigation .footer-container .menu li a:hover {
  background-position: bottom;
}
.footer .footer-navigation .footer-container .menu li:not(:last-child):after {
  content: "|";
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: #FFFFFF;
}

/*
PAGES STYLES
*/
/* ------ GLOBAL ------ */
@media (min-width: 768px) {
  .single .page-content > section:last-child, .page .page-content > section:last-child, .archive .page-content > section:last-child, .blog .page-content > section:last-child, .page-template-default .page-content > section:last-child {
    padding-bottom: 16rem;
  }
}

/* ------ HOME ------ */
@media (min-width: 768px) {
  .home section:last-child {
    margin-bottom: 6rem;
  }
}

.section_content-seo {
  position: relative;
}
.section_content-seo:after {
  content: url(../../../../../../../../themes/stafe/assets/img/line-grey.svg);
  top: 20%;
  right: -50%;
  position: absolute;
}
@media (min-width: 768px) {
  .section_content-seo:after {
    right: 0;
  }
}

/* ------ TAXONOMY EXPERTISE ------ */
@media (min-width: 768px) {
  .tax-expertise .section_taxonomy-header .header-page-block_container .header-page_content {
    height: inherit;
    min-height: 60rem;
  }
}
.tax-expertise .section_taxonomy-header .header-page-block_container .header-page_content p {
  color: #FFFFFF;
}
.tax-expertise .section_taxonomy-list .taxonomy-list_container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .tax-expertise .section_taxonomy-list .taxonomy-list_container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .tax-expertise .section_taxonomy-list .taxonomy-list_container:nth-child(even) .content_img {
    order: 2;
  }
}
.tax-expertise .section_taxonomy-featured-project {
  background: #000000;
}

/* ------ SINGLE EXPERTISE ------ */
@media (min-width: 768px) {
  .single-expertises .section_single-header .header-page-block_container .header-page_content {
    height: inherit;
    min-height: 60rem;
  }
}
.single-expertises .section_single-header .header-page-block_container .header-page_content p {
  color: #FFFFFF;
}

/* ------ SINGLE PROJECTS ------ */
.single-projets .section_single-header:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.5;
}
.single-projets .section_single-header .header-page-block_container .header-page_content {
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .single-projets .section_single-header .header-page-block_container .header-page_content {
    height: inherit;
    min-height: 81.5rem;
  }
}
.single-projets .section_single-header .header-page-block_container .header-page_content p {
  color: #FFFFFF;
}
.single-projets .section_single-header .header-page-block_container .header-page_content .project-terms {
  z-index: 2;
  line-height: 1.2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-header .header-page-block_container .header-page_content .project-terms {
    justify-content: inherit;
  }
}
.single-projets .section_single-header .header-page-block_container .header-page_content .project-terms .tag {
  color: #FFFFFF;
}
.single-projets .section_single-header .header-page-block_container .header-page_content .project-terms .tag:not(:last-child):after {
  content: "-";
  padding-left: 0.5rem;
  padding-right: 0.3rem;
}
.single-projets .section_single-header .header-page-block_container .header-page_content .project-title {
  color: #1FC5DA;
  font-weight: 700;
}
.single-projets .section_single-header .header-page-block_container .header-page_content .project-title .project-subtitle {
  color: #FFFFFF;
  font-weight: 400;
}
.single-projets .section_single-detail {
  background: #000000;
  padding: 7rem 0;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-detail {
    padding: 15rem 0;
    margin-bottom: 5rem;
  }
}
.single-projets .section_single-detail .single-detail_container {
  display: grid;
  gap: 5rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-detail .single-detail_container {
    grid-template-columns: 1fr 2fr;
    gap: 10rem;
  }
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_img {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_img {
    margin-bottom: 4.5rem;
  }
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_img img {
  max-width: 18rem;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_expert .expert_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_expert .expert_item:not(:last-child) {
  margin-bottom: 1rem;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_expert .expert_item svg {
  fill: #FFFFFF;
  opacity: 0.6;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_expert .expert_item span {
  color: #FFFFFF;
  background-image: var(--wpr-bg-75039249-c5ac-4b9a-b88a-a21e687b5d34);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_expert .expert_item span:hover {
  background-position: bottom;
}
.single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_cta {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-detail .single-detail_container .single-detail_info .single-detail_cta {
    margin-top: 4rem;
  }
}
.single-projets .section_single-detail .single-detail_container .single-detail_content .single-detail_short-desc, .single-projets .section_single-detail .single-detail_container .single-detail_content .single-detail_large-desc {
  color: #FFFFFF;
}
.single-projets .section_single-next {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .single-projets .section_single-next {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.single-projets .section_single-next .single-next_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.single-projets .section_single-next .single-next_container .single-next_content .project-terms {
  z-index: 2;
  line-height: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.single-projets .section_single-next .single-next_container .single-next_content .project-terms .tag {
  color: #000000;
}
.single-projets .section_single-next .single-next_container .single-next_content .project-terms .tag:not(:last-child):after {
  content: "-";
  padding-left: 0.5rem;
  padding-right: 0.3rem;
}
.single-projets .section_single-next .single-next_container .single-next_content .project-title {
  color: #1FC5DA;
  font-weight: 700;
}
.single-projets .section_single-next .single-next_container .single-next_content .project-title .project-subtitle {
  color: #000000;
  font-weight: 400;
}
.single-projets .section_box {
  padding: 3rem 0;
}
.single-projets .wp-block-heading {
  margin-bottom: 2rem;
}
.single-projets figure {
  margin: 0 !important;
}

/* ------ ARCHIVE PROJET ------ */
.post-type-archive-projets {
  background: #000000;
}
.post-type-archive-projets .section_archive-project-title {
  background: #000000;
  padding: 9rem 2rem 2rem;
  position: fixed;
  width: 100%;
  height: 43vh;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-title {
    padding: 11rem 4rem 4rem;
    height: 40vh;
  }
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-title {
    height: 100vh;
    width: 40%;
    padding: 14rem 4rem 4rem;
  }
}
@media (min-width: 1200px) {
  .post-type-archive-projets .section_archive-project-title {
    width: 30%;
  }
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_title {
  color: #FFFFFF;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters {
    gap: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters {
    display: block;
  }
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item {
    margin-bottom: 1.5rem;
  }
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item svg {
  fill: #FFFFFF;
  opacity: 0.6;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item span {
  color: #FFFFFF;
  background-image: var(--wpr-bg-c027b6db-d1d2-4659-8861-64c8a2ca467e);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 145%;
  transition: all 0.6s;
  cursor: pointer;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item span:hover {
  background-position: bottom;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item.active span {
  background-position: bottom;
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item.see-all {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item.see-all {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_filters .list-expert_item.see-all {
    margin-top: 3rem;
  }
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_scroll {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.3rem;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_scroll {
    gap: 2rem;
    font-size: 1.6rem;
  }
}
.post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_scroll svg {
  transform: rotate(-90deg);
  width: 8px;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-title .archive-project-title_container .project-page_scroll svg {
    width: inherit;
  }
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid {
  overflow-x: hidden;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 43vh;
  overflow: auto;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid {
    top: 40vh;
    height: auto;
  }
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid {
    top: 0;
    left: 40%;
  }
}
@media (min-width: 1200px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid {
    left: 32%;
  }
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item {
  min-width: 25rem;
  width: 25rem;
  height: auto;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 576px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item {
    height: 60vh;
    min-width: 40rem;
    width: 40rem;
  }
}
@media (min-width: 768px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item {
    padding: 6rem;
    min-width: 50rem;
    width: 50rem;
  }
}
@media (min-width: 992px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item {
    height: 100vh;
  }
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0, rgba(0, 0, 0, 0.768627451), transparent);
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-inner {
  display: flex;
  flex-direction: column;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-terms {
  z-index: 2;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-terms .tag {
  color: #FFFFFF;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-terms .tag:not(:last-child):after {
  content: "-";
  padding-left: 0.5rem;
  padding-right: 0.3rem;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-title {
  z-index: 2;
  color: #1FC5DA;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-title {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item .project-title .project-subtitle {
  color: #FFFFFF;
  font-weight: 400;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item img {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.1, 0.82, 0.76, 0.965);
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.post-type-archive-projets .section_archive-project-grid .archive-project-grid .project_item:hover img {
  transform: scale(1.1);
}
.post-type-archive-projets .footer {
  display: none;
}

/* ------ 404 ------ */
.error404 .page-content .section_header-page-block .header-page_title {
  margin-bottom: 2rem;
}
.error404 .page-content .section_header-page-block p {
  color: #FFFFFF;
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .error404 .page-content .section_header-page-block p {
    font-size: 2rem;
    line-height: 3.5rem;
    margin-bottom: 4rem;
  }
}

/* ------ BLOG ------ */
.blog .section_blog .actu_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .blog .section_blog .actu_container {
    row-gap: 3rem;
    column-gap: 5rem;
    margin-top: 10rem;
  }
}
.blog .section_blog .actu_container .actu_item:nth-child(odd) {
  margin-top: -2.5rem;
}
@media (min-width: 768px) {
  .blog .section_blog .actu_container .actu_item:nth-child(odd) {
    margin-top: -5rem;
  }
}
.blog .section_blog .actu_container .actu_item:nth-child(even) {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .blog .section_blog .actu_container .actu_item:nth-child(even) {
    padding-top: 3rem;
  }
}
.blog .section_blog .actu_container .actu_item .actu-img {
  margin-bottom: 2rem;
  position: relative;
  height: 60rem;
}
.blog .section_blog .actu_container .actu_item .actu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .section_blog .navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 2rem;
}
.blog .section_blog .navigation .nav-links .page-numbers {
  color: #000000;
  transition: all 0.6s;
}
.blog .section_blog .navigation .nav-links .page-numbers.current, .blog .section_blog .navigation .nav-links .page-numbers:hover:not(.next, .prev) {
  font-weight: 700;
  background-image: var(--wpr-bg-a85f1bf9-f804-4ccc-b562-45181373d693);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 0.7rem;
  background-position: center;
}
.blog .section_blog .navigation .nav-links .page-numbers.next, .blog .section_blog .navigation .nav-links .page-numbers.prev {
  font-size: 1.6rem;
}

/* ------ ARTICLE ------ */
.single-post .section_single-header {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .single-post .section_single-header {
    margin-bottom: 9rem;
  }
}
.single-post .section_single-header .breadcrumb {
  bottom: 5rem;
  left: 0.5rem;
  right: 0.5rem;
  position: absolute;
  color: #FFFFFF;
  z-index: 2;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 576px) {
  .single-post .section_single-header .breadcrumb {
    font-size: 1.6rem;
    left: 4rem;
    bottom: 6rem;
    right: 4rem;
  }
}
@media (min-width: 768px) {
  .single-post .section_single-header .breadcrumb {
    text-align: inherit;
    justify-content: inherit;
    bottom: 4rem;
    left: 4rem;
  }
}
.single-post .section_single-header .breadcrumb a {
  color: #FFFFFF;
}
.single-post .section_single-header .breadcrumb span > span {
  opacity: 0.6;
}
.single-post .section_single-header .breadcrumb span > span.breadcrumb_last {
  opacity: 1;
}
.single-post .section_single-header:after {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.3764705882);
}
.single-post .section_single-header .header-page_content {
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .single-post .section_single-header .header-page_content {
    height: 51.5rem;
  }
}
.single-post .section_single-header .header-page_content .header-page_title {
  margin-bottom: 2rem;
}
.single-post .section_single-header .header-page_content .date {
  color: #FFFFFF;
}
.single-post .section_article-content .container_article-content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content {
    gap: 5rem;
  }
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content {
    grid-template-columns: 1fr 4fr;
  }
}
.single-post .section_article-content .container_article-content .single-content_content h1, .single-post .section_article-content .container_article-content .single-content_content h2, .single-post .section_article-content .container_article-content .single-content_content h3, .single-post .section_article-content .container_article-content .single-content_content h4, .single-post .section_article-content .container_article-content .single-content_content h5, .single-post .section_article-content .container_article-content .single-content_content h6, .single-post .section_article-content .container_article-content .single-content_content p, .single-post .section_article-content .container_article-content .single-content_content ul, .single-post .section_article-content .container_article-content .single-content_content ol {
  padding: 0;
}
@media (min-width: 768px) {
  .single-post .section_article-content .container_article-content .single-content_content h1, .single-post .section_article-content .container_article-content .single-content_content h2, .single-post .section_article-content .container_article-content .single-content_content h3, .single-post .section_article-content .container_article-content .single-content_content h4, .single-post .section_article-content .container_article-content .single-content_content h5, .single-post .section_article-content .container_article-content .single-content_content h6, .single-post .section_article-content .container_article-content .single-content_content p, .single-post .section_article-content .container_article-content .single-content_content ul, .single-post .section_article-content .container_article-content .single-content_content ol {
    padding: 0;
  }
  .single-post .section_article-content .container_article-content .single-content_content h1 li, .single-post .section_article-content .container_article-content .single-content_content h2 li, .single-post .section_article-content .container_article-content .single-content_content h3 li, .single-post .section_article-content .container_article-content .single-content_content h4 li, .single-post .section_article-content .container_article-content .single-content_content h5 li, .single-post .section_article-content .container_article-content .single-content_content h6 li, .single-post .section_article-content .container_article-content .single-content_content p li, .single-post .section_article-content .container_article-content .single-content_content ul li, .single-post .section_article-content .container_article-content .single-content_content ol li {
    padding: 1rem 0;
  }
}
.single-post .section_article-content .container_article-content .single-content_content figure {
  margin: 2.5rem 0;
}
@media (min-width: 768px) {
  .single-post .section_article-content .container_article-content .single-content_content figure {
    margin: 5rem 0;
  }
}
.single-post .section_article-content .container_article-content .single-content_content figure img {
  width: 100%;
}
.single-post .section_article-content .container_article-content .single-content_sidebar {
  order: 2;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar {
    order: inherit;
  }
}
.single-post .section_article-content .container_article-content .single-content_sidebar li {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post .section_article-content .container_article-content .single-content_sidebar li h1, .single-post .section_article-content .container_article-content .single-content_sidebar li h2, .single-post .section_article-content .container_article-content .single-content_sidebar li h3, .single-post .section_article-content .container_article-content .single-content_sidebar li h4, .single-post .section_article-content .container_article-content .single-content_sidebar li h5, .single-post .section_article-content .container_article-content .single-content_sidebar li h6, .single-post .section_article-content .container_article-content .single-content_sidebar li p, .single-post .section_article-content .container_article-content .single-content_sidebar li ul, .single-post .section_article-content .container_article-content .single-content_sidebar li figcaption {
  padding-left: 0;
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  right: 0;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  text-shadow: #000000 0 0 2.5rem;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar li h1, .single-post .section_article-content .container_article-content .single-content_sidebar li h2, .single-post .section_article-content .container_article-content .single-content_sidebar li h3, .single-post .section_article-content .container_article-content .single-content_sidebar li h4, .single-post .section_article-content .container_article-content .single-content_sidebar li h5, .single-post .section_article-content .container_article-content .single-content_sidebar li h6, .single-post .section_article-content .container_article-content .single-content_sidebar li p, .single-post .section_article-content .container_article-content .single-content_sidebar li ul, .single-post .section_article-content .container_article-content .single-content_sidebar li figcaption {
    position: relative;
    top: inherit;
    right: inherit;
    left: inherit;
    text-align: inherit;
    color: inherit;
    transform: inherit;
    text-shadow: inherit;
  }
}
@media (min-width: 1200px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar li h1, .single-post .section_article-content .container_article-content .single-content_sidebar li h2, .single-post .section_article-content .container_article-content .single-content_sidebar li h3, .single-post .section_article-content .container_article-content .single-content_sidebar li h4, .single-post .section_article-content .container_article-content .single-content_sidebar li h5, .single-post .section_article-content .container_article-content .single-content_sidebar li h6, .single-post .section_article-content .container_article-content .single-content_sidebar li p, .single-post .section_article-content .container_article-content .single-content_sidebar li ul, .single-post .section_article-content .container_article-content .single-content_sidebar li figcaption {
    padding-left: 3.5rem;
  }
}
.single-post .section_article-content .container_article-content .single-content_sidebar .widget_item {
  height: 25rem;
  overflow: hidden;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar .widget_item {
    height: inherit;
  }
}
.single-post .section_article-content .container_article-content .single-content_sidebar img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar img {
    margin: 3rem 0;
  }
}
.single-post .section_article-content .container_article-content .single-content_sidebar figcaption {
  opacity: 0.6;
  font-size: 1.6rem;
  display: none;
}
@media (min-width: 576px) {
  .single-post .section_article-content .container_article-content .single-content_sidebar figcaption {
    display: flex;
  }
}
.single-post .section_author {
  margin-top: 3rem;
  padding: 0;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .single-post .section_author {
    margin-top: 6rem;
    padding: 0 10rem;
    margin-bottom: 0;
  }
}
.single-post .section_author .author_container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .single-post .section_author .author_container {
    grid-template-columns: 2fr 1fr;
  }
}
.single-post .section_author .author_container .author {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.single-post .section_author .author_container .author .author_img {
  height: 11rem;
  width: 11rem;
  border-radius: 10rem;
  overflow: hidden;
}
.single-post .section_author .author_container .author .author_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.single-post .section_author .author_container .author .author_name {
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .single-post .section_author .author_container .share {
    margin-left: auto;
  }
}
.single-post .section_author .author_container .share .share_socials {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .single-post .section_author .author_container .share .share_socials {
    justify-content: flex-end;
  }
}
.single-post .section_author .author_container .share .share_socials .share_btn svg {
  height: 4.5rem;
  width: 4.5rem;
}
.single-post .wp-block-image figcaption {
  margin-top: 0.5em;
  opacity: 0.6;
  font-size: 1.6rem;
  padding-top: 1rem;
}

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