@charset "UTF-8";
/*!
Theme Name: GSW Elegant
Description: Thème sur-mesure par Faire Savoir.
Text Domain: faire-savoir
Version: 1.0.0
Author: Faire Savoir
Author URI: https://www.faire-savoir.com/
*/
:root {
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --color1: 63, 156, 193;
  --color2: 69, 69, 69;
  --color3: 37, 46, 89;
  --color4: 157, 140, 98;
  --color5: 246, 246, 246;
  --font-family-base: 'Open Sans', Arial, sans-serif;
  --font-family-alt: 'Noto Serif', Georgia, serif;
}

/***
    The new CSS reset - version 1.8.6 (last updated 15.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is exclude, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1170px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
  flex-basis: 100%;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0 !important;
}
@media only screen and (min-width: 41rem), only screen and (min-width: 65rem), only screen and (min-width: 91rem), only screen and (min-width: 121rem) {
  .col-no-gutter {
    padding: 0 !important;
  }
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.motif-dark, section.entete--style1::before,
.block-editor-block-list__layout.entete--style1::before, section.entete--style2 .row .col .boxx::before,
.block-editor-block-list__layout.entete--style2 .row .col .boxx::before, section.entete--style3 .row .col::before,
.block-editor-block-list__layout.entete--style3 .row .col::before {
  background-image: url("../images/patterns/motif-dark.png");
  background-repeat: repeat;
  background-size: 111px 62px;
}

.motif-light {
  background-image: url("../images/patterns/motif-light.png");
  background-repeat: repeat;
  background-size: 111px 62px;
}

body:not(.wp-admin) {
  color: rgba(var(--color2), 1);
}

.container {
  padding-left: 0;
  padding-right: 0;
  line-height: 1.5rem;
  width: 100%;
}
@media only screen and (min-width: 65rem) {
  .container .row .col {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.container .row .col .resume + .resume {
  margin-top: 30px;
}
.container.full {
  padding: 0;
  width: 100%;
}
.container.full .row {
  max-width: none;
}
.container.full .row .col {
  width: 100%;
  padding: 0;
}

.col-no-gutter-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.boxed {
  max-width: 1200px;
}

.row.column-reverse {
  flex-direction: column-reverse;
}

.fit {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.expand {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col.content-left,
.col.content-left > *,
.row.content-left,
.row.content-left > * {
  text-align: left;
}

.col.content-center,
.col.content-center > *,
.row.content-center,
.row.content-center > * {
  text-align: center;
}

.col.content-center > *,
.row.content-center > * {
  margin-left: auto;
  margin-right: auto;
}

.col.content-right,
.col.content-right > *,
.row.content-right,
.row.content-right > * {
  text-align: right;
}

a {
  text-decoration: none;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main .h0,
main .h1,
main .h2,
main .h3,
main .h4,
main .h5,
main .h6,
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6,
.editor-styles-wrapper .h0,
.editor-styles-wrapper .h1,
.editor-styles-wrapper .h2,
.editor-styles-wrapper .h3,
.editor-styles-wrapper .h4,
.editor-styles-wrapper .h5,
.editor-styles-wrapper .h6 {
  display: block;
  line-height: 1.2em;
  font-family: var(--font-family-alt);
  margin-top: 0;
}
main a.h0, main a.h1, main a.h2, main a.h3, main a.h4, main a.h5, main a.h6, .editor-styles-wrapper a.h0, .editor-styles-wrapper a.h1, .editor-styles-wrapper a.h2, .editor-styles-wrapper a.h3, .editor-styles-wrapper a.h4, .editor-styles-wrapper a.h5, .editor-styles-wrapper a.h6, main h1 a,
main h2 a,
main h3 a,
main h4 a,
main h5 a,
main h6 a,
main .h0 a,
main .h1 a,
main .h2 a,
main .h3 a,
main .h4 a,
main .h5 a,
main .h6 a,
.editor-styles-wrapper h1 a,
.editor-styles-wrapper h2 a,
.editor-styles-wrapper h3 a,
.editor-styles-wrapper h4 a,
.editor-styles-wrapper h5 a,
.editor-styles-wrapper h6 a,
.editor-styles-wrapper .h0 a,
.editor-styles-wrapper .h1 a,
.editor-styles-wrapper .h2 a,
.editor-styles-wrapper .h3 a,
.editor-styles-wrapper .h4 a,
.editor-styles-wrapper .h5 a,
.editor-styles-wrapper .h6 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
main a.h0:hover, main a.h1:hover, main a.h2:hover, main a.h3:hover, main a.h4:hover, main a.h5:hover, main a.h6:hover, .editor-styles-wrapper a.h0:hover, .editor-styles-wrapper a.h1:hover, .editor-styles-wrapper a.h2:hover, .editor-styles-wrapper a.h3:hover, .editor-styles-wrapper a.h4:hover, .editor-styles-wrapper a.h5:hover, .editor-styles-wrapper a.h6:hover, main h1 a:hover,
main h2 a:hover,
main h3 a:hover,
main h4 a:hover,
main h5 a:hover,
main h6 a:hover,
main .h0 a:hover,
main .h1 a:hover,
main .h2 a:hover,
main .h3 a:hover,
main .h4 a:hover,
main .h5 a:hover,
main .h6 a:hover,
.editor-styles-wrapper h1 a:hover,
.editor-styles-wrapper h2 a:hover,
.editor-styles-wrapper h3 a:hover,
.editor-styles-wrapper h4 a:hover,
.editor-styles-wrapper h5 a:hover,
.editor-styles-wrapper h6 a:hover,
.editor-styles-wrapper .h0 a:hover,
.editor-styles-wrapper .h1 a:hover,
.editor-styles-wrapper .h2 a:hover,
.editor-styles-wrapper .h3 a:hover,
.editor-styles-wrapper .h4 a:hover,
.editor-styles-wrapper .h5 a:hover,
.editor-styles-wrapper .h6 a:hover {
  color: inherit;
  text-decoration: none;
}

main h1,
main .h1,
.editor-styles-wrapper h1,
.editor-styles-wrapper .h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: rgba(var(--color2), 1);
}
@media only screen and (min-width: 41rem) {
  main h1,
  main .h1,
  .editor-styles-wrapper h1,
  .editor-styles-wrapper .h1 {
    font-size: 2em;
  }
}
@media only screen and (min-width: 65rem) {
  main h1,
  main .h1,
  .editor-styles-wrapper h1,
  .editor-styles-wrapper .h1 {
    font-size: 2.5em;
  }
}
main h2,
main .h2,
.editor-styles-wrapper h2,
.editor-styles-wrapper .h2 {
  position: relative;
  font-size: 1.475em;
  font-weight: bold;
  color: rgba(var(--color2), 1);
  padding-top: 30px;
  margin-bottom: 0;
}
main h2::before,
main .h2::before,
.editor-styles-wrapper h2::before,
.editor-styles-wrapper .h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: rgba(var(--color4), 1);
}
main h2 + *, main h2 + div, main h2 + .row,
main .h2 + *,
main .h2 + div,
main .h2 + .row,
.editor-styles-wrapper h2 + *,
.editor-styles-wrapper h2 + div,
.editor-styles-wrapper h2 + .row,
.editor-styles-wrapper .h2 + *,
.editor-styles-wrapper .h2 + div,
.editor-styles-wrapper .h2 + .row {
  margin-top: 30px;
}
@media only screen and (min-width: 65rem) {
  main h2 + *, main h2 + div, main h2 + .row,
  main .h2 + *,
  main .h2 + div,
  main .h2 + .row,
  .editor-styles-wrapper h2 + *,
  .editor-styles-wrapper h2 + div,
  .editor-styles-wrapper h2 + .row,
  .editor-styles-wrapper .h2 + *,
  .editor-styles-wrapper .h2 + div,
  .editor-styles-wrapper .h2 + .row {
    margin-top: 60px;
  }
}
main h2 + p, main h2 + ul, main h2 + ol, main h2 + .resume, main h2 + .intro,
main .h2 + p,
main .h2 + ul,
main .h2 + ol,
main .h2 + .resume,
main .h2 + .intro,
.editor-styles-wrapper h2 + p,
.editor-styles-wrapper h2 + ul,
.editor-styles-wrapper h2 + ol,
.editor-styles-wrapper h2 + .resume,
.editor-styles-wrapper h2 + .intro,
.editor-styles-wrapper .h2 + p,
.editor-styles-wrapper .h2 + ul,
.editor-styles-wrapper .h2 + ol,
.editor-styles-wrapper .h2 + .resume,
.editor-styles-wrapper .h2 + .intro {
  margin-top: 30px;
}
@media only screen and (min-width: 41rem) {
  main h2,
  main .h2,
  .editor-styles-wrapper h2,
  .editor-styles-wrapper .h2 {
    font-size: 1.675em;
  }
}
@media only screen and (min-width: 65rem) {
  main h2,
  main .h2,
  .editor-styles-wrapper h2,
  .editor-styles-wrapper .h2 {
    font-size: 2em;
  }
}
main .content-center h2::before,
.editor-styles-wrapper .content-center h2::before {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
main h3,
main .h3,
.editor-styles-wrapper h3,
.editor-styles-wrapper .h3 {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: rgba(var(--color2), 1);
}
main figure,
.editor-styles-wrapper figure {
  margin: 0;
}
main p,
.editor-styles-wrapper p {
  font-size: 1em;
  font-family: var(--font-family-base);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5em;
  color: rgba(var(--color2), 1);
}
main p:not(:first-child),
.editor-styles-wrapper p:not(:first-child) {
  margin-top: 1.375rem;
  margin-bottom: 0;
}
main p + h2,
main ul + h2,
.editor-styles-wrapper p + h2,
.editor-styles-wrapper ul + h2 {
  margin-top: 60px;
}
main p + h3,
main p + h4,
main ul + h3,
main ul + h4,
.editor-styles-wrapper p + h3,
.editor-styles-wrapper p + h4,
.editor-styles-wrapper ul + h3,
.editor-styles-wrapper ul + h4 {
  margin-top: 30px;
}
main .intro,
.editor-styles-wrapper .intro {
  margin-bottom: 1.375rem;
}
main .intro p,
.editor-styles-wrapper .intro p {
  font-size: 1.15em;
}
@media only screen and (min-width: 41rem) {
  main .intro p,
  .editor-styles-wrapper .intro p {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 65rem) {
  main .intro p,
  .editor-styles-wrapper .intro p {
    font-size: 1.25em;
  }
}
main strong,
main b,
main .bold,
.editor-styles-wrapper strong,
.editor-styles-wrapper b,
.editor-styles-wrapper .bold {
  font-weight: bold;
}
main span,
main ul li,
main ol li,
.editor-styles-wrapper span,
.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li {
  font-family: var(--font-family-base);
  color: rgba(var(--color2), 1);
}
main a,
.editor-styles-wrapper a {
  color: rgba(var(--color2), 1);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
main a:hover,
.editor-styles-wrapper a:hover {
  color: rgba(var(--color1), 1);
}
main a p,
main a p:not(:first-child),
.editor-styles-wrapper a p,
.editor-styles-wrapper a p:not(:first-child) {
  margin-top: 0;
}
main em,
.editor-styles-wrapper em {
  font-style: italic;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 30px;
  font-family: var(--font-family-base);
  font-weight: normal;
  font-size: 1em;
  line-height: 1.2em;
  background-color: rgba(var(--color1), 1);
  color: rgba(var(--white), 1);
  border: 2px solid rgba(var(--color1), 1);
  margin-top: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.btn span {
  text-transform: uppercase;
  font-family: var(--font-family-base);
  font-weight: normal;
  font-size: 1em;
  color: rgba(var(--white), 1);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 65rem) {
  .btn {
    font-size: 1.125em;
    line-height: 1.563em;
  }
  .btn span {
    font-size: 1.125em;
  }
}
.btn:hover {
  background-color: transparent;
  color: rgba(var(--white), 1);
  border-color: rgba(var(--white), 1);
}
.btn:hover span {
  color: rgba(var(--white), 1);
}
.btn.btn-small {
  font-weight: normal;
  padding: 10px 15px;
  font-size: 1em;
}
.btn.btn-small span {
  font-weight: normal;
  font-size: 1em;
}
.btn.btn-green {
  background-color: rgba(var(--color1), 1);
  color: rgba(var(--white), 1);
  border-color: rgba(var(--color1), 1);
}
.btn.btn-green span {
  color: rgba(var(--white), 1);
}
.btn.btn-green:hover {
  background-color: transparent;
  color: rgba(var(--color1), 1);
  border-color: rgba(var(--color1), 1);
}
.btn.btn-green:hover span {
  color: rgba(var(--color1), 1);
}
.btn.btn-green-dark {
  background-color: rgba(var(--color2), 1);
  color: rgba(var(--white), 1);
  border-color: rgba(var(--color2), 1);
}
.btn.btn-green-dark span {
  color: rgba(var(--white), 1);
}
.btn.btn-green-dark:hover {
  background-color: transparent;
  color: rgba(var(--color2), 1);
  border-color: rgba(var(--color2), 1);
}
.btn.btn-green-dark:hover span {
  color: rgba(var(--color2), 1);
}
.btn.btn-white {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--color1), 1);
  border-color: rgba(var(--white), 1);
}
.btn.btn-white span {
  color: rgba(var(--color1), 1);
}
.btn.btn-white:hover {
  background-color: transparent;
  color: rgba(var(--white), 1);
  border-color: rgba(var(--white), 1);
}
.btn.btn-white:hover span {
  color: rgba(var(--white), 1);
}
.btn.btn-hover-white:hover {
  color: rgba(var(--white), 1);
  border-color: rgba(var(--white), 1);
}
.btn.btn-hover-white:hover span {
  color: rgba(var(--white), 1);
}

form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  border: none;
}
form fieldset .form-line {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.form-line input[type=date],
.form-line input[type=datetime-local],
.form-line input[type=datetime],
.form-line input[type=email],
.form-line input[type=month],
.form-line input[type=number],
.form-line input[type=password],
.form-line input[type=search],
.form-line input[type=tel],
.form-line input[type=text],
.form-line input[type=time],
.form-line input[type=url],
.form-line input[type=week],
.form-line textarea {
  border: 1px solid rgba(var(--color2), 0.3);
  border-radius: 0;
  box-shadow: none;
}
.form-line input[type=date]:hover, .form-line input[type=date]:focus,
.form-line input[type=datetime-local]:hover,
.form-line input[type=datetime-local]:focus,
.form-line input[type=datetime]:hover,
.form-line input[type=datetime]:focus,
.form-line input[type=email]:hover,
.form-line input[type=email]:focus,
.form-line input[type=month]:hover,
.form-line input[type=month]:focus,
.form-line input[type=number]:hover,
.form-line input[type=number]:focus,
.form-line input[type=password]:hover,
.form-line input[type=password]:focus,
.form-line input[type=search]:hover,
.form-line input[type=search]:focus,
.form-line input[type=tel]:hover,
.form-line input[type=tel]:focus,
.form-line input[type=text]:hover,
.form-line input[type=text]:focus,
.form-line input[type=time]:hover,
.form-line input[type=time]:focus,
.form-line input[type=url]:hover,
.form-line input[type=url]:focus,
.form-line input[type=week]:hover,
.form-line input[type=week]:focus,
.form-line textarea:hover,
.form-line textarea:focus {
  outline: none;
  border: 1px solid rgba(var(--color2), 0.3);
  box-shadow: none;
}

input.form-input,
textarea.form-textarea {
  background-color: rgba(var(--white), 1);
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: rgba(var(--color2), 1);
  text-align: left;
  /* WebKit, Blink, Edge */
}
input.form-input::-webkit-input-placeholder,
textarea.form-textarea::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}
input.form-input,
textarea.form-textarea {
  /* Mozilla Firefox 4 to 18 */
}
input.form-input:-moz-placeholder,
textarea.form-textarea:-moz-placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}
input.form-input,
textarea.form-textarea {
  /* Mozilla Firefox 19+ */
}
input.form-input::-moz-placeholder,
textarea.form-textarea::-moz-placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}
input.form-input,
textarea.form-textarea {
  /* Internet Explorer 10-11 */
}
input.form-input:-ms-input-placeholder,
textarea.form-textarea:-ms-input-placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}
input.form-input,
textarea.form-textarea {
  /* Microsoft Edge */
}
input.form-input::-ms-input-placeholder,
textarea.form-textarea::-ms-input-placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}
input.form-input,
textarea.form-textarea {
  /* Most modern browsers support this now. */
}
input.form-input::placeholder,
textarea.form-textarea::placeholder {
  opacity: 1;
  color: rgba(var(--color2), 1);
}

.form-input {
  height: 40px;
  min-height: 40px;
  padding: 8px 15px;
}
.form-input[type=submit] {
  margin-top: 1rem;
  width: auto;
}

.form-textarea {
  height: 150px;
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

select {
  width: 100%;
  height: 40px;
  background-color: rgba(var(--white), 1);
  border-radius: 0;
  padding: 0 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/patterns/chevron-bottom.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px 15px;
}
select:focus, select:focus-visible {
  outline: none;
}

body:not(.wp-admin) header .gtranslate_wrapper .gt_switcher-popup,
body .admin_content_zone #template_preview .preview_window .window_content header .gtranslate_wrapper .gt_switcher-popup {
  align-items: center;
  display: flex;
  gap: 10px;
}
body:not(.wp-admin) header .gtranslate_wrapper .gt_switcher-popup img,
body .admin_content_zone #template_preview .preview_window .window_content header .gtranslate_wrapper .gt_switcher-popup img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
body:not(.wp-admin) header .gtranslate_wrapper .gt_switcher-popup span,
body .admin_content_zone #template_preview .preview_window .window_content header .gtranslate_wrapper .gt_switcher-popup span {
  font-size: 1rem;
  margin-right: 0;
}
@media only screen and (min-width: 65rem) {
  body:not(.wp-admin) header.header--style5,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 {
    display: inline-flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    vertical-align: top;
  }
  body:not(.wp-admin) header.header--style5 ~ main, body:not(.wp-admin) header.header--style5 ~ section,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ main,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ section {
    display: inline-block;
    width: calc(100% - 300px);
    margin-left: 300px;
  }
  body:not(.wp-admin) header.header--style5 ~ main + footer, body:not(.wp-admin) header.header--style5 ~ section + footer,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ main + footer,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ section + footer {
    display: inline-block;
    width: calc(100% - 300px);
    margin-left: 300px;
  }
  body:not(.wp-admin) header.header--style5 ~ main + footer section, body:not(.wp-admin) header.header--style5 ~ section + footer section,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ main + footer section,
  body .admin_content_zone #template_preview .preview_window .window_content header.header--style5 ~ section + footer section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
body:not(.wp-admin) #templatePreview .templatePreview--content,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview .templatePreview--content {
  position: relative;
  width: 100vw;
  height: auto;
}
body:not(.wp-admin) #templatePreview a:active, body:not(.wp-admin) #templatePreview a:focus,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview a:active,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview a:focus {
  box-shadow: none;
  outline: none;
}
body:not(.wp-admin) #templatePreview li,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview li {
  margin-bottom: 0;
}
body:not(.wp-admin) #templatePreview .header--style5,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview .header--style5 {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  /*
  &~section,
  &~#preview--footer {
  	display: inline-block;
  	width: calc(100% - 300px);
  	margin-left: 300px;

  	&:first-of-type {
  		padding-top: 0;
  	}
  }
  */
}
body:not(.wp-admin) #templatePreview .header--style5 ~ .main,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview .header--style5 ~ .main {
  display: inline-block;
  width: calc(100% - 300px);
  margin-left: 300px;
  padding-top: 0;
}
body:not(.wp-admin) #templatePreview .header--style5 ~ #preview--footer,
body .admin_content_zone #template_preview .preview_window .window_content #templatePreview .header--style5 ~ #preview--footer {
  display: inline-block;
  width: calc(100% - 300px);
  margin-left: 300px;
}
body .admin_content_zone #template_preview .preview_window .window_content header .gtranslate_wrapper .gt_switcher-popup span,
body header .gtranslate_wrapper .gt_switcher-popup span {
  color: rgba(var(--white), 1) !important;
  font-family: var(--font-family-alt);
}
body.gtranslate-active {
  overflow: hidden;
}
body.gtranslate-active header.header--style5 + main {
  position: relative;
  z-index: -1;
}
body.gtranslate-active header section.header .row .content-right .nav-toggle {
  z-index: 4;
}

@media only screen and (min-width: 65rem) {
  header.header--style5 + main {
    overflow: hidden;
  }
}
header section.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 4;
  height: 100px;
  background: -moz-linear-gradient(top, rgba(var(--black), 0.7) 0%, rgba(var(--black), 0) 100%);
  background: -webkit-linear-gradient(top, rgba(var(--black), 0.7) 0%, rgba(var(--black), 0) 100%);
  background: linear-gradient(to bottom, rgba(var(--black), 0.7) 0%, rgba(var(--black), 0) 100%);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
header section.header--hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
header section.header .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  height: 100%;
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
  margin: 0;
}
header section.header .row .logo {
  display: flex;
  align-items: center;
  padding: 15px;
  box-sizing: content-box;
  height: 80px;
  width: auto;
  max-width: 200px;
}
header section.header .row .logo a {
  height: 100%;
}
header section.header .row .logo a img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
header section.header .row .logo a svg {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
header section.header .row .text-logo h2 {
  color: rgba(var(--color1), 1);
  font-family: var(--font-family-alt);
  font-size: 2rem;
  text-transform: none;
}
header section.header .row .text-logo h2 {
  font-family: var(--font-family-alt);
  font-size: 2rem;
}
header section.header .row .content-right {
  justify-content: flex-end;
  padding: 0 15px;
}
header section.header .row .content-right .nav-toggle {
  cursor: pointer;
  display: inline-block;
  overflow: visible;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 5;
}
header section.header .row .content-right .nav-toggle span {
  display: none;
}
header section.header .row .content-right .nav-toggle svg {
  fill: rgba(var(--white), 1);
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
}
header section.header .row .content-right .nav-toggle .icon-burger {
  display: block;
}
header section.header .row .content-right .nav-toggle .icon-close {
  display: none;
}
header section.header .row .content-right .nav-toggle.expanded .icon-burger {
  display: none;
}
header section.header .row .content-right .nav-toggle.expanded .icon-close {
  display: block;
}
header section.header .row .content-right .nav {
  position: relative;
  bottom: 0;
  left: -100vw;
  width: 100vw;
  height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 30px;
  z-index: 4;
  transition: left 0.5s ease;
}
header section.header .row .content-right .nav.expanded {
  left: 0;
}
header section.header .row .content-right .nav .menu_top .gt_black_overlay {
  height: 100vh;
}
header section.header .row .content-right .nav .menu_top ul {
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0 0 0;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li {
  transition: all 0.3s ease-in-out;
}
.title_level1 header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  font-size: 1.1rem;
  text-decoration: none;
}
@media only screen and (min-width: 41rem) {
  .title_level1 header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 65rem) {
  .title_level1 header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 1rem;
  }
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
  display: flex;
  align-items: center;
  gap: 10px;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  cursor: pointer;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
  display: none;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  position: relative;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 41rem) {
  header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
  }
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2 {
  display: flex;
}
header section.header--style1 {
  display: flex;
  height: 100px;
}
header section.header--style1 .overlay {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(var(--black), 0.7);
  z-index: 3;
}
header section.header--style1 .overlay.expanded {
  display: block;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right {
    max-width: calc(100% - 230px);
  }
}
header section.header--style1 .row .content-right .nav-toggle {
  display: inline-block;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav-toggle {
    display: none;
  }
}
header section.header--style1 .row .content-right .nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  text-align: left;
  padding-bottom: 150px;
}
@media only screen and (min-width: 41rem) {
  header section.header--style1 .row .content-right .nav {
    left: -400px;
    width: 400px;
    max-width: 400px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100px;
    background: transparent;
    padding: 0;
    overflow-y: visible;
  }
}
header section.header--style1 .row .content-right .nav .menu_top {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  max-width: 100%;
  gap: 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }
}
header section.header--style1 .row .content-right .nav .menu_top .gtranslate_wrapper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top .gtranslate_wrapper {
    margin-bottom: 0;
    height: 100%;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  gap: 40px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 {
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 41rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 1rem;
    text-align: center;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu {
  position: relative;
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
  margin-bottom: 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
    margin-bottom: 0;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  display: none;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
    display: inline-block;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  top: calc(100% + 1px);
  margin-top: 0;
  width: 100%;
  min-width: 200px;
  z-index: 10;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
    display: none;
    position: absolute;
    width: 200px;
    left: 0;
    margin-top: 0;
    padding: 30px 15px 15px 15px;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2::before {
  content: none;
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 15px;
  background-color: rgba(var(--white), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2::before {
    content: "";
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li {
  width: 100%;
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  margin-bottom: 0;
  padding-left: 40px;
  font-size: 1rem;
}
@media only screen and (min-width: 41rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
    padding-left: 0;
    width: 100%;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background-color: rgba(var(--white), 1);
  left: 0;
  top: 10px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before {
    content: none;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu:hover .menu_level2 {
  display: flex;
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2 {
  display: flex;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2 {
    display: none;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded:hover .menu_level2 {
  display: flex;
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li:last-child.submenu .menu_level2 {
  left: auto;
  right: 0;
}
header section.header--style1 .row .content-right .nav.expanded {
  left: 0;
}
@media only screen and (min-width: 65rem) {
  header section.header--style2 .row .content-right, header section.header--style3 .row .content-right {
    max-width: calc(100% - 230px);
  }
}
header section.header--style2 .row .content-right .nav, header section.header--style3 .row .content-right .nav {
  position: fixed;
  top: 100px;
}
header section.header--style2 .row .content-right .nav .menu_top, header section.header--style3 .row .content-right .nav .menu_top {
  display: flex;
  flex-direction: column;
}
header section.header--style2 .row .content-right .nav .menu_top .gtranslate_wrapper, header section.header--style3 .row .content-right .nav .menu_top .gtranslate_wrapper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style2 .row .content-right .nav .menu_top .gtranslate_wrapper, header section.header--style3 .row .content-right .nav .menu_top .gtranslate_wrapper {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
    width: 50%;
    margin: 0 auto;
  }
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  flex-basis: fit-content;
  text-align: left;
  align-items: flex-start;
}
@media only screen and (min-width: 65rem) {
  header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 {
    gap: 50px;
    width: 50%;
  }
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li {
  display: flex;
  flex-basis: fit-content;
  text-align: left;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  color: rgba(var(--black), 1);
  font-size: 1.5rem;
  line-height: 1.2em;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 65rem) {
  header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 2rem;
  }
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover {
  color: rgba(var(--color1), 1);
  opacity: 1;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover {
  color: rgba(var(--black), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
  display: flex;
  justify-content: flex-start;
  flex-basis: 100%;
  gap: 15px;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  width: 20px;
  height: 20px;
  fill: rgba(var(--black), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg:hover {
  fill: rgba(var(--color1), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
  display: none;
  width: 100%;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  width: 100%;
  gap: 20px;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li {
  position: relative;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  font-size: 1rem;
  margin-bottom: 0;
  padding-left: 40px;
}
@media only screen and (min-width: 41rem) {
  header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
  }
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: rgba(var(--color1), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2 {
  display: flex;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
  background-color: rgba(var(--color1), 1);
  padding: 20px;
  color: rgba(var(--white), 1);
  text-align: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a:hover {
  background-color: rgba(var(--black), 1);
}
header section.header--style2 .overlay, header section.header--style3 .overlay {
  display: none;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 {
    display: flex;
    position: static;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;
  }
}
header section.header--style5 .overlay {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(var(--black), 0.7);
  z-index: 3;
}
header section.header--style5 .overlay.expanded {
  display: block;
}
header section.header--style5 .row {
  padding: 0 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .logo {
    padding: 0;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right {
    padding: 0;
    max-width: 100%;
  }
}
header section.header--style5 .row .content-right .nav-toggle {
  display: inline-block;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav-toggle {
    display: none;
  }
}
header section.header--style5 .row .content-right .nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  text-align: left;
}
@media only screen and (min-width: 41rem) {
  header section.header--style5 .row .content-right .nav {
    left: -400px;
    width: 400px;
    max-width: 400px;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav {
    width: 100%;
    height: auto;
    position: static;
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
}
header section.header--style5 .row .content-right .nav .menu_top {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  max-width: 100%;
  gap: 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top {
    justify-content: flex-start;
  }
}
header section.header--style5 .row .content-right .nav .menu_top .gtranslate_wrapper {
  margin-bottom: 30px;
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  gap: 40px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li {
    display: flex;
    width: 100%;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  font-size: 1rem;
}
@media only screen and (min-width: 41rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    flex-basis: content;
    font-size: 1rem;
    text-align: left;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu {
    position: relative;
    flex-direction: column;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
  margin-bottom: 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group {
    margin-bottom: 0;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  display: none;
  fill: rgba(var(--white), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
    display: inline-block;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  top: calc(100% + 1px);
  margin-top: 0;
  width: 100%;
  min-width: 200px;
  z-index: 10;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
    display: none;
    position: static;
    width: 100%;
    left: 0;
    margin-top: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li {
    width: 100%;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  margin-bottom: 0;
  padding-left: 40px;
  font-size: 1rem;
}
@media only screen and (min-width: 41rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
    position: relative;
    font-size: 1rem;
    width: 100%;
    padding-left: 30px;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background-color: rgba(var(--white), 1);
  left: 0;
  top: 10px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a::before {
    width: 20px;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu:hover .menu_level2 {
    display: none;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .group {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .menu_level2 {
    display: flex;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.active a {
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--color1), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation {
    padding: 0;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
  background-color: rgba(var(--color1), 1);
  color: rgba(var(--white), 1);
  padding: 10px;
  border: 2px solid rgba(var(--color1), 1);
  transition: all 0.3s ease-in-out;
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a:hover {
  background-color: transparent;
  color: rgba(var(--color1), 1);
}
header section.header--style5 .row .content-right .nav.expanded {
  left: 0;
}

body .admin_content_zone #template_preview .preview_window .window_content header .row .logo a,
body header .row .logo a {
  color: rgba(var(--white), 1);
  transition: all 0.2s ease-out;
}
body .admin_content_zone #template_preview .preview_window .window_content header .row .logo a:hover,
body header .row .logo a:hover {
  opacity: 0.7;
}

:root {
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --color1: 46, 164, 150;
  --color2: 71, 71, 71;
  --color3: 39, 121, 167;
  --color4: 240, 203, 77;
  --color5: 249, 248, 246;
  --font-family-base: 'Gothic A1', Arial, sans-serif;
  --font-family-alt: 'Sen', Verdana, sans-serif;
}

header section.header,
header .block-editor-block-list__layout.header {
  color: rgba(var(--white), 1);
}
header section.header .row .text-logo h2,
header .block-editor-block-list__layout.header .row .text-logo h2 {
  color: rgba(var(--white), 1);
  font-weight: 700;
  font-family: var(--font-family-alt);
  font-size: 2rem;
  text-transform: none;
  padding-top: 0;
}
header section.header .row .text-logo h2::before,
header .block-editor-block-list__layout.header .row .text-logo h2::before {
  content: none;
}
header section.header .row .content-right .nav,
header .block-editor-block-list__layout.header .row .content-right .nav {
  background: rgba(var(--color2), 1);
  color: rgba(var(--white), 1);
  font-size: 2rem;
  text-align: center;
}
header section.header .row .content-right .nav .menu_top ul,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul {
  font-size: 1rem;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li {
  list-style: none;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  color: rgba(var(--white), 1);
  display: block;
  text-decoration: none;
  font-family: var(--font-family-alt);
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover, header section.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover {
  opacity: 0.7;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li .menu_level2 li a,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li .menu_level2 li a {
  color: rgba(var(--white), 1);
  text-transform: none;
  transition: all 0.3s ease-in-out;
}
header section.header .row .content-right .nav .menu_top ul.menu_level1 li .menu_level2 li a:hover,
header .block-editor-block-list__layout.header .row .content-right .nav .menu_top ul.menu_level1 li .menu_level2 li a:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1,
  header .block-editor-block-list__layout.header--style1 {
    background: rgba(var(--color1), 1) !important;
  }
}
header section.header--style1,
header .block-editor-block-list__layout.header--style1 {
  color: rgba(var(--white), 1);
}
header section.header--style1 .row .content-right .nav,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav {
  background: rgba(var(--color1), 1);
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  color: rgba(var(--white), 1);
  font-weight: bold;
  text-transform: none;
  text-transform: uppercase;
  font-family: "Gothic A1", Arial, sans-serif;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    font-family: var(--font-family-alt);
    font-weight: normal;
    text-transform: none;
    color: rgba(var(--white), 1);
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  fill: rgba(var(--white), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 {
    background-color: rgba(var(--color1), 1);
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  font-weight: normal;
  padding-left: 45px;
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
  background-color: rgba(var(--white), 1);
  padding: 10px;
  color: rgba(var(--color1), 1);
  text-align: center;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
    padding: 0 10px;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a {
  position: relative;
  padding-bottom: 15px;
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a {
    padding-bottom: 0;
  }
}
header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before,
header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(var(--white), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before {
    bottom: -10px;
  }
}
@media only screen and (min-width: 1231px) {
  header section.header--style1 .row .content-right .nav,
  header .block-editor-block-list__layout.header--style1 .row .content-right .nav {
    right: 0;
  }
}
header section.header--style2.expanded, header section.header--style3.expanded,
header .block-editor-block-list__layout.header--style2.expanded,
header .block-editor-block-list__layout.header--style3.expanded {
  background: rgba(var(--color1), 1) !important;
}
header section.header--style2 .row .content-right .nav, header section.header--style3 .row .content-right .nav,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav {
  background-color: rgba(var(--black), 0.7);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
  color: rgba(var(--white), 1);
  text-transform: none;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1:hover,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1:hover {
  opacity: 1;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover, header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group span.title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group span.title_level1:hover,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group span.title_level1:hover,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li span.title_level1:hover,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group span.title_level1:hover {
  color: rgba(var(--white), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group svg {
  width: 20px;
  height: 20px;
  fill: rgba(var(--white), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a {
  font-weight: bold;
  color: rgba(var(--white), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a:hover, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a:hover,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a:hover,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .menu_level2 li a:hover {
  color: rgba(var(--color1), 1);
  opacity: 1;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .title_level1, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .title_level1,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .title_level1,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .title_level1 {
  color: rgba(var(--color1), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .group svg, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .group svg,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .group svg,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.submenu.expanded .group svg {
  fill: rgba(var(--color1), 1);
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
  padding: 20px 15px;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.active a, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.active a,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.active a,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.active a {
  position: relative;
  padding-bottom: 20px;
}
header section.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before, header section.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before,
header .block-editor-block-list__layout.header--style2 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before,
header .block-editor-block-list__layout.header--style3 .row .content-right .nav .menu_top ul.menu_level1 li.active a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(var(--white), 1);
}
header section.header,
header .block-editor-block-list__layout.header {
  /*
  // STYLE 3
  &--style3 {
  	.row {
  		.content-right {
  			.nav {		
  				.menu_bottom {
  					border-top-color: rgba(var(--white), 1);
  					color: rgba(var(--white), 1);
  				}
  			}
  		}
  	}
  }

  // STYLE 4
  &--style4 {
  	.row {
  		.content-right {
  			.nav {
  				background: rgba(var(--color1), 1);
  				text-align: left;

  				.menu_top {
  					ul {
  						&.menu_level1 {
  							li {
  								.title_level1,
  								&.submenu .group .title_level1 {
  									color: rgba(var(--white), 1);
  									font-weight: bold;
  									text-transform: none;
  									text-transform: uppercase;
  									font-family: $font-family-base;
  								}

  								&.submenu {
  									.group {
  										svg {
  											fill: rgba(var(--white), 1);
  										}
  									}

  									.menu_level2 {
  										li {
  											a {
  												font-weight: normal;
  												padding-left: 45px;
  											}
  										}
  									}
  								}
  								&.reservation {
  									a {
  										background-color: rgba(var(--white), 1);
  										padding: 10px;
  										color: rgba(var(--color1), 1);
  										text-align: center;
  									}
  								}
  								&.active {
  									a {
  										position: relative;
  										padding-bottom: 15px;

  										&::before {
  											content: '';
  											display: block;
  											position: absolute;
  											width: 100%;
  											height: 2px;
  											left: 0;
  											right: 0;
  											bottom: 0;
  											margin-left: auto;
  											margin-right: auto;
  											background-color: rgba(var(--white), 1);
  										}
  									}
  								}
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  }
  */
}
@media only screen and (min-width: 65rem) {
  header section.header--style5,
  header .block-editor-block-list__layout.header--style5 {
    background: rgba(var(--color1), 1) !important;
  }
}
header section.header--style5,
header .block-editor-block-list__layout.header--style5 {
  color: rgba(var(--white), 1);
}
header section.header--style5 .row .content-right .nav,
header .block-editor-block-list__layout.header--style5 .row .content-right .nav {
  background: rgba(var(--color1), 1);
}
@media only screen and (min-width: 65rem) {
  header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1, header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1,
  header .block-editor-block-list__layout.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li .title_level1,
  header .block-editor-block-list__layout.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.submenu .group .title_level1 {
    text-transform: none;
    font-size: 1.2rem;
  }
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.active a,
header .block-editor-block-list__layout.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.active a {
  border-bottom-color: rgba(var(--white), 1);
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a,
header .block-editor-block-list__layout.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--color1), 1);
  border-color: rgba(var(--white), 1);
}
header section.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a:hover,
header .block-editor-block-list__layout.header--style5 .row .content-right .nav .menu_top ul.menu_level1 li.reservation a:hover {
  color: rgba(var(--white), 1);
}

@media only screen and (min-width: 65rem) {
  header.header--style1 + main:not(#templatePreview) {
    margin-top: 100px;
  }
}
header .header--style2 + main:not(#templatePreview) {
  margin-top: 0;
}

main#templatePreview header.header--style1 + .entete {
  margin-top: 100px;
}
main#templatePreview header.header--style2 + .entete {
  margin-top: 0;
}

main section:first-child.entete {
  padding-top: 0;
}

section.entete,
.block-editor-block-list__layout.entete {
  background-color: rgba(var(--white), 1);
  padding-top: 0;
  padding-bottom: 0;
}
section.entete .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child),
.block-editor-block-list__layout.entete .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
  margin-left: auto;
}
section.entete > .wp-block-group__inner-container,
.block-editor-block-list__layout.entete > .wp-block-group__inner-container {
  height: 100%;
}
section.entete > .wp-block-group__inner-container .content-center,
section.entete > .wp-block-group__inner-container .content-left,
section.entete > .wp-block-group__inner-container .content-right,
.block-editor-block-list__layout.entete > .wp-block-group__inner-container .content-center,
.block-editor-block-list__layout.entete > .wp-block-group__inner-container .content-left,
.block-editor-block-list__layout.entete > .wp-block-group__inner-container .content-right {
  margin: 0 auto;
}
section.entete .row,
.block-editor-block-list__layout.entete .row {
  position: relative;
  justify-content: center;
}
section.entete .row .media.media_parent,
.block-editor-block-list__layout.entete .row .media.media_parent {
  flex-basis: 100%;
  max-width: 100%;
}
section.entete .row .media img,
.block-editor-block-list__layout.entete .row .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
section.entete .row .boxx_parent,
.block-editor-block-list__layout.entete .row .boxx_parent {
  flex-basis: 100%;
}
section.entete--style1,
.block-editor-block-list__layout.entete--style1 {
  position: relative;
  min-height: 400px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 65rem) {
  section.entete--style1,
  .block-editor-block-list__layout.entete--style1 {
    min-height: 600px;
  }
}
section.entete--style1::before,
.block-editor-block-list__layout.entete--style1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background-color: rgba(var(--white), 1);
  bottom: -50px;
  left: 0;
  z-index: 0;
}
section.entete--style1 .row,
.block-editor-block-list__layout.entete--style1 .row {
  padding-top: 200px;
  height: 100%;
  min-height: 400px;
}
@media only screen and (min-width: 65rem) {
  section.entete--style1 .row,
  .block-editor-block-list__layout.entete--style1 .row {
    min-height: 600px;
  }
}
section.entete--style1 .row .media,
.block-editor-block-list__layout.entete--style1 .row .media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(var(--black), 1);
}
section.entete--style1 .row .media img,
.block-editor-block-list__layout.entete--style1 .row .media img {
  opacity: 1;
}
section.entete--style1 .row .col,
.block-editor-block-list__layout.entete--style1 .row .col {
  z-index: 1;
  align-self: flex-end;
  margin-bottom: 60px;
}
section.entete--style1 .row .col .boxx,
.block-editor-block-list__layout.entete--style1 .row .col .boxx {
  padding: 30px 45px;
  background-color: rgba(var(--white), 0.8);
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
}
section.entete--style1 .row .col .boxx h1,
.block-editor-block-list__layout.entete--style1 .row .col .boxx h1 {
  position: relative;
  margin-bottom: 0;
  z-index: 2;
}
section.entete--style1 .row .col .boxx h1 + .intro,
.block-editor-block-list__layout.entete--style1 .row .col .boxx h1 + .intro {
  margin-top: 30px;
}
section.entete--style1 .row .col .boxx .intro,
.block-editor-block-list__layout.entete--style1 .row .col .boxx .intro {
  position: relative;
  margin-bottom: 0;
  z-index: 2;
}
section.entete--style1 .row .col .boxx .btn,
.block-editor-block-list__layout.entete--style1 .row .col .boxx .btn {
  position: relative;
  margin-top: 0;
  z-index: 2;
  transform: translateY(50px);
}
section.entete--style1 .row .col .boxx .btn.btn-hover-white:hover,
.block-editor-block-list__layout.entete--style1 .row .col .boxx .btn.btn-hover-white:hover {
  color: rgba(var(--color1), 1);
  border-color: rgba(var(--color1), 1);
  background-color: rgba(var(--white), 1);
}
section.entete--style1 .row .col .boxx .btn.btn-hover-white:hover span,
.block-editor-block-list__layout.entete--style1 .row .col .boxx .btn.btn-hover-white:hover span {
  color: rgba(var(--color1), 1);
}
section.entete--style2 .row .media,
.block-editor-block-list__layout.entete--style2 .row .media {
  height: 300px;
  width: 100%;
}
@media only screen and (min-width: 65rem) {
  section.entete--style2 .row .media,
  .block-editor-block-list__layout.entete--style2 .row .media {
    height: 600px;
  }
}
section.entete--style2 .row .media figure figcaption,
.block-editor-block-list__layout.entete--style2 .row .media figure figcaption {
  top: 0;
  bottom: auto;
}
section.entete--style2 .row .col,
.block-editor-block-list__layout.entete--style2 .row .col {
  background-color: transparent;
  margin-bottom: -100px;
  transform: translateY(-100px);
  max-width: 100%;
}
section.entete--style2 .row .col .boxx,
.block-editor-block-list__layout.entete--style2 .row .col .boxx {
  position: relative;
  padding: 50px 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 0px 30px rgba(37, 46, 89, 0.1);
  max-width: calc(100% - 60px);
  z-index: 2;
}
section.entete--style2 .row .col .boxx::before,
.block-editor-block-list__layout.entete--style2 .row .col .boxx::before {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  z-index: 0;
}
@media only screen and (min-width: 41rem) {
  section.entete--style2 .row .col .boxx,
  .block-editor-block-list__layout.entete--style2 .row .col .boxx {
    max-width: calc(100% - 60px);
  }
}
@media only screen and (min-width: 65rem) {
  section.entete--style2 .row .col .boxx,
  .block-editor-block-list__layout.entete--style2 .row .col .boxx {
    padding: 50px 30px 50px 180px;
    max-width: calc(100% - 300px);
  }
  section.entete--style2 .row .col .boxx::before,
  .block-editor-block-list__layout.entete--style2 .row .col .boxx::before {
    content: "";
  }
}
section.entete--style3 .row,
.block-editor-block-list__layout.entete--style3 .row {
  position: relative;
  margin-bottom: 30px;
}
section.entete--style3 .row .media,
.block-editor-block-list__layout.entete--style3 .row .media {
  height: 300px;
  width: 100%;
}
@media only screen and (min-width: 65rem) {
  section.entete--style3 .row .media,
  .block-editor-block-list__layout.entete--style3 .row .media {
    height: 600px;
  }
}
section.entete--style3 .row .media figure figcaption,
.block-editor-block-list__layout.entete--style3 .row .media figure figcaption {
  top: 0;
  bottom: auto;
}
section.entete--style3 .row .col,
.block-editor-block-list__layout.entete--style3 .row .col {
  position: relative;
  margin-bottom: -60px;
  transform: translateY(-60px);
}
section.entete--style3 .row .col::before,
.block-editor-block-list__layout.entete--style3 .row .col::before {
  content: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 0;
}
@media only screen and (min-width: 65rem) {
  section.entete--style3 .row .col::before,
  .block-editor-block-list__layout.entete--style3 .row .col::before {
    content: "";
  }
}
section.entete--style3 .row .col .boxx,
.block-editor-block-list__layout.entete--style3 .row .col .boxx {
  position: relative;
  padding: 50px;
  background-color: rgba(var(--white), 1);
  max-width: calc(100% - 60px);
  box-shadow: 0px 0px 30px rgba(37, 46, 89, 0.1);
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}