@charset "UTF-8";
@import url(~swiper/css/swiper.css);
@import url(~plyr/dist/plyr.css);
@import url(~@fortawesome/fontawesome-free/css/all.css);
/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* Colors */
/* Fonts */
/* ------------------------------------------------------------ *\
	Mixins
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Background
\* ------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap");
.mark--yellow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #EAB83E 0%); }

.mark--red {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E58082 0%); }

.mark--blue {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #BAD2D2 0%); }

.mark--white {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #FFFFFF 0%); }

.mark--color-white {
  color: white; }

.mark--color--blue {
  color: #B9D2D2; }

.bg--color--red {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 24%, #E58082 0%); }

.bg--color--black {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 24%, #353535 0%); }

.bg--color--blue {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 24%, #BAD2D2 0%); }

.bg--color--orange {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 24%, #EAB83E 0%); }

/* ------------------------------------------------------------ *\
	TEXT
\* ------------------------------------------------------------ */
.text--bold {
  font-weight: bold; }

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

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

/* ------------------------------------------------------------ *\
	Before / After
\* ------------------------------------------------------------ */
.after-small-arrow-right-white::after {
  content: url(./img/arrow-right-small-white.svg);
  position: absolute;
  margin-left: 14px; }

.after-small-arrow-right-black::after {
  content: url(./img/small-arrow-right-black.svg);
  position: absolute;
  margin-left: 14px; }

.after-arrow-down-black::after {
  content: url(./img/arrow-down-black.svg);
  position: absolute;
  margin-left: 14px; }

.before-arrow-right-white::before {
  content: url(./img/arrow-right-white.svg);
  position: absolute;
  margin-top: -30px; }

.before-arrow-right-white:hover::before {
  margin-left: 20px;
  transition: 0.5s; }

.before-arrow-right-black::before {
  content: url(./img/arrow-right-black.svg);
  position: absolute;
  margin-top: -30px; }

.before-arrow-right-black:hover::before {
  margin-left: 20px;
  transition: 0.5s; }

.before-arrow-left-black::before {
  content: url(./img/arrow-left-black.svg);
  position: absolute;
  margin-top: -30px; }

.before-arrow-down-grey::before {
  content: url(./img/arrow-down-grey.svg);
  margin-right: 25px; }

.after-burger-menu-black::after {
  content: url(./img/menu-button.svg);
  margin-left: 25px;
  width: 20px;
  margin-top: 2px; }

.after-burger-menu::after {
  content: url(./img/menu-burger.svg);
  margin-left: 25px; }

/* ------------------------------------------------------------ *\
	Margin
\* ------------------------------------------------------------ */
.mt-50 {
  margin-top: 50px; }

.mt-220 {
  margin-top: 220px; }

/* ------------------------------------------------------------ *\
	Border
\* ------------------------------------------------------------ */
.border-radius-100 {
  border-radius: 100px; }

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box; }
  *:before, *:after {
    box-sizing: inherit; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block; }

template {
  display: none; }

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none; }

img,
iframe,
video,
audio,
object {
  max-width: 100%; }

img,
iframe {
  border: 0 none; }

img {
  height: auto;
  display: inline-block;
  vertical-align: middle; }

b,
strong {
  font-weight: bold; }

address {
  font-style: normal; }

svg:not(:root) {
  overflow: hidden; }

a,
button,
input[type='submit'],
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='image'],
label[for] {
  cursor: pointer; }

a[href^='tel'],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input[type='text'],
input[type='password'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='month'],
input[type='week'],
input[type='email'],
input[type='number'],
input[type='search'],
input[type='tel'],
input[type='time'],
input[type='url'],
input[type='color'],
textarea,
a[href^='tel'] {
  appearance: none; }

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  appearance: none; }

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

button,
select {
  text-transform: none; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

nav ul,
nav ol {
  list-style: none outside none; }

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
  min-width: 320px;
  background: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.03em;
  color: #353535; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover, a[href^="tel"] {
    text-decoration: none; }

h1 {
  font-size: 45px;
  font-weight: bold;
  font-family: "Barlow";
  line-height: 1.22; }

h2 {
  font-family: "Barlow";
  line-height: 1.29;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: #353535; }

h4 {
  font-size: 26px;
  font-family: "Barlow";
  font-weight: bold; }

h5 {
  font-size: 22px;
  font-family: "Barlow";
  font-weight: bold; }

h6 {
  font-size: 14px;
  font-family: "Barlow";
  font-weight: bold; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: calc(1.33em / 2);
  line-height: 1.2; }

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: 1.33em; }

ul {
  list-style: none; }

mark {
  background-color: yellow;
  color: #353535; }

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0; }

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  overflow: hidden; }
  .wrapper--expanded {
    overflow: hidden; }

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  margin: auto; }
  .shell--fluid {
    max-width: none; }

/* ------------------------------------------------------------ *\
	Container
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer .footer__adresses {
  display: flex; }
  .footer .footer__adresses h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px; }
  .footer .footer__adresses p {
    margin: 0;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500; }
  .footer .footer__adresses a:hover {
    color: #9a9a9a; }

.footer .footer__title {
  color: #353535;
  margin-bottom: 40px; }
  .footer .footer__title h2 {
    font-size: 24px; }

.footer .footer__yverdon {
  margin-right: 70px; }

@media (max-width: 750px) {
  .service {
    padding: 20px 0 20px 0; }
    .service .service__image {
      display: flex; } }

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Gravity Form ID 1
\* ------------------------------------------------------------ */
#gform_confirmation_message_1 {
  width: 300px;
  font-size: 18px; }

#gform_wrapper_1 .validation_error {
  display: none; }

#gform_wrapper_1 .gform_body ul .gfield_error div input {
  background: #E58082; }

#gform_wrapper_1 .gform_body ul .gfield_error div textarea {
  background: #E58082; }

#gform_wrapper_1 .gform_body ul li {
  background: transparent !important;
  border: none !important; }
  #gform_wrapper_1 .gform_body ul li label {
    display: none; }
  #gform_wrapper_1 .gform_body ul li .validation_message {
    display: none; }
  #gform_wrapper_1 .gform_body ul li div input {
    width: 260px;
    height: 50px;
    border: 2px solid #353535;
    padding-left: 15px !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #353535;
    letter-spacing: 1px; }
    #gform_wrapper_1 .gform_body ul li div input::placeholder {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      color: #353535;
      letter-spacing: 1px; }

#gform_wrapper_1 .gform_footer {
  margin-top: 55px; }
  #gform_wrapper_1 .gform_footer input {
    background: transparent;
    border: none; }
  #gform_wrapper_1 .gform_footer::before {
    content: url(./img/arrow-right-black.svg);
    position: absolute;
    margin-top: -30px; }

@media (max-width: 750px) {
  #gform_wrapper_1 .container_gform_footer .gform_footer::before {
    margin-left: 0px; }
  #gform_wrapper_1 .container_gform_footer .gform_footer input {
    margin: 0px; } }

/* ------------------------------------------------------------ *\
	Gravity Form ID 2
\* ------------------------------------------------------------ */
#gform_confirmation_message_2 {
  margin-top: 50px;
  font-weight: bold;
  text-decoration: underline; }

#gform_wrapper_2 {
  display: none; }
  #gform_wrapper_2 .validation_error {
    display: none; }
  #gform_wrapper_2 .gform_body {
    display: flex;
    justify-content: center;
    margin-top: 58px; }
    #gform_wrapper_2 .gform_body ul {
      max-width: 730px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      #gform_wrapper_2 .gform_body ul .gf_right_half {
        display: inline-block; }
      #gform_wrapper_2 .gform_body ul .gf_left_half {
        display: inline-block; }
      #gform_wrapper_2 .gform_body ul .gfield_error div input {
        background: #E58082;
        margin-top: 5px; }
      #gform_wrapper_2 .gform_body ul .gfield_error div textarea {
        background: #E58082; }
      #gform_wrapper_2 .gform_body ul li {
        margin-bottom: 25px;
        background: transparent !important;
        border: none !important; }
        #gform_wrapper_2 .gform_body ul li label {
          display: none; }
        #gform_wrapper_2 .gform_body ul li .validation_message {
          display: none; }
        #gform_wrapper_2 .gform_body ul li div .textarea {
          width: 720px;
          height: 312px;
          border: 2px solid #353535;
          padding: 21px 0px 0px 15px;
          font-size: 12px;
          font-weight: 600;
          text-transform: uppercase;
          color: #353535;
          letter-spacing: 1px; }
          #gform_wrapper_2 .gform_body ul li div .textarea::placeholder {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: #353535;
            letter-spacing: 1px; }
        #gform_wrapper_2 .gform_body ul li div input {
          width: 356px;
          height: 50px;
          border: 2px solid #353535;
          padding-left: 15px !important;
          font-size: 12px;
          font-weight: 600;
          text-transform: uppercase;
          color: #353535;
          letter-spacing: 1px; }
          #gform_wrapper_2 .gform_body ul li div input::placeholder {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: #353535;
            letter-spacing: 1px; }
  #gform_wrapper_2 .container_gform_footer {
    display: flex;
    width: 730px;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto; }
  #gform_wrapper_2 .gform_footer {
    width: auto;
    justify-content: center;
    margin-top: 55px; }
    #gform_wrapper_2 .gform_footer input {
      background: transparent;
      border: none; }
    #gform_wrapper_2 .gform_footer::before {
      content: url(./img/arrow-right-black.svg);
      position: absolute;
      margin-top: -30px; }

@media (max-width: 750px) {
  #gform_wrapper_2 .gform_body ul {
    max-width: 100%;
    justify-content: left; }
    #gform_wrapper_2 .gform_body ul #field_2_9 textarea {
      width: 355px; }
  #gform_wrapper_2 .container_gform_footer {
    width: 100%; } }

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.navigation {
  align-self: flex-end; }
  .navigation ul {
    display: flex;
    flex-direction: row; }
    .navigation ul li {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-left: 22px;
      line-height: 20px;
      text-align: center; }
      .navigation ul li a:hover {
        border-bottom: 2px solid #353535; }

@media (max-width: 750px) {
  .navigation ul {
    flex-wrap: wrap;
    line-height: 34px;
    margin-left: -24px; } }

html {
  margin-top: 0px; }

/* ------------------------------------------------------------ *\
	Section-Services
\* ------------------------------------------------------------ */
.section-services {
  padding: 80px 0 105px 0; }
  .section-services .section__title {
    font-weight: 700;
    font-size: 52px;
    position: relative;
    margin-bottom: 30px; }
  .section-services .section__paragraphe {
    font-weight: 700;
    max-width: 650px; }
  .section-services .section__head {
    margin-bottom: 100px; }
  .section-services .section__content {
    width: 47%; }
  .section-services .section__aside {
    width: 47%; }
  .section-services .section__body {
    margin-bottom: 100px; }
  .section-services .section__actions {
    text-align: center; }
  .section-services .section__background-title {
    height: 42px;
    background: #EAB83E;
    position: absolute;
    width: 331px;
    top: 16px;
    left: 641px; }

@media (max-width: 750px) {
  .section-services {
    padding: 0px; }
    .section-services h2 {
      margin-bottom: 30px; }
    .section-services .section__head {
      margin-bottom: 30px;
      text-align: center; }
    .section-services .section__body {
      margin-bottom: 30px; }
      .section-services .section__body .services__items {
        justify-content: center; }
    .section-services .section__foot {
      text-align: center; }
    .section-services .section__inner {
      padding: 0; }
    .section-services .section__content {
      width: 100%;
      margin-bottom: 30px; }
    .section-services .section__aside {
      width: 100%; } }

/* ------------------------------------------------------------ *\
	Section-Services--about
\* ------------------------------------------------------------ */
.section-services--about .section__head {
  margin-top: 84px; }
  .section-services--about .section__head .section__paragraphe {
    margin-right: 485px;
    font-weight: bold;
    margin-top: 30px; }

.section-services--about .section__body {
  margin-bottom: 100px; }

.section-services--about .service {
  display: flex;
  flex-direction: row;
  margin-top: 80px;
  align-items: center; }
  .section-services--about .service .service__left-side {
    display: flex;
    flex-direction: column;
    flex: 0 25%; }
    .section-services--about .service .service__left-side .service__title p {
      margin: 0;
      font-size: 12px; }
    .section-services--about .service .service__left-side .service__title h3 {
      font-size: 22px;
      text-transform: uppercase;
      color: #EAB83E;
      font-weight: bold;
      letter-spacing: 2.2px; }
    .section-services--about .service .service__left-side .service__image {
      margin-top: 44px; }
  .section-services--about .service .service__middle-side {
    flex: 0 54%;
    margin-bottom: 8px; }
    .section-services--about .service .service__middle-side .service__title h3 {
      margin-bottom: 70px; }
    .section-services--about .service .service__middle-side .section__paragraphe p {
      font-size: 16px;
      line-height: 25px;
      margin-right: 100px; }
  .section-services--about .service .service__right-side {
    align-self: flex-end;
    margin-bottom: 40px; }
    .section-services--about .service .service__right-side .service__liste-puce {
      font-size: 14px; }
      .section-services--about .service .service__right-side .service__liste-puce ul {
        list-style: disc; }

@media (max-width: 750px) {
  .section-services--about .section__head {
    text-align: center; }
    .section-services--about .section__head .section__paragraphe {
      margin: 0px;
      margin-top: 30px; }
  .section-services--about .section__body .service {
    margin-top: 40px;
    flex-direction: column; }
    .section-services--about .section__body .service .service__left-side {
      align-self: center; }
      .section-services--about .section__body .service .service__left-side .service__title {
        text-align: center; }
    .section-services--about .section__body .service .service__middle-side {
      text-align: center;
      margin-bottom: 0px; }
      .section-services--about .section__body .service .service__middle-side .section__paragraphe p {
        margin-right: 0px; }
      .section-services--about .section__body .service .service__middle-side h3 {
        margin-bottom: 20px;
        margin-top: 20px; }
    .section-services--about .section__body .service .service__right-side {
      text-align: center;
      margin-top: 20px;
      margin-left: 0px;
      margin-bottom: 0px;
      align-self: center; }
      .section-services--about .section__body .service .service__right-side ul {
        list-style: none; } }

/* ------------------------------------------------------------ *\
	Section-Temoignages
\* ------------------------------------------------------------ */
.section-temoignage {
  background-color: #353535;
  padding: 90px 0 100px 0; }
  .section-temoignage .bx-wrapper {
    margin-bottom: 0px; }
  .section-temoignage .section__top {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px; }
  .section-temoignage .section__bottom {
    display: flex;
    justify-content: space-between; }

@media (max-width: 750px) {
  .section-temoignage .section__body .bx-wrapper {
    top: 15px;
    left: 10px; }
    .section-temoignage .section__body .bx-wrapper .temoignage__message span {
      font-size: 52px; }
    .section-temoignage .section__body .bx-wrapper .temoignage__message p {
      font-size: 30px; }
    .section-temoignage .section__body .bx-wrapper .bx-controls .bx-pager {
      position: relative; }
    .section-temoignage .section__body .bx-wrapper .section__bottom {
      display: flex;
      justify-content: center; }
  .section-temoignage .section__body .temoignage__message p {
    font-size: 42px;
    line-height: normal; } }

/* ------------------------------------------------------------ *\
	Section-Blogs
\* ------------------------------------------------------------ */
.section-blog {
  padding: 83px 0 98px 0; }
  .section-blog .section__title {
    margin-bottom: 30px; }
  .section-blog .section__paragraphe {
    font-weight: 700;
    max-width: 580px; }
  .section-blog .section__head {
    margin-bottom: 45px; }
  .section-blog .section__foot {
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-blog .section__head {
    text-align: center; }
  .section-blog .section__body .blogs-section {
    justify-content: center; }
  .section-blog .section__foot {
    text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-Blogs-Archive
\* ------------------------------------------------------------ */
.section-blog-archive .section__head {
  margin-bottom: 96px;
  margin-top: 84px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .section-blog-archive .section__head .section__nav {
    flex: 0 0 40%; }
    .section-blog-archive .section__head .section__nav ul {
      justify-content: center; }

@media (max-width: 750px) {
  .section-blog-archive .section__head {
    margin-top: auto;
    justify-content: center; }
    .section-blog-archive .section__head .section__title {
      margin-bottom: 20px;
      margin-top: 40px; }
      .section-blog-archive .section__head .section__title h2 {
        text-align: center; }
  .section-blog-archive .section__body .blogs-archive {
    width: 100%;
    justify-content: center; }
  .section-blog-archive .section__foot {
    display: flex;
    justify-content: center; } }

/* ------------------------------------------------------------ *\
	Section-Clients
\* ------------------------------------------------------------ */
.section-clients {
  background-color: #353535;
  padding: 83px 0 98px 0;
  color: white; }
  .section-clients .section__title {
    margin-bottom: 30px; }
  .section-clients .section__paragraphe {
    font-weight: 700;
    max-width: 580px; }
  .section-clients .section__head {
    margin-bottom: 45px; }
  .section-clients .section__foot {
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-clients .section__head {
    text-align: center; }
  .section-clients .section__body .clients-section {
    justify-content: center; }
  .section-clients .section__foot {
    text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-Client-archive
\* ------------------------------------------------------------ */
.section-clients_archive {
  padding: 87px 0 100px 0; }
  .section-clients_archive .section__head {
    margin-bottom: 44px; }
    .section-clients_archive .section__head .section__text {
      font-weight: bold;
      margin-top: 31px; }
  .section-clients_archive .section__body .section__row {
    display: flex;
    flex-direction: row;
    margin-bottom: 34px;
    justify-content: space-between; }
    .section-clients_archive .section__body .section__row .section__information {
      width: 450px; }
    .section-clients_archive .section__body .section__row .section__title {
      margin: 10px 0 30px 0; }
    .section-clients_archive .section__body .section__row .section__paragraphe {
      margin-top: 31px; }
  .section-clients_archive .section__foot {
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-clients_archive .section__head {
    text-align: center; }
  .section-clients_archive .section__body {
    text-align: center; }
    .section-clients_archive .section__body .section__row {
      flex-wrap: wrap;
      justify-content: center; }
      .section-clients_archive .section__body .section__row .section__information {
        width: 100%; }
      .section-clients_archive .section__body .section__row .clients_archive {
        flex-wrap: wrap;
        justify-content: space-around; }
        .section-clients_archive .section__body .section__row .clients_archive .client_archive {
          margin-top: 20px;
          margin-bottom: 20px; }
          .section-clients_archive .section__body .section__row .clients_archive .client_archive a img {
            width: 80%; }
  .section-clients_archive .section__foot {
    display: flex;
    justify-content: center; } }

/* ------------------------------------------------------------ *\
	Section-Client-archive-V2
\* ------------------------------------------------------------ */
.section-clients_archive_v2 {
  padding: 87px 0 100px 0; }
  .section-clients_archive_v2 .section__head {
    margin-bottom: 44px; }
    .section-clients_archive_v2 .section__head .section__text {
      font-weight: bold;
      margin-top: 31px; }
  .section-clients_archive_v2 .section__body .section__row {
    margin-bottom: 100px; }
    .section-clients_archive_v2 .section__body .section__row .section__left-side {
      width: 100%; }
      .section-clients_archive_v2 .section__body .section__row .section__left-side .section__title {
        margin: 10px 0 30px 0; }
      .section-clients_archive_v2 .section__body .section__row .section__left-side .section__paragraphe {
        margin-top: 31px;
        display: flex;
        justify-content: space-between; }
        .section-clients_archive_v2 .section__body .section__row .section__left-side .section__paragraphe p {
          width: 542px;
          font-size: 18px;
          font-weight: bold;
          line-height: 28px; }
        .section-clients_archive_v2 .section__body .section__row .section__left-side .section__paragraphe ul {
          list-style: disc;
          line-height: 30px;
          min-width: 348px;
          width: 348px; }
          .section-clients_archive_v2 .section__body .section__row .section__left-side .section__paragraphe ul li {
            font-size: 14px !important; }
            .section-clients_archive_v2 .section__body .section__row .section__left-side .section__paragraphe ul li span {
              font-size: 14px !important; }
    .section-clients_archive_v2 .section__body .section__row .section__right-side {
      max-width: 450px;
      min-width: 450px; }
      .section-clients_archive_v2 .section__body .section__row .section__right-side ul {
        font-size: 14px;
        line-height: 30px;
        list-style: disc; }
  .section-clients_archive_v2 .section__foot {
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-clients_archive_v2 .section__head {
    text-align: center; }
  .section-clients_archive_v2 .section__body {
    text-align: center; }
    .section-clients_archive_v2 .section__body .section__left-side .section__paragraphe {
      flex-wrap: wrap;
      justify-content: center !important; }
      .section-clients_archive_v2 .section__body .section__left-side .section__paragraphe ul {
        list-style: none !important;
        margin-top: 10px; }
      .section-clients_archive_v2 .section__body .section__left-side .section__paragraphe p {
        width: auto !important; } }

/* ------------------------------------------------------------ *\
	Section-Projets
\* ------------------------------------------------------------ */
.section-projets {
  padding: 83px 0 73px 0;
  background-repeat: no-repeat !important;
  background-position: bottom -53px right 377px !important; }
  .section-projets .section__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px; }
  .section-projets .section__project-suivent {
    text-align: right;
    max-width: 55px; }
    .section-projets .section__project-suivent p {
      font-size: 13px;
      margin-top: 10px;
      font-weight: bold; }
  .section-projets .section__head {
    margin-bottom: 200px; }
  .section-projets .section__foot {
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-projets {
    background-position: bottom -36px right -7px !important; }
    .section-projets .section__head .section__title h2 {
      text-align: center; }
    .section-projets .section__head .section__link {
      text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-Lite-Projets
\* ------------------------------------------------------------ */
.section-lite-projets {
  background-color: #353535; }
  .section-lite-projets .section__head {
    padding-top: 82px;
    margin-bottom: 100px; }
    .section-lite-projets .section__head h2 {
      margin: 0px;
      margin-bottom: 13px; }
  .section-lite-projets .section__foot {
    margin-top: 54px;
    padding-bottom: 96px; }

@media (max-width: 750px) {
  .section-lite-projets .section__body .projet_lite {
    margin-bottom: 20px; }
    .section-lite-projets .section__body .projet_lite .projet_lite__image {
      max-height: 363px !important;
      height: 363px !important;
      width: 110% !important; }
  .section-lite-projets .section__foot .banner {
    text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-Projets-Archive
\* ------------------------------------------------------------ */
.section-projets_archive {
  padding: 85px 0 99px 0;
  min-height: 1000px; }
  .section-projets_archive .section__head {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
    justify-content: space-between; }
    .section-projets_archive .section__head .section__title {
      max-width: 300px;
      width: auto; }
    .section-projets_archive .section__head .section__nav {
      align-self: flex-end; }

@media (max-width: 750px) {
  .section-projets_archive .section__head {
    flex-wrap: wrap;
    justify-content: center; }
    .section-projets_archive .section__head .section__title {
      margin-bottom: 20px; }
    .section-projets_archive .section__head .section__nav ul {
      justify-content: center;
      flex-wrap: wrap;
      line-height: 34px;
      margin-left: -24px; } }

/* ------------------------------------------------------------ *\
	Section-Projets-Single
\* ------------------------------------------------------------ */
.section-projets_single .section__temoignage_navigation {
  padding-top: 60px;
  display: flex;
  justify-content: space-between; }
  .section-projets_single .section__temoignage_navigation .section__navigation {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: inherit; }
  .section-projets_single .section__temoignage_navigation .section__temoignage {
    background: #F6F6EF;
    min-width: 635px;
    padding: 65px 0px 45px 0px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .section-projets_single .section__temoignage_navigation .section__temoignage .section__client_temoignage {
      text-align: center; }
      .section-projets_single .section__temoignage_navigation .section__temoignage .section__client_temoignage p {
        font-size: 18px; }
    .section-projets_single .section__temoignage_navigation .section__temoignage .temoignage__message {
      display: flex;
      align-items: center;
      justify-content: center; }
      .section-projets_single .section__temoignage_navigation .section__temoignage .temoignage__message span {
        font-size: 120px;
        color: #EAB83E;
        max-width: 80px; }
      .section-projets_single .section__temoignage_navigation .section__temoignage .temoignage__message p {
        text-align: center;
        max-width: 450px;
        font-size: 18px;
        font-weight: bold;
        line-height: 30px;
        margin-bottom: 16px; }

.section-projets_single .section__container_chiffres {
  margin-top: 40px;
  margin-bottom: 108px; }
  .section-projets_single .section__container_chiffres .section__number span {
    font-size: 12px; }
  .section-projets_single .section__container_chiffres .section__title {
    margin: 10px 0 30px 0; }
    .section-projets_single .section__container_chiffres .section__title h2 {
      font-size: 24px;
      color: #EAB83E;
      text-transform: uppercase;
      letter-spacing: 2.4px; }
  .section-projets_single .section__container_chiffres .section__chiffres {
    display: flex;
    justify-content: space-between; }
    .section-projets_single .section__container_chiffres .section__chiffres div {
      text-align: center; }
      .section-projets_single .section__container_chiffres .section__chiffres div h2 {
        font-size: 64px;
        margin-bottom: 0px; }
      .section-projets_single .section__container_chiffres .section__chiffres div p {
        font-size: 24px;
        font-weight: bold;
        margin-top: 21px; }

.section-projets_single .section__head .section__text .section__container {
  display: flex;
  justify-content: space-between;
  margin-top: 50px; }

.section-projets_single .section__head .section__text .section__objectif {
  margin-top: 63px; }
  .section-projets_single .section__head .section__text .section__objectif .section__paragraphe {
    max-width: 840PX; }
    .section-projets_single .section__head .section__text .section__objectif .section__paragraphe p {
      font-size: 24px;
      font-weight: bold; }

.section-projets_single .section__head .section__text .section__number span {
  font-size: 12px; }

.section-projets_single .section__head .section__text .section__title {
  margin: 10px 0 30px 0; }
  .section-projets_single .section__head .section__text .section__title h2 {
    font-size: 24px;
    color: #EAB83E;
    text-transform: uppercase;
    letter-spacing: 2.4px; }

.section-projets_single .section__head .section__text .section__paragraphe {
  margin-top: 31px;
  max-width: 449px; }
  .section-projets_single .section__head .section__text .section__paragraphe p {
    font-size: 16px; }

.section-projets_single .section__head .section__name {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
  margin-top: 85px; }

.section-projets_single .section__head .section__information {
  display: flex;
  flex-direction: column-reverse;
  width: 100%; }
  .section-projets_single .section__head .section__information h3 {
    display: inline; }

.section-projets_single .flexible-col-1 {
  padding: 60px; }

.section-projets_single .flexible-col-2 {
  padding: 60px; }

.section-projets_single .flexible .videos-container {
  min-height: 400px; }

.section-projets_single .flexible .shell-2-col {
  display: flex; }

.section-projets_single .flexible .section__title {
  margin-bottom: 50px; }

.section-projets_single .flexible .section__image {
  width: 100%;
  text-align: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important; }

.section-projets_single .flexible .section__image-2-col {
  flex: 1; }
  .section-projets_single .flexible .section__image-2-col img {
    width: 100%; }

.section-projets_single .flexible .cutom-pr {
  padding-right: 10px; }

.section-projets_single .flexible .cutom-pl {
  padding-left: 10px; }

.section-projets_single .flexible .image-fullscreen {
  height: 450px; }

.section-projets_single .flexible .section__video {
  width: 100%;
  height: 400px; }
  .section-projets_single .flexible .section__video iframe {
    width: 100%;
    height: 100% !important; }

.section-projets_single .flexible .section__video-2-col {
  flex: 1; }
  .section-projets_single .flexible .section__video-2-col iframe {
    width: 100%;
    height: 100% !important; }

.section-projets_single .section__presentation_img {
  margin-bottom: 100px;
  background: #9C9E4E; }
  .section-projets_single .section__presentation_img .section__content {
    display: flex;
    justify-content: space-between;
    height: 488px; }

.section-projets_single .section__foot .section__title {
  margin-bottom: 50px; }

.section-projets_single .section__foot .section__icon {
  margin-bottom: 100px;
  text-align: center; }

.section-projets_single .section__color-pallet {
  margin-bottom: 100px;
  display: flex; }
  .section-projets_single .section__color-pallet div {
    width: 100%;
    height: 68px; }

.section-projets_single .section__next-before {
  display: flex;
  margin-top: 70px;
  justify-content: space-between;
  width: 100%; }
  .section-projets_single .section__next-before p {
    font-size: 12px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
    text-transform: uppercase; }
  .section-projets_single .section__next-before .section__before-project {
    flex: 0 50%; }
  .section-projets_single .section__next-before .section__next-project {
    display: flex;
    flex: 0 50%;
    flex-direction: column;
    align-items: flex-end; }
    .section-projets_single .section__next-before .section__next-project a {
      text-align: right; }
    .section-projets_single .section__next-before .section__next-project h3 {
      text-align: right; }

.section-projets_single .section__url {
  margin-bottom: 130px; }

@media (max-width: 750px) {
  .section-projets_single .section__inner .section__temoignage_navigation {
    flex-wrap: wrap; }
    .section-projets_single .section__inner .section__temoignage_navigation .section__temoignage {
      width: 100%;
      margin: 0px;
      min-width: 0px; }
      .section-projets_single .section__inner .section__temoignage_navigation .section__temoignage .temoignage__message span {
        display: none; }
      .section-projets_single .section__inner .section__temoignage_navigation .section__temoignage .temoignage__message p {
        font-size: 15px;
        padding: 0 10px; }
    .section-projets_single .section__inner .section__temoignage_navigation .section__navigation .section__url {
      margin-bottom: 50px; }
  .section-projets_single .section__inner .section__container_chiffres .section__chiffres {
    flex-wrap: wrap; }
    .section-projets_single .section__inner .section__container_chiffres .section__chiffres div {
      width: 100%;
      padding: 40px; }
  .section-projets_single .section__inner .flexible-col-2 .shell-2-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .section-projets_single .section__inner .flexible-col-2 .shell-2-col .section__video-2-col {
      width: 100%;
      padding: 0px; }
    .section-projets_single .section__inner .flexible-col-2 .shell-2-col .section__image-2-col {
      width: 100%;
      padding: 0px; }
      .section-projets_single .section__inner .flexible-col-2 .shell-2-col .section__image-2-col img {
        height: 100%; }
  .section-projets_single .section__inner .flexible-col-2-fw .shell-2-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .section-projets_single .section__inner .flexible-col-2-fw .shell-2-col .section__image-2-col {
      width: 100%; }
      .section-projets_single .section__inner .flexible-col-2-fw .shell-2-col .section__image-2-col img {
        height: 100%; }
    .section-projets_single .section__inner .flexible-col-2-fw .shell-2-col .section__video-2-col {
      width: 100%; }
  .section-projets_single .section__head .section__text .section__container {
    flex-direction: column; }
  .section-projets_single .projet_single .section__presentation_img .section__content {
    justify-content: center; }
  .section-projets_single .section__content {
    height: auto !important;
    flex-wrap: wrap;
    padding: 20px 0 20px 0; }
    .section-projets_single .section__content img:first-child {
      margin-bottom: 20px; } }

/* ------------------------------------------------------------ *\
	Section-Header
\* ------------------------------------------------------------ */
.section-header {
  padding-top: 60px;
  background-size: cover;
  color: white;
  position: relative;
  bottom: 50px;
  background-image: none !important; }
  .section-header video {
    object-fit: cover;
    width: 100%;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    top: 0;
    filter: brightness(0.5); }
  .section-header .section__title {
    max-width: 830px; }
    .section-header .section__title h2 {
      font-size: 52px;
      letter-spacing: 0; }
  .section-header .section__project-suivent {
    text-align: right;
    max-width: 55px; }
    .section-header .section__project-suivent p {
      font-size: 13px;
      margin-top: 10px;
      font-weight: bold; }
  .section-header .section__head {
    margin-bottom: 187px;
    position: relative; }
  .section-header .section__arrow {
    margin-top: 200px;
    padding-bottom: 20px;
    text-align: center;
    position: relative; }
  .section-header .section__foot {
    margin-top: 50px;
    display: flex;
    justify-content: space-between; }
    .section-header .section__foot .section__projet-suivant a {
      position: relative;
      z-index: 1; }
    .section-header .section__foot--bg-grey:after {
      content: "";
      height: 82px;
      background: #908E90;
      opacity: 0.6;
      display: block;
      left: 0;
      position: absolute;
      margin-top: 10px;
      width: 39%; }
  .section-header .section__body {
    margin-bottom: 103px;
    position: relative; }
  .section-header .section__menu {
    text-transform: uppercase;
    letter-spacing: 3.4px;
    font-size: 17px;
    display: flex; }
  .section-header .section__projet-suivant {
    align-self: center; }
    .section-header .section__projet-suivant p {
      font-size: 18px; }
  .section-header .section__paragraphe {
    font-weight: 300;
    align-self: flex-end;
    max-width: 505px;
    position: relative; }
    .section-header .section__paragraphe p {
      line-height: 35px; }
  .section-header .section__overlay-menu {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: white;
    overflow-x: hidden;
    /* Disable horizontal scroll */ }
    .section-header .section__overlay-menu .section__head {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px;
      margin-bottom: 60px; }
      .section-header .section__overlay-menu .section__head .overlay-menu__logo {
        flex: 0 93%;
        margin-left: auto; }
      .section-header .section__overlay-menu .section__head .overlay-menu__close {
        flex: 0 1%;
        margin-left: auto;
        align-self: flex-end; }
        .section-header .section__overlay-menu .section__head .overlay-menu__close p {
          color: #E58082;
          font-size: 14px;
          text-transform: uppercase;
          font-weight: bold;
          letter-spacing: 3.4px; }
          .section-header .section__overlay-menu .section__head .overlay-menu__close p:hover {
            color: #f2bfc0; }
      .section-header .section__overlay-menu .section__head .overlay-menu__langage {
        display: none;
        color: black;
        margin-left: auto;
        margin-top: 20px; }
        .section-header .section__overlay-menu .section__head .overlay-menu__langage p {
          margin: 0;
          font-size: 14px;
          font-weight: bold;
          margin-bottom: 15px; }
    .section-header .section__overlay-menu .section__body {
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(2) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #EAB83E 0%) !important; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(3) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #BAD2D2 0%) !important; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(4) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E58082 0%) !important; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(5) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #EAB83E 0%) !important; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container a {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: #818181;
        display: block;
        /* Display block instead of inline */
        transition: 0.3s;
        /* Transition effects on hover (color) */
        font-size: 72px;
        font-weight: bold; }
        .section-header .section__overlay-menu .section__body .menu-menu-overlay-container a mark {
          background: none !important; }
        .section-header .section__overlay-menu .section__body .menu-menu-overlay-container a mark:hover {
          background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E58082 0%) !important; }
      .section-header .section__overlay-menu .section__body .overlay-menu__social-network {
        display: grid;
        margin-bottom: 20px; }
        .section-header .section__overlay-menu .section__body .overlay-menu__social-network img {
          width: 20px;
          margin-top: 30px; }
          .section-header .section__overlay-menu .section__body .overlay-menu__social-network img:hover {
            filter: contrast(0.1); }

@media (max-width: 750px) {
  .section-header {
    padding: 50px 0 100px 0; }
    .section-header video {
      height: 94% !important; }
    .section-header .section__body .section__title h2 {
      margin-top: -50px; }
    .section-header .section__foot {
      flex-wrap: wrap; }
      .section-header .section__foot--bg-grey:after {
        margin-top: -14px;
        width: 100%; }
      .section-header .section__foot .section__paragraphe {
        margin-top: 40px; } }

@media (max-width: 500px) {
  .section-header video {
    height: 94% !important; } }

@media (max-width: 750px) {
  .section-header .section__overlay-menu {
    width: 100% !important; }
    .section-header .section__overlay-menu .section__head {
      margin-bottom: 20px;
      flex-direction: column; }
      .section-header .section__overlay-menu .section__head .overlay-menu__logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; }
      .section-header .section__overlay-menu .section__head .overlay-menu__close {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; }
      .section-header .section__overlay-menu .section__head .overlay-menu__langage {
        display: none;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px; }
        .section-header .section__overlay-menu .section__head .overlay-menu__langage p:first-child {
          margin-right: 26px; }
    .section-header .section__overlay-menu .section__body {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px; }
      .section-header .section__overlay-menu .section__body .menu-menu-overlay-container {
        width: 100%;
        text-align: center;
        margin-bottom: 60px; }
        .section-header .section__overlay-menu .section__body .menu-menu-overlay-container ul li a {
          font-size: 36px; }
      .section-header .section__overlay-menu .section__body .overlay-menu__social-network {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%; } }

/* ------------------------------------------------------------ *\
	Section-Footer
\* ------------------------------------------------------------ */
.section-footer {
  padding: 90px 0 90px 0; }
  .section-footer .section__head {
    margin-bottom: 100px; }
    .section-footer .section__head .section__title {
      margin-bottom: 40px; }
  .section-footer .section__body {
    display: flex;
    margin-bottom: 70px;
    justify-content: space-between; }
    .section-footer .section__body .section__form {
      align-self: flex-end; }
    .section-footer .section__body .section__contact h3 {
      font-size: 24px;
      margin-bottom: 40px; }
    .section-footer .section__body .section__contact h4 {
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .section-footer .section__body .section__contact p {
      margin: 0;
      font-size: 16px; }
    .section-footer .section__body .section__contact a {
      cursor: pointer; }
      .section-footer .section__body .section__contact a p:hover {
        color: #9a9a9a; }
    .section-footer .section__body .section__reseau-sociaux {
      display: flex;
      padding-top: 19px; }
      .section-footer .section__body .section__reseau-sociaux .reseau-social {
        margin-right: 33px; }
        .section-footer .section__body .section__reseau-sociaux .reseau-social img {
          width: 20px; }
          .section-footer .section__body .section__reseau-sociaux .reseau-social img:hover {
            filter: contrast(0.1); }
  .section-footer .section__foot {
    display: flex; }
    .section-footer .section__foot .section__conditions {
      color: #353535;
      width: 100%;
      display: flex;
      align-items: center;
      flex-direction: column; }
      .section-footer .section__foot .section__conditions h4 {
        font-size: 14px;
        text-decoration: underline; }
      .section-footer .section__foot .section__conditions p {
        margin: 0;
        font-size: 14px;
        line-height: 24px; }
      .section-footer .section__foot .section__conditions img {
        margin-top: 11px; }

@media (max-width: 750px) {
  .section-footer .section__head {
    margin-bottom: 50px; }
    .section-footer .section__head .section__title {
      text-align: center; }
      .section-footer .section__head .section__title h2 {
        font-size: 32px; }
    .section-footer .section__head .section__paragraphe {
      display: flex;
      justify-content: center; }
  .section-footer .section__body {
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: space-evenly;
    flex-direction: column; }
    .section-footer .section__body .section__contact_reseaux-sociaux {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .section-footer .section__body .section__contact_reseaux-sociaux .section__contact {
        display: flex;
        flex-direction: column;
        align-items: center; }
    .section-footer .section__body .section__form {
      width: 100%;
      display: flex;
      justify-content: center; }
      .section-footer .section__body .section__form .gform_body {
        text-align: center; }
    .section-footer .section__body .section__adresses {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .section-footer .section__body .section__adresses .footer__adresses {
        flex-direction: column;
        align-items: center;
        text-align: center; }
        .section-footer .section__body .section__adresses .footer__adresses h4 {
          margin-bottom: 0px; }
        .section-footer .section__body .section__adresses .footer__adresses .footer__yverdon {
          margin-right: 0px;
          margin-bottom: 50px; }
    .section-footer .section__body .section__form {
      margin: 87px 0 50px 0; }
    .section-footer .section__body .section__reseau-sociaux {
      margin-bottom: 50px;
      margin-right: 0px; }
      .section-footer .section__body .section__reseau-sociaux .reseau-social {
        margin: 0px;
        padding: 0 30px; }
  .section-footer .section__foot {
    justify-content: space-around; }
    .section-footer .section__foot .section__conditions p {
      text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-pdf
\* ------------------------------------------------------------ */
.section-pdf {
  color: #FFFFFF;
  background-color: #353535;
  padding: 82px 0 100px 0; }
  .section-pdf .section__head .section__title {
    margin-bottom: 35px; }
  .section-pdf .section__foot {
    display: flex;
    justify-content: space-between; }
    .section-pdf .section__foot .section__text {
      align-self: flex-end;
      font-weight: bold; }

@media (max-width: 750px) {
  .section-pdf .section__foot {
    flex-wrap: wrap; }
    .section-pdf .section__foot .section__text {
      margin-bottom: 40px; } }

/* ------------------------------------------------------------ *\
	Section-nav
\* ------------------------------------------------------------ */
.section-nav {
  margin-top: 35px; }
  .section-nav .section__overlay-menu {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    /* Stay in place */
    z-index: 10;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: white;
    overflow-x: hidden;
    /* Disable horizontal scroll */ }
    .section-nav .section__overlay-menu .section__head {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px;
      margin-bottom: 60px; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__logo {
        flex: 0 93%;
        margin-left: auto; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__close {
        flex: 0 1%;
        margin-left: auto;
        align-self: flex-end; }
        .section-nav .section__overlay-menu .section__head .overlay-menu__close p {
          color: #E58082;
          font-size: 14px;
          text-transform: uppercase;
          font-weight: bold;
          letter-spacing: 3.4px; }
          .section-nav .section__overlay-menu .section__head .overlay-menu__close p:hover {
            color: #f2bfc0; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__langage {
        display: none;
        color: black;
        margin-left: auto;
        margin-top: 20px; }
        .section-nav .section__overlay-menu .section__head .overlay-menu__langage p {
          margin: 0;
          font-size: 14px;
          font-weight: bold;
          margin-bottom: 15px; }
    .section-nav .section__overlay-menu .section__body {
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(2) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #EAB83E 0%) !important; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(3) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #BAD2D2 0%) !important; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(4) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E58082 0%) !important; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container ul li:nth-child(5) a mark:hover {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #EAB83E 0%) !important; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container a {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: #818181;
        display: block;
        /* Display block instead of inline */
        transition: 0.3s;
        /* Transition effects on hover (color) */
        font-size: 72px;
        font-weight: bold; }
        .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container a mark {
          background: none !important; }
        .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container a mark:hover {
          background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #E58082 0%) !important; }
      .section-nav .section__overlay-menu .section__body .overlay-menu__social-network {
        display: grid;
        margin-bottom: 20px; }
        .section-nav .section__overlay-menu .section__body .overlay-menu__social-network img {
          width: 20px;
          margin-top: 30px; }
          .section-nav .section__overlay-menu .section__body .overlay-menu__social-network img:hover {
            filter: contrast(0.1); }
  .section-nav .section__content {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .section-nav .section__content .section__menu {
      cursor: pointer; }
      .section-nav .section__content .section__menu:hover {
        filter: contrast(0.1); }
      .section-nav .section__content .section__menu p {
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 3.4px;
        font-weight: 600; }

@media (max-width: 750px) {
  .section-nav .section__content {
    flex-direction: column;
    align-items: center; }
    .section-nav .section__content .section__logo {
      margin-bottom: 30px; }
  .section-nav .section__overlay-menu {
    width: 100% !important; }
    .section-nav .section__overlay-menu .section__head {
      margin-bottom: 20px;
      flex-direction: column; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__close {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; }
      .section-nav .section__overlay-menu .section__head .overlay-menu__langage {
        display: none;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px; }
        .section-nav .section__overlay-menu .section__head .overlay-menu__langage p:first-child {
          margin-right: 26px; }
    .section-nav .section__overlay-menu .section__body {
      display: flex;
      flex-direction: column; }
      .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container {
        width: 100%;
        text-align: center;
        margin-bottom: 60px; }
        .section-nav .section__overlay-menu .section__body .menu-menu-overlay-container ul li a {
          font-size: 36px; }
      .section-nav .section__overlay-menu .section__body .overlay-menu__social-network {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%; } }

/* ------------------------------------------------------------ *\
	Section Approche
\* ------------------------------------------------------------ */
.section-approche {
  background-color: #353535; }
  .section-approche .section__head {
    padding-top: 80px; }
    .section-approche .section__head .section__paragraphe p {
      font-size: 24px;
      font-weight: bold;
      max-width: 700px;
      margin-top: 30px; }
  .section-approche .section__foot {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .section-approche .section__foot .section__middle-side {
      display: flex;
      flex-direction: column; }
      .section-approche .section__foot .section__middle-side:after {
        content: "";
        display: block;
        background: #B9D2D2;
        width: 4px;
        height: 750px;
        margin-left: 9px;
        margin-top: -750px; }
      .section-approche .section__foot .section__middle-side .position-1 {
        margin-top: 50px; }
      .section-approche .section__foot .section__middle-side .position-2 {
        margin-top: 146px; }
      .section-approche .section__foot .section__middle-side .position-3 {
        margin-top: 150px; }
      .section-approche .section__foot .section__middle-side .position-4 {
        margin-top: 97px; }
      .section-approche .section__foot .section__middle-side .position-5 {
        margin-top: 146px; }
      .section-approche .section__foot .section__middle-side .position-6 {
        margin-top: 97px; }
    .section-approche .section__foot .content__box {
      max-width: 500px;
      margin-bottom: 130px; }
      .section-approche .section__foot .content__box .box__title p {
        margin: 0;
        font-size: 12px;
        font-weight: 200; }
      .section-approche .section__foot .content__box .box__title h3 {
        text-transform: uppercase;
        letter-spacing: 2.4px;
        margin-bottom: 30px;
        margin-top: 10px;
        font-size: 24px; }
      .section-approche .section__foot .content__box .box__paragraphe p {
        font-size: 16px;
        font-weight: 300;
        line-height: 25px; }

@media (max-width: 750px) {
  .section-approche .section__head {
    text-align: center; }
  .section-approche .section__foot .section__right-side {
    margin-top: -91px; }
  .section-approche .section__foot .section__middle-side:after {
    background: transparent;
    width: 5px;
    margin-left: 5px;
    margin-top: -750px;
    margin-right: 50px;
    left: 23px;
    position: relative; }
  .section-approche .section__foot .section__middle-side img {
    display: none; } }

/* ------------------------------------------------------------ *\
	Section Equipe
\* ------------------------------------------------------------ */
.section-equipe .section__head {
  margin-top: 80px;
  margin-bottom: 85px; }
  .section-equipe .section__head .section__paragraphe {
    font-size: 24px;
    font-weight: bold;
    max-width: 700px;
    margin-top: 30px; }

.section-equipe .section__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: left; }
  .section-equipe .section__body .equipe__membre {
    margin-bottom: 60px;
    width: 263px;
    padding: 0 10px 0 0; }
    .section-equipe .section__body .equipe__membre:hover {
      filter: contrast(0.7); }
    .section-equipe .section__body .equipe__membre .membre__head .membre_image {
      display: inline-block;
      display: flex;
      justify-content: center;
      padding-top: 20px; }
      .section-equipe .section__body .equipe__membre .membre__head .membre_image img {
        filter: grayscale(80%); }
    .section-equipe .section__body .equipe__membre .membre__foot {
      text-align: center; }
      .section-equipe .section__body .equipe__membre .membre__foot .membre__name {
        margin-top: 30px;
        margin-bottom: 11px; }
        .section-equipe .section__body .equipe__membre .membre__foot .membre__name h3 {
          font-size: 22px;
          text-transform: uppercase;
          font-weight: bold; }
      .section-equipe .section__body .equipe__membre .membre__foot .membre__function h4 {
        font-size: 16px;
        font-weight: 400; }

.section-equipe .section__foot {
  margin-bottom: 100px; }

@media (max-width: 750px) {
  .section-equipe .section__head {
    text-align: center; }
  .section-equipe .section__body {
    justify-content: center; }
    .section-equipe .section__body .equipe__membre {
      width: 100%; }
  .section-equipe .section__foot .banner {
    text-align: center; } }

/* ------------------------------------------------------------ *\
	Section-Partners
\* ------------------------------------------------------------ */
.section-partners {
  background-color: #353535;
  padding: 83px 0 98px 0;
  color: white; }
  .section-partners .section__head {
    margin-bottom: 90px; }
    .section-partners .section__head .section__title {
      margin-bottom: 30px; }
  .section-partners .section__body .partner-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }
    .section-partners .section__body .partner-section img {
      width: 150px; }
    @media (max-width: 750px) {
      .section-partners .section__body .partner-section .blog {
        padding: 20px 0 40px 0; } }

@media (max-width: 750px) {
  .section-partners .section__body .partner-section {
    justify-content: space-around; } }

/* ------------------------------------------------------------ *\
	Section-Single-member
\* ------------------------------------------------------------ */
.section-single-member .section__head {
  background: #B9D2D2;
  height: auto;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: 132px; }
  .section-single-member .section__head .section__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
  .section-single-member .section__head .section__content {
    padding-top: 40px; }
    .section-single-member .section__head .section__content h2 {
      margin-bottom: 20px; }
    .section-single-member .section__head .section__content h3 {
      font-size: 24px;
      margin-bottom: 50px; }
    .section-single-member .section__head .section__content .section__social-network img {
      width: 20px;
      margin-right: 32px; }
    .section-single-member .section__head .section__content .section__social-network img:hover {
      filter: contrast(0.1); }
  .section-single-member .section__head .section__thumbnail {
    width: auto;
    margin-top: 20px; }

.section-single-member .section__body {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px; }
  .section-single-member .section__body .section__abstract p {
    font-size: 20px;
    margin-top: 100px;
    margin-bottom: 50px; }
  .section-single-member .section__body .section__faq .section__faq-item {
    margin-bottom: 50px; }
    .section-single-member .section__body .section__faq .section__faq-item h4 {
      font-size: 24px;
      margin-bottom: 20px; }
    .section-single-member .section__body .section__faq .section__faq-item p {
      font-size: 16px; }
  .section-single-member .section__body .section__next-before {
    display: flex;
    margin-top: 70px;
    justify-content: space-between;
    width: 100%; }
    .section-single-member .section__body .section__next-before .section__next-member {
      display: flex;
      justify-content: flex-end; }
    .section-single-member .section__body .section__next-before p {
      font-size: 12px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-top: 20px; }
      .section-single-member .section__body .section__next-before p a:hover {
        color: #9a9a9a; }

@media (max-width: 750px) {
  .section-single-member .section__head .section__inner {
    flex-wrap: wrap; } }

/* ------------------------------------------------------------ *\
	Section-teamwave
\* ------------------------------------------------------------ */
.section-teamwave {
  margin-top: 92px;
  background: #353535; }
  .section-teamwave--bg-white {
    background: white; }
  .section-teamwave .section__head {
    margin-bottom: 47px; }
    .section-teamwave .section__head .section__title {
      padding-top: 40px; }
      .section-teamwave .section__head .section__title h2 {
        margin-bottom: 30px; }
      .section-teamwave .section__head .section__title p {
        font-size: 24px;
        font-weight: bold; }
  .section-teamwave .section__body .masonry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between; }
    .section-teamwave .section__body .masonry .article {
      color: white;
      background: white;
      width: 356px;
      margin-bottom: 16px; }
      .section-teamwave .section__body .masonry .article--bg-black {
        background: #353535;
        color: #353535; }
    .section-teamwave .section__body .masonry .box1 {
      height: 495px; }
      .section-teamwave .section__body .masonry .box1--margin-top {
        margin-top: -272px; }
    .section-teamwave .section__body .masonry .box2 {
      height: 331px; }
      .section-teamwave .section__body .masonry .box2--margin-top {
        margin-top: -130px; }
    .section-teamwave .section__body .masonry .box3 {
      height: 421px; }
      .section-teamwave .section__body .masonry .box3--margin-top {
        margin-top: -142px; }
    .section-teamwave .section__body .masonry .box4 {
      height: 281px; }
      .section-teamwave .section__body .masonry .box4--margin-top {
        margin-top: -198px; }
    .section-teamwave .section__body .masonry .box5 {
      height: 575px; }
      .section-teamwave .section__body .masonry .box5--margin-top {
        margin-top: -164px; }
      .section-teamwave .section__body .masonry .box5--margin-top2 {
        margin-top: -220px; }
      .section-teamwave .section__body .masonry .box5--margin-top3 {
        margin-top: -272px; }
    .section-teamwave .section__body .masonry .box6 {
      height: 213px; }
      .section-teamwave .section__body .masonry .box6--margin-top {
        margin-top: -74px; }
  .section-teamwave .section__foot {
    padding-bottom: 100px;
    margin-top: 50px; }

@media (max-width: 750px) {
  .section-teamwave .section__head .section__title {
    text-align: center; }
  .section-teamwave .section__body .masonry {
    justify-content: center; }
  .section-teamwave .section__foot {
    display: flex;
    justify-content: center; } }

/* ------------------------------------------------------------ *\
	Section-Actualité-Single
\* ------------------------------------------------------------ */
.section-single-actualite {
  margin-top: 80px; }
  .section-single-actualite .section__head .section__top {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    justify-content: space-between; }
    .section-single-actualite .section__head .section__top .section__title h2 {
      width: 640px; }
  .section-single-actualite .section__head .section__bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px; }
    .section-single-actualite .section__head .section__bottom .section__information {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .section-single-actualite .section__head .section__bottom .section__information .actualite__date {
        margin-right: 26px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0px; }
      .section-single-actualite .section__head .section__bottom .section__information p {
        letter-spacing: 1.3px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0px;
        margin-right: 26px; }
    .section-single-actualite .section__head .section__bottom .section__nav.navigation img {
      width: 12px;
      height: 12px;
      margin-left: 21px; }
  .section-single-actualite .section__body {
    padding-bottom: 100px; }
    .section-single-actualite .section__body .section__banner-thumbnail {
      height: 333px;
      background-position: center !important; }
    .section-single-actualite .section__body .section__navigation .section__url {
      margin-top: 50px; }
    .section-single-actualite .section__body .section__navigation .section__next-before {
      display: flex;
      justify-content: space-between;
      margin-top: 136px; }
      .section-single-actualite .section__body .section__navigation .section__next-before h3 {
        max-width: 300px;
        margin-top: 12px; }
      .section-single-actualite .section__body .section__navigation .section__next-before p {
        margin-top: 20px; }
      .section-single-actualite .section__body .section__navigation .section__next-before .section__next-project {
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
        .section-single-actualite .section__body .section__navigation .section__next-before .section__next-project h3 {
          text-align: right; }
    .section-single-actualite .section__body .section__content-lite {
      display: flex;
      justify-content: center; }
      .section-single-actualite .section__body .section__content-lite .section__right-side-lite {
        flex: 0 914px;
        background: white;
        margin-top: -170px;
        padding: 69px 93px 0px 93px; }
        .section-single-actualite .section__body .section__content-lite .section__right-side-lite .section__navigation .section__next-before .section__next-project {
          text-align: right; }
          .section-single-actualite .section__body .section__content-lite .section__right-side-lite .section__navigation .section__next-before .section__next-project p {
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 20px;
            margin-bottom: 12px; }
        .section-single-actualite .section__body .section__content-lite .section__right-side-lite .section__navigation .section__next-before .section__before-project p {
          font-size: 12px;
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 1.2px;
          margin-top: 20px;
          margin-bottom: 12px; }
    .section-single-actualite .section__body .section__content {
      display: flex;
      justify-content: space-between; }
      .section-single-actualite .section__body .section__content .section__left-side {
        margin-top: 40px; }
        .section-single-actualite .section__body .section__content .section__left-side-before::before {
          content: "test";
          color: #B9D2D2;
          background: #B9D2D2;
          position: absolute;
          margin-top: 49px;
          width: 30%;
          height: 110px;
          left: 0; }
        .section-single-actualite .section__body .section__content .section__left-side .actualite__author {
          font-size: 13px;
          letter-spacing: 1.3px;
          text-transform: uppercase;
          font-weight: 600;
          margin-bottom: 5px; }
          .section-single-actualite .section__body .section__content .section__left-side .actualite__author span {
            font-weight: bold; }
        .section-single-actualite .section__body .section__content .section__left-side .actualite_function {
          font-size: 13px;
          letter-spacing: 1.3px;
          text-transform: uppercase;
          font-weight: 600; }
        .section-single-actualite .section__body .section__content .section__left-side img {
          height: 159px;
          filter: grayscale(1);
          margin-left: -20px;
          margin-bottom: 20px; }
      .section-single-actualite .section__body .section__content .section__right-side {
        flex: 0 757px;
        background: white;
        margin-top: -170px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__contenu ul {
          list-style: disc;
          padding-left: 40px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__contenu li {
          margin-bottom: 15px;
          font-size: 16px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__head_article {
          font-weight: bold;
          font-size: 24px;
          text-align: center;
          padding: 96px 93px 38px 93px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__next-before {
          margin-top: 100px;
          display: flex;
          justify-content: space-between; }
          .section-single-actualite .section__body .section__content .section__right-side .section__next-before .section__next-project {
            display: flex;
            flex-direction: column;
            align-items: flex-end; }
          .section-single-actualite .section__body .section__content .section__right-side .section__next-before p {
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 20px;
            margin-bottom: 12px; }
        .section-single-actualite .section__body .section__content .section__right-side .actualite__big-title-top {
          font-size: 24px;
          text-align: center;
          padding-top: 69px;
          padding-left: 93px;
          line-height: 35px;
          padding-right: 93px;
          padding-bottom: 38px; }
        .section-single-actualite .section__body .section__content .section__right-side .actualite__big-title-bottom {
          font-size: 24px;
          text-align: center;
          padding-top: 40px;
          padding-left: 93px;
          line-height: 35px;
          padding-right: 93px;
          padding-bottom: 38px; }
        .section-single-actualite .section__body .section__content .section__right-side p {
          font-size: 16px;
          line-height: 25px; }

@media (max-width: 750px) {
  .section-single-actualite .section__head .section__top {
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 50px !important;
    justify-content: center; }
    .section-single-actualite .section__head .section__top .section__title h2 {
      font-size: 45px;
      width: 100%; }
    .section-single-actualite .section__head .section__top .section__nav {
      margin-top: 20px; }
      .section-single-actualite .section__head .section__top .section__nav ul {
        flex-wrap: wrap;
        line-height: 34px;
        margin-left: -24px; }
  .section-single-actualite .section__head .section__bottom {
    flex-direction: column;
    margin-bottom: 50px; }
    .section-single-actualite .section__head .section__bottom .section__information {
      align-self: center; }
    .section-single-actualite .section__head .section__bottom .section__nav {
      align-self: center; }
  .section-single-actualite .section__body .section__content-lite .section__right-side-lite {
    padding: 10px 30px; }
  .section-single-actualite .section__body .section__content {
    flex-wrap: wrap; }
    .section-single-actualite .section__body .section__content .section__left-side {
      margin-top: -159px; }
    .section-single-actualite .section__body .section__content .section__right-side {
      margin-top: 50px; }
      .section-single-actualite .section__body .section__content .section__right-side .section__head_article {
        padding: 0px; }
      .section-single-actualite .section__body .section__content .section__right-side .section__contenu {
        text-align: left; }
        .section-single-actualite .section__body .section__content .section__right-side .section__contenu p {
          text-align: left; }
        .section-single-actualite .section__body .section__content .section__right-side .section__contenu ul li {
          margin-bottom: 40px; }
      .section-single-actualite .section__body .section__content .section__right-side .actualite__big-title-top {
        padding-top: 0px;
        padding-right: 30px;
        padding-left: 30px; }
      .section-single-actualite .section__body .section__content .section__right-side .actualite__big-title-bottom {
        padding-top: 20PX;
        padding-right: 30px;
        padding-left: 30px; }
      .section-single-actualite .section__body .section__content .section__right-side .section__next-before {
        margin-top: 50px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__next-before .section__before-project p {
          font-size: 10px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__next-before .section__before-project h3 {
          font-size: 20px; }
        .section-single-actualite .section__body .section__content .section__right-side .section__next-before .section__next-project p {
          font-size: 10px;
          text-align: left !important; }
        .section-single-actualite .section__body .section__content .section__right-side .section__next-before .section__next-project h3 {
          font-size: 20px; }
    .section-single-actualite .section__body .section__content .section__left-side-before::before {
      height: 0px;
      content: ''; }
  .section-single-actualite .section__bottom {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px; }
    .section-single-actualite .section__bottom .section__information {
      margin-bottom: 15px; } }

/* ------------------------------------------------------------ *\
	Section-Actualité-Single
\* ------------------------------------------------------------ */
.section-other-actualite {
  background-color: #353535; }
  .section-other-actualite .section__head {
    margin-bottom: 44px;
    padding-top: 80px; }
  .section-other-actualite .section__body {
    margin-bottom: 50px; }
    .section-other-actualite .section__body .section__articles {
      display: flex;
      justify-content: space-between; }
      .section-other-actualite .section__body .section__articles .section__article {
        max-width: 356px; }
        .section-other-actualite .section__body .section__articles .section__article .article__image:hover {
          filter: contrast(0.5); }
        .section-other-actualite .section__body .section__articles .section__article .section__information {
          display: flex;
          margin-top: 20px;
          justify-content: space-between; }
          .section-other-actualite .section__body .section__articles .section__article .section__information .article__title {
            max-width: 213px; }
            .section-other-actualite .section__body .section__articles .section__article .section__information .article__title:hover {
              filter: contrast(0.5); }
            .section-other-actualite .section__body .section__articles .section__article .section__information .article__title p {
              font-size: 16px;
              font-weight: bold; }
          .section-other-actualite .section__body .section__articles .section__article .section__information .article__see-more:hover {
            filter: contrast(0.5); }
          .section-other-actualite .section__body .section__articles .section__article .section__information .article__see-more p {
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-right: 45px; }
  .section-other-actualite .section__foot {
    padding-bottom: 100px; }

@media (max-width: 750px) {
  .section-other-actualite .section__head .section__title {
    text-align: center; }
  .section-other-actualite .section__body .section__articles {
    flex-wrap: wrap;
    justify-content: center; }
    .section-other-actualite .section__body .section__articles .section__article {
      width: 100%;
      margin-bottom: 40px;
      max-width: none; }
      .section-other-actualite .section__body .section__articles .section__article .section__information {
        margin-top: 10px; }
        .section-other-actualite .section__body .section__articles .section__article .section__information .article__title {
          max-width: 380px; }
      .section-other-actualite .section__body .section__articles .section__article .article__image img {
        width: 100%; }
  .section-other-actualite .section__foot .section__paragraphe {
    display: flex;
    justify-content: center; } }

/* ------------------------------------------------------------ *\
	Section-message
\* ------------------------------------------------------------ */
.section-message {
  padding: 82px 0 92px 0; }
  .section-message .section__head .section__paragraphe p {
    font-size: 24px;
    font-weight: bold;
    width: 660px;
    margin-top: 31px;
    margin-bottom: 100px; }
  .section-message .section__head .section__content {
    display: flex; }
    .section-message .section__head .section__content .section__left-side {
      margin-right: 120px; }
      .section-message .section__head .section__content .section__left-side p {
        font-size: 22px;
        font-weight: bold; }
    .section-message .section__head .section__content .section__right-side .yellow-hover li:hover {
      color: #EAB83E; }
    .section-message .section__head .section__content .section__right-side .yellow-hover li:hover:after {
      content: url(./img/arrow-down-black.svg);
      position: absolute;
      margin-left: 14px; }
    .section-message .section__head .section__content .section__right-side li {
      font-size: 32px;
      font-weight: 500;
      cursor: pointer; }

@media (max-width: 750px) {
  .section-message {
    padding: 82px 0 0 0; }
    .section-message .section__head {
      text-align: center;
      display: flex;
      flex-direction: column; }
      .section-message .section__head .section__paragraphe p {
        width: auto; }
      .section-message .section__head .section__content {
        display: flex;
        flex-direction: column; }
        .section-message .section__head .section__content .section__left-side {
          margin-right: 0px;
          margin-bottom: 40px; } }

/* ------------------------------------------------------------ *\
	Section-message
\* ------------------------------------------------------------ */
.section-adresss {
  background-color: #353535; }
  .section-adresss .section__head {
    padding: 82px 0 92px 0; }
    .section-adresss .section__head .section__paragraphe {
      margin-bottom: 100px; }
      .section-adresss .section__head .section__paragraphe p {
        font-size: 24px;
        font-weight: bold;
        margin-top: 31px;
        width: 630px;
        line-height: 35px; }
    .section-adresss .section__head .section__content {
      display: flex;
      align-items: flex-end; }
      .section-adresss .section__head .section__content .section__left-side, .section-adresss .section__head .section__content .section__middle-side, .section-adresss .section__head .section__content .section__right-side {
        margin-right: 53px; }
      .section-adresss .section__head .section__content .adress__title {
        margin-bottom: 31px; }
        .section-adresss .section__head .section__content .adress__title p {
          font-size: 12px;
          letter-spacing: 1.2px; }
        .section-adresss .section__head .section__content .adress__title h3 {
          color: #E58082;
          font-size: 24px;
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 2.4px; }
      .section-adresss .section__head .section__content .adress__adress {
        font-size: 16px;
        line-height: 25px; }
        .section-adresss .section__head .section__content .adress__adress p {
          margin: 0; }

@media (max-width: 750px) {
  .section-adresss .section__head .section__title {
    text-align: center; }
  .section-adresss .section__head .section__paragraphe {
    text-align: center; }
    .section-adresss .section__head .section__paragraphe p {
      width: auto; }
  .section-adresss .section__head .section__content {
    flex-wrap: wrap;
    justify-content: space-around; }
    .section-adresss .section__head .section__content .section__right-side {
      margin-top: 40px; } }

/* ------------------------------------------------------------ *\
	Section-anchor-red
\* ------------------------------------------------------------ */
.section-anchor-ref {
  margin-top: 40px; }
  .section-anchor-ref .section__content .section__anchor-menu {
    margin-top: 25px;
    display: flex; }
    .section-anchor-ref .section__content .section__anchor-menu ul {
      display: flex;
      flex-wrap: wrap; }
    .section-anchor-ref .section__content .section__anchor-menu a {
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-size: 14px;
      margin-right: 26px;
      font-weight: 500; }
    .section-anchor-ref .section__content .section__anchor-menu .cool-link {
      display: inline-block;
      color: #000;
      text-decoration: none; }
      .section-anchor-ref .section__content .section__anchor-menu .cool-link::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #000;
        transition: width .3s; }
      .section-anchor-ref .section__content .section__anchor-menu .cool-link::after:hover {
        width: 100%; }
    .section-anchor-ref .section__content .section__anchor-menu .cool-link:hover::after {
      width: 100%; }

@media (max-width: 750px) {
  .section-anchor-ref {
    display: none; }
    .section-anchor-ref .section__content {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .section-anchor-ref .section__content .section__anchor-menu ul {
        justify-content: center; }
        .section-anchor-ref .section__content .section__anchor-menu ul a {
          font-size: 14px;
          margin: 0px; }
        .section-anchor-ref .section__content .section__anchor-menu ul li:not(:first-child) {
          margin-left: 26px; }
          .section-anchor-ref .section__content .section__anchor-menu ul li:not(:first-child) a {
            font-size: 14px;
            margin: 0px; } }

/* ------------------------------------------------------------ *\
	Article-hero
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Title
\* ------------------------------------------------------------ */
.title {
  display: inline-block;
  padding-bottom: 6px;
  letter-spacing: 1.6px;
  font-size: 16px; }
  .title--uppercase {
    text-transform: uppercase; }
  .title--margin {
    margin-top: 30px; }
  .title--border-black {
    border-bottom: 2px solid #353535; }
  .title--border-white {
    border-bottom: 2px solid #FFFFFF; }
  .title--border-grey {
    border-bottom: 2px solid #9A9A9A; }
  .title--small {
    font-size: 12px !important; }
  .title--letter-spacing {
    letter-spacing: 1.2px !important; }
  .title--color-grey {
    color: #9A9A9A; }
  .title--weight-600 {
    font-weight: 600; }

.cool-link {
  display: inline-block;
  text-decoration: none; }
  .cool-link--black::after {
    background: #000 !important; }
  .cool-link--white::after {
    background: #FFFFFF !important; }
  .cool-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
    margin-top: 5px; }
  .cool-link::after:hover {
    width: 100%; }

.cool-link:hover::after {
  width: 100%; }

@media (max-width: 750px) {
  .title.before-arrow-right-white::before, .title.before-arrow-right-black::before {
    float: right;
    margin-left: 20px;
    position: relative;
    margin-top: 0px; } }

/* ------------------------------------------------------------ *\
	Services
\* ------------------------------------------------------------ */
.service .service__title {
  display: inline-block; }
  .service .service__title span {
    font-size: 12px; }

.service .service__content {
  display: flex;
  flex-wrap: wrap; }

.service .service__texte-content {
  display: flex;
  flex-direction: column;
  margin-left: 35px; }

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

.service .service__liste {
  font-size: 16px;
  line-height: 25px;
  margin-top: 30px; }
  .service .service__liste ul {
    list-style: disc;
    list-style-position: inside; }

@media (max-width: 750px) {
  .service {
    padding: 50px 0px; }
    .service .service__image {
      display: flex; }
    .service .service__texte-content {
      min-width: 250px;
      margin-left: 75px; }
    .service .service__content {
      justify-content: center;
      flex-direction: column;
      align-items: center; }
      .service .service__content .service__texte-content {
        margin-left: 0px !important;
        align-items: center; }
        .service .service__content .service__texte-content .service__title {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top: 30px; }
        .service .service__content .service__texte-content .service__liste ul {
          display: flex;
          flex-direction: column;
          align-items: center;
          list-style: none; } }

.services-section .services__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; }

/* ------------------------------------------------------------ *\
	Services
\* ------------------------------------------------------------ */
.temoignage .temoignage__message {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center; }
  .temoignage .temoignage__message p {
    font-size: 52px;
    font-weight: bold;
    min-width: 100px;
    margin: 0px; }
  .temoignage .temoignage__message span {
    font-size: 79px;
    color: #EAB83E; }
  .temoignage .temoignage__message span:first-child {
    margin-top: -85px; }
  .temoignage .temoignage__message span:last-child {
    margin-bottom: -85px; }

.temoignage .temoignage__auteur {
  border-bottom: 2px solid #FFFFFF;
  font-size: 14px;
  color: white;
  letter-spacing: 1.4px;
  line-height: 20px;
  display: inline-block;
  align-self: flex-end; }
  .temoignage .temoignage__auteur p {
    margin: 0; }

.temoignage .temoignage__suivant {
  font-size: 12px;
  text-align: right;
  text-transform: uppercase;
  line-height: 19px; }
  .temoignage .temoignage__suivant p {
    margin: 0; }
  .temoignage .temoignage__suivant img {
    margin-bottom: 20px; }

.temoignages-section {
  color: #FFFFFF; }
  .temoignages-section .bx-wrapper {
    background: #353535;
    box-shadow: none;
    border: none; }

/* ------------------------------------------------------------ *\
	Blogs
\* ------------------------------------------------------------ */
.blog {
  max-width: 356px; }
  .blog .blog__image img {
    width: 356px; }
    .blog .blog__image img:hover {
      filter: contrast(0.5); }
  .blog .blog__title {
    display: flex;
    margin-top: 16px;
    justify-content: space-between;
    align-items: center;
    font-weight: bold; }
    .blog .blog__title h3 {
      font-size: 16px;
      margin: 0;
      letter-spacing: 0px;
      max-width: 250px; }
      .blog .blog__title h3:hover {
        filter: contrast(0.5); }
    .blog .blog__title p {
      font-size: 12px;
      text-transform: uppercase;
      margin-right: 40px; }
      .blog .blog__title p:hover {
        filter: contrast(0.5); }
    .blog .blog__title span {
      position: relative;
      bottom: 1px; }
    .blog .blog__title img {
      width: 10px;
      margin-left: 14px; }

@media (max-width: 750px) {
  .blog {
    padding: 20px 0 40px 0;
    width: 100%;
    max-width: 100%; }
    .blog .blog__image img {
      width: 100%; }
    .blog .blog__title h3 {
      max-width: 280px; } }

.blogs-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; }

/* ------------------------------------------------------------ *\
	Blogs Archive
\* ------------------------------------------------------------ */
.blogs-archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .blogs-archive .blog-archive {
    width: 542px;
    margin-bottom: 50px; }
    .blogs-archive .blog-archive .blog__head {
      margin-bottom: 22px; }
      .blogs-archive .blog-archive .blog__head img:hover {
        filter: contrast(0.5); }
    .blogs-archive .blog-archive .blog__foot {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-top: -10px; }
      .blogs-archive .blog-archive .blog__foot .blog__left-side {
        max-width: 350px;
        line-height: 10px; }
        .blogs-archive .blog-archive .blog__foot .blog__left-side p {
          text-transform: uppercase;
          letter-spacing: 1.3px;
          font-size: 13px;
          font-weight: 600;
          margin-bottom: 9px;
          display: inline-block; }
        .blogs-archive .blog-archive .blog__foot .blog__left-side h4 {
          font-size: 22px;
          color: #E58082;
          margin-top: 10px; }
          .blogs-archive .blog-archive .blog__foot .blog__left-side h4:hover {
            filter: contrast(0.5); }
      .blogs-archive .blog-archive .blog__foot .blog__right-side p, .blogs-archive .blog-archive .blog__foot .blog__right-side .blog__date {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        font-weight: 500; }
      .blogs-archive .blog-archive .blog__foot .blog__right-side p {
        font-weight: bold; }
      .blogs-archive .blog-archive .blog__foot .blog__right-side .after-small-arrow-right-black:hover {
        filter: contrast(0.5); }

@media (max-width: 750px) {
  .blogs-archive .blog-archive .blog__foot {
    flex-wrap: wrap; }
    .blogs-archive .blog-archive .blog__foot .blog__right-side {
      margin-top: 20px; }
    .blogs-archive .blog-archive .blog__foot .blog__left-side {
      line-height: 20px; }
      .blogs-archive .blog-archive .blog__foot .blog__left-side p {
        margin-bottom: 0px; }
      .blogs-archive .blog-archive .blog__foot .blog__left-side h4 {
        margin-top: 10px; } }

/* ------------------------------------------------------------ *\
	clients
\* ------------------------------------------------------------ */
.client {
  height: auto;
  width: 263px;
  margin: 20px 0;
  text-align: center; }
  .client a img {
    width: 50%; }

@media (max-width: 750px) {
  .blog {
    padding: 20px 0 40px 0; } }

.clients-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

/* ------------------------------------------------------------ *\
    clients-Arcbives
\* ------------------------------------------------------------ */
.clients_archive {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .clients_archive .client_archive {
    width: 170px;
    margin: 0px;
    text-align: center; }
    .clients_archive .client_archive:hover {
      filter: contrast(0.1); }
    .clients_archive .client_archive a img {
      width: 70%; }

.clients_archive--informations p {
  letter-spacing: 0px;
  font-size: 16px; }

.clients_archive--informations span {
  font-size: 12px; }

.clients_archive--informations h2 {
  font-size: 24px;
  color: #B9D2D2;
  text-transform: uppercase;
  letter-spacing: 2.4px; }

@media (max-width: 750px) {
  .client {
    margin: 40px 0; } }

/* ------------------------------------------------------------ *\
    clients-Arcbives
\* ------------------------------------------------------------ */
.clients_archive_v2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 30px;
  align-items: center; }
  .clients_archive_v2 .client_archive_v2 {
    width: 170px; }
    .clients_archive_v2 .client_archive_v2 a img {
      width: 70%; }
      .clients_archive_v2 .client_archive_v2 a img:hover {
        filter: contrast(0.1); }

.clients_archive_v2--informations {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .clients_archive_v2--informations p {
    letter-spacing: 0px;
    font-size: 16px; }
  .clients_archive_v2--informations span {
    font-size: 12px; }
  .clients_archive_v2--informations h2 {
    font-size: 24px;
    color: #B9D2D2;
    text-transform: uppercase;
    letter-spacing: 2.4px; }
  .clients_archive_v2--informations .section__right-side ul li a {
    text-decoration: underline; }

@media (max-width: 750px) {
  .clients_archive_v2--informations {
    flex-wrap: wrap;
    display: flex;
    justify-content: center; }
    .clients_archive_v2--informations .section__left-side .clients_archive_v2 {
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 30px; }
      .clients_archive_v2--informations .section__left-side .clients_archive_v2 .client_archive_v2 {
        margin: 10px;
        width: 35%; }
    .clients_archive_v2--informations .section__right-side ul {
      list-style: none; }
      .clients_archive_v2--informations .section__right-side ul li {
        font-size: 12px; }
        .clients_archive_v2--informations .section__right-side ul li a {
          text-decoration: underline; } }

/* ------------------------------------------------------------ *\
	Projets
\* ------------------------------------------------------------ */
.projet .project__navigation_title {
  display: flex;
  justify-content: space-between; }
  .projet .project__navigation_title .project__navigtaion {
    max-width: 54px; }
    .projet .project__navigation_title .project__navigtaion a {
      font-size: 12px;
      text-align: right;
      display: flex;
      justify-content: flex-end; }

.projet .projet__title-vertical {
  display: flex; }
  .projet .projet__title-vertical .projet__small-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: right;
    align-self: flex-end; }
    .projet .projet__title-vertical .projet__small-title p {
      font-size: 13px;
      letter-spacing: 1.3px;
      font-weight: 500;
      text-transform: uppercase; }
  .projet .projet__title-vertical .projet__big-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: right;
    margin-left: 12px; }
    .projet .projet__title-vertical .projet__big-title p {
      font-size: 22px;
      font-weight: bold;
      letter-spacing: 0; }

.projet .projet__title-projet {
  margin-top: 22px; }
  .projet .projet__title-projet img {
    margin-right: 16px;
    max-width: 77px; }

/* ------------------------------------------------------------ *\
	Projets-Archives
\* ------------------------------------------------------------ */
.projets_archive {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; }
  .projets_archive .projet_archive.projet_archive--margin_up {
    margin-bottom: 100px; }
  .projets_archive .projet_archive.projet_archive--margin_down {
    margin-top: 90px;
    margin-bottom: 100px; }
  .projets_archive .projet_archive .projet_archive__image {
    background-size: cover !important;
    background-position: center !important;
    max-width: 450px;
    max-height: 550px;
    height: 550px;
    width: 450px; }
    .projets_archive .projet_archive .projet_archive__image:hover {
      filter: contrast(0.5); }
    .projets_archive .projet_archive .projet_archive__image.projet_archive__image--custom_size {
      max-width: 542px !important;
      max-height: 443px;
      height: 443px !important;
      width: 542px; }
  .projets_archive .projet_archive .projet_archive__information {
    max-width: 356px;
    width: 356px;
    padding: 25px 20px 27px 25px;
    background: #F6F6EF;
    letter-spacing: 0px;
    margin-top: -100px;
    z-index: 5;
    position: relative; }
    .projets_archive .projet_archive .projet_archive__information.projet_archive__information--float_right {
      float: right; }
    .projets_archive .projet_archive .projet_archive__information.projet_archive__information--float_left {
      float: left; }
    .projets_archive .projet_archive .projet_archive__information img {
      width: 100px; }
      .projets_archive .projet_archive .projet_archive__information img:hover {
        filter: contrast(0.5); }
    .projets_archive .projet_archive .projet_archive__information h4 {
      font-size: 13px;
      text-transform: uppercase;
      font-weight: 500;
      margin: 20px 0 0 0; }
    .projets_archive .projet_archive .projet_archive__information h3 {
      font-size: 20px;
      display: inline-block;
      margin-bottom: 0px; }
      .projets_archive .projet_archive .projet_archive__information h3:hover {
        filter: contrast(0.5); }
    .projets_archive .projet_archive .projet_archive__information p {
      font-size: 13px;
      margin-top: 17px;
      font-weight: 500; }

@media (max-width: 750px) {
  .projets_archive .projet_archive {
    margin: 0px !important;
    margin-bottom: 20px !important;
    width: 100%; }
    .projets_archive .projet_archive .projet_archive__information {
      width: 100%;
      display: flex;
      max-width: none;
      flex-direction: column;
      align-items: center; }
      .projets_archive .projet_archive .projet_archive__information h3 {
        text-align: center; }
    .projets_archive .projet_archive .projet_archive__image {
      width: 100% !important;
      max-height: 300px; }
    .projets_archive .projet_archive .projet_archive__image--custom_size {
      max-height: 300px !important; } }

/* ------------------------------------------------------------ *\
	Projets-LITE
\* ------------------------------------------------------------ */
.section-lite-projets .section__body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; }
  .section-lite-projets .section__body .projet_lite {
    padding: 10px 0px; }
    .section-lite-projets .section__body .projet_lite.projet_lite--margin_up {
      margin-top: -22px; }
    .section-lite-projets .section__body .projet_lite.projet_lite--margin_down {
      margin-top: 90px; }
    .section-lite-projets .section__body .projet_lite .projet_lite__image {
      max-width: 542px;
      max-height: 363px;
      height: 363px;
      width: 542px;
      background-size: cover !important;
      background-position: center !important; }
      .section-lite-projets .section__body .projet_lite .projet_lite__image:hover {
        filter: contrast(0.5); }
    .section-lite-projets .section__body .projet_lite .projet_lite__information {
      max-width: 356px;
      padding: 25px 113px 27px 25px;
      background: #F6F6EF;
      letter-spacing: 0px;
      margin-top: -100px;
      z-index: 5;
      position: relative; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information.projet_lite__information--float_right {
        float: right; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information.projet_lite__information--float_left {
        float: left; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information h4 {
        font-size: 16px;
        margin: 17px 0 10px 0; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information h3 {
        font-size: 22px; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information p {
        font-size: 16px; }
      .section-lite-projets .section__body .projet_lite .projet_lite__information img:hover {
        filter: contrast(0.5); }

@media (max-width: 750px) {
  .section-lite-projets .section__body .projet_lite {
    width: 100%; }
    .section-lite-projets .section__body .projet_lite .projet_lite__image {
      width: 100% !important; } }

/* ------------------------------------------------------------ *\
	Projets-Single
\* ------------------------------------------------------------ */
.projet_single .section__head .projet_single__image {
  background: url(./img/img-header.png);
  height: 370px;
  width: 100% !important; }

.projet_single .section__head .projet_single__url-archive {
  padding-bottom: 5px; }
  .projet_single .section__head .projet_single__url-archive a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600; }

.projet_single .section__head .projet_single__information {
  max-width: 356px;
  padding: 25px 20px 27px 25px;
  background: #F6F6EF;
  letter-spacing: 0px;
  margin-bottom: -100px; }
  .projet_single .section__head .projet_single__information h4 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 20px 0 10px 0; }
  .projet_single .section__head .projet_single__information h3 {
    font-size: 22px; }
  .projet_single .section__head .projet_single__information p {
    font-size: 13px;
    margin-top: 17px;
    font-weight: 500; }

.projet_single .section__body .section__title h4 {
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 16px; }

.projet_single .section__presentation_img img {
  height: 450px;
  width: 542px; }

.projet_single .section__presentation_img .projet_single__image--start-end {
  align-self: flex-end; }

.projet_single .section__foot .section__title h4 {
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 16px; }

.projet_single .section__next-before p {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 20px; }

.projet_single .section__next-before h3 {
  font-size: 22px; }

@media (max-width: 750px) {
  .projet_single .section__head .section__name {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; }
    .projet_single .section__head .section__name .projet_single__title {
      text-align: center; }
  .projet_single .section__head .section__information .projet_single__information {
    max-width: none; } }

.post-1700 p {
  font-size: 16px; }

.post-1700 ul {
  list-style: disc;
  padding-left: 40px; }

.post-1700 li {
  margin-bottom: 15px;
  font-size: 16px; }
