@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

button, input {
  outline: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

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

/* BREAKPOINTS */
/* MEDIA QUERIES */
/*
$lt-smartphone: only screen and (max-device-width: 576px);
*/
.is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 576px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .only-xl {
    display: block;
  }
}

/*
.form-panel{
  @include form-field;
  .form-label{
    line-height: 40px !important;
    padding-right: 40px;
  }
  .form-input{
    .form-input-wrapper{
      position: relative;

      i{
        position: absolute;
        bottom: 100%;
        right: 10px;
        color: #555;
        font-size: 12px;
        line-height: 40px;
        border: 0;
      }

    }
  }

  .filter-panel{
    $header-height: 60px;

    position: fixed;
    top: 100%;
    left: 50%;
    //bottom: 0;
    max-height: 600px;
    height: 80vh;
    width: 80vw;
    max-width: 600px;
    background: rgba(255,255,255,1);
    z-index: 20000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    flex-direction: column;
    justify-content: stretch;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    overflow: hidden;
    @include rem(font-size, 16px);

    .form-panel.active &{
      //display: block;
    }

    > *{
      padding: $gutter;
      position: relative;
    }

    header{
      padding: 0;
      border-bottom: 1px solid #eee;
      h6{
        text-transform: uppercase;
        @include rem(font-size, 14px);
        line-height: $header-height;
        padding-left: $gutter;
        @include animate;
      }

      .bt-close{
        @include animate;
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: 0;
        @include rem(font-size, 20px);
        line-height: $header-height;
        width: $header-height;
      }

      .bt-back{
        @include animate;
        position: absolute;
        top: 0;
        left: 0;
        background: none;
        border: 0;
        @include rem(font-size, 20px);
        line-height: $header-height;
        width: $header-height;
      }
    }

    footer{
      button{
        @extend %button;
      }
    }

    label{
      padding: $gutter / 4;
      display: block;
      &:hover{
        background: #eee;
      }
    }

    &[data-index="0"]{
      [data-index="0"]{
        left: 0%;
      }
      [data-index="1"]{
        left: 100%;
      }
      .bt-back{
        transform: translateX(-100%);
      }
      h6{
        transform: translateX(0px);
      }
    }

    &[data-index="1"]{
      [data-index="0"]{
        left: -100%;
      }
      [data-index="1"]{
        left: 0%;
      }
      .bt-back{
        transform: translateX(0%);
      }
      h6{
        transform: translateX($header-height/2);
      }
    }

    .wrapper-main{
      height: 100%;
      max-height: 100%;
      min-width: 100%;
      position: relative;
    }

    .wrapper{
      @include animate;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: auto;

      &[data-index="0"]{
        > div{
          > ul{
            display: none;
          }
        }
      }

      &[data-index="1"]{
        > div{
          > label{
            display: none;
          }
          > ul{
            display: block;
          }
        }
      }

      > div{
        label{
          font-weight: 300;
          padding: 0 $gutter*2;
          border-bottom: 1px solid #eee;
          position: relative;
          display: flex;
          align-items: center;
          min-height: 60px;
          i.color{
            display: inline-block;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 0.5em;
            transform: translateY(4px);
            border: 2px solid #fff;
            box-shadow: 0px 0px 2px #aaa;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            overflow: hidden;
          }
          figure{
            width: 80px;
            display: block;
            margin-right: 1em;
            img{
              width: 100%;
            }
          }
          span{
            display: block;
          }
          i.tick{
            opacity: 0.1;
            float: left;
            margin-right: 1em;
          }
          input{
            position: absolute;
            visibility: hidden;
            opacity: 0;

            &:checked ~ i{
              opacity: 1;
            }
            &:checked ~ span{
              font-weight: bold;
            }
          }
        }
        > label{
          font-weight: 600;
          .count{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 1em;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            font-size: 13px;
            font-style: normal;
            opacity: 1;

            &[rel="0"]{
              opacity: 0;
            }
          }
        }
        ul{
          @include clearlist;
          li{
            &.all{
              background: #f7f7f7;
              label{
                border-color: #aaa;
                i.tick{
                  position: relative;
                  &:after{
                    content:"";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translateY(-50%) translateX(-50%);
                    width: 24px;
                    height: 24px;
                    border: 1px solid #000;
                  }
                }
              }
            }
          }
          &.has-all{
            li{
              input ~ .tick{
                opacity: 1;
              }
            }
          }
        }
        &.active ul{
          display: block;
        }
      }
    }
  }
}
*/
/* The emerging W3C standard
   that is currently Firefox-only */
* {
  scrollbar-width: thin;
  scrollbar-color: #aaa #f2f2f2;
}

/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
}

*::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 20px;
  border: 3px solid #f2f2f2;
}

html {
  min-height: 100vh;
  font-size: 100%;
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 15px;
  }
}

body {
  min-height: 100vh;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 10000;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
  transform: translateY(-100%);
}

body.mobile-navigation-opened {
  overflow: hidden !important;
}

.navigation-opened body {
  overflow: hidden !important;
}

#skip-link {
  display: none;
}

#page {
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

#page #page-main {
  flex: 1;
}

#page-header {
  order: 2;
  /*
  @include lt-xs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  */
}

#navigation-container {
  position: relative;
}

.faq-contact-us {
  background: #f7f7f7;
  padding: 40px;
  text-align: center;
  margin: auto;
  margin-top: 20px;
}

.faq-contact-us h2 {
  font-size: 2rem;
}

.faq-contact-us p {
  margin-bottom: 2em;
}

.warning {
  background: #faebd2;
  border: 1px solid #e79719;
  padding: 10px;
  margin: 10px;
}

.warning em {
  font-weight: bold;
}

#page-main {
  transition: all 200ms ease-in-out;
  order: 5;
}

#page-footer {
  transition: all 200ms ease-in-out;
  order: 10;
}

.wrapper {
  margin: auto;
}

.weebox-shares {
  position: fixed;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  z-index: 500;
}

@media only screen and (max-width: 576px) {
  .weebox-shares {
    top: 80px;
    transform: none;
    left: 0;
  }
}

.weebox-shares .open {
  padding-left: 10px;
  transform: translateX(0);
  display: none;
  margin-bottom: 4px;
}

.weebox-shares .open i {
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
}

.weebox-shares .open:hover i {
  background: rgba(0, 0, 0, 0.9);
}

.weebox-shares .open:hover ~ ul {
  display: block !important;
}

@media only screen and (max-width: 576px) {
  .weebox-shares .open {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
  .weebox-shares ul {
    display: none;
  }
}

.weebox-shares ul li {
  position: relative;
  line-height: 50px;
  text-align: center;
  color: #fff;
  padding-left: 10px;
  transition: all 180ms ease-in-out;
  transform: translateX(0);
  cursor: pointer;
}

.weebox-shares ul li.share-facebook {
  background: #39569c;
}

.weebox-shares ul li.share-instagram {
  background: #3f729b;
}

.weebox-shares ul li.share-twitter {
  background: #00acee;
}

.weebox-shares ul li.share-linkedin {
  background: #0e76a8;
}

.weebox-shares ul li.share-facebook a {
  background: #39569c;
}

.weebox-shares ul li.share-instagram a {
  background: #3f729b;
}

.weebox-shares ul li.share-twitter a {
  background: #00acee;
}

.weebox-shares ul li.share-linkedin a {
  background: #0e76a8;
}

@media only screen and (max-width: 576px) {
  .weebox-shares ul li {
    background: none !important;
    margin-bottom: 2px;
  }
}

.weebox-shares ul li:hover {
  transform: translateX(10px);
}

.weebox-shares ul li a {
  overflow: hidden;
  width: 50px;
  height: 50px;
  font-size: 16.6666666667px;
  color: inherit;
  display: block;
}

@media only screen and (max-width: 576px) {
  .weebox-shares ul li a {
    border-radius: 50%;
  }
}

.navigation-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  opacity: 0;
  z-index: 10000;
  background: #000;
}

#page-breadcrumbs ol, #page-breadcrumbs ul, #page-breadcrumbs li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#page-breadcrumbs ol:after, #page-breadcrumbs ul:after {
  content: "";
  display: table;
  clear: both;
}

#page-breadcrumbs ol li, #page-breadcrumbs ul li {
  float: left;
  position: relative;
  margin-right: 20px;
}

#page-breadcrumbs ol li span, #page-breadcrumbs ul li span {
  display: block;
  line-height: 40px;
  font-weight: 400;
}

#page-breadcrumbs ol li:before, #page-breadcrumbs ul li:before {
  position: absolute;
  top: 0;
  right: -20px;
  content: ">";
  width: 20px;
  text-align: center;
  font-size: 0.6em;
  line-height: 40px;
}

#page-breadcrumbs ol li:last-child:before, #page-breadcrumbs ul li:last-child:before {
  display: none;
}

#page-breadcrumbs ol li:last-child span, #page-breadcrumbs ul li:last-child span {
  font-weight: 300;
}

.msg {
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
}

.msg .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  margin: 20px;
  z-index: 10;
  cursor: pointer;
}

.msg .close:hover {
  background: #fff;
}

.msg strong {
  color: #000;
  display: block;
  margin-bottom: 20px !important;
}

.msg strong:after {
  display: none;
}

.msg.success {
  background: #e3f4c5;
}

.msg.success strong {
  color: #7eb321;
}

.msg.error {
  background: #fde9ee;
}

#page-footer .newsletter .field {
  display: flex;
}

#page-footer .newsletter .field .field-wrap {
  flex: 1;
}

#page-footer .newsletter .field input[type="text"] {
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #111;
  width: 100%;
  text-indent: 0.5em;
}

#page-footer .newsletter .field button {
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid #111;
  color: #fff;
  line-height: 40px;
}

#page-footer .footer-copyright {
  background: #333;
  color: rgba(255, 255, 255, 0.3);
}

#page-footer .footer-copyright > .wrapper {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

#page-footer .footer-copyright > .wrapper > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-copyright > .wrapper > div {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

#page-footer .footer-copyright .maven {
  text-transform: uppercase;
  font-size: 9px;
  font-size: 0.5625rem;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-copyright .maven {
    float: none;
    width: auto;
    text-align: center;
    margin-top: 20px;
  }
}

#page-footer .footer-copyright .maven span {
  line-height: 1em;
  display: inline-block;
}

#page-footer .footer-copyright .maven svg {
  height: 18px;
  margin-left: 4px;
  transform: translateY(1px);
}

#page-footer .footer-copyright .maven path {
  fill: #ccc;
}

#page-footer .footer-copyright .maven a {
  display: inline-block;
  text-decoration: none;
}

#page-footer .footer-copyright .maven a:hover path {
  fill: #d60057;
}

#page-footer .footer-info {
  background: #444;
  color: #fff;
}

#page-footer .footer-info > .wrapper > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info > .wrapper > div > * {
    text-align: center;
    justify-content: center;
    margin-bottom: 2em;
  }
  #page-footer .footer-info > .wrapper > div > *:last-child {
    margin-bottom: 0;
  }
}

#page-footer .footer-info > .wrapper > div > *:nth-child(1) {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info > .wrapper > div > *:nth-child(1) {
    width: 100% !important;
  }
}

#page-footer .footer-info > .wrapper > div > *:nth-child(2) {
  width: calc(25% - 20px);
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info > .wrapper > div > *:nth-child(2) {
    width: 100% !important;
  }
}

#page-footer .footer-info > .wrapper > div > *:nth-child(3) {
  width: calc(25% - 20px);
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info > .wrapper > div > *:nth-child(3) {
    width: 100% !important;
  }
}

#page-footer ul li {
  margin-bottom: 0.5em;
}

#page-footer ul.shares {
  display: flex;
}

@media only screen and (max-width: 768px) {
  #page-footer ul.shares {
    justify-content: center;
  }
}

#page-footer ul.shares li {
  margin-right: 1em;
}

#page-footer ul.shares li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
}

#page-footer h6 {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
  font-weight: 600;
  font-size: 1.2em;
}

@media only screen and (max-width: 768px) {
  #page-footer h6 {
    margin-bottom: 1em;
  }
}

#page-footer h6:first-of-type {
  margin-top: 0;
}

#header-notice {
  background: #333;
  position: relative;
  z-index: 100;
}

#header-notice > .wrapper {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  #header-notice > .wrapper {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 14px;
  }
}

#header-notice > .wrapper p {
  margin: 0;
  font-size: inherit;
}

#header-notice > .wrapper i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.page-blank {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+100 */
  background: #ffffff;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #ffffff 0%, #eeeeee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color-main', endColorstr='$color-black',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.page-blank #page {
  display: flex;
  align-items: center;
  text-align: center;
  color: #1d1d1b;
}

.page-blank #page h1 {
  font-weight: 800;
  font-size: 10vw !important;
  margin-bottom: 0.5em;
}

.page-blank #page .button {
  margin-top: 2em;
  padding: 0 2em;
  line-height: 60px;
  color: #fff;
  border-color: #1d1d1b;
  background: #1d1d1b;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*================ Social share buttons ================*/
.social-sharing {
  font-weight: 400;
  float: left;
  margin-left: -5px;
  /*================ Large Buttons ================*/
}

.social-sharing * {
  box-sizing: border-box;
}

.social-sharing a {
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  margin: 0 5px 0px 0;
  height: 22px;
  line-height: 22px;
  text-decoration: none;
  font-weight: normal;
}

.social-sharing a:hover {
  color: #fff;
}

.social-sharing span {
  display: inline-block;
  vertical-align: top;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
}

.social-sharing .icon, .social-sharing .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .social-sharing figure:before, .social-sharing .blog .article-listing li figure:before, .blog .article-listing li .social-sharing figure:before, .social-sharing .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .social-sharing figure:before {
  padding: 0 5px 0 10px;
}

.social-sharing .icon:before, .social-sharing .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .social-sharing figure:before, .social-sharing .blog .article-listing li figure:before, .blog .article-listing li .social-sharing figure:before, .social-sharing .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .social-sharing figure:before {
  line-height: 22px;
}

.social-sharing.is-large a {
  height: 44px;
  line-height: 44px;
}

.social-sharing.is-large a span {
  height: 44px;
  line-height: 44px;
  font-size: 18px;
}

.social-sharing.is-large a .icon, .social-sharing.is-large a .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .social-sharing.is-large a figure:before, .social-sharing.is-large a .blog .article-listing li figure:before, .blog .article-listing li .social-sharing.is-large a figure:before, .social-sharing.is-large a .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .social-sharing.is-large a figure:before {
  padding: 0 10px 0 18px;
}

.social-sharing.is-large a .icon:before, .social-sharing.is-large a .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .social-sharing.is-large a figure:before, .social-sharing.is-large a .blog .article-listing li figure:before, .blog .article-listing li .social-sharing.is-large a figure:before, .social-sharing.is-large a .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .social-sharing.is-large a figure:before {
  line-height: 44px;
}

.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px;
}

.is-large .share-title {
  padding-right: 16px;
}

.share-facebook {
  background-color: #3b5998;
}

.share-facebook:hover {
  background-color: #2d4373;
}

.share-twitter {
  background-color: #00aced;
}

.share-twitter:hover {
  background-color: #0087ba;
}

.share-pinterest {
  background-color: #cb2027;
}

.share-pinterest:hover {
  background-color: #9f191f;
}

.share-fancy {
  background-color: #4999dc;
}

.share-fancy:hover {
  background-color: #2780cb;
}

.share-google {
  background-color: #dd4b39;
}

.share-google:hover {
  background-color: #c23321;
}

.share-reddit {
  background-color: #5f99cf;
}

.share-reddit:hover {
  background-color: #3a80c1;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-linkedin:hover {
  background-color: #005582;
}

.share-skype {
  background-color: #00aff0;
}

.share-skype:hover {
  background-color: #008abd;
}

.share-count {
  position: relative;
  background-color: #fff;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  border-radius: 0 2px 2px 0;
  border: 1px solid #ececec;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.share-count.is-loaded {
  opacity: 1;
}

.share-count:before,
.share-count:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid;
}

.share-count:before {
  left: -6px;
  border-right-color: #ececec;
}

.share-count:after {
  left: -5px;
  border-right-color: #fff;
}

a:hover .share-count {
  background-color: whitesmoke;
}

a:hover .share-count:after {
  border-right-color: whitesmoke;
}

.is-large .share-count {
  font-size: 18px;
  padding: 0 14px;
}

/*================ Clean Buttons ================*/
.social-sharing.is-clean a {
  background-color: #fff;
  border: 1px solid #ececec;
  color: #333;
  height: 30px;
  line-height: 30px;
}

.social-sharing.is-clean a span {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}

.social-sharing.is-clean a:hover {
  background-color: #ececec;
}

.social-sharing.is-clean a:hover .share-count {
  background-color: #fff;
}

.social-sharing.is-clean a:hover .share-count:after {
  border-right-color: #fff;
}

.social-sharing.is-clean a .share-title {
  font-weight: normal;
}

.social-sharing.is-clean .share-count {
  top: -1px;
}

.social-sharing.is-clean .icon-facebook {
  color: #3b5998;
}

.social-sharing.is-clean .icon-twitter {
  color: #00aced;
}

.social-sharing.is-clean .icon-pinterest {
  color: #cb2027;
}

.social-sharing.is-clean .icon-fancy {
  color: #4999dc;
}

.social-sharing.is-clean .icon-google {
  color: #dd4b39;
}

.social-sharing.is-clean .icon-reddit {
  color: #5f99cf;
}

.social-sharing.is-clean .icon-linkedin {
  color: #0077b5;
}

.social-sharing.is-clean .icon-skype {
  color: #00aff0;
}

.modular-columns > .wrapper ul {
  display: flex;
}

.modular-columns > .wrapper ul figure img {
  display: block;
  width: 100%;
}

.modular-columns > .wrapper ul figure + * {
  margin-top: 1em;
}

.modular-columns > .wrapper ul.cols-2 {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
}

.modular-columns > .wrapper ul.cols-2 > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-columns > .wrapper ul.cols-2 > * {
  flex-grow: inherit !important;
  flex: inherit !important;
  width: calc((100% / 2) - 0.75vw);
  width: calc((100% / 2) - 0.75vw);
  /*
    &:nth-child(2n) {
      //margin: auto;
    }

    @include lt-xs{
      @include rem(width, calc(100%) );
    }
    */
}

.modular-columns > .wrapper ul.cols-2 > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-columns > .wrapper ul.cols-2 > *:nth-child(2n) {
  margin-right: 0;
}

.modular-columns > .wrapper ul.cols-3 {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
}

.modular-columns > .wrapper ul.cols-3 > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-columns > .wrapper ul.cols-3 > * {
  flex: inherit !important;
  flex-grow: inherit !important;
  width: calc((100% / 3) - 1vw);
  width: calc((100% / 3) - 1vw);
  /*
    &:nth-child(3n) {
      //margin-right: 0;
    }

    @include lt-s{
      @include rem(width, calc((100% / 2) - 0.75vw) );
      margin-right: $g;

      &:nth-child(2n) {
        //margin-right: 0;
      }
    }
    @include lt-xs{
      @include rem(width, calc(100%) );
      margin: auto;
    }*/
}

.modular-columns > .wrapper ul.cols-3 > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-columns > .wrapper ul.cols-3 > *:nth-child(3n) {
  margin-right: 0;
}

.modular-columns > .wrapper ul.cols-4 {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
}

.modular-columns > .wrapper ul.cols-4 > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-columns > .wrapper ul.cols-4 > * {
  flex: inherit !important;
  flex-grow: inherit !important;
  width: calc((100% / 4) - 1.125vw);
  width: calc((100% / 4) - 1.125vw);
  /*
    &:nth-child(4n) {
      //margin-right: 0;
    }

    @include lt-s{
      @include rem(width, calc((100% / 2) - 0.75vw) );
      margin-right: $g;

      &:nth-child(2n) {
        //margin-right: 0;
      }
    }
    @include lt-xs{
      @include rem(width, calc(100%) );
    }*/
}

.modular-columns > .wrapper ul.cols-4 > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-columns > .wrapper ul.cols-4 > *:nth-child(4n) {
  margin-right: 0;
}

.modular-columns > .wrapper ul.cols-6 {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
}

.modular-columns > .wrapper ul.cols-6 > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-columns > .wrapper ul.cols-6 > * {
  flex: inherit;
  flex-grow: inherit;
  width: calc((100% / 6) - 1.25vw);
  width: calc((100% / 6) - 1.25vw);
  /*
    &:nth-child(6n) {
      //margin-right: 0;
    }

    @include lt-m{
      @include rem(width, calc((100% / 3) - 1vw) );
      margin-right: $g;

      &:nth-child(2n) {
        //margin-right: 0;
      }
    }

    @include lt-s{
      @include rem(width, calc((100% / 2) - 0.75vw) );
      margin-right: $g;

      &:nth-child(2n) {
        margin-right: 0;
      }
    }
    @include lt-xs{
      @include rem(width, calc(100%) );
    }
    */
}

.modular-columns > .wrapper ul.cols-6 > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-columns > .wrapper ul.cols-6 > *:nth-child(6n) {
  margin-right: 0;
}

.modular-columns > .wrapper img {
  max-width: 100%;
}

.modular-carrousel > .wrapper {
  padding: 0;
}

.modular-carrousel .swiper-main {
  position: relative;
}

.modular-carrousel .swiper-slide {
  margin: 0 !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  display: flex;
  /*
    &:before{
      content:"";
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      bottom: 0;
      background: #fff;
      z-index: -1;
    }
    */
}

.modular-carrousel .swiper-slide .background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -5;
  transform: translateX(-50%);
  background-size: cover;
  opacity: 1;
}

.modular-carrousel .swiper-slide > .swiper-slide-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.modular-carrousel .swiper-slide .content {
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  z-index: 10;
  color: #fff;
}

.modular-carrousel .swiper-slide img {
  width: 100%;
}

.modular-carrousel.full > .wrapper {
  padding: 0px !important;
  margin: 0px !important;
  max-width: 100% !important;
  width: 100% !important;
}

.modular-carrousel .swiper-button-next,
.modular-carrousel .swiper-button-prev {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

@font-face {
  font-family: "icon";
  src: url("../fonts/icons/icon.eot");
  src: url("../fonts/icons/icon.eot?#iefix") format("eot"), url("../fonts/icons/icon.woff2") format("woff2"), url("../fonts/icons/icon.woff") format("woff"), url("../fonts/icons/icon.ttf") format("truetype"), url("../fonts/icons/icon.svg#icon") format("svg");
}

.icon:before, .modular-consultation > .wrapper > ul > li figure:before, .blog .article-listing li figure:before, .modular-blog .article-listing li figure:before {
  font-family: "icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
  text-decoration: none;
  text-transform: none;
}

.icon-arrow-down:before, #navigation .navigation .languages:after {
  content: "\E001";
}

.icon-arrow-left:before {
  content: "\E002";
}

.icon-arrow-right:before {
  content: "\E003";
}

.icon-arrow-scroll:before {
  content: "\E004";
}

.icon-arrow-up:before {
  content: "\E005";
}

.icon-arrow:before {
  content: "\E006";
}

.icon-badge:before {
  content: "\E007";
}

.icon-bag:before {
  content: "\E008";
}

.icon-calendar:before {
  content: "\E009";
}

.icon-chat-circle-exclamation:before {
  content: "\E00A";
}

.icon-chat-circle-group:before {
  content: "\E00B";
}

.icon-chat-circle-information:before {
  content: "\E00C";
}

.icon-chat-circle-question:before {
  content: "\E00D";
}

.icon-chat-circle:before {
  content: "\E00E";
}

.icon-chat-square-exclamation:before {
  content: "\E00F";
}

.icon-chat-square-group:before {
  content: "\E010";
}

.icon-chat-square-information:before {
  content: "\E011";
}

.icon-chat-square-question:before {
  content: "\E012";
}

.icon-chat-square:before {
  content: "\E013";
}

.icon-check-circle:before {
  content: "\E014";
}

.icon-clock:before {
  content: "\E015";
}

.icon-close:before {
  content: "\E016";
}

.icon-cog:before {
  content: "\E017";
}

.icon-company:before {
  content: "\E018";
}

.icon-coupon:before {
  content: "\E019";
}

.icon-crate:before {
  content: "\E01A";
}

.icon-credit-card:before {
  content: "\E01B";
}

.icon-delete:before {
  content: "\E01C";
}

.icon-download:before {
  content: "\E01D";
}

.icon-dropbox:before {
  content: "\E01E";
}

.icon-earth:before {
  content: "\E01F";
}

.icon-eco:before {
  content: "\E020";
}

.icon-email-check:before {
  content: "\E021";
}

.icon-email-forward:before {
  content: "\E022";
}

.icon-email-read:before {
  content: "\E023";
}

.icon-email:before {
  content: "\E024";
}

.icon-expand-circle-plus:before {
  content: "\E025";
}

.icon-expand-plus:before {
  content: "\E026";
}

.icon-expand:before {
  content: "\E027";
}

.icon-facebook-fill:before {
  content: "\E028";
}

.icon-facebook:before {
  content: "\E029";
}

.icon-file-add:before {
  content: "\E02A";
}

.icon-file-edit:before {
  content: "\E02B";
}

.icon-files:before {
  content: "\E02C";
}

.icon-filter:before {
  content: "\E02D";
}

.icon-folder:before {
  content: "\E02E";
}

.icon-graph-pie:before {
  content: "\E02F";
}

.icon-group:before {
  content: "\E030";
}

.icon-heart:before {
  content: "\E031";
}

.icon-home:before {
  content: "\E032";
}

.icon-instagram-fill:before {
  content: "\E033";
}

.icon-instagram:before {
  content: "\E034";
}

.icon-keys:before {
  content: "\E035";
}

.icon-layers:before {
  content: "\E036";
}

.icon-like:before {
  content: "\E037";
}

.icon-linkedin-fill:before {
  content: "\E038";
}

.icon-linkedin:before {
  content: "\E039";
}

.icon-list:before {
  content: "\E03A";
}

.icon-location-direction:before {
  content: "\E03B";
}

.icon-location-pin:before {
  content: "\E03C";
}

.icon-location:before {
  content: "\E03D";
}

.icon-lock-open:before {
  content: "\E03E";
}

.icon-lock:before {
  content: "\E03F";
}

.icon-logout:before {
  content: "\E040";
}

.icon-money:before {
  content: "\E041";
}

.icon-navigation:before {
  content: "\E042";
}

.icon-notification:before {
  content: "\E043";
}

.icon-paypal:before {
  content: "\E044";
}

.icon-pencil:before {
  content: "\E045";
}

.icon-person-add:before {
  content: "\E046";
}

.icon-person:before {
  content: "\E047";
}

.icon-phone:before {
  content: "\E048";
}

.icon-picture:before {
  content: "\E049";
}

.icon-pinterest-fill:before {
  content: "\E04A";
}

.icon-plus:before, .modular-consultation > .wrapper > ul > li figure:before, .blog .article-listing li figure:before, .modular-blog .article-listing li figure:before {
  content: "\E04B";
}

.icon-refresh:before {
  content: "\E04C";
}

.icon-search:before {
  content: "\E04D";
}

.icon-share:before {
  content: "\E04E";
}

.icon-shopping-bag:before {
  content: "\E04F";
}

.icon-shopping-basket:before {
  content: "\E050";
}

.icon-shopping-cart:before {
  content: "\E051";
}

.icon-smiley-smile:before {
  content: "\E052";
}

.icon-star-fill:before {
  content: "\E053";
}

.icon-star:before {
  content: "\E054";
}

.icon-stock-in:before {
  content: "\E055";
}

.icon-stock-inprogress:before {
  content: "\E056";
}

.icon-tags:before {
  content: "\E057";
}

.icon-thumbnail:before {
  content: "\E058";
}

.icon-tick:before {
  content: "\E059";
}

.icon-truck-delivery-time:before {
  content: "\E05A";
}

.icon-truck:before {
  content: "\E05B";
}

.icon-twitter-fill:before {
  content: "\E05C";
}

.icon-twitter:before {
  content: "\E05D";
}

.icon-user:before {
  content: "\E05E";
}

.icon-video:before {
  content: "\E05F";
}

.icon-voucher:before {
  content: "\E060";
}

.icon-whatsapp-fill:before {
  content: "\E061";
}

.icon-whatsapp:before {
  content: "\E062";
}

.icon-youtube-fill:before {
  content: "\E063";
}

.icon-youtube:before {
  content: "\E064";
}

.icon-alpx-arrow:before {
  content: "\E065";
}

.icon-alpx-bag:before {
  content: "\E066";
}

.icon-alpx-tick:before {
  content: "\E067";
}

.icon-check:before {
  content: "\E068";
}

.icon-download-file:before {
  content: "\E069";
}

.icon-mail-fill:before {
  content: "\E06A";
}

.icon-open-file:before {
  content: "\E06B";
}

.icon-phone-fill:before {
  content: "\E06C";
}

.icon-sent:before {
  content: "\E06D";
}

.icon-time:before {
  content: "\E06E";
}

#navigation {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
  outline: 0px;
}

#navigation .navigation {
  color: #1d1d1b;
  background: rgba(255, 255, 255, 0);
  transition: background .3s ease-in;
}

#navigation .navigation > .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#navigation .navigation .navigation-container > div {
  position: relative;
  font-size: 16px;
  padding: 14px 0;
  transition: all 100ms ease-in-out;
}

#navigation .navigation .navigation-container .navigation-top {
  transform: translateY(0);
  opacity: 1;
  transition: all 100ms ease-in-out;
  font-size: 14px;
}

#navigation .navigation.centered > .wrapper {
  flex-direction: column;
  align-items: center;
}

.navigation-minified #navigation .navigation.centered > .wrapper {
  flex-direction: row;
}

#navigation .navigation ul {
  display: flex;
}

#navigation .navigation ul li {
  line-height: 1em;
  text-align: center;
  position: relative;
}

#navigation .navigation ul li span {
  display: block;
  padding: 0 14px;
  white-space: nowrap;
}

#navigation .navigation .navigation-mobile {
  z-index: 2000;
  cursor: pointer;
  display: none;
  margin-left: auto;
}

.navigation-minified #navigation .navigation .navigation-mobile {
  display: block;
}

#navigation .navigation .navigation-mobile ul {
  display: flex;
}

#navigation .navigation .navigation-mobile ul li {
  margin-left: 2px;
}

#navigation .navigation .navigation-mobile ul li > * {
  position: relative;
}

#navigation .navigation .navigation-mobile .navigation-menu {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
}

#navigation .navigation .navigation-mobile .navigation-menu span {
  display: block;
  position: relative;
  width: 24px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#navigation .navigation .navigation-mobile .navigation-menu i {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  transition: all 100ms ease-in-out;
}

#navigation .navigation .navigation-mobile .navigation-menu i:nth-child(1) {
  top: 0;
}

#navigation .navigation .navigation-mobile .navigation-menu i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

#navigation .navigation .navigation-mobile .navigation-menu i:nth-child(3) {
  bottom: 1px;
}

.navigation-opened #navigation .navigation .navigation-mobile .navigation-menu i {
  background: #000;
}

.navigation-opened #navigation .navigation .navigation-mobile .navigation-menu i:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.navigation-opened #navigation .navigation .navigation-mobile .navigation-menu i:nth-child(2) {
  opacity: 0;
}

.navigation-opened #navigation .navigation .navigation-mobile .navigation-menu i:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}

#navigation .navigation .navigation-languages {
  order: 3;
}

#navigation .navigation .navigation-shortcuts {
  order: 10;
}

#navigation .navigation .navigation-shortcuts ul li {
  margin-left: 1em;
}

#navigation .navigation .navigation-shortcuts ul li a {
  line-height: 50px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  text-align: center;
  display: block;
}

#navigation .navigation .navigation-shortcuts ul li a .bullet {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-25%) translateX(25%);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

#navigation .navigation .navigation-shortcuts ul li a i {
  line-height: 48px;
  font-size: 20px;
}

#navigation .navigation .navigation-logo {
  display: flex;
  align-items: center;
}

#navigation .navigation .navigation-logo a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 100ms ease-in-out;
  height: 90px;
  margin: 2vh 0;
}

.navigation-minified #navigation .navigation .navigation-logo a {
  height: 50px !important;
}

.navigation-minified #navigation .navigation .navigation-logo a .black {
  display: block;
}

.navigation-minified #navigation .navigation .navigation-logo a .white {
  display: none;
}

#navigation .navigation .navigation-logo a h1, #navigation .navigation .navigation-logo a strong {
  position: absolute;
  transform: translateY(-110%);
  top: 0;
  left: 0;
  white-space: nowrap;
}

#navigation .navigation .navigation-logo a img {
  height: 100%;
  width: auto;
  display: block;
}

#navigation .navigation .navigation-logo a .black {
  display: none;
}

#navigation .navigation .navigation-logo a .white {
  display: block;
}

#navigation .navigation.centered .navigation-logo {
  padding-top: 10px;
}

#navigation .navigation.centered .navigation-logo a {
  height: 60px;
  margin: auto;
}

#navigation .navigation .navigation-container {
  margin-left: auto;
}

#navigation .navigation .navigation-container > div {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

#navigation .navigation .navigation-container .navigation-top {
  position: absolute;
  top: 14px;
  right: 14px;
  order: 1;
}

#navigation .navigation .navigation-container .navigation-top nav {
  display: flex;
}

#navigation .navigation .navigation-container .navigation-top ul li {
  margin-left: 2em;
  position: relative;
}

#navigation .navigation .navigation-container .navigation-top ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1em;
  height: 50%;
  width: 1px;
  background: #aaa;
}

#navigation .navigation .navigation-container .navigation-top ul li:first-child:after {
  display: none;
}

#navigation .navigation .navigation-container .navigation-top ul li a span {
  line-height: 20px;
  padding: 0;
}

#navigation .navigation .navigation-container .navigation-info {
  display: none;
}

#navigation .navigation .navigation-container .navigation-main {
  order: 2;
  position: relative;
}

#navigation .navigation .navigation-container .navigation-main ul li:hover span:after {
  width: calc(100% + .5em);
  background: rgba(255, 255, 255, 0.4);
}

#navigation .navigation .navigation-container .navigation-main ul li.active span:after {
  width: calc(100% + .5em);
  background: white;
}

#navigation .navigation .navigation-container .navigation-main ul li a span {
  line-height: 60px;
  position: relative;
}

#navigation .navigation .navigation-container .navigation-main ul li a span:after {
  content: '';
  width: 0;
  height: 2em;
  background: rgba(255, 255, 255, 0);
  border-radius: 100px;
  position: absolute;
  left: -.25em;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all .3s ease-in;
}

#navigation .navigation.centered .navigation-container {
  margin: auto;
}

#navigation .navigation .weebox-cart-navigation {
  line-height: 80px;
  height: 80px;
}

#navigation .navigation .languages {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}

#navigation .navigation .languages > span {
  display: block;
  line-height: 60px;
  min-width: 50px;
  padding: 0 20px 0 10px;
}

#navigation .navigation .languages:after {
  font-family: "icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  font-size: 10px;
  position: absolute;
  top: 0;
  line-height: 60px;
  height: 60px;
  right: 0;
  width: 20px;
  text-align: center;
}

#navigation .navigation .languages ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  visibility: hidden;
  display: block;
  opacity: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 200ms ease-in-out;
}

#navigation .navigation .languages ul > li {
  display: block;
}

#navigation .navigation .languages ul > li span {
  line-height: 2.4em;
}

#navigation .navigation .languages ul > li.active {
  display: none;
}

#navigation .navigation .languages ul > li:hover {
  background: black;
  color: #fff;
}

#navigation .navigation .languages ul > li:hover:after {
  display: none;
}

#navigation .navigation .languages:hover {
  background: rgba(0, 0, 0, 0.05);
}

#navigation .navigation .languages:hover ul {
  visibility: visible;
  opacity: 1;
}

#navigation.navigation-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#navigation.navigation-fixed .navigation {
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #1d1d1b;
}

#navigation.navigation-fixed .navigation-logo {
  display: flex;
  align-items: center;
}

#navigation.navigation-fixed .navigation-logo a {
  height: 55px;
  margin: inherit;
}

#navigation.navigation-fixed .navigation-logo .black {
  display: block;
}

#navigation.navigation-fixed .navigation-logo .white {
  display: none;
}

#navigation.navigation-fixed .navigation-container > div {
  padding: 7px 0;
  font-size: 16px;
}

#navigation.navigation-fixed .navigation-container .navigation-top {
  transform: translateY(-100%);
  opacity: 0;
}

#navigation.navigation-fixed .navigation-container li span:after {
  background: #fdcd40 !important;
}

#navigation.navigation-fixed .navigation-container li:hover span:after {
  background: rgba(253, 205, 64, 0.4) !important;
}

.navigation-minified #navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.navigation-minified #navigation .navigation {
  background: #fff;
  color: #1d1d1b !important;
}

.navigation-minified #navigation .navigation > .wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.navigation-minified #navigation .navigation .weebox-cart-navigation {
  line-height: 60px;
  height: 60px;
}

.navigation-minified #navigation .navigation .navigation-logo {
  margin-left: 20px;
}

.navigation-minified #navigation .navigation .navigation-container {
  position: fixed;
  top: 60px;
  width: 100vw;
  height: calc(100vh - 60px);
  background: #fff;
  padding: 20px;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform-origin: 50% 50%;
  visibility: hidden;
}

.navigation-minified #navigation .navigation .navigation-top {
  margin-top: auto;
}

.navigation-minified #navigation .navigation .navigation-top .weebox-cart-navigation {
  display: none;
}

.navigation-minified #navigation .navigation .navigation-main {
  width: 100%;
}

.navigation-minified #navigation .navigation .navigation-main:before {
  top: 0;
  left: -20px;
  right: 0;
  width: 8px;
  height: 100%;
  z-index: 1;
}

.navigation-minified #navigation .navigation .navigation-main ul {
  flex-direction: column;
}

.navigation-minified #navigation .navigation .navigation-main ul li {
  text-align: left;
  font-size: 5vw;
  position: relative;
}

.navigation-minified #navigation .navigation .navigation-main ul li:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #f7f7f7;
  left: -20px;
  top: 0;
  z-index: -1;
}

.navigation-minified #navigation .navigation .navigation-main ul li span {
  line-height: 3em !important;
}

.navigation-minified #navigation .navigation .navigation-main ul li:hover:after {
  display: none;
}

.navigation-minified #navigation .navigation .navigation-main ul li:active {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(0.9);
}

.navigation-minified #navigation .languages {
  margin-top: 20px;
}

.navigation-minified #navigation .languages > span, .navigation-minified #navigation .languages:after {
  display: none;
}

.navigation-minified #navigation .languages ul {
  position: static;
  visibility: inherit;
  opacity: 1;
  display: flex;
}

.navigation-minified #navigation .languages ul li {
  font-size: 5vw;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 0.5em;
}

#navigation {
  font-weight: 500;
}

#navigation .navigation-container {
  margin-left: 6vw;
  flex: 1;
}

#navigation .navigation-container .navigation-main {
  text-transform: uppercase;
  font-size: .9em;
  width: 100%;
}

#navigation .navigation-container .navigation-main ul {
  justify-content: space-between;
  max-width: 80%;
  margin-left: auto;
}

#navigation .navigation-container .navigation-main ul li a span {
  line-height: 60px;
  white-space: nowrap;
}

html body, .form *:not(button):not(span) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.swiper-container .swiper-slide .testimonial-txt, .page-blank #page h1, #page-header .wrapper h1,
#page-header .wrapper h2, .contact-infos header h2, #page-footer .footer-info .third-column > div header h2, .modular-only-column.column-left-50 .highlight, .submenu-wrapper .submenu-title, .modular-menu .cols-2 > *:last-child h3, .date .day, .modular-text > .wrapper ul.cols-2 > li:first-child, .section-error i {
  font-weight: 400;
  font-family: 'DM Serif Display', serif;
}

#page-footer .footer-copyright > .wrapper, #page-footer .footer-info > .wrapper, #header-notice > .wrapper, .modular-columns > .wrapper, .modular-carrousel .swiper-slide, .modular-carrousel .swiper-slide .content, #navigation .navigation > .wrapper, section > .wrapper, #page-header .wrapper {
  margin: auto;
  max-width: calc(1200px - 20px);
  width: calc(100% - 20px);
}

@media only screen and (max-width: 576px) {
  #page-footer .footer-copyright > .wrapper, #page-footer .footer-info > .wrapper, #header-notice > .wrapper, .modular-columns > .wrapper, .modular-carrousel .swiper-slide, .modular-carrousel .swiper-slide .content, #navigation .navigation > .wrapper, section > .wrapper, #page-header .wrapper {
    max-width: calc(100% - 40px);
    width: auto;
  }
}

#page-footer .footer-copyright > .wrapper, #page-footer .footer-info > .wrapper, #header-notice > .wrapper, .modular-carrousel .swiper-slide, .modular-carrousel .swiper-slide .content, #navigation .navigation > .wrapper, section > .wrapper {
  padding: 50px;
}

@media only screen and (max-width: 1200px) {
  #page-footer .footer-copyright > .wrapper, #page-footer .footer-info > .wrapper, #header-notice > .wrapper, .modular-carrousel .swiper-slide, .modular-carrousel .swiper-slide .content, #navigation .navigation > .wrapper, section > .wrapper {
    padding: 6vh 6vw;
  }
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-copyright > .wrapper, #page-footer .footer-info > .wrapper, #header-notice > .wrapper, .modular-carrousel .swiper-slide, .modular-carrousel .swiper-slide .content, #navigation .navigation > .wrapper, section > .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.faq-contact-us a, .page-blank #page .button, .button, .btn-primary, .contact-bubble a, #page-header .wrapper a, .blog-item > .wrapper footer button, .btn-secondary, .modular-menu .cols-2 > *:last-child > ul > * a, .section-error a {
  display: inline-block;
  padding: 0 2em;
  line-height: 2.5em;
  background: #000;
  color: #fff;
  text-transform: uppercase;
}

.faq-contact-us a span, .page-blank #page .button span, .button span, .btn-primary span, .contact-bubble a span, #page-header .wrapper a span, .blog-item > .wrapper footer button span, .btn-secondary span, .modular-menu .cols-2 > *:last-child > ul > * a span, .section-error a span {
  display: block;
}

.page-blank #page h1, #page-header .wrapper h1,
#page-header .wrapper h2, .contact-infos header h2, #page-footer .footer-info .third-column > div header h2 {
  display: block;
}

.modular-only-column.column-left-50 > .wrapper > header, .modular-menu .cols-2 > *:first-child h3, [class^="modular-"] > .wrapper > header {
  position: relative;
  text-align: center;
}

.modular-only-column.column-left-50 > .wrapper > header:after, .modular-menu .cols-2 > *:first-child h3:after, [class^="modular-"] > .wrapper > header:after {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 1.5em);
}

@media only screen and (max-width: 768px) {
  .modular-only-column.column-left-50 > .wrapper > header:after, .modular-menu .cols-2 > *:first-child h3:after, [class^="modular-"] > .wrapper > header:after {
    transform: translate(-50%, 1em);
  }
}

.modular-only-column.column-left-50 > .wrapper > header, .modular-menu .cols-2 > *:first-child h3 {
  text-align: left;
}

.modular-only-column.column-left-50 > .wrapper > header:after, .modular-menu .cols-2 > *:first-child h3:after {
  left: 0;
  bottom: inherit;
  top: 50%;
  transform: translate(calc(-100% - 5px), 0);
  width: 5vw;
  max-width: 100px;
}

@media only screen and (max-width: 768px) {
  .modular-only-column.column-left-50 > .wrapper > header:after, .modular-menu .cols-2 > *:first-child h3:after {
    display: none;
  }
}

.modular-columns header, .modular-carrousel header {
  text-align: center;
  padding-bottom: 1em;
}

.modular-columns header h1, .modular-carrousel header h1, .modular-columns header h2, .modular-carrousel header h2, .modular-columns header h3, .modular-carrousel header h3 {
  margin-bottom: 0.25em;
}

#breadcrumbs {
  display: none;
}

#page-header {
  position: relative;
  overflow: hidden;
  border-left: 6.6666666667px solid #fff;
  border-right: 6.6666666667px solid #fff;
}

#page-header > .wrapper {
  position: relative;
  z-index: 10;
}

.page-home #page-header > .wrapper .content > strong {
  font-weight: 500;
  font-size: 1.4em;
}

.page-service-item #page-header .content p {
  display: none;
}

.page-tarifs #page-header .wave path {
  fill: #fdcd40;
}

.page-contact #page-header .wave path {
  fill: #f6f7fb;
}

#page-main {
  position: relative;
  z-index: 1;
}

#page-footer .footer-info {
  background: #1d1d1b;
}

#page-footer .footer-info > .wrapper {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

#page-footer .footer-info > .wrapper > div > *:nth-child(1) {
  width: auto;
}

#page-footer ul.shares li a {
  background: #fff;
  color: #1d1d1b;
  cursor: pointer;
  transition: 180ms ease-in-out all;
}

#page-footer ul.shares li a:hover {
  transform: scale(1.1);
  background: #fdcd40;
}

#page-footer .newsletter .field {
  justify-content: center;
}

#page-footer .newsletter .field .field-wrap {
  max-width: 300px;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 1em;
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: 1em;
}

h1:first-of-type, h2:first-of-type, h3:first-of-type {
  margin-top: 0em;
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
}

p {
  line-height: 1.8em !important;
  margin-bottom: 1em;
}

.shortcode-icon {
  display: block;
  font-size: 80px;
  width: 1em;
  height: 1em;
  line-height: 0.9em;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 0.5em;
  border: 2px solid #000;
}

.shortcode-icon i {
  font-size: 0.5em;
  margin: auto;
}

/* BURGER MENU */
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.swiper-container .swiper-wrapper {
  padding-bottom: 10px;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  background: none;
  width: 35px;
  height: 100%;
}

.swiper-container .swiper-button-prev > i,
.swiper-container .swiper-button-next > i {
  width: 35px;
  height: 35px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .9em;
  transform: translateY(-50%);
}

.swiper-container .swiper-button-prev > i:before,
.swiper-container .swiper-button-next > i:before {
  z-index: 2;
}

.swiper-container .swiper-button-prev > i:after,
.swiper-container .swiper-button-next > i:after {
  border-radius: 20px 0 20px 0 !important;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #fdcd40;
  width: 35px;
  height: 35px;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .swiper-container .swiper-button-prev {
    left: 0;
  }
  .swiper-container .swiper-button-next {
    right: 0;
  }
}

.swiper-container .swiper-slide {
  padding: 0 105px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .swiper-container .swiper-slide {
    padding: 0 52.5px;
  }
}

.swiper-container .swiper-slide .testimonial-txt {
  font-style: italic;
}

.swiper-container .swiper-slide .testimonial-txt p {
  font-size: 1.2em;
  line-height: 1.5em !important;
}

.swiper-container .swiper-slide .testimonial-signature {
  font-size: .9em;
}

.swiper-container .swiper-slide .testimonial-signature strong {
  font-weight: 800;
}

.modular-gallery .gallery-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[6];
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

@media only screen and (max-width: 768px) {
  .modular-gallery .gallery-container {
    -ms-grid-rows: (1fr)[8];
    grid-template-rows: repeat(8, 1fr);
  }
}

.modular-gallery .gallery-item-1 {
  grid-area: 1 / 1 / 3 / 2;
}

.modular-gallery .gallery-item-2 {
  grid-area: 3 / 1 / 5 / 2;
}

.modular-gallery .gallery-item-3 {
  grid-area: 5 / 1 / 7 / 2;
}

.modular-gallery .gallery-item-4 {
  grid-area: 1 / 2 / 4 / 3;
}

.modular-gallery .gallery-item-5 {
  grid-area: 4 / 2 / 7 / 4;
}

.modular-gallery .gallery-item-6 {
  grid-area: 4 / 4 / 7 / 5;
}

.modular-gallery .gallery-item-7 {
  grid-area: 1 / 3 / 4 / 5;
}

@media only screen and (max-width: 768px) {
  .modular-gallery .gallery-item-1 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .modular-gallery .gallery-item-2 {
    grid-area: 1 / 3 / 2 / 5;
  }
  .modular-gallery .gallery-item-3 {
    grid-area: 8 / 1 / 9 / 3;
  }
  .modular-gallery .gallery-item-4 {
    grid-area: 2 / 1 / 4 / 3;
  }
  .modular-gallery .gallery-item-5 {
    grid-area: 2 / 3 / 4 / 5;
  }
  .modular-gallery .gallery-item-6 {
    grid-area: 4 / 1 / 8 / 5;
  }
  .modular-gallery .gallery-item-7 {
    grid-area: 8 / 3 / 9 / 5;
  }
}

.modular-gallery [class^='gallery-item'] {
  background-size: cover;
  background-position: center;
}

.modular-gallery [class^='gallery-item'] > img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modular-gallery footer {
  text-align: center;
  margin: 2em;
}

.form *:not(button):not(span) {
  font-weight: 800;
  color: #1d1d1b;
}

.form .notice {
  text-align: center;
  padding: 2em;
  margin-bottom: 1em;
  display: none;
}

.form .notice p {
  margin-bottom: 0;
  font-weight: 500;
}

.form .notice p > strong {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

.form .notice .icon, .form .notice .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .form .notice figure:before, .form .notice .blog .article-listing li figure:before, .blog .article-listing li .form .notice figure:before, .form .notice .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .form .notice figure:before {
  display: inline-block;
  font-size: 1.8em;
  margin-bottom: .5em;
}

.form .notice.success {
  background: rgba(126, 179, 33, 0.2);
}

.form .notice.success .icon, .form .notice.success .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .form .notice.success figure:before, .form .notice.success .blog .article-listing li figure:before, .blog .article-listing li .form .notice.success figure:before, .form .notice.success .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .form .notice.success figure:before {
  color: #7eb321 !important;
}

.form .notice.error {
  background: rgba(231, 25, 83, 0.2);
}

.form .notice.error .icon, .form .notice.error .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .form .notice.error figure:before, .form .notice.error .blog .article-listing li figure:before, .blog .article-listing li .form .notice.error figure:before, .form .notice.error .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .form .notice.error figure:before {
  color: #e71953 !important;
}

.form *:not(button):not(span) {
  outline: none;
}

.form #ajax-form-fields {
  display: flex;
  flex-wrap: wrap;
}

.form .form-fields > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.form .form-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2em auto;
}

.form .form-buttons button {
  display: flex;
}

.rgpd-form-consent-checkbox .form-input-wrapper label span{
  font-weight: 400;
  font-size: 1em;
  margin-left: 1em;
}

.form input[type="email"],
.form input[type="number"],
.form input[type="text"],
.form textarea,
.form select {
  width: 100%;
  padding: 1em;
  border: 1px solid rgba(29, 29, 27, 0);
  border-bottom: 1px solid rgba(29, 29, 27, 0.8);
  transition: all .3s ease-in;
  border-radius: 20px 20px 0 0;
  background: none;
}

.form input::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  opacity: .8;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border: 1px solid #fdcd40;
  border-radius: 20px 0 20px 0;
}

.form select,
.form select:focus {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.8);
}

.form .selectdiv {
  width: 100%;
}

.form .selectdiv * {
  width: 100%;
}

.form .radiodiv {
  display: flex;
  flex-wrap: wrap;
  font-size: .9em;
}

.form .radiodiv label {
  margin: .5em;
  display: inline-block;
  min-width: calc(50% - 1em);
}

.form .radiodiv * {
  width: auto !important;
}

.form .radiodiv input ~ span {
  font-weight: 500;
}

.form .radiodiv [type='radio']:checked ~ span {
  font-weight: 800;
}

.form .form-field {
  width: 50%;
  padding: 0 1.5vw;
  margin-bottom: 3vh;
}

.form .form-field.form-error input,
.form .form-field.form-error textarea,
.form .form-field.form-error select {
  border-color: #e71953;
}

.form .form-field.form-recaptcha {
  padding: 0;
  width: auto !important;
  margin: 0 auto;
  margin-top: 1em;
}

.form .form-field.form-recaptcha.form-error {
  border: 1px solid red;
}

.form .form-field .form-radio .form-radio-wrapper {
  padding: .5em 0;
}

.form .form-field .form-label {
  display: none;
  font-weight: 800;
  padding: .5em 0;
}

.form .form-textarea {
  width: 100%;
}

.form .form-textarea textarea {
  width: 100%;
  min-height: 12vh;
}

.form .subject {
  border-bottom: 1px solid #fdcd40;
  margin-bottom: 2em;
}

.form .subject .form-field {
  width: 100%;
}

.form .subject .form-label {
  display: inline-block;
}

.form .positions .form-label {
  display: inline-block;
}

.form .appointment {
  border-top: solid 1px #fdcd40;
  margin-top: 2em;
  padding-top: 2em;
  width: 100%;
  display: flex;
}

.form .appointment > * {
  width: 50%;
}

.form .appointment > * * {
  width: 100%;
}

.inline-link, .modular-consultation > .wrapper > ul > li .card-link, .blog .article-listing li .card-link, .modular-blog .article-listing li .card-link, .contact-bubble .contact-bubble-content a:last-child, .modular-menu .cols-2 > *:last-child > ul > * a, .submenu-wrapper .submenu > ul li > a, .blog-item > .wrapper article > div a, .blog-item > .wrapper .cols-2 > li a, #page-footer .footer-info .first-column a, .faq-contact-us a, .page-blank #page .button, .button, .btn-primary, .contact-bubble a, #page-header .wrapper a, .blog-item > .wrapper footer button, .btn-secondary, .section-error a {
  text-transform: uppercase;
  font-size: .85em;
  cursor: pointer;
}

.inline-link, .modular-consultation > .wrapper > ul > li .card-link, .blog .article-listing li .card-link, .modular-blog .article-listing li .card-link, .contact-bubble .contact-bubble-content a:last-child, .modular-menu .cols-2 > *:last-child > ul > * a, .submenu-wrapper .submenu > ul li > a, .blog-item > .wrapper article > div a, .blog-item > .wrapper .cols-2 > li a, #page-footer .footer-info .first-column a {
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4em;
}

.inline-link {
  text-transform: none;
  letter-spacing: 0;
  color: #fdcd40;
  position: relative;
  display: inline-block !important;
  transition: all .3s ease-in;
}

.inline-link:after {
  bottom: .9em;
  left: 1.5vw;
  width: calc(100% - 6vw/2) !important;
  background: #fdcd40 !important;
  transition: all .3s ease-in;
}

.inline-link:hover {
  color: #1d1d1b;
}

.inline-link:hover:after {
  background: #1d1d1b !important;
}

.faq-contact-us a, .page-blank #page .button, .button, .btn-primary, .contact-bubble a, #page-header .wrapper a, .blog-item > .wrapper footer button, .btn-secondary, .modular-menu .cols-2 > *:last-child > ul > * a, .section-error a {
  background: #1d1d1b;
  padding: .6em 3em;
  margin-top: 2em;
  border-radius: 100px;
  transition: all .3s ease-in;
}

@media only screen and (max-width: 768px) {
  .faq-contact-us a, .page-blank #page .button, .button, .btn-primary, .contact-bubble a, #page-header .wrapper a, .blog-item > .wrapper footer button, .btn-secondary, .modular-menu .cols-2 > *:last-child > ul > * a, .section-error a {
    padding: .3em 2em;
    font-size: .8em;
  }
}

.faq-contact-us a:before, .page-blank #page .button:before, .button:before, .btn-primary:before, .contact-bubble a:before, #page-header .wrapper a:before, .blog-item > .wrapper footer button:before, .btn-secondary:before, .modular-menu .cols-2 > *:last-child > ul > * a:before, .section-error a:before {
  margin-right: 1em;
  display: inline-block;
}

.faq-contact-us a:hover, .page-blank #page .button:hover, .button:hover, .btn-primary:hover, .contact-bubble a:hover, #page-header .wrapper a:hover, .blog-item > .wrapper footer button:hover, .btn-secondary:hover, .modular-menu .cols-2 > *:last-child > ul > * a:hover, .section-error a:hover {
  background: rgba(29, 29, 27, 0.8);
}

.wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.wave path {
  fill: #fff;
}

.swiper-container .swiper-button-prev > i:after,
.swiper-container .swiper-button-next > i:after, .modular-only-column.column-left-50 .highlight, .modular-consultation > .wrapper > ul > li figure:before, .blog .article-listing li figure:before, .modular-blog .article-listing li figure:before, .contact-bubble .contact-bubble-content, .date, .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure {
  border-radius: 100px 0 100px 0;
}

@media only screen and (max-width: 768px) {
  .swiper-container .swiper-button-prev > i:after,
  .swiper-container .swiper-button-next > i:after, .modular-only-column.column-left-50 .highlight, .modular-consultation > .wrapper > ul > li figure:before, .blog .article-listing li figure:before, .modular-blog .article-listing li figure:before, .contact-bubble .contact-bubble-content, .date, .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure {
    border-radius: 100px 0 100px 0;
  }
}

.modular-only-column.column-left-50 .highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fdcd40;
  font-size: 1.5em;
  padding: 6vh 1em;
  min-height: 250px;
  width: 250px;
  color: #fff;
  line-height: 1.3em;
}

@media only screen and (max-width: 768px) {
  .modular-only-column.column-left-50 .highlight {
    min-height: 140px;
    padding: 3vh 1em;
    border-radius: 50px 0 50px 0;
  }
}

.modular-only-column.column-left-50 .highlight > span {
  display: block;
  white-space: nowrap;
}

.modular-only-column.column-left-50 .highlight > span:last-child {
  margin-left: auto;
  text-align: right;
}

.contact-infos a .icon, #page-footer .footer-info .third-column > div a .icon, #page-footer .social a .icon, .contact-infos a .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .contact-infos a figure:before, #page-footer .footer-info .third-column > div a .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li #page-footer .footer-info .third-column > div a figure:before, #page-footer .social a .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li #page-footer .social a figure:before, .contact-infos a .blog .article-listing li figure:before, .blog .article-listing li .contact-infos a figure:before, #page-footer .footer-info .third-column > div a .blog .article-listing li figure:before, .blog .article-listing li #page-footer .footer-info .third-column > div a figure:before, #page-footer .social a .blog .article-listing li figure:before, .blog .article-listing li #page-footer .social a figure:before, .contact-infos a .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .contact-infos a figure:before, #page-footer .footer-info .third-column > div a .modular-blog .article-listing li figure:before, .modular-blog .article-listing li #page-footer .footer-info .third-column > div a figure:before, #page-footer .social a .modular-blog .article-listing li figure:before, .modular-blog .article-listing li #page-footer .social a figure:before {
  font-size: 16px !important;
  background: #fdcd40;
  border: 1px solid #fdcd40;
  border-radius: 100px;
  font-weight: 800;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .5em;
  transition: all .3s ease-in;
}

.contact-infos a:hover .icon, #page-footer .footer-info .third-column > div a:hover .icon, #page-footer .social a:hover .icon, .contact-infos a:hover .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .contact-infos a:hover figure:before, #page-footer .footer-info .third-column > div a:hover .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li #page-footer .footer-info .third-column > div a:hover figure:before, #page-footer .social a:hover .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li #page-footer .social a:hover figure:before, .contact-infos a:hover .blog .article-listing li figure:before, .blog .article-listing li .contact-infos a:hover figure:before, #page-footer .footer-info .third-column > div a:hover .blog .article-listing li figure:before, .blog .article-listing li #page-footer .footer-info .third-column > div a:hover figure:before, #page-footer .social a:hover .blog .article-listing li figure:before, .blog .article-listing li #page-footer .social a:hover figure:before, .contact-infos a:hover .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .contact-infos a:hover figure:before, #page-footer .footer-info .third-column > div a:hover .modular-blog .article-listing li figure:before, .modular-blog .article-listing li #page-footer .footer-info .third-column > div a:hover figure:before, #page-footer .social a:hover .modular-blog .article-listing li figure:before, .modular-blog .article-listing li #page-footer .social a:hover figure:before {
  background: #fff;
}

.modular-consultation > .wrapper > ul > li, .blog .article-listing li,
.modular-blog .article-listing li {
  cursor: pointer;
  background: #f6f7fb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s ease-in;
}

.modular-consultation > .wrapper > ul > li figure, .blog .article-listing li figure, .modular-blog .article-listing li figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  max-height: 300px;
}

.modular-consultation > .wrapper > ul > li figure:before, .blog .article-listing li figure:before, .modular-blog .article-listing li figure:before {
  background: #fdcd40;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  bottom: 0;
  right: 3vw;
  transform: translateY(50%);
  color: #1d1d1b;
  border-radius: 20px 0 20px 0 !important;
}

.modular-consultation > .wrapper > ul > li figure img, .blog .article-listing li figure img, .modular-blog .article-listing li figure img {
  width: 100%;
}

.modular-consultation > .wrapper > ul > li > *:last-child, .blog .article-listing li > *:last-child, .modular-blog .article-listing li > *:last-child {
  margin-bottom: 3vw;
  display: inline-block;
}

.modular-consultation > .wrapper > ul > li .card-title, .blog .article-listing li .card-title, .modular-blog .article-listing li .card-title {
  font-weight: 800;
  font-size: 1.3em;
  line-height: 1.3em;
  margin: 1em 0;
  margin-top: 2em;
  padding-right: clamp(20px, 6vw/2, 40px);
  padding-left: clamp(20px, 6vw/2, 40px);
}

.modular-consultation > .wrapper > ul > li p, .blog .article-listing li p, .modular-blog .article-listing li p {
  line-height: 1.5em;
  flex: 1;
}

.modular-consultation > .wrapper > ul > li .card-content, .blog .article-listing li .card-content, .modular-blog .article-listing li .card-content {
  padding: 0;
  padding-right: clamp(20px, 6vw/2, 40px);
  padding-left: clamp(20px, 6vw/2, 40px);
}

.modular-consultation > .wrapper > ul > li .card-footer, .blog .article-listing li .card-footer, .modular-blog .article-listing li .card-footer {
  padding-right: clamp(20px, 6vw/2, 40px);
  padding-left: clamp(20px, 6vw/2, 40px);
  text-align: left;
}

.modular-consultation > .wrapper > ul > li .listing > span, .blog .article-listing li .listing > span, .modular-blog .article-listing li .listing > span {
  font-weight: 500;
}

.modular-consultation > .wrapper > ul > li:hover, .blog .article-listing li:hover,
.modular-blog .article-listing li:hover {
  background: #fdcd40;
  color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.modular-consultation > .wrapper > ul > li:hover .date *, .blog .article-listing li:hover .date *, .modular-blog .article-listing li:hover .date * {
  color: #1d1d1b;
}

.modular-consultation > .wrapper > ul > li:hover .listing > span, .blog .article-listing li:hover .listing > span, .modular-blog .article-listing li:hover .listing > span {
  color: #fff;
}

.modular-consultation > .wrapper > ul > li:hover .listing > span:after, .blog .article-listing li:hover .listing > span:after, .modular-blog .article-listing li:hover .listing > span:after {
  color: #fff;
}

.modular-only-column.column-left-50 > .wrapper > header:after, .modular-menu .cols-2 > *:first-child h3:after, [class^="modular-"] > .wrapper > header:after, .inline-link:after, .submenu-wrapper .submenu > ul li ul li.active:after {
  content: '';
  background: #1d1d1b;
  width: 100px;
  height: 1px;
  position: absolute;
}

.weebox-shares {
  top: 60%;
}

@media only screen and (max-width: 576px) {
  .weebox-shares {
    left: calc(95vw - 50px);
    top: calc(90vh - 50px - 6vh/4);
  }
  .weebox-shares > ul {
    transform: translateY(calc(-100% - 55px));
  }
}

.shortcode-icon {
  display: flex;
  width: 25px;
  height: 25px;
  margin: 0;
  margin-left: 5px;
  border: none;
  font-size: 1rem;
}

.shortcode-icon .icon, .shortcode-icon .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .shortcode-icon figure:before, .shortcode-icon .blog .article-listing li figure:before, .blog .article-listing li .shortcode-icon figure:before, .shortcode-icon .modular-blog .article-listing li figure:before, .modular-blog .article-listing li .shortcode-icon figure:before {
  font-size: 1em;
}

.btn-primary:hover, .contact-bubble a:hover, #page-header .wrapper a:hover, .blog-item > .wrapper footer button:hover {
  background: #fdcd40;
  color: #1d1d1b;
}

.btn-secondary, .modular-menu .cols-2 > *:last-child > ul > * a {
  background: #f6f7fb;
  color: #1d1d1b;
}

.btn-secondary:hover, .modular-menu .cols-2 > *:last-child > ul > * a:hover {
  background: #fdcd40;
  color: #1d1d1b;
}

strong {
  font-weight: 800;
}

p,
ul li,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3em;
}

.contact-bubble {
  position: fixed;
  right: 1vw;
  top: 30%;
  z-index: 999;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .contact-bubble {
    top: 90vh;
  }
}

.contact-bubble a {
  padding: .5em 1.5em;
  margin-top: 0;
  line-height: 1.2em;
}

.contact-bubble ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  background: #fdcd40;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  overflow: hidden;
  animation: blop-out .3s ease-out both;
}

@media only screen and (max-width: 768px) {
  .contact-bubble ul {
    height: 50px;
    width: 50px;
    opacity: .75;
  }
}

@media only screen and (min-width: 992px) {
  .contact-bubble ul:hover {
    animation: blop .3s ease-out both;
  }
}

@keyframes blop {
  0% {
    transform: none;
  }
  100% {
    transform: scale(1.125) rotate(2deg);
  }
}

@keyframes blop-out {
  0% {
    transform: scale(1.125) rotate(2deg);
  }
  100% {
    transform: none;
  }
}

.contact-bubble ul > li {
  font-size: 1.7em;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .contact-bubble ul > li {
    height: 40px/2;
    font-size: 1.3em;
  }
}

.contact-bubble ul > li i {
  display: flex;
  align-items: center;
}

.contact-bubble ul > li:first-child {
  background: #1d1d1b;
  color: #fff;
}

.contact-bubble ul > li:last-child {
  border-top: 2px solid #fff;
}

.contact-bubble .open ~ .contact-bubble-button {
  opacity: 1;
}

.contact-bubble .contact-bubble-content {
  padding: 3vh 3vw;
  background: #f6f7fb;
  font-size: .9em;
  display: flex;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 300px;
  right: 0;
  transform: translate(-60px, -25%);
}

@media only screen and (max-width: 768px) {
  .contact-bubble .contact-bubble-content {
    bottom: -3vh;
    right: -30px;
  }
}

.contact-bubble .contact-bubble-content .icon-close {
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
  transition: all .3s ease-in;
  transform-origin: center;
}

.contact-bubble .contact-bubble-content .icon-close:hover {
  transform: rotate(90deg);
}

.contact-bubble .contact-bubble-content a {
  margin-bottom: 1em;
  font-size: .9em;
}

.contact-bubble .contact-bubble-content a:last-child {
  background: #fdcd40;
  color: #1d1d1b;
}

.contact-bubble .contact-bubble-content a:last-child:hover {
  background: #1d1d1b;
  color: #fff;
}

.contact-bubble .contact-bubble-content span {
  display: block;
  margin-bottom: .5em;
}

button {
  border: none;
}

.listing span {
  font-weight: 800;
}

.listing span:after {
  content: '/';
  color: #fdcd40;
  margin: 0 4px;
}

.listing span:last-of-type:after {
  display: none;
}

img {
  width: 100%;
}

.submenu-wrapper .submenu-title, .modular-menu .cols-2 > *:last-child h3 {
  color: #fdcd40;
  font-size: 1.8em;
  margin-bottom: .2em;
}

.modular-menu .cols-2 > *:last-child > ul {
  flex-direction: column;
}

.modular-menu .cols-2 > *:last-child > ul > * {
  margin: .2em 0;
}

.modular-menu .cols-2 > *:last-child > ul > * a {
  display: block;
  margin-top: .2em;
}

* {
  box-sizing: border-box;
}

.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
}

.circle {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  border: 5px solid rgba(253, 205, 64, 0);
}

.circle .circle {
  z-index: 2;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: -5px;
  top: -5px;
  border: 1px solid rgba(253, 205, 64, 0.2);
}

.pseudo-center::before,
.pseudo-center::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-circle {
  left: 0;
  top: 0;
  z-index: -1;
  animation: pulse 4s infinite ease;
}

.pulse-circle:after, .pulse-circle:before {
  content: '';
  height: inherit;
  width: inherit;
  opacity: 1;
  z-index: -1;
  transform: translate(-50%, -50%), scale(1);
  border-radius: 100px;
}

.pulse-circle:before {
  border: 1px solid rgba(253, 205, 64, 0.8);
  animation: before_pulse 4s infinite ease-out;
}

.pulse-circle:after {
  border: 1px solid rgba(253, 205, 64, 0.5);
  animation: after_pulse 4s 0.26s infinite ease-out;
}

@keyframes pulse {
  40%,
  100% {
    border: 5px solid #fdcd40;
  }
}

@keyframes before_pulse {
  26%,
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

@keyframes after_pulse {
  26%,
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.date {
  border-radius: 20px 0 20px 0;
  position: relative;
  width: 80px;
  background: #fff;
  padding: .5em;
  padding-right: 1.5em;
  display: flex;
  flex-direction: column;
  transform: translate(calc(6vw/3), -50%);
}

@media only screen and (max-width: 768px) {
  .date {
    width: 70px;
  }
}

.date > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .date > span {
    font-size: .85em;
    line-height: 1.1em;
  }
}

.date .day {
  font-size: 2.5em;
  line-height: .9em;
}

@media only screen and (max-width: 768px) {
  .date .day {
    font-size: 1.8em;
  }
}

.date .year {
  position: absolute;
  top: 0;
  right: 1.8em;
  transform: rotate(-90deg);
  transform-origin: top right;
  justify-content: flex-end;
  padding-right: .5em;
}

@media only screen and (max-width: 768px) {
  .date .year {
    justify-content: center;
    padding-right: 0;
    width: 60px;
  }
}

#bg-video {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  -webkit-clip-path: url(#waveMask);
  clip-path: url(#waveMask);
  padding-top: 120px !important;
}

@media only screen and (max-width: 768px) {
  #page-header {
    min-height: 45vh;
  }
}

@media only screen and (min-width: 1600px) {
  #page-header {
    min-height: 500px;
  }
}

#page-header:after {
  content: '';
  background: #fdcd40;
  background: linear-gradient(90deg, #fdcd40 0%, #e78382 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
  z-index: 0;
}

#page-header .wrapper {
  width: 100%;
  display: flex;
  padding-bottom: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  #page-header .wrapper {
    padding-bottom: 90px;
    padding-top: 1.5vh;
  }
}

.page-blog-item #page-header .wrapper {
  width: 80%;
}

.page-home #page-header .wrapper {
  min-height: 65vh;
}

#page-header .wrapper > .content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.home #page-header .wrapper > .content {
  width: 80%;
}

@media only screen and (max-width: 576px) {
  .home #page-header .wrapper > .content {
    width: 100%;
  }
}

#page-header .wrapper > .content > strong {
  font-weight: 800;
  text-transform: uppercase;
  font-size: .9em;
}

@media only screen and (max-width: 768px) {
  #page-header .wrapper > .content > strong {
    font-size: .8em;
  }
}

#page-header .wrapper h1,
#page-header .wrapper h2 {
  font-size: 3em;
  margin-top: .4em;
  margin-bottom: .5em;
}

@media only screen and (max-width: 768px) {
  #page-header .wrapper h1,
  #page-header .wrapper h2 {
    font-size: 2.3em;
  }
}

#page-header .wrapper a {
  margin: 1em .5em;
}

#page-header .wrapper a:hover {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  #page-header .wrapper a {
    margin-top: 1em;
  }
}

#page-header .wrapper p {
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.sticky-wrapper {
  position: relative;
  height: 100%;
}

.sticky-wrapper .sticky-on {
  padding-top: 3vh;
}

.submenu-wrapper {
  width: 35%;
  padding-left: 3vw;
  border-left: 1px solid #fdcd40;
}

@media only screen and (max-width: 768px) {
  .submenu-wrapper {
    order: 1;
    width: 100%;
    margin-bottom: 9vh;
  }
}

.submenu-wrapper .submenu > ul {
  flex-direction: column;
}

.submenu-wrapper .submenu > ul li > a {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.submenu-wrapper .submenu > ul li > a > *:not(h4) {
  display: none;
}

.submenu-wrapper .submenu > ul li.active > a {
  background: #fdcd40;
}

.submenu-wrapper .submenu > ul li.active > ul {
  display: block;
}

.submenu-wrapper .submenu > ul li ul {
  flex-direction: column;
  padding-left: 3vw;
  display: none;
  margin-bottom: 1.5em;
}

.submenu-wrapper .submenu > ul li ul li {
  position: relative;
}

.submenu-wrapper .submenu > ul li ul li a {
  font-weight: 500;
}

.submenu-wrapper .submenu > ul li ul li.active a {
  font-weight: 800;
  background: none;
}

.submenu-wrapper .submenu > ul li ul li.active:after {
  top: 25%;
  left: -88px;
  width: 75px;
  transform: translateY(50%);
  background: #fdcd40;
}

.disease-wrapper {
  width: 65%;
  padding-right: 3vw;
}

@media only screen and (max-width: 768px) {
  .disease-wrapper {
    width: 100%;
    order: 2;
  }
}

.disease-wrapper > ul {
  flex-direction: column;
}

.disease-wrapper > ul > li {
  position: relative;
  margin-left: calc(50px + 6vw/4);
  margin-bottom: 9vh;
}

@media only screen and (max-width: 768px) {
  .disease-wrapper > ul > li {
    margin-left: 0;
    margin-bottom: 6vh;
  }
}

.disease-wrapper > ul > li > ul {
  flex-direction: column;
  margin-bottom: 1em;
}

.disease-wrapper > ul > li > ul > li {
  margin: .2em;
  margin-left: 3vw;
  list-style-type: disc;
}

.disease-wrapper > ul > li > ol {
  padding-left: 1em;
}

.disease-wrapper > ul > li > ol > li {
  list-style-type: decimal;
  margin: 1em .2em;
}

.disease-wrapper > ul > li > ol > li::marker {
  font-weight: 800;
}

.disease-wrapper > ul > li h1,
.disease-wrapper > ul > li h2,
.disease-wrapper > ul > li h3,
.disease-wrapper > ul > li h4,
.disease-wrapper > ul > li h5,
.disease-wrapper > ul > li h6 {
  font-weight: 800;
  margin-bottom: .5em;
  margin-top: 1em;
}

.disease-wrapper > ul > li .icon, .disease-wrapper > ul > li .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .disease-wrapper > ul > li figure:before, .blog .article-listing .disease-wrapper > ul > li figure:before, .modular-blog .article-listing .disease-wrapper > ul > li figure:before {
  width: 50px;
  position: absolute;
  transform: translateY(-50%);
  left: calc(-50px - 6vw/4);
}

@media only screen and (max-width: 768px) {
  .disease-wrapper > ul > li .icon, .disease-wrapper > ul > li .modular-consultation > .wrapper > ul > li figure:before, .modular-consultation > .wrapper > ul > li .disease-wrapper > ul > li figure:before, .blog .article-listing .disease-wrapper > ul > li figure:before, .modular-blog .article-listing .disease-wrapper > ul > li figure:before {
    width: 70px;
    transform: none;
    position: relative;
    left: 0;
    margin-bottom: 2vh;
  }
}

.disease-wrapper > ul > li > div:last-child {
  position: relative;
}

.disease-wrapper > ul > li > div:last-child:after {
  content: '';
  border-bottom: 1px solid #e6e7ee;
  width: 100%;
  position: absolute;
  bottom: calc(40px / 2);
  right: 0;
  z-index: -1;
}

.service-item > .wrapper {
  padding-top: 2vh;
}

.service-item > .wrapper .listing > span {
  font-weight: 500;
}

.service-item > .wrapper .cols-2 {
  display: flex;
  flex-wrap: wrap;
}

.service-item a {
  margin: 1em;
}

.service-item .btn-secondary, .service-item .modular-menu .cols-2 > *:last-child > ul > * a, .modular-menu .cols-2 > *:last-child > ul > * .service-item a {
  margin-top: 3vh;
}

@media only screen and (max-width: 768px) {
  .service-item .btn-secondary, .service-item .modular-menu .cols-2 > *:last-child > ul > * a, .modular-menu .cols-2 > *:last-child > ul > * .service-item a {
    margin-top: 1.5vh;
  }
}

.service-item .btn-primary, .service-item .contact-bubble a, .contact-bubble .service-item a, .service-item #page-header .wrapper a, #page-header .wrapper .service-item a, .service-item .blog-item > .wrapper footer button, .blog-item > .wrapper footer .service-item button {
  width: auto;
  margin: 0;
  margin-top: 6vh;
}

@media only screen and (max-width: 768px) {
  .service-item .btn-primary, .service-item .contact-bubble a, .contact-bubble .service-item a, .service-item #page-header .wrapper a, #page-header .wrapper .service-item a, .service-item .blog-item > .wrapper footer button, .blog-item > .wrapper footer .service-item button {
    margin-top: 3vh;
  }
}

.page-tarifs [class^="modular-"] > .wrapper > header {
  display: none;
}

[class^="modular-"] > .wrapper > header {
  margin-bottom: 9vh;
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  [class^="modular-"] > .wrapper > header {
    margin-bottom: 6vh;
  }
}

.page-tarifs [class^="modular-"] > .wrapper > header {
  display: none;
}

.modular-columns > .wrapper ul[class^='cols-'] > *:nth-child(1n) {
  margin-right: 0;
}

.modular-text > .wrapper ul.cols-2 {
  align-items: flex-start;
}

.modular-text > .wrapper ul.cols-2 > li:first-child {
  width: 30%;
  font-size: 2em;
  margin-right: 0;
  letter-spacing: -.02em;
  border-left: 1px solid #fdcd40;
  padding: 1.5vh 4vw;
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child {
    display: none;
  }
}

.modular-text > .wrapper ul.cols-2 > li:first-child > p {
  color: #fdcd40;
  margin-bottom: .15em;
  line-height: 1.3em;
  margin-top: -1.5vh;
}

.modular-text > .wrapper ul.cols-2 > li:first-child ul {
  flex-direction: column;
}

.modular-text > .wrapper ul.cols-2 > li:first-child ul li {
  margin-bottom: .05em;
  line-height: 1.3em;
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image {
  border: none;
  padding: 0 6vw;
  display: flex;
  justify-content: center;
  width: 50%;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image {
    width: 30%;
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image {
    width: 50%;
    margin: 0 auto;
  }
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image + li {
  width: 50%;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image + li {
    width: 70%;
    padding: 0 6vw;
  }
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image + li {
    width: 100%;
    padding: 0;
  }
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > .circle {
  z-index: 3;
  right: 0;
  bottom: 0;
  top: inherit;
  left: inherit;
}

@media only screen and (min-width: 1200px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > .circle {
    right: 10px;
  }
}

@media only screen and (min-width: 1600px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > .circle {
    right: 0px;
  }
}

@media only screen and (max-width: 992px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > .circle {
    right: -6vw;
  }
}

@media only screen and (min-width: 1600px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image .abs-center {
    transform: translate(-80px, -50%);
  }
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image .circle {
  height: 80px;
  width: 80px;
  background: none;
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure {
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  height: 80%;
  max-height: 310px;
}

@media only screen and (max-width: 992px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure {
    max-width: inherit;
    height: auto;
    margin-bottom: .5em;
  }
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure {
    max-height: 400px;
    margin-bottom: 1em;
  }
}

.modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:first-child.mode-image > figure img {
    -o-object-position: center center;
    object-position: center center;
  }
}

.modular-text > .wrapper ul.cols-2 > li:last-child {
  width: 70%;
}

@media only screen and (max-width: 768px) {
  .modular-text > .wrapper ul.cols-2 > li:last-child {
    width: 100%;
  }
}

.modular-only-column > .wrapper .content {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .modular-only-column > .wrapper .content {
    max-width: 100%;
  }
}

.modular-only-column.column-left-50 {
  position: relative;
  padding-bottom: 7.2vh;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

.modular-only-column.column-left-50 .bg:after {
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
}

.modular-only-column.column-left-50 > .wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 15vh;
  justify-content: flex-start;
}

@media only screen and (min-width: 992px) {
  .modular-only-column.column-left-50 > .wrapper {
    min-height: 45vh;
  }
}

.modular-only-column.column-left-50 > .wrapper > * {
  max-width: 60%;
  margin-left: calc(5vw + 5px);
}

@media only screen and (max-width: 768px) {
  .modular-only-column.column-left-50 > .wrapper > * {
    max-width: 95%;
    margin-left: 0;
  }
}

.modular-only-column.column-left-50 > .wrapper > header {
  margin-bottom: 0;
}

.modular-only-column.column-left-50 > .wrapper .content > p {
  margin-left: 1vw;
  text-align: left;
}

.modular-only-column.column-left-50 .highlight {
  position: absolute;
  right: 12vw;
  bottom: 0;
  transform: translateY(70%);
}

@media only screen and (max-width: 768px) {
  .modular-only-column.column-left-50 .highlight {
    right: 0;
  }
}

.modular-menu > .wrapper > header {
  display: none;
}

.modular-menu > .wrapper .content > p {
  margin-left: 1vw;
}

.modular-menu .cols-2 > *:first-child {
  width: 65%;
  padding-right: 6vw;
}

@media only screen and (max-width: 768px) {
  .modular-menu .cols-2 > *:first-child {
    width: 100%;
  }
}

.modular-menu .cols-2 > *:first-child > *:not(:first-child) {
  margin-left: 1vw;
}

.modular-menu .cols-2 > *:first-child ul {
  flex-direction: column;
}

.modular-menu .cols-2 > *:first-child ul li {
  display: block;
}

.modular-menu .cols-2 > *:first-child ul li a {
  color: #fdcd40;
  font-weight: 800;
  transition: all ease-in .3s;
}

.modular-menu .cols-2 > *:first-child ul li a:hover {
  color: #e1d0aa;
}

.modular-menu .cols-2 > *:last-child {
  width: 35%;
}

@media only screen and (max-width: 768px) {
  .modular-menu .cols-2 > *:last-child {
    width: 100%;
    margin-top: 3vh;
  }
}

.modular-menu .cols-2 > *:last-child > ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modular-testimonials {
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.modular-tarifs {
  background: #fdcd40;
  position: relative;
  margin-top: 9vh;
  font-size: 1rem;
}

.page-tarifs .modular-tarifs {
  margin-top: 0;
}

.modular-tarifs .wave {
  height: 80%;
}

.modular-tarifs .wave:after {
  content: '';
  background: #fff;
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.page-homepage .modular-tarifs .wave:after {
  background: #f6f7fb;
  height: 60%;
  bottom: -20%;
}

.modular-tarifs .wave svg {
  position: absolute;
  bottom: 49%;
}

.page-homepage .modular-tarifs .wave svg {
  bottom: 39%;
}

.modular-tarifs .wave path {
  fill: #fff;
}

.page-homepage .modular-tarifs .wave path {
  fill: #f6f7fb;
}

.modular-tarifs > .wrapper {
  position: relative;
  z-index: 3;
}

.page-tarifs .modular-tarifs > .wrapper {
  padding-top: 1px;
}

.modular-tarifs > .wrapper .content {
  width: 70%;
  text-align: center;
  margin: auto;
  margin-bottom: 4vh;
}

@media only screen and (max-width: 768px) {
  .modular-tarifs > .wrapper .content {
    width: 100%;
  }
}

.modular-tarifs > .wrapper aside {
  font-weight: 500;
  font-style: italic;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  font-size: .9em;
  color: #717171;
}

.modular-tarifs > .wrapper table {
  width: 70%;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .modular-tarifs > .wrapper table {
    width: 100%;
  }
}

.modular-tarifs > .wrapper table tr {
  background: #f6f7fb;
  display: flex;
  padding: 1.5em 3em;
  margin: 0;
  align-items: center;
  min-height: 85px;
  border-bottom: 1px solid #e6e7ee;
}

.modular-tarifs > .wrapper table tr:last-child {
  border: none;
}

@media only screen and (max-width: 768px) {
  .modular-tarifs > .wrapper table tr {
    padding: 1.5em;
    font-size: .9em;
  }
}

.page-homepage .modular-tarifs > .wrapper table tr {
  background: #fff;
}

.modular-tarifs > .wrapper table tr p {
  margin: 0;
  font-weight: 500;
  font-size: .9em;
  line-height: 1.3em;
}

.modular-tarifs > .wrapper table tr p strong {
  display: block;
  font-size: 1.2em;
  font-weight: 800;
}

.modular-tarifs > .wrapper table tr td {
  flex: 1;
  font-weight: 800;
  text-align: right;
}

.modular-tarifs > .wrapper table tr td:first-child {
  flex: 2;
  text-align: left;
}

.modular-tarifs > .wrapper table tr td.price {
  font-weight: 500;
}

.modular-tarifs > .wrapper table tr:first-child {
  border-radius: 50px 0 0 0;
}

.modular-tarifs > .wrapper table tr:last-child {
  border-radius: 0 0 50px 0;
}

.modular-tarifs footer {
  margin-top: 1.5em;
  text-align: center;
}

.modular-tarifs footer [class^='btn-'] {
  margin: .5em;
}

.modular-tarifs footer [class^='btn-'] .icon-credit-card {
  margin-right: 35px;
  position: relative;
}

.modular-tarifs footer [class^='btn-'] .icon-credit-card:before {
  position: absolute;
  transform: rotate(-6deg) translateY(-50%);
  top: 50%;
  left: -5px;
  font-size: 1.85em;
  line-height: 1.85em;
}

.modular-consultation > .wrapper > ul {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
}

.modular-consultation > .wrapper > ul > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-consultation > .wrapper > ul > * {
  flex: inherit !important;
  flex-grow: inherit !important;
  width: calc((100% / 3) - 1vw);
  width: calc((100% / 3) - 1vw);
  /*
    &:nth-child(3n) {
      //margin-right: 0;
    }

    @include lt-s{
      @include rem(width, calc((100% / 2) - 0.75vw) );
      margin-right: $g;

      &:nth-child(2n) {
        //margin-right: 0;
      }
    }
    @include lt-xs{
      @include rem(width, calc(100%) );
      margin: auto;
    }*/
}

.modular-consultation > .wrapper > ul > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-consultation > .wrapper > ul > *:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 992px) {
  .modular-consultation > .wrapper > ul {
    display: flex;
    width: 100%;
    margin: auto;
    flex-grow: inherit !important;
    flex: inherit !important;
    flex-wrap: wrap;
  }
  .modular-consultation > .wrapper > ul > * {
    list-style: none !important;
    flex-grow: 1;
    width: auto;
  }
  .modular-consultation > .wrapper > ul > * {
    flex-grow: inherit !important;
    flex: inherit !important;
    width: calc((100% / 2) - 0.75vw);
    width: calc((100% / 2) - 0.75vw);
    /*
    &:nth-child(2n) {
      //margin: auto;
    }

    @include lt-xs{
      @include rem(width, calc(100%) );
    }
    */
  }
  .modular-consultation > .wrapper > ul > *:nth-child(1n) {
    margin-right: 1.5vw;
  }
  .modular-consultation > .wrapper > ul > *:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .modular-consultation > .wrapper > ul {
    display: flex;
    width: 100%;
    margin: auto;
    flex-grow: inherit !important;
    flex: inherit !important;
    flex-wrap: wrap;
    margin-right: 0;
  }
  .modular-consultation > .wrapper > ul > * {
    list-style: none !important;
    flex-grow: 1;
    width: auto;
  }
  .modular-consultation > .wrapper > ul > * {
    width: 100%;
  }
}

.modular-consultation > .wrapper > ul > li {
  position: relative;
  margin-top: 2vh;
}

@media only screen and (max-width: 992px) {
  .modular-consultation > .wrapper > ul > li {
    margin-right: 0;
  }
}

.modular-consultation > .wrapper footer {
  width: 100%;
  text-align: center;
}

.modular-consultation > .wrapper footer a {
  margin: 2em 1em;
}

.contact-infos, #page-footer .footer-info .third-column > div {
  padding-left: 1.5vw;
  border-left: 2px solid #fdcd40;
}

.contact-infos .circle, #page-footer .footer-info .third-column > div .circle {
  width: 80px;
  height: 80px;
}

.contact-infos .abs-center, #page-footer .footer-info .third-column > div .abs-center {
  transform: translate(0%, 15%);
}

.contact-infos > *, #page-footer .footer-info .third-column > div > * {
  padding: 1em 1.5vw;
}

.contact-infos header, #page-footer .footer-info .third-column > div header {
  padding: 1em 1.5vw;
  position: relative;
}

.contact-infos header h2, #page-footer .footer-info .third-column > div header h2 {
  font-size: 2.5em;
  margin-bottom: .5em;
}

.contact-infos header p, #page-footer .footer-info .third-column > div header p {
  margin-bottom: 0;
}

.contact-infos address, #page-footer .footer-info .third-column > div address {
  padding: 1em 1.5vw;
}

.contact-infos address > p > *, #page-footer .footer-info .third-column > div address > p > * {
  display: block;
  margin: .3em 0;
  line-height: 1.3em;
}

.contact-infos a, #page-footer .footer-info .third-column > div a {
  display: flex;
  align-items: center;
  padding: 0em 1.5vw;
  margin-top: .5em;
}

.contact-infos a:first-of-type, #page-footer .footer-info .third-column > div a:first-of-type {
  padding-top: 1em;
  margin-top: 0;
}

.contact-infos a:last-of-type, #page-footer .footer-info .third-column > div a:last-of-type {
  padding-bottom: 1em;
}

.contact-infos dl, #page-footer .footer-info .third-column > div dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-infos dl dt, #page-footer .footer-info .third-column > div dl dt {
  font-weight: 800;
  margin: .5em 0;
  margin-right: 1em;
  display: block;
  width: 100%;
  margin-top: 1em;
}

.contact-infos dl dd:after, #page-footer .footer-info .third-column > div dl dd:after {
  content: '|';
  color: #fdcd40;
  margin: .5em;
}

.contact-infos dl dd:last-child:after, #page-footer .footer-info .third-column > div dl dd:last-child:after {
  display: none;
}

.blog .article-listing,
.modular-blog .article-listing {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
  flex-direction: inherit;
  justify-content: flex-start;
}

.blog .article-listing > *,
.modular-blog .article-listing > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.blog .article-listing > *,
.modular-blog .article-listing > * {
  flex-grow: inherit !important;
  flex: inherit !important;
  width: calc((100% / 2) - 0.75vw);
  width: calc((100% / 2) - 0.75vw);
  /*
    &:nth-child(2n) {
      //margin: auto;
    }

    @include lt-xs{
      @include rem(width, calc(100%) );
    }
    */
}

.blog .article-listing > *:nth-child(1n),
.modular-blog .article-listing > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.blog .article-listing > *:nth-child(2n),
.modular-blog .article-listing > *:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .blog .article-listing,
  .modular-blog .article-listing {
    display: flex;
    width: 100%;
    margin: auto;
    flex-grow: inherit !important;
    flex: inherit !important;
    flex-wrap: wrap;
    width: calc(100% + 1.5vw);
    margin-right: -1.5vw;
    flex-wrap: wrap;
  }
  .blog .article-listing > *,
  .modular-blog .article-listing > * {
    list-style: none !important;
    flex-grow: 1;
    width: auto;
  }
  .blog .article-listing > *,
  .modular-blog .article-listing > * {
    flex: 1;
    flex-grow: 1;
    margin-right: 1.5vw;
  }
}

@media only screen and (max-width: 768px) and (max-width: 576px) {
  .blog .article-listing > *,
  .modular-blog .article-listing > * {
    width: calc(100%);
    width: calc(100%);
  }
}

.blog .article-listing > *:nth-child(1n),
.modular-blog .article-listing > *:nth-child(1n) {
  margin-right: 0;
}

.blog .article-listing li,
.modular-blog .article-listing li {
  margin: .5vh .5vw;
}

.blog .article-listing li article,
.modular-blog .article-listing li article {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog .article-listing li .card-title,
.modular-blog .article-listing li .card-title {
  margin-top: 0;
}

.blog footer,
.modular-blog footer {
  text-align: center;
}

.blog-item > .wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.blog-item > .wrapper article > div {
  margin: 0 auto;
}

.blog-item > .wrapper article > div h1,
.blog-item > .wrapper article > div h2,
.blog-item > .wrapper article > div h3,
.blog-item > .wrapper article > div h4 {
  font-weight: 800;
  margin-top: 4vh;
}

.blog-item > .wrapper article > div h1 + p > strong,
.blog-item > .wrapper article > div h2 + p > strong,
.blog-item > .wrapper article > div h3 + p > strong,
.blog-item > .wrapper article > div h4 + p > strong {
  margin-top: 0;
}

.blog-item > .wrapper article > div > ul {
  flex-direction: column;
}

.blog-item > .wrapper article > div > ul > li {
  margin: .2em;
  margin-left: 3vw;
  list-style-type: disc;
}

.blog-item > .wrapper article > div p {
  margin-bottom: 0;
}

.blog-item > .wrapper article > div p > strong {
  display: inline-block;
  margin-top: 1.5em;
  margin-bottom: .5em;
}

.blog-item > .wrapper header {
  position: relative;
  text-align: left;
  border-bottom: 1px solid #e6e7ee;
  padding-bottom: 0;
  margin-bottom: 2em;
}

.blog-item > .wrapper header .date {
  transform: none;
  position: absolute;
  top: -150px;
  right: 0;
  background: #f6f7fb;
}

.blog-item > .wrapper header button {
  margin-bottom: 2em;
  margin-top: 0;
}

.blog-item > .wrapper header:after {
  display: none;
}

.blog-item > .wrapper .author {
  font-size: .8em;
  text-align: center;
  display: flex;
  align-items: center;
}

.blog-item > .wrapper .author figure {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 1.5vw;
  border-radius: 100px;
}

.blog-item > .wrapper .author figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-item > .wrapper .author figure + * {
  margin-top: 0;
}

.blog-item > .wrapper footer {
  margin: 6vh auto;
  margin-bottom: 0;
  padding: 2em 0;
  border: solid #e6e7ee;
  border-width: 1px 0 1px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-item > .wrapper footer button {
  margin-top: 0;
}

.blog-item > .wrapper .cols-2 {
  position: relative;
}

.blog-item > .wrapper .cols-2 > li {
  position: relative;
}

.blog-item > .wrapper .cols-2 > li > ul {
  flex-direction: column;
}

.blog-item > .wrapper .cols-2 > li > ul > li {
  margin: .2em;
  margin-left: 3vw;
  list-style-type: disc;
}

.blog-item > .wrapper .cols-2 > li h1 {
  font-size: 1.4em;
}

.blog-item > .wrapper .cols-2 > li h2 {
  font-size: 1.2em;
}

.blog-item > .wrapper .cols-2 > li h3 {
  font-size: 1em;
  margin-top: 1.5em;
  margin-bottom: .5em;
}

.blog-item > .wrapper .cols-2 > li p {
  margin-bottom: 0;
}

.blog-item > .wrapper .cols-2 > li p > strong {
  display: inline-block;
  margin: 0;
}

.blog-item > .wrapper .cols-2 > li a {
  font-weight: 500;
}

.blog-item > .wrapper .cols-2 > li button {
  margin-top: 0;
  margin-bottom: 2em;
}

.blog-item > .wrapper .cols-2 > li .author {
  border-bottom: 1px solid #f6f7fb;
  border-top: 1px solid #f6f7fb;
  font-size: .8em;
  padding: 3vh 0;
  text-align: center;
  display: flex;
  align-items: center;
}

.blog-item > .wrapper .cols-2 > li .author figure {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 1.5vw;
  border-radius: 100px;
}

.blog-item > .wrapper .cols-2 > li .author figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-item > .wrapper .cols-2 > li .author figure + * {
  margin-top: 0;
}

.blog-item > .wrapper .cols-2 > li:last-child {
  flex: 2 !important;
  padding: 0 1.5vw;
}

@media only screen and (max-width: 768px) {
  .blog-item > .wrapper .cols-2 > li:last-child {
    flex: inherit !important;
    width: 100%;
  }
}

.blog-item > .wrapper .cols-2 > li:first-child {
  flex: 1 !important;
}

@media only screen and (max-width: 768px) {
  .blog-item > .wrapper .cols-2 > li:first-child {
    flex: inherit !important;
    width: 100%;
    margin-bottom: 6vh;
  }
}

.blog-item + section .modular-blog > .wrapper > header {
  display: none;
}

.contact-form {
  position: relative;
  margin-bottom: 12vh;
  background: #f6f7fb;
}

.contact-form > .wrapper {
  position: relative;
  z-index: 3;
}

.contact-form .wave {
  transform: rotate(-180deg);
  bottom: -200px;
  z-index: -1;
}

.contact-form .wave path {
  fill: #f6f7fb;
}

.page-contact .contact-content > .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .page-contact .contact-content > .wrapper {
    flex-direction: column;
  }
}

#map {
  width: 80%;
  height: 100%;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

@media only screen and (max-width: 992px) {
  #map {
    width: 100%;
    margin-top: 6vh;
  }
}

#map iframe {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  #map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 768px) {
  #map iframe {
    height: 250px;
  }
}

.modular-contact {
  background: #f6f7fb;
  position: relative;
  margin-top: calc(75px);
  margin-bottom: calc(75px);
}

.page-a-propos .modular-contact {
  margin-top: 150px;
  margin-bottom: 0;
  border-bottom: 1px solid #e6e7ee;
}

@media only screen and (max-width: 768px) {
  .page-a-propos .modular-contact {
    margin-top: 75px;
  }
}

.modular-contact .wave path {
  fill: #f6f7fb;
}

.modular-contact .wave:first-child {
  bottom: inherit;
  top: 0;
}

.modular-contact .wave:first-child svg {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

.modular-contact .wave:last-child {
  background: #f6f7fb;
  bottom: -150px;
  transform: rotate(-180deg);
}

.page-a-propos .modular-contact .wave:last-child,
.page-home .modular-contact .wave:last-child {
  display: none;
}

.modular-contact .form .appointment > *:nth-child(even) {
  padding-left: 1em;
}

.modular-contact .form .appointment > *:nth-child(odd) {
  padding-right: 1em;
}

.modular-contact .circle {
  background: #f6f7fb;
}

.modular-contact > .wrapper {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.modular-contact > .wrapper > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}

.modular-contact > .wrapper > * {
  flex-grow: inherit !important;
  flex: inherit !important;
  width: calc((100% / 2) - 0.75vw);
  width: calc((100% / 2) - 0.75vw);
  /*
    &:nth-child(2n) {
      //margin: auto;
    }

    @include lt-xs{
      @include rem(width, calc(100%) );
    }
    */
}

.modular-contact > .wrapper > *:nth-child(1n) {
  margin-right: 1.5vw;
}

.modular-contact > .wrapper > *:nth-child(2n) {
  margin-right: 0;
}

.modular-contact > .wrapper > header {
  display: none;
}

@media only screen and (max-width: 992px) {
  .modular-contact > .wrapper > div {
    width: 100% !important;
  }
}

.modular-contact > .wrapper .form {
  margin-top: 2em;
}

.modular-contact > .wrapper .form-field {
  width: 100% !important;
  margin-bottom: 1em;
  padding: 0;
}

.modular-contact > .wrapper .form-field.form-recaptcha {
  width: auto !important;
}

.modular-contact > .wrapper .positions .form-field > * {
  width: auto !important;
  display: inline-block;
}

#page-footer .footer-info {
  background: #f6f7fb;
  color: #1d1d1b;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info > .wrapper > div {
    flex-direction: column;
  }
}

#page-footer .footer-info [class$='-column'] {
  flex: 1;
  width: inherit;
  padding: 1.5vw;
  font-size: .8em;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info [class$='-column'] {
    text-align: center;
  }
}

#page-footer .footer-info [class$='-column'] h6 {
  margin-bottom: .8em;
}

#page-footer .footer-info [class$='-column'] p {
  line-height: 1.4em;
}

#page-footer .footer-info .first-column {
  flex: .7;
}

#page-footer .footer-info .first-column a {
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  #page-footer .footer-info .third-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

#page-footer .footer-info .third-column > div {
  padding-left: 0;
  padding-top: 0;
  border: none;
}

#page-footer .footer-info .third-column > div > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#page-footer .footer-info .third-column > div a {
  font-weight: 800;
}

#page-footer .footer-info .third-column > div a:first-of-type {
  padding-top: 0;
}

@media only screen and (max-width: 768px) {
  #page-footer .footer-info .third-column > div a {
    justify-content: center;
  }
}

#page-footer .footer-info .third-column > div address {
  padding-top: 0;
}

#page-footer .social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2vh;
}

@media only screen and (max-width: 768px) {
  #page-footer .social {
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  #page-footer .social a {
    margin: auto;
    display: inline-block;
    width: auto;
  }
}

#page-footer .social em {
  display: none;
}

#page-footer .footer-copyright {
  background: #e6e7ee;
  color: #373735;
  font-size: .9em;
}

#page-footer .footer-copyright .maven path {
  fill: #373735;
}

.page-error {
  height: 100vh;
  width: 100vw;
}

.section-error {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
}

.section-error:after {
  content: '';
  background: #fdcd40;
  background: linear-gradient(90deg, #fdcd40 0%, #e78382 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
  z-index: 0;
}

.section-error > .wrapper {
  z-index: 1;
}

.section-error h1 {
  margin-bottom: .5em;
}

.section-error i {
  font-size: 24vw;
  font-style: italic;
}

@media only screen and (min-width: 1600px) {
  .section-error i {
    font-size: 19em;
  }
}

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