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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*********************************************************************************/
/*********************************** COLORS **************************************/
/*********************************************************************************/
/*********************************************************************************/
/************************************ FONTS **************************************/
/*********************************************************************************/
/*********************************************************************************/
/********************************** GUTTERS **************************************/
/*********************************************************************************/
/*********************************************************************************/
/******************************** ELEMENTS ***************************************/
/*********************************************************************************/
* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #3353db;
}

img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 350px;
    margin: auto;
  }
}
b {
  font-weight: bolder;
}

ol {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 15px;
}
ol li:not(:last-child) {
  margin-bottom: 15px;
}
ol ol {
  margin-top: 15px;
  list-style: circle;
}

/*********************************************************************************/
/*********************************** IMPORTS *************************************/
/*********************************************************************************/
header {
  background: #f3f5ff;
  position: fixed;
  width: 100%;
  z-index: 999;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3353db;
  padding: 15px 30px;
}
header .container .logo-link {
  width: 75px;
  z-index: 999;
}
header .container .burger {
  font-size: 25px;
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90vh;
  position: fixed;
  left: 0;
  right: 0;
  padding: 60px 30px;
  background: #f3f5ff;
  text-align: center;
}
.menu a:not(.btn) {
  color: #3353db;
}
.menu .btn {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  header {
    position: relative;
    width: auto;
  }
  header .container {
    transition: padding 0.5s;
  }

  .sticky-header {
    position: fixed;
    width: 100%;
    margin: 0;
  }
  .sticky-header .container {
    padding: 15px 60px;
  }
}
@media screen and (min-width: 1025px) {
  header {
    margin: 30px 30px 0;
  }
  header .container {
    flex-wrap: wrap;
    padding: 30px 60px;
  }
  header .container > div .burger {
    display: none;
  }
  header .menu {
    display: flex;
    flex-direction: row;
    height: inherit;
    position: relative;
    padding: 0;
    align-items: center;
  }
  header .menu li {
    margin-left: 30px;
  }
  header .menu li a:hover {
    border-bottom: 1px solid #3353db;
  }
}
footer {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  border-top: 1px solid #F5F5F5;
  text-align: center;
  color: #393f5f;
}
footer .footer-row {
  padding-bottom: 15px;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer .copyright {
  color: #bfbfc6;
  font-size: 0.8em;
  display: block;
}
footer .phone {
  text-align: center;
}

@media screen and (min-width: 768px) {
  footer {
    text-align: left;
  }
  footer .containerx2 {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-column {
    display: block;
  }
  footer .footer-row .btn {
    margin: 0;
    cursor: pointer;
  }
}
body {
  font-family: "Avenir-Light", Helvetica, Arial, serif;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: 0.02em;
  color: #5e5e87;
}

main {
  text-align: center;
  margin-top: -1px;
  padding-top: 70px;
}

section {
  padding: 60px 0;
}

.container, .containerx2 {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 990px;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-between > div, .flex-between article {
  width: 100%;
}
.flex-between > img {
  height: 100%;
}

.flex-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.center {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  main {
    padding-top: 0;
  }

  section {
    padding: 60px 0;
  }

  .containerx2 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .flex-between > div {
    width: 40%;
  }
  .flex-between.right {
    text-align: left;
  }
  .flex-between.right img {
    order: 1;
    padding-left: 30px;
  }
  .flex-between.left {
    text-align: left;
  }
  .flex-between.left img {
    padding-right: 30px;
  }
  .flex-between > img {
    height: inherit;
  }

  .main-top {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1025px) {
  section:first-child {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.bg-blue {
  background: #f3f5ff;
}
.bg-blue h3 {
  color: #3353db;
}

.bg-green {
  background: #e8f9f4;
}
.bg-green h3 {
  color: #61a793;
}

.block-title {
  padding: 0 0 30px 0;
}

.block-one-column img:first-child {
  max-width: 380px;
}
.block-one-column .containerx2 {
  max-width: 450px;
  margin: auto;
}
.block-one-column article {
  margin-top: -60px;
  background: #fff;
  padding: 80px 10px 30px;
  box-shadow: 0 0 30px #F5F5F5;
}
.block-one-column article h2 {
  font: inherit;
  font-weight: 800;
}
.block-one-column article h2 .precision {
  display: block;
  margin-top: 10px;
  font-size: 0.8em;
  color: #3353db;
}
.block-one-column article .hr {
  padding-top: 30px;
  border-top: 2px solid #F5F5F5;
}
.block-one-column article p {
  margin-bottom: 30px;
}
.block-one-column .btn {
  margin-top: -30px;
}
.block-one-column .btn-blue:hover {
  background: #fff;
}

.block-three-columns article {
  margin: 0 0 30px;
}
.block-three-columns article img {
  max-width: 220px;
}

.block-partners ul li {
  max-width: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-features-blocks {
  display: none;
}

.features-community h2 {
  color: #157a5d;
}
.features-community h3 {
  color: #61a793;
}

.block-levy {
  padding: 0 30px 60px;
}
.block-levy > .flex-between {
  box-shadow: 0 0 30px #F5F5F5;
  margin: -50px 0 0 0;
}
.block-levy > .flex-between article {
  margin: 0;
  padding: 30px;
}
.block-levy > img {
  width: 75px;
  position: relative;
}
.block-levy article:first-child {
  background: #3353db;
  color: #fff;
  padding-top: 60px;
}
.block-levy article:first-child h2 {
  color: #fff;
  font-size: 22px;
  text-transform: none;
}
.block-levy article:last-child {
  color: #3353db;
  background: #fff;
}
.block-levy article:last-child .levy-pourcentage {
  font-family: "Abhaya Libre", Helvetica, Arial, serif;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
}
.block-levy .logo-levy {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.block-levy .logo-levy img {
  max-height: 18px;
}

.block-about {
  padding-top: 0;
}
.block-about > div > div {
  box-shadow: 0 0 30px #F5F5F5;
}
.block-about > div > div article {
  padding: 60px 30px;
}
.block-about > div > div .bg-picture {
  height: 350px;
  background-image: url("/images/IMG_6265.jpg");
  background-position: 88% 80%;
  background-size: 240%;
  background-repeat: no-repeat;
}

.popin {
  position: fixed;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.popin .popin-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.popin .fa-times {
  color: #fff;
  width: 100%;
  text-align: right;
  cursor: pointer;
  font-size: 20px;
}
.popin .btn {
  display: flex;
  align-items: center;
  text-align: center;
  width: 275px;
  padding: 30px;
}
.popin .btn p {
  text-align: center;
  margin: 0;
}
.popin .btn-blue:hover {
  background: #fff;
}
.popin .second-block {
  cursor: pointer;
  background: #fff;
  color: #3353db;
}
.popin .second-block:hover {
  background: #f3f5ff;
}
.popin .block-alone {
  background: #3353db;
  color: #fff;
  margin: 30px 0;
  padding: 30px 60px;
  border-radius: 2px;
  text-align: center;
}
.popin .block-alone p {
  text-align: center;
  margin: 0;
}
.popin .block-alone a {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.8em;
  cursor: pointer;
  border: 1px solid #3353db;
}
.popin .block-alone a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .block-title {
    padding-bottom: 60px;
    padding-top: 0;
    background: #f3f5ff;
  }

  .block-one-column img:first-child {
    max-width: 280px;
  }
  .block-one-column article {
    padding: 80px 30px 30px;
    margin-top: -45px;
  }

  .block-three-columns h2 {
    max-width: 450px;
  }
  .block-three-columns article {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0 30px;
  }
  .block-three-columns article:first-child h3, .block-three-columns article:last-child h3 {
    margin-top: 0;
  }
  .block-three-columns article:first-child img, .block-three-columns article:last-child img {
    max-width: 80%;
    margin-top: 15px;
    order: 2;
  }

  .hp-features-blocks {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: auto;
  }
  .hp-features-blocks > a {
    margin-top: 60px;
    padding: 60px;
    text-align: center;
    display: block;
    box-shadow: 0 0 30px #F5F5F5;
    width: 275px;
    background: #fff;
  }
  .hp-features-blocks > a:first-child {
    margin-right: 15px;
    color: #3353db;
  }
  .hp-features-blocks > a:first-child:hover {
    background: #f3f5ff;
  }
  .hp-features-blocks > a:last-child {
    color: #61a793;
  }
  .hp-features-blocks > a:last-child:hover {
    background: #e8f9f4;
  }
  .hp-features-blocks > a img {
    width: 90px;
  }
  .hp-features-blocks > a h3 {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .block-partners {
    padding-bottom: 60px;
  }
  .block-partners ul li {
    width: 20%;
  }

  .block-levy {
    padding: 60px 30px;
  }
  .block-levy .flex-between {
    margin: -60px auto 0;
    max-width: 700px;
  }
  .block-levy .flex-between article {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .block-levy .flex-between article:first-child, .block-levy .flex-between article:last-child {
    padding: 60px 30px;
  }

  .block-about > div > div {
    display: flex;
    justify-content: space-between;
  }
  .block-about > div > div article {
    width: 45%;
    padding: 60px;
  }
  .block-about > div > div .bg-picture {
    width: 55%;
    height: auto;
    background-position: 88% 72%;
  }
}
.btn {
  display: block;
  width: fit-content;
  padding: 15px 30px;
  margin: 30px auto;
  text-align: center;
  cursor: pointer;
  border: 1px solid #3353db;
  border-radius: 3px;
}
.btn:hover {
  background-color: #fff;
  color: #3353db;
}

.btn-blue {
  background-color: #3353db;
  color: #fff;
  border: 1px solid #3353db;
}
.btn-blue:hover {
  background-color: transparent;
  color: #3353db;
}

.btn-blue-empty {
  background: transparent;
  color: #3353db;
  border: 1px solid #3353db;
}
.btn-blue-empty:hover {
  background-color: #3353db;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: #3353db;
  border: 1px solid #fff;
}
.btn-white:hover {
  background-color: #3353db;
  color: #fff;
}

.btn-white-empty {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-white-empty:hover {
  background-color: #fff;
  color: #3353db;
}

.last-btn {
  margin-bottom: 0;
}

h1, h2 {
  font-family: "Abhaya Libre", Helvetica, Arial, serif;
  font-weight: 800;
  line-height: 1.4em;
  margin: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 30px;
  color: #393f5f;
}

h2 {
  font-size: 22px;
  color: #3353db;
}

h3 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 15px;
  margin-bottom: 30px;
}

h4 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 30px;
  margin-bottom: 15px;
  margin-left: 30px;
  font-size: 0.8em;
}

h5 {
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 0.1em;
  margin-top: 30px;
  margin-bottom: 15px;
  margin-left: 60px;
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 33px;
    margin-bottom: 30px;
  }
}
.HomePageController header {
  background: #3353db;
}
.HomePageController header .container {
  color: #fff;
}
.HomePageController header .logo-link {
  filter: brightness(0) invert(1);
}
.HomePageController header .menu {
  background: #3353db;
}
.HomePageController header .menu a:not(.btn) {
  color: #fff;
}
.HomePageController header .menu a:not(.btn):hover {
  border-color: #fff;
}
.HomePageController header .menu .btn {
  background-color: #fff;
  color: #3353db;
  border: 1px solid #fff;
}
.HomePageController header .menu .btn:hover {
  background-color: #3353db;
  color: #fff;
  border-color: #fff;
}
.HomePageController .block-title {
  background: #3353db;
  color: #fff;
}
.HomePageController .block-title h1 {
  color: white;
}
.HomePageController .block-title h2 {
  color: #fff;
}
.HomePageController .block-title .btn {
  margin-bottom: 30px;
}
.HomePageController .block-three-columns {
  padding-bottom: 130px;
}
.HomePageController .block-three-columns .btn {
  margin: 0 auto;
}
.HomePageController .bg-blue {
  padding-top: 30px;
}
.HomePageController .btn {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .HomePageController .block-title > .container {
    text-align: left;
  }
  .HomePageController .block-title > .container .btn {
    margin-left: 0;
    margin-bottom: 0;
  }
  .HomePageController .block-title > .container article {
    width: 50%;
  }
  .HomePageController .block-title > .container img {
    width: 50%;
  }
  .HomePageController .block-three-columns {
    padding-bottom: 200px;
  }
  .HomePageController .bg-blue {
    background: repeating-linear-gradient(#f3f5ff, #f3f5ff 85%, #fff 85%, #fff);
    padding-top: 0;
    padding-bottom: 0;
  }
  .HomePageController .bg-blue .btn {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .HomePageController .block-title > .container article {
    width: 33%;
  }
  .HomePageController .block-title > .container img {
    width: 67%;
  }
}

.FeaturesController section:not(.block-levy) {
  padding: 60px 0;
}
.FeaturesController section:not(.block-levy):first-child {
  padding-top: 0;
}
.FeaturesController section:not(.block-levy) article {
  margin: 30px 0;
}
.FeaturesController section:not(.block-levy) article:last-child {
  margin-bottom: 0;
}
.FeaturesController section:not(.block-levy) article h3 {
  margin-bottom: 15px;
}

.PricesController .block-title {
  padding-bottom: 0;
}
.PricesController .block-title h2 {
  margin-bottom: 0;
}
.PricesController .block-one-column {
  background: repeating-linear-gradient(#f3f5ff, #f3f5ff 66%, #fff 66%, #fff);
  padding-bottom: 0;
}
.PricesController .block-levy {
  padding-top: 0;
  padding-bottom: 0;
}
.PricesController .right img {
  margin-bottom: 30px;
}
.PricesController .right h2 {
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  color: #5e5e87;
}
.PricesController .right p {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .PricesController .flex-between.right {
    text-align: center;
  }
  .PricesController .block-one-column {
    padding-top: 30px;
    background: repeating-linear-gradient(#f3f5ff, #f3f5ff 40%, #fff 40%, #fff);
  }
  .PricesController .flex-between.right {
    text-align: center;
    max-width: 700px;
  }
}
@media screen and (min-width: 1025px) {
  .PricesController .block-one-column {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.ContactDemoController .flex-between img {
  display: none;
}
.ContactDemoController h1 {
  color: #3353db;
}
.ContactDemoController .pipedriveWebForms {
  height: 700px !important;
  min-width: inherit !important;
}
.ContactDemoController .pipedriveWebForms iframe {
  height: 100% !important;
  min-width: inherit !important;
}
@media screen and (min-width: 768px) {
  .ContactDemoController .flex-between img {
    display: block;
  }
  .ContactDemoController .flex-between > * {
    width: 50%;
    padding: 30px;
  }
  .ContactDemoController .flex-between img {
    height: 100%;
    padding-top: 90px;
  }
}

@media screen and (max-width: 344px) {
  .pipedriveWebForms {
    height: 1000px !important;
  }
}
.error main img {
  max-width: 350px;
  margin: 0 auto 30px;
}

.CguController p {
  margin-bottom: 15px;
}
.CguController section:not(:first-child) {
  padding-bottom: 0;
}
.CguController h2 {
  text-transform: uppercase;
}
.CguController h3 {
  text-transform: inherit;
  margin: 30px 0 15px;
  color: #3353db;
}
@media screen and (min-width: 768px) {
  .CguController * {
    text-align: left;
  }
}

.cookie-banner {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.8em;
  background: #3353db;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  display: none;
}
.cookie-banner .btn {
  display: inline-block;
  margin: 0 0 0 15px;
}
.cookie-banner p, .cookie-banner .btns-group {
  margin: 0;
  display: inline-block;
}
.cookie-banner * {
  text-align: center;
}
.cookie-banner.active {
  display: block;
}
@media screen and (max-width: 1024px) {
  .cookie-banner .container {
    padding: 0;
  }
  .cookie-banner .btns-group {
    display: block;
  }
  .cookie-banner .btn {
    margin-top: 15px;
  }
}

/*********************************************************************************/
/********************************** SPECIALS *************************************/
/*********************************************************************************/
.hidden {
  display: none;
}

.pourcentage {
  font-family: "Abhaya Libre", Helvetica, Arial, serif;
  font-weight: 800;
  font-size: 35px;
  display: block;
  margin-bottom: 15px;
}

.image-desktop {
  display: none;
}

.bg-wave {
  background-image: url("/images/bg-wave-3-mobile.png");
  background-position: center bottom;
  background-repeat: repeat-x;
}

@media screen and (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .illu-half {
    width: 50%;
  }

  .bg-wave {
    background-image: url("/images/bg-wave-3.png");
  }
}
@media screen and (min-width: 1024px) {
  .image-desktop {
    display: inherit;
  }

  .image-mobile {
    display: none;
  }
}

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