@charset "UTF-8";
/* Variable */
:root {
  --y: #f8f4ef;
  --yd: #faf1e6;
  --g: #94a692;
  --gd: #58624b;
  --w: #fff;
  --t: #282821;
  --black: #000;
}

/* Tools */
/* Base */
html {
  font-size: 10px;
}

body {
  font-family: "Garet-Book", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--t);
  background-color: var(--w);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-opened {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  background-color: var(--w);
}
main:before, main:after {
  content: "";
  display: table;
}
main:after {
  clear: both;
}

::-webkit-selection {
  color: #fff;
  background: #000;
  text-shadow: none;
}

::-moz-selection {
  color: #fff;
  background: #000;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #000;
  text-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a,
a:visited {
  /* mobile tap color */
}
a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

h1,
h2,
h3,
h4 {
  text-rendering: optimizelegibility;
}

h1 {
  font-family: "Garet-Book", sans-serif;
  font-size: 5rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 0 0 2rem;
}
h1 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
}

h2 {
  font-family: "Garet-Book", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 0 0 1rem;
}
h2 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
  margin: 0 0 3rem;
}

h3 {
  font-family: "Garet-Book", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 3rem;
}
h3 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
}

h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h5 {
  margin: 0;
}

/* OTHER STYLE */
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

p {
  margin: 0 0 2rem;
  padding: 0;
}

hr {
  height: 1px;
  width: 100%;
  padding: 0;
  border: none;
  background-color: #707070;
  margin-block-start: inherit;
  margin-block-end: inherit;
  margin-inline-start: inherit;
  margin-inline-end: inherit;
}

ul {
  margin: 0;
}

/* FONT FACE */
@font-face {
  font-family: "Angella-white";
  src: url("../fonts/angella-white.woff") format("woff"), url("../fonts/angella-white.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Garet-Book";
  src: url("../fonts/Garet-Book.woff") format("woff"), url("../fonts/Garet-Book.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Dantina";
  src: url("../fonts/Dantina.woff") format("woff"), url("../fonts/Dantina.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Garet-Heavy";
  src: url("../fonts/Garet-Heavy.woff") format("woff"), url("../fonts/Garet-Heavy.woff2") format("woff2");
  font-weight: 700;
}
/******************************
MEDIA QUERIES
******************************/
@media screen and (max-width: 990px) {
  h1 {
    font-size: 4rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
/**********************
RESET CSS
**********************/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn,
em {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

p {
  -webkit-hyphens: none !important;
  -moz-hyphens: none;
  hyphens: none;
  -epub-hyphens: auto;
}

pre {
  margin: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
menu,
ol {
  margin: 0;
}

dd {
  margin: 0;
}

menu {
  padding: 0 0 0 40px;
}

ol,
ul,
li {
  padding: 0;
  list-style-type: none;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  padding: 0;
  /* 2 */
  border: 0;
  /* 1 */
}

button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  /* 3 */
  -webkit-appearance: button;
  /* 2 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

input[type=search] {
  -webkit-box-sizing: content-box;
  /* 2 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
  /* 1 */
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix,
.cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after,
.cf:before,
.cf:after {
  display: table;
  content: "";
}
.clearfix:after,
.cf:after {
  clear: both;
}

span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
/* Layout */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-fluid {
  width: 100%;
}

.row {
  display: block;
}

@media (min-width: 480px) {
  .container {
    width: 450px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 100%;
}

.offset-1,
.offset-2,
.offset-3,
.offset-4,
.offset-5,
.offset-6,
.offset-7,
.offset-8,
.offset-9,
.offset-10,
.offset-11,
.offset-12 {
  grid-column-start: 0;
}

@media (min-width: 990px) {
  .container {
    width: 960px;
    max-width: 100%;
  }

  .row {
    display: grid;
    grid-template: auto/repeat(12, 1fr);
    grid-gap: 20px;
  }
  .row--nogap {
    grid-gap: 0;
  }

  .col-1 {
    grid-column-end: span 1;
  }

  .col-2 {
    grid-column-end: span 2;
  }

  .col-3 {
    grid-column-end: span 3;
  }

  .col-4 {
    grid-column-end: span 4;
  }

  .col-5 {
    grid-column-end: span 5;
  }

  .col-6 {
    grid-column-end: span 6;
  }

  .col-7 {
    grid-column-end: span 7;
  }

  .col-8 {
    grid-column-end: span 8;
  }

  .col-9 {
    grid-column-end: span 9;
  }

  .col-10 {
    grid-column-end: span 10;
  }

  .col-11 {
    grid-column-end: span 11;
  }

  .col-12 {
    grid-column-end: span 12;
  }

  .offset-1 {
    grid-column-start: 2;
  }

  .offset-2 {
    grid-column-start: 3;
  }

  .offset-3 {
    grid-column-start: 4;
  }

  .offset-4 {
    grid-column-start: 5;
  }

  .offset-5 {
    grid-column-start: 6;
  }

  .offset-6 {
    grid-column-start: 7;
  }

  .offset-7 {
    grid-column-start: 8;
  }

  .offset-8 {
    grid-column-start: 9;
  }

  .offset-9 {
    grid-column-start: 10;
  }

  .offset-10 {
    grid-column-start: 11;
  }
}
@media (min-width: 1250px) {
  .container {
    width: 1190px;
    max-width: 100%;
  }
}
@media (min-width: 1950px) {
  .container-fluid {
    width: 1920px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.c-header {
  position: fixed;
  left: 50%;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 1.6rem 0;
  transform: translateX(-50%);
  border-top: 2px solid var(--black);
  transition: padding 0.1s ease-out;
}
.c-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-header__inner--mobile {
  display: none;
}
.c-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.c-header__nav--mobile {
  display: none;
}
.c-header__logo {
  display: block;
  align-items: center;
}
.c-header__logo img {
  max-width: 155px;
  transition: max-width 0.2s;
}
.c-header__menu {
  display: flex;
}
.c-header__menu .menu-item {
  position: relative;
  display: inline-block;
  color: var(--w);
  font-family: "Garet-Book", sans-serif;
  font-size: 1.5rem;
  margin: 0 0.6rem;
  transition: all 0.15s ease-in;
}
.c-header__menu .menu-item a {
  display: block;
  height: 100%;
  padding: 0 2rem;
  padding: 0.5rem 1.4rem;
}
.c-header__menu .menu-item a:hover {
  color: var(--yd);
}
.c-header__menu .menu-item:last-child {
  background: var(--gd);
  border-radius: 30px;
  font-weight: 500;
}
.c-header__menu .menu-item:last-child:hover {
  background-color: var(--yd) !important;
}
.c-header__menu .menu-item:last-child:hover a {
  color: var(--gd) !important;
}
.c-header.is-scrolling {
  background: var(--gd);
  padding: 0.8rem 0;
}
.c-header.is-scrolling .c-header__menu .menu-item:last-child {
  color: var(--w);
}
.c-header.is-scrolling .c-header__menu .menu-item:last-child {
  background: var(--w);
  color: var(--gd);
}
.c-header.is-scrolling .c-header__menu .menu-item:last-child:hover {
  background-color: var(--yd) !important;
  color: var(--gd) !important;
}
.c-header.is-scrolling .c-header__logo {
  display: flex;
  align-items: center;
  margin: 0;
}
.c-header.is-scrolling .c-header__logo img {
  max-width: 100px;
}

.hamburger-icon {
  position: absolute;
  z-index: 1000;
  top: 2rem;
  right: 2.5rem;
  height: 1.3rem;
  margin: 0 auto;
  color: var(--w);
  transition: transform 0.5s;
  display: inline-block;
}
.hamburger-icon span {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 2.7rem;
  height: 1px;
  color: var(--w);
  background: var(--w);
  transform: translateX(-50%) translateY(-50%);
}
.hamburger-icon span:before, .hamburger-icon span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.7rem;
  height: 1px;
  color: var(--w);
  background: var(--w);
  transform: translateY(8px);
  transition: transform 0.5s;
}
.hamburger-icon span:before {
  top: 0;
}
.hamburger-icon span:after {
  top: 0;
  transform: translateY(-8px);
}
.hamburger-icon.is-opened {
  transform: rotate(180deg);
}
.hamburger-icon.is-opened span {
  background: transparent;
}
.hamburger-icon.is-opened span:before {
  transform: translateY(0) rotate(45deg);
}
.hamburger-icon.is-opened span:after {
  transform: translateY(0) rotate(-45deg);
}

/******************************
MEDIA QUERIES
******************************/
@media screen and (max-width: 990px) {
  .c-header {
    padding: 0.8rem 1.5rem;
  }
  .c-header__inner {
    display: none;
  }
  .c-header__inner--mobile {
    display: block;
  }
  .c-header__nav--mobile {
    display: block;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding-top: 5rem;
    background: var(--g);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .c-header__nav--mobile .c-header__menu {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 2.5rem;
    transform: translate(-50%, -50%);
  }
  .c-header__nav--mobile .c-header__menu .menu-item {
    display: block;
    margin: 0 0 1rem;
  }
  .c-header__nav--mobile .c-header__menu .menu-item:last-child {
    background: transparent;
    color: var(--w);
  }
  .c-header__nav--mobile .c-header__menu .menu-item a {
    display: block;
    font-size: 2.2rem;
    border: none;
    font-weight: 500;
  }
  .c-header__nav--mobile .c-header__menu .menu-item a:hover {
    text-decoration: none;
  }
  .c-header__logo--small {
    width: 120px;
    display: block;
  }
  .c-header__logo--mobile--menu {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }
  .c-header__logo--mobile--menu img {
    width: 120px;
  }
  .c-header.is-scrolling {
    padding: 0.8rem 1.5rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-footer {
  background: var(--t);
  color: var(--w);
  padding: 4rem 0 2rem;
}
.c-footer__logo {
  display: block;
  width: 100px;
}
.c-footer__item {
  display: block;
  margin: 0 0 2.5rem;
}
.c-footer__socials {
  display: flex;
  align-items: center;
}
.c-footer__social {
  margin: 0 0 0 1.8rem;
}
.c-footer__social--fb {
  background: no-repeat center/cover url(../images/fb.svg);
  width: 2.5rem;
  height: 2.2rem;
}
.c-footer__social--ig {
  background: no-repeat center/cover url(../images/ig.svg);
  width: 2.2rem;
  height: 2.2rem;
}
.c-footer__social a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  font-size: 0;
  color: transparent;
}

/******************************
MEDIA QUERIES
******************************/
@media screen and (max-width: 990px) {
  .c-footer__upper {
    padding: 0 0 5rem;
  }
  .c-footer__bottom {
    margin: 4rem 0;
  }
  .c-footer__logo {
    margin: 0 0 4rem;
  }
  .c-footer__item {
    margin: 0 0 2rem;
  }
  .c-footer__socials {
    margin: 0.4rem 0 4rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
/* Modules */
.btn {
  display: inline-block;
  padding: 1.25rem 1.9rem;
  line-height: 1;
  background-color: var(--w) !important;
  color: var(--t) !important;
  border-radius: 30px;
  font-size: 1.8rem;
  outline: none;
  border: none;
  transition: all 0.1s ease-in;
}
.btn:hover {
  background-color: var(--yd) !important;
}

.green {
  background-color: var(--g) !important;
  color: var(--w) !important;
}
.green:hover {
  background-color: var(--gd) !important;
}

.greendark {
  background-color: var(--gd) !important;
  color: var(--w);
}

.black {
  background-color: var(--t) !important;
  color: var(--w);
}
.black.btn:hover {
  background-color: var(--gd) !important;
  color: var(--w) !important;
}

.yellow {
  background-color: var(--y) !important;
  color: var(--t) !important;
}

.yellowdark {
  background-color: var(--yd) !important;
  color: var(--t) !important;
}
.yellowdark.btn:hover {
  background-color: var(--gd) !important;
  color: var(--w) !important;
}

/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.modal-open {
  overflow: hidden;
  height: 100%;
}

#contentWrapper {
  display: unset;
}

/***
  * Reset CSS
  */
#tarteaucitronRoot div,
#tarteaucitronRoot span,
#tarteaucitronRoot applet,
#tarteaucitronRoot object,
#tarteaucitronRoot iframe,
#tarteaucitronRoot h1,
#tarteaucitronRoot h2,
#tarteaucitronRoot h3,
#tarteaucitronRoot h4,
#tarteaucitronRoot h5,
#tarteaucitronRoot h6,
#tarteaucitronRoot p,
#tarteaucitronRoot blockquote,
#tarteaucitronRoot pre,
#tarteaucitronRoot a,
#tarteaucitronRoot abbr,
#tarteaucitronRoot acronym,
#tarteaucitronRoot address,
#tarteaucitronRoot big,
#tarteaucitronRoot cite,
#tarteaucitronRoot code,
#tarteaucitronRoot del,
#tarteaucitronRoot dfn,
#tarteaucitronRoot em,
#tarteaucitronRoot img,
#tarteaucitronRoot ins,
#tarteaucitronRoot kbd,
#tarteaucitronRoot q,
#tarteaucitronRoot s,
#tarteaucitronRoot samp,
#tarteaucitronRoot small,
#tarteaucitronRoot strike,
#tarteaucitronRoot strong,
#tarteaucitronRoot sub,
#tarteaucitronRoot sup,
#tarteaucitronRoot tt,
#tarteaucitronRoot var,
#tarteaucitronRoot b,
#tarteaucitronRoot u,
#tarteaucitronRoot i,
#tarteaucitronRoot center,
#tarteaucitronRoot dl,
#tarteaucitronRoot dt,
#tarteaucitronRoot dd,
#tarteaucitronRoot ol,
#tarteaucitronRoot ul,
#tarteaucitronRoot li,
#tarteaucitronRoot fieldset,
#tarteaucitronRoot form,
#tarteaucitronRoot label,
#tarteaucitronRoot legend,
#tarteaucitronRoot table,
#tarteaucitronRoot caption,
#tarteaucitronRoot tbody,
#tarteaucitronRoot tfoot,
#tarteaucitronRoot thead,
#tarteaucitronRoot tr,
#tarteaucitronRoot th,
#tarteaucitronRoot td,
#tarteaucitronRoot article,
#tarteaucitronRoot aside,
#tarteaucitronRoot canvas,
#tarteaucitronRoot details,
#tarteaucitronRoot embed,
#tarteaucitronRoot figure,
#tarteaucitronRoot figcaption,
#tarteaucitronRoot footer,
#tarteaucitronRoot header,
#tarteaucitronRoot hgroup,
#tarteaucitronRoot menu,
#tarteaucitronRoot nav,
#tarteaucitronRoot output,
#tarteaucitronRoot ruby,
#tarteaucitronRoot section,
#tarteaucitronRoot summary,
#tarteaucitronRoot time,
#tarteaucitronRoot mark,
#tarteaucitronRoot audio,
#tarteaucitronRoot video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /*background: initial;*/
  text-align: initial;
  text-shadow: initial;
}

/* HTML5 display-role reset for older browsers */
#tarteaucitronRoot article,
#tarteaucitronRoot aside,
#tarteaucitronRoot details,
#tarteaucitronRoot figcaption,
#tarteaucitronRoot figure,
#tarteaucitronRoot footer,
#tarteaucitronRoot header,
#tarteaucitronRoot hgroup,
#tarteaucitronRoot menu,
#tarteaucitronRoot nav,
#tarteaucitronRoot section {
  display: block;
}

#tarteaucitronRoot ol,
#tarteaucitronRoot ul {
  list-style: none;
}

#tarteaucitronRoot blockquote,
#tarteaucitronRoot q {
  quotes: none;
}

#tarteaucitronRoot blockquote:before,
#tarteaucitronRoot blockquote:after,
#tarteaucitronRoot q:before,
#tarteaucitronRoot q:after {
  content: "";
  content: none;
}

#tarteaucitronRoot table {
  border-collapse: collapse;
  border-spacing: 0;
}

#tarteaucitronRoot a:focus,
#tarteaucitronRoot button:focus {
  /*outline: 2px solid #cb3333;*/
}

/***
   * Better scroll management
   */
div#tarteaucitronMainLineOffset {
  margin-top: 0 !important;
}

div#tarteaucitronServices {
  margin-top: 21px !important;
}

#tarteaucitronServices::-webkit-scrollbar {
  width: 5px;
}

#tarteaucitronServices::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#tarteaucitronServices::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 0px solid slategrey;
}

div#tarteaucitronServices {
  box-shadow: 0 0 35px #575757;
}

/***
   * Responsive layout for the control panel
   */
@media screen and (max-width: 479px) {
  #tarteaucitron .tarteaucitronLine .tarteaucitronName {
    width: 90% !important;
  }

  #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
    float: left !important;
    margin: 10px 15px 5px;
  }
}
@media screen and (max-width: 767px) {
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer,
#tarteaucitron {
    background: #fff;
    border: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    width: 100% !important;
  }

  #tarteaucitron .tarteaucitronBorder {
    border: 0 !important;
  }

  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    border: 0 !important;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
    text-align: left !important;
  }

  .tarteaucitronName .tarteaucitronH2 {
    max-width: 80%;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
    text-align: center !important;
  }

  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #tarteaucitron {
    border: 0 !important;
    left: 0 !important;
    margin: 0 5% !important;
    max-height: 80% !important;
    width: 90% !important;
  }
}
/***
   * Common value
   */
#tarteaucitron * {
  zoom: 1;
}

#tarteaucitronRoot div#tarteaucitron {
  left: 0;
  right: 0;
  margin: auto;
}

#tarteaucitronRoot button#tarteaucitronBack {
  background: #eee;
}

#tarteaucitron .clear {
  clear: both;
}

#tarteaucitron a {
  color: #424242;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

#tarteaucitronRoot button {
  background: transparent;
  border: 0;
}

#tarteaucitronAlertBig strong,
#tarteaucitronAlertSmall strong,
#tarteaucitronAlertBig a,
#tarteaucitronAlertSmall a {
  color: #fff;
}

#tarteaucitron strong {
  font-size: 22px;
  font-weight: 500;
}

#tarteaucitron ul {
  padding: 0;
}

#tarteaucitron .tarteaucitronH1,
#tarteaucitron .tarteaucitronH2,
#tarteaucitron .tarteaucitronH3,
#tarteaucitron .tarteaucitronH4,
#tarteaucitron .tarteaucitronH5,
#tarteaucitron .tarteaucitronH6 {
  display: block;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/***
   * Root div added just before </body>
   */
#tarteaucitronRoot {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#tarteaucitronRoot * {
  box-sizing: initial;
  color: #333;
  font-family: sans-serif !important;
  font-size: 14px;
  line-height: normal;
  vertical-align: initial;
}

#tarteaucitronRoot .tarteaucitronH1 {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  margin: 15px 0 28px;
}

#tarteaucitronRoot .tarteaucitronH2 {
  display: inline-block;
  margin: 12px 0 0 10px;
  color: #fff;
}

#tarteaucitronCookiesNumberBis.tarteaucitronH2 {
  margin-left: 0;
}

/***
   * Control panel
   */
#tarteaucitronBack {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}

#tarteaucitron {
  display: none;
  max-height: 80%;
  left: 50%;
  margin: 0 auto 0 -430px;
  padding: 0;
  position: fixed;
  top: 6%;
  width: 860px;
  z-index: 2147483647;
}

#tarteaucitron .tarteaucitronBorder {
  background: #fff;
  border: 2px solid #333;
  border-top: 0;
  height: auto;
  overflow: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie,
#tarteaucitron #tarteaucitronClosePanel {
  background: #333333;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 70px;
}

#tarteaucitron #tarteaucitronDisclaimer {
  color: #555;
  font-size: 12px;
  margin: 15px auto 0;
  width: 80%;
}

.tarteaucitronSelfLink,
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden,
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  background: rgba(51, 51, 51, 0.07);
}

a.tarteaucitronSelfLink {
  text-align: center !important;
  display: block;
  padding: 7px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
  width: 100%;
  box-sizing: border-box;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,
#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0px 0px;
  padding: 5px 20px;
  text-align: left;
  width: auto;
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  color: #fff;
  font-weight: 500;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover {
  text-decoration: none !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a {
  font-size: 22px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  font-size: 14px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  padding: 5px 10px;
  margin: 0;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
}

#tarteaucitron #tarteaucitronInfo a {
  color: #fff;
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid transparent;
  margin: 0;
  overflow: hidden;
  padding: 15px 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed {
  border-color: #1b870b;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied {
  border-color: #9c1a1a;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  background: #333;
  border: 3px solid #333;
  border-left: 9px solid #333;
  border-top: 5px solid #333;
  margin-bottom: 0;
  margin-top: 21px;
  position: relative;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  margin-left: 15px;
  margin-top: 2px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button {
  color: #fff;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  margin-top: 0px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  display: inline-block;
  float: left;
  margin-left: 10px;
  text-align: left;
  width: 50%;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  display: inline-block;
  float: right;
  margin: 7px 15px 0;
  text-align: right;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  background: gray;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border: 0;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected {
  background-color: #1b870b;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected {
  background-color: #9c1a1a;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
  background-color: #1b870b;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: #9c1a1a;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  color: #333;
  font-size: 12px;
}

#tarteaucitron .tarteaucitronH3 {
  font-size: 18px;
}

#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName {
  width: auto !important;
  margin-left: 0 !important;
  font-size: 14px;
}

/***
   * Big alert
   */
.tarteaucitronAlertBigTop {
  top: 0;
}

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #333;
  color: #fff;
  display: none;
  font-size: 15px !important;
  left: 0;
  position: fixed;
  box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  padding: 10px;
  margin: auto;
  width: 100%;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 15px verdana;
  color: #fff;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-weight: 700;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog {
  cursor: pointer;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny {
  background: #008300;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px !important;
  line-height: 1.2;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 7px;
}

#tarteaucitronRoot .tarteaucitronDeny {
  background: #9c1a1a;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog {
  background: #fff;
  color: #333;
  font-size: 13px;
  margin-bottom: 3px;
  margin-left: 7px;
  padding: 4px 10px;
}

#tarteaucitronPercentage {
  background: #0a0 !important;
  box-shadow: 0 0 2px #fff, 0 1px 2px #555;
  height: 5px;
  left: 0;
  position: fixed;
  width: 0;
  z-index: 2147483644;
}

/***
   * Small alert
   */
.tarteaucitronAlertSmallTop,
.tarteaucitronAlertSmallBottom {
  bottom: 0;
}

#tarteaucitronAlertSmall {
  background: #333;
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
}

#tarteaucitronAlertSmall #tarteaucitronManager:hover {
  background: rgba(255, 255, 255, 0.05);
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  background-color: gray;
  border-radius: 5px;
  display: block;
  height: 8px;
  margin-bottom: 1px;
  margin-top: 5px;
  overflow: hidden;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  display: block;
  float: left;
  height: 100%;
  width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #1b870b;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #fbda26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #9c1a1a;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 30px;
  padding: 0px 10px;
  vertical-align: top;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
  background: rgba(255, 255, 255, 0.3);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  display: none;
  max-height: 70%;
  max-width: 500px;
  position: fixed;
  right: 0;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
  background: #fff;
  border: 2px solid #333;
  color: #333;
  font-size: 11px;
  height: auto;
  overflow: auto;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
  color: #333;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  background: #333;
  margin-top: 21px;
  padding: 13px 0 9px 13px;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
  color: #fff;
  font-size: 16px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  background: rgba(51, 51, 51, 0.1);
  padding: 7px 5px 10px;
  word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
  color: #333;
  text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
  display: inline-block;
  width: 50%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
  color: darkred;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: #333;
  display: inline-block;
  font-size: 11px;
  margin-left: 10%;
  vertical-align: top;
  width: 30%;
}

/***
   * Fallback activate link
   */
.tac_activate {
  background: #333;
  color: #fff;
  display: table;
  font-size: 12px;
  height: 100%;
  line-height: initial;
  margin: auto;
  text-align: center;
  width: 100%;
}

.tac_float {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.tac_activate .tac_float strong {
  color: #fff;
}

.tac_activate .tac_float .tarteaucitronAllow {
  background-color: #1b870b;
  display: inline-block;
}

/***
   * CSS for services
   */
ins.ferank-publicite,
ins.adsbygoogle {
  text-decoration: none;
}

div.amazon_product {
  height: 240px;
  width: 120px;
}

.tarteaucitronIsAllowed .tarteaucitronDeny {
  opacity: 0.4 !important;
}

.tarteaucitronIsDenied .tarteaucitronAllow {
  opacity: 0.4 !important;
}

.tarteaucitronIsAllowed .tarteaucitronAllow {
  opacity: 1 !important;
}

.tarteaucitronIsDenied .tarteaucitronDeny {
  opacity: 1 !important;
}

.tarteaucitronLine .tarteaucitronAllow,
.tarteaucitronLine .tarteaucitronDeny {
  opacity: 0.4;
}

div#tarteaucitronInfo {
  display: block !important;
  position: relative !important;
  text-align: center !important;
  max-width: 80% !important;
  padding: 15px 0 !important;
  margin: -10px auto 40px !important;
  font-size: 1em !important;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #555;
}

a.tarteaucitronSelfLink {
  position: absolute;
  left: 0;
  right: 0;
  padding-top: 13px !important;
  display: block;
  text-shadow: 0 0 14px white;
  text-transform: uppercase;
}

.tarteaucitronMainLine .tarteaucitronH2 {
  font-size: 1.2em !important;
  margin-top: 4px !important;
}

span.tarteaucitronTitle.tarteaucitronH3 {
  margin-top: 12px !important;
}

#tarteaucitronAlertBig button,
#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny {
  color: #fff;
  font-size: 1.1rem !important;
  line-height: 1.5;
  min-width: 12.4rem;
  position: relative;
  padding: 1rem 0.5rem;
  font-weight: bold;
  transition: all 0.2s;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert {
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--y);
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-family: "Garet-Book", sans-serif;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  padding: 1.5rem 1.5rem 1.2rem;
}

button#tarteaucitronPersonalize2 {
  background-color: var(--g) !important;
  border: 1px solid var(--g) !important;
  color: var(--w) !important;
}

button#tarteaucitronAllDenied2 {
  background-color: var(--t) !important;
  border: 1px solid var(--t) !important;
  color: var(--w) !important;
  font-weight: 400 !important;
}

button#tarteaucitronCloseAlert {
  background-color: var(--yd) !important;
  border: 1px solid var(--yd) !important;
  color: var(--gd) !important;
}

div#tarteaucitronIcon {
  display: none !important;
}

.c-section {
  padding: 9rem 0;
}
.c-section--green {
  background-color: var(--g);
  color: var(--w);
}
.c-section--green .decoration:after {
  background: var(--yd);
}
.c-section--darkgreen {
  background-color: var(--gd);
  color: var(--w);
}
.c-section--yellow {
  background-color: var(--y);
}
.c-section--darkyellow {
  background-color: var(--yd);
}
.c-section__content h2 {
  font-family: "Garet-Book", sans-serif;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 3rem;
}
.c-section__content h2 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
  margin: 0;
}
.c-section__content h2:has(+ h3) {
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.c-section__content h2 + h3 {
  font-size: 2.5rem;
}
.c-section__content ul {
  margin-bottom: 0;
}
.c-section__content ul li {
  position: relative;
  padding-left: 2.5rem;
}
.c-section__content ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 45%;
}

.decoration {
  position: relative;
  padding: 0 15px 30px 15px;
}
.decoration img {
  position: relative;
  z-index: 2;
}
.decoration:before {
  content: "";
  width: 50%;
  position: absolute;
  top: -6%;
  bottom: 60%;
  left: -3%;
  background-image: url("https://webredox.net/demo/wp/florya/wp-content/themes/florya/includes/images/dots.png");
  background-repeat: repeat;
  z-index: -1;
}
.decoration:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  left: 45px;
  bottom: 20px;
  background: var(--g);
}

.feuille-droite {
  overflow: hidden;
}
.feuille-droite .container {
  position: relative;
}
.feuille-droite .container:after {
  content: url(../images/feuille-droite.png);
  position: absolute;
  right: -80px;
  bottom: -220px;
  transform: scale(0.6);
}

.feuille-gauche {
  overflow: hidden;
}
.feuille-gauche .container {
  position: relative;
}
.feuille-gauche .container:after {
  content: url(../images/feuille-gauche.png);
  position: absolute;
  left: -80px;
  bottom: -220px;
  transform: scale(0.6);
}

/******************************
  MEDIA QUERIES
  ******************************/
@media screen and (max-width: 990px) {
  .c-section {
    padding: 7rem 0;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-carrousel {
  display: flex;
  position: relative;
  background: no-repeat center/cover;
  padding: 30rem 0 12rem;
  transition: background-image 0.5s ease;
  overflow: hidden;
}
.c-carrousel__fade-carousel {
  position: relative;
  /* height: 400px;
    margin-bottom: 1em; */
}
.c-carrousel__slide {
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.c-carrousel__slide.active {
  opacity: 1;
  z-index: 2;
}
.c-carrousel__content {
  position: relative;
  color: var(--w);
  z-index: 1;
}
.c-carrousel__content h1 {
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 5rem;
}
.c-carrousel__content h1 span {
  font-size: 3.5rem;
  line-height: 2.5;
  text-transform: none;
}
/******************************
      MEDIA QUERIES
      ******************************/
@media screen and (max-width: 990px) {
  .c-carrousel {
    padding: 15rem 0 8rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-services {
  background: var(--y);
}
.c-services__title h2 {
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 0 0 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.c-services__title h3 {
  font-family: "Garet-Book", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 0 0 1rem;
}
.c-services__title h3 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
  margin: 0 0 3rem;
}
.c-services__items {
  margin: 4rem 0 0;
}
.c-services__item {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.c-services__item:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
.c-services__item h3 {
  font-family: "Dantina", sans-serif;
}
.c-services__item__content {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: 2rem;
  color: var(--w);
}
.c-services__item__content hr {
  background: var(--w);
  width: 60px;
  transform: translateY(-2rem);
}
.c-services__item__overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--g);
  color: var(--w);
  display: flex;
  padding: 2.5rem;
  align-items: center;
  justify-content: center;
  bottom: -100%;
  opacity: 0;
  transition: bottom 0.4s, opacity 0.3s ease;
}
.c-services__item:hover .c-services__item__overlay, .c-services__item:focus-within .c-services__item__overlay {
  bottom: 0;
  opacity: 1;
}

/******************************
      MEDIA QUERIES
      ******************************/
@media screen and (max-width: 990px) {
  .c-services__item {
    margin: 0 0 2rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-testimony {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 14rem 0;
  overflow: hidden;
}
.c-testimony__carrousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-testimony__items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.c-testimony__item {
  opacity: 0;
  display: block;
  text-align: center;
  transition: opacity 0.6s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  color: var(--w);
  pointer-events: none;
}
.c-testimony__item p {
  font-size: 2.1rem;
  font-style: italic;
}
.c-testimony__item.active {
  opacity: 1;
  z-index: 1;
  position: relative;
  pointer-events: auto;
}

/******************************
      MEDIA QUERIES
      ******************************/
@media screen and (max-width: 990px) {
  .c-testimony {
    padding: 8rem 0;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-gallery {
  /* Masonry Gallery Styles */
}
.c-gallery .masonry-gallery {
  column-count: 3;
  column-gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}
.c-gallery .masonry-gallery .masonry-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: box-shadow 0.2s;
}
.c-gallery .masonry-gallery .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  transform: scale(1);
  transition: transform 0.2s;
}
.c-gallery .masonry-gallery .masonry-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.c-gallery .masonry-gallery .masonry-item:hover img {
  transform: scale(1.1);
}

.c-gallery__items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.c-gallery__items-grid.is-fading {
  opacity: 0;
  pointer-events: none;
}

/* Transition plus discrète pour les items du grid */
.c-gallery__item.grid-item,
.c-gallery__items-grid .c-gallery__item.grid-item {
  width: calc(16% - 1rem);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  display: block;
  height: auto !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  will-change: opacity;
}

.c-gallery__item.grid-item.is-fading-simple {
  opacity: 0.36;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* fade plus doux et rapide */
}

.c-gallery__item-bg {
  /* Background image is handled inline by JS: background-size: cover etc. */
}

.c-gallery__items-grid .c-gallery__item.grid-item img {
  display: none;
  /* Hide visually, only for SEO & alt text (a11y) */
}

/* Lightbox Styles (unchanged) */
.gallery-lightbox {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 8px;
}
.gallery-lightbox__close, .gallery-lightbox__prev, .gallery-lightbox__next {
  cursor: pointer;
  position: absolute;
  color: #fff;
  font-size: 2.5rem;
  padding: 8px 16px;
  user-select: none;
  font-weight: bold;
  text-shadow: 0 1px 8px #111;
}
.gallery-lightbox__close {
  top: 25px;
  right: 30px;
}
.gallery-lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox__captation {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.gallery-lightbox__close {
  top: 25px;
  right: 30px;
}

.gallery-lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__caption {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 575.98px) {
  .masonry-gallery {
    column-count: 1;
  }
}
@media (max-width: 991px) {
  .c-gallery__item.grid-item,
.c-gallery__items-grid .c-gallery__item.grid-item {
    width: calc(32% - 1rem);
    max-width: calc(32% - 1rem);
  }
}
@media (max-width: 575px) {
  .c-gallery__item.grid-item,
.c-gallery__items-grid .c-gallery__item.grid-item {
    width: 100%;
    max-width: 100%;
  }
}
.c-caption__inner {
  position: relative;
  margin: 4rem 0 0;
}
.c-caption__content {
  position: absolute;
  left: 0;
  top: 50%;
  width: 45%;
  padding: 50px;
  background: var(--g);
  color: var(--w);
  transform: translate(0, -50%);
}
.c-caption__content ul li {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1rem;
}
.c-caption__content ul li small {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
  display: inline-block;
  margin: 0.2rem 0 0;
}
.c-caption__content ul li:before {
  content: "✔";
  top: 4px;
  transform: translateY(0);
}
.c-caption__content ul hr {
  margin: 1.5rem 0;
  background-color: var(--yd);
}

/******************************
      MEDIA QUERIES
      ******************************/
@media screen and (max-width: 990px) {
  .c-caption__content {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    padding: 45px 20px;
    transform: translate(0, 0);
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 75vh;
  min-height: 700px;
  padding: 0;
}
.c-banner__inner {
  position: relative;
  height: 100%;
}
.c-banner__content {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  background: var(--w);
  padding: 4.5rem;
  width: 45%;
}
.c-banner__content h1 {
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.c-banner__content h2 {
  font-family: "Garet-Book", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 2rem;
}
.c-banner__content h2 span {
  display: inline-block;
  font-family: "Dantina", sans-serif;
  font-weight: 400;
}
.c-banner__content p:last-child {
  margin: 0;
}
.c-banner.overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--t);
  opacity: 25%;
}

/******************************
      MEDIA QUERIES
      ******************************/
@media screen and (max-width: 990px) {
  .c-banner {
    min-height: 650px;
  }
  .c-banner__content {
    width: calc(100% - 5rem);
    padding: 3.5rem 2.5rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-news {
  position: relative;
  margin: 5rem 0;
}
.c-news__item {
  margin: 0 0 3rem;
  border-radius: 18px;
  border: 2px solid var(--t);
  transition: all 0.1s ease-in;
}
.c-news__item__img {
  position: relative;
  height: 180px;
  background: no-repeat center/cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.c-news__item__img span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  background: var(--t);
  color: var(--w);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin: 0 0 0rem;
  opacity: 0.5;
}
.c-news__item__content {
  padding: 1rem 1.5rem 1rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.c-news__item__cat {
  display: inline-block;
  background: var(--p);
  color: var(--w);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin: 0 0 0rem;
  font-size: 1.1rem;
}
.c-news__item__date {
  display: block;
  margin: 1rem 0 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-contact {
  padding: 10rem 0 8rem;
}
.c-contact__content ul {
  margin: 2rem 0 3rem;
}
.c-contact__content ul li {
  margin: 0 0 0.5rem;
}
.c-contact__form {
  padding: 0 2.5rem 0 0;
}
.c-contact__form a {
  color: var(--t);
  text-decoration: underline;
}
.c-contact__line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.c-contact__inner {
  width: 48%;
}
.c-contact__line label, .c-contact__one label {
  font-size: 1.6rem;
  font-weight: bold;
  display: none;
}
.c-contact__line legend, .c-contact__one legend {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
.c-contact__line input,
.c-contact__line textarea, .c-contact__one input,
.c-contact__one textarea {
  background: none;
  color: var(--t);
  border: none;
  border-bottom: 1px solid var(--t);
  width: 100%;
  margin: 2rem 0 0;
  padding: 0 0 1rem;
  outline: none;
}
.c-contact__line textarea, .c-contact__one textarea {
  background: none;
  height: 100px;
}
.c-contact__line textarea:active, .c-contact__line textarea:focus, .c-contact__one textarea:active, .c-contact__one textarea:focus {
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.c-contact__line--formations.c-contact__one, .c-contact__one--formations.c-contact__one {
  margin: 3rem 0 0 !important;
}
.c-contact__line--formations.c-contact__one label, .c-contact__one--formations.c-contact__one label {
  display: flex;
  margin: 0 0 1rem;
}
.c-contact__line--formations.c-contact__one select, .c-contact__one--formations.c-contact__one select {
  width: 100%;
}
.c-contact__line--formations.c-contact__one .wpcf7-list-item label, .c-contact__one--formations.c-contact__one .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
}
.c-contact__line--formations.c-contact__one .wpcf7-list-item input, .c-contact__one--formations.c-contact__one .wpcf7-list-item input {
  width: 2rem;
  margin: 0 1rem 0 0;
}
.c-contact input#NOM {
  margin: 0 !important;
}
.c-contact input.wpcf7-file {
  border: none;
}
.c-contact__one {
  margin: 1.5rem 0 0 !important;
}
.c-contact__label {
  margin: 3rem 0 0 !important;
}
.c-contact__label label {
  display: flex;
  margin: 0 0 1rem;
}
.c-contact__label input {
  margin: 0;
}
.c-contact__rgpd {
  font-size: 1.2rem;
  margin: 2rem 0 0 !important;
  color: var(--t);
}
.c-contact__rgpd > p > label {
  display: none;
}
.c-contact__rgpd .wpcf7-list-item {
  margin: 0;
}
.c-contact__rgpd input#acceptance {
  margin: 0 0.5rem 0 0;
}
.c-contact input[type=submit],
.c-contact button[type=submit] {
  outline: none;
  margin: 3rem 0 0rem;
}
.c-contact button[type=submit] {
  border: none;
}
.c-contact .wpcf7 form .wpcf7-response-output {
  color: var(--t);
}
.c-contact .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--t);
}
.c-contact .wpcf7-not-valid-tip {
  color: red;
}
.c-contact ::placeholder {
  color: var(--t);
}
.c-contact .screen-reader-response {
  display: none;
}
.c-contact--contact {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-contact--contact:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}
.c-contact--contact .c-section__content {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

/******************************
MEDIA QUERIES
******************************/
@media screen and (max-width: 990px) {
  .c-contact {
    padding: 6rem 0 4rem;
  }
  .c-contact__form {
    padding: 0;
    margin: 0 0 6rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-single img {
  border-radius: 10px;
}

/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-popup-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.c-popup {
  background: #fff;
  max-width: 420px;
  margin: 12vh auto 0 auto;
  padding: 2.5em 2em 2em;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(57, 84, 77, 0.16);
  border: 2px solid var(--g);
  text-align: center;
  position: relative;
  animation: popupIn 0.32s cubic-bezier(0.3, 1.3, 0.4, 1) both;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(-26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.c-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--g);
  border: none;
  border-radius: 50%;
  font-size: 1.7em;
  color: var(--w);
  cursor: pointer;
  width: 38px;
  height: 38px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(57, 84, 77, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}

.c-popup__close:hover,
.c-popup__close:focus {
  background: var(--t);
  color: var(--w);
}

.c-popup__content {
  margin-top: 1em;
}

.c-popup__content span {
  font-size: 1.3em;
}

@media (max-width: 600px) {
  .c-popup {
    max-width: 96vw;
    margin: 14vh auto 0 auto;
    padding: 1.7em 0.7em 1.3em;
  }

  .c-popup__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
  }

  .c-popup__content {
    margin-top: 0.4em;
  }
}
/******************************
MEDIA QUERIES
******************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
.c-search {
  transform: translateY(-150px);
}
.c-search__wrapper {
  background: var(--y);
  color: var(--t);
  padding: 2.5rem;
  border-radius: 15px;
}
.c-search__wrapper h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 2rem;
}
.c-search__form {
  display: flex;
  align-items: flex-end;
}
.c-search__inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-search__inputs label {
  font-size: 1.5rem;
  font-weight: 600;
}
.c-search__input {
  border-radius: 15px;
  border: none;
  padding: 1rem 2rem;
  margin: 0 2rem 0 0;
}
.c-search__buttons button {
  height: fit-content;
  padding: 1rem 2rem;
  border: none;
  line-height: inherit;
}
.c-search__results {
  margin: 2rem 0 0;
}
.c-search__results h2 {
  text-align: center;
}

@media screen and (max-width: 990px) {
  .c-search {
    transform: translateY(-50px);
  }
}
.mobile {
  display: none;
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

.mb {
  margin: 0 0 3rem;
}

/******************************
MEDIA QUERIES
******************************/
@media screen and (max-width: 990px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}

/* A SCSS */

.wpbs-calendars-wrapper.wpbs-legend-position-side {
  margin: 0 auto;
}

.wpbs-main-wrapper .wpbs-form-container {
  margin: 0 auto !important;
}