/*!********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./assets/sass/main.scss ***!
  \********************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --transition-time: 0.3s;
  --section-margin: 10em;
  --section-padding: 6em;
  --2-padding: 2em;
  --4-padding: 4em;
  --border-radius: 5px;
  --banner-offset: 20em;
  --gap: 1em;
  --alpha-1: rgba(0, 0, 0, 0);
  --white-base: rgba(255, 255, 255, 1);
  --white-base-75: rgba(255, 255, 255, 0.75);
  --white-base-alpha-1: rgba(255, 255, 255, 0.5);
  --black-base: rgba(0, 0, 0, 1);
  --grey: #707070;
  --pink: #ff9191;
  --pink-50: #ff919180;
  --green: #bde038;
  --green-com: #bde038;
  --orange-market: #ffa200;
  --pink-dev: #ff00bb;
  --blue-event: #00e5ff;
  --dark-blue: #070435;
  --dark-blue-75: #070435bf;
  --black: rgb(22, 22, 21);
  --green-dark: #173e3d;
  --green-light: #55B364;
  --light-grey: #6a6b6e;
  --black-valterra: #333333;
  --text-color: var(--theme-grey-white);
  --sb-size: 10px;
  --sb-radius: 8px;
  --sb-thumb: rgba(0, 0, 0, 0.35);
  --sb-thumb-hover: rgba(0, 0, 0, 0.55);
  --sb-track: transparent;
  --leaflet-background: #55b364;
  --leaflet-title: #173e3d;
  --leaflet-content: var(--white-base)
  //──│ 4. Fonts
  --fs-base: 1.8rem;
  --ff-base: "TT-Norms", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-gtamerica: "GT-America", "GTAmerica", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --theme-white-blue: var(--white-base);
  --theme-white-blue-75: var(--white-base-75);
  --theme-blue-white: var(--dark-blue);
  --theme-black-white: var(--black);
  --theme-white-black: var(--white-base);
  --theme-grey-pink: var(--grey);
  --theme-grey-white: var(--grey);
}

[data-theme=light] {
  --theme-white-blue: var(--white-base);
  --theme-white-blue-75: var(--white-base-75);
  --theme-blue-white: var(--dark-blue);
  --theme-black-white: var(--black);
  --theme-white-black: var(--white-base);
  --theme-grey-pink: var(--grey);
  --theme-grey-white: var(--grey);
}

[data-theme=dark] {
  --theme-white-blue: var(--dark-blue);
  --theme-white-blue-75: var(--dark-blue-75);
  --theme-blue-white: var(--white-base);
  --theme-black-white: var(--white-base);
  --theme-white-black: var(--black);
  --theme-grey-pink: var(--pink);
  --theme-grey-white: var(--white-base);
}

/*
 * #############################################################################
 * @Filename: _mixins.scss                                                     #
 * @Date: 2025-10-31 10:37                                                     #
 * @Author: Tanguy Hiceo                                                       #
 * @Author email: tavet.hiceo@gmail.com                                        #
 * @Last Modified: 2025-10-31 10:37                                            #
 * @Modified By: Tanguy Hiceo                                                  #
 * @Copyright (c) 2025 -                                                       #
 * #############################################################################
 */
/*
/// @param {String}  $family   - Nom de la police (CSS)
/// @param {String}  $file     - Chemin + nom de base du fichier (sans extension)
/// @param {Number}  $weight   - Poids (ex: 400)
/// @param {String}  $style    - Style (ex: normal, italic)
/// @param {String}  $display  - font-display (ex: swap)
/// @param {List}    $formats  - Liste des formats disponibles dans ton projet (ex: (woff2, woff))
/// @param {List}    $local    - Liste des noms locaux (ex: ('Poppins Regular','Poppins-Regular'))
*/
/* ===== Usage ===== */
/* -------- CSS reset ------------- */
/* https://piccalil.li/blog/a-modern-css-reset --> example of resets */
/* box sizing and reset margins */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set up the body */
body {
  box-sizing: border-box;
  line-height: 1.5;
  min-height: 100vh;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a span {
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

.elementor-button span {
  font-family: var(--ff-gtamerica);
  text-decoration: none;
  font-size: 1.8rem;
}

.page-content a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* make img easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * #############################################################################
 * @Filename: _utility_classes.scss                                            #
 * @Date: Friday, July 7th 2023, 10:48:26                                      #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, March 13th 2024, 09:29:59                        #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

.banner > .elementor-container {
  padding-block: var(--banner-offset);
}

/* #####################################################################################
 * ############################## TITLE HOME ####################################
 * ##################################################################################### */
.title-home,
.title-home .word {
  text-transform: uppercase;
  font-size: 80px;
  background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  line-height: 100px;
}

@media (max-width: 1024px) {
  .title-home,
  .title-home .word {
    text-transform: uppercase;
    font-size: 60px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .title-home,
  .title-home .word {
    text-transform: uppercase;
    font-size: 45px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 60px;
  }
}
@media (max-width: 520px) {
  .title-home,
  .title-home .word {
    text-transform: uppercase;
    font-size: 35px;
    background: linear-gradient(to right, var(--pink), var(--pink)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    line-height: 50px;
  }
}
.blog-post-unique-meta span.elementor-heading-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--green-dark);
}
.blog-post-unique-meta span.elementor-heading-title > span {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--green-dark);
  background-color: rgba(85, 179, 100, 0.1254901961);
  color: var(--green-dark);
}

/*
 * #############################################################################
 * @Filename: _aosRewrite.scss                                                 #
 * @Date: Friday, February 9th 2024, 02:03:5                                   #
 * @Author: TBergerDev                                                         #
 * @Author email: tristan.berger.dev@gmail.com                                 #
 * @Last Modified: Friday, February 9th 2024, 02:03:14                         #
 * @Modified By: TBergerDev                                                    #
 * @Copyright (c) 2024 -                                                       #
 * #############################################################################
*/
.elementor-element.fadeInDown {
  animation-name: fadeInDownCustom;
}

@keyframes fadeInDownCustom {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInLeft {
  animation-name: fadeInLeftCustom;
}

@keyframes fadeInLeftCustom {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInRight {
  animation-name: fadeInRightCustom;
}

@keyframes fadeInRightCustom {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInUp {
  animation-name: fadeInUpCustom;
}

@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.fadeInUpFast {
  animation-name: fadeInUpFast;
}

@keyframes fadeInUpFast {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.elementor-element.slideInLeft {
  animation-name: slideInLeftCustom;
}

@keyframes slideInLeftCustom {
  from {
    transform: translate3d(-100px, 0, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInRight {
  animation-name: slideInRightCustom;
}

@keyframes slideInRightCustom {
  from {
    transform: translate3d(100px, 0, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInUp {
  animation-name: slideInUpCustom;
}

@keyframes slideInUpCustom {
  from {
    transform: translate3d(0, 100px, 0);
  }
  to {
    transform: none;
  }
}
.elementor-element.slideInDown {
  animation-name: slideInDownCustom;
}

@keyframes slideInDownCustom {
  from {
    transform: translate3d(0, -100px, 0);
  }
  to {
    transform: none;
  }
}
.addedAnimation:not(.animated) {
  opacity: 0;
}

/*
* PREFER USING WOFF2 FILES /!\
*/
@font-face {
  font-family: "GT-America";
  src: url(../fonts/FontsFree-Net-GT-America-Regular-1..ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../7448008177a4049f5d6d.otf) format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../007443f043b1964fad68.otf) format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../7e7e7d955ee9c6728cda.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../090b4cb8c19bd734fb90.otf) format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../fdca00f932b3c2e5589f.otf) format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../50e4cf0c387becd1ec63.otf) format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../390ed6eea240112700bc.otf) format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT-America";
  src: url(../6ae029bf6d5afae2a788.otf) format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../79bf25a66825304b1e0c.otf) format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../2cc4e6a7d4d69581aee6.otf) format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../1d1d68a075f723892110.otf) format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../69cb4636a2a6fc9cb381.otf) format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../5666b83392be1e75e731.otf) format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../d49bd5863e12944f8030.otf) format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../be9ab5334998e415ea05.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../b2ec10270eb8117b0b05.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../f40d89b8315b60b8fe2b.otf) format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../d05ece70a634fc621daa.otf) format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../ab11dda975e33de4228c.otf) format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../d7e3362b27216880f85f.otf) format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../abdf40c3105e1422ca1a.otf) format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../0da2a4503545793ae4c3.otf) format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../a47f018acc90e8943fb7.otf) format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../0a7b4dc3218da74da0e1.otf) format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT-Norms";
  src: url(../454e06c3346f7b395fee.otf) format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
h1,
h2,
h3 {
  font-family: var(--ff-base);
}

h4,
h5,
p,
a,
input,
textarea,
button,
label,
span,
li,
select {
  font-family: var(--ff-base);
}

h1,
h2,
h3,
h4,
h5,
li,
p {
  cursor: default;
}

a,
span,
button,
label {
  font-size: var(--fs-base);
}

ul li {
  font-size: var(--fs-base);
}

label.disabled {
  color: rgba(36, 36, 35, 0.5);
}

p {
  margin-block-end: 0px;
}

#wpadminbar h1,
#wpadminbar h2,
#wpadminbar h3,
#wpadminbar h4,
#wpadminbar h5,
#wpadminbar p,
#wpadminbar a,
#wpadminbar input,
#wpadminbar textarea,
#wpadminbar button,
#wpadminbar label,
#wpadminbar span {
  color: white !important;
}

html {
  font-size: 0.625em;
}

header,
footer {
  z-index: 9999 !important;
}

html,
body {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  background-color: var(--theme-white-blue);
  transition: background-color var(--transition-time);
}

.has-image-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

a {
  transition: all var(--transition-time) !important;
}
a:hover {
  --text-color: var(--orange);
}

.elementor {
  position: relative;
}

.elementor-widget-image-carousel .swiper-wrapper {
  transition-timing-function: linear;
}
.elementor-widget-image-carousel .swiper-wrapper .swiper-slide-inner {
  background-color: var(--white-base);
  border-radius: var(--border-radius);
  display: flex;
  height: 10em;
  justify-content: center;
  margin-right: 2em !important;
}
.elementor-widget-image-carousel .swiper-wrapper .swiper-slide-inner img {
  object-fit: contain;
  padding: 1em;
}

.elementor-button {
  transition: all var(--transition-time) !important;
}

body:not(.elementor-editor-active) .elementor-widget-menu-anchor {
  position: relative;
  z-index: -1;
}

body:not(.elementor-editor-active) .elementor-menu-anchor:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
  visibility: hidden;
  pointer-events: none;
}

/*
 * #############################################################################
 * @Filename: _header.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Thursday, February 29th 2024, 09:20:39                      #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
#masthead {
  position: sticky !important;
  top: 0;
  transform: translateY(0);
  transition: all var(--transition-time);
}
#masthead.scrolled-top {
  backdrop-filter: blur(5px);
  background: var(--theme-white-blue-75);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#masthead.scrolled-bot {
  transform: translateY(-100%);
  box-shadow: none;
}
#masthead div a.elementor-button span {
  line-height: 23px;
}
#masthead nav {
  position: relative;
}
#masthead nav .mega-produits {
  position: relative;
}
#masthead nav .mega-produits::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 64px;
}
#masthead nav .mega-produits:hover > .sub-menu, #masthead nav .mega-produits:focus-within > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
#masthead nav .mega-produits .hfe-has-submenu-container {
  position: relative;
  z-index: 1;
}
#masthead nav .mega-produits > .sub-menu {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  padding: 2rem 3rem;
  background-color: var(--white-base);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: auto;
  pointer-events: none;
}
#masthead nav .mega-produits > .sub-menu li.menu-item {
  position: relative;
  flex: 1 1 0;
  border-bottom: none !important;
}
#masthead nav .mega-produits > .sub-menu li.menu-item .hfe-has-submenu-container a {
  font-weight: 600;
}
#masthead nav .mega-produits > .sub-menu li.menu-item#menu-item-2759 .hfe-has-submenu-container a:hover, #masthead nav .mega-produits > .sub-menu li.menu-item#menu-item-2760 .hfe-has-submenu-container a:hover {
  color: var(--green-dark);
}
#masthead nav .mega-produits > .sub-menu li.menu-item#menu-item-2759:first-child::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background-color: var(--green-dark);
}
#masthead nav .mega-produits > .sub-menu li.menu-item a {
  display: block;
  padding-left: 0px;
  padding-right: 0px;
}
#masthead nav .mega-produits > .sub-menu li.menu-item a .hfe-menu-toggle {
  display: none;
}
#masthead nav .mega-produits > .sub-menu li.menu-item .sub-menu {
  position: static !important;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  padding: 0px;
  margin: 0px;
  padding-right: 1rem;
  margin-left: 1rem;
  width: auto !important;
}
#masthead nav .mega-produits > .sub-menu li.menu-item .sub-menu li {
  border-bottom: none !important;
  margin-bottom: 4px;
}
#masthead nav .mega-produits > .sub-menu li.menu-item .sub-menu li a {
  display: block;
  padding: 1rem 0rem;
}
#masthead nav .mega-produits > .sub-menu li.menu-item .sub-menu li a:hover {
  color: var(--green-dark);
}

.header .header-logo rect,
.header .header-logo path {
  fill: var(--theme-black-white);
  transition: fill var(--transition-time);
}
.header .toggle-theme-container {
  display: flex;
  justify-content: center;
}
.header .toggle-theme {
  width: fit-content;
  font-size: 14px;
  transition: all var(--transition-time);
  background-color: transparent;
  margin-bottom: 0;
  display: block;
  padding: 8px 17px;
  border: 1px solid var(--theme-grey-white);
  --text-color: var(--theme-grey-white);
  line-height: 9px;
  border-radius: 999px;
  cursor: pointer;
}
.header .toggle-theme span {
  font-size: 24px;
  font-family: var(--ff-gtamerica);
}
.header .toggle-theme:hover {
  background-color: var(--theme-blue-white);
  --text-color: var(--theme-white-blue);
  border: 1px solid var(--theme-blue-white);
}
.header #hamburger path {
  stroke: var(--theme-grey-white);
  transition: stroke var(--transition-time);
}
.header #hamburger:hover path {
  stroke: var(--pink);
}

@media (max-width: 450px) {
  .header .header-logo svg {
    width: 120px;
  }
  .header .toggle-theme {
    padding: 6px 14px;
    font-size: 12px;
  }
  .header .toggle-theme span {
    font-size: 20px;
  }
  .header #hamburger svg {
    width: 25px;
  }
}
@media (max-width: 350px) {
  .header .header-logo svg {
    width: 110px;
  }
  .header .toggle-theme {
    padding: 4px 9px;
    font-size: 11px;
  }
  .header .toggle-theme span {
    font-size: 18px;
  }
  .header #hamburger svg {
    width: 20px;
  }
}
/*
 * #############################################################################
 * @Filename: _footer.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, February 28th 2024, 10:01:08                     #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
/*
 * #############################################################################
 * @Filename: footer.scss                                                      #
 * @Date: Friday, May 26th 2023, 10:05:33                                      #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Friday, May 26th 2023, 12:22:51                             #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
@media screen and (max-width: 1024px) {
  .footerNavigation > .elementor-container {
    flex-direction: column;
    align-content: center;
    gap: 0;
    text-align: center;
  }
  .footerNavigation > .elementor-container > .elementor-column {
    margin: auto;
  }
  .footerNavigationSocialsFlex > .elementor-container {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footerBottom > .elementor-container {
    --gap-bottom: 0px;
  }
}
footer ul li a span {
  font-size: inherit;
}

.footerTop > .elementor-container > .elementor-column {
  min-height: 0;
}
.footerTop > .elementor-container > .elementor-column > .elementor-widget-wrap {
  padding: 0 !important;
}
.footerTopButton {
  background-color: var(--alpha-1);
  border: 2px solid var(--pink);
  border-radius: var(--border-radius);
  bottom: 1em;
  cursor: pointer;
  position: fixed;
  right: 1em;
  width: auto !important;
  z-index: 2;
  width: 40px !important;
  height: 40px;
  display: flex;
}
.footerTopButton .elementor-widget-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerTopScroll {
  bottom: 4em;
  position: fixed;
  right: 1em;
  width: auto !important;
  z-index: 2;
  width: 40px !important;
  height: 40px;
  display: flex;
}
.footerTopScroll .elementor-widget-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerTopScroll .elementor-widget-container svg circle {
  stroke: var(--pink-50);
  stroke-width: 2px;
}
.footerTopScroll .elementor-widget-container svg .progress {
  stroke-width: 2px;
  transition: 0.1s;
  stroke: var(--pink);
}
.footerTopScroll .elementor-widget-container .scroll-indicator-container {
  position: relative;
  display: block;
  margin: auto;
  height: 40px;
  width: 40px;
}
.footerTopScroll .elementor-widget-container .scroll-indicator-container::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: attr(data-scroll);
  border-radius: 50%;
  color: var(--pink);
  font-family: var(--ff-base);
  font-weight: bold;
}
.footerContainer {
  background-color: var(--pink);
}
.footerMain {
  --text-color: var(--white-base);
}
.footerMain .coords a {
  text-decoration: underline;
}
.footerMain .coords a:hover {
  --text-color: var(--dark-blue);
}
.footerBottom div span,
.footerBottom div span a {
  font-size: 1.8rem;
}

/*
 * #############################################################################
 * @Filename: _popup_menu.scss                                                 #
 * @Date: Friday, February 23rd 2024, 05:43:59                                 #
 * @Author: TBergerDev                                                         #
 * @Author email: tristan.berger.dev@gmail.com                                 #
 * @Last Modified: Tuesday, February 27th 2024, 05:40:59                       #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2024 -                                                       #
 * #############################################################################
*/
.popup-menu .modal-close .elementor-icon-wrapper {
  display: flex;
  align-items: center;
}
.popup-menu .modal-close circle {
  transition: fill var(--transition-time);
}
.popup-menu .modal-close:hover circle {
  fill: var(--green);
}
.popup-menu nav a {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 100;
}
.popup-menu nav a:hover {
  font-weight: bold;
  --text-color: var(--white-base);
}
.popup-menu nav a:hover.com {
  --text-color: var(--green-com);
}
.popup-menu nav a:hover.market {
  --text-color: var(--orange-market);
}
.popup-menu nav a:hover.event {
  --text-color: var(--blue-event);
}
.popup-menu nav a:hover.dev {
  --text-color: var(--pink-dev);
}
.popup-menu .bottom {
  font-size: 14px;
  --text-color: var(--white-base);
}
.popup-menu .bottom .coords a {
  text-decoration: underline;
}
.popup-menu .bottom .coords a:hover {
  --text-color: var(--pink);
}
.popup-menu .bottom .socials .elementor-icon {
  width: 70px;
  height: 70px;
  place-items: center;
  display: grid;
  border-radius: 50%;
}
.popup-menu .bottom .socials .elementor-icon svg {
  width: 40px;
  height: 40px;
  transform: translate(var(--tx, 0), var(--ty, 0));
  transition: all 0.2s ease-out;
}
.popup-menu .bottom .socials svg path {
  transition: fill var(--transition-time);
}
.popup-menu .bottom .socials svg:hover path {
  fill: var(--pink);
}

@media (max-width: 1500px) {
  .popup-menu nav a {
    font-size: 40px;
  }
}
@media (max-width: 1300px) {
  .popup-menu nav a {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .popup-menu nav a {
    font-size: 27px;
  }
}
.post-template-cs .header-btn-register li span {
  font-size: 2rem;
}
.post-template-cs .link:hover span {
  color: var(--green-dark) !important;
}
.post-template-cs .link span {
  transition: var(--transition-time);
}

#leaf-map {
  min-height: 80vh;
  height: 580px;
}
#leaf-map > .e-con-inner {
  display: none;
}
#leaf-map .leaflet-control-container .leaflet-top {
  z-index: 800;
}
#leaf-map .leaflet-control-container .leaflet-top .leaflet-control-zoom {
  z-index: 100;
}

#leaf-sidebar {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 500px;
  height: 100%;
  transform: translateX(0px);
  transition: all var(--transition-time) !important;
  border: 0px;
}
#leaf-sidebar .leaflet-sidebar-content {
  height: 100%;
  right: 0px;
  background-color: var(--leaflet-background);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane {
  height: 100%;
  padding: 0px;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel {
  height: 100%;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container {
  height: 100%;
  overflow: hidden;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  background-position: center center;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
  padding: 2rem 2.5rem;
  height: calc(100% - 300px);
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}
@media (forced-colors: active) {
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
    scrollbar-color: auto;
  }
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar {
  width: 10px;
  height: var(--sb-size);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar-track {
  background: var(--sb-track);
  margin-block: 4px;
  margin-inline: 2px;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar-thumb {
  background-color: var(--sb-thumb);
  border-radius: var(--sb-radius);
  border: 2px solid transparent;
  background-clip: content-box;
}
@media (forced-colors: active) {
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar-thumb {
    background-color: ButtonText;
    border-color: ButtonFace;
  }
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar-thumb:hover {
  background-color: var(--sb-thumb-hover);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content::-webkit-scrollbar-corner {
  background: transparent;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
  color: var(--leaflet-title);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address p {
  font-size: 1.5rem;
  color: var(--leaflet-content);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address a:hover {
  color: var(--leaflet-title);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address p,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details p,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download a {
  font-family: var(--ff-base);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address p,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address p a,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details p,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download {
  color: var(--white-base);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details,
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download {
  margin-top: 1.8rem;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download {
  display: flex;
  flex-direction: column;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download svg {
  height: 30px;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download svg * {
  transition: all var(--transition-time) !important;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .cross-icon {
  height: 24px;
  width: 24px;
  margin-top: 6px;
  cursor: pointer;
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .cross-icon:hover path {
  stroke: var(--leaflet-title);
}
#leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .cross-icon * {
  transition: all var(--transition-time) !important;
}
#leaf-sidebar.collapsed {
  transform: translateX(500px);
}
#leaf-sidebar .leaflet-sidebar-tabs {
  display: none;
}

/*HIDE CONTROLS*/
.leaflet-control-container .leaflet-bottom.leaflet-right {
  display: none;
}

/*1440px - 1024px*/
@media screen and (max-width: 1440px) {
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container img {
    height: 250px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
    padding: 1.75rem 2.25rem;
    height: calc(100% - 250px);
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
    font-size: 2.8rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download svg {
    height: 24px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download,
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details {
    margin-top: 1.4rem;
  }
}
/*1024px - 767px*/
@media screen and (max-width: 1024px) {
  #leaf-sidebar {
    width: 370px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
    padding: 1.5rem 2rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
    font-size: 2.4rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download {
    align-items: center;
    flex-direction: row;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download svg {
    height: 20px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download,
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details {
    margin-top: 1rem;
  }
  #leaf-sidebar.collapsed {
    transform: translateX(370px);
  }
}
/*767px - 500px*/
@media screen and (max-width: 767px) {
  #leaf-sidebar {
    width: 320px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container img {
    height: 200px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
    padding: 1.25rem 1.75rem;
    height: calc(100% - 200px);
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
    font-size: 2.2rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .cross-icon {
    margin-top: 4px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download,
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details {
    margin-top: 1.2rem;
  }
  #leaf-sidebar.collapsed {
    transform: translateX(320px);
  }
}
/*500px - 320px*/
@media screen and (max-width: 500px) {
  #leaf-map {
    height: 480px;
    min-height: 480px;
  }
  #leaf-sidebar {
    width: 280px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container img {
    height: 170px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content {
    padding: 1rem 1.5rem;
    height: calc(100% - 170px);
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .text {
    font-size: 2rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .title .cross-icon {
    margin-top: 4px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download svg {
    height: 18px;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details p,
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .address p {
    font-size: 1.4rem;
  }
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .download,
  #leaf-sidebar .leaflet-sidebar-content .leaflet-sidebar-pane #site-panel .container .content .details {
    margin-top: 1.2rem;
  }
  #leaf-sidebar.collapsed {
    transform: translateX(280px);
  }
}
#contact-form form input::placeholder,
#contact-form form textarea::placeholder {
  color: #999999;
  opacity: 1;
}
#contact-form form select.is-placeholder {
  color: #999999;
}

.product-unique {
  border-bottom: 7px solid var(--green-light);
}
.product-unique .e-con-inner > .elementor-element:not(.elementor-widget-image) {
  padding: 0px 10px;
}
.product-unique-content .tag {
  font-size: 1.6rem;
  padding: 0.5rem 3rem;
  background-color: var(--light-grey);
  color: var(--white-base);
  text-transform: uppercase;
  font-family: var(--ff-gtamerica);
  font-weight: 700;
  border-radius: 4rem;
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  .product-unique-content .tag {
    font-size: 1.5rem;
    padding: 0.5rem 2.5rem;
  }
}
.product-unique .see-more {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: none;
  padding: 0px;
  outline: none;
  font-size: 1.6rem;
  color: var(--black-valterra);
  font-weight: 500;
  background-color: transparent !important;
}
.product-unique .see-more i {
  color: var(--green-light);
}
.product-unique .see-more.btn-toggle-text {
  margin-top: 0px;
}
.product-unique .bloc-conditionnements .conditionnements-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-unique .bloc-conditionnements .conditionnements-list.has-more .conditionnement-item.is-extra {
  display: none;
}
.product-unique .bloc-conditionnements .conditionnements-list.is-expanded .conditionnement-item.is-extra {
  display: block;
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__title {
  display: flex;
  flex-direction: column;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: var(--ff-base);
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__title {
    font-size: 1.6rem;
  }
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__title .conditionnement-item__subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--ff-base);
  margin-bottom: 0.5rem;
  color: var(--light-grey);
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta {
  display: flex;
  flex-direction: column;
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta .conditionnement-item__dispo {
  font-size: 1.6rem;
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta .line .conditionnement-item__type {
  font-size: 1.8rem;
  color: var(--green-light);
  font-weight: 800;
}
@media screen and (max-width: 1280px) {
  .product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta .line .conditionnement-item__type {
    font-size: 1.5rem;
  }
}
.product-unique .bloc-conditionnements .conditionnements-list .conditionnement-item .conditionnement-item__meta .line .conditionnement-item__poids {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--light-grey);
}
.product-unique .conditionnement-btn a span.elementor-button-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-unique .conditionnement-btn span.elementor-button-text {
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .product-unique .conditionnement-btn span.elementor-button-text {
    font-size: 1.2rem;
  }
}
.product-unique .conditionnement-btn span.elementor-button-icon {
  font-size: 2rem;
}
@media screen and (max-width: 1280px) {
  .product-unique .conditionnement-btn span.elementor-button-icon {
    font-size: 1.5rem;
  }
}
.product-unique .conseils .conseils-text {
  position: relative;
}
.product-unique .conseils .conseils-text .elementor-widget-container {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.product-unique .conseils .conseils-text.is-collapsed .elementor-widget-container {
  max-height: 260px;
}
.product-unique .conseils .conseils-text.is-collapsed .elementor-widget-container::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(242, 242, 242));
  pointer-events: none;
}
.product-unique .conseils .conseils-text.is-expanded .elementor-widget-container {
  max-height: 9999px;
}
.product-unique .conseils .conseils-text.is-expanded .elementor-widget-container::after {
  content: none;
}

body.vc-gallery-modal-open {
  overflow: hidden;
}

.vc-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  font-family: inherit;
}
.vc-gallery-modal.is-open {
  display: block;
}
.vc-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.vc-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 960px;
  height: 100%;
  max-height: 90vh;
  margin: 5vh auto;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vc-gallery-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  background-color: transparent;
  border-radius: 0px;
}
.vc-gallery-modal__close i {
  color: var(--green-dark);
  transition: all 0.3s;
}
.vc-gallery-modal__close:hover {
  background-color: transparent;
}
.vc-gallery-modal__close:hover i {
  color: var(--green-light);
}

.vc-product-gallery-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
  border: 1px solid var(--green-light);
  background-color: var(--green-light);
  color: var(--white-base);
  font-weight: 700;
  font-size: 1.7rem;
  font-family: var(--ff-gtamerica);
  cursor: pointer;
  text-decoration: none;
}
.vc-product-gallery-popup__btn:hover, .vc-product-gallery-popup__btn:focus {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.vc-gallery-slider {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 1.2rem;
}
.vc-gallery-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-gallery-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.vc-gallery-slider__figure {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-gallery-slider__figure img {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  border-radius: 8px;
}
.vc-gallery-slider__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: var(--white-base);
  font-size: 1.4rem;
  font-family: var(--ff-base);
  font-style: normal;
}
.vc-gallery-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0px;
}
.vc-gallery-slider__nav:hover, .vc-gallery-slider__nav:focus {
  background-color: var(--green-light);
}
.vc-gallery-slider__nav--prev {
  left: 12px;
}
.vc-gallery-slider__nav--next {
  right: 12px;
}
.vc-gallery-slider__nav svg {
  width: 32px;
  height: 32px;
}
.vc-gallery-slider__counter {
  position: absolute;
  right: 1rem;
  bottom: 0.6rem;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-family: var(--ff-base);
}

@media (max-width: 768px) {
  .vc-gallery-modal__dialog {
    margin: 4vh 1rem;
    padding: 1rem;
  }
  .vc-gallery-slider__nav--prev {
    left: 4px;
  }
  .vc-gallery-slider__nav--next {
    right: 4px;
  }
}
/*
 * #############################################################################
 * @Filename: index.scss                                                       #
 * @Date: Thursday, February 22nd 2024, 11:11:43                               #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Thursday, February 22nd 2024, 11:12:20                      #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2024 Hiceo                                                   #
 * #############################################################################
*/
/*
 * #############################################################################
 * @Filename: accueil.scss                                                     #
 * @Date: Friday, August 5th 2022, 01:42:39                                    #
 * @Author: HiceoTristan                                                       #
 * @Author email: webmaster@hiceo.fr                                           #
 * @Last Modified: Wednesday, March 13th 2024, 09:28:23                        #
 * @Modified By: HiceoTristan                                                  #
 * @Copyright (c) 2023 Hiceo                                                   #
 * #############################################################################
*/
.hero-title {
  letter-spacing: -2px;
}
.hero-title h1 {
  font-weight: 600;
}
.hero-title span {
  font-family: var(--ff-gtamerica);
  font-size: calc(2.69107vw - 1.66846px);
  line-height: 1.1em;
  font-weight: 600;
}

.hero-top-btn-cs a span.elementor-button-text {
  font-size: calc(1.09171vw + 5.19914px);
}

.hero-paragraph p {
  font-size: calc(1.29171vw + 5.19914px);
}

#contact .contact-subtitle strong {
  font-family: var(--ff-base);
  font-size: 1.6rem;
  font-weight: 700;
}

.searchBanner {
  background-color: var(--pink);
}

body.elementor_library-maintenance .page-header {
  display: none;
}
