:root {
  --bleu-telmatik: #002a54;
  --blue: #2196f3;
  --telmatik-green: #c8d23d;
  --darker-grey: #333;
  --dark-blue: #1565c0;
  --grey-mid: #a8a8a8;
  --white: white;
  --light-grey: #335576;
  --dark-grey: #5d5d5d;
  --grey: #dbdbdb;
  --green: #4caf50;
  --crimson: #d32f2f;
  --black: black;
  --slate-grey: #607d8b;
  --lime: #cddc39;
  --teal: #00bfa5;
  --pink: #d81b60;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --cyan: #00bcd4;
  --gold: #ffc107;
  --orange: #f45a1e;
  --brown: #795548;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 40px;
}

h2 {
  color: #002a54;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
}

h3 {
  color: #002a54;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: underline;
}

h4 {
  color: #002a54;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

h5 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h6 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

p {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
}

ol {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

strong {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--bleu-telmatik);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background-color: #002a54f5;
  box-shadow: 0 2px 5px #0003;
}

.button.blue {
  color: #002a54;
  background-color: #c8d23d;
  border: 1px #002a54;
  border-radius: 10px;
  padding-left: 100px;
  padding-right: 100px;
  font-weight: 600;
  transition-property: none;
}

.button.blue:hover {
  color: #002a54;
  background-color: #c8d23d;
  border: 1px #002a54;
  box-shadow: 0 2px 5px #0003;
}

.button.blue.cta {
  background-color: var(--telmatik-green);
  color: var(--bleu-telmatik);
  text-align: center;
  border-radius: 10px;
  flex-direction: row;
  order: 1;
  justify-content: center;
  width: auto;
  margin-left: 0;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: flex;
}

.button.black {
  background-color: var(--darker-grey);
}

.button.black:hover {
  background-color: #000;
}

.button.black.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button.full-width {
  width: 100%;
  display: block;
}

.button.small {
  background-color: var(--blue);
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 14px;
}

.button.small:hover {
  background-color: var(--dark-blue);
}

.button.tab {
  background-color: var(--grey-mid);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover {
  background-color: #7e7e7e;
}

.button.tab.w--current {
  background-color: var(--blue);
}

.button.tab.w--current:hover {
  background-color: var(--dark-blue);
}

.button.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button._2 {
  border: 2px solid var(--bleu-telmatik);
  color: var(--bleu-telmatik);
  background-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
}

.button._2:hover {
  background-color: var(--bleu-telmatik);
  color: var(--white);
}

.button.bottom {
  background-color: var(--bleu-telmatik);
  border-radius: 10px;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 100px;
  padding-right: 100px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  display: flex;
}

.button.bottom.w--current {
  background-color: var(--bleu-telmatik);
}

.button._1 {
  border-radius: 10px;
  margin-top: 10px;
}

.navigation-link {
  float: none;
  color: #fff;
  padding: 8px 40px 8px 0;
  font-size: 14px;
}

.navigation-link:hover, .navigation-link.w--current {
  color: #c8d23d;
}

.navigation-link.white {
  color: #fff;
}

.navigation-link.right {
  float: right;
  color: var(--white);
  padding-left: 40px;
  padding-right: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.navigation-bar {
  background-color: var(--bleu-telmatik);
  color: var(--light-grey);
  height: 40px;
  position: static;
}

.navigation-bar.dark {
  background-color: var(--dark-grey);
}

.navigation-bar.top {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 58px;
  margin-bottom: 124px;
}

.navigation-menu {
  float: left;
  display: none;
}

.navigation-menu.left {
  float: left;
}

.navigation-menu.on-bottom {
  float: none;
  text-align: center;
}

.brand-text {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 26px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.right {
  float: right;
}

.brand-link.on-top {
  float: none;
  text-align: center;
  display: block;
}

.brand-link.white {
  color: #fff;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left-spacing.w--current {
  float: left;
}

.brand-link.left {
  margin-left: 16px;
}

.section {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section.centered {
  text-align: center;
}

.section.accent {
  background-color: #f3f3f3;
}

.section.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.section.fond {
  background-image: linear-gradient(#ffffffcf, #ffffffcf);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-slider {
  background-color: #fff;
  height: 455px;
}

.slide {
  background-color: #fff;
  background-image: url('../images/01.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 82px;
  padding-left: 85px;
  padding-right: 85px;
}

.slide.two {
  background-image: url('../images/02.jpg');
  background-size: cover;
}

.slide.two.fr {
  background-image: url('../images/2019-10-28.jpg');
  background-position: 50% 80%;
  background-size: cover;
}

.slide.three {
  background-image: url('../images/3.png');
  background-position: 100%;
  background-size: auto;
}

.slide.three.fr {
  background-image: url('../images/2019-10-29-1.jpg');
  background-size: cover;
}

.slide.fr {
  background-image: url('../images/2019-10-29-3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.header-section {
  background-color: var(--dark-grey);
  color: #fff;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.page-heading {
  margin-top: 0;
  margin-bottom: 11px;
}

.page-subheading {
  text-align: center;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.cta-section {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-section.centered {
  text-align: center;
}

.cta-section.centered-accented {
  color: #fff;
  text-align: center;
  background-color: #c8d23d;
  margin-bottom: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.cta-section.centered-accented.home {
  flex-direction: column;
}

.cta-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-heading.inline-block {
  margin-top: 0;
  margin-bottom: 5px;
  margin-right: 13px;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

.cta-heading.inline-block.smaller {
  font-size: 22px;
}

.cta-heading.inline-block.home-fr {
  color: #fff;
  margin-bottom: 0;
  margin-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
}

.cta-heading.inline-block.home-fr._1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.cta-heading.inline-block.home-fr._1.mobile {
  display: none;
}

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

.white-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.fixed-image-section {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000040, #00000040), url('../images/Telamtik-fond-ecran.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 117px 20px;
}

.hero-section {
  height: 100vh;
  padding-top: 250px;
}

.hero-section.centered {
  text-align: center;
}

.slider-navigation {
  font-size: 11px;
}

.slider-icon-circle {
  width: 50px;
  height: 50px;
  padding: 6px;
  font-size: 33px;
}

.hero-heading {
  color: #002a54;
  font-family: Open Sans, sans-serif;
  font-size: 50px;
  line-height: 48px;
}

.hero-heading.white {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 40px;
}

.hero-subheading {
  color: #002a54;
  margin-bottom: 18px;
  font-family: Open Sans, sans-serif;
}

.hero-subheading.white {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.hollow-button {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.hollow-button.white {
  color: #fff;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #ffffffb8;
  border-color: #ffffffa3;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.centered {
  color: var(--bleu-telmatik);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.main-container {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.form-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 13px;
}

.section-subheading.center {
  text-align: center;
  font-size: 20px;
}

.section-title-group {
  margin-bottom: 62px;
}

.section-title-group.centered {
  text-align: center;
}

.form-field {
  border-style: none;
  border-radius: 3px;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-field.with-button {
  float: left;
  width: 75%;
  margin-bottom: 0;
}

.form-wrapper.squeezed {
  padding-left: 19%;
  padding-right: 19%;
}

.picture-border {
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #0000001f;
}

.round-image {
  border-radius: 100px;
  margin-bottom: 13px;
}

.social-button {
  background-color: var(--blue);
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  background-color: var(--dark-blue);
  opacity: 1;
}

.social-button.border {
  background-color: #0000;
  border: 1px solid #0000005c;
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  opacity: 1;
  padding: 3px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 100px;
  margin-bottom: 15px;
}

.hero-with-nav {
  background-color: var(--grey);
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer.center {
  text-align: center;
}

.footer.centered-smaller {
  padding-top: 33px;
  padding-bottom: 33px;
}

.footer.accent {
  background-color: #002a54;
  padding-top: 30px;
  display: block;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer.centered-accented {
  background-color: var(--light-grey);
  text-align: center;
}

.float-right {
  float: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: var(--blue);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: var(--dark-blue);
}

.footer-brand-text {
  font-size: 26px;
  line-height: 33px;
}

.sidemenu-wrapper {
  margin-left: 10px;
  padding-left: 20px;
}

.sidemenu-title {
  margin-bottom: 10px;
}

.sidemenu-link {
  color: #8f8f8f;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  display: block;
}

.sidemenu-link:hover {
  color: var(--darker-grey);
}

.grid-image {
  margin-bottom: 20px;
}

.info-wrapper {
  margin-bottom: 14px;
}

.info-icon {
  float: left;
}

.info-text {
  margin-left: 34px;
}

.footer-link {
  color: #fff;
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #3b99d9;
}

.footer-link.w--current {
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
}

.footer-link.w--current:hover {
  color: #3b99d9;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.footer-link.new {
  font-weight: 400;
}

.hero-title-wrapper {
  margin-bottom: 155px;
}

.icon-left {
  float: left;
  color: #919191;
  padding: 6px;
}

.text-right {
  margin-left: 49px;
}

.left-navigation {
  float: left;
  background-color: var(--grey);
  width: 20%;
  height: 100vh;
}

.nav-link {
  text-align: center;
  padding: 7px 0;
  display: block;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.content {
  float: left;
  width: 80%;
  overflow: hidden;
}

.social-footer {
  text-align: center;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.flushed-grid {
  float: left;
  width: 25%;
}

.flushed-grid.thirds {
  width: 33.33%;
}

.flushed-grid.sixths {
  width: 16.66%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.success-wrapper {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  margin-bottom: 0;
}

.error-wrapper {
  background-color: var(--crimson);
  color: #fff;
  border-radius: 5px;
}

.error-message {
  margin-bottom: 0;
}

.social-link-wrapper {
  text-align: center;
}

.background {
  background-color: var(--grey);
}

.custom-container {
  background-color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.rich-text h1, .rich-text h3, .rich-text h5, .rich-text h4, .rich-text h6 {
  margin-top: 30px;
}

.feature-column, .waterfall-image-column {
  text-align: center;
}

.div-block {
  background-color: #002a54;
  height: 50px;
}

.container-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.top-section {
  background-color: #fff;
}

.div-block-2 {
  float: right;
}

.phone-numbers {
  color: #000;
  padding-top: 10px;
}

.green {
  color: #c8d23d;
  text-align: right;
  font-family: Montserrat, sans-serif;
  display: inline;
}

.phone-link {
  float: right;
  color: #000;
}

.right {
  max-width: 1300px;
}

.div-container {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading {
  color: #002a54;
  text-align: center;
  margin-bottom: 10px;
  padding-top: 40px;
  font-family: Montserrat, sans-serif;
}

.heading-2 {
  color: #002a54;
  font-size: 30px;
}

.heading-2._1 {
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
}

.div-block-3 {
  display: none;
}

.heading-3 {
  font-size: 18px;
  line-height: 20px;
}

.heading-3._2 {
  color: var(--white);
  text-align: left;
  font-size: 16px;
}

.services-row {
  margin-bottom: 10px;
}

.services-row.home {
  margin-left: auto;
  margin-right: auto;
}

.services-row.home.en {
  width: 100%;
}

.services-wrapper {
  background-color: #a8a8a866;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  display: flex;
}

.services-icon {
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.services-heading {
  color: #002a54;
  text-align: center;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  display: block;
}

.services-text {
  color: var(--black);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.services-button {
  box-shadow: 1px 1px 3px 0 var(--slate-grey);
  color: #002a54;
  text-align: center;
  background-color: #c8d23d;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.services-button:hover {
  box-shadow: 2px 2px 5px 0 var(--slate-grey);
}

.services-button.on-page {
  margin-right: 10px;
  display: inline-block;
}

.services-button.home {
  box-shadow: none;
  text-align: left;
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.services-button.home:hover {
  background-color: #c8d23ded;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  box-shadow: 0 2px 5px #0003;
}

.services-button.home.desk {
  border-radius: 10px;
  padding-left: 60px;
  padding-right: 60px;
}

.services-button.home.desk:hover {
  box-shadow: 0 2px 5px #1a274033;
}

.services-button.full {
  box-shadow: none;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
}

.services-button.full:hover {
  box-shadow: 0 2px 5px #0003;
}

.description-service p {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 22px;
}

.description-service em {
  position: relative;
  top: 8px;
}

.cta-container {
  text-align: left;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-container.fr {
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.cta-container.fr.titre.mobile {
  display: block;
}

.slider {
  height: 150px;
}

.slide-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-4 {
  flex-wrap: wrap;
  place-content: center;
  align-items: center;
  display: flex;
}

.clients {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  max-width: 1300px;
  padding-bottom: 30px;
  display: flex;
}

.logo {
  padding: 5px 0;
}

.nouvelles {
  font-size: 14px;
}

.nouvelles li {
  padding-bottom: 10px;
}

.text-block {
  float: left;
  padding-right: 5px;
}

.html-embed {
  margin-left: -15px;
}

.text-block-2 {
  border-left: 1px #000;
  border-right: 1px #e4e4e4;
  margin-top: 10px;
  padding: 20px 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.text-block-2.not {
  padding-top: 0;
  font-weight: 400;
}

.text-block-2.bas {
  border-right-color: #fff;
  border-left-color: var(--light-grey);
  padding-top: 20px;
  font-weight: 400;
}

.form-block {
  border: 1px solid var(--grey-mid);
  background-color: #eeec;
  border-radius: 5px;
  padding: 15px;
}

.submit-button {
  background-color: #002a54;
  border-radius: 10px;
  font-size: 14px;
}

.float-left {
  float: left;
  padding-right: 20px;
}

.container-3 {
  align-items: center;
  max-width: 78%;
  margin-bottom: 20px;
  padding-bottom: 0;
  display: block;
}

.container-3.old {
  margin-bottom: 0;
}

.heading-4 {
  background-color: var(--bleu-telmatik);
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.column {
  padding-top: 10px;
}

.div-block-4 {
  text-align: center;
  padding-bottom: 20px;
}

.container-4 {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.retour {
  color: #c8d23d;
}

.retour:hover {
  color: #002a54;
}

.image {
  width: 100%;
  padding-bottom: 15px;
}

.image-2 {
  width: 100%;
}

.hero-slider-en {
  background-color: #fff;
  height: 455px;
}

.textarea {
  padding-top: 30px;
  padding-bottom: 30px;
}

.column-2 {
  padding-right: 60px;
}

.column-2._1 {
  padding-right: 0;
}

.number-title {
  color: var(--lime);
  margin-bottom: 0;
  padding-top: 0;
}

.heading-5 {
  clear: right;
  color: var(--bleu-telmatik);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.services-slider {
  background-color: #0000;
  padding-left: 100px;
  padding-right: 100px;
}

.icon {
  color: var(--bleu-telmatik);
}

.icon.en {
  color: #0000;
}

.slider-2 {
  height: 350px;
  padding-left: 0;
  padding-right: 0;
}

.container-6 {
  max-width: 78%;
  display: block;
}

.container-7 {
  max-width: 1300px;
  padding-bottom: 20px;
}

.div-block-5 {
  float: right;
  background-color: #002a54cc;
  border-radius: 3px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}

.columns-2 {
  width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.block-quote {
  border-left-color: var(--telmatik-green);
  background-color: var(--bleu-telmatik);
  color: var(--white);
  border-radius: 10px;
  padding: 50px;
}

.testimonial {
  border-left-color: var(--bleu-telmatik);
  max-width: 1300px;
  padding-top: 25px;
  padding-bottom: 50px;
}

.text-block-3 {
  text-align: center;
  margin-top: -10px;
  padding-bottom: 20px;
}

.slide-6 {
  background-image: url('../images/2019-10-28.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
}

.bold-text {
  font-size: 15px;
}

.coin {
  z-index: 999;
  float: right;
  width: 70px;
  position: relative;
  top: -25px;
  left: 28px;
}

.image-4 {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}

.text-block-4 {
  padding-bottom: 15px;
}

.page-subtitle {
  font-family: Open Sans, sans-serif;
  font-size: 18px;
}

.body-2 {
  font-family: Open Sans, sans-serif;
}

.heading-6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 36px;
}

.div-block-6 {
  border: 6px solid var(--teal);
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.html-embed-2 {
  border-width: 1px;
  border-color: #000;
  height: 100px;
}

.formsite {
  justify-content: flex-start;
  align-items: center;
}

.formsite-block {
  justify-content: flex-start;
  padding-left: 0;
  display: block;
}

.home-cta {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-cta.centered {
  text-align: center;
}

.home-cta.centered-accented {
  background-color: var(--bleu-telmatik);
  color: #fff;
  text-align: left;
  flex-direction: column;
  margin-bottom: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.home-cta.centered-accented.home {
  flex-direction: column;
}

.subtitle {
  padding-top: 10px;
}

.subtitle p {
  margin-bottom: 5px;
}

.subtitle li {
  font-size: 12px;
}

.subtitle em {
  position: relative;
  top: 8px;
}

.div-block-7 {
  text-align: center;
  padding-bottom: 20px;
}

.number {
  margin-bottom: 20px;
}

.columns-4 {
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.text-span {
  color: var(--telmatik-green);
}

.sous-titre {
  color: var(--bleu-telmatik);
  text-align: left;
  font-size: 16px;
}

.text-block-5 {
  text-align: left;
  padding-bottom: 40px;
}

.heading-7 {
  padding-top: 0;
}

.bold-text-2 {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

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

.hero {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.flex-container {
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  flex: 0 .5 auto;
  width: 100%;
  height: 100%;
}

.left {
  text-align: left;
}

.simplicite {
  background-color: var(--bleu-telmatik);
  margin-top: 50px;
  margin-bottom: auto;
  padding-bottom: 0;
}

.center {
  text-align: center;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.center._1 {
  margin-bottom: 20px;
}

.industry {
  max-width: none;
  padding-bottom: 10px;
}

.text {
  max-width: 1300px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.text-span-2 {
  font-size: 12px;
}

.heading-8 {
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 400;
}

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

.column-5 {
  padding-left: 0;
  padding-right: 0;
}

.column-6 {
  padding-left: 0;
}

.language {
  position: absolute;
  inset: 0% 0% auto 69px;
}

.sticky-nav {
  z-index: 1;
  background-color: var(--white);
  padding: 20px;
  position: sticky;
  top: 0;
}

.nav-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content max-content max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.nav-logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: auto;
  height: 100%;
}

.nav-link-2 {
  color: #444;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.nav-link-2:hover {
  text-decoration: underline;
}

.navbar {
  background-color: #ddd0;
  justify-content: center;
  align-items: baseline;
}

.container-8 {
  max-width: 1300px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container-8.hide-old {
  display: none;
}

.top-link {
  float: none;
  padding: 8px 40px 8px 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.top-link:hover, .top-link.w--current {
  color: #c8d23d;
}

.top-link.white {
  color: #fff;
}

.top-link.right {
  float: right;
}

.top-link._2 {
  background-color: var(--bleu-telmatik);
  color: var(--telmatik-green);
  margin-bottom: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: block;
}

.top-link._2.w--open {
  background-color: var(--bleu-telmatik);
  color: var(--telmatik-green);
}

.top-link.blanc {
  color: var(--white);
}

.nav-button {
  background-color: var(--telmatik-green);
  color: var(--bleu-telmatik);
  font-weight: 600;
}

.nav-menu-2 {
  padding-top: 10px;
  display: flex;
}

.nav-menu-3 {
  padding-top: 10px;
}

.navbar-2 {
  background-color: #fff;
}

.services-button-2 {
  color: #002a54;
  text-align: center;
  background-color: #c8d23d;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 1px 1px 3px #607d8b;
}

.services-button-2:hover {
  box-shadow: 2px 2px 5px #607d8b;
}

.services-button-2.home {
  text-align: left;
  border-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}

.services-button-2.home:hover {
  background-color: #c8d23ded;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}

.top-link-2 {
  float: none;
  color: #000;
  padding: 8px 40px 8px 0;
  font-size: 16px;
  font-weight: 400;
}

.top-link-2:hover, .top-link-2.w--current {
  color: #c8d23d;
}

.red {
  color: var(--crimson);
}

.image-6 {
  padding-bottom: 20px;
}

.zoho-form {
  flex: 1;
  max-width: 100%;
}

.banner-image {
  background-image: url('../images/3738.jpg');
  background-position: 50%;
  background-size: cover;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  display: inline-block;
}

.banner-image.elevator, .banner-image.service {
  background-image: none;
}

.banner-image.travaix-publics {
  background-image: url('../images/excavator-action.png');
}

.banner-image.courtier {
  background-image: url('../images/immocontact-centre-appels-gestion-courtier-immobilier.jpg');
}

.banner-image.absence {
  background-image: url('../images/gestion-des-absences-telmatik.jpg');
}

.banner-image.installations {
  background-image: url('../images/gestion-des-installations-telmatik.jpg');
}

.banner-image.sac {
  background-image: url('../images/telmatik-service-a-la-clientele.jpg');
}

.banner-image.travailleur-isole {
  background-image: url('../images/pexels-kelly-lacy-2898199.jpg');
  background-position: 100%;
}

.banner-image.alerte-au-citoyens {
  background-image: url('../images/2019-10-28.jpg');
}

.banner-image.ethique {
  background-image: url('../images/ligne-dethique-employes.png');
}

.banner-image.urgence {
  background-image: url('../images/ligne-urgence-telmatik.png');
  background-position: 50% 0;
}

.banner-image.alerte {
  background-image: none;
}

.section-2.relative {
  z-index: 1;
  color: #93e650;
  margin-top: 40px;
  margin-bottom: 100px;
  position: relative;
}

.section-2.white-section {
  background-color: #fff;
}

.div-block-8 {
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.image-7 {
  margin-bottom: 30px;
}

.image-8 {
  margin-top: 50px;
}

.image-9 {
  margin-top: 50px;
  padding-bottom: 30px;
}

.container-10 {
  margin-top: 20px;
}

.more-services {
  margin-bottom: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.dautres {
  max-width: 1300px;
  padding-bottom: 30px;
}

.dautres.hide {
  display: none;
}

.other {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-heading-bottom {
  color: #002a54;
  text-align: center;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  display: block;
}

.bottom-service {
  text-align: left;
  cursor: pointer;
  width: 300px;
  padding: 10px;
}

.bottom-service.w--current {
  background-color: #0000;
}

.bottom-column {
  justify-content: center;
  display: flex;
}

.button-container {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.button-container._50 {
  margin-bottom: 50px;
}

.div-block-9 {
  border-right: 1px none var(--light-grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.subtile {
  color: var(--darker-grey);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.drop.w--open {
  background-color: #fff;
}

.drop._2.w--open {
  position: relative;
}

.dropdown-link {
  color: var(--bleu-telmatik);
  padding-right: 10px;
  font-family: Montserrat, sans-serif;
}

.dropdown-link:hover, .dropdown-link.w--current {
  background-color: var(--bleu-telmatik);
  color: var(--telmatik-green);
}

.dropdown {
  padding-right: 10px;
}

.dropdown._2 {
  background-color: #002a54;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
  display: block;
}

.dropdown._2:hover {
  color: var(--telmatik-green);
}

.dropdown._2.menu {
  background-color: var(--bleu-telmatik);
  height: auto;
  margin-bottom: 2px;
}

.dropdown._2.menu.last, .dropdown._2.menu.bas {
  margin-bottom: 0;
}

.container-11 {
  max-width: 78%;
}

.check {
  background-image: url('../images/checkmark-for-verification.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 25px;
  padding-bottom: 15px;
  padding-left: 30px;
}

.why-choose-telmatik {
  padding-top: 20px;
  padding-bottom: 40px;
}

.text-block-7 {
  padding-bottom: 20px;
}

.container-12 {
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.heading-9 {
  font-family: Montserrat, sans-serif;
}

.essai-gratuit {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--telmatik-green);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.text-span-3 {
  text-decoration: underline;
}

.text-block-8 {
  font-size: 22px;
  font-weight: 500;
}

.text-block-9 {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}

.heading-10 {
  font-size: 22px;
  text-decoration: none;
}

.div-block-10 {
  background-color: var(--bleu-telmatik);
  color: var(--light-grey);
  border-radius: 10px;
  margin-top: 40px;
  padding: 30px;
}

.text-block-10 {
  color: var(--white);
  text-align: center;
  padding-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
}

.heading-11 {
  color: #fff;
  text-align: center;
  font-size: 30px;
}

.text-block-11, .text-block-12, .bold-text-3 {
  text-align: center;
}

.case {
  text-align: center;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: block;
}

.text-block-13 {
  text-align: center;
  padding-top: 30px;
  font-size: 22px;
}

.div-block-11 {
  padding-top: 40px;
}

.bold-text-4 {
  font-size: 22px;
  line-height: 22px;
}

.paragraph {
  background-image: url('../images/checkmark-for-verification.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 30px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 26px;
}

.cta-button {
  background-color: var(--telmatik-green);
  color: var(--bleu-telmatik);
  text-align: center;
  border-radius: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.cta-button.w--current {
  font-size: 22px;
}

.text-block-14 {
  text-align: center;
}

.heading-12 {
  font-size: 22px;
  line-height: 22px;
}

.heading-13, .bold-text-5 {
  font-size: 30px;
}

.bold-text-5.b {
  color: var(--white);
}

.columns-5 {
  align-items: center;
  display: flex;
}

.politique h1 {
  font-size: 20px;
}

.politique h2 {
  font-size: 18px;
}

.essai-gratuit-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #c8d23d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #002a54;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button-2:hover {
  background-color: #002a54f5;
}

.button-2.w--current {
  background-color: #2e80b6;
}

.button-2._1 {
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-12 {
  color: #f1f1f1;
  background-color: #002a54;
  margin-top: 40px;
  padding: 30px;
}

._311 h3 {
  background-image: url('../images/9806-02.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 30px;
  padding-left: 40px;
  text-decoration: none;
}

.container-13 {
  background-image: url('../images/telmatik-banniere-page-accueil-v2.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 450px;
}

.div-block-13 {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.div-block-14 {
  width: 800px;
  margin-top: 160px;
  padding-left: 0;
  display: block;
}

.div-block-14.anglo {
  width: 800px;
}

.heading-14 {
  color: var(--bleu-telmatik);
  background-color: #c9d23e;
  border-radius: 0;
  margin-right: -7px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 7px;
  font-size: 42px;
}

.heading-14.anglo {
  width: auto;
}

.heading-14.mobile {
  display: none;
}

.heading-14.desk {
  color: var(--white);
  background-color: #c9d23e00;
  border-radius: 10px;
  margin-bottom: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 47px;
}

.heading-15 {
  color: var(--white);
  margin-left: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.div-block-15 {
  margin-left: 0;
}

.div-block-16 {
  background-color: #002b54;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
}

.paragraph-2 {
  color: var(--white);
  text-align: left;
}

.columns-6 {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.columns-6.mobile {
  display: none;
}

.columns-7 {
  align-items: center;
  display: flex;
}

.container-14 {
  max-width: 1300px;
}

.div-block-18 {
  color: var(--dark-grey);
  border: .25px solid #33333391;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text-block {
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.image-11 {
  padding: 40px 200px;
}

.div-block-19 {
  text-align: left;
}

.div-block-20 {
  margin-bottom: 20px;
}

.container-15 {
  max-width: 1300px;
  margin-bottom: 20px;
}

.div-block-21 {
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
  display: block;
}

.button-3 {
  color: #002c54;
  background-color: #c9d23e;
  border-radius: 10px;
  padding: 10px 100px;
  font-weight: 600;
}

.paragraph-3 {
  margin-bottom: 10px;
  line-height: 18px;
}

.heading-16 {
  text-align: center;
}

.html-embed-3, .html-embed-4 {
  justify-content: center;
  display: flex;
}

.columns-36 {
  align-items: center;
  display: flex;
}

.html-embed-13 {
  justify-content: center;
  padding-left: 40px;
  display: block;
}

.column-102 {
  padding-left: 30px;
  padding-right: 0;
}

.heading-17 {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}

.text-block-15 {
  text-align: left;
  padding-right: 10px;
  font-family: Montserrat, sans-serif;
  line-height: 1.5em;
}

.column-103, .column-104 {
  padding-left: 30px;
  padding-right: 0;
}

.container-16 {
  max-width: 1300px;
  margin-bottom: 40px;
}

.html-embed-14, .html-embed-15 {
  padding-left: 40px;
}

.container-17 {
  max-width: 1300px;
  margin-bottom: 40px;
}

.heading-18, .heading-19, .heading-20, .heading-21, .heading-22, .heading-23, .heading-24, .heading-25, .heading-26, .heading-27, .heading-28, .heading-29, .heading-30, .heading-31, .heading-32, .heading-33, .heading-34, .heading-35, .heading-36, .heading-37 {
  text-align: center;
}

.container-18 {
  max-width: 1300px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.paragraph-faq {
  text-align: left;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: Montserrat, sans-serif;
  line-height: 22px;
}

.block-faq-title-2 {
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.faq-title-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.space {
  height: 10px;
}

.text-span-74 {
  color: #002a54;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 28px;
}

.icon-arrow-2 {
  margin-left: 14px;
}

.text-block-47 {
  margin-bottom: 20px;
}

.bold-text-12 {
  font-weight: 600;
}

.div-block-35 {
  text-align: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding-left: 0;
  font-family: Open Sans, sans-serif;
  display: block;
}

.image-37 {
  padding-bottom: 20px;
}

.link-7 {
  text-align: center;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.block-faq-bg-5 {
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 23px 0;
  transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
  box-shadow: 0 10px 15px -10px #0a0e201f;
}

.block-faq-bg-5:hover {
  transform: scale(.98);
  box-shadow: 0 10px 0 -10px #0a0e201f;
}

.text-block-48, .html-embed-16 {
  text-align: center;
}

.container-19 {
  max-width: 1300px;
}

.heading-38 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.container-20 {
  max-width: 1300px;
}

.div-block-37.outt {
  display: none;
}

.italic-text-2 {
  font-family: Montserrat, sans-serif;
}

.container-21, .container-22 {
  max-width: 1300px;
}

.bold-text-13, .bold-text-14 {
  color: var(--black);
  font-size: 16px;
}

.bold-text-15 {
  font-size: 20px;
}

.container-23 {
  max-width: 1300px;
}

.heading-39 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

.heading-40 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 60px;
  font-weight: 500;
}

.heading-41 {
  text-align: center;
  font-weight: 500;
}

.heading-42 {
  color: #fff;
  text-align: center;
  background-color: #002b54;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 700;
}

.container-24 {
  max-width: 1300px;
}

.container-25 {
  max-width: 1300px;
  margin-bottom: 60px;
}

.container-26, .container-27, .container-28, .container-29 {
  max-width: 1300px;
}

.container-30, .container-31 {
  max-width: 78%;
}

.container-32 {
  max-width: 1300px;
}

.container-33 {
  max-width: 78%;
}

.container-34, .container-35, .container-36, .container-37, .container-38, .container-39, .container-40, .container-41, .container-42, .container-43, .container-44 {
  max-width: 1300px;
}

.container-45 {
  max-width: 78%;
}

.container-46, .container-47, .container-48, .container-49, .container-50, .container-51, .container-52, .container-53, .container-54, .container-55, .container-56, .container-57, .container-58, .container-59, .container-60, .container-61, .container-62, .container-63, .container-64, .container-65, .container-66, .container-67, .container-68, .container-69, .container-70, .container-71 {
  max-width: 1300px;
}

.container-72 {
  max-width: 78%;
}

.container-73, .container-74, .container-75, .container-76, .container-77, .container-78, .container-79, .container-80, .container-81, .container-82, .container-83 {
  max-width: 1300px;
}

.heading-43 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

.html-embed-18 {
  text-align: center;
}

.container-84, .container-85, .container-86, .container-87 {
  max-width: 1300px;
}

.container-88, .container-89 {
  max-width: 78%;
}

.container-90 {
  max-width: 1300px;
}

.container-91 {
  max-width: 78%;
}

.container-92 {
  max-width: 1300px;
}

.container-93 {
  max-width: 78%;
}

.bold-text-16, .text-block-49, .text-block-50, .text-block-51, .text-block-52, .text-block-53, .text-block-54, .text-block-55, .text-block-56, .text-block-57, .text-block-58, .text-block-59, .text-block-60 {
  line-height: 20px;
}

.container-94 {
  max-width: 1300px;
}

.container-95 {
  background-image: url('../images/chat4.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  height: 300px;
  margin-bottom: 20px;
  display: flex;
}

.container-95.services {
  background-image: url('../images/image-Telmatik-nos-solutions.png');
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin-bottom: 20px;
  display: flex;
}

.container-95.muni, .container-95.muni.express {
  background-image: url('../images/image-Telmatik-municipalite.png');
  max-width: 1300px;
  margin-bottom: 20px;
}

.container-95.career {
  background-image: url('../images/image-Telmatik-carriere.png');
}

.container-95.career.blogue {
  background-image: url('../images/ban.png');
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  height: 450px;
}

.container-95.contact {
  background-image: url('../images/Image-telmatik-contact.png');
  margin-bottom: 20px;
}

.container-95.contact.hide {
  display: none;
}

.container-95.sommes {
  background-image: url('../images/image-Telmatik-nous-sommes.png');
  max-width: 1300px;
}

.div-block-55 {
  padding-top: 0;
  padding-left: 0;
}

.div-block-55.blogue {
  padding-left: 40px;
}

.text-block-61 {
  color: #fff;
  text-align: center;
}

.heading-45 {
  color: var(--white);
  text-align: center;
  margin-bottom: 5px;
  font-size: 30px;
}

.heading-45.blogue {
  margin-bottom: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
}

.heading-46 {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 22px;
  font-weight: 400;
}

.heading-46.blogue {
  text-align: left;
  font-family: Montserrat, sans-serif;
}

.container-96, .container-97, .container-98, .container-99, .container-100, .container-101, .container-102, .container-103, .container-104, .container-105, .container-106, .container-107 {
  max-width: 1300px;
}

.container-108, .container-109 {
  text-align: center;
  max-width: 1300px;
}

.container-110, .container-111, .container-112 {
  max-width: 1300px;
}

.body-3 {
  display: block;
}

.columns-37, .columns-38 {
  align-items: center;
  display: flex;
}

.html-embed-29, .text-block-62 {
  text-align: center;
}

.div-block-57, .div-block-58 {
  justify-content: center;
  display: flex;
}

.text-span-75 {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  top: -4px;
}

.text-span-76 {
  font-size: 12px;
  font-style: italic;
  position: relative;
  top: -4px;
}

.column-153 {
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-60, .div-block-61 {
  padding-left: 50px;
  padding-right: 50px;
}

.div-block-62 {
  background-color: var(--bleu-telmatik);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}

.text-block-63 {
  color: #fff;
  text-align: left;
}

.text-span-81 {
  color: #fff;
}

.bold-text-31 {
  color: #fff;
  font-size: 16px;
}

.link-17 {
  color: #fff;
}

.column-154 {
  padding-left: 10px;
  padding-right: 10px;
}

.bold-text-32 {
  color: var(--bleu-telmatik);
}

.heading-47 {
  color: var(--lime);
  margin-bottom: 0;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
}

.heading-48 {
  color: var(--lime);
  margin-bottom: 0;
  padding-top: 10px;
  font-family: Montserrat, sans-serif;
}

.heading-49 {
  color: var(--lime);
  margin-bottom: 0;
  padding-top: 10px;
}

.container-114, .container-115, .container-116 {
  max-width: 1300px;
}

.image-38 {
  margin-top: 0;
  margin-bottom: 40px;
}

.image-39 {
  margin-bottom: 40px;
}

.html-embed-30 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  top: -5px;
  left: -55px;
}

.collection-list-category {
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: flex;
}

.no-posts-message {
  margin-bottom: 1em;
}

.button-with-icon {
  color: #242b41;
  background-color: #0000;
  background-image: url('../images/3043234_13043234.png');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 25px;
  padding: 5px 40px 5px 10px;
  font-size: 24px;
  font-weight: 700;
  transition: background-position .3s;
}

.button-with-icon:hover {
  background-position: 100%;
}

.button-with-icon.back-home {
  background-image: url('../images/fleche-03_1fleche-03.png');
  background-position: 100%;
}

.article-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: #93e650;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.article-grid.big-item-grid {
  grid-template-columns: 1fr;
}

.category-dropdown-wrapper {
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.container-117 {
  color: #93e650;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.button-block-holder {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 2em;
  display: flex;
}

.article-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 2em;
}

.categories-drop-down {
  display: none;
}

.no-posts {
  font-size: 60px;
}

.fade-in-on-scroll {
  display: block;
}

.category-dropdown-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.scroll-id {
  width: 1px;
  height: 300px;
  position: absolute;
  inset: -80px auto auto 0%;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  border-radius: 3px;
  padding: 1em;
  font-size: 18px;
  display: none;
}

.article-item {
  color: #93e650;
  text-align: left;
  border-radius: 9px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-141 {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.div-block-141.new2 {
  justify-content: flex-start;
}

.grid-12-columns {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-items: start;
  width: 100%;
  padding: 0;
  display: block;
}

.text-block-96 {
  color: #1a2740;
  font-family: Roboto, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.button-4 {
  color: #1a2740;
  background-color: #fff;
  border-radius: 8px;
  padding-left: 140px;
  padding-right: 140px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.button-4.vert {
  background-color: #43e424;
  padding-left: 150px;
  padding-right: 150px;
}

.button-4.vert:hover {
  transform: scale(1.05);
}

.div-block-85 {
  background-color: #42e424;
  height: 10px;
}

.text-block-94 {
  color: #050601;
  text-align: center;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
}

.text-block-94.haut.white {
  color: #fff;
  text-align: left;
}

.text-block-94.haut.ff {
  text-align: left;
}

.text-block-94._2 {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.category-with-hashtag-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.container-118 {
  color: #93e650;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 .125em;
}

.container-118.article-container {
  background-color: #fff;
  max-width: 1140px;
}

.bold-text-33 {
  font-size: 20px;
  line-height: 22px;
}

.rich-text-block-4 {
  margin-top: 0;
}

.current-author {
  color: #a8a8a8;
  font-size: 14px;
}

.div-block-142 {
  margin-right: 10px;
}

.columns-39 {
  border-radius: 1px;
}

.article-date-text {
  color: #a8a8a8;
  padding-right: 4px;
  font-size: 16px;
  line-height: 1;
}

.hero-article-title {
  color: #1a2740;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 33px;
  line-height: 35px;
}

.button-5 {
  color: #1a2740;
  background-color: #42e424;
  border-radius: 8px;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.button-5.bouton {
  padding-left: 150px;
  padding-right: 150px;
}

.button-5.bouton:hover {
  background-color: #42e424;
  transform: scale(1.05);
}

.by-author-text {
  color: #a8a8a8;
  padding-right: 3px;
  font-size: 14px;
}

.author-block {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-95 {
  color: #1a2740;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.div-block-143 {
  margin-bottom: 10px;
}

.div-block-143.white {
  margin-bottom: 25px;
}

.container-119 {
  background-color: #fffefe;
  border-radius: 8px;
  max-width: 1140px;
  margin-top: 40px;
  margin-bottom: 100px;
  padding: 0;
  display: block;
  box-shadow: 0 2px 5px #00000024;
}

.article-details-category {
  color: #42e424;
  text-transform: none;
  font-size: 35px;
}

.hero-article-block-holder {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.div-block-140 {
  text-align: center;
  position: relative;
  top: 10px;
}

.div-block-140.gauche {
  top: 18px;
}

.hero-article-image {
  width: 100%;
}

.column-69 {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 220px;
  padding: 30px 20px 20px;
  display: block;
}

.column-69.test {
  height: 250px;
  padding-left: 30px;
  padding-right: 30px;
}

.date-block {
  color: #09c;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  display: flex;
}

.published-date {
  color: #a8a8a8;
  font-size: 14px;
}

.article-details-read-min {
  color: #09c;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.article-details-category-holder {
  color: #1a2740;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
}

.text-min {
  color: #a8a8a8;
}

.column-70 {
  background-color: #1a2740;
  border-radius: 1px 8px 8px 1px;
  height: 250px;
  padding: 30px 30px 20px;
}

.about-article {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.link-block {
  padding-left: 0;
}

.image-40 {
  padding-bottom: 20px;
}

.heading-52 {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  font-weight: 500;
}

.heading-53, .block-quote-2, .list, .heading-54, .list-2, .block-quote-3, .heading-55 {
  color: #333;
}

.div-block-144 {
  margin-bottom: 20px;
}

.container-120 {
  color: #93e650;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 .125em;
}

.container-120.category-container {
  flex-direction: column;
  max-width: 70%;
}

.collection-list-wrapper {
  display: block;
}

.div-block-145 {
  flex: 0 auto;
  display: block;
}

.collection-list-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.collection-list {
  display: flex;
}

.collection-item {
  margin-right: 10px;
}

.text-block-97 {
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 600;
}

.heading-56 {
  color: var(--bleu-telmatik);
  font-size: 22px;
  line-height: 35px;
}

.image-41 {
  text-align: right;
  border-radius: 0;
  box-shadow: 0 2px 5px #0003;
}

.column-155 {
  text-align: center;
}

.columns-40 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-146 {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.div-block-147 {
  align-items: center;
  padding-left: 16px;
  display: flex;
}

.text-block-98 {
  color: #333;
  font-size: 16px;
}

.container-121 {
  max-width: 1300px;
  margin-bottom: 40px;
  display: block;
}

.container-122 {
  max-width: 1300px;
}

.heading-57 {
  color: var(--bleu-telmatik);
  -webkit-text-stroke-color: var(--bleu-telmatik);
  font-size: 22px;
  line-height: 35px;
  text-decoration: underline;
}

.heading-57.white {
  color: var(--light-grey);
}

.heading-57.white._2 {
  text-decoration: none;
}

.div-block-148 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.columns-41 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-42, .image-43, .image-44, .image-45 {
  max-width: none;
}

.container-123 {
  text-align: left;
  max-width: 78%;
  padding: 20px;
}

.container-123.bleu {
  background-color: var(--bleu-telmatik);
  max-width: 1300px;
  margin-bottom: 60px;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
}

.container-123.bas {
  max-width: 100%;
  margin-bottom: 0;
}

.container-123.n {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}

.text-block-99 {
  color: var(--bleu-telmatik);
  font-size: 60px;
  font-weight: 700;
}

.div-block-149 {
  border-left: 3px solid var(--telmatik-green);
  padding: 20px 0 20px 10px;
}

.div-block-150 {
  background-color: var(--white);
  border-radius: 18px;
  height: 212px;
  padding: 20px 15px;
  box-shadow: 0 2px 5px #0003;
}

.columns-42 {
  margin-bottom: 20px;
}

.white {
  color: #fff;
}

.text-block-100, .text-block-101, .text-block-102 {
  font-size: 15px;
  line-height: 19px;
}

.div-block-151, .div-block-152, .div-block-153 {
  margin-bottom: 10px;
}

.div-block-154 {
  justify-content: center;
  align-items: center;
  display: block;
}

.html-embed-31 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: block;
}

.container-124 {
  max-width: 1300px;
  margin-bottom: 20px;
}

.container-124.mobile {
  display: none;
}

.container-125 {
  max-width: 94%;
}

.div-block-156 {
  background-color: var(--bleu-telmatik);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-156.en {
  background-image: url('../images/newnew.png');
}

.div-block-156.hide {
  display: none;
}

.div-block-157 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.heading-58 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 22px;
  line-height: 26px;
}

.paragraph-5 {
  color: #fff;
  margin-bottom: 10px;
}

.columns-43 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-158 {
  border-left: 1px solid #fff;
  padding-left: 40px;
  padding-right: 20px;
}

.slider-3 {
  background-color: #cad23f;
  height: 150px;
  padding-top: 0;
}

.container-126 {
  max-width: 78%;
}

.div-block-159 {
  text-align: center;
  margin-top: 44px;
}

.slide-7 {
  padding-top: 0;
}

.container-127, .container-128 {
  margin-bottom: 5px;
}

.div-block-160 {
  max-width: 708%;
}

.div-block-161 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.dropdown-toggle {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-link-2 {
  display: block;
}

.dropdown-list {
  display: flex;
}

.dropdown-list.w--open {
  vertical-align: baseline;
}

.dropdown-toggle-2 {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.dropdown-2 {
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.icon-2 {
  position: relative;
}

.icon-3 {
  margin-left: auto;
  margin-right: 0;
}

.div-block-162 {
  display: flex;
}

.text-block-103 {
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.button-6 {
  background-color: var(--light-grey);
  text-align: center;
  border-radius: 10px;
  width: 225.203px;
  padding: 6px 40px;
  font-size: 14px;
}

.button-6:hover {
  box-shadow: 0 2px 5px #0003;
}

.columns-44 {
  margin-bottom: 20px;
}

.div-block-163 {
  border-right: 1px #0000004d;
  margin-right: 10px;
}

.container-129 {
  margin-bottom: 20px;
}

.container-129.vert {
  background-color: var(--telmatik-green);
  border-radius: 5px;
  max-width: 700px;
}

.container-129.vert.eng {
  max-width: 650px;
}

.div-block-164 {
  border-left: 1px solid #0003;
  padding-left: 20px;
}

.paragraph-8 {
  color: var(--bleu-telmatik);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.paragraph-8.fleche {
  font-size: 30px;
}

.rich-text-block-7, .rich-text-block-8 {
  line-height: 18px;
}

.div-block-165 {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.column-160 {
  text-align: center;
}

.text-block-104 {
  font-weight: 500;
}

.text-block-105 {
  color: var(--telmatik-green);
  font-size: 16px;
  font-weight: 500;
}

.column-161, .column-162 {
  text-align: center;
}

.text-span-82, .bold-text-34, .bold-text-35, .bold-text-36, .bold-text-37, .bold-text-38 {
  color: var(--white);
}

.container-130, .container-131, .container-132, .container-133, .container-134, .container-135, .container-136, .container-137, .container-138, .container-139, .container-140, .container-141 {
  max-width: 1300px;
}

.container-142 {
  max-width: none;
}

.container-143, .container-144, .container-145, .container-146, .container-147, .container-148, .container-149, .container-150, .container-151, .container-152, .container-153, .container-154, .container-155, .container-156, .container-157, .container-158, .container-159, .container-160, .container-161, .container-162 {
  max-width: 1300px;
}

.bold-text-40 {
  color: #fff;
}

.bold-text-42 {
  color: var(--white);
}

.text-span-83 {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  top: -4px;
}

.bold-text-44 {
  font-weight: 400;
}

.heading-64 {
  margin-bottom: 0;
}

.heading-65 {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
}

.heading-66 {
  font-family: Montserrat, sans-serif;
}

.container-163, .container-164 {
  max-width: 1300px;
}

.intro-block-icon {
  height: 50px;
  margin-bottom: 22px;
}

.block-paragraph {
  text-align: left;
  margin-bottom: 0;
  font-size: 12px;
}

.intro-block-title {
  color: var(--bleu-telmatik);
  text-align: left;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.container-165 {
  max-width: 1300px;
  margin-bottom: 40px;
  position: relative;
}

.section-4 {
  margin-bottom: 60px;
  padding: 40px 0;
}

.intro-link-block {
  perspective: 483px;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 10px;
  padding: 0 0 45px;
  text-decoration: none;
  transition: transform .2s;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.intro-link-block:hover {
  color: #fffc;
  text-decoration: none;
  transform: rotateX(0)rotateY(10deg)rotateZ(0);
}

.intro-column {
  perspective: 2000px;
}

.div-block-167 {
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-168 {
  margin-bottom: 20px;
}

.image-46 {
  border-radius: 10px 10px 0 0;
  display: block;
}

.container-166 {
  background-image: url('../images/banner-telmatik-2025.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  max-width: 1300px;
  height: 450px;
  margin-bottom: 40px;
}

.container-166._2 {
  background-image: url('../images/iStock-1219700578.jpg');
}

.container-166._3 {
  background-image: url('../images/iStock-1144295812.jpg');
}

.container-166._4 {
  background-image: url('../images/communication.webp');
}

.container-166.ia {
  background-image: url('../images/duo-ia-1-31.webp');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-167 {
  max-width: 1300px;
}

.section-5 {
  color: var(--bleu-telmatik);
  margin-bottom: 40px;
}

.div-block-169 {
  display: flex;
}

.div-block-170 {
  width: 50%;
}

.paragraph-9 {
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-171 {
  margin-right: 20px;
  padding-right: 30px;
}

.container-168 {
  max-width: 1300px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bold-text-45 {
  color: var(--bleu-telmatik);
  font-weight: 400;
}

.bold-text-45.titre {
  font-weight: 700;
}

.heading-67 {
  color: var(--bleu-telmatik);
  margin-bottom: 0;
}

.sidebar-title {
  margin-bottom: 25px;
  font-size: 21px;
  font-weight: 700;
}

.sidebar-content-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.sidebar-paragraph {
  margin-bottom: 10px;
  line-height: 20px;
}

.category-list {
  perspective: 2000px;
}

.sidebar-content-block {
  padding: 30px 20px;
}

.sidebar-block {
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 5px #0000001f;
}

.sidebar-block-wrapper {
  margin-bottom: 30px;
}

.article-item-2 {
  position: relative;
}

.article-block-right {
  float: right;
}

.overall-dynamic-list {
  perspective: 2000px;
}

.sidebar-image-block {
  background-image: url('../images/ceiling-lamp-contemporary-curtains-1439712.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.sidebar-image-block:hover {
  text-decoration: none;
}

.sidebar-image-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 27px;
}

.sidebar-image-title.link-text {
  color: #ffffffb3;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
}

.sidebar-image-title.link-text:hover {
  color: #fff;
}

.sidebar-image-overlay-block {
  color: #fff;
  background-color: #002a54cc;
  padding: 30px 20px;
  transition: background-color .2s;
}

.sidebar-image-overlay-block:hover {
  background-color: #21316399;
}

.link-107 {
  color: #1273e2;
  text-align: left;
  font-weight: 400;
  text-decoration: underline;
}

.link-107:hover {
  color: #1a2740;
}

.div-block-182 {
  margin-bottom: 10px;
}

.div-block-173 {
  margin-bottom: 20px;
}

.image-47 {
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-47:hover {
  box-shadow: 0 2px 5px #0003;
}

.link-108 {
  color: #1273e2;
  font-weight: 400;
  text-decoration: underline;
}

.link-108:hover {
  color: #1a2740;
}

.div-block-183 {
  padding-top: 20px;
}

.div-block-183.hide {
  background-color: #f5f7f980;
  border-radius: 10px;
  width: 300px;
  margin-top: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.div-block-183.hide.shadow {
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px #0000001a;
}

.div-block-183.hide.video {
  background-color: #ffffff80;
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

.div-block-178 {
  box-shadow: 0 2px 5px #0003;
}

.image-48 {
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-48:hover {
  box-shadow: 0 2px 5px #0003;
}

.div-block-176 {
  text-align: left;
  border-bottom: 1px solid #0000001a;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.div-block-176.last {
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-176.last.line {
  border-bottom-style: none;
}

.text-block-108 {
  color: #333;
  text-align: left;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.text-block-108.video {
  padding-left: 20px;
}

.div-block-180 {
  margin-bottom: 10px;
}

.div-block-174 {
  flex: 1;
  margin-left: 40px;
}

.div-block-174.last {
  margin-left: 0;
}

.div-block-175 {
  text-align: left;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.paragraph-10, .paragraph-11 {
  text-align: justify;
}

.bold-text-46, .paragraph-12, .paragraph-13 {
  font-size: 16px;
}

.text-block-109 {
  color: var(--bleu-telmatik);
  text-decoration: underline;
}

.link-block-24 {
  text-decoration: none;
}

.container-169 {
  text-align: center;
  max-width: 1300px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.text-span-85 {
  color: #121331;
  font-weight: 600;
  text-decoration: none;
}

.div-block-185 {
  border-radius: 10px;
  width: 305px;
  padding: 20px 40px;
  box-shadow: 0 2px 5px #0003;
}

.text-span-86 {
  color: #121331;
  text-decoration: underline;
}

.code-embed {
  text-align: center;
}

.text-block-110 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.hide {
  display: none;
}

.text-block-111 {
  text-align: center;
  text-decoration: none;
}

.text-span-87 {
  color: #121331;
  font-weight: 600;
  text-decoration: none;
}

.container-170 {
  display: flex;
}

.text-span-88 {
  color: #121331;
  text-decoration: underline;
}

.container-171.mobile {
  display: none;
}

.body-4 {
  background-color: #fff;
  background-image: url('../images/zxczxc.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.container-174 {
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  height: 500px;
  margin-bottom: 140px;
  padding-top: 100px;
  display: block;
}

.code-embed-2 {
  text-align: right;
}

.div-block-188 {
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-right: 100px;
  padding: 20px;
  display: flex;
}

.div-block-188.audio {
  background-color: #f1f3f4;
  border-radius: 20px;
  padding-bottom: 10px;
  padding-left: 100px;
  padding-right: 100px;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.div-block-189, .heading-68 {
  flex: 1;
}

.image-49 {
  margin-right: 10px;
}

.div-block-190 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-191 {
  margin-bottom: 20px;
}

.text-block-112 {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.div-block-192 {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.button-icon {
  color: #fbf9fc;
  text-align: center;
  background-color: #8f00ff;
  border-radius: 90px;
  height: auto;
  margin-right: 0;
  padding: 8px 16px;
  font-weight: 400;
}

.button-icon.audio {
  background-color: #003c79;
  border-radius: 14px;
  justify-content: space-around;
  align-items: flex-end;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 16px;
  transition: opacity .2s;
  display: flex;
  position: relative;
  box-shadow: 0 2px 5px #0003;
}

.button-icon.audio:hover {
  opacity: 1;
}

.button-icon.secondary {
  background-color: #161616;
  margin-right: 8px;
}

.footer-2 {
  background-color: #080809;
  border: 1px #161616;
  border-top-style: solid;
  padding: 0;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
  overflow: visible;
}

.footer-2.random {
  height: 12%;
  display: block;
}

.play-wrapper {
  justify-content: center;
  display: block;
}

.paragraph-14 {
  color: #fbf9fc80;
  flex: none;
  margin-bottom: 0;
  padding-right: 0;
  line-height: 144%;
}

.progress-4 {
  flex: 0 auto;
  align-items: center;
  margin-right: 8px;
  display: flex;
}

.song-wrapper {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.progress-bar__content-4 {
  object-fit: fill;
  background-color: #8f00ff;
  border-radius: 1000px;
  width: 26%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  position: static;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.main-wrapper {
  width: 100%;
  height: 192.672px;
}

.link-3 {
  color: #fbf9fc;
  text-align: center;
  font-weight: 500;
}

.line-one {
  background-color: #fbf9fc;
  border-radius: 100px;
  flex: none;
  width: 2px;
  height: 1%;
  margin-right: 3px;
  position: static;
  inset: auto auto 0% 0%;
}

.audio-animation {
  text-align: left;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 3px;
  margin-left: 8px;
  display: flex;
  position: relative;
  top: 3px;
}

.round-button-2 {
  color: #161616;
  background-color: #161616;
  border-radius: 90px;
  width: 32px;
  height: 32px;
}

.round-button-2.left {
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-right: 8px;
}

.round-button-2.right {
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 8px;
}

.container-175 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.container-175.footer {
  border-style: none;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  display: flex;
  position: static;
}

.section-6 {
  background-image: none;
  background-position: 0 0;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 0;
  display: flex;
  position: relative;
}

.tip-control__name-2 {
  flex: 1;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.line-three {
  background-color: #fbf9fc;
  border-radius: 100px;
  flex: none;
  width: 2px;
  height: 40%;
  margin-right: 3px;
  position: static;
  inset: auto auto 0% 0%;
}

.play {
  color: #fbf9fc;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 1;
}

.line-two {
  background-color: #fbf9fc;
  border-radius: 100px;
  flex: none;
  width: 2px;
  height: 1%;
  margin-right: 3px;
  position: static;
  inset: auto auto 0% 0%;
}

._wf-tips-link {
  color: #fbf9fc80;
}

.songs-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: flex;
}

.pause-wrapper {
  opacity: 0;
  display: flex;
  position: absolute;
  top: 15px;
}

.col {
  flex: 0 auto;
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.col._3-col {
  flex: none;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 33%;
  display: flex;
}

.col._3-col.branding {
  flex-direction: row;
  padding-right: 0;
}

.col._3-col.middle {
  flex: 1;
  justify-content: center;
}

.col._3-col.last {
  justify-content: flex-end;
}

.song-name {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
}

.song-album {
  color: #8f00ff;
  background-image: linear-gradient(#8f00ff33, #fff0);
  border: 1px solid #161616;
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
  padding: 0;
}

.song-album.techno {
  background-image: linear-gradient(#8f00ff33, #fff0), none;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 21px;
}

.song-album.reggae {
  background-image: linear-gradient(#8f00ff33, #fff0), none;
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.song-album.rap {
  text-align: center;
  background-image: none;
  background-size: auto;
  border-style: none;
  width: 250px;
  height: auto;
}

.progres-bar-2 {
  background-color: #161616;
  border-radius: 90px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 14px;
  margin-right: 8px;
  padding: 4px;
  display: flex;
  position: relative;
}

.tip-control-2 {
  display: flex;
}

.player {
  z-index: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}

.logo-2 {
  height: 26px;
  margin-bottom: 2px;
  margin-right: 16px;
  padding-bottom: 0;
  padding-right: 0;
}

.logo-2.main {
  margin-bottom: 0;
  margin-right: 0;
}

.logo-2.mobile {
  margin-bottom: 0;
  margin-right: 0;
  display: none;
}

.image-50 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0000004d;
}

.image-50.no-sha {
  box-shadow: none;
}

.container-176 {
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  display: flex;
}

.div-block-193 {
  flex: 1;
  padding-right: 40px;
}

.heading-69 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.heading-69.mobile {
  display: none;
}

.paragraph-15 {
  color: #fff;
}

.paragraph-16 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.text-block-114 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.bold-text-47 {
  font-size: 50px;
  font-weight: 500;
  line-height: 52px;
}

.button-7 {
  background-color: var(--telmatik-green);
  color: var(--bleu-telmatik);
  border-radius: 10px;
  padding: 11px 100px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.mobile, .svg-defs-01 {
  display: none;
}

.blog-card-image {
  object-fit: cover;
  border: 1px solid #edf1f2;
  display: block;
}

.dropdown-list-body {
  z-index: 3;
  position: relative;
}

.nav-sales-text {
  display: none;
}

.nav-sales-icon {
  display: block;
}

.footer-divider {
  margin-left: 24px;
  margin-right: 24px;
}

.blog-card-label {
  color: #9ca6af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 12px;
}

.inline-footer {
  margin-left: .05em;
  margin-right: .05em;
  font-weight: 500;
  display: inline;
}

.inline-footer.svg {
  line-height: 0;
  position: relative;
  top: 3px;
}

.dropdown-inner-shadow {
  z-index: 4;
  background-image: linear-gradient(#24324214, #0000 15%);
  height: 56px;
  position: absolute;
  bottom: 100%;
  left: 0%;
  right: 0%;
  box-shadow: 0 3px 12px #24324214;
}

.dropdown-card-title {
  color: #151b26;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.dropdown-card-title.is-secondary {
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 19px;
}

.dropdown-card-title.not-margin {
  margin-top: 2px;
  margin-bottom: 0;
}

.dropdown-card {
  margin-bottom: 36px;
  display: block;
  position: relative;
}

.dropdown-card.has-icon {
  display: flex;
}

.dropdown-card.is-secondary {
  margin-bottom: 20px;
}

.sidebar-column-bg {
  display: none;
}

.dropdown-bg-full {
  background-color: #fff;
  position: absolute;
  inset: 0%;
  box-shadow: 35px 35px 50px #24324226;
}

.dropdown-sidebar-bg {
  background-color: #f6f8f9;
  border-left: 1px solid #e0e6e8;
  width: 100vw;
  position: absolute;
  inset: 0 0 0 706px;
}

.dropdown-card-text {
  height: 200px;
  font-size: 14px;
  font-weight: 400;
}

.menu {
  float: none;
  background-color: #0000;
  justify-content: space-between;
  align-items: stretch;
  height: 56px;
  font-weight: 500;
  display: flex;
}

.blog-card-title {
  font-size: 16px;
  line-height: 20px;
}

.dropdown-footer {
  align-items: center;
  height: 45px;
  display: flex;
}

.navbar-wrapper {
  background-color: #0000;
  font-size: 12px;
  position: fixed;
  inset: 0% 0% auto;
}

.blog-card-content {
  padding-left: 0;
  font-weight: 700;
}

.dropdown-footer-wrapper {
  background-color: #fbfdfe;
  border-top: 1px solid #e0e6e8;
  position: absolute;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.dropdown-footer-wrapper.tablet {
  display: none;
}

.dropdown-card-bg {
  opacity: 0;
  border-radius: 3px;
  position: absolute;
  inset: -16px;
}

.dropdown-card-bg.orange {
  background-color: #f9dc0026;
}

.dropdown-card-bg.is-yellow {
  background-color: #fffede;
}

.dropdown-card-bg.is-blue {
  background-color: #edf8ff;
}

.dropdown-card-bg.white {
  background-color: #fff;
  border: 1px solid #edf1f2;
}

.dropdown-card-bg.is-green {
  background-color: #e2fffa;
}

.dropdown-card-bg.purple {
  background-color: #f0f0ff;
}

.dropdown-column.third {
  padding-left: 20px;
  position: relative;
}

.dropdown-footer-copy {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translate(0, -50%);
}

.nav-button-2 {
  color: #fff;
  background-color: #273240;
  border-radius: 3px;
  padding: 8px 16px;
  transition: background-color .2s ease-in-out;
}

.nav-button-2:hover {
  background-color: #151b26;
}

.navbar-3 {
  z-index: 3;
  background-color: #0b1c3b;
  position: relative;
  box-shadow: 0 3px 12px #24324214;
}

.dropdown-overflow {
  padding-top: 40px;
  overflow: auto;
}

.blog-card-link {
  color: #646f79;
  justify-content: space-between;
  margin-top: 8px;
  display: flex;
  position: static;
  inset: auto 0% 0% 12px;
}

.reset-line-height {
  line-height: 0;
}

.dropdown-list-2 {
  z-index: 1;
  background-color: #0000;
  padding-bottom: 142px;
  font-size: 13px;
  position: fixed;
  inset: 56px 0% auto;
  overflow: hidden;
}

.dropdown-column-title {
  color: #151b26;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e6e8;
  margin-bottom: 30px;
  padding-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
}

.dropdown-card-content {
  position: relative;
}

.container-177 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;
}

.dropdown-subgrid {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.divider {
  background-color: #e0e6e8;
  width: 1px;
  height: 28px;
}

.dropdown-footer-full {
  z-index: 1;
  opacity: 1;
  position: absolute;
  inset: 0 0% 96px;
}

.menu-right {
  display: flex;
}

.brand-2 {
  flex: none;
  align-items: center;
  margin-right: 32px;
  display: flex;
}

.brand-2.responsive {
  display: none;
}

.dropdown-footer-link {
  color: #848f99;
  transition: color .2s;
}

.dropdown-footer-link:hover {
  color: #796eff;
}

.dropdown-grid {
  grid-column-gap: 50px;
  grid-row-gap: 75px;
  grid-template-rows: auto;
  grid-template-columns: 180px 410px 240px;
  grid-auto-columns: 1fr;
  display: grid;
}

.dropdown-grid.resources {
  grid-template-columns: 180px 410px 240px;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #edf1f2;
  flex-direction: column;
  margin-bottom: 12px;
  padding: 8px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.blog-card:hover {
  transform: translate(0, -2px);
  box-shadow: 4px 0 8px #24324214;
}

.blog-card.third {
  display: none;
}

.dropdown-toggle-3 {
  color: #fff;
  align-items: center;
  height: 100%;
  padding: 6px 13px 0;
  font-size: 15px;
  transition: color .2s cubic-bezier(.4, 0, .2, .01);
  display: flex;
}

.dropdown-toggle-3:hover {
  color: #c9d23d;
}

.dropdown-toggle-3.w--open {
  color: #796eff;
  box-shadow: inset 0 -3px #796eff;
}

.dropdown-toggle-3.language, .dropdown-toggle-3.envelope, .dropdown-toggle-3.button {
  display: none;
}

.label {
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #796eff;
  border-radius: 2px;
  margin-left: 4px;
  padding: 2px 5px 1px 6px;
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  position: absolute;
}

.dropdown-card-icon {
  flex: 0 0 18px;
  width: 32px;
  margin-top: 2px;
  margin-right: 12px;
  line-height: 0;
  position: relative;
}

.dropdown-card-icon.is_-secondary {
  margin-top: 0;
}

.dropdown-card-icon.arrow {
  opacity: .5;
  flex-basis: 14px;
  align-self: center;
  margin-left: 8px;
  margin-right: 0;
}

.footer-copy-link {
  color: #796eff;
}

.dropdown-bg {
  position: absolute;
  inset: 0% 0% 96px;
}

.navbar-bg {
  z-index: 1;
  opacity: 0;
  background-color: #0000001a;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-left {
  display: flex;
}

.dropdown-toggle-text {
  color: #fff;
  margin-right: 6px;
}

.section-7 {
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/banniere.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-7.quinous-sommes {
  background-color: #fff;
  background-image: none;
  background-position: 0 0;
}

.container-178 {
  max-width: 1300px;
  margin-bottom: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.container-178.quinoussommes {
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-195 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rich-text-block-10 {
  color: #fff;
  padding-right: 40px;
  font-family: Montserrat, sans-serif;
}

.heading-70 {
  margin-bottom: 10px;
  line-height: 32px;
}

.paragraph-17 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-17.quinoussommes {
  color: #333;
}

.div-block-196 {
  display: flex;
}

.div-block-196.bas, .div-block-196.bouton-bas {
  justify-content: center;
  align-items: center;
}

.div-block-197 {
  flex: 0 auto;
  margin-right: 100px;
}

.div-block-197.widget {
  flex: 1;
}

.container-179 {
  border-radius: 10px;
  max-width: 1300px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container-179.fond {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-179.fond.hide {
  margin-bottom: 20px;
  display: block;
}

.container-179.marges {
  padding-left: 0;
  padding-right: 0;
}

.container-179.no-space {
  margin-bottom: 40px;
}

.columns-45 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.columns-45.esapce {
  border-bottom: 1px solid #0003;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.container-180 {
  max-width: 1300px;
  margin-bottom: 40px;
  padding: 60px 20px;
}

.paragraph-18 {
  color: #fff;
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 20px;
}

.div-block-198 {
  text-align: center;
  background-color: #00365f;
  background-image: url('../images/ddd.webp');
  background-position: 96% 10%;
  background-repeat: no-repeat;
  border-radius: 10px;
  height: 200px;
  padding: 40px 20px;
}

.div-block-198.small {
  background-image: none;
  justify-content: center;
  align-items: center;
  height: 90px;
  padding: 0;
  display: flex;
}

.div-block-198.auto {
  background-image: none;
  height: auto;
  padding: 0;
}

.columns-46 {
  margin-bottom: 20px;
}

.section-8 {
  background-image: url('../images/fond-bleu.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-arrow-5 {
  margin-left: 14px;
}

.container-199 {
  border-radius: 10px;
  max-width: 1200px;
  margin-bottom: 10px;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
}

.bold-text-108 {
  color: #062a51;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 32px;
}

.bold-text-108.gros-titre {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

.paragraph-51, .link-136 {
  font-size: 15px;
}

.block-faq-title-7 {
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  display: flex;
}

.container-200 {
  margin-bottom: 20px;
  margin-right: auto;
  padding: 20px 0;
}

.container-200.no-space {
  margin-bottom: 0;
}

.bold-text-96 {
  color: var(--black);
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.block-faq-bg-13 {
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px #0003;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 15px 0;
  transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}

.block-faq-bg-13:hover {
  transform: none;
  box-shadow: 0 10px 0 -10px #0a0e201f;
}

.block-faq-bg-13.ligne {
  border-bottom-style: solid;
}

.heading-76 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.div-block-325 {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-325.space {
  margin-bottom: 10px;
}

.div-block-325.space.s {
  height: auto;
  margin-bottom: 10px;
}

.div-block-325.s {
  display: block;
}

.rich-text-block-11 {
  direction: ltr;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  display: block;
  position: static;
  overflow: visible;
}

.faq-title-8 {
  color: #3a3a3a;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 30px;
  display: inline-block;
}

.container-201 {
  border-radius: 10px;
  max-width: 1300px;
  margin-bottom: 40px;
  padding: 40px 20px 40px 0;
}

.columns-47 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-52.no {
  margin-bottom: 0;
}

.paragraph-53 {
  margin-bottom: 10px;
}

.container-202 {
  max-width: 1300px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-9 {
  background-image: url('../images/fond-bleu.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.paragraph-54 {
  color: #fff;
  margin-bottom: 0;
  line-height: 18px;
}

.div-block-326 {
  text-align: center;
  padding: 20px;
}

.text-block-115 {
  color: #cbd059;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.section-10 {
  background-image: url('../images/fond.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-203 {
  max-width: 1300px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-203.faq {
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-327, .div-block-328 {
  text-align: center;
}

.text-block-116 {
  color: #000;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.text-block-116.text-haut {
  color: var(--white);
  margin-bottom: 20px;
}

.bold-text-109 {
  font-weight: 600;
}

.div-block-329, .div-block-330, .div-block-331, .div-block-332 {
  margin-bottom: 10px;
}

.dropdown-card-title-2 {
  color: #151b26;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.dropdown-card-title-2.not-margin {
  margin-top: 2px;
  margin-bottom: 0;
}

.dropdown-card-2 {
  margin-bottom: 36px;
  display: block;
  position: relative;
}

.dropdown-card-2.has-icon {
  display: flex;
}

.dropdown-card-text-2 {
  font-size: 14px;
  font-weight: 400;
}

.dropdown-subgrid-2 {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bold-text-110 {
  font-weight: 600;
  line-height: 32px;
}

.div-block-334, .heading-77, .heading-78 {
  margin-bottom: 10px;
}

.paragraph-55 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bold-text-111 {
  font-size: 18px;
  font-weight: 600;
}

.text-block-117 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.div-block-335 {
  margin-bottom: 20px;
}

.container-204 {
  border-radius: 10px;
  max-width: 1300px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-204.esapce {
  padding-top: 61px;
}

.text-block-118 {
  text-align: center;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  line-height: 24px;
}

.div-block-336 {
  color: #000;
  border-radius: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
}

.text-block-119 {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.div-block-337 {
  margin-bottom: 20px;
}

.div-block-338 {
  text-align: center;
  border-bottom: 1px solid #0000001a;
  justify-content: center;
  align-items: center;
  height: 150px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  display: flex;
}

.div-block-338.ligne-no {
  border-bottom-style: none;
}

.div-block-339 {
  margin-bottom: 20px;
}

.div-block-339.no-space {
  margin-bottom: 0;
}

.div-block-340, .div-block-341, .div-block-342, .div-block-344 {
  margin-bottom: 20px;
}

.columns-49, .columns-50, .columns-51 {
  padding-right: 40px;
}

.columns-52 {
  background-color: #0e3660;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.bold-text-112 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.columns-53 {
  justify-content: flex-start;
  align-items: center;
  padding-right: 40px;
  display: flex;
}

.column-169 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.columns-54 {
  padding-right: 40px;
}

.ligne-2 {
  border-left: 1px solid #0000004d;
  border-right: 1px solid #0000004d;
}

.bold-text-113 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.container-205 {
  max-width: 1300px;
  margin-bottom: 40px;
  padding: 60px 20px;
}

.bold-text-114 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.text-span-91 {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.columns-55 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-span-92 {
  font-size: 16px;
  line-height: 18px;
}

.container-206 {
  max-width: 1300px;
}

.div-block-345 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-346 {
  flex: 1;
}

.div-block-347 {
  flex: 0 auto;
  margin-right: 40px;
}

.rich-text-block-12, .bold-text-115 {
  font-size: 20px;
}

.container-207 {
  border-bottom: 1px #0003;
  max-width: 1300px;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-207.padding {
  padding-top: 0;
  padding-bottom: 0;
}

.container-207.padding.noline {
  margin-bottom: 40px;
}

.container-207.noline {
  border-bottom-style: none;
  margin-bottom: 0;
}

.container-207.noline.hide {
  display: block;
}

.container-207.line {
  border-bottom-style: none;
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.columns-56 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-56 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.paragraph-56.center {
  font-size: 16px;
  font-weight: 600;
}

.image-52 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-348 {
  margin-bottom: 10px;
}

.columns-57 {
  display: flex;
}

.code-embed-3 {
  position: relative;
  top: -5px;
  left: -55px;
}

.paragraph-57 {
  margin-bottom: 0;
}

.text-block-120, .text-block-121, .text-block-122, .text-block-123, .text-block-124, .text-block-125, .text-block-126, .text-block-127, .text-block-128, .text-block-129, .text-block-130, .text-block-131, .text-block-132, .text-block-133 {
  font-family: Montserrat, sans-serif;
}

.div-block-350 {
  padding-left: 10px;
  padding-right: 10px;
}

.section-11 {
  background-image: url('../images/fond.png');
  background-position: 0%;
  background-size: cover;
}

.section-12 {
  background-image: url('../images/fond.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.bold-text-116, .bold-text-117, .bold-text-118 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.column-170, .column-171, .column-172, .column-173 {
  font-family: Montserrat, sans-serif;
}

.bold-text-119 {
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;
}

.div-block-351, .div-block-352, .div-block-353 {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 10px 40px 40px;
  box-shadow: 0 2px 5px #0003;
}

.bold-text-120 {
  font-size: 18px;
  font-weight: 700;
}

.section-13 {
  background-image: url('../images/fond.webp');
  background-position: 0%;
  background-size: contain;
}

.section-13.nobackground {
  background-image: none;
}

.text-block-134 {
  font-size: 18px;
  font-weight: 600;
}

.bold-text-121 {
  font-size: 18px;
  font-weight: 700;
}

.bold-text-122 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.heading-79 {
  margin-bottom: 10px;
  line-height: 32px;
}

.section-14 {
  background-image: url('../images/fond.webp');
  background-position: 0%;
  background-size: cover;
  display: block;
}

.section-14.mobile {
  display: none;
}

.paragraph-59 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.div-block-354 {
  text-align: left;
}

.div-block-354.droit {
  text-align: right;
}

.div-block-355 {
  background-color: #002a54;
  padding: 10px 40px 10px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.link-block-26 {
  background-color: #002a54;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  display: block;
}

.text-block-135, .text-block-136, .div-block-356 {
  text-align: center;
}

.columns-58 {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.div-block-357 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  height: 120px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.div-block-358 {
  margin-right: 10px;
}

.paragraph-60 {
  text-align: center;
}

.div-block-359 {
  margin-bottom: 20px;
}

.bold-text-123 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.section-15 {
  background-image: url('../images/fond.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-16 {
  background-image: url('../images/fond.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-16.hide {
  background-image: url('../images/fond.png');
  display: block;
}

.section-16.hide.noback {
  background-image: none;
}

.list-3 {
  margin-bottom: 0;
}

.bold-text-124 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.div-block-360 {
  margin-bottom: 20px;
}

.text-block-137 {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.bold-text-125 {
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
}

.bold-text-126, .bold-text-127, .bold-text-128, .bold-text-129 {
  font-weight: 600;
}

.heading-80 {
  color: #000;
}

.bold-text-130 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
}

.bold-text-130.titre {
  color: #000;
  font-size: 30px;
  line-height: 32px;
}

.bold-text-130.texxte {
  font-size: 16px;
}

.text-span-93 {
  font-size: 16px;
  font-weight: 600;
}

.bold-text-131 {
  color: #000;
  font-weight: 700;
}

.text-block-138 {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.list-4, .list-5, .list-6, .list-7, .list-8 {
  margin-bottom: auto;
}

.paragraph-61 {
  text-align: center;
  margin-bottom: 0;
}

.paragraph-62 {
  text-align: center;
}

.heading-81, .heading-82, .heading-83 {
  font-family: Montserrat, sans-serif;
}

.text-span-94 {
  font-size: 16px;
  line-height: 18px;
}

.bold-text-132 {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 32px;
}

.text-span-95 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.container-208 {
  max-width: 1300px;
  margin-bottom: 60px;
}

.div-block-364 {
  text-align: center;
}

.div-block-365 {
  margin-bottom: 20px;
}

.paragraph-63 {
  margin-bottom: 10px;
  font-weight: 600;
}

.paragraph-63.no-space {
  margin-bottom: 0;
}

.section-17 {
  margin-bottom: 100px;
}

.div-block-367 {
  height: 150px;
}

.div-block-367.no-space {
  height: auto;
}

.div-block-368, .div-block-369 {
  height: 150px;
}

.div-block-370 {
  background-image: url('../images/fond.png');
  background-position: 100%;
  background-size: cover;
  border-radius: 10px;
  flex: 1;
  margin-right: 20px;
  padding: 40px 20px;
  box-shadow: 0 2px 5px #0003;
}

.div-block-372 {
  text-align: center;
  margin-bottom: 20px;
}

.paragraph-64 {
  text-align: center;
}

.paragraph-65 {
  line-height: 19px;
}

.div-block-373 {
  background-color: #fff;
  border-radius: 10px;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  height: 112px;
  margin-right: 20px;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.div-block-374 {
  margin-right: 10px;
}

.div-block-375 {
  margin-bottom: 40px;
  display: flex;
}

.paragraph-66 {
  margin-bottom: 0;
}

.paragraph-67 {
  margin-bottom: auto;
}

.paragraph-68, .paragraph-69, .paragraph-70, .paragraph-71 {
  margin-bottom: 0;
}

.section-18 {
  background-image: url('../images/fond.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-53, .image-54, .image-55, .image-56, .image-57, .image-58 {
  max-width: none;
}

.bold-text-137, .bold-text-138, .bold-text-139 {
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;
}

.bold-text-139.quinouscommes {
  color: #000;
}

.image-59, .image-60 {
  max-width: none;
}

.column-182 {
  margin-bottom: 60px;
}

.column-182.no-space {
  margin-bottom: 0;
}

.bold-text-140 {
  font-size: 25px;
  font-weight: 600;
}

.div-block-378 {
  margin-bottom: 20px;
  display: flex;
}

.div-block-379 {
  text-align: right;
}

.bold-text-142, .bold-text-143, .bold-text-145, .bold-text-146, .titre {
  font-size: 30px;
  line-height: 32px;
}

.bold-text-148, .bold-text-149, .bold-text-151 {
  color: #000;
  font-size: 30px;
  line-height: 32px;
}

.image-65 {
  border-radius: 10px;
}

.text-span-96, .text-span-97, .text-span-98, .text-span-99 {
  font-weight: 700;
}

.div-block-381 {
  margin-right: 20px;
}

.paragraph-74 {
  font-size: 20px;
}

.columns-59 {
  border-bottom: 1px #0003;
  margin-bottom: auto;
  padding-bottom: 30px;
}

.div-block-382 {
  background-color: #fff;
  border-radius: 10px;
  padding: 0;
}

.div-block-385 {
  padding-left: 20px;
}

.div-block-386 {
  text-align: center;
}

.div-block-386.saut {
  margin-bottom: 20px;
}

.div-block-387 {
  background-color: #00365f;
  border-radius: 10px;
  padding: 40px 20px 20px;
}

.div-block-388 {
  background-color: #00365f;
  border-radius: 10px;
  height: 160px;
  padding: 20px;
}

.div-block-389 {
  background-color: #fff;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  display: block;
}

.div-block-390 {
  margin-bottom: 10px;
  margin-right: 10px;
}

.paragraph-76 {
  margin-bottom: 0;
}

.paragraph-77 {
  margin-bottom: 0;
  line-height: 18px;
}

.list-9 {
  margin-bottom: 0;
}

.image-67 {
  max-width: none;
}

.container-209 {
  max-width: 1300px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-84 {
  font-size: 25px;
}

.columns-60 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-394 {
  text-align: center;
}

.container-210 {
  max-width: 1300px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bold-text-152 {
  color: #000;
  font-size: 30px;
}

.paragraph-79 {
  margin-bottom: 10px;
}

.bold-text-153 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
}

.columns-61 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bold-text-154 {
  color: #000;
  font-size: 30px;
}

.bold-text-155, .bold-text-156 {
  color: #000;
}

.container-211 {
  max-width: 1300px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.section-20 {
  background-image: url('../images/fond.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.paragraph-80 {
  color: var(--black);
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
}

.paragraph-81 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
}

.image-69, .image-70, .image-71, .image-72 {
  max-width: none;
}

.section-21 {
  background-image: url('../images/fond.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-212 {
  max-width: 1300px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.paragraph-82 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

.container-213 {
  max-width: 1300px;
}

.paragraph-83 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

.section-22 {
  background-image: url('../images/fond.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-22.noback {
  background-image: none;
}

.bold-text-157 {
  color: #000;
}

.container-214 {
  max-width: 1300px;
}

.bold-text-158, .bold-text-159, .bold-text-160, .bold-text-161 {
  color: #000;
}

.columns-62 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-84 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

.section-23 {
  background-image: url('../images/fond.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-24 {
  margin-bottom: 40px;
}

.section-24.hidesection {
  background-image: url('../images/fond.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

.container-215 {
  max-width: 1300px;
}

.rich-text-block-14 {
  margin-bottom: 20px;
}

.bold-text-162 {
  color: #000;
}

.columns-63 {
  display: flex;
}

.image-73, .image-74, .image-75, .image-76 {
  max-width: none;
}

.image-77 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-bottom: 0;
}

.image-78, .image-79 {
  margin-right: 10px;
}

.div-block-398 {
  margin-bottom: 20px;
}

.bold-text-163 {
  font-size: 18px;
}

.heading-85, .heading-86, .heading-87, .heading-88 {
  font-family: Montserrat, sans-serif;
}

.container-216 {
  max-width: 1300px;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-25 {
  background-image: url('../images/fond-bleu.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-399, .paragraph-85, .paragraph-86, .paragraph-87, .paragraph-88 {
  color: #fff;
}

.bold-text-164 {
  font-size: 30px;
}

.div-block-400 {
  display: flex;
}

.div-block-401 {
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.section-26 {
  background-image: url('../images/fond.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bold-text-165 {
  line-height: 18px;
}

.bold-text-168 {
  color: #000;
  font-size: 30px;
}

.code-embed-4 {
  text-align: center;
}

.image-81 {
  background-color: #fff;
  padding-top: 20px;
}

.container-217 {
  max-width: 1300px;
  margin-bottom: 40px;
}

.columns-65 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.image-82 {
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
}

.paragraph-89 {
  margin-bottom: auto;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

@media screen and (min-width: 1280px) {
  .button.blue.cta {
    font-family: Montserrat, sans-serif;
  }

  .navigation-bar {
    background-color: var(--bleu-telmatik);
  }

  .heading-3._2 {
    color: #fff;
    text-align: left;
  }

  .clients {
    max-width: 90%;
  }

  .container-6 {
    max-width: 70%;
  }

  .formsite {
    display: flex;
  }

  .top-link._2 {
    margin-bottom: 1px;
  }

  .zoho-form {
    text-align: left;
    justify-content: center;
    width: 100%;
    display: block;
  }

  .dropdown._2.menu {
    margin-bottom: 1px;
  }

  .dropdown._2.menu.bas {
    margin-bottom: 0;
  }

  .div-block-14 {
    margin-left: 0;
  }

  .div-block-16 {
    background-color: #002b54;
    border-radius: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 31px;
  }

  .paragraph-2 {
    color: #fff;
    text-align: left;
  }

  .div-block-17 {
    text-align: left;
  }

  .button-3:hover {
    box-shadow: 0 2px 5px #0003;
  }

  .paragraph-faq {
    line-height: 22px;
  }

  .faq-title-2 {
    color: #000;
  }

  .text-span-74 {
    text-align: left;
    font-size: 30px;
  }

  .link-7 {
    text-align: center;
    font-size: 24px;
  }

  .container-74, .container-113 {
    max-width: 78%;
  }

  .div-block-59 {
    justify-content: center;
    display: flex;
  }

  .text-span-75 {
    font-size: 12px;
    font-style: italic;
    line-height: 16px;
    position: relative;
    top: -4px;
  }

  .text-span-76 {
    font-size: 12px;
    font-style: italic;
    position: relative;
    top: -4px;
  }

  .collection-list-category {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .button-4.vert, .button-5.bouton {
    padding-left: 150px;
    padding-right: 150px;
  }

  .by-author-text {
    color: #a8a8a8;
  }

  .article-details-category {
    font-size: 30px;
  }

  .hero-article-block-holder {
    justify-content: flex-start;
  }

  .column-69.test {
    padding-left: 30px;
    padding-right: 30px;
  }

  .article-details-category-holder {
    flex: 0 auto;
    font-size: 30px;
    display: flex;
  }

  .column-70 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-146, .div-block-147 {
    display: block;
  }

  .div-block-152, .div-block-153 {
    margin-bottom: 0;
  }

  .paragraph-5 {
    margin-bottom: 10px;
  }

  .text-span-83 {
    font-size: 12px;
    font-style: italic;
    line-height: 16px;
    position: relative;
    top: -4px;
  }

  .heading-69.mobile {
    display: none;
  }

  .button-7 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .blog-card-image {
    height: 145px;
  }

  .dropdown-sidebar-bg {
    left: 862px;
  }

  .dropdown-grid {
    grid-template-columns: 200px 516px 300px;
  }

  .dropdown-grid.resources {
    grid-template-columns: 200px 516px 360px;
  }

  .blog-card.third {
    display: none;
  }

  .dropdown-toggle-3.language, .dropdown-toggle-3.envelope, .dropdown-toggle-3.button {
    display: flex;
  }

  .section-7 {
    background-image: linear-gradient(#0000001a, #0000001a), url('../images/banniere.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .rich-text-block-11 {
    color: #000;
    font-size: 18px;
    display: block;
  }

  .faq-title-8 {
    color: #3a3a3a;
  }
}

@media screen and (min-width: 1440px) {
  .services-button.full {
    display: flex;
  }

  .heading-8 {
    padding-bottom: 15px;
  }

  .div-block-8 {
    justify-content: center;
    display: flex;
  }

  .bottom-service {
    width: 300px;
  }

  .columns-36 {
    align-items: flex-start;
    margin-bottom: 20px;
    display: block;
  }

  .column-102 {
    padding-left: 30px;
    padding-right: 10px;
  }

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

  .text-block-15 {
    padding-right: 10px;
    font-size: 15px;
    line-height: 19px;
  }

  .column-103, .column-104 {
    padding-right: 10px;
  }

  .container-16 {
    max-width: 1300px;
  }

  .paragraph-faq {
    font-size: 15px;
    line-height: 1.5em;
  }

  .text-span-74 {
    font-family: Montserrat, sans-serif;
    font-size: 30px;
  }

  .image-37 {
    display: inline-block;
  }

  .link-7 {
    text-align: center;
    padding-top: 20px;
    font-family: Montserrat, sans-serif;
  }

  .container-21, .container-31 {
    max-width: 78%;
  }

  .container-95.services {
    justify-content: center;
  }

  .div-block-57 {
    justify-content: center;
    margin-bottom: 20px;
    display: flex;
  }

  .div-block-58 {
    justify-content: center;
    display: flex;
  }

  .text-block-63 {
    font-size: 16px;
  }

  .grid-12-columns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .container-118.article-container {
    margin-bottom: 100px;
  }

  .container-119 {
    max-width: 1140px;
  }

  .link-block {
    padding-left: 0;
  }

  .heading-52 {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-185 {
    width: 300px;
  }

  .blog-card-image {
    width: 165px;
    height: auto;
  }

  .nav-sales-text {
    display: block;
  }

  .nav-sales-icon {
    display: none;
  }

  .dropdown-card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 20px;
  }

  .dropdown-sidebar-bg {
    left: 50%;
    transform: translate(144px);
  }

  .blog-card-content {
    padding-bottom: 24px;
    padding-left: 12px;
    position: relative;
  }

  .dropdown-card-bg.purple {
    flex: none;
  }

  .blog-card-link {
    position: absolute;
  }

  .dropdown-grid.resources {
    grid-template-columns: 200px 516px 1fr;
  }

  .blog-card {
    flex-direction: row;
    height: 145px;
  }

  .blog-card.third {
    display: flex;
  }

  .text-span-89, .text-span-90 {
    text-decoration: underline;
  }

  .div-block-336 {
    padding-left: 10px;
  }

  .div-block-351, .div-block-352 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .div-block-358 {
    margin-right: 10px;
  }

  .bold-text-132 {
    font-family: Montserrat, sans-serif;
  }
}

@media screen and (min-width: 1920px) {
  h2 {
    color: var(--bleu-telmatik);
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
  }

  li {
    padding-bottom: 5px;
  }

  .button.blue {
    font-weight: 500;
  }

  .section.fond {
    padding-top: 40px;
  }

  .div-container {
    background-image: none;
    margin-top: auto;
  }

  .heading-2._1 {
    font-weight: 700;
  }

  .services-text {
    margin-right: auto;
  }

  .services-button.full {
    font-weight: 500;
  }

  .container-3 {
    text-align: center;
    max-width: 78%;
    display: block;
  }

  .container-3.old {
    max-width: 48%;
  }

  .heading-4 {
    background-color: var(--bleu-telmatik);
    color: var(--white);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-5 {
    padding-top: 0;
  }

  .container-6 {
    max-width: 78%;
  }

  .container-7 {
    padding-bottom: 40px;
  }

  .formsite {
    text-align: left;
  }

  .banner-image.elevator {
    background-image: none;
  }

  .section-2.relative {
    margin-bottom: 60px;
  }

  .dautres._1 {
    max-width: 49%;
  }

  .dropdown-link {
    font-family: Montserrat, sans-serif;
  }

  .container-11 {
    max-width: 78%;
  }

  .heading-9, .politique h2 {
    font-weight: 700;
  }

  .container-13 {
    background-image: url('../images/telmatik-banniere-page-accueil-v2.jpg'), url('../images/web-telmatik.jpg');
    background-position: 50%, 50% 30%;
    background-size: cover, cover;
  }

  .div-block-14 {
    margin-top: 180px;
  }

  .heading-14.anglo {
    width: auto;
  }

  .div-block-18 {
    background-color: var(--dark-grey);
    border-style: none;
    width: auto;
    height: 1px;
    max-height: 1px;
  }

  .rich-text-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-11 {
    text-align: left;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .section-3 {
    background-color: #002b54;
  }

  .div-block-21 {
    text-align: center;
    justify-content: center;
    margin-bottom: 100px;
    display: block;
  }

  .button-3 {
    color: #002c54;
    background-color: #c9d23e;
    font-weight: 600;
  }

  .container-22 {
    max-width: 1934px;
  }

  .bold-text-14 {
    color: var(--black);
  }

  .heading-40 {
    color: var(--bleu-telmatik);
    font-size: 22px;
    font-weight: 700;
  }

  .heading-42 {
    color: #fff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-95 {
    background-image: url('../images/image-Telmatik-nous-sommes.png');
    padding-top: 0;
  }

  .container-95.services {
    margin-bottom: 20px;
    padding-top: 0;
  }

  .container-95.career {
    text-align: left;
    background-image: url('../images/image-Telmatik-carriere.png');
    justify-content: space-between;
    align-items: center;
  }

  .container-95.contact {
    background-image: url('../images/Image-telmatik-contact.png');
  }

  .div-block-55 {
    padding-top: 0;
    padding-left: 40px;
  }

  .heading-50, .heading-51 {
    font-weight: 700;
  }

  .button-block-holder {
    margin-bottom: 0;
  }

  .container-119 {
    max-width: 1140px;
  }

  .div-block-144 {
    display: block;
  }

  .rich-text-block-5 {
    max-width: 100%;
  }

  .columns-40 {
    justify-content: center;
    align-items: center;
  }

  .heading-57 {
    font-weight: 700;
  }

  .div-block-148 {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-150 {
    height: 180px;
  }

  .paragraph-4, .div-block-151 {
    margin-bottom: 0;
  }

  .text-block-103 {
    height: 30px;
  }

  .columns-44 {
    margin-bottom: 20px;
  }

  .container-129.vert {
    background-color: var(--telmatik-green);
    max-width: 700px;
  }

  .container-129.vert.eng {
    max-width: 650px;
  }

  .rich-text-block-6 {
    font-size: 14px;
    line-height: 18px;
  }

  .div-block-166 {
    max-width: 1300px;
    display: flex;
  }

  .heading-59 {
    font-weight: 700;
  }

  .heading-60 {
    line-height: 26px;
  }

  .bold-text-39 {
    font-weight: 500;
  }

  .heading-61, .bold-text-41, .heading-62, .bold-text-43, .heading-63 {
    line-height: 26px;
  }

  .container-166._2 {
    background-image: url('../images/iStock-1219700578.jpg');
  }

  .bold-text-45 {
    font-weight: 700;
  }

  .body-4 {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  .play {
    font-weight: 600;
  }

  .song-name {
    font-size: 18px;
  }

  .song-album {
    width: 400px;
    height: 400px;
  }

  .heading-69 {
    line-height: 44px;
  }

  .section-7 {
    background-image: linear-gradient(#0000001a, #0000001a), url('../images/banniere.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .div-block-198 {
    background-position: 97% 6%;
  }

  .section-8 {
    background-image: url('../images/fond-bleu.webp');
  }

  .rich-text-block-11 {
    margin-top: 10px;
    font-size: 16px;
  }

  .container-201 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .columns-47 {
    color: #000;
  }

  .paragraph-52 {
    margin-bottom: 0;
  }

  .container-202 {
    margin-bottom: 40px;
  }

  .dropdown-card-text-2 {
    height: auto;
  }

  .bold-text-111 {
    color: #000;
  }

  .columns-49, .columns-50, .columns-51 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .columns-52 {
    justify-content: flex-start;
    align-items: center;
    padding-right: 40px;
    display: flex;
  }

  .columns-53 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-169 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .columns-54 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bold-text-113 {
    color: var(--black);
  }

  .container-206, .paragraph-58 {
    margin-bottom: 0;
  }

  .section-11 {
    background-image: url('../images/fond.webp');
  }

  .section-13 {
    background-image: url('../images/fond.webp');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  .div-block-354 {
    text-align: left;
  }

  .div-block-354.droit {
    text-align: right;
  }

  .div-block-357 {
    justify-content: space-between;
    align-items: center;
  }

  .bold-text-131 {
    color: #000;
  }

  .paragraph-61 {
    font-size: 18px;
  }

  .paragraph-62 {
    text-align: center;
    margin-top: 20px;
  }

  .div-block-366 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-17 {
    margin-bottom: 40px;
  }

  .div-block-367, .div-block-368, .div-block-369 {
    margin-bottom: 10px;
  }

  .div-block-370 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }

  .div-block-371 {
    flex: 1;
  }

  .div-block-372 {
    margin-right: 20px;
  }

  .list-item {
    padding-bottom: 0;
  }

  .paragraph-64 {
    margin-bottom: 10px;
  }

  .bold-text-134, .bold-text-135, .bold-text-136 {
    font-weight: 600;
  }

  .div-block-373 {
    margin-right: 20px;
  }

  .image-65 {
    border-radius: 10px;
  }

  .div-block-380 {
    text-align: center;
  }

  .div-block-382 {
    margin-right: 20px;
  }

  .div-block-383 {
    padding: 20px;
  }

  .paragraph-78 {
    margin-bottom: 0;
  }

  .bold-text-152, .bold-text-153, .bold-text-155 {
    color: #000;
  }

  .div-block-401 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  ol {
    padding-left: 20px;
  }

  .button.blue.cta {
    padding-left: 40px;
    padding-right: 40px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
  }

  .navigation-link.right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hamburger-button.left {
    float: left;
  }

  .hamburger-button.white {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .hamburger-button.white.hide {
    display: none;
  }

  .hero-slider {
    height: 400px;
  }

  .slide.fr {
    background-size: cover;
  }

  .cta-heading.inline-block {
    text-align: center;
    margin-right: auto;
    font-size: 20px;
  }

  .cta-heading.inline-block.home-fr {
    font-family: Montserrat, sans-serif;
  }

  .hero-heading.white {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 44px;
  }

  .section-heading.centered {
    font-family: Montserrat, sans-serif;
    line-height: 32px;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
  }

  .nav-link {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--darker-grey);
    padding: 17px;
  }

  .logo-link {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .content {
    width: 100%;
    height: auto;
  }

  .social-footer {
    margin-top: 0;
  }

  .content-column {
    padding-top: 0;
  }

  .services-row.home {
    width: 100%;
  }

  .services-heading {
    line-height: 20px;
  }

  .services-button.on-page {
    margin-top: 20px;
  }

  .services-button.home {
    float: left;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .services-button.home:hover {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-container.fr.titre.mobile {
    display: block;
  }

  .clients {
    max-width: 90%;
  }

  .container-3.old {
    max-width: 100%;
  }

  .heading-4 {
    color: #fff;
  }

  .hero-slider-en {
    height: 400px;
  }

  .columns {
    padding-left: 2px;
    padding-right: 2px;
  }

  .div-block-5 {
    float: none;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    height: auto;
    padding: 20px 30px;
    display: flex;
    left: auto;
  }

  .coin {
    top: -22px;
    left: 25px;
  }

  .simplicite {
    margin-bottom: 20px;
  }

  .container-8 {
    max-width: 98%;
  }

  .top-link._2 {
    text-align: left;
  }

  .top-link.blanc.no {
    color: var(--black);
  }

  .nav-menu-2 {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .menu-button {
    border-radius: 10px;
    padding: 9px 10px;
  }

  .menu-button.w--open {
    background-color: var(--telmatik-green);
    padding: 10px;
  }

  .hamburger-button-2:hover {
    color: #2196f3;
  }

  .hamburger-button-2.w--open {
    background-color: #333;
  }

  .hamburger-button-2.white {
    color: #fff;
    padding-top: 8px;
    padding-bottom: 7px;
  }

  .dautres {
    max-width: 90%;
  }

  .services-heading-bottom {
    line-height: 20px;
  }

  .dropdown-link {
    font-weight: 500;
  }

  .dropdown {
    display: block;
  }

  .dropdown._2.menu {
    padding-bottom: 0;
  }

  .container-11, .essai-gratuit {
    max-width: 90%;
  }

  .case {
    width: auto;
    max-width: none;
  }

  .div-block-14, .div-block-15 {
    margin-left: 40px;
  }

  .container-14 {
    max-width: 95%;
  }

  .image-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-15 {
    max-width: 90%;
  }

  .button-3 {
    color: #002c54;
    font-weight: 600;
  }

  .html-embed-13, .html-embed-14, .html-embed-15 {
    padding-left: 10px;
  }

  .container-18 {
    max-width: 90%;
  }

  .block-faq-bg-5 {
    display: block;
  }

  .div-block-36 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 17px;
    display: flex;
  }

  .div-block-37 {
    justify-content: flex-start;
    align-items: center;
    padding-left: 16px;
    display: flex;
  }

  .div-block-37.outt {
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .container-23 {
    max-width: 100%;
  }

  .container-25, .container-27 {
    max-width: 90%;
  }

  .container-32, .container-33, .container-34 {
    max-width: 100%;
  }

  .container-52 {
    max-width: 95%;
  }

  .container-88, .container-92, .container-93, .container-94 {
    max-width: 90%;
  }

  .container-95 {
    max-width: 100%;
  }

  .container-95.services {
    align-items: center;
    max-width: 100%;
    display: flex;
  }

  .container-95.muni.express {
    margin-bottom: 20px;
  }

  .container-95.career.blogue {
    border-radius: 0;
  }

  .div-block-55 {
    padding-top: 0;
  }

  .bold-text-17 {
    color: #fff;
  }

  .container-96 {
    max-width: 90%;
  }

  .container-98 {
    max-width: 100%;
  }

  .container-99 {
    max-width: 90%;
  }

  .container-100 {
    max-width: 95%;
  }

  .container-101, .container-102, .container-103, .container-104 {
    max-width: 90%;
  }

  .container-105 {
    max-width: 95%;
  }

  .container-106, .container-107, .container-108, .container-109, .container-110, .container-111, .container-112 {
    max-width: 90%;
  }

  .text-span-75 {
    font-style: italic;
  }

  .column-153, .column-154 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-114, .container-115 {
    max-width: 100%;
  }

  .container-116 {
    max-width: 95%;
  }

  .html-embed-30 {
    top: auto;
    left: auto;
  }

  .collection-list-category {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 18px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .category-dropdown-toggle {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    justify-content: flex-start;
    align-items: center;
    padding: 1em 30px 1em 1em;
    display: flex;
    position: relative;
  }

  .category-dropdown-toggle.w--open {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .categories-drop-down {
    z-index: 2;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 1em;
    transition: background-color .4s;
    display: block;
    position: relative;
  }

  .no-posts {
    font-size: 40px;
  }

  .category-dropdown-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-category-parent {
    border-radius: 12px;
    width: 100%;
  }

  .dropdown-category-parent.w--open {
    background-color: #fdfdfd;
    border: 1px solid #fff;
    border-top-width: 0;
    border-radius: 0 0 3px 3px;
  }

  .category {
    color: #09c;
    font-size: 16px;
    font-weight: 500;
  }

  .grid-12-columns {
    grid-column-gap: 16px;
  }

  .hero-article-title {
    font-size: 38px;
  }

  .container-119 {
    max-width: 97%;
  }

  .article-details-category {
    font-size: 20px;
  }

  .div-block-140 {
    top: -4px;
  }

  .date-block {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .column-70 {
    border-top-right-radius: 1px;
    border-bottom-left-radius: 8px;
  }

  .container-121 {
    max-width: 95%;
  }

  .container-123 {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-123.bleu {
    max-width: 95%;
  }

  .text-block-99 {
    font-size: 40px;
  }

  .div-block-149 {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .div-block-150 {
    height: 200px;
  }

  .text-block-100, .text-block-101, .text-block-102 {
    font-size: 14px;
    line-height: 18px;
  }

  .container-124 {
    max-width: 95%;
  }

  .div-block-159 {
    margin-top: 20px;
  }

  .text-block-103 {
    height: 30px;
  }

  .container-129 {
    max-width: 184%;
  }

  .div-block-164 {
    border-left-style: none;
    padding-left: 0;
  }

  .paragraph-8 {
    margin-bottom: 0;
  }

  .column-160 {
    margin-bottom: 20px;
  }

  .text-span-83 {
    font-style: italic;
  }

  .intro-block-icon {
    opacity: .35;
    height: 50px;
    margin-bottom: 11px;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(0, -50%);
  }

  .block-paragraph {
    width: 90%;
    display: block;
  }

  .intro-block-title {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .section-4 {
    padding: 35px 20px;
  }

  .intro-link-block {
    text-align: left;
    padding: 0 0 20px;
  }

  .intro-column {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-column.last {
    padding-bottom: 0;
  }

  .container-166 {
    border-radius: 0;
    height: 300px;
  }

  .container-167 {
    max-width: 95%;
  }

  .div-block-169 {
    display: block;
  }

  .div-block-170 {
    width: auto;
  }

  .div-block-171 {
    margin-right: 0;
    padding-right: 0;
  }

  .container-168 {
    max-width: 95%;
  }

  .heading-67 {
    line-height: 32px;
  }

  .sidebar-block-wrapper {
    margin-bottom: 20px;
  }

  .article-block-right {
    width: 100%;
    margin-top: 10px;
  }

  .div-block-183.hide {
    width: auto;
  }

  .div-block-174 {
    margin-left: 0;
  }

  .column-164, .column-165 {
    margin-bottom: 20px;
  }

  .container-169 {
    max-width: 95%;
    margin-top: 0;
    display: none;
  }

  .div-block-184 {
    text-align: center;
  }

  .column-163 {
    margin-bottom: 20px;
  }

  .code-embed {
    padding-top: 10px;
  }

  .text-block-111.mobile {
    text-align: left;
    line-height: 22px;
    display: block;
  }

  .link-block-25 {
    flex: 1;
  }

  .link-block-25.diff {
    flex: 0 auto;
  }

  .div-block-186 {
    margin-right: 30px;
  }

  .container-170 {
    justify-content: flex-start;
    align-items: center;
    max-width: 95%;
    margin-bottom: 20px;
  }

  .div-block-187 {
    border-radius: 10px;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    display: flex;
    box-shadow: 0 2px 5px #0003;
  }

  .container-171 {
    max-width: 95%;
  }

  .container-171.mobile {
    max-width: 100%;
    margin-bottom: 20px;
    display: block;
  }

  .container-172 {
    max-width: 90%;
  }

  .container-174 {
    height: 800px;
    padding-top: 0;
  }

  .button-icon {
    flex: 0 auto;
    order: 0;
    align-self: flex-end;
    margin-bottom: 0;
  }

  .button-icon.secondary {
    margin-right: 8px;
  }

  .container-175 {
    flex: 0 auto;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    align-items: start;
  }

  .container-175.footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .tip-control__name-2 {
    margin-right: 0;
  }

  .songs-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .col._3-col {
    width: auto;
  }

  .col._3-col.branding {
    flex-direction: row;
    flex: 0 auto;
    order: 0;
  }

  .col._3-col.middle {
    order: 1;
    justify-content: flex-end;
    margin-bottom: 0;
  }

  .col._3-col.last {
    display: block;
  }

  .song-album {
    width: 200px;
    height: 200px;
  }

  .logo-2 {
    order: 0;
  }

  .container-176 {
    max-width: 95%;
    display: block;
  }

  .div-block-193 {
    margin-bottom: 20px;
  }

  .icon-4 {
    color: #fff;
  }

  .button-7 {
    font-weight: 600;
  }

  .blog-card-image {
    width: 100%;
    height: 120px;
  }

  .dropdown-inner-shadow {
    display: none;
  }

  .dropdown-card {
    margin-bottom: 28px;
  }

  .sidebar-column-bg {
    background-color: #f6f8f9;
    display: block;
    position: absolute;
    inset: -49px -24px;
  }

  .dropdown-bg-full, .dropdown-sidebar-bg {
    display: none;
  }

  .menu {
    background-color: #fff;
    height: auto;
    padding-bottom: 64px;
    overflow: auto;
  }

  .dropdown-footer {
    height: 96px;
    padding-bottom: 48px;
  }

  .dropdown-footer-wrapper.tablet {
    z-index: 10;
    display: block;
    position: fixed;
    inset: auto 0% 0%;
  }

  .dropdown-card-bg {
    display: none;
  }

  .dropdown-column {
    margin-bottom: 64px;
  }

  .dropdown-column.third {
    margin-bottom: 0;
    padding-left: 0;
  }

  .dropdown-footer-copy {
    text-align: center;
    background-color: #e0e6e8;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    inset: auto 0 0;
    transform: none;
  }

  .nav-button-2 {
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
  }

  .nav-button-2:hover {
    background-color: #273240;
  }

  .menu-button-line {
    background-color: #b7bfc6;
    border-radius: 1px;
    width: 16px;
    height: 2px;
    margin-bottom: 4px;
  }

  .menu-button-line.last {
    margin-bottom: 0;
  }

  .navbar-3 {
    height: 70px;
  }

  .dropdown-overflow {
    max-height: none;
    padding-top: 28px;
    padding-bottom: 20px;
    overflow: hidden;
  }

  .blog-card-link {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }

  .dropdown-list-2 {
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    top: 0;
  }

  .dropdown-subgrid {
    grid-template-columns: 1fr;
  }

  .dropdown-footer-full {
    display: none;
  }

  .menu-right {
    flex-direction: column-reverse;
  }

  .blog-card-scroll-wrapper {
    margin-left: -32px;
    margin-right: -32px;
  }

  .brand-2 {
    display: none;
  }

  .brand-2.responsive {
    margin-top: 18px;
    display: block;
  }

  .dropdown-footer-link {
    text-align: center;
    width: 50%;
    font-size: 14px;
  }

  .dropdown-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    display: block;
  }

  .dropdown-grid.resources {
    grid-template-columns: 1fr;
  }

  .blog-card {
    white-space: normal;
    width: 40%;
    height: 268px;
    margin-bottom: 4px;
    margin-right: 16px;
    padding-bottom: 32px;
    display: inline-block;
    position: relative;
  }

  .blog-card.third {
    display: inline-block;
  }

  .dropdown-toggle-3 {
    z-index: 2;
    box-shadow: none;
    color: #151b26;
    border-top: 1px solid #e0e6e8;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s, color .2s cubic-bezier(.4, 0, .2, .01);
  }

  .dropdown-toggle-3:hover {
    color: #151b26;
  }

  .dropdown-toggle-3.w--open {
    box-shadow: none;
    background-color: #f0f0ff;
    position: sticky;
    top: 0;
  }

  .dropdown-toggle-3.login {
    text-align: center;
    border: 1px solid #273240;
    border-radius: 2px;
    justify-content: center;
    margin-left: 24px;
    margin-right: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dropdown-toggle-3.line {
    display: none;
  }

  .dropdown-toggle-3.button {
    padding-top: 24px;
    padding-bottom: 16px;
    display: block;
  }

  .menu-button-2 {
    flex-direction: column;
    width: 66px;
    height: 100%;
    padding: 20px 25px;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .menu-button-2.w--open {
    background-color: #fff0;
  }

  .dropdown-bg {
    display: none;
  }

  .blog-card-scroll {
    white-space: nowrap;
    width: 100%;
    margin-bottom: -16px;
    padding-left: 32px;
    padding-right: 16px;
    overflow: scroll;
  }

  .menu-left {
    z-index: 1;
    margin-top: 32px;
    display: flex;
    position: relative;
  }

  .dropdown-toggle-text {
    color: #002a54;
  }

  .container-178 {
    max-width: 95%;
  }

  .container-179.fond {
    margin-bottom: 40px;
  }

  .div-block-198 {
    height: 250px;
  }

  .container-200 {
    max-width: 95%;
  }

  .container-200.no-space {
    padding-left: 0;
    padding-right: 0;
  }

  .block-faq-bg-13 {
    display: block;
  }

  .div-block-325.space.s {
    height: auto;
    margin-bottom: 20px;
  }

  .columns-47 {
    display: block;
  }

  .container-203 {
    max-width: 95%;
  }

  .text-block-116, .text-block-116.text-haut {
    line-height: 18px;
  }

  .dropdown-card-2 {
    margin-bottom: 28px;
  }

  .dropdown-subgrid-2 {
    grid-template-columns: 1fr;
  }

  .container-204 {
    max-width: 95%;
    margin-bottom: 0;
  }

  .div-block-338 {
    height: 200px;
  }

  .container-206, .container-207 {
    max-width: 95%;
  }

  .columns-56 {
    display: flex;
  }

  .columns-56.noline {
    display: block;
  }

  .code-embed-3 {
    left: auto;
  }

  .div-block-351, .div-block-352 {
    padding-bottom: 20px;
  }

  .div-block-354, .div-block-354.droit {
    text-align: center;
  }

  .bold-text-130.texxte {
    color: #000;
  }

  .div-block-361 {
    text-align: center;
  }

  .text-span-94 {
    font-size: 16px;
    line-height: 18px;
  }

  .bold-text-132 {
    font-size: 30px;
    line-height: 32px;
  }

  .column-179 {
    text-align: center;
  }

  .bold-text-133 {
    font-weight: 600;
  }

  .container-208 {
    max-width: 95%;
  }

  .div-block-367, .div-block-368, .div-block-369 {
    height: 250px;
  }

  .div-block-373 {
    margin-bottom: 20px;
  }

  .div-block-375 {
    display: block;
  }

  .div-block-379 {
    text-align: center;
  }

  .column-188, .column-189, .column-190 {
    margin-bottom: 20px;
  }

  .div-block-388 {
    height: 190px;
  }

  .div-block-389 {
    height: auto;
  }

  .div-block-390 {
    margin-right: 10px;
  }

  .column-196 {
    margin-bottom: 20px;
  }

  .container-209, .container-210 {
    max-width: 95%;
  }

  .container-211 {
    max-width: 95%;
    overflow: hidden;
  }

  .container-212, .container-214 {
    max-width: 95%;
  }

  .div-block-400 {
    display: block;
  }

  .image-80._2 {
    margin-bottom: 40px;
  }

  .column-198 {
    margin-bottom: 20px;
  }

  .div-block-407 {
    border-radius: 10px;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    display: flex;
    box-shadow: 0 2px 5px #0003;
  }

  .div-block-408 {
    margin-right: 30px;
  }

  .link-137, .link-138 {
    color: var(--black);
  }

  .container-217 {
    max-width: 95%;
  }

  .columns-65 {
    margin-bottom: 40px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  ol {
    padding-left: 20px;
  }

  .button.blue.cta {
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button.blue.cta._2 {
    width: 50%;
  }

  .navigation-link.right {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navigation-bar {
    max-width: 100%;
  }

  .brand-link.on-top {
    float: left;
  }

  .brand-link.left-spacing {
    padding-left: 0;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .slide.three.fr {
    background-size: cover;
  }

  .cta-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    margin-bottom: 10px;
  }

  .cta-heading.inline-block, .cta-heading.inline-block.home-fr {
    font-size: 18px;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 9px;
  }

  .picture-border {
    margin-bottom: 13px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-fours {
    width: 33.33%;
  }

  .image-column {
    margin-bottom: 10px;
  }

  .content-column {
    text-align: center;
    margin-bottom: 13px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .right {
    justify-content: flex-end;
    align-items: center;
    display: block;
  }

  .services-wrapper {
    width: auto;
    height: 300px;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .services-button {
    padding: 12px 10px;
    line-height: 14px;
  }

  .services-button.home {
    font-size: 14px;
  }

  .services-button.home:hover {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .text-block-2, .text-block-2.bas {
    padding-left: 0;
  }

  .container-3.old {
    max-width: 100%;
  }

  .hero-slider-en {
    height: 528px;
  }

  .columns {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-5 {
    text-align: center;
    font-size: 16px;
  }

  .container-5 {
    display: none;
  }

  .container-6 {
    display: block;
  }

  .container-7 {
    display: none;
  }

  .div-block-5 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-cta {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .columns-4 {
    display: block;
  }

  .hero {
    padding: 40px 20px;
  }

  .flex-container {
    flex-direction: column;
  }

  .hero-image-mask {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .industry {
    padding-top: 10px;
  }

  .text {
    max-width: 100%;
  }

  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    text-align: center;
  }

  .top-link {
    padding-left: 20px;
  }

  .top-link._2 {
    text-align: left;
  }

  .services-button-2 {
    padding: 12px 10px;
    line-height: 14px;
  }

  .dautres {
    max-width: 100%;
  }

  .services-heading-bottom {
    font-size: 16px;
  }

  .bottom-service {
    width: auto;
  }

  .container-11 {
    max-width: 95%;
  }

  .essai-gratuit {
    max-width: 100%;
  }

  .case {
    width: auto;
  }

  .container-13 {
    height: 350px;
  }

  .div-block-14 {
    width: 260px;
    margin-top: 110px;
  }

  .div-block-14.anglo {
    width: 180px;
    margin-right: 40px;
  }

  .heading-14 {
    margin-right: 137px;
    font-size: 30px;
    line-height: 28px;
  }

  .heading-14.mobile {
    font-size: 30px;
  }

  .heading-14.desk {
    margin-right: 0;
    font-size: 30px;
  }

  .heading-15 {
    font-size: 20px;
    line-height: 24px;
  }

  .columns-6, .columns-6.mobile, .columns-7 {
    display: block;
  }

  .container-14 {
    max-width: 100%;
  }

  .image-10 {
    margin-bottom: 20px;
  }

  .container-15 {
    max-width: 100%;
  }

  .button-3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .columns-36 {
    display: block;
  }

  .html-embed-13 {
    display: flex;
  }

  .heading-17, .text-block-15 {
    text-align: center;
  }

  .html-embed-14, .html-embed-15 {
    justify-content: center;
    display: flex;
  }

  .paragraph-faq {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.5em;
  }

  .block-faq-title-2 {
    padding-bottom: 0;
    padding-left: 10px;
    font-size: 22px;
  }

  .faq-title-2 {
    align-self: auto;
    font-size: 16px;
    line-height: 22px;
  }

  .text-span-74 {
    font-size: 24px;
  }

  .icon-arrow-2 {
    margin-right: 15px;
  }

  .div-block-35 {
    padding-left: 10px;
  }

  .block-faq-bg-5 {
    background-color: #fff;
    width: auto;
    margin-top: 0;
    padding-bottom: 10px;
    padding-right: 5px;
    transition-property: none;
    display: block;
    box-shadow: 0 10px 15px -10px #0a0e201f;
  }

  .block-faq-bg-5:hover {
    background-color: #fff;
    transform: none;
    box-shadow: 0 10px 15px -10px #0a0e2029;
  }

  .container-19 {
    max-width: 100%;
  }

  .heading-38 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }

  .container-20 {
    max-width: 100%;
  }

  .div-block-37 {
    display: block;
  }

  .div-block-37.outt {
    display: flex;
  }

  .container-21, .container-22 {
    max-width: 95%;
  }

  .container-24, .container-25 {
    max-width: 100%;
  }

  .container-26 {
    max-width: 95%;
  }

  .container-27, .container-32, .container-35, .container-36, .container-37, .container-38, .container-39, .container-40, .container-41, .container-42, .container-43 {
    max-width: 100%;
  }

  .container-44 {
    max-width: 90%;
  }

  .container-45, .container-46, .container-47, .container-48, .container-49, .container-50, .container-51, .container-52, .container-53, .container-54, .container-55, .container-56, .container-57, .container-58, .container-59, .container-60, .container-61, .container-62, .container-63, .container-64, .container-65, .container-66, .container-67, .container-68, .container-69, .container-70, .container-71 {
    max-width: 100%;
  }

  .container-72 {
    max-width: 1008%;
  }

  .container-73, .container-74, .container-75, .container-76, .container-77, .container-78, .container-79, .container-80, .container-81, .container-82, .container-83, .container-85, .container-86 {
    max-width: 100%;
  }

  .container-87 {
    max-width: 90%;
  }

  .html-embed-19, .html-embed-20, .html-embed-21, .html-embed-22, .html-embed-23, .html-embed-24, .html-embed-25, .html-embed-26, .html-embed-27, .html-embed-28 {
    text-align: center;
  }

  .container-88, .container-89, .container-90, .container-92 {
    max-width: 100%;
  }

  .column-148 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-149, .column-150, .column-151 {
    margin-bottom: 40px;
  }

  .container-94 {
    max-width: 100%;
  }

  .container-95.muni.express {
    margin-bottom: 20px;
  }

  .container-95.career.blogue {
    background-position: 70%;
  }

  .div-block-55 {
    padding-top: 0;
  }

  .div-block-55.blogue {
    padding-left: 20px;
  }

  .bold-text-17 {
    color: var(--white);
  }

  .container-96, .container-99, .container-100, .container-101, .container-102, .container-103, .container-104, .container-106, .container-107, .container-108, .container-109, .container-110, .container-111, .container-112 {
    max-width: 100%;
  }

  .columns-37 {
    display: block;
  }

  .column-152 {
    margin-bottom: 40px;
  }

  .text-span-75 {
    font-style: italic;
  }

  .container-114, .container-115, .container-116 {
    max-width: 100%;
  }

  .grid-12-columns {
    grid-template-columns: 1fr 1fr;
  }

  .button-4.vert, .button-5.bouton {
    padding-left: 100px;
    padding-right: 100px;
  }

  .columns-40 {
    display: block;
  }

  .div-block-146 {
    flex: none;
  }

  .container-122 {
    max-width: 95%;
  }

  .container-123 {
    max-width: 951%;
  }

  .div-block-150 {
    height: 180px;
  }

  .column-156, .column-157, .column-158 {
    margin-bottom: 20px;
  }

  .paragraph-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-155 {
    text-align: center;
  }

  .container-124 {
    max-width: 95%;
  }

  .text-span-83 {
    font-style: italic;
  }

  .section-4 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container-166 {
    background-position: 100%;
  }

  .container-167 {
    max-width: 95%;
  }

  .sidebar-content-block {
    padding: 20px;
  }

  .category-item {
    padding-left: 0;
    padding-right: 0;
  }

  .code-embed {
    padding-top: 10px;
  }

  .text-block-111.mobile {
    color: var(--black);
    text-decoration: underline;
  }

  .link-block-25 {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .link-block-25.espace {
    flex: 1;
  }

  .container-170 {
    max-width: 95%;
  }

  .container-174 {
    height: auto;
    margin-bottom: 180px;
  }

  .button-icon {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }

  .button-icon.secondary {
    margin-bottom: 0;
  }

  .footer-2.random {
    height: 32%;
  }

  .progress-4 {
    flex: 0 auto;
    order: 0;
    justify-content: flex-start;
    margin-bottom: 16px;
  }

  .main-wrapper {
    height: auto;
  }

  .button-wrapper {
    flex: 1;
    align-items: stretch;
    margin-bottom: 0;
    display: flex;
  }

  .container-175 {
    flex: 1;
    grid-template-rows: 1fr 1fr auto auto;
    grid-template-columns: 1fr;
    place-items: center;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .container-175.footer {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .section-6 {
    align-items: flex-start;
    margin-top: 25px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: auto;
  }

  .tip-control__name-2 {
    justify-content: space-between;
  }

  .songs-wrapper {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .col._3-col.branding {
    flex-direction: column-reverse;
    margin-bottom: 16px;
  }

  .col._3-col.middle {
    margin-bottom: 16px;
  }

  .col._3-col.last {
    width: 50%;
    margin-bottom: 16px;
    display: flex;
  }

  .song-album {
    width: 250px;
    height: 250px;
  }

  .tip-control-2 {
    flex: 1;
    justify-content: space-between;
  }

  .logo-2 {
    margin-right: 0;
  }

  .logo-2.main {
    margin-bottom: 16px;
    display: none;
  }

  .logo-2.mobile, .heading-69.mobile {
    display: block;
  }

  .heading-69.desktop {
    display: none;
  }

  .button-7 {
    font-size: 16px;
  }

  .div-block-194 {
    text-align: center;
  }

  .mobile {
    display: block;
  }

  .rich-text-block-9 {
    display: none;
  }

  .blog-card {
    width: 56%;
    height: 300px;
  }

  .container-178 {
    max-width: 95%;
  }

  .container-178.quinoussommes {
    padding-top: 40px;
  }

  .container-179 {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-179.fond.mobile {
    display: none;
  }

  .container-179.fond.hide {
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;
  }

  .columns-45 {
    display: block;
  }

  .div-block-198 {
    height: auto;
  }

  .columns-46 {
    margin-bottom: 20px;
  }

  .icon-arrow-5 {
    margin-right: 15px;
  }

  .container-199 {
    max-width: 100%;
    padding-left: 0;
  }

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

  .block-faq-title-7 {
    padding-bottom: 5px;
    font-size: 22px;
  }

  .container-200 {
    margin-right: auto;
    padding: 10px 0;
  }

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

  .block-faq-bg-13 {
    width: auto;
    margin-top: 0;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    transition-property: none;
    display: block;
  }

  .block-faq-bg-13:hover {
    box-shadow: none;
    transform: none;
  }

  .heading-76 {
    font-size: 18px;
  }

  .div-block-325 {
    display: block;
  }

  .div-block-325.space {
    margin-bottom: 40px;
    display: block;
  }

  .div-block-325.space.s {
    height: auto;
  }

  .rich-text-block-11 {
    padding: 0;
  }

  .faq-title-8 {
    align-self: auto;
    font-size: 16px;
    line-height: 22px;
  }

  .container-201 {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .columns-47 {
    display: block;
  }

  .section-10 {
    margin-bottom: 40px;
  }

  .container-203 {
    max-width: 94.9989%;
    margin-bottom: 0;
  }

  .div-block-328 {
    margin-bottom: auto;
  }

  .div-block-333 {
    text-align: center;
    margin-bottom: 20px;
  }

  .column-166, .column-167, .column-168 {
    margin-bottom: 20px;
  }

  .container-204 {
    max-width: 95%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-block-118 {
    text-align: center;
  }

  .div-block-336 {
    padding-left: 10px;
  }

  .div-block-338 {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .columns-48 {
    padding-right: 0;
  }

  .columns-55, .container-207.padding.noline {
    display: block;
  }

  .container-207.noline {
    display: none;
  }

  .container-207.noline.mobile {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .container-207.noline.hide {
    display: none;
  }

  .container-207.line {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .columns-56, .columns-57 {
    display: block;
  }

  .code-embed-3 {
    left: auto;
  }

  .bold-text-119 {
    font-size: 30px;
    line-height: 32px;
  }

  .column-174 {
    margin-bottom: 60px;
  }

  .div-block-351, .div-block-352 {
    border-radius: 20px;
  }

  .column-175 {
    margin-bottom: 60px;
  }

  .section-14 {
    display: none;
  }

  .section-14.mobile {
    display: block;
  }

  .div-block-354 {
    margin-bottom: 20px;
  }

  .div-block-357 {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 20px;
    display: flex;
  }

  .div-block-358 {
    text-align: center;
    margin-bottom: 0;
  }

  .section-15 {
    background-image: url('../images/fond.webp');
  }

  .section-16.mobile.noback {
    background-image: none;
  }

  .section-16.hide {
    display: none;
  }

  .column-176, .column-177, .column-178 {
    margin-bottom: 10px;
  }

  .div-block-362, .div-block-363 {
    text-align: center;
    margin-bottom: 20px;
  }

  .container-208 {
    max-width: 94.9989%;
  }

  .paragraph-63 {
    font-size: 18px;
    font-weight: 700;
  }

  .div-block-367, .div-block-368, .div-block-369 {
    height: auto;
  }

  .div-block-370 {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    display: block;
  }

  .div-block-372 {
    margin-right: 10px;
  }

  .paragraph-64 {
    font-size: 20px;
  }

  .div-block-373 {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .div-block-375 {
    display: block;
  }

  .bold-text-137, .bold-text-138, .bold-text-139 {
    font-size: 30px;
    line-height: 32px;
  }

  .div-block-376 {
    text-align: center;
    margin-bottom: 20px;
  }

  .image-59, .image-60, .image-61, .image-62, .image-63, .image-64 {
    max-width: none;
  }

  .text-block-143, .text-block-144, .text-block-145 {
    text-align: center;
  }

  .column-182 {
    margin-bottom: 60px;
  }

  .column-182.no-space {
    margin-bottom: 20px;
  }

  .column-183 {
    margin-bottom: 60px;
  }

  .div-block-377 {
    margin-bottom: 20px;
  }

  .div-block-378 {
    display: block;
  }

  .column-184 {
    padding: 0;
  }

  .column-186, .column-187, .column-191 {
    margin-bottom: 20px;
  }

  .list-item-2 {
    padding-bottom: 0;
  }

  .bold-text-144 {
    font-size: 30px;
  }

  .bold-text-147 {
    font-size: 30px;
    line-height: 32px;
  }

  .bold-text-150 {
    font-size: 30px;
  }

  .div-block-380, .div-block-384 {
    margin-bottom: 10px;
  }

  .column-194, .column-195 {
    margin-bottom: 20px;
  }

  .div-block-385 {
    padding-left: 0;
  }

  .div-block-388 {
    height: auto;
  }

  .div-block-391 {
    background-color: #fff;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    display: flex;
  }

  .image-66 {
    max-width: none;
  }

  .paragraph-75 {
    margin-bottom: 0;
    line-height: 18px;
  }

  .div-block-392 {
    margin-right: 10px;
  }

  .div-block-393 {
    margin-bottom: 20px;
  }

  .container-209 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .columns-60 {
    display: block;
  }

  .div-block-394 {
    text-align: left;
    margin-bottom: 20px;
  }

  .columns-61, .columns-62 {
    display: block;
  }

  .section-24.hidesection {
    display: none;
  }

  .columns-63 {
    display: block;
  }

  .column-197 {
    margin-bottom: 20px;
  }

  .columns-64 {
    margin-bottom: 40px;
  }

  .container-216 {
    max-width: 95%;
  }

  .div-block-400 {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .div-block-401._2 {
    margin-bottom: 40px;
  }

  .image-80 {
    display: none;
  }

  .column-199 {
    margin-bottom: 20px;
  }

  .bold-text-166 {
    color: #000;
    font-size: 30px;
  }

  .bold-text-167 {
    line-height: 18px;
  }

  .column-200 {
    margin-bottom: 20px;
  }

  .div-block-407 {
    border-radius: 10px;
    flex: 1;
    padding: 10px 20px;
    display: flex;
    box-shadow: 0 2px 5px #0003;
  }

  .div-block-408 {
    justify-content: flex-start;
    align-items: flex-end;
    margin-right: 30px;
  }

  .link-137 {
    color: var(--black);
  }

  .link-138 {
    color: var(--black);
    text-decoration: underline;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 18px;
    line-height: 22px;
  }

  h3 {
    font-size: 24px;
  }

  ol {
    padding-left: 20px;
  }

  strong {
    font-size: 1em;
  }

  .button {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 12px;
  }

  .button.blue {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
    display: block;
  }

  .button.blue.cta {
    width: auto;
    margin-top: 0;
    margin-left: auto;
    font-weight: 600;
  }

  .button.blue.cta._2 {
    width: 70%;
  }

  .button.blue.cta.extra-space {
    padding-left: 60px;
    padding-right: 60px;
  }

  .button.tab {
    margin-bottom: 9px;
  }

  .button._2 {
    font-size: 14px;
  }

  .button.bottom {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 600;
  }

  .navigation-bar {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .hamburger-button.white {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-link {
    height: auto;
    margin-top: 15px;
  }

  .brand-link.w--current {
    height: auto;
  }

  .section {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.fond {
    padding-left: 5px;
    padding-right: 5px;
  }

  .slide {
    padding-left: 53px;
    padding-right: 53px;
  }

  .slide.three.fr {
    padding-top: 40px;
  }

  .slide.fr {
    background-size: cover;
    padding: 15px 15px 40px;
  }

  .cta-heading.inline-block {
    text-align: center;
    font-size: 16px;
    line-height: 18px;
  }

  .cta-heading.inline-block.home-fr {
    font-size: 16px;
    line-height: 18px;
  }

  .cta-heading.inline-block.home-fr._1 {
    line-height: 26px;
    display: none;
  }

  .cta-heading.inline-block.home-fr._1.mobile {
    display: block;
  }

  .cta-heading.inline-block.home-fr._1.mobile.desktop {
    display: none;
  }

  .slider-arrow-link.right {
    color: #0000;
  }

  .slider-icon-circle {
    width: 20px;
    height: 20px;
  }

  .hero-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
  }

  .hero-heading.white {
    font-size: 34px;
    line-height: 40px;
  }

  .hero-heading.white.smaller {
    font-size: 30px;
    line-height: 34px;
  }

  .hero-subheading {
    font-size: 20px;
    line-height: 20px;
  }

  .hero-subheading.white {
    line-height: 24px;
  }

  .section-heading.centered {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 26px;
  }

  .grid-fours {
    width: 50%;
  }

  .feature-column {
    margin-bottom: 20px;
  }

  .container-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-section {
    align-items: center;
    display: flex;
  }

  .phone-numbers {
    font-size: 11px;
  }

  .div-container._2 {
    padding-left: 1%;
    padding-right: 1%;
  }

  .heading {
    font-size: 24px;
    line-height: 26px;
  }

  .heading-3.home {
    border-bottom-style: none;
  }

  .heading-3._2 {
    text-align: center;
  }

  .services-row {
    width: 100%;
  }

  .services-wrapper {
    margin-left: 2px;
    margin-right: 2px;
  }

  .services-heading {
    font-size: 12px;
    line-height: 14px;
  }

  .services-text {
    font-size: 16px;
    line-height: 18px;
  }

  .services-button {
    flex: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .services-button.on-page {
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .services-button.home {
    text-align: left;
    flex: 0 auto;
    font-size: 14px;
    display: block;
  }

  .services-button.home:hover {
    font-size: 14px;
  }

  .services-button.home.desk {
    text-align: center;
    flex: 1;
  }

  .cta-container {
    flex-direction: column;
    align-content: center;
    align-items: center;
    display: block;
  }

  .cta-container.fr {
    margin-bottom: 5px;
  }

  .cta-container.fr.titre {
    flex: 0 auto;
    margin-bottom: 5px;
  }

  .text-block-2 {
    margin-top: 0;
    padding-bottom: 0;
  }

  .text-block-2.bas {
    margin-top: 0;
  }

  .float-left {
    display: block;
  }

  .container-3 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-3.old {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-4 {
    text-align: center;
    padding: 10px;
    font-size: 25px;
    line-height: 30px;
  }

  .body {
    background-image: none;
  }

  .retour {
    padding-left: 15px;
  }

  .hero-slider-en {
    height: 400px;
  }

  .column-2 {
    padding-right: 10px;
  }

  .heading-5 {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .container-5 {
    display: none;
  }

  .container-6 {
    max-width: 100%;
  }

  .container-7 {
    max-width: 100%;
    display: block;
  }

  .block-quote {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 22px;
  }

  .testimonial {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .bold-text {
    font-size: 14px;
    line-height: 16px;
  }

  .coin {
    padding-top: 4px;
    padding-right: 5px;
  }

  .formsite {
    text-align: left;
    justify-content: center;
    max-width: 100%;
    display: block;
    position: relative;
  }

  .formsite-block {
    justify-content: flex-start;
    display: block;
  }

  .number {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .columns-4 {
    flex-direction: column;
  }

  .image-5 {
    display: none;
  }

  .heading-7 {
    margin-bottom: 0;
  }

  .simplicite {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .industry {
    padding-top: 0;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 100px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .nav-logo-link {
    border-top: 1px solid #c4c4c4;
  }

  .nav-link-2 {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .top-link {
    text-align: left;
    flex: 0 auto;
  }

  .nav-menu-2 {
    text-align: left;
    justify-content: center;
  }

  .menu-button, .menu-button.w--open {
    padding: 8px;
  }

  .services-button-2 {
    flex: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .services-button-2.home {
    font-size: 14px;
  }

  .hamburger-button-2.white {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .banner-image {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-2.white-section {
    padding-left: .5em;
    padding-right: .5em;
  }

  .div-block-8 {
    width: 100%;
  }

  .dautres {
    padding-bottom: 0;
  }

  .other {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .services-heading-bottom {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    display: block;
  }

  .bottom-service {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .bottom-column {
    justify-content: center;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .div-block-9 {
    border-right-style: none;
  }

  .dropdown._2.menu {
    padding-bottom: 0;
  }

  .container-11 {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-10 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .heading-11 {
    font-size: 24px;
    line-height: 26px;
  }

  .case, .cta-button {
    width: auto;
  }

  .text-block-14 {
    text-align: center;
    padding-bottom: 15px;
  }

  .columns-5 {
    display: block;
  }

  .button-2 {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 12px;
  }

  .div-block-12 {
    padding-left: 10px;
    padding-right: 10px;
  }

  ._311 h3 {
    font-size: 18px;
  }

  .div-block-14 {
    width: 260px;
    margin-top: 105px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block-14.anglo {
    width: 190px;
    margin-top: 105px;
    margin-right: 20px;
  }

  .heading-14 {
    margin-right: 9px;
    font-size: 30px;
  }

  .heading-14.anglo {
    width: auto;
  }

  .heading-14.mobile {
    color: var(--white);
    background-color: #fff0;
    border-radius: 10px;
    margin-right: 0;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    display: block;
  }

  .heading-14.desk {
    display: none;
  }

  .heading-15 {
    font-size: 20px;
    line-height: 24px;
  }

  .div-block-15 {
    margin-left: 20px;
  }

  .div-block-16 {
    padding-right: 20px;
  }

  .paragraph-2 {
    text-align: center;
  }

  .columns-6, .columns-7 {
    display: block;
  }

  .container-14 {
    max-width: 100%;
  }

  .rich-text-block {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-10 {
    margin-bottom: 20px;
  }

  .div-block-20 {
    width: 100%;
  }

  .div-block-22 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-12 {
    margin-bottom: 0;
  }

  .html-embed-3 {
    justify-content: center;
    display: flex;
  }

  .columns-36 {
    display: block;
  }

  .html-embed-13 {
    text-align: left;
  }

  .column-102 {
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-17 {
    text-align: center;
  }

  .text-block-15 {
    text-align: center;
    padding-right: 0;
  }

  .column-103 {
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-104 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-16 {
    max-width: 100%;
  }

  .html-embed-14, .html-embed-15 {
    justify-content: center;
    display: flex;
  }

  .paragraph-faq {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }

  .block-faq-title-2 {
    padding-left: 0;
    font-size: 18px;
  }

  .faq-title-2 {
    color: #333;
    text-align: left;
    font-size: 16px;
    line-height: 20px;
  }

  .text-span-74 {
    font-size: 24px;
  }

  .icon-arrow-2 {
    margin-right: 10px;
  }

  .div-block-35 {
    justify-content: center;
    padding-left: 10px;
    display: block;
  }

  .block-faq-bg-5 {
    background-color: #fff;
    width: 100%;
    padding: 20px 10px 10px;
    transition-property: none;
    display: block;
    box-shadow: -2px 10px 15px -10px #0a0e2029;
  }

  .block-faq-bg-5:hover {
    transform: none;
    box-shadow: 0 10px 15px -10px #0a0e2029;
  }

  .heading-38 {
    font-size: 20px;
  }

  .container-20 {
    max-width: 100%;
  }

  .div-block-36 {
    justify-content: center;
    padding-left: 17px;
    display: block;
  }

  .div-block-37 {
    padding-left: 17px;
    display: block;
  }

  .italic-text, .italic-text-2, .italic-text-3 {
    font-size: 16px;
  }

  .heading-42 {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: 25px;
    line-height: 30px;
  }

  .container-44 {
    max-width: 90%;
  }

  .div-block-38 {
    display: block;
  }

  .div-block-39 {
    justify-content: center;
    padding-left: 0;
    display: block;
  }

  .html-embed-17, .div-block-40, .div-block-41, .div-block-42 {
    justify-content: center;
    display: flex;
  }

  .container-87 {
    max-width: 90%;
  }

  .container-92, .container-93 {
    max-width: 100%;
  }

  .div-block-43, .div-block-44, .div-block-45, .div-block-46, .div-block-47, .div-block-48, .div-block-49, .div-block-50, .div-block-51, .div-block-52, .div-block-53, .div-block-54 {
    text-align: center;
  }

  .column-147 {
    padding-left: 0;
  }

  .heading-44 {
    margin-bottom: 0;
  }

  .column-148 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-95 {
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .container-95.contact {
    height: 200px;
  }

  .div-block-55 {
    padding-top: 0;
    padding-left: 0;
  }

  .div-block-55.blogue {
    padding-left: 10px;
  }

  .heading-45 {
    font-size: 25px;
    line-height: 27px;
  }

  .heading-45.blogue {
    text-align: left;
    font-size: 35px;
  }

  .heading-46 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 18px;
  }

  .heading-46.blogue {
    font-size: 20px;
  }

  .div-block-56 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .columns-37 {
    display: block;
  }

  .column-153 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-154 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-116 {
    max-width: 100%;
  }

  .html-embed-30 {
    display: block;
    position: relative;
    left: auto;
  }

  .dropdown-icon {
    margin-right: 10px;
    position: absolute;
    inset: auto 0 auto auto;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .container-117 {
    padding-top: 0;
    padding-left: .5em;
    padding-right: .5em;
  }

  .category-dropdown-toggle {
    padding: .5em;
  }

  .div-block-141 {
    justify-content: center;
  }

  .text-block-96 {
    font-size: 40px;
  }

  .button-4 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
  }

  .button-4.vert {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-94.haut {
    text-align: center;
    line-height: 15px;
  }

  .text-block-94._2 {
    text-align: left;
    font-size: 18px;
  }

  .container-118 {
    padding-top: 0;
    padding-left: .5em;
    padding-right: .5em;
  }

  .container-118.article-container {
    padding-left: .5em;
    padding-right: .5em;
  }

  .bold-text-33 {
    font-size: 16px;
    line-height: 16px;
  }

  .current-author {
    font-size: 16px;
  }

  .columns-39 {
    border-radius: 0;
  }

  .article-date-text {
    font-size: 16px;
  }

  .hero-article-title {
    font-size: 30px;
  }

  .button-5 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
  }

  .button-5.bouton {
    padding-left: 30px;
    padding-right: 30px;
  }

  .by-author-text {
    font-size: 16px;
  }

  .text-block-95 {
    font-size: 18px;
  }

  .container-119 {
    max-width: 100%;
    margin-bottom: 40px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .div-block-140 {
    top: -12px;
  }

  .column-69.test {
    height: 260px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .published-date {
    font-size: 16px;
  }

  .article-details-read-min {
    align-items: flex-start;
  }

  .column-70 {
    border-radius: 0 0 8px 8px;
    height: 260px;
    margin-top: 30px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-article {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: .5em;
    padding-bottom: .5em;
  }

  .container-120 {
    padding-top: 0;
    padding-left: .5em;
    padding-right: .5em;
  }

  .heading-56 {
    line-height: 28px;
  }

  .div-block-146 {
    display: flex;
  }

  .heading-57 {
    text-align: left;
    margin-bottom: 10px;
    line-height: 28px;
  }

  .heading-57.white {
    line-height: 28px;
  }

  .heading-57.white._2 {
    margin-bottom: 20px;
  }

  .heading-57.center {
    text-align: center;
  }

  .container-123 {
    max-width: 95%;
  }

  .container-123.bleu {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-4 {
    padding: 0;
  }

  .div-block-154 {
    height: auto;
  }

  .container-124 {
    display: none;
  }

  .container-124.mobile {
    display: block;
  }

  .div-block-156 {
    padding-bottom: 30px;
    display: block;
  }

  .div-block-157 {
    padding-left: 0;
  }

  .heading-58 {
    margin-bottom: 10px;
    line-height: 28px;
  }

  .columns-43 {
    display: block;
  }

  .div-block-158 {
    text-align: center;
    border-left-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .column-159 {
    display: block;
  }

  .paragraph-6, .paragraph-7 {
    text-align: left;
  }

  .slider-3 {
    width: 364px;
  }

  .text-block-103, .button-6 {
    font-size: 13px;
  }

  .div-block-163, .div-block-164 {
    text-align: center;
  }

  .bold-text-40 {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
  }

  .intro-block-icon {
    float: left;
    height: 22px;
    margin-bottom: 0;
    margin-right: 10px;
    position: static;
    transform: none;
  }

  .block-paragraph {
    width: 100%;
  }

  .intro-block-title {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .intro-link-block {
    font-size: 14px;
    line-height: 21px;
  }

  .intro-column {
    margin-bottom: 20px;
  }

  .container-166 {
    background-position: 100%;
  }

  .div-block-171 {
    margin-bottom: 20px;
  }

  .container-173 {
    max-width: 90%;
  }

  .body-4 {
    background-position: 100%;
    background-repeat: repeat-y;
    background-size: auto;
    background-attachment: fixed;
  }

  .container-174 {
    height: auto;
    margin-bottom: 0;
  }

  .button-icon {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    display: block;
  }

  .button-icon.audio {
    max-width: none;
  }

  .button-icon.secondary {
    flex: 0 auto;
    order: 1;
    margin-right: 8px;
  }

  .footer-2.random {
    border-top-style: none;
    height: 22%;
    position: fixed;
    overflow: visible;
  }

  .paragraph-14 {
    text-align: left;
    padding-right: 0;
  }

  .progress-4 {
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .song-wrapper {
    margin-bottom: 40px;
  }

  .button-wrapper {
    flex: 0 auto;
    justify-content: space-around;
    display: flex;
  }

  .audio-animation {
    display: flex;
  }

  .round-button-2.right {
    display: block;
  }

  .container-175.footer {
    border-top-style: solid;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
    position: static;
  }

  .section-6 {
    background-image: none;
    align-items: flex-start;
  }

  .tip-control__name-2 {
    justify-content: center;
    margin-bottom: 0;
  }

  ._wf-tips-link {
    display: none;
  }

  .songs-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-content: stretch;
    align-items: start;
    display: block;
  }

  .col {
    text-align: center;
    width: 100%;
  }

  .col._3-col {
    flex-direction: column-reverse;
  }

  .col._3-col.branding {
    flex-direction: column-reverse;
    flex: none;
    order: 0;
    align-self: stretch;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    display: flex;
  }

  .col._3-col.middle {
    flex-direction: row-reverse;
    flex: 0 auto;
    align-self: auto;
    align-items: center;
    width: 100%;
    display: block;
    overflow: visible;
  }

  .col._3-col.last {
    flex-direction: row-reverse;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .song-album {
    width: 250px;
    height: 250px;
  }

  .song-album.rap {
    width: auto;
    margin-bottom: 10px;
  }

  .progres-bar-2 {
    width: 100%;
    margin-right: 8px;
  }

  .tip-control-2 {
    align-items: center;
    display: flex;
  }

  .logo-2 {
    text-align: left;
    align-self: auto;
    width: auto;
    height: 20px;
    margin-bottom: 0;
    margin-right: 0;
  }

  .logo-2.main {
    display: none;
  }

  .logo-2.mobile {
    float: none;
    clear: none;
    display: block;
  }

  .div-block-193 {
    text-align: center;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .heading-69 {
    line-height: 32px;
  }

  .paragraph-16.mobile {
    font-size: 20px;
  }

  .text-block-114 {
    margin-bottom: 0;
  }

  .bold-text-47 {
    font-size: 40px;
    line-height: 44px;
  }

  .icon-4 {
    color: #fff;
  }

  .button-7 {
    padding-left: 80px;
    padding-right: 80px;
    font-weight: 600;
  }

  .div-block-194 {
    text-align: center;
  }

  .blog-card {
    width: 90%;
    height: 260px;
  }

  .menu-left {
    display: block;
  }

  .section-7 {
    margin-bottom: 20px;
  }

  .container-178 {
    max-width: 90%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .div-block-195 {
    display: block;
  }

  .div-block-197 {
    margin-bottom: 20px;
    margin-right: 0;
    padding-right: 0;
  }

  .container-179, .container-179.fond {
    padding-left: 0;
    padding-right: 0;
  }

  .container-179.fond.mobile {
    display: none;
  }

  .container-179.fond.hide {
    display: block;
  }

  .container-179.marges {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-179.no-space {
    margin-bottom: 0;
  }

  .columns-45 {
    display: block;
  }

  .container-180 {
    padding: 40px 10px;
  }

  .icon-arrow-5 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .bold-text-108 {
    text-align: left;
    font-size: 16px;
    line-height: 20px;
  }

  .bold-text-108.gros-titre {
    color: #000;
    font-size: 25px;
  }

  .block-faq-title-7 {
    padding-left: 5px;
    font-size: 18px;
  }

  .container-200, .container-200.no-space {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-96 {
    font-size: 25px;
    line-height: 20px;
  }

  .block-faq-bg-13 {
    width: 100%;
    padding: 20px 0 10px;
    transition-property: none;
    display: block;
  }

  .block-faq-bg-13:hover {
    box-shadow: none;
    background-color: #fff;
    transform: none;
  }

  .heading-76 {
    padding-right: 10px;
  }

  .div-block-325 {
    display: block;
  }

  .div-block-325.space {
    margin-bottom: 60px;
  }

  .div-block-325.space.s {
    height: auto;
  }

  .rich-text-block-11 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }

  .faq-title-8 {
    color: #333;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
  }

  .container-201 {
    padding: 40px 0;
  }

  .paragraph-53 {
    line-height: 19px;
  }

  .section-10 {
    margin-bottom: 40px;
  }

  .container-203 {
    max-width: 95%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-203.marge {
    margin-bottom: 60px;
    padding: 20px 10px;
  }

  .div-block-328 {
    text-align: left;
    margin-bottom: 0;
  }

  .text-block-116 {
    padding-left: 10px;
    font-size: 25px;
    line-height: 32px;
  }

  .text-block-116.text-haut {
    font-size: 24px;
    line-height: 26px;
  }

  .text-block-116.titre {
    color: #000;
    line-height: 32px;
  }

  .bold-text-110 {
    line-height: 26px;
  }

  .div-block-333 {
    text-align: center;
  }

  .text-block-117 {
    line-height: 32px;
  }

  .container-204 {
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-204.esapce {
    padding-top: 40px;
  }

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

  .columns-48 {
    padding-right: 0;
  }

  .bold-text-113 {
    color: #000;
    font-size: 25px;
  }

  .container-205 {
    padding: 50px 10px 40px;
  }

  .bold-text-114 {
    font-size: 25px;
  }

  .container-206 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-345 {
    display: block;
  }

  .div-block-347 {
    text-align: center;
    margin-bottom: 20px;
  }

  .container-207 {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-207.noline {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-207.line {
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .container-207.line.espace {
    padding-bottom: 0;
  }

  .paragraph-56 {
    color: #000;
    font-size: 25px;
  }

  .paragraph-56.center {
    color: #000;
    font-size: 16px;
    line-height: 18px;
  }

  .paragraph-57 {
    padding-left: 10px;
  }

  .div-block-350 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-174 {
    margin-bottom: 40px;
  }

  .div-block-351 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-352 {
    padding: 20px;
  }

  .column-175 {
    margin-bottom: 40px;
  }

  .section-14 {
    display: none;
  }

  .section-14.mobile {
    margin-bottom: 40px;
  }

  .paragraph-59 {
    color: #000;
    font-size: 25px;
  }

  .div-block-357 {
    height: auto;
    display: block;
  }

  .div-block-358 {
    text-align: center;
    margin-bottom: 10px;
  }

  .bold-text-123 {
    color: #000;
    font-size: 25px;
    line-height: 32px;
  }

  .section-15 {
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-16.hide {
    display: none;
  }

  .bold-text-124, .bold-text-125 {
    font-size: 25px;
  }

  .bold-text-130 {
    text-align: center;
    font-size: 25px;
  }

  .bold-text-130.titre {
    color: #000;
    font-size: 25px;
    line-height: 32px;
  }

  .bold-text-130.texxte {
    line-height: 18px;
  }

  .bold-text-132 {
    font-size: 25px;
  }

  .div-block-363 {
    text-align: center;
    margin-bottom: 20px;
  }

  .bold-text-133 {
    font-size: 16px;
  }

  .container-208 {
    max-width: 90%;
  }

  .div-block-367, .div-block-368, .div-block-369 {
    height: auto;
  }

  .div-block-370 {
    margin-bottom: 40px;
    margin-right: 0;
    display: block;
  }

  .div-block-372 {
    text-align: center;
    margin-bottom: 20px;
  }

  .paragraph-64 {
    text-align: center;
  }

  .div-block-373 {
    margin-bottom: 20px;
  }

  .div-block-375 {
    margin-bottom: 20px;
    display: block;
  }

  .text-block-139, .text-block-140, .text-block-141, .text-block-142 {
    text-align: center;
  }

  .column-180 {
    margin-bottom: 20px;
  }

  .column-181 {
    margin-top: 20px;
  }

  .image-62, .image-63, .image-64 {
    max-width: none;
  }

  .text-block-143, .text-block-144, .text-block-145 {
    text-align: center;
  }

  .bold-text-140 {
    color: #000;
    font-weight: 700;
  }

  .rich-text-block-13 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-184 {
    padding: 0;
  }

  .bold-text-141 {
    line-height: 18px;
  }

  .column-185 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-187 {
    padding: 0;
  }

  .column-192, .column-193 {
    margin-bottom: 20px;
  }

  .paragraph-72 {
    color: #000;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-73 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bold-text-142, .bold-text-144 {
    font-size: 25px;
  }

  .bold-text-145 {
    color: var(--black);
    font-size: 25px;
  }

  .titre {
    font-size: 25px;
  }

  .bold-text-147, .bold-text-148 {
    color: #000;
    font-size: 25px;
  }

  .bold-text-150, .bold-text-151 {
    font-size: 25px;
  }

  .div-block-381 {
    margin-right: 0;
  }

  .paragraph-74 {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 22px;
  }

  .div-block-391 {
    display: block;
  }

  .div-block-392 {
    text-align: center;
    margin-bottom: 10px;
  }

  .container-209 {
    margin-bottom: 0;
  }

  .bold-text-152 {
    font-size: 26px;
  }

  .bold-text-153 {
    font-size: 20px;
  }

  .bold-text-154 {
    font-size: 26px;
  }

  .container-211 {
    padding-top: 0;
  }

  .paragraph-80 {
    font-size: 25px;
  }

  .paragraph-81 {
    font-size: 20px;
  }

  .container-212 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-82, .paragraph-83, .paragraph-84, .bold-text-164 {
    font-size: 25px;
  }

  .div-block-402 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-403 {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-166 {
    font-size: 25px;
  }

  .rich-text-block-16, .rich-text-block-17 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-404, .div-block-405, .div-block-406 {
    text-align: center;
  }

  .rich-text-block-18 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-202 {
    margin-bottom: 20px;
  }
}

#w-node-_90a3a8b6-832f-fc58-a210-6c58585daf0f-b0eed147 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fe989c55-190b-90c4-11fb-22c413bed261-4285f8b0 {
  align-self: start;
}


