@charset "UTF-8";
/*
Theme Name: Thème FSE B17
Theme URI: 
Author: B17
Author URI: https://www.b17.fr
Description: Thème agence pour le Full Site Editing
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: b17-base
*/
/****************************************************************************/
/* BASE
/****************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/****************************************************************************/
/* UTILS
/****************************************************************************/
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  border: 0;
  vertical-align: baseline;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* ==========================================================================
    Grid System Variables
   ========================================================================== */
:root {
  --grid-gutter: 15px;
  --grid-max-width: 1352px;
  --grid-breakpoint-sm: 576px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 992px;
  --grid-breakpoint-xl: 1200px;
}

/* ==========================================================================
    Container Styles
   ========================================================================== */
.container,
.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

/* Container Breakpoints */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1352px;
  }
}
.container-sm {
  max-width: 740px;
}

.container-lg {
  max-width: 1400px;
}

.container-full {
  max-width: none;
  padding: 0;
}

.max-width-xxl {
  max-width: 1920px;
}

.max-width-xl {
  max-width: var(--wp--style--global--wide-size);
}

.max-width-lg {
  max-width: var(--wp--style--global--content-size);
}

.max-width-md {
  max-width: 960px;
}

.max-width-sm {
  max-width: 720px;
}

/* ==========================================================================
    Row Layout System
   ========================================================================== */
.u--flex {
  display: flex;
}

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

.u--justify-center {
  justify-content: center;
}

.u--justify-end {
  justify-content: flex-end;
}

.u--justify-between {
  justify-content: space-between;
}

.u--justify-around {
  justify-content: space-around;
}

.u--flex-direction--column, .u--flex--column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

[data-row] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
}

/* Row Gap Variations */
[data-row*=gap-sm] {
  gap: 15px;
}

[data-row*=gap-lg] {
  gap: 45px;
}

[data-row*=gap-none] {
  gap: 0;
}

/* Horizontal Alignment */
[data-row=right] {
  justify-content: flex-end;
}

[data-row=center] {
  justify-content: center;
}

[data-row=space-between] {
  justify-content: space-between;
}

[data-row=space-evenly] {
  justify-content: space-evenly;
}

[data-row=space-around] {
  justify-content: space-around;
}

/* Vertical Alignment */
[data-row=top] {
  align-items: flex-start;
}

[data-row=middle] {
  align-items: center;
  height: 100%;
}

[data-row=bottom] {
  align-items: flex-end;
  height: 100%;
}

/* Combined Alignments */
[data-row="center middle"],
[data-row="right middle"],
[data-row="space-evenly middle"],
[data-row="space-between middle"] {
  align-items: center;
  height: 100%;
}

[data-row="center middle"] {
  justify-content: center;
}

[data-row="right middle"] {
  justify-content: flex-end;
}

[data-row="space-evenly middle"] {
  justify-content: space-evenly;
}

[data-row="space-between middle"] {
  justify-content: space-between;
}

[data-row="space-between bottom"] {
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

/* Direction Control */
[data-row=reverse],
[data-row="reverse middle"] {
  flex-direction: row-reverse;
}

[data-row="reverse middle"] {
  align-items: center;
  height: 100%;
}

/* Nested Rows */
[data-row] [data-row] {
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
  width: calc(100% + var(--grid-gutter) * 2);
}

/* ==========================================================================
   Column System
   ========================================================================== */
[data-col] {
  box-sizing: border-box;
  flex: 0 1 auto;
  align-self: auto;
  position: relative;
  min-width: 0;
  padding: 0 var(--grid-gutter);
}

/* Column Sizing Utilities */
[data-col=auto] {
  flex: 0 0 auto;
  width: auto;
}

[data-col=grow] {
  flex: 1 1 0;
  width: auto;
}

/* ==========================================================================
   Grid System
   ========================================================================== */
[data-grid] {
  display: grid;
  gap: 30px;
  padding: 0 var(--grid-gutter);
}

[data-grid=auto-fit] {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

[data-grid=auto-fill] {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media screen and (max-width: 991px) {
  [data-hide=mobile] {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  [data-hide=desktop] {
    display: none;
  }
}

/* ==========================================================================
   Column Fractions
   ========================================================================== */
/* Generate 12-column grid */
[data-col="1/12"] {
  flex-basis: 8.3333333333%;
}

.ie [data-col="1/12"] {
  max-width: 8.3333333333%;
}

[data-col-offset="1/12"] {
  margin-left: 8.3333333333%;
}

[data-col="2/12"] {
  flex-basis: 16.6666666667%;
}

.ie [data-col="2/12"] {
  max-width: 16.6666666667%;
}

[data-col-offset="2/12"] {
  margin-left: 16.6666666667%;
}

[data-col="3/12"] {
  flex-basis: 25%;
}

.ie [data-col="3/12"] {
  max-width: 25%;
}

[data-col-offset="3/12"] {
  margin-left: 25%;
}

[data-col="4/12"] {
  flex-basis: 33.3333333333%;
}

.ie [data-col="4/12"] {
  max-width: 33.3333333333%;
}

[data-col-offset="4/12"] {
  margin-left: 33.3333333333%;
}

[data-col="5/12"] {
  flex-basis: 41.6666666667%;
}

.ie [data-col="5/12"] {
  max-width: 41.6666666667%;
}

[data-col-offset="5/12"] {
  margin-left: 41.6666666667%;
}

[data-col="6/12"] {
  flex-basis: 50%;
}

.ie [data-col="6/12"] {
  max-width: 50%;
}

[data-col-offset="6/12"] {
  margin-left: 50%;
}

[data-col="7/12"] {
  flex-basis: 58.3333333333%;
}

.ie [data-col="7/12"] {
  max-width: 58.3333333333%;
}

[data-col-offset="7/12"] {
  margin-left: 58.3333333333%;
}

[data-col="8/12"] {
  flex-basis: 66.6666666667%;
}

.ie [data-col="8/12"] {
  max-width: 66.6666666667%;
}

[data-col-offset="8/12"] {
  margin-left: 66.6666666667%;
}

[data-col="9/12"] {
  flex-basis: 75%;
}

.ie [data-col="9/12"] {
  max-width: 75%;
}

[data-col-offset="9/12"] {
  margin-left: 75%;
}

[data-col="10/12"] {
  flex-basis: 83.3333333333%;
}

.ie [data-col="10/12"] {
  max-width: 83.3333333333%;
}

[data-col-offset="10/12"] {
  margin-left: 83.3333333333%;
}

[data-col="11/12"] {
  flex-basis: 91.6666666667%;
}

.ie [data-col="11/12"] {
  max-width: 91.6666666667%;
}

[data-col-offset="11/12"] {
  margin-left: 91.6666666667%;
}

[data-col="12/12"] {
  flex-basis: 100%;
}

.ie [data-col="12/12"] {
  max-width: 100%;
}

[data-col-offset="12/12"] {
  margin-left: 100%;
}

/* Common Fractions */
[data-col="1/2"] {
  flex-basis: 50%;
}

[data-col="1/3"] {
  flex-basis: 33.33333%;
}

[data-col="2/3"] {
  flex-basis: 66.66667%;
}

[data-col="1/4"] {
  flex-basis: 25%;
}

[data-col="3/4"] {
  flex-basis: 75%;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (min-width: 768px) {
  [data-row=nowrap] {
    flex-wrap: nowrap;
  }
  [data-row=nowrap] [data-col] {
    flex: 1;
  }
}
@media screen and (max-width: 991px) {
  [data-col-offset] {
    margin-left: 0;
  }
  /* Tablet-specific columns */
  [data-tab-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-tab-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-tab-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-tab-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-tab-col="3/12"] {
    flex-basis: 25%;
  }
  [data-tab-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-tab-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-tab-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-tab-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-tab-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-tab-col="6/12"] {
    flex-basis: 50%;
  }
  [data-tab-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-tab-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-tab-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-tab-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-tab-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-tab-col="9/12"] {
    flex-basis: 75%;
  }
  [data-tab-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-tab-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-tab-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-tab-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-tab-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-tab-col="12/12"] {
    flex-basis: 100%;
  }
  [data-tab-col-offset="12/12"] {
    margin-left: 100%;
  }
}
/* Tablet-specific styles */
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* ... existing tablet styles ... */
}
@media screen and (max-width: 767px) {
  /* Tablet-specific columns */
  [data-mobile-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-mobile-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-mobile-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-mobile-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-mobile-col="3/12"] {
    flex-basis: 25%;
  }
  [data-mobile-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-mobile-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-mobile-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-mobile-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-mobile-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-mobile-col="6/12"] {
    flex-basis: 50%;
  }
  [data-mobile-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-mobile-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-mobile-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-mobile-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-mobile-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-mobile-col="9/12"] {
    flex-basis: 75%;
  }
  [data-mobile-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-mobile-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-mobile-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-mobile-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-mobile-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-mobile-col="12/12"] {
    flex-basis: 100%;
  }
  [data-mobile-col-offset="12/12"] {
    margin-left: 100%;
  }
}
.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap !important;
}

@media (min-width: 768px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 768px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }
}
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column[style*=flex-basis] {
  flex-grow: 0;
}

:where(.wp-block-columns) {
  margin-bottom: 1.75em;
}

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch;
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.overflow-hidden {
  overflow: hidden;
}

.fw-bold {
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--secondary);
}

p strong {
  color: var(--wp--preset--color--secondary);
}

/****************************************************************************/
/* TEMPLATE PARTS
/****************************************************************************/
header {
  box-shadow: var(--wp--preset--shadow--neat);
}

@media (min-width: 1120px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block;
  }
}
@media (max-width: 1120px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: block;
  }
}
footer {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--accent);
  border-top: 1px solid var(--wp--preset--color--accent);
  container-type: inline-size;
}
footer .is-style-primary-background > .wp-block-group:not(:last-child) {
  border-bottom: 1px solid var(--wp--preset--color--accent);
}
footer .wp-block-group > .wp-block-columns p.has-text-align-left {
  max-inline-size: 44ch;
  margin: 0 auto;
}
footer .wp-block-group > .wp-block-columns .wp-block-columns {
  border-right: 1px solid var(--wp--preset--color--accent);
  padding: var(--wp--preset--spacing--l) var(--wp--preset--spacing--s);
}
@container (width <= 992px) {
  footer .wp-block-group > .wp-block-columns {
    padding: var(--wp--preset--spacing--l) 0;
    text-align: center;
  }
  footer .wp-block-group > .wp-block-columns p {
    text-align: center !important;
  }
  footer .wp-block-group > .wp-block-columns .wp-block-columns {
    border: 0;
  }
}

/****************************************************************************/
/* ELEMENTS
/****************************************************************************/
.is-style-secondary-background {
  position: relative;
}
.is-style-secondary-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("./assets/img/noise-bg.png") repeat 0 0;
  background-repeat: repeat;
  opacity: 0.5;
}
.is-style-secondary-background > .wp-block-group {
  position: relative;
  z-index: 1;
}

@container (width <= 992px) {}
@container (width <= 992px) {}
@container (width <= 576px) {}
.wp-block-button.is-style-fill {
  z-index: 1;
}
.wp-block-button.is-style-fill .wp-block-button__link {
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-fill .wp-block-button__link:after {
  content: "";
  position: absolute;
  background: var(--wp--preset--color--accent);
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--radius--s);
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  z-index: -1;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  color: var(--wp--preset--color--accent);
  background: var(--wp--preset--color--secondary);
}

.wp-block-button.is-style-white {
  z-index: 1;
}
.wp-block-button.is-style-white .wp-block-button__link {
  position: relative;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--secondary);
  border: 1px solid var(--wp--preset--color--white);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-white .wp-block-button__link:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--accent);
  border-radius: var(--wp--custom--radius--m);
  z-index: -1;
}
.wp-block-button.is-style-white .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
}
.wp-block-button.is-style-white .wp-block-button__link:hover:after {
  background: var(--wp--preset--color--white);
}

.wp-block-button.is-style-link-arrow .wp-block-button__link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--wp--preset--color--secondary);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:before {
  width: 100%;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:after {
  transform: translateY(-50%) rotate(90deg);
}

.wp-block-button.is-style-circle-arrow .wp-block-button__link {
  text-indent: -9999px;
  position: relative;
  width: 40px;
  height: 40px;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--wp--preset--color--secondary);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 14px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDEyZGUwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:hover:before {
  background: var(--wp--preset--color--secondary);
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:hover:after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
}

.fluentform {
  font-family: var(--wp--preset--font-family--secondary);
  padding: var(--wp--preset--spacing--xl) 0;
  max-width: 720px;
}
.fluentform form .ff_list_inline {
  margin-bottom: 10px;
}
.fluentform form .ff_list_inline .ff-el-input--label {
  margin-bottom: 18px;
}
.fluentform form .ff_list_inline .ff-el-form-check-label {
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--accent);
}
.fluentform form .ff_list_inline input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 1px solid var(--wp--preset--color--accent);
  border-radius: var(--wp--custom--radius--s);
  width: 24px;
  height: 24px;
}
.fluentform form .ff_list_inline input[type=radio]:checked {
  background: var(--wp--preset--color--accent);
}
.fluentform form .ff-el-input--label {
  color: var(--wp--preset--color--accent);
  text-transform: uppercase;
}
.fluentform form .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: var(--wp--preset--color--accent);
}
.fluentform form .ff-dropzone {
  margin-bottom: 24px;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn {
  border: 1px dashed var(--wp--preset--color--accent);
  padding: 16px;
  border-radius: var(--wp--custom--radius--s);
  color: var(--wp--preset--color--white);
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn > span {
  text-decoration: underline;
}
.fluentform form .ff-dropzone .ff-uploaded-list {
  margin-top: 5px !important;
}
.fluentform form .ff-el-help-message {
  color: var(--wp--preset--color--white);
  font-style: normal;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
  text-transform: none;
}
.fluentform form .ff-dropzone + .ff-custom_html {
  margin-top: 0;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone + .ff-custom_html p {
  margin-top: 0;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
}
.fluentform select {
  font-family: var(--wp--preset--font-family--secondary);
  margin-top: 24px;
  color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--white);
  border: 0;
  outline: 0;
  font-size: var(--wp--preset--font-size--xs);
}
.fluentform .ff-el-form-control:not(textarea) {
  padding: 22px 12px 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: var(--wp--custom--radius--s);
  color: var(--wp--preset--color--white);
}
.fluentform .ff-el-form-control:not(textarea)::-moz-placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea)::placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea):focus {
  border-color: var(--wp--preset--color--secondary);
  background: rgba(255, 255, 255, 0.1);
  color: var(--wp--preset--color--white);
}
.fluentform textarea.ff-el-form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  padding: var(--wp--preset--spacing--xxs);
  border-radius: var(--wp--custom--radius--s);
  outline-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
.fluentform textarea.ff-el-form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--wp--preset--color--white);
}
.fluentform .ff-btn-submit {
  position: relative;
  border-radius: var(--wp--custom--radius--s);
  border: 0;
  cursor: pointer;
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
  padding-top: calc(var(--wp--preset--spacing--s) + 1px);
  padding-right: var(--wp--preset--spacing--xl);
  padding-bottom: calc(var(--wp--preset--spacing--s) + 1px);
  padding-left: var(--wp--preset--spacing--s);
  font-size: var(--wp--preset--font-size--s);
  font-family: var(--wp--preset--font-family--primary);
  font-weight: var(--wp--custom--font-weight--bold);
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-btn-submit:after {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNy40MTQiIHZpZXdCb3g9IjAgMCAxNyAxNy40MTQiPgogIDxwYXRoIGlkPSJJY29uX2ZlYXRoZXItYXJyb3ctcmlnaHQiIGRhdGEtbmFtZT0iSWNvbiBmZWF0aGVyLWFycm93LXJpZ2h0IiBkPSJNMCw4SDE2TTgsMGw4LDhMOCwxNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC41IDAuNzA3KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNTMxZjJiIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4K") no-repeat right center;
  background-size: contain;
  width: 17px;
  height: 17px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.fluentform .ff-btn-submit:hover {
  background: var(--wp--preset--color--fourth);
  color: var(--wp--preset--color--accent);
}
.fluentform .ff-btn-submit:hover:after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNy40MTQiIHZpZXdCb3g9IjAgMCAxNyAxNy40MTQiPgogIDxwYXRoIGlkPSJJY29uX2ZlYXRoZXItYXJyb3ctcmlnaHQiIGRhdGEtbmFtZT0iSWNvbiBmZWF0aGVyLWFycm93LXJpZ2h0IiBkPSJNMCw4SDE2TTgsMGw4LDhMOCwxNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC41IDAuNzA3KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmVlZGRkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4K") no-repeat right center;
  background-size: contain;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html):not(.ff-el-form-top) {
  margin-top: 0px;
  margin-bottom: 18px;
  position: relative;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html):not(.ff-el-form-top) .ff-el-input--label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html):not(.ff-el-form-top) .ff-el-input--label.active {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: var(--wp--custom--font-weight--bold);
  top: 10px;
}
.fluentform .ff-t-container .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html):not(.ff-el-form-top):is(.ff-el-is-error) .ff-el-form-control:not(textarea) {
  border-color: var(--fluentform-danger);
}

.wp-rgpd-block {
  font-size: clamp(0.813rem, 0.813rem + 0vw, 0.813rem);
  color: var(--wp--preset--color--white);
}
.wp-rgpd-block p {
  margin: 0;
}
.wp-rgpd-block a {
  color: var(--wp--preset--color--accent);
}
.wp-rgpd-block .wp-rgpd-block__content {
  height: 72px;
  overflow-y: auto;
  scrollbar-width: none;
}

@media (min-width: 1200px) {
  .frm-fluent-form .ff-t-container {
    gap: var(--wp--preset--spacing--m);
  }
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.wp-block-list li, ol.wp-block-list li {
  position: relative;
  margin-bottom: 0.625rem;
}

ul.wp-block-list li {
  padding-left: 18px;
}
ul.wp-block-list li::before {
  content: "→";
  position: absolute;
  color: var(--wp--preset--color--fourth);
  font-weight: var(--wp--custom--font-weight--bold);
  left: 4px;
  top: 0px;
}

ol.wp-block-list {
  counter-reset: section;
}
ol.wp-block-list li {
  padding-left: 32px;
}
ol.wp-block-list li:before {
  font-weight: 700;
  position: absolute;
  left: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: section;
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--accent);
  content: counter(section, decimal-leading-zero);
}

.rank-math-breadcrumb {
  margin-bottom: var(--wp--preset--spacing--m);
}
.rank-math-breadcrumb p, .rank-math-breadcrumb a {
  font-size: clamp(0.813rem, 0.795rem + 0.089vw, 0.875rem);
  font-weight: var(--wp--custom--font-weight--light);
  color: var(--wp--preset--color--primary);
}

.wp-block-group-is-layout-flex > figure {
  flex-shrink: 0;
}

/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
.block__rgpd {
  margin-top: var(--wp--preset--spacing--l);
}
.block__rgpd__title {
  font-weight: var(--wp--custom--font-weight--black);
  margin-bottom: var(--wp--preset--spacing--s);
}
.block__rgpd__content {
  color: #000;
  font-size: var(--wp--preset--font-size--xs);
  max-height: 128px;
  overflow: auto;
}

body.gdpr-infobar-visible, body.moove_gdpr_overflow {
  position: relative;
  container-type: inline-size;
}
body.gdpr-infobar-visible::after, body.moove_gdpr_overflow::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: -150px;
  left: 0;
  z-index: 9980;
}
body.gdpr-infobar-visible .mgbutton, body.moove_gdpr_overflow .mgbutton {
  border-radius: 4px !important;
  color: var(--wp--preset--color--primary) !important;
  font-weight: var(--wp--custom--font-weight--bold) !important;
}
body.gdpr-infobar-visible .mgbutton:hover, body.moove_gdpr_overflow .mgbutton:hover {
  color: var(--wp--preset--color--accent) !important;
  background: var(--wp--preset--color--secondary) !important;
}
body.gdpr-infobar-visible .change-settings-button:hover, body.moove_gdpr_overflow .change-settings-button:hover {
  color: var(--wp--preset--color--fifth) !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar, body.moove_gdpr_overflow aside#moove_gdpr_cookie_info_bar {
  z-index: 9990;
}
@media all and (max-width: var(--grid-breakpoint-sm)) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container, body.moove_gdpr_overflow aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding-top: 60px;
  }
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all, body.moove_gdpr_overflow aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all {
  order: 2 !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn, body.moove_gdpr_overflow aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn {
  order: 1 !important;
}
@media all and (max-width: var(--grid-breakpoint-sm)) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-button-holder, body.moove_gdpr_overflow aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-button-holder {
    position: absolute;
    top: 30px;
    right: 10px;
  }
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
  background: var(--wp--preset--color--white) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon {
  color: var(--wp--preset--color--primary) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
  background: var(--wp--preset--color--secondary) !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
  display: none !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:hover {
  color: var(--wp--preset--color--secondary) !important;
}

.gdpr_lightbox {
  z-index: 99970;
}

.grecaptcha-badge {
  visibility: hidden;
}

@container (width <= 768px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    display: flex;
    flex-direction: column-reverse;
  }
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    align-self: flex-end;
  }
}
/****************************************************************************/
/* TEMPLATE
/****************************************************************************/
html {
  scroll-behavior: smooth;
}

main,
.wp-block-template-part,
.entry-content {
  margin-top: 0;
}

#content + .wp-block-group,
main + .wp-block-group {
  margin-top: var(--wp--preset--spacing--xl);
}

.wp-site-blocks, .page-content.is-layout-constrained {
  container-type: inline-size;
}

/****************************************************************************/
/* PATTERNS
/****************************************************************************/
/*
* Pagination
*
*/
.wp-block-query-pagination {
  gap: 0;
}
.wp-block-query-pagination .is-arrow-arrow {
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--secondary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-query-pagination-numbers {
  display: flex;
  gap: var(--wp--preset--spacing--s);
}

/****************************************************************************/
/* BLOCKS
/****************************************************************************/
.wp-block-media-text .wp-block-media-text__media {
  padding-right: 1.5rem;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-left: rem;
  padding-right: 0;
}