/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-section-flexible--bg-transparent {
  background-color: transparent;
}

.s-section-flexible--bg-white {
  background-color: #ffffff;
}

.s-section-flexible--bg-blue-light {
  background-color: #bfe9ff;
}

.s-section-flexible--bg-blue-cta {
  background-color: #004e6a;
}

.s-section-flexible--bg-blue-dark {
  background-color: #001a24;
}

.s-section-flexible--bg-green-light {
  background-color: #ecffac;
}

.s-section-flexible--bg-green {
  background-color: #85cc1d;
}

.s-section-flexible--bg-mid-grey {
  background-color: #d5d5d5;
}

.s-section-flexible--bg-black {
  background-color: #000000;
}

.s-section-flexible--bg-light-grey {
  background-color: #C8C8C8;
}

.s-section-flexible--text-dark {
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-flexible--text-light {
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-flexible--text-auto {
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-section-flexible--text-auto.s-section-flexible--bg-blue-dark, .s-section-flexible--text-auto.s-section-flexible--bg-blue-cta {
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-flexible__inner {
  width: 100%;
}

.s-section-flexible__inner--border {
  border: 1px solid rgba(0, 26, 36, 0.12);
  border-radius: 1.5rem;
}

.s-section-flexible--text-light .s-section-flexible__inner--border,
.s-section-flexible--text-auto.s-section-flexible--bg-blue-dark .s-section-flexible__inner--border,
.s-section-flexible--text-auto.s-section-flexible--bg-blue-cta .s-section-flexible__inner--border {
  border-color: rgba(255, 255, 255, 0.18);
}

.s-section-flexible__inner--pad-sm {
  padding: 1.5rem;
}

.s-section-flexible__inner--pad-md {
  padding: 2.5rem 2rem;
}

.s-section-flexible__inner--pad-lg {
  padding: 4rem 3rem;
}

.s-section-flexible__grid,
.s-section-flexible__grid > .block-editor-block-list__layout,
.s-section-flexible__grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row;
  width: 100%;
  gap: 2rem;
  min-width: 0;
}

.s-section-flexible__grid--align-top,
.s-section-flexible__grid--align-top > .block-editor-block-list__layout,
.s-section-flexible__grid--align-top > .block-editor-inner-blocks > .block-editor-block-list__layout {
  align-items: start;
}

.s-section-flexible__grid--align-center,
.s-section-flexible__grid--align-center > .block-editor-block-list__layout,
.s-section-flexible__grid--align-center > .block-editor-inner-blocks > .block-editor-block-list__layout {
  align-items: center;
}

.s-section-flexible__grid--align-bottom,
.s-section-flexible__grid--align-bottom > .block-editor-block-list__layout,
.s-section-flexible__grid--align-bottom > .block-editor-inner-blocks > .block-editor-block-list__layout {
  align-items: end;
}

.s-section-flexible__grid--align-stretch,
.s-section-flexible__grid--align-stretch > .block-editor-block-list__layout,
.s-section-flexible__grid--align-stretch > .block-editor-inner-blocks > .block-editor-block-list__layout {
  align-items: stretch;
}

.s-section-flexible__grid--align-stretch > .b-section-flexible-column,
.s-section-flexible__grid--align-stretch > .wp-block-madare-theme-child-section-flexible-column,
.s-section-flexible__grid--align-stretch > .wp-block {
  align-self: stretch;
  min-height: 100%;
}
.s-section-flexible__grid--align-stretch > .wp-block {
  display: flex;
  flex-direction: column;
}
.s-section-flexible__grid--align-stretch > .wp-block .b-section-flexible-column {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
}

.s-section-flexible__grid--align-stretch > .block-editor-block-list__layout > .wp-block,
.s-section-flexible__grid--align-stretch > .block-editor-block-list__layout > .block-editor-block-list__block,
.s-section-flexible__grid--align-stretch > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.s-section-flexible__grid--align-stretch > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.s-section-flexible__grid--align-stretch > .block-editor-block-list__layout > .wp-block .b-section-flexible-column,
.s-section-flexible__grid--align-stretch > .block-editor-block-list__layout > .block-editor-block-list__block .b-section-flexible-column,
.s-section-flexible__grid--align-stretch > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block .b-section-flexible-column,
.s-section-flexible__grid--align-stretch > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block .b-section-flexible-column {
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 100%;
}

.s-section-flexible__grid--gap-none,
.s-section-flexible__grid--gap-none > .block-editor-block-list__layout,
.s-section-flexible__grid--gap-none > .block-editor-inner-blocks > .block-editor-block-list__layout {
  gap: 0;
}

.s-section-flexible__grid--gap-sm,
.s-section-flexible__grid--gap-sm > .block-editor-block-list__layout,
.s-section-flexible__grid--gap-sm > .block-editor-inner-blocks > .block-editor-block-list__layout {
  gap: 1rem;
}

.s-section-flexible__grid--gap-md,
.s-section-flexible__grid--gap-md > .block-editor-block-list__layout,
.s-section-flexible__grid--gap-md > .block-editor-inner-blocks > .block-editor-block-list__layout {
  gap: 2rem;
}

.s-section-flexible__grid--gap-lg,
.s-section-flexible__grid--gap-lg > .block-editor-block-list__layout,
.s-section-flexible__grid--gap-lg > .block-editor-inner-blocks > .block-editor-block-list__layout {
  gap: 4rem;
}

.s-section-flexible h1.wp-block-heading {
  font-family: "Panton", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
  font-size: 3.5rem;
  line-height: 3.625rem;
  margin: 0;
  color: inherit;
}
.s-section-flexible h2.wp-block-heading {
  font-family: "Panton", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
  margin: 0;
  color: inherit;
}
.s-section-flexible h3.wp-block-heading {
  font-family: "Panton", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.3125rem;
  margin: 0;
  color: inherit;
}
.s-section-flexible h4.wp-block-heading,
.s-section-flexible h5.wp-block-heading,
.s-section-flexible h6.wp-block-heading {
  font-family: "Panton", sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: inherit;
}
.s-section-flexible p,
.s-section-flexible .wp-block-paragraph {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
  color: inherit;
  opacity: 0.7;
}
.s-section-flexible p:has(strong),
.s-section-flexible .wp-block-paragraph:has(strong) {
  opacity: 1;
}
.s-section-flexible ul,
.s-section-flexible ol,
.s-section-flexible .wp-block-list {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
  padding-left: 1.25rem;
  color: inherit;
  opacity: 0.85;
  list-style-position: outside;
}
.s-section-flexible ul li,
.s-section-flexible ol li,
.s-section-flexible .wp-block-list li {
  margin-bottom: 0.5rem;
}
.s-section-flexible ul li:last-child,
.s-section-flexible ol li:last-child,
.s-section-flexible .wp-block-list li:last-child {
  margin-bottom: 0;
}
.s-section-flexible .b-flexible-list {
  color: inherit;
  opacity: 0.85;
}
.s-section-flexible figure.wp-block-image {
  margin: 0;
  width: 100%;
}
.s-section-flexible figure.wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
}
.s-section-flexible .wp-block-gallery {
  margin: 0;
}
.s-section-flexible .wp-block-gallery .wp-block-image img,
.s-section-flexible .wp-block-gallery img {
  border-radius: 1.5rem;
}
.s-section-flexible .wp-block-media-text__media img {
  border-radius: 1.5rem;
}
.s-section-flexible blockquote,
.s-section-flexible .wp-block-quote {
  margin: 0;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 26, 36, 0.12);
  border-radius: 1.5rem;
  text-align: center;
}
.s-section-flexible blockquote p,
.s-section-flexible .wp-block-quote p {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  margin: 0;
  opacity: 1;
  font-weight: 700;
}
.s-section-flexible blockquote cite,
.s-section-flexible blockquote footer,
.s-section-flexible .wp-block-quote cite,
.s-section-flexible .wp-block-quote footer {
  display: block;
  margin-top: 1rem;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .s-section-flexible blockquote,
  .s-section-flexible .wp-block-quote {
    padding: 2rem 1.5rem;
  }
  .s-section-flexible h1.wp-block-heading,
  .s-section-flexible h2.wp-block-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-section-flexible h1.wp-block-heading,
  .s-section-flexible h2.wp-block-heading {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .s-section-flexible h3.wp-block-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.s-section-flexible .s-section-flexible__grid--align-stretch .b-section-flexible-column__blocks:has(> figure.wp-block-image:only-child) figure.wp-block-image img,
.s-section-flexible .s-section-flexible__grid--align-stretch .b-section-flexible-column__blocks:has(> .block-editor-block-list__layout > figure.wp-block-image:only-child) figure.wp-block-image img {
  height: 100%;
}

@media screen and (max-width: 991px) {
  .s-section-flexible__grid,
  .s-section-flexible__grid > .block-editor-block-list__layout,
  .s-section-flexible__grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .s-section-flexible__grid--gap-none,
  .s-section-flexible__grid--gap-none > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-none > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 0;
  }
  .s-section-flexible__grid--gap-sm,
  .s-section-flexible__grid--gap-sm > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-sm > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 0.75rem;
  }
  .s-section-flexible__grid--gap-md,
  .s-section-flexible__grid--gap-md > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-md > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 1.5rem;
  }
  .s-section-flexible__grid--gap-lg,
  .s-section-flexible__grid--gap-lg > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-lg > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 2rem;
  }
  .s-section-flexible__grid--reverse-mobile,
  .s-section-flexible__grid--reverse-mobile > .block-editor-block-list__layout,
  .s-section-flexible__grid--reverse-mobile > .block-editor-inner-blocks > .block-editor-block-list__layout {
    flex-direction: column-reverse;
  }
  .s-section-flexible__inner--pad-md,
  .s-section-flexible__inner--pad-lg {
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-section-flexible__grid--gap-none,
  .s-section-flexible__grid--gap-none > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-none > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 0;
  }
  .s-section-flexible__grid--gap-sm,
  .s-section-flexible__grid--gap-sm > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-sm > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 0.5rem;
  }
  .s-section-flexible__grid--gap-md,
  .s-section-flexible__grid--gap-md > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-md > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 1rem;
  }
  .s-section-flexible__grid--gap-lg,
  .s-section-flexible__grid--gap-lg > .block-editor-block-list__layout,
  .s-section-flexible__grid--gap-lg > .block-editor-inner-blocks > .block-editor-block-list__layout {
    gap: 1.5rem;
  }
}