@import "normalize.css";
/*
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');
*/
body {
  font-weight: normal;
  letter-spacing: 0.6px;
  color: #0d47a1;
  background-color: #fff;
  font-family: 'Nunito Sans', sans-serif;
}
/* commons */
a {
  color: #f4763d;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: #d45a23;
}
h2 {
  font-size: 22px;
  font-weight: bold;
}
p {
  font-size: 16px;
  font-weight: normal;
}
ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
ul li {
  display: inline-block;
}
.button {
  font-size: 15px;
  line-height: 15px;
  font-weight: bold;
  background-color: #f4763d;
  color: #fff;
  padding: 10px 10px;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
}
.button:hover {
  background-color: #f7986d;
  color: #fff;
}
.button .lds-ring {
  display: none;
}
.button.working {
  background-color: #f7986d;
  color: #f7986d;
}
.button.working:hover {
  cursor: default;
}
.button.working .lds-ring {
  display: block;
}
.button .lds-ring {
  left: calc(50% - 23px);
  top: calc(50% - 23px);
}
/* dark background */
.dark-bg {
  color: #fff;
  background-color: #444;
}
.dark-bg a {
  color: #fff;
}
.dark-bg a:hover {
  color: #8A5998;
}
/* sections */
.section .next-section {
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  bottom: 10px;
  position: absolute;
  display: block;
  z-index: 100;
  -webkit-transition: bottom 0.2s ease;
  -moz-transition: bottom 0.2s ease;
  -o-transition: bottom 0.2s ease;
  -ms-transition: bottom 0.2s ease;
  transition: bottom 0.2s ease;
}
.section .next-section:before {
  transform: rotate(90deg);
  background-image: url('../img/ico-chevron-right-blue.svg');
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  position: absolute;
  display: block;
}
.section .next-section:hover {
  bottom: 12px;
}
.section:not(.home) {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section:not(.home) .title > h2 {
  position: relative;
  font-size: 34px;
  line-height: 34px;
  padding: 6px 10px 6px 24px;
  text-transform: uppercase;
  background-color: transparent;
  color: #0d47a1;
  display: inline-block;
}
.section:not(.home) .title > h2:before {
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 10px;
  background-color: #75B0C4;
  content: "";
  position: absolute;
  display: block;
}
.section:not(.home) .container-full .title > h2 {
  font-size: 40px;
  line-height: 40px;
  padding: 10px 10px 10px 60px;
}
/* section home */
.section {
  /* home */
  /* description */
  /* services */
  /* contact */
}
.section.home .top-home-wrapper {
  height: 100%;
  /*
            .home-image { background-image: url('../img/content-home-01.jpg'); width: 100%; height: 100%; position: absolute; background-size: cover; background-position: center; background-repeat: no-repeat; }
            */
  /*.home-slider { width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; z-index: 1;
                .slick-list, .slick-track { height: 100%; }
                .slider-element { height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat;
                    &[data-id="2"] { background-position: center; }
                    &[data-id="3"] { background-position: bottom; }
                }
            
            }*/
}
.section.home .top-home-wrapper .overlay {
  background: #fff;
  opacity: 0.5;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.section.home .top-home-wrapper .content-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.section.home .top-home-wrapper .content-wrapper .top-toast {
  min-height: 36px;
  left: 0px;
  top: 0px;
  width: 100%;
  font-weight: 300;
  font-size: 11px;
  padding: 2px 40px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #75b0c4;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section.home .top-home-wrapper .content-wrapper .top-toast:hover {
  background-color: #8abccd;
}
.section.home .top-home-wrapper .content-wrapper .top-toast .cta {
  margin-left: 2px;
}
.section.home .top-home-wrapper .content-wrapper .header-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 140px;
  height: 60px;
}
.section.home .top-home-wrapper .content-wrapper .header-logo img {
  width: 100%;
}
.section.home .top-home-wrapper .content-wrapper header {
  display: none;
  height: 60px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.section.home .top-home-wrapper .content-wrapper .container.title-wrapper {
  height: 100%;
  /* height: calc(100% - 60px); display: flex; align-items: center; justify-content: center; */
}
.section.home .top-home-wrapper .content-wrapper .container.title-wrapper .main-logo {
  width: 100%;
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.section.home .top-home-wrapper .content-wrapper .container.title-wrapper .title-image {
  width: 100%;
  height: 52%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.section.home .top-home-wrapper .content-wrapper .container.title-wrapper .actions {
  text-align: center;
}
.section.home .top-home-wrapper .content-wrapper .title {
  /*&:before { width: 100px; height: 100px; top: 0px; left: 0px; background-image: url('../img/logo.svg'); background-size: contain; background-position: center; background-repeat: no-repeat; content: ""; position: absolute; display: block; }*/
}
.section.home .top-home-wrapper .content-wrapper .title h1 {
  font-size: 2.2em;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
.section.home .top-home-wrapper .content-wrapper .title .subtitle {
  font-size: 1.1em;
  margin-top: 0px;
  color: #f4763d;
}
.section.home .top-home-wrapper .content-wrapper .title .description {
  font-size: 12px;
}
.section.home .title {
  text-align: center;
  font-size: 24px;
  width: 100%;
}
.section.home .button {
  font-size: 18px;
  line-height: 22px;
  padding: 16px 22px;
}
@media (max-width: 767px) {
  .section.home .top-home-wrapper .content-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .section.home .top-home-wrapper .content-wrapper .top-toast {
    color: #fff;
    font-size: 12px;
    padding: 10px 40px;
  }
  .section.home .top-home-wrapper .content-wrapper .container.title-wrapper .main-logo {
    height: 90px;
  }
  .section.home .top-home-wrapper .content-wrapper .container.title-wrapper .title-image {
    height: 28%;
  }
  .section.home .top-home-wrapper .content-wrapper .container.title-wrapper .title h1 {
    font-size: 1.6em;
    line-height: 1;
  }
  .section.home .top-home-wrapper .content-wrapper .container.title-wrapper .actions .button {
    margin-bottom: 10px;
  }
}
.section.description {
  background-color: #f0f8ff;
}
.section.description .portrait img {
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.section.description .geo-zone img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section.description .geo-zone img {
    margin-top: 10px;
  }
}
.section.services .button.last {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .section.services .button.last {
    margin-top: 40px;
  }
}
.section.contact {
  background-color: #f0f8ff;
}
.section.contact .contact-wrapper,
.section.contact .contact-wrapper h3,
.section.contact .contact-wrapper p {
  font-size: 24px;
  line-height: 28px;
  margin: 6px 0px;
}
.section.contact .contact-wrapper h3 {
  margin-bottom: 10px;
}
.section.contact .author-note {
  margin-top: 40px;
}
.section.contact .author-note p {
  padding: 10px 20px;
  border-left: 4px solid #eecb28;
  margin-left: 20px;
  width: calc(100% - 80px);
  font-style: italic;
}
@media (max-width: 767px) {
  .section.contact .contact-wrapper,
  .section.contact .contact-wrapper h3,
  .section.contact .contact-wrapper p {
    font-size: 21px;
    line-height: 26px;
  }
  .section.contact .title > h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 24px;
  }
  .section.contact .title > p {
    margin-top: 10px;
  }
}
.section form.contact .form-input {
  height: 2.4rem;
}
.section form.contact textarea.form-input {
  height: auto;
}
.section form.contact .button {
  text-align: center;
  padding: 20px 40px;
}
.section form.contact input[type=number]::-webkit-inner-spin-button,
.section form.contact inputinput[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section form.contact .form-group.inter {
  display: flex;
  justify-content: center;
}
.section form.contact .form-group.inter span {
  margin-top: 42px;
}
.section form.contact .form-group .form-label[for="phone"] > span {
  font-style: italic;
}
@media (max-width: 767px) {
  .section form.contact .form-group.inter span {
    font-size: 11px;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .section form.contact .col-inter {
    display: none;
    margin-bottom: 0px;
  }
}
.section form.contact .ferror {
  font-size: 13px;
  line-height: 16px;
  display: block;
  font-style: italic;
  color: #ff0000;
}
.section form.contact .contact-sent-ok {
  display: none;
  color: #54c147;
  background-color: #fff;
  font-size: 20px;
  line-height: 24px;
  padding: 20px 20px 20px 80px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  margin-left: auto;
  margin-right: auto;
}
.section form.contact .contact-sent-ok::before {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 80px;
  background-size: 44px;
  background-image: url('../img/ico-check-green.svg');
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
}
.section form.contact .contact-sent-ok.show {
  display: table;
}
.section form.contact .contact-sent-ko {
  display: none;
  color: #0d47a1;
  font-size: 15px;
  line-height: 18px;
  padding: 10px 0px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.section form.contact .contact-sent-ko.show {
  display: block;
}
.section form.contact.deactivate .form-group,
.section form.contact.deactivate > div {
  display: none;
}
/* recaptcha */
.grecaptcha-badge {
  display: none;
}
/* services card */
.services-card {
  min-height: 300px;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.services-card .inner {
  display: grid;
  vertical-align: middle;
  align-items: center;
  background-color: #b7dce9;
  color: #0d47a1;
  text-align: center;
  padding: 24px 14px 14px 6px;
  border-radius: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /*
        &:before { background-color: #36a9d2; content: ""; width: 0%; height: 100%; left: 0px; top: 0px; position: absolute; z-index: -2; .transition(all, 0.2s, ease); }
        &:after { background-color: #b7dce9; content: ""; width: 100%; height: 100%; left: 0px; top: 0px; position: absolute; z-index: -1; .transition(all, 0.2s, ease); }
        &:hover {
            &:before { width: 100%; z-index: -1; }
        }
        */
}
.services-card .inner:hover {
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.services-card .inner h3 {
  margin-top: 0px;
  font-size: 1.4em;
  font-weight: bold;
}
.services-card .inner .price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .services-card {
    min-height: initial;
  }
  .services-card .inner {
    position: relative;
  }
}
.last-service-card {
  text-align: center;
}
/* footer */
footer {
  padding: 40px 10px;
  text-align: center;
}
footer .logo-small {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
footer .copyright {
  font-size: 12px;
  margin-top: 10px;
  display: block;
}
@media (max-width: 767px) {
  footer .logo-small {
    width: 80%;
  }
}
/* sticker cta */
.sticky-cta {
  width: 52px;
  height: 40px;
  background-size: 20px;
  background-position: 16px center;
  background-repeat: no-repeat;
  background-image: url('../img/ico-contact-white.svg');
  background-color: #f4763d;
  position: fixed;
  right: 0px;
  bottom: 20px;
  display: block;
  z-index: 1000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sticky-cta:hover {
  width: 62px;
}
.sticky-cta.sticky-w-text {
  width: 160px;
  text-align: left;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 48px;
  text-decoration: none;
}
.sticky-cta.sticky-w-text:hover {
  width: 180px;
}
/* sticky logo */
.sticky-logo {
  position: fixed;
  top: -60px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 20;
}
.sticky-logo img {
  width: 100%;
}
.sticky-logo.show {
  top: 10px;
}
/* mobile menu */
.mobile-menu {
  top: 10px;
  right: 10px;
  display: block;
  position: fixed;
  box-sizing: border-box;
  z-index: 500;
}
.mobile-menu,
.mobile-menu.reduced {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.mobile-menu .menu-toggle {
  width: 40px;
  height: 40px;
  margin-right: 0px;
  display: block;
  float: right;
  position: relative;
  box-sizing: border-box;
}
.mobile-menu .menu-toggle .icon {
  display: block;
  position: absolute;
  width: 18px;
  height: 12px;
  left: 11px;
  top: 13px;
}
.mobile-menu .menu-toggle .icon span {
  display: block;
  width: 100%;
  position: absolute;
  height: 2px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mobile-menu .menu-toggle .icon span + span {
  margin-top: 5px;
  width: 18px;
  margin-left: 0px;
}
.mobile-menu .menu-toggle .icon span + span + span {
  margin-top: 10px;
  width: 100%;
  margin-left: 0px;
}
.mobile-menu .menu-toggle.active .icon span:first-child {
  top: 5px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-menu .menu-toggle.active .icon span:first-child + span {
  opacity: 0;
  filter: alpha(opacity=0);
}
.mobile-menu .menu-toggle.active .icon span:first-child + span + span {
  top: -5px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .mobile-menu {
    top: 4px;
  }
}
.mobile-navigation {
  position: fixed;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  max-width: 500px;
  top: 0px;
  left: 0px;
  background: #fff;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9999;
}
.mobile-navigation.visible {
  display: block;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.5);
}
.mobile-navigation .main-content-wrapper {
  width: 100%;
  height: calc(100% - 24px);
  padding: 14px;
  box-sizing: border-box;
}
.mobile-navigation .main-content-wrapper .top {
  width: 100%;
  box-sizing: border-box;
}
.mobile-navigation .main-content-wrapper .top .title {
  width: 100%;
  text-align: center;
}
.mobile-navigation .main-content-wrapper .top .title .main-logo {
  width: 100%;
}
.mobile-navigation .main-content-wrapper .top .title .main-logo img {
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.mobile-navigation .main-content-wrapper .top .title .mobile-title {
  font-size: 22px;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.mobile-navigation .main-content-wrapper .top .title .mobile-subtitle {
  font-size: 18px;
  line-height: 12px;
  margin-top: 4px;
  display: block;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu {
  position: absolute;
  top: 4px;
  right: 4px;
  color: #0d47a1;
  display: block;
  height: 40px;
  width: 40px;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon {
  display: block;
  position: absolute;
  width: 20px;
  height: 12px;
  left: 10px;
  top: 13px;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span {
  display: block;
  width: 100%;
  position: absolute;
  height: 2px;
  background: #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span + span {
  margin-top: 5px;
  width: 12px;
  margin-left: 1px;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span + span + span {
  margin-top: 10px;
  width: 100%;
  margin-left: 0px;
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span:first-child {
  top: 5px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span:first-child + span {
  opacity: 0;
  filter: alpha(opacity=0);
}
.mobile-navigation .main-content-wrapper .top .close-mobile-menu .icon span:first-child + span + span {
  top: -5px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile-navigation .main-content-wrapper .middle {
  text-align: center;
}
.mobile-navigation .main-content-wrapper .middle .menu {
  font-size: 16px;
  font-weight: 300;
  margin-top: 40px;
}
.mobile-navigation .main-content-wrapper .middle .menu li {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.2em;
}
.mobile-navigation .main-content-wrapper .middle .menu li a {
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-navigation .main-content-wrapper .middle .middle-participate {
  margin-top: 10px;
}
.mobile-navigation .main-content-wrapper .middle .middle-participate .button {
  min-width: 140px;
  padding: 20px;
}
.mobile-navigation .bottom {
  left: 0px;
  bottom: 0px;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  text-align: center;
}
.mobile-navigation .bottom .copyright {
  font-size: 10px;
}
@media (max-width: 767px) {
  .mobile-navigation .main-content-wrapper .top .title .main-logo img {
    height: 140px;
  }
  .mobile-navigation .main-content-wrapper .top .title .mobile-title {
    font-size: 24px;
  }
  .mobile-navigation .main-content-wrapper .top .title .mobile-subtitle {
    font-size: 20px;
    line-height: 16px;
  }
  .mobile-navigation .main-content-wrapper .middle .menu {
    font-size: 22px;
  }
  .mobile-navigation .main-content-wrapper .middle .menu li {
    font-size: 14px;
  }
}
/* mobile menu dynamic color */
.landing.fp-viewing-accueil .mobile-menu,
.landing.fp-viewing-description .mobile-menu,
.landing.fp-viewing-services .mobile-menu,
.landing.fp-viewing-contact .mobile-menu {
  top: 10px;
  right: 10px;
  display: block;
  position: fixed;
  box-sizing: border-box;
  z-index: 500;
}
.landing.fp-viewing-accueil .mobile-menu,
.landing.fp-viewing-description .mobile-menu,
.landing.fp-viewing-services .mobile-menu,
.landing.fp-viewing-contact .mobile-menu,
.landing.fp-viewing-accueil .mobile-menu.reduced,
.landing.fp-viewing-description .mobile-menu.reduced,
.landing.fp-viewing-services .mobile-menu.reduced,
.landing.fp-viewing-contact .mobile-menu.reduced {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.landing.fp-viewing-accueil .mobile-menu .menu-toggle,
.landing.fp-viewing-description .mobile-menu .menu-toggle,
.landing.fp-viewing-services .mobile-menu .menu-toggle,
.landing.fp-viewing-contact .mobile-menu .menu-toggle {
  width: 40px;
  height: 40px;
  margin-right: 0px;
  display: block;
  float: right;
  position: relative;
  box-sizing: border-box;
}
.landing.fp-viewing-accueil .mobile-menu .menu-toggle .icon,
.landing.fp-viewing-description .mobile-menu .menu-toggle .icon,
.landing.fp-viewing-services .mobile-menu .menu-toggle .icon,
.landing.fp-viewing-contact .mobile-menu .menu-toggle .icon {
  display: block;
  position: absolute;
  width: 18px;
  height: 12px;
  left: 11px;
  top: 13px;
}
.landing.fp-viewing-accueil .mobile-menu .menu-toggle .icon span,
.landing.fp-viewing-description .mobile-menu .menu-toggle .icon span,
.landing.fp-viewing-services .mobile-menu .menu-toggle .icon span,
.landing.fp-viewing-contact .mobile-menu .menu-toggle .icon span {
  background: #f4763d;
}
/* fp */
body #fp-nav {
  z-index: 999;
}
body #fp-nav.fp-left {
  left: 0px;
}
body #fp-nav ul li,
body #fp-nav .fp-slidesNav ul li {
  margin: 0px;
  height: 20px;
}
body #fp-nav.fp-show-active ul li:hover a.active + .fp-tooltip {
  opacity: 1;
}
body #fp-nav ul li a span,
body #fp-nav .fp-slidesNav ul li a span {
  background-color: transparent;
}
body #fp-nav ul li a span,
body #fp-nav .fp-slidesNav ul li a span,
body #fp-nav ul li a.active span,
body #fp-nav .fp-slidesNav ul li a.active span,
body #fp-nav ul li:hover a.active span,
body #fp-nav .fp-slidesNav ul li:hover a.active span,
body #fp-nav ul li:hover a span,
body #fp-nav .fp-slidesNav ul li:hover a span {
  height: 10px;
  width: 10px;
  border: 1px solid #75B0C4;
  margin: 0px;
}
body #fp-nav ul li a.active span,
body #fp-nav .fp-slidesNav ul li a.active span,
body #fp-nav ul li:hover a.active span,
body #fp-nav .fp-slidesNav ul li:hover a.active span,
body #fp-nav ul li:hover a span,
body #fp-nav .fp-slidesNav ul li:hover a span {
  background-color: #75B0C4;
}
body #fp-nav ul li a.active span,
body #fp-nav .fp-slidesNav ul li a.active span,
body #fp-nav ul li:hover a.active span,
body #fp-nav .fp-slidesNav ul li:hover a.active span {
  border-radius: 50%;
}
body #fp-nav ul li a,
body #fp-nav .fp-slidesNav ul li a {
  padding-right: 6px;
}
body #fp-nav ul li .fp-tooltip {
  background-color: #333;
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  font-weight: 700;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  transition: none !important;
}
body #fp-nav .fp-sr-only {
  display: none;
}
body #fp-nav ul li .fp-tooltip.fp-left {
  left: 24px;
  top: 2px;
}
body #fp-nav.fp-show-active a.active + .fp-tooltip {
  opacity: 0;
}
body #fp-nav.fp-show-active a + .fp-tooltip {
  opacity: 0;
}
@media (max-width: 991px) {
  body #fp-nav {
    display: none;
  }
}
/* spinner */
.lds-ring {
  display: inline-block;
  position: absolute;
  width: 46px;
  height: 46px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* containers */
.container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.container-full {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}
@media (max-width: 767px) {
  .container {
    width: 94%;
  }
}
@media (min-width: 1439px) {
  .container {
    width: 70%;
  }
}
@media (min-width: 1939px) {
  .container {
    width: 55%;
  }
}
/* commons */
.cleaner {
  clear: both;
}
/* layout */
.row {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.row:after {
  clear: both;
}
.row .col-no-padding {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.row div[class*="col-xs"],
.row div[class*="col-sm"],
.row div[class*="col-md"],
.row div[class*="col-lg"],
.row div[class*=" col-xs"],
.row div[class*=" col-sm"],
.row div[class*=" col-md"],
.row div[class*=" col-lg"] {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.row div[class*="col-xs"].inner-row,
.row div[class*="col-sm"].inner-row,
.row div[class*="col-md"].inner-row,
.row div[class*="col-lg"].inner-row,
.row div[class*=" col-xs"].inner-row,
.row div[class*=" col-sm"].inner-row,
.row div[class*=" col-md"].inner-row,
.row div[class*=" col-lg"].inner-row {
  padding-left: 0px;
  padding-right: 0px;
  margin-bottom: 0px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
@media (max-width: 479px) {
  .col-xxs-1,
  .col-xxs-2,
  .col-xxs-3,
  .col-xxs-4,
  .col-xxs-5,
  .col-xxs-6,
  .col-xxs-7,
  .col-xxs-8,
  .col-xxs-9,
  .col-xxs-10,
  .col-xxs-11,
  .col-xxs-12 {
    float: left;
  }
  .col-xxs-12 {
    width: 100%;
  }
  .col-xxs-11 {
    width: 91.66666667%;
  }
  .col-xxs-10 {
    width: 83.33333333%;
  }
  .col-xxs-9 {
    width: 75%;
  }
  .col-xxs-8 {
    width: 66.66666667%;
  }
  .col-xxs-7 {
    width: 58.33333333%;
  }
  .col-xxs-6 {
    width: 50%;
  }
  .col-xxs-5 {
    width: 41.66666667%;
  }
  .col-xxs-4 {
    width: 33.33333333%;
  }
  .col-xxs-3 {
    width: 25%;
  }
  .col-xxs-2 {
    width: 16.66666667%;
  }
  .col-xxs-1 {
    width: 8.33333333%;
  }
}
@media (max-width: 767px) {
  .xs-hidden {
    display: none !important;
  }
  .xs-clearfix {
    clear: both;
  }
  .row div[class*="col-xs"],
  .row div[class*="col-sm"],
  .row div[class*="col-md"],
  .row div[class*="col-lg"],
  .row div[class*=" col-xs"],
  .row div[class*=" col-sm"],
  .row div[class*=" col-md"],
  .row div[class*=" col-lg"] {
    padding-left: 0px;
    padding-right: 0px;
  }
  .xs-text-centered {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-hidden {
    display: none !important;
  }
  .sm-clearfix {
    clear: both;
  }
  .sm-text-centered {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .md-hidden {
    display: none !important;
  }
  .md-clearfix {
    clear: both;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .lg-hidden {
    display: none !important;
  }
  .lg-clearfix {
    clear: both;
  }
}
.container-full.no-padding .col-xs-1,
.container-full.no-padding .col-xs-2,
.container-full.no-padding .col-xs-3,
.container-full.no-padding .col-xs-4,
.container-full.no-padding .col-xs-5,
.container-full.no-padding .col-xs-6,
.container-full.no-padding .col-xs-7,
.container-full.no-padding .col-xs-8,
.container-full.no-padding .col-xs-9,
.container-full.no-padding .col-xs-10,
.container-full.no-padding .col-xs-11,
.container-full.no-padding .col-xs-12 {
  padding: 0px;
}
