:root {
  --background-grey: #f1f4f8;
  --primary-green: #16a263;
  --white: white;
  --secondary-green: #21dd89;
  --black: black;
}

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.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;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

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

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

body {
  color: #1a1b1f;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #1a1b1f;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.divider {
  background-color: #eee;
  height: 1px;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section.cc-cta {
  background-color: #f4f4f4;
  padding: 0;
}

.section.cc-home-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.section.cc-store-home-wrap {
  background-color: var(--background-grey);
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 5px;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-tiny {
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.paragraph-bigger {
  opacity: 1;
  text-align: left;
  margin-bottom: 10px;
  padding-left: 1%;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
  padding-top: 10px;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: .86;
}

.primary-button {
  background-color: var(--primary-green);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.primary-button:hover {
  color: #fff;
  background-color: #32343a;
}

.primary-button:active {
  background-color: #43464d;
}

.primary-button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.primary-button.cc-contact-us {
  z-index: 5;
  position: relative;
}

.primary-button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.primary-button.cc-white-button:hover {
  background-color: #fffc;
}

.primary-button.cc-white-button:active {
  background-color: #ffffffe6;
}

.primary-button.bouton-vente {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
}

.label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.label.cc-styleguide-label {
  margin-bottom: 25px;
}

.label.cc-light {
  opacity: .6;
}

.label.cc-blog-date {
  opacity: .6;
  margin-top: 20px;
}

.heading-jumbo-tiny {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.rich-text {
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.paragraph-light {
  opacity: .6;
  font-family: Inter, sans-serif;
}

.heading-jumbo {
  text-align: left;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 1%;
  font-family: Inter Tight, sans-serif;
  font-size: 57px;
  font-weight: 500;
  line-height: 74px;
}

.heading-jumbo-small {
  text-align: center;
  text-transform: none;
  margin-top: 50px;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: Inter Tight, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
}

.heading-jumbo-small.titre-clients {
  margin-top: 0;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.styleguide-header-wrap {
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 460px;
  padding: 30px;
  display: flex;
}

.paragraph-small {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.menu {
  z-index: 0;
  justify-content: center;
  align-items: flex-end;
  margin-left: 220px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.navigation-wrap {
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.navigation {
  background-color: var(--primary-green);
  align-items: center;
  padding: 7px 50px;
  display: flex;
  position: sticky;
  top: 0;
}

.navigation-item {
  opacity: .9;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.navigation-item:hover {
  opacity: .9;
}

.navigation-item:active {
  opacity: .8;
}

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.logo-image {
  display: block;
}

.navigation-items {
  flex: none;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  display: flex;
}

.footer-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.webflow-link {
  opacity: .5;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 70%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrap {
  text-align: center;
  justify-content: center;
  display: flex;
}

.intro-header {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-color: #f4f4f4;
  background-image: url('../images/BanniereLandingSimplonomiecompressee.png');
  background-position: 50%;
  background-size: cover;
  background-clip: border-box;
  justify-content: flex-start;
  align-items: flex-start;
  height: 480px;
  margin-bottom: 20px;
  display: flex;
}

.intro-header.cc-subpage {
  color: #fff;
  background-color: #000;
  background-image: none;
  height: 480px;
}

.intro-content {
  text-align: center;
  width: 70%;
  max-width: 1140px;
}

.intro-content.cc-homepage {
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
  padding-top: 40px;
}

.motto-wrap {
  text-align: center;
  width: 80%;
  margin-bottom: 85px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-wrap {
  text-align: center;
  width: 80%;
  margin: 80px auto;
}

.our-services-grid {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 120px;
}

.section-heading-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.service-icon {
  margin-bottom: 30px;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.status-message.cc-no-data {
  width: 70%;
  margin: 100px auto;
  display: block;
}

.contact-form-wrap {
  border: 1px solid #eee;
  padding: 45px 50px 50px;
}

.contact-form-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2.5fr 1fr;
  align-items: start;
}

.details-wrap {
  margin-bottom: 30px;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::placeholder {
  color: #32343a66;
}

.text-field.cc-contact-field {
  margin-bottom: 25px;
}

.text-field.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.contact-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-form-heading-wrap {
  margin-bottom: 40px;
}

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

.map {
  height: 460px;
  line-height: 20px;
}

.contact-team-name-wrap {
  margin-bottom: 30px;
}

.our-contacts {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template: ". . ."
  / 1fr 1fr 1fr;
}

.contact-team-details-wrap {
  margin-top: 30px;
}

.contact-team-pic {
  background-color: #f4f4f4;
  height: 150px;
  margin-bottom: 30px;
}

.team-pic {
  background-color: #f4f4f4;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}

.team-members {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
}

.team-member-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.team-member-name {
  opacity: 1;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.projects-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 "."
                 / 1fr;
}

.project-name-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.project-name-link {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.project-name-link:hover {
  opacity: .8;
}

.project-name-link:active {
  opacity: .7;
}

.project-cover-link {
  margin-bottom: 40px;
}

.project-cover-link:hover {
  opacity: .8;
}

.project-cover-link:active {
  opacity: .7;
}

.project-overview-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: url('../images/portfolio-1---wide.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 620px;
  display: flex;
}

.project-overview-header.cc-project-2-header {
  background-image: url('../images/portfolio-2---wide.svg');
  background-position: 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: url('../images/portfolio-3---wide.svg');
  background-size: cover;
}

.project-details-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: start;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  background-image: url('/images/placeholder-1.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 60px;
  display: block;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-preview-image {
  background-image: url('/images/placeholder-1.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 45px;
  transition: opacity .6s;
  display: block;
}

.blog-preview-image:hover {
  opacity: .8;
}

.blog-preview-image:active {
  opacity: .7;
}

.blog-summary-wrap {
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: .8;
}

.blog-heading-link:active {
  opacity: .7;
}

.contact-email-link {
  opacity: .6;
  margin-bottom: 5px;
}

.contact-email-link:hover {
  opacity: 1;
}

.contact-email-link:active {
  opacity: .8;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-wrap {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 30px;
  display: flex;
}

._404-wrap {
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  margin-top: 0;
}

.home-section-wrap {
  margin-bottom: 30px;
}

.section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  background-color: var(--white);
  border-radius: 8px;
  grid-template: "."
  / 1fr 2fr;
  align-items: center;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px 30px 29px;
  box-shadow: 0 2px 5px 1px #0003;
}

.about-grid.cc-about-2 {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: ". .";
}

.intro-text {
  width: 700px;
  margin-bottom: 35px;
  margin-left: 20px;
  margin-right: 0;
}

.collection-wrap {
  flex-wrap: wrap;
  place-content: flex-start center;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.work-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-heading {
  text-align: center;
  margin-bottom: 60px;
}

.blog-preview-wrap {
  width: 33.33%;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 45px;
}

.collection-list-wrapper {
  margin-top: -49px;
}

.business-article-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  text-decoration: none;
}

.business-article-heading:hover {
  opacity: .8;
}

.business-article-heading:active {
  opacity: .7;
}

.secondary-button {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}

.secondary-button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.connexion {
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  padding-bottom: 9px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.paragraph, .link {
  font-family: Inter, sans-serif;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: row;
  justify-content: center;
  align-items: baseline;
  width: 600px;
  margin-left: 40px;
  display: flex;
}

.form.landingemailform {
  margin-top: 70px;
  margin-left: 4%;
}

.emailinputlanding {
  color: gray;
  text-align: left;
  border-radius: 8px;
  width: 400px;
  font-family: Inter, sans-serif;
}

.submit-button {
  background-color: var(--primary-green);
  border-radius: 7px;
}

.submit-button.boutonbaniere {
  background-color: var(--secondary-green);
  color: var(--white);
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  box-shadow: 10px 2px 5px #0003;
}

.success-message {
  background-color: #0000;
}

.text-block {
  text-align: left;
  padding-left: 60px;
  font-style: italic;
  font-weight: 300;
}

.collection-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.collection-item {
  width: 33.3333%;
  padding-left: 10px;
  padding-right: 10px;
}

.feature-item-container {
  border: 1px solid #f7f7f7;
  height: 330px;
  padding: 50px 40px;
  transition: box-shadow .2s;
  box-shadow: 0 5px 20px #0000000d;
}

.feature-icon {
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  display: flex;
}

.h3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.paragraph-2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.paragraph-2.cc-gray {
  color: #999;
}

.b {
  background-color: var(--secondary-green);
  border-radius: 5px;
  margin-left: 80px;
  font-weight: 600;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.home-stats-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-style-h2 {
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.container-large {
  width: 100%;
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  background-color: var(--white);
  text-align: center;
  border-bottom: 1px solid #e3e8ef;
  flex-flow: column;
  padding: 2.5rem 10px 1.5rem;
  display: flex;
  box-shadow: 0 5px 20px #0003;
}

.section-home-stats {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-style-h4 {
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.text-size-medium {
  font-size: .875rem;
  line-height: 1.6;
}

.text-size-medium.text-color-white-opacity-72 {
  color: var(--white);
  font-family: Inter, sans-serif;
}

.text-size-medium.text-color-white {
  color: var(--white);
}

.text-size-medium.text-color-white.text-underline {
  text-underline-offset: 15%;
  text-decoration: underline;
}

.text-size-medium.text-color-grayscale-400 {
  color: #9ca3af;
}

.stats-description {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.image {
  width: 50%;
}

.slide {
  color: #0000;
  background-image: url('../images/Step1parcours.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider {
  color: #0000;
  background-color: #0000;
  border-radius: 0;
}

.slide-2 {
  background-image: url('../images/Step1parcours.png');
  background-position: 0 0;
  background-size: auto;
}

.icon {
  color: #000;
  margin-left: -10px;
}

.icon-2 {
  color: #000;
  margin-right: 0;
}

.mask {
  opacity: 1;
  pointer-events: auto;
  color: #0000;
  border: 0 #0000;
}

.slide-3 {
  mix-blend-mode: normal;
  background-image: url('../images/Step3parcours.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-4 {
  background-image: url('../images/Step4parcours.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide2 {
  background-image: url('../images/Step2parcours.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.brands_list-wrapper {
  justify-content: flex-start;
  align-items: center;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(270deg, #0000, #000 15% 85%, #0000);
  mask: linear-gradient(270deg, #0000, #000 15% 85%, #0000);
}

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

.brands_item-block {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1.125rem;
  display: flex;
}

.brands_item-logo-wrap {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 1.125rem;
  justify-content: center;
  align-items: center;
  width: 12rem;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.brands_item-logo {
  border: 1px #000;
  border-radius: 1px;
  max-width: 80%;
  height: auto;
  max-height: 80%;
}

.brands_item-texts {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 70%;
  display: flex;
}

.brands_item-name {
  text-align: center;
  font-size: 1rem;
}

.brands_item-desc {
  color: #6b6b6b;
  text-align: center;
  font-size: .75rem;
  font-weight: 500;
}

.image-2 {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.cta-box-wrap {
  background-image: url('../images/CTA-Background.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: .75rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-head {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-head.is-cta-head {
  justify-content: flex-start;
  align-items: center;
  max-width: 41.7rem;
  margin-left: auto;
  margin-right: auto;
}

.section-head.is-pricing-hero {
  text-align: center;
  max-width: 31.875rem;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.is-contact-us-hero-head {
  max-width: 32.875rem;
  margin-left: auto;
  margin-right: auto;
}

.text-size-xlarge {
  font-size: 1.125rem;
}

.text-size-xlarge.text-align-center.text-color-grayscale-600.max-width-medium {
  max-width: 32.8rem;
  margin-left: -20px;
  margin-right: 20px;
}

.text-size-xlarge.text-weight-medium {
  font-size: 2rem;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #0000;
  background-image: linear-gradient(#0e121b 40%, #6d7a97);
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  padding: .6875rem 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  transition: background-position .3s;
  display: flex;
  box-shadow: inset 0 0 12px #fff6;
}

.button-2:hover {
  background-image: linear-gradient(0deg, #0e121b 40%, #6d7a97);
}

.button-2.is-text {
  box-shadow: none;
  color: #000;
  background-color: #0000;
  background-image: none;
  border: 2px solid #0000;
  border-bottom-style: none;
  border-radius: 0;
  padding: 0;
}

.button-2.is-secondary {
  color: #111729;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e3e8ef;
}

.button-2.is-secondary:hover {
  background-color: #f1f4f8;
}

.button-2.is-secondary.is-small {
  background-color: var(--secondary-green);
  color: var(--white);
  font-weight: 600;
}

.button-2.is-small {
  padding: .5625rem 1.5rem;
  font-size: .875rem;
}

.cta-content-wrap-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.cta-box-wrap-2 {
  background-image: url('../images/CTA-Background.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: .75rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-box-wrap {
  background-color: var(--primary-green);
  opacity: 1;
  border-radius: .75rem;
}

.footer-menu-link-list {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.footer-content-end-connect-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-content-top-start {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  max-width: 18rem;
  display: flex;
}

.footer-top-start-head {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.footer-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.text-size-large {
  font-size: 1rem;
}

.text-size-large.text-color-white {
  color: #fff;
}

.footer-content-end {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.social-link {
  color: #fff;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .9;
}

.footer-content-top-end {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  display: flex;
}

.footer-social-links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.footer-content-top {
  border-bottom: 1px solid #ffffff1f;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  display: flex;
}

.footer-menu-link {
  font-size: .875rem;
  text-decoration: none;
}

.footer-menu-link.text-color-white-opacity-72 {
  color: var(--white);
  transition: opacity .2s;
}

.footer-menu-link.text-color-white-opacity-72:hover {
  opacity: 1;
}

.footer-content-end-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-embed-custom-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: .75rem;
  height: .75rem;
  display: flex;
}

.button-stickeylanding {
  background-color: #3871ec;
  border-radius: 9px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.section-2 {
  max-width: 950px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #909090;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

._3-col-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-wrapper {
  text-align: right;
  margin-top: 40px;
}

.button-4 {
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #333;
  font-family: Lato, sans-serif;
  font-size: 12px;
  transition: background-color .2s ease-in-out;
  box-shadow: 1px 1px 10px -5px #0003;
}

.button-4:hover {
  background-color: #9741ff;
}

.card-title {
  color: #333;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
}

.card-title.small {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
}

.card-link {
  color: #333;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: block;
}

.card-link:hover {
  opacity: .8;
}

.card-link.image {
  width: 100%;
}

.card-data {
  color: #333;
  flex: 1;
  padding-top: 10px;
  text-decoration: none;
}

.card-data.lessons {
  padding-left: 20px;
  padding-right: 20px;
}

.author-info {
  color: #bbb;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.author-info.lesson-card {
  padding-left: 20px;
  padding-right: 20px;
}

.author-info.lower-margin {
  padding-top: 5px;
  padding-bottom: 10px;
}

.card {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px;
  transition: box-shadow .2s ease-in-out;
  display: flex;
}

.card:hover {
  box-shadow: 3px 3px 30px -8px #bbbbbb80;
}

.card.lesson-card {
  border: 0 solid #000;
  border-radius: 4px;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
  box-shadow: 0 2px 5px #0003;
}

.card.extra-padding {
  margin-top: 20px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.card.right-sidebar {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
  display: block;
}

.category-link {
  margin-top: 5px;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: block;
}

.category-link:hover {
  opacity: .6;
}

.author-name {
  margin-left: 3px;
}

.category {
  color: #9741ff;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.lesson-image {
  width: 100%;
  height: auto;
  overflow: clip;
}

.avatar {
  object-fit: cover;
  object-position: 50% 0%;
  background-image: url('/images/placeholder-1.svg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  display: block;
}

.paragrapheblogvignette {
  font-size: 13px;
  font-style: italic;
  line-height: 22px;
}

.dateblogvignette {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 300;
}

.sidebar {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  max-width: 280px;
  min-height: 100vh;
  padding: 20px;
  position: sticky;
  top: 0;
}

.search-input {
  background-image: url('../images/search_grey.svg');
  background-position: 5px;
  background-repeat: no-repeat;
  background-size: 22px;
  border: 0 solid #000;
  border-radius: 5px;
  margin-bottom: 0;
  padding-left: 35px;
}

.icon-3 {
  width: 22px;
  margin-right: 10px;
}

.footer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.footer-link {
  color: #909090;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: flex;
}

.footer-link:hover {
  color: #9741ff;
}

.logo {
  float: none;
  max-width: 150px;
  margin-bottom: 40px;
  padding: 20px;
  display: block;
}

.navlink {
  opacity: .6;
  color: #000;
  cursor: pointer;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: flex;
}

.navlink:hover, .navlink.w--current {
  opacity: 1;
}

.content-wrap {
  max-width: 1280px;
  padding: 20px 40px 0;
  position: relative;
}

.sticky-nav {
  background-color: #fff;
  position: relative;
}

.search {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.content {
  flex-direction: column;
  width: 100%;
  min-height: 50vh;
}

.page-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 100vh;
  display: grid;
}

.section-3 {
  margin-bottom: 40px;
}

.search-icon {
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  display: flex;
  position: relative;
}

.nav-menu {
  float: none;
  flex: 1;
}

.search-icon-open {
  width: 22px;
  margin-right: 10px;
  position: absolute;
}

.search-component {
  transform-origin: 100%;
  background-color: #fff;
  align-items: center;
  height: 45px;
  margin-bottom: 0;
  margin-right: 10px;
}

.webflow {
  margin-right: 10px;
}

.search-icon-close {
  width: 22px;
  margin-right: 10px;
  display: none;
  position: absolute;
}

.search-button {
  background-color: #0000;
}

.brand {
  float: none;
  display: block;
}

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

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

.news-content {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text-block {
  background-color: var(--white);
  border-radius: 4px;
  margin-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  line-height: 22px;
}

.news-description-and-date-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.paragraph-18 {
  color: #444;
  font-size: 1.125rem;
  line-height: 1.5em;
}

.heading-h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.paragraph-16 {
  color: #444;
  font-size: 1rem;
  line-height: 1.5rem;
}

.paragraph-20 {
  color: #444;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  line-height: 1.4em;
}

.section-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
}

.section-4.section-hero {
  background-color: var(--background-grey);
  padding-top: 2rem;
}

.blog-banner-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: auto;
  max-width: 800px;
  height: auto;
  max-height: none;
  margin: 24px auto 32px;
  overflow: hidden;
}

.container-2 {
  width: auto;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.content-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
  grid-auto-columns: 1fr;
  margin-left: -70px;
  margin-right: -50px;
  display: grid;
}

.right-sidebar_wrapper {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 40px;
}

.sidebar-link {
  color: #333;
  align-items: flex-start;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.buttonnews {
  background-color: var(--primary-green);
  border-radius: 9px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.submit-button-2 {
  background-color: #ffffff47;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 25%;
  height: 50px;
  transition: background-color .35s, color .35s;
}

.submit-button-2:hover {
  background-color: #dd783f;
}

.footer-section {
  background-color: #232f3899;
  border-top: 1px solid #ffffff1f;
  padding-top: 27px;
  padding-bottom: 27px;
}

.success-message-2 {
  color: #fff;
  background-color: #5cc489;
  border-radius: 3px;
  padding-top: 27px;
}

.featuredthumbnail {
  padding-top: 7px;
  padding-bottom: 7px;
}

.hero-subheading {
  color: #ffffffa1;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
}

.long-text {
  color: #fff;
  margin-top: 7px;
  font-size: 26px;
  line-height: 26px;
}

.hero-content, .section-heading-2 {
  text-align: center;
}

.footer-logo-2 {
  text-decoration: none;
}

.hero-heading {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 50px;
  line-height: 51px;
}

.button {
  color: #fff;
  background-color: #dd783f;
  border-radius: 3px;
  padding: 12px 31px;
  font-weight: 300;
  transition: background-color .2s, color .2s;
}

.button:hover {
  color: #fff;
  background-color: #f17228;
}

.nav-link {
  opacity: .7;
  color: #fff;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 300;
  transition: opacity .2s, transform .2s;
  display: inline-block;
}

.nav-link:hover {
  opacity: 1;
  color: #fff;
  transform: translate(0, -2px);
}

.nav-link.w--current {
  opacity: 1;
  color: #fff;
}

.menu-button-3 {
  float: right;
  color: #ffffffd9;
  border-radius: 2px;
  margin-top: 0;
  padding: 10px 8px 9px;
  transition: background-color .35s, color .35s;
  display: block;
}

.menu-button-3:hover {
  color: #fff;
  background-color: #ffffff1a;
}

.menu-button-3.w--open {
  background-color: #ffffff40;
}

.white {
  color: #efefef;
}

.menu-icon-3 {
  float: right;
  line-height: 13px;
  display: inline-block;
}

.navbar {
  background-color: #0000;
  background-image: linear-gradient(#00000054, #0000 99%);
  padding-top: 17px;
  padding-bottom: 17px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.form-wrapper {
  width: 500px;
  margin: 20px auto 80px;
  display: block;
}

.footer-link-2 {
  float: none;
  color: #fff9;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 0 3px 20px;
  font-size: 11px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: color .35s;
  display: inline-block;
}

.footer-link-2:hover {
  color: #fff;
}

.blog-thumbnail {
  margin-bottom: 13px;
  padding: 6px 12px;
}

.category-section {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 9px;
  padding-bottom: 9px;
}

.menu-link {
  float: left;
  margin-right: 1px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
}

.hero-section {
  background-image: linear-gradient(135deg, #1e2121d1 1%, #20202024 98%), url('../images/photo-1439189741837-58720e8d82d5.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 500px;
  padding-top: 184px;
  position: relative;
}

.field {
  float: left;
  color: #4d565d;
  border: 1px #000;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  width: 75%;
  height: 50px;
  font-size: 15px;
}

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

.section-title-2 {
  letter-spacing: 2px;
  margin-top: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}

.med-divider {
  background-color: #dedede;
  width: 20%;
  height: 1px;
  margin: 16px auto;
  list-style-type: lower-alpha;
  display: block;
}

.main-section {
  background-color: #f7f7f7;
  padding-top: 62px;
  padding-bottom: 15px;
}

.main-section.bottom-padding {
  padding-top: 0;
  padding-bottom: 89px;
}

.main-section.dark {
  background-color: #4d565d;
  background-image: linear-gradient(#232f3878, #232f384f 99%), url('../images/footer-bg.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  border-bottom: 1px #000;
  padding-bottom: 0;
}

.main-section.gray {
  background-color: #f8f8f8;
  padding-top: 0;
  padding-bottom: 30px;
  display: flex;
}

.author-link {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .2s;
  display: block;
}

.author-link:hover {
  transform: scale(1.02);
}

.blog-post-title {
  margin-top: 0;
  margin-bottom: 7px;
}

.blog-date {
  color: #999;
  margin-bottom: 2px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 25px;
  display: inline-block;
}

.smallest-divider {
  background-color: #dedede;
  width: 50px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.blog-category {
  color: #d25f7c;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 6px;
  text-decoration: none;
  display: inline-block;
}

.author-photo {
  border-radius: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.blog-post {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.author-wrapper {
  text-align: center;
  width: 70%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.full-divide {
  background-color: #dedede;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.author-name-2 {
  color: #353535;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.author-name-2:hover {
  color: #243039;
}

.author-bio {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.social-link-2 {
  opacity: .82;
  width: 20px;
  margin-left: 5px;
  margin-right: 5px;
  transition: opacity .2s;
  display: inline-block;
}

.social-link-2:hover {
  opacity: .45;
}

.hero-blog {
  background-image: url('../images/Banièrecasque.png');
  background-position: 50%;
  background-size: cover;
  height: 300px;
}

.container-3 {
  box-shadow: 0 1px 3px 18px var(--background-grey);
  background-color: #fff;
  border-radius: 12px;
  margin-top: -220px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.category-tag {
  color: #fff;
  text-transform: uppercase;
  background-color: #5cc489;
  border-radius: 2px;
  margin-top: 6px;
  margin-right: 6px;
  padding: 6px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 10px;
}

.author-title {
  float: left;
  color: #999;
  font-size: 12px;
  line-height: 35px;
}

.author-img {
  float: left;
  border-radius: 60px;
  width: 26px;
  margin-top: 5px;
  margin-bottom: 0;
  margin-right: 10px;
  position: static;
  bottom: 10px;
  right: 10px;
}

.thumbnail-wrapper {
  background-color: #fff;
  border-radius: 3px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #00000017;
}

.thumbnail-wrapper:hover {
  transform: translate(0, -3px);
  box-shadow: 0 0 0 1px #00000017, 0 2px 23px #00000017;
}

.thumbnail-image {
  -webkit-text-fill-color: inherit;
  background-color: #d6d6d6;
  background-image: url('/images/placeholder-1.svg');
  background-position: 0 0;
  background-size: contain;
  background-clip: border-box;
  width: 100%;
  height: 135px;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.preview-text {
  color: #7a7a7a;
  height: 40px;
  font-size: 13px;
  line-height: 19px;
  overflow: hidden;
}

.blog-title {
  color: #101315;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  display: inline-block;
}

.thumb-details {
  background-color: #fcfcfc;
  border-top: 1px solid #efefef;
  padding: 6px 13px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.thumbnail-text {
  border-top: 1px solid #e5e5e5;
  height: auto;
  padding: 13px;
  position: relative;
  overflow: hidden;
}

.thumbnail-date {
  float: right;
  color: #999;
  font-size: 12px;
  line-height: 35px;
  display: inline-block;
}

.div-block {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.titre-short-landing {
  font-size: 18px;
  font-weight: 600;
}

.flex-block {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.link-2 {
  text-align: right;
  margin-left: auto;
}

.containe-landing-vente {
  background-color: var(--white);
  text-align: center;
  max-width: 170px;
  padding: 10px 3px;
  box-shadow: 0 2px 5px #0003;
}

.columns {
  max-width: 875px;
}

.image-landing-vente {
  max-width: none;
  height: 96px;
  margin-left: auto;
  margin-right: auto;
}

.paragraphe-vente {
  text-align: center;
  padding-top: 5px;
  font-size: 12px;
  line-height: 17px;
}

.container-4 {
  display: none;
}

.link-blog {
  margin-left: auto;
  margin-right: 20px;
  font-size: 18px;
  font-weight: 500;
}

.div-block-2 {
  margin-top: 30px;
}

.heading-blog-post {
  margin-top: 25px;
}

.collection-list-2 {
  display: flex;
}

.paragraph-21 {
  display: none;
}

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

.div-block-3 {
  text-align: center;
}

.faq-accordion {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-bottom: 2px solid #e3e8ef;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: all .3s;
  display: flex;
  position: relative;
}

.section-faq {
  padding-top: 2rem;
  padding-bottom: 6.5rem;
  display: flex;
}

.tabs-menu-pricing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: .5px solid;
  background-color: #ffffff3d;
  border-image-source: linear-gradient(#ffffff83 0%, #9de2cdcc 15%, #9de2cdc1 85%, #ffffffa3 100%);
  border-radius: 5rem;
  padding: .25rem;
  display: flex;
  box-shadow: 0 2px 8px #0000000f, inset 0 -1px 18px #fff6;
}

.pricing-card-list-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.pricing-card-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 1.25rem;
  flex-flow: column;
  padding: 1.7rem;
  display: none;
  box-shadow: 0 0 8px #0000000f;
}

.pricing-description-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.gradient-hero {
  background-image: conic-gradient(from 180deg at 100%, #6bf4c7 0deg, #6bf4c77a 72deg, #e1f7ed00 126deg 306deg, #6bf4c700 360deg);
  width: 58.4375rem;
  height: 45.9375rem;
  position: absolute;
  inset: 0% auto 0% -7.25rem;
  transform: rotate(90deg);
}

.gradient-hero.is-left {
  left: -7.25rem;
  transform: rotate(-90deg);
}

.gradient-hero.is-right {
  left: auto;
  right: -7.25rem;
}

.hero-blur {
  filter: blur(100px);
  background-image: linear-gradient(270deg, #0000, #6bf4c7 48%, #0000);
  height: 80%;
  position: absolute;
  inset: 0%;
}

.hero-blur.is-pricing {
  background-image: linear-gradient(270deg, #0000, #6bf4c7 48%, #0000);
  flex: 0 auto;
  align-items: flex-start;
  height: 70%;
  display: flex;
}

.hero-blur.is-contact-us {
  height: 55%;
}

.background-hero-wrap {
  position: absolute;
  inset: 0%;
}

.tab-link-pricing {
  opacity: .56;
  color: #111729;
  text-align: center;
  background-color: #0000;
  border-radius: 5rem;
  padding: .5625rem 2.5625rem;
  font-size: .875rem;
}

.tab-link-pricing.w--current {
  opacity: 1;
  color: #111729;
  background-color: #fff;
  font-weight: 500;
}

.pricing-feature-list-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.faq-answer {
  background-color: #0000;
  padding-left: 2rem;
  position: relative;
  overflow: visible;
}

.pricing-features-list {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  padding-left: 0;
  display: flex;
}

.icon-pricing-list-item {
  width: 1.25rem;
}

.main-wrapper {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.section-cta {
  padding: .5rem;
}

.pricing-content-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.bakground-pattern-hero {
  object-fit: contain;
  width: 100%;
  max-height: none;
  position: static;
  inset: 0%;
}

.faq-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: stretch;
}

.faq-list-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-card-wrapper {
  border-radius: 1.25rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 800px;
  box-shadow: 0 0 8px #0000001f;
}

.pricing-card-wrapper.is-popular {
  background-color: #0e121b;
  border-radius: 1.25rem;
  padding: .125rem;
  box-shadow: 0 0 8px #0000001f;
}

.pricing-label {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.accordion-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.3125rem;
  display: flex;
}

.faq-icon-wrapper {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.faq-question {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  cursor: pointer;
  border-top: 1px #000;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.pricing-box-wrapper {
  border-radius: .75rem;
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.faq-active-line {
  background-color: #00ad75;
  width: 0%;
  height: .125rem;
  margin-bottom: -.125rem;
  position: absolute;
  inset: auto 0% -1.25rem;
}

.tabs-pricing {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-pricing {
  padding: 0;
  position: relative;
}

.tabs-content-pricing {
  width: 100%;
  margin-top: 2.5rem;
  overflow: visible;
}

.contactwrapperprice {
  background-color: var(--white);
  border-radius: 8px;
  flex-flow: column;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.section-5 {
  flex-flow: column;
  display: flex;
}

.form-2 {
  flex-flow: column;
  min-width: 350px;
  min-height: 0;
  display: flex;
}

.button-formulaire {
  background-color: var(--secondary-green);
  color: var(--white);
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.button-formulaire.seulement-mobile {
  display: none;
}

.slider-testimonial-mask {
  min-height: auto;
  position: static;
  overflow: visible;
}

.video-popup {
  z-index: 9999;
  background-color: #00000052;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.form-component {
  margin-bottom: 0;
}

.form-component.is-contact-us-form {
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 44.25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.75rem;
}

.rating {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.video-play-button {
  color: #fff;
  cursor: pointer;
  background-color: #fff6;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transition: all .3s;
  display: flex;
  position: absolute;
  overflow: visible;
}

.slider-left-arrow {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  letter-spacing: .01em;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: 1.375rem;
  font-weight: 500;
  left: 5%;
  display: flex !important;
}

.placeholder-video {
  filter: saturate(0%);
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.slider-left-arrow-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.375rem;
  display: flex;
  box-shadow: 0 0 8px #00000014;
}

.slider-testimonial-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.star-icon {
  color: #f29c06;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
}

.video-overlay-testimonial {
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0%;
}

.slider-testimonial-wrap {
  background-color: #0000;
  width: 55.625rem;
  height: auto;
  position: static;
}

.testimonial-author-info-wrapper {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  flex-flow: column;
  display: flex;
}

.video {
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-us-box-wrap {
  border-radius: .75rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.form-message-success {
  background-color: #0000;
  padding: 5rem;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.background-video {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.icon-1x1-large {
  width: 1.5rem;
  height: 1.5rem;
}

.form-3 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.form-field-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.form-field-two-column-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-input {
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: .5rem;
  min-height: 2.5rem;
  margin-bottom: 0;
  padding: .5625rem .625rem;
  font-size: .875rem;
}

.form-input::placeholder {
  color: #525866;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .5625rem;
  padding-bottom: .5625rem;
  font-size: .875rem;
}

.section-testimonial {
  flex-flow: column;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  display: flex;
}

.bakground-pattern-hero-2 {
  object-fit: contain;
  width: 100%;
  max-height: 61.8125rem;
  position: absolute;
  inset: 0%;
}

.section-contact-us-hero {
  padding: 0 .5rem .5rem;
}

.slide-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.video-testimonial-wrap {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 1.25rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 18.375rem;
  padding: 0;
  display: flex;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.slide-navigation {
  display: none;
}

.form-label {
  color: #0e121b;
  font-size: .875rem;
}

.slide-testimonial-info-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
  box-shadow: 0 0 8px #0000000f;
}

.close-button-video-popup {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  background-color: #fff6;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  position: absolute;
  inset: 1.125rem 1rem auto auto;
}

.form-message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

.slide-item-testimonial {
  height: 100%;
}

.slider-tesimonial-container {
  width: 100vw;
  min-height: 300px;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-us-content-wrap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  display: flex;
  position: relative;
}

.slider-right-arrow {
  z-index: 3;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  letter-spacing: .01em;
  text-transform: uppercase;
  align-items: center;
  width: auto;
  font-size: 1.375rem;
  font-weight: 500;
  right: 5%;
  display: flex !important;
}

.slider-right-arrow-wrap {
  z-index: 3;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  box-shadow: 0 0 8px #00000014;
}

.text-block-2 {
  display: none;
}

.paragraph-22.cookie-banner-paragraph---brix {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.button-primary {
  color: #fff;
  text-align: center;
  background-color: #4a3aff;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 21px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  display: flex;
  box-shadow: 0 3px 12px #4a3aff1f;
}

.button-primary:hover {
  background-color: #3527d8;
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px #4a3aff26;
}

.button-primary.cookie-accept {
  flex-wrap: nowrap;
  max-width: 160px;
  padding: 12px 20px;
  font-size: 12px;
  line-height: 15px;
  display: flex;
}

.button-primary.cookie-decline {
  max-width: 160px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
  line-height: 15px;
}

.close-message---brix {
  color: #170f49;
  cursor: pointer;
  transform-style: preserve-3d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: all .35s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.close-message---brix:hover {
  color: #4a3aff;
  transform: scale3d(.9, .9, .01);
}

.cookie-banner {
  z-index: 10;
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  position: fixed;
  inset: auto auto 32px 32px;
}

.cookie-banner.cookie-banner-1---brix {
  background-color: #fff;
  border-radius: 20px;
  max-width: 400px;
  padding: 34px 32px 34px 40px;
  inset: auto auto 32px 32px;
  box-shadow: 0 6px 23px #14142b14;
}

.button-cookie-icon---brix {
  margin-right: 8px;
}

.utility-padding-all-0 {
  padding: 0;
}

.slider-slide.utility-padding-all-0 {
  padding-left: 0;
  padding-right: 0;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.desktop-1-column {
  grid-template-columns: 1fr;
}

.grid-layout.desktop-3-column {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-layout.desktop-3-column.grid-gap-m {
  justify-content: end;
}

.grid-layout.grid-gap-m {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.utility-position-relative {
  position: relative;
}

.utility-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.utility-position-absolute {
  position: absolute;
}

.utility-padding-top-4rem {
  padding-top: 4rem;
}

.utility-padding-bottom-4rem {
  padding-bottom: 4rem;
}

.utility-padding-all-4rem {
  padding: 4rem;
}

.masonry-layout.desktop-3-column {
  column-count: 3;
}

.flex-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex-layout.flex-vertical {
  flex-direction: column;
}

.flex-layout.flex-gap-xs {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.flex-layout.flex-gap-xxs {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.flex-layout.y-center {
  align-items: center;
}

.utility-margin-bottom-2rem {
  margin-bottom: 2rem;
}

.pricing-4-tabs-menu.utility-margin-bottom-2rem {
  justify-content: flex-start;
  position: relative;
}

.icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

.paragraph-s {
  margin-bottom: 1rem;
}

.eyebrow.utility-margin-bottom-0, .utility-margin-bottom-0, .paragraph-xxl.utility-margin-bottom-0 {
  margin-bottom: 0;
}

.utility-aspect-2x3 {
  aspect-ratio: 2 / 3;
  position: relative;
}

.container-5 {
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
}

.card-attention {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #ffe5e5;
  border-left: 1px solid #e53935;
  border-radius: 16px;
  align-items: center;
  padding: 15px 40px 5px 10px;
  display: flex;
  box-shadow: 0 4px 5px #0003;
}

.card-attention.card---warning {
  background-color: #f9fda0;
}

.paragraph-23 {
  text-align: center;
  font-weight: 600;
  line-height: 25px;
}

.image-3 {
  max-width: 52px;
  padding-bottom: 0;
}

.image-4 {
  max-height: 80px;
}

.image-5 {
  border: 1px solid #000;
  border-radius: 2px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-24 {
  text-align: center;
  margin-left: auto;
  font-size: 14px;
}

.terms-and-conditions-details {
  margin-top: -2.5rem;
}

.heading-style-h5 {
  line-height: 1.2;
}

.heading-style-h5.is-terms-and-conditions {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.padding-global-2 {
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.section-terms-and-conditions {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.terms-and-conditions-component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #f5f5f5;
  border: 8px solid #fff;
  border-radius: 1.875rem;
  flex-flow: column;
  padding: 2.5rem 2.5rem 1.875rem;
  display: flex;
}

.container-large-2 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.button-5 {
  text-transform: capitalize;
  background-image: linear-gradient(0deg, #6e6e6e 50%, silver);
  border-radius: 3.125rem;
  justify-content: center;
  align-items: center;
  height: 2.625rem;
  margin-bottom: 0;
  padding: .8125rem 1.375rem;
  line-height: 0;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 0 1px #00000014, inset 0 -.25px 1px #0003, inset 0 1px 1px #8f8f8f;
}

.button-5:hover {
  color: #080808;
  background-image: linear-gradient(0deg, #ff5e01 50%, #ffddca);
  box-shadow: 0 0 0 1px #0003, inset 0 -.25px 1px #0003, inset 0 1px 1px #ffbd96;
}

.button-5.is-secondary {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(0deg, #ff7221 50%, #ffddca);
  line-height: 120%;
  box-shadow: 0 0 0 1px #00000014, inset 0 -.25px 1px #0003, inset 0 1px 1px #ffbd96;
}

.button-5.is-secondary:hover {
  color: #fff;
  background-image: linear-gradient(0deg, #ffddca 17%, #ff7221);
}

.terms-and-conditions-top-content {
  border-bottom: 1px solid #ededed;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  display: flex;
}

.terms-and-conditions-list {
  margin-bottom: .75rem;
  padding-left: 20px;
  list-style-type: disc;
}

.terms-and-conditions-left-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-size-regular {
  color: #5d5d5d;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
}

.text-size-regular.w--current {
  color: #080808;
}

.text-size-regular.is-terms {
  margin-bottom: .75rem;
}

.button-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1rem;
}

.div-block-4 {
  margin-top: 50px;
  margin-left: 330px;
}

.contactinfos {
  font-size: 12px;
  font-style: italic;
  line-height: 20px;
}

.body-2 {
  overflow: visible;
}

.div-block-5 {
  color: #1f1d1a;
  background-color: #f1e2cf;
  border: 1px solid #000;
  border-radius: 0;
}

.div-block-6 {
  padding: 10px 20px 10px 10px;
  box-shadow: 0 2px 5px #0003;
}

.paragraph-25 {
  font-size: 13px;
  line-height: 20px;
}

.div-block-7 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.grid-16 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-content: center;
  margin-bottom: 37px;
}

.text-block-37 {
  color: #1b1d1e99;
  font-size: 16px;
}

.text-span-9 {
  letter-spacing: -1px;
  font-style: italic;
}

.dropdown-list {
  background-color: #0000;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
  position: static;
}

.accordian-icon {
  padding-left: 5px;
}

.text-block-30 {
  color: #1b1d1e;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.accordian-item {
  z-index: 10;
  border: 1px solid #1b1d1e1a;
  border-radius: 16px;
  width: 100%;
  min-height: 80px;
  padding-left: 0;
  overflow: hidden;
}

.container-faq {
  width: 85%;
  max-width: 1272px;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.heading-20 {
  color: #1b1d1e;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  display: block;
}

.div-block-41 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  max-width: 925px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  line-height: 20px;
  display: flex;
}

.accordion-toggle {
  justify-content: flex-start;
  align-items: center;
  min-height: 80px;
  padding-left: 24px;
  padding-right: 24px;
  line-height: 20px;
  display: flex;
}

.bold-text {
  font-size: 16px;
  line-height: 50px;
}

.utility-margin-bottom-0-parent.utility-margin-bottom-0 {
  margin-bottom: 0;
}

.banner {
  overflow: hidden;
}

.utility-background-inverse {
  background-color: #000;
}

.y-center {
  justify-content: center;
  align-items: center;
}

.utility-margin-left-auto {
  margin-left: auto;
}

.small-button {
  padding: .5rem .75rem;
}

.utility-margin-left-1rem {
  margin-left: 1rem;
}

.utility-banner-close-button {
  text-align: center;
  cursor: pointer;
  font-variation-settings: "opsz" 50;
  background-color: #000;
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

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

.text-size-large-2 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-size-regular-2 {
  text-decoration: none;
}

.author-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  margin-left: 0;
  margin-right: 40px;
  display: none;
}

.author-wrap.pretemoignagne {
  margin-top: 5px;
  display: flex;
}

.testimonial-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #055346;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 35.625rem;
  display: flex;
}

.heading-style-h3-2 {
  color: #055346;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.heading-style-h3-2.testimonial-text {
  font-size: 1rem;
  line-height: 1.7rem;
}

.testimonial-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 90%;
  height: auto;
  margin-left: 140px;
  margin-right: 20px;
  position: static;
  inset: 0%;
}

.testimonial-image-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 29.6875rem;
  height: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
}

.div-block-42 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  max-width: 925px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  line-height: 20px;
  display: flex;
}

.heading-22 {
  color: #1b1d1e;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  display: block;
}

.text-block-38 {
  color: #1b1d1e;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.text-block-39 {
  color: #1b1d1e99;
  font-size: 16px;
}

.div-block-43 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  max-width: 925px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  line-height: 20px;
  display: flex;
}

.heading-23 {
  color: #1b1d1e;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  display: block;
}

@media screen and (max-width: 991px) {
  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .section.cc-store-home-wrap {
    padding-bottom: 20px;
    overflow: hidden;
  }

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

  .primary-button {
    justify-content: center;
  }

  .primary-button.cc-contact-us {
    display: none;
  }

  .heading-jumbo {
    font-size: 43px;
    line-height: 50px;
  }

  .heading-jumbo-small {
    display: block;
  }

  .heading-jumbo-small.titre-clients {
    padding-bottom: 0;
    display: none;
  }

  .logo-link.w--current {
    flex: 1;
    max-width: 200px;
  }

  .menu-icon {
    color: #fff;
    margin-bottom: 9px;
    margin-left: auto;
    display: block;
  }

  .menu {
    margin-left: 30px;
    position: static;
  }

  .navigation-wrap {
    grid-column-gap: 0%;
    grid-row-gap: 0%;
    background-color: #0000;
    justify-content: space-between;
    align-items: flex-end;
    margin-right: 40px;
  }

  .navigation {
    padding: 5px 30px;
  }

  .navigation-item {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 15px 30px;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navigation-items {
    background-color: #fff;
    padding-bottom: 0;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 80px 50px 90px;
  }

  .our-services-grid {
    text-align: center;
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-form-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .our-contacts {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-members {
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
  }

  .team-member-title-wrap {
    margin-bottom: 30px;
  }

  .project-details-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

  .detail-header-image {
    height: 460px;
  }

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

  .home-content-wrap {
    margin-bottom: 15px;
  }

  .about-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    grid-auto-flow: row;
  }

  .about-grid.cc-about-2 {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         ".";
  }

  .intro-text {
    width: auto;
  }

  .collection-wrap {
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-preview-wrap {
    text-align: center;
    width: 80%;
    padding-right: 15px;
  }

  .connexion {
    margin-left: 30px;
    display: none;
  }

  .collection-list {
    align-items: stretch;
    margin-left: -5px;
    margin-right: -5px;
  }

  .collection-item {
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .feature-item-container {
    height: auto;
  }

  .home-stats-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    pointer-events: auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin-top: 10px;
  }

  .home-stats-wrapper.paneauinfolanding {
    grid-column-gap: 0rem;
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .stats {
    width: 100%;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
  }

  .text-size-medium.text-color-grayscale-600 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .brands_list-wrapper {
    height: 1px;
    display: none;
  }

  .brands_list {
    display: none;
  }

  .brands_item-logo-wrap {
    width: 12rem;
  }

  .brands_item-logo {
    height: 75%;
  }

  .footer-content-top-end {
    grid-column-gap: 1.9075rem;
    grid-row-gap: 1.9075rem;
  }

  .footer-content-top {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: row;
    align-items: stretch;
  }

  ._3-col-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

  .card-title {
    line-height: 28px;
  }

  .card-link.image {
    text-align: center;
    align-self: center;
  }

  .card-data {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .author-info.lower-margin {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
  }

  .card.lesson-card {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card.extra-padding {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card.right-sidebar {
    padding: 10px;
  }

  .author-name {
    color: #6d6c6c;
    margin-left: auto;
    margin-right: 20px;
    font-size: 14px;
  }

  .lesson-image {
    width: 100%;
  }

  .sidebar {
    background-color: #0000;
    max-width: 100%;
    min-height: auto;
    padding: 0;
  }

  .nav-container {
    align-items: center;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .footer {
    padding-top: 20px;
  }

  .logo {
    max-width: 120px;
    margin-bottom: 0;
    padding: 10px 0;
  }

  .content-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sticky-nav {
    background-color: #0000;
  }

  .menu-icon-2 {
    color: #909090;
  }

  .page-wrap {
    min-height: auto;
    display: block;
  }

  .menu-button-2.w--open {
    background-color: #faf9ff;
  }

  .nav-menu {
    background-color: #fff;
  }

  .search-component {
    flex: 1;
    display: flex;
  }

  .brand {
    flex: 1;
  }

  .lesson-image-2 {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-content {
    width: 100%;
  }

  .paragraph-18 {
    font-size: 1rem;
  }

  .paragraph-20 {
    font-size: 1.25rem;
  }

  .section-4 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-4.section-hero {
    padding-top: 2rem;
  }

  .blog-banner-image {
    max-width: 500px;
  }

  .container-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .content-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .sticky-sidebar {
    position: static;
  }

  .buttonnews {
    margin-left: 35%;
    margin-right: auto;
  }

  .footer-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featuredthumbnail {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .section-heading-2 {
    text-align: center;
    display: block;
  }

  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-thumbnail {
    width: 33.33%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .main-section {
    padding: 40px 10px;
  }

  .main-section.dark {
    padding-left: 0;
    padding-right: 0;
  }

  .thumbnail-image {
    height: 110px;
  }

  .preview-text {
    max-height: 40px;
    overflow: hidden;
  }

  .titre-short-landing {
    line-height: 30px;
  }

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

  .container-4 {
    margin-top: 15px;
  }

  .div-block-2 {
    height: auto;
    padding-top: 0;
  }

  .section-faq {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .pricing-card-list-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-card-inner {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .gradient-hero {
    height: 28.0625rem;
  }

  .gradient-hero.is-left {
    left: -4.625rem;
  }

  .gradient-hero.is-right {
    right: -4.625rem;
  }

  .hero-blur {
    background-image: linear-gradient(270deg, #0000, #6bf4c7 48%, #0000);
  }

  .hero-blur.is-pricing {
    background-image: linear-gradient(270deg, #0000, #57c6a2cf 32%, #6bf4c7 48% 62%, #0000);
  }

  .hero-blur.is-contact-us {
    background-image: linear-gradient(270deg, #0000, #6bf4c7 34% 48%, #6bf4c7 62%, #0000);
  }

  .background-hero-wrap.is-pricing {
    display: flex;
  }

  .pricing-features-list {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .bakground-pattern-hero {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .faq-list-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .pricing-card-wrapper {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .pricing-card-wrapper.tableprixecranlarge, .button-formulaire.seulement-cran {
    display: none;
  }

  .button-formulaire.seulement-mobile {
    text-align: center;
    width: 300px;
    display: block;
  }

  .slider-testimonial-mask {
    min-height: auto;
  }

  .slider-left-arrow {
    margin-top: 2rem;
    position: relative;
    inset: auto 0% 0% 43%;
  }

  .placeholder-video {
    width: 100%;
    height: 100%;
  }

  .slider-left-arrow-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bakground-pattern-hero-2 {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .video-testimonial-wrap {
    max-width: 20.5rem;
  }

  .slider-tesimonial-container {
    min-height: auto;
    padding-bottom: 0;
  }

  .slider-right-arrow {
    inset: auto 43% 0% auto;
  }

  .slider-right-arrow-wrap {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
  }

  .cookie-banner {
    bottom: 24px;
    left: 24px;
  }

  .utility-padding-all-0 {
    padding: 0;
  }

  .grid-layout.desktop-1-column, .grid-layout.tablet-1-column {
    grid-template-columns: 1fr;
  }

  .utility-margin-bottom-0 {
    margin-bottom: 0;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h5.is-terms-and-conditions {
    margin-top: 1.875rem;
    margin-bottom: 1rem;
  }

  .padding-global-2 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .section-terms-and-conditions {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .terms-and-conditions-component {
    padding: 1.875rem;
  }

  .container-large-2 {
    max-width: 100%;
  }

  .button-5 {
    font-size: .875rem;
  }

  .div-block-4 {
    margin-left: 100px;
  }

  .grid-16 {
    margin-bottom: 40px;
  }

  .text-block-30 {
    font-size: 22px;
    line-height: 120%;
  }

  .heading-20 {
    font-size: 36px;
  }

  .y-center {
    align-items: center;
  }

  .heading-21 {
    margin-top: 20px;
  }

  .author-wrap {
    margin-left: auto;
    display: flex;
  }

  .author-wrap.pretemoignagne {
    display: none;
  }

  .testimonial-content {
    width: 90%;
    max-width: 47.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-wrapper {
    grid-column-gap: 3.125rem;
    grid-row-gap: 3.125rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .testimonial-image {
    height: 0;
  }

  .heading-22 {
    font-size: 36px;
  }

  .text-block-38 {
    font-size: 22px;
    line-height: 120%;
  }

  .heading-23 {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }

  .section {
    margin-left: 0;
    margin-right: 0;
  }

  .section.cc-cta {
    padding: 15px 0 0;
  }

  .section.cc-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-store-home-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .container {
    text-align: center;
  }

  .paragraph-bigger {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .heading-jumbo {
    width: 100%;
    font-size: 7vw;
    line-height: 64px;
  }

  .heading-jumbo-small {
    font-size: 30px;
    line-height: 52px;
  }

  .heading-jumbo-small.titre-clients {
    display: none;
  }

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

  .logo-link.w--current {
    max-width: 170px;
  }

  .menu-icon {
    margin-left: 0;
  }

  .menu {
    padding-right: 0;
  }

  .navigation-wrap {
    height: 59.95px;
  }

  .navigation {
    padding: 20px 30px;
    position: sticky;
  }

  .navigation-item {
    mix-blend-mode: normal;
  }

  .menu-button.w--open {
    z-index: 9;
  }

  .navigation-items {
    z-index: 9;
    position: absolute;
    top: 100%;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro-content {
    width: 80%;
  }

  .our-services-grid {
    grid-row-gap: 60px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .text-field.cc-contact-field, .text-field.cc-textarea {
    text-align: left;
  }

  .team-pic {
    height: 300px;
    margin-bottom: 30px;
  }

  .team-member-name {
    font-size: 16px;
    line-height: 28px;
  }

  .project-name-wrap {
    margin-bottom: 30px;
  }

  .project-name-link {
    font-size: 16px;
    line-height: 28px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .blog-detail-header-wrap {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .intro-text {
    margin-bottom: 25px;
  }

  .connexion {
    margin-left: 0;
  }

  .form.landingemailform {
    flex-flow: column;
    margin-top: 20px;
    margin-left: 10%;
  }

  .emailinputlanding {
    width: 300px;
    margin-bottom: 0;
  }

  .collection-list {
    flex-direction: column;
    margin: -10px 0;
  }

  .collection-item {
    width: 100%;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-item-container {
    height: auto;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .home-stats-wrapper.paneauinfolanding {
    grid-template-columns: 1fr 2.5fr 1fr;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .stats {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .heading-style-h4 {
    font-size: 1.25rem;
  }

  .text-size-medium.text-color-grayscale-600 {
    margin-bottom: 0;
  }

  .text-size-medium.text-color-white.text-underline {
    text-decoration: none;
  }

  .brands_item-logo-wrap {
    width: 12rem;
  }

  .text-size-xlarge.text-align-center.text-color-grayscale-600.max-width-medium {
    margin-left: 0;
  }

  .footer-content-end-connect-wrapper {
    display: none;
  }

  .text-size-large {
    font-size: 1rem;
  }

  .footer-content-top-end {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .footer-content-top {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-2 {
    margin-bottom: 60px;
  }

  ._3-col-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: repeat(auto-fit, minmax(1px, 1fr));
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .button-wrapper {
    text-align: left;
    margin-top: 20px;
    padding-left: 100px;
  }

  .card-title {
    font-size: 15px;
    line-height: 21px;
  }

  .card-link.image {
    width: 200px;
    max-width: none;
  }

  .card-data.lessons {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .card.lesson-card {
    flex-flow: row;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card.right-sidebar {
    margin-bottom: 40px;
  }

  .lesson-image {
    width: auto;
    height: 90%;
  }

  .paragrapheblogvignette {
    display: none;
  }

  .section-3 {
    margin-bottom: 60px;
  }

  ._4-col-grid {
    grid-template-columns: 1fr;
  }

  .rich-text-block {
    line-height: 23px;
  }

  .paragraph-18 {
    line-height: 1.5rem;
  }

  .paragraph-16 {
    font-size: .875rem;
    line-height: 1.375rem;
  }

  .paragraph-20 {
    width: 100%;
  }

  .container-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .right-sidebar_wrapper {
    margin-top: 40px;
  }

  .success-message-2 {
    color: #fff;
    background-color: #5cc489;
    padding-top: 28px;
    font-size: 18px;
  }

  .featuredthumbnail {
    padding: 10px 0;
  }

  .category-wrapper {
    width: 33.33%;
    padding-top: 4px;
    padding-bottom: 4px;
    display: inline-block;
  }

  .blog-thumbnail {
    width: 50%;
  }

  .hero-section {
    height: 440px;
    padding-top: 162px;
  }

  .main-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-section.dark {
    padding-left: 0;
    padding-right: 0;
  }

  .main-section.gray, .preview-text {
    display: none;
  }

  .titre-short-landing {
    font-size: 16px;
    line-height: 20px;
  }

  .containe-landing-vente.dernier {
    display: none;
  }

  .columns {
    width: 120%;
    display: flex;
  }

  .container-4 {
    padding-left: 20px;
  }

  .gradient-hero {
    height: 13.375rem;
  }

  .gradient-hero.is-left {
    width: 13.375rem;
    height: 58.4375rem;
    display: none;
    left: -2.25rem;
    transform: none;
  }

  .gradient-hero.is-right {
    width: 13.375rem;
    height: 58.4375rem;
    display: none;
    right: 2.25rem;
    transform: rotate(180deg);
  }

  .hero-blur {
    background-image: linear-gradient(270deg, #0000 100%, #6bf4c7 50%, #0000 70%);
  }

  .background-hero-wrap {
    background-image: linear-gradient(270deg, #e1f7ed00, #6bf4c7 50%, #e1f7ed00);
  }

  .background-hero-wrap.is-contact-us {
    height: 80%;
    margin-top: 98px;
    overflow: hidden;
  }

  .faq-icon-wrapper {
    width: 1.75rem;
  }

  .faq-question {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pricing-box-wrapper {
    background-repeat: no-repeat;
  }

  .button-formulaire {
    box-sizing: content-box;
    object-fit: fill;
  }

  .button-formulaire.seulement-cran {
    display: none;
  }

  .button-formulaire.seulement-mobile {
    text-align: center;
    display: block;
  }

  .slider-testimonial-mask {
    min-height: auto;
  }

  .slider-left-arrow {
    left: 42%;
  }

  .slider-testimonial-wrap {
    width: 100%;
  }

  .form-message-success {
    padding-left: 0;
    padding-right: 0;
  }

  .video-testimonial-wrap {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .slider-tesimonial-container {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .slider-right-arrow {
    right: 40%;
  }

  .button-primary {
    padding: 16px 34px;
    font-size: 16px;
    line-height: 18px;
  }

  .cookie-banner {
    border-radius: 18px;
  }

  .cookie-banner.cookie-banner-1---brix {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .utility-padding-all-0 {
    padding: 0;
  }

  .grid-layout.grid-gap-m {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-padding-top-4rem {
    padding-top: 2rem;
  }

  .utility-padding-bottom-4rem {
    padding-bottom: 2rem;
  }

  .utility-padding-all-4rem {
    padding: 1.5rem;
  }

  .utility-margin-bottom-2rem {
    margin-bottom: 1rem;
  }

  .utility-margin-bottom-0 {
    margin-bottom: 0;
  }

  .card-attention {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
  }

  .paragraph-23 {
    margin-bottom: 0;
  }

  .heading-style-h5.is-terms-and-conditions {
    margin-top: 1.25rem;
    margin-bottom: .625rem;
  }

  .padding-global-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-terms-and-conditions {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .terms-and-conditions-component {
    padding: 1.5rem;
  }

  .div-block-4 {
    margin-left: 50px;
    display: block;
  }

  .testimonial-content {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    width: 80%;
    max-width: none;
  }

  .heading-style-h3-2 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }

  .heading-style-h3-2.testimonial-text {
    line-height: 1.5rem;
  }

  .testimonial-wrapper {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-flow: column;
  }

  .testimonial-image-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
    line-height: 38px;
  }

  h2 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 32px;
  }

  .section {
    margin-left: 0;
    margin-right: 0;
  }

  .section.cc-cta {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section.cc-store-home-wrap {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .primary-button {
    max-width: 220px;
    padding-left: 25px;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .heading-jumbo {
    text-align: center;
    font-size: 33px;
    line-height: 48px;
  }

  .heading-jumbo-small {
    font-size: 25px;
    line-height: 35px;
  }

  .heading-jumbo-small.titre-clients {
    margin-top: 20px;
    display: none;
  }

  .menu {
    margin-left: 15px;
  }

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

  .menu-button {
    flex: none;
    margin-left: auto;
  }

  .menu-button.w--open {
    flex: none;
  }

  .cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .intro-content.cc-homepage {
    width: 90%;
  }

  .status-message.cc-no-data, .contact-form-grid {
    width: 100%;
  }

  .our-contacts {
    width: 90%;
  }

  .team-members {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .project-details-grid {
    width: 100%;
  }

  .blog-detail-header-wrap, .blog-item {
    width: 100%;
    max-width: none;
  }

  .section-heading {
    font-size: 25px;
    line-height: 35px;
  }

  .about-grid {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 20px;
  }

  .intro-text {
    width: 100%;
  }

  .connexion {
    font-size: 14px;
    display: none;
  }

  .emailinputlanding {
    width: 200px;
  }

  .padding-global.is-padding-box {
    margin-bottom: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-stats-wrapper {
    grid-template-columns: 1fr;
  }

  .home-stats-wrapper.paneauinfolanding {
    grid-template-columns: .25fr 2.5fr .25fr;
  }

  .heading-style-h2 {
    font-size: 1.75rem;
  }

  .heading-style-h2.text-align-center.is-heading-cta {
    max-width: 14rem;
    font-size: 1.65rem;
    line-height: 1.35;
  }

  .stats {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .section-home-stats {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: .75rem;
  }

  .slider {
    display: none;
  }

  .cta-content-wrap {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta-box-wrap {
    background-image: url('../images/bg-cta-mobile_1bg-cta-mobile.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

  .section-head.is-pricing-hero {
    margin-top: 0;
  }

  .text-size-xlarge {
    font-size: 1rem;
  }

  .text-size-xlarge.text-weight-medium.is-faq-questions {
    white-space: pre-line;
    word-break: normal;
  }

  .button-2 {
    background-image: linear-gradient(#0e121b 27%, #0000), radial-gradient(circle closest-corner at 50% 200%, #6d7a97, #0e121b 76%);
  }

  .button-2:hover {
    background-image: linear-gradient(#0e121b 40%, #0000), radial-gradient(circle at 50% 600%, #6d7a97 73%, #0e121b);
  }

  .cta-content-wrap-2 {
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta-box-wrap-2 {
    background-image: url('../images/bg-cta-mobile_1bg-cta-mobile.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .footer-box-wrap {
    background-position: -60% 250%, 0 0;
  }

  .footer-menu {
    margin-left: 30px;
  }

  .text-size-large {
    font-size: .875rem;
  }

  .footer-content-top-end {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-content-top {
    flex-flow: column;
  }

  .footer-menu-link.text-color-white-opacity-72 {
    font-size: .75rem;
  }

  .section-2 {
    margin-bottom: 40px;
    padding-left: 15px;
  }

  .section-title {
    margin-top: 20px;
    font-size: 20px;
  }

  .button-wrapper {
    padding-left: 0;
  }

  .card-link.image {
    width: 130px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .author-info.lower-margin {
    padding-top: 10px;
  }

  .card.lesson-card {
    width: 90%;
    margin-left: 0;
    margin-right: auto;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card.extra-padding {
    padding: 10px;
  }

  .lesson-image {
    margin-top: auto;
  }

  .avatar {
    flex: 0 auto;
  }

  .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer-link {
    justify-content: center;
  }

  .content-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-3 {
    margin-bottom: 40px;
  }

  .rich-text-block {
    font-size: 14px;
  }

  .heading-h1 {
    font-size: calc(.75rem + 9vw);
    line-height: 50px;
  }

  .paragraph-16 {
    display: none;
  }

  .blog-banner-image {
    width: 100%;
  }

  .container-2 {
    flex-wrap: nowrap;
  }

  .buttonnews {
    min-width: 220px;
  }

  .submit-button-2 {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    width: 100%;
  }

  .footer-section {
    position: relative;
  }

  .featuredthumbnail {
    padding: 5px 0;
  }

  .hero-subheading {
    line-height: 27px;
  }

  .long-text {
    margin-top: 0;
  }

  .section-heading-2 {
    display: block;
  }

  .footer-logo-2, .footer-logo-2.w--current {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .nav-link {
    opacity: .7;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 17px;
    display: block;
  }

  .nav-link.w--current {
    opacity: 1;
    color: #fff;
  }

  .menu-button-3 {
    margin-top: 13px;
  }

  .navbar {
    padding: 2px 15px 7px;
  }

  .logo-2 {
    float: left;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    display: inline-block;
  }

  .form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-link-2 {
    float: none;
    text-align: center;
    padding-left: 0;
    display: block;
  }

  .blog-thumbnail {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hero-section {
    height: 430px;
    padding-top: 118px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .field {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 100%;
    margin-bottom: 5px;
  }

  .close-x {
    color: #fff;
    text-transform: uppercase;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 27px;
    text-decoration: none;
    display: block;
    position: absolute;
    top: 21px;
    left: 35px;
    right: 35px;
  }

  .nav-menu-2 {
    background-color: #232f38eb;
    width: 100%;
    padding-top: 60px;
    display: block;
    position: absolute;
  }

  .med-divider {
    width: 60%;
  }

  .main-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-post-title {
    font-size: 25px;
    line-height: 35px;
  }

  .blog-post {
    width: 95%;
  }

  .container-3 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .author-img {
    display: block;
  }

  .flex-block {
    flex-flow: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .column {
    display: none;
  }

  .heading-blog-post {
    font-size: 25px;
    line-height: 32px;
  }

  .heading {
    font-size: 29px;
    line-height: 36px;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 42px;
  }

  .heading-3 {
    font-size: 25px;
  }

  .heading-4 {
    font-size: 28px;
    line-height: 45px;
  }

  .heading-5 {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-6 {
    font-size: 30px;
    line-height: 52px;
  }

  .faq-accordion {
    position: static;
    overflow: visible;
  }

  .section-faq {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
  }

  .tabs-menu-pricing {
    width: 100%;
  }

  .pricing-card-inner {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    padding: 1.25rem;
    display: flex;
  }

  .gradient-hero.is-left {
    transform: rotate(180deg);
  }

  .gradient-hero.is-right {
    inset: 0% -40% 0% auto;
    transform: rotate(180deg);
  }

  .hero-blur {
    background-color: #ffffff03;
    background-image: linear-gradient(270deg, #0000 30%, #6bf4c7 48%, #0000 60%);
  }

  .hero-blur.is-pricing {
    background-image: linear-gradient(270deg, #0000, #57c6a2cf 19%, #6bf4c7 48% 77%, #0000);
  }

  .background-hero-wrap.is-pricing {
    display: none;
  }

  .background-hero-wrap.is-contact-us {
    height: 80%;
    margin-top: 98px;
  }

  .tab-link-pricing {
    text-align: center;
    flex: 0 auto;
    width: 100%;
  }

  .faq-answer {
    position: relative;
    overflow: visible;
  }

  .faq-answer.w--open {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: visible;
  }

  .pricing-features-list {
    grid-template-columns: 1fr;
  }

  .bakground-pattern-hero {
    object-fit: cover;
  }

  .faq-content-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .faq-list-wrapper {
    display: block;
    overflow: visible;
  }

  .pricing-card-wrapper {
    width: auto;
    margin-left: 0;
  }

  .faq-question {
    justify-content: space-between;
    display: flex;
    position: relative;
  }

  .pricing-box-wrapper {
    background-image: none;
    background-size: auto;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .faq-active-line {
    position: absolute;
    inset: auto 0% -1.25rem;
  }

  .contactwrapperprice {
    max-width: 100%;
  }

  .form-2 {
    min-width: 250px;
  }

  .button-formulaire.seulement-mobile {
    width: 250px;
  }

  .form-component.is-contact-us-form {
    padding: 1.25rem;
  }

  .slider-left-arrow {
    left: 34%;
  }

  .placeholder-video {
    position: absolute;
  }

  .contact-us-box-wrap {
    padding-bottom: 2.5rem;
  }

  .form-message-success {
    padding-left: 0;
    padding-right: 0;
  }

  .form-field-two-column-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .form-input {
    font-size: .75rem;
  }

  .form-input.is-text-area {
    min-height: 7.0625rem;
  }

  .section-testimonial {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bakground-pattern-hero-2 {
    object-fit: cover;
  }

  .slide-content-wrapper {
    flex-flow: column;
  }

  .video-testimonial-wrap {
    max-width: none;
    min-height: 17.5rem;
  }

  .form-label {
    font-size: .75rem;
  }

  .slide-testimonial-info-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 1.5rem;
  }

  .slider-tesimonial-container {
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .slider-right-arrow {
    right: 35%;
  }

  .button-primary {
    padding: 15px 34px 16px;
  }

  .cookie-banner, .cookie-banner.cookie-banner-1---brix {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .utility-padding-all-0 {
    padding: 0;
  }

  .utility-margin-bottom-0 {
    margin-bottom: 0;
  }

  .container-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .card-attention {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .paragraph-23 {
    font-size: 14px;
  }

  .padding-global-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-terms-and-conditions {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .terms-and-conditions-component {
    padding: 1rem;
  }

  .button-5 {
    text-align: center;
    padding: .75rem 1.125rem;
    font-size: .875rem;
  }

  .terms-and-conditions-top-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 1.25rem;
  }

  .text-size-regular {
    font-size: .875rem;
    line-height: 1.375rem;
  }

  .div-block-4 {
    margin-left: 20px;
  }

  .text-block-30 {
    white-space: normal;
    font-size: 20px;
    line-height: 120%;
  }

  .author-wrap {
    margin-right: 0;
  }

  .heading-style-h3-2.testimonial-text {
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .testimonial-image-wrapper {
    max-width: 21.4375rem;
    padding-top: 27.125rem;
    display: none;
  }

  .text-block-38 {
    white-space: normal;
    font-size: 20px;
    line-height: 120%;
  }
}

#w-node-a6c3cd9c-373a-cb8e-18d3-db0fbae939c0-25face5f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-25face5f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_9d1aa1bb-35e5-5e53-287b-2194f4119646-9669b422 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6c3cd9c-373a-cb8e-18d3-db0fbae939c0-61b7a05a {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-61b7a05a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a6c3cd9c-373a-cb8e-18d3-db0fbae939c0-9a70a9ef {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-9a70a9ef {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-25face5f, #w-node-_86e64837-0616-515b-4568-76c147234d34-61b7a05a, #w-node-_86e64837-0616-515b-4568-76c147234d34-9a70a9ef {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-fdb5ae77-2bde-a787-fe56-d3bb3b7b8260-25face5f, #w-node-fdb5ae77-2bde-a787-fe56-d3bb3b7b8260-61b7a05a, #w-node-b09e1c48-c1b6-ab5c-e634-b3e1165fe791-b7521ecb, #w-node-fdb5ae77-2bde-a787-fe56-d3bb3b7b8260-9a70a9ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


