@charset "UTF-8";
/* ==========================================================================
   🎨 1. BASE & RESET
   ========================================================================== */
html,
:root {
  scroll-behavior: smooth !important;
}

a,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  display: block;
}

a,
a:hover,
a:focus,
a.active,
a.active:hover {
  text-decoration: none;
  outline: none;
}

p {
  font-weight: 400;
}

button,
button:hover,
button:focus {
  border: none;
  background-color: unset;
  color: unset;
}

.keyicon {
  transform: rotateY(180deg);
}

body {
  font-family: "Outfit", sans-serif;
}

#page-110 .entry-wrapper {
  max-width: 1320px;
  width: 95%;
  margin: auto;
  padding-block: 10rem;
}

/* ==========================================================================
   ⚙️ 2. CONFIGURATION & VARIABLES
   ========================================================================== */
/* ==========================================================================
   🧠 3. MIXINS
   ========================================================================== */
/* ==========================================================================
   🎚️ 4. VARIABLES CSS :ROOT (génération automatique)
   ========================================================================== */
:root {
  --primary-color: #96003f;
  --primary-color-light: #fef1f7;
  --secondary-color: #300014;
  --text-color-dark: #000;
  --white-color: #fff;
  --green-color: #28a745;
  --red-color: #dc3545;
  --pink-color: #ff589e;
  --grenat-color: #500d23;
  --shadowed-1: 0 0 20px 0 #33333373;
  --shadowed-2: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  --size-big-text: 16px;
  --size-text: 15px;
  --size-main: 24px;
  --size-2: 20px;
  --size-3: 18px;
  --size-4: 18px;
}

@media (min-width: 372px) {
  :root {
    --size-big-text: 16px;
    --size-text: 15px;
    --size-main: 28px;
    --size-2: 22px;
    --size-3: 20px;
    --size-4: 20px;
  }
}
@media (min-width: 768px) {
  :root {
    --size-big-text: 18px;
    --size-text: 16px;
    --size-main: 36px;
    --size-2: 28px;
    --size-3: 24px;
    --size-4: 20px;
  }
}
@media (min-width: 1024px) {
  :root {
    --size-big-text: 20px;
    --size-main: 42px;
    --size-2: 32px;
    --size-3: 26px;
    --size-4: 22px;
  }
}
@media (min-width: 1440px) {
  :root {
    --size-big-text: 22px;
    --size-text: 18px;
    --size-main: 50px;
    --size-2: 40px;
    --size-3: 32px;
    --size-4: 25px;
  }
}
/* ==========================================================================
   🧩 5. CLASSES UTILITAIRES (mini-framework)
   ========================================================================== */
.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

.column {
  flex-direction: column !important;
}

.row {
  flex-direction: row !important;
}

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

.no-wrap {
  flex-wrap: nowrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.grid {
  display: grid !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.hidden {
  display: none !important;
}

.order-2 {
  order: 2 !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.self-end {
  align-self: end !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-0\.5 {
  gap: 0.5rem !important;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-4 {
  gap: 4rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.w-fit {
  width: fit-content !important;
}

.w-full {
  width: 100% !important;
}

.w-3\/4 {
  width: 75% !important;
}

.w-3\/5 {
  width: 60% !important;
}

.w-1\/2 {
  width: 50% !important;
}

.w-1\/3 {
  width: 33.3333% !important;
}

.translate-y-1 {
  transform: translateY(1rem) !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-transform-none {
  text-transform: none !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.white {
  color: white !important;
}

.black {
  color: black !important;
}

.primary-color {
  color: var(--primary-color) !important;
}

.pink-color {
  color: var(--pink-color) !important;
}

.grenat-color {
  color: var(--grenat-color) !important;
}

.green-bg {
  background-color: var(--green-color) !important;
}

.red-bg {
  background-color: var(--red-color) !important;
}

.primary-bg {
  background-color: var(--primary-color) !important;
}

.font-bold {
  font-weight: 500 !important;
}

.italic {
  font-style: italic !important;
}

.whitespace-no-wrap {
  white-space: nowrap !important;
}

.z-10 {
  z-index: 10 !important;
}

.rounded-5 {
  border-radius: 5px !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.shadowed-1 {
  box-shadow: var(--shadowed-1) !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

@media (min-width: 340px) {
  .xs-block {
    display: block !important;
  }
  .xs-flex {
    display: flex !important;
  }
  .xs-column {
    flex-direction: column !important;
  }
  .xs-row {
    flex-direction: row !important;
  }
  .xs-wrap {
    flex-wrap: wrap !important;
  }
  .xs-no-wrap {
    flex-wrap: nowrap !important;
  }
  .xs-flex-1 {
    flex: 1 !important;
  }
  .xs-grid {
    display: grid !important;
  }
  .xs-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xs-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xs-hidden {
    display: none !important;
  }
  .xs-order-2 {
    order: 2 !important;
  }
  .xs-items-center {
    align-items: center !important;
  }
  .xs-justify-center {
    justify-content: center !important;
  }
  .xs-justify-between {
    justify-content: space-between !important;
  }
  .xs-justify-around {
    justify-content: space-around !important;
  }
  .xs-self-end {
    align-self: end !important;
  }
  .xs-gap-0 {
    gap: 0 !important;
  }
  .xs-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .xs-gap-1 {
    gap: 1rem !important;
  }
  .xs-gap-2 {
    gap: 2rem !important;
  }
  .xs-gap-3 {
    gap: 3rem !important;
  }
  .xs-gap-4 {
    gap: 4rem !important;
  }
  .xs-gap-6 {
    gap: 6rem !important;
  }
  .xs-mt-1 {
    margin-top: 1rem !important;
  }
  .xs-mb-0 {
    margin-bottom: 0 !important;
  }
  .xs-mb-1 {
    margin-bottom: 1rem !important;
  }
  .xs-mb-2 {
    margin-bottom: 2rem !important;
  }
  .xs-mx-auto {
    margin-inline: auto !important;
  }
  .xs-w-fit {
    width: fit-content !important;
  }
  .xs-w-full {
    width: 100% !important;
  }
  .xs-w-3\/4 {
    width: 75% !important;
  }
  .xs-w-3\/5 {
    width: 60% !important;
  }
  .xs-w-1\/2 {
    width: 50% !important;
  }
  .xs-w-1\/3 {
    width: 33.3333% !important;
  }
  .xs-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .xs-text-center {
    text-align: center !important;
  }
  .xs-text-right {
    text-align: right !important;
  }
  .xs-text-transform-none {
    text-transform: none !important;
  }
  .xs-uppercase {
    text-transform: uppercase !important;
  }
  .xs-white {
    color: white !important;
  }
  .xs-black {
    color: black !important;
  }
  .xs-primary-color {
    color: var(--primary-color) !important;
  }
  .xs-pink-color {
    color: var(--pink-color) !important;
  }
  .xs-grenat-color {
    color: var(--grenat-color) !important;
  }
  .xs-green-bg {
    background-color: var(--green-color) !important;
  }
  .xs-red-bg {
    background-color: var(--red-color) !important;
  }
  .xs-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .xs-font-bold {
    font-weight: 500 !important;
  }
  .xs-italic {
    font-style: italic !important;
  }
  .xs-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .xs-z-10 {
    z-index: 10 !important;
  }
  .xs-rounded-5 {
    border-radius: 5px !important;
  }
  .xs-rounded-20 {
    border-radius: 20px !important;
  }
  .xs-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .xs-cursor-pointer {
    cursor: pointer !important;
  }
  .xs-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 372px) {
  .sm-block {
    display: block !important;
  }
  .sm-flex {
    display: flex !important;
  }
  .sm-column {
    flex-direction: column !important;
  }
  .sm-row {
    flex-direction: row !important;
  }
  .sm-wrap {
    flex-wrap: wrap !important;
  }
  .sm-no-wrap {
    flex-wrap: nowrap !important;
  }
  .sm-flex-1 {
    flex: 1 !important;
  }
  .sm-grid {
    display: grid !important;
  }
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .sm-hidden {
    display: none !important;
  }
  .sm-order-2 {
    order: 2 !important;
  }
  .sm-items-center {
    align-items: center !important;
  }
  .sm-justify-center {
    justify-content: center !important;
  }
  .sm-justify-between {
    justify-content: space-between !important;
  }
  .sm-justify-around {
    justify-content: space-around !important;
  }
  .sm-self-end {
    align-self: end !important;
  }
  .sm-gap-0 {
    gap: 0 !important;
  }
  .sm-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .sm-gap-1 {
    gap: 1rem !important;
  }
  .sm-gap-2 {
    gap: 2rem !important;
  }
  .sm-gap-3 {
    gap: 3rem !important;
  }
  .sm-gap-4 {
    gap: 4rem !important;
  }
  .sm-gap-6 {
    gap: 6rem !important;
  }
  .sm-mt-1 {
    margin-top: 1rem !important;
  }
  .sm-mb-0 {
    margin-bottom: 0 !important;
  }
  .sm-mb-1 {
    margin-bottom: 1rem !important;
  }
  .sm-mb-2 {
    margin-bottom: 2rem !important;
  }
  .sm-mx-auto {
    margin-inline: auto !important;
  }
  .sm-w-fit {
    width: fit-content !important;
  }
  .sm-w-full {
    width: 100% !important;
  }
  .sm-w-3\/4 {
    width: 75% !important;
  }
  .sm-w-3\/5 {
    width: 60% !important;
  }
  .sm-w-1\/2 {
    width: 50% !important;
  }
  .sm-w-1\/3 {
    width: 33.3333% !important;
  }
  .sm-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .sm-text-center {
    text-align: center !important;
  }
  .sm-text-right {
    text-align: right !important;
  }
  .sm-text-transform-none {
    text-transform: none !important;
  }
  .sm-uppercase {
    text-transform: uppercase !important;
  }
  .sm-white {
    color: white !important;
  }
  .sm-black {
    color: black !important;
  }
  .sm-primary-color {
    color: var(--primary-color) !important;
  }
  .sm-pink-color {
    color: var(--pink-color) !important;
  }
  .sm-grenat-color {
    color: var(--grenat-color) !important;
  }
  .sm-green-bg {
    background-color: var(--green-color) !important;
  }
  .sm-red-bg {
    background-color: var(--red-color) !important;
  }
  .sm-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .sm-font-bold {
    font-weight: 500 !important;
  }
  .sm-italic {
    font-style: italic !important;
  }
  .sm-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .sm-z-10 {
    z-index: 10 !important;
  }
  .sm-rounded-5 {
    border-radius: 5px !important;
  }
  .sm-rounded-20 {
    border-radius: 20px !important;
  }
  .sm-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .sm-cursor-pointer {
    cursor: pointer !important;
  }
  .sm-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .md-block {
    display: block !important;
  }
  .md-flex {
    display: flex !important;
  }
  .md-column {
    flex-direction: column !important;
  }
  .md-row {
    flex-direction: row !important;
  }
  .md-wrap {
    flex-wrap: wrap !important;
  }
  .md-no-wrap {
    flex-wrap: nowrap !important;
  }
  .md-flex-1 {
    flex: 1 !important;
  }
  .md-grid {
    display: grid !important;
  }
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .md-hidden {
    display: none !important;
  }
  .md-order-2 {
    order: 2 !important;
  }
  .md-items-center {
    align-items: center !important;
  }
  .md-justify-center {
    justify-content: center !important;
  }
  .md-justify-between {
    justify-content: space-between !important;
  }
  .md-justify-around {
    justify-content: space-around !important;
  }
  .md-self-end {
    align-self: end !important;
  }
  .md-gap-0 {
    gap: 0 !important;
  }
  .md-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .md-gap-1 {
    gap: 1rem !important;
  }
  .md-gap-2 {
    gap: 2rem !important;
  }
  .md-gap-3 {
    gap: 3rem !important;
  }
  .md-gap-4 {
    gap: 4rem !important;
  }
  .md-gap-6 {
    gap: 6rem !important;
  }
  .md-mt-1 {
    margin-top: 1rem !important;
  }
  .md-mb-0 {
    margin-bottom: 0 !important;
  }
  .md-mb-1 {
    margin-bottom: 1rem !important;
  }
  .md-mb-2 {
    margin-bottom: 2rem !important;
  }
  .md-mx-auto {
    margin-inline: auto !important;
  }
  .md-w-fit {
    width: fit-content !important;
  }
  .md-w-full {
    width: 100% !important;
  }
  .md-w-3\/4 {
    width: 75% !important;
  }
  .md-w-3\/5 {
    width: 60% !important;
  }
  .md-w-1\/2 {
    width: 50% !important;
  }
  .md-w-1\/3 {
    width: 33.3333% !important;
  }
  .md-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .md-text-center {
    text-align: center !important;
  }
  .md-text-right {
    text-align: right !important;
  }
  .md-text-transform-none {
    text-transform: none !important;
  }
  .md-uppercase {
    text-transform: uppercase !important;
  }
  .md-white {
    color: white !important;
  }
  .md-black {
    color: black !important;
  }
  .md-primary-color {
    color: var(--primary-color) !important;
  }
  .md-pink-color {
    color: var(--pink-color) !important;
  }
  .md-grenat-color {
    color: var(--grenat-color) !important;
  }
  .md-green-bg {
    background-color: var(--green-color) !important;
  }
  .md-red-bg {
    background-color: var(--red-color) !important;
  }
  .md-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .md-font-bold {
    font-weight: 500 !important;
  }
  .md-italic {
    font-style: italic !important;
  }
  .md-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .md-z-10 {
    z-index: 10 !important;
  }
  .md-rounded-5 {
    border-radius: 5px !important;
  }
  .md-rounded-20 {
    border-radius: 20px !important;
  }
  .md-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .md-cursor-pointer {
    cursor: pointer !important;
  }
  .md-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 1024px) {
  .lg-block {
    display: block !important;
  }
  .lg-flex {
    display: flex !important;
  }
  .lg-column {
    flex-direction: column !important;
  }
  .lg-row {
    flex-direction: row !important;
  }
  .lg-wrap {
    flex-wrap: wrap !important;
  }
  .lg-no-wrap {
    flex-wrap: nowrap !important;
  }
  .lg-flex-1 {
    flex: 1 !important;
  }
  .lg-grid {
    display: grid !important;
  }
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .lg-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg-hidden {
    display: none !important;
  }
  .lg-order-2 {
    order: 2 !important;
  }
  .lg-items-center {
    align-items: center !important;
  }
  .lg-justify-center {
    justify-content: center !important;
  }
  .lg-justify-between {
    justify-content: space-between !important;
  }
  .lg-justify-around {
    justify-content: space-around !important;
  }
  .lg-self-end {
    align-self: end !important;
  }
  .lg-gap-0 {
    gap: 0 !important;
  }
  .lg-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .lg-gap-1 {
    gap: 1rem !important;
  }
  .lg-gap-2 {
    gap: 2rem !important;
  }
  .lg-gap-3 {
    gap: 3rem !important;
  }
  .lg-gap-4 {
    gap: 4rem !important;
  }
  .lg-gap-6 {
    gap: 6rem !important;
  }
  .lg-mt-1 {
    margin-top: 1rem !important;
  }
  .lg-mb-0 {
    margin-bottom: 0 !important;
  }
  .lg-mb-1 {
    margin-bottom: 1rem !important;
  }
  .lg-mb-2 {
    margin-bottom: 2rem !important;
  }
  .lg-mx-auto {
    margin-inline: auto !important;
  }
  .lg-w-fit {
    width: fit-content !important;
  }
  .lg-w-full {
    width: 100% !important;
  }
  .lg-w-3\/4 {
    width: 75% !important;
  }
  .lg-w-3\/5 {
    width: 60% !important;
  }
  .lg-w-1\/2 {
    width: 50% !important;
  }
  .lg-w-1\/3 {
    width: 33.3333% !important;
  }
  .lg-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .lg-text-center {
    text-align: center !important;
  }
  .lg-text-right {
    text-align: right !important;
  }
  .lg-text-transform-none {
    text-transform: none !important;
  }
  .lg-uppercase {
    text-transform: uppercase !important;
  }
  .lg-white {
    color: white !important;
  }
  .lg-black {
    color: black !important;
  }
  .lg-primary-color {
    color: var(--primary-color) !important;
  }
  .lg-pink-color {
    color: var(--pink-color) !important;
  }
  .lg-grenat-color {
    color: var(--grenat-color) !important;
  }
  .lg-green-bg {
    background-color: var(--green-color) !important;
  }
  .lg-red-bg {
    background-color: var(--red-color) !important;
  }
  .lg-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .lg-font-bold {
    font-weight: 500 !important;
  }
  .lg-italic {
    font-style: italic !important;
  }
  .lg-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .lg-z-10 {
    z-index: 10 !important;
  }
  .lg-rounded-5 {
    border-radius: 5px !important;
  }
  .lg-rounded-20 {
    border-radius: 20px !important;
  }
  .lg-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .lg-cursor-pointer {
    cursor: pointer !important;
  }
  .lg-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 1440px) {
  .xl-block {
    display: block !important;
  }
  .xl-flex {
    display: flex !important;
  }
  .xl-column {
    flex-direction: column !important;
  }
  .xl-row {
    flex-direction: row !important;
  }
  .xl-wrap {
    flex-wrap: wrap !important;
  }
  .xl-no-wrap {
    flex-wrap: nowrap !important;
  }
  .xl-flex-1 {
    flex: 1 !important;
  }
  .xl-grid {
    display: grid !important;
  }
  .xl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xl-hidden {
    display: none !important;
  }
  .xl-order-2 {
    order: 2 !important;
  }
  .xl-items-center {
    align-items: center !important;
  }
  .xl-justify-center {
    justify-content: center !important;
  }
  .xl-justify-between {
    justify-content: space-between !important;
  }
  .xl-justify-around {
    justify-content: space-around !important;
  }
  .xl-self-end {
    align-self: end !important;
  }
  .xl-gap-0 {
    gap: 0 !important;
  }
  .xl-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .xl-gap-1 {
    gap: 1rem !important;
  }
  .xl-gap-2 {
    gap: 2rem !important;
  }
  .xl-gap-3 {
    gap: 3rem !important;
  }
  .xl-gap-4 {
    gap: 4rem !important;
  }
  .xl-gap-6 {
    gap: 6rem !important;
  }
  .xl-mt-1 {
    margin-top: 1rem !important;
  }
  .xl-mb-0 {
    margin-bottom: 0 !important;
  }
  .xl-mb-1 {
    margin-bottom: 1rem !important;
  }
  .xl-mb-2 {
    margin-bottom: 2rem !important;
  }
  .xl-mx-auto {
    margin-inline: auto !important;
  }
  .xl-w-fit {
    width: fit-content !important;
  }
  .xl-w-full {
    width: 100% !important;
  }
  .xl-w-3\/4 {
    width: 75% !important;
  }
  .xl-w-3\/5 {
    width: 60% !important;
  }
  .xl-w-1\/2 {
    width: 50% !important;
  }
  .xl-w-1\/3 {
    width: 33.3333% !important;
  }
  .xl-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .xl-text-center {
    text-align: center !important;
  }
  .xl-text-right {
    text-align: right !important;
  }
  .xl-text-transform-none {
    text-transform: none !important;
  }
  .xl-uppercase {
    text-transform: uppercase !important;
  }
  .xl-white {
    color: white !important;
  }
  .xl-black {
    color: black !important;
  }
  .xl-primary-color {
    color: var(--primary-color) !important;
  }
  .xl-pink-color {
    color: var(--pink-color) !important;
  }
  .xl-grenat-color {
    color: var(--grenat-color) !important;
  }
  .xl-green-bg {
    background-color: var(--green-color) !important;
  }
  .xl-red-bg {
    background-color: var(--red-color) !important;
  }
  .xl-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .xl-font-bold {
    font-weight: 500 !important;
  }
  .xl-italic {
    font-style: italic !important;
  }
  .xl-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .xl-z-10 {
    z-index: 10 !important;
  }
  .xl-rounded-5 {
    border-radius: 5px !important;
  }
  .xl-rounded-20 {
    border-radius: 20px !important;
  }
  .xl-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .xl-cursor-pointer {
    cursor: pointer !important;
  }
  .xl-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 1700px) {
  .xxl-block {
    display: block !important;
  }
  .xxl-flex {
    display: flex !important;
  }
  .xxl-column {
    flex-direction: column !important;
  }
  .xxl-row {
    flex-direction: row !important;
  }
  .xxl-wrap {
    flex-wrap: wrap !important;
  }
  .xxl-no-wrap {
    flex-wrap: nowrap !important;
  }
  .xxl-flex-1 {
    flex: 1 !important;
  }
  .xxl-grid {
    display: grid !important;
  }
  .xxl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xxl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xxl-hidden {
    display: none !important;
  }
  .xxl-order-2 {
    order: 2 !important;
  }
  .xxl-items-center {
    align-items: center !important;
  }
  .xxl-justify-center {
    justify-content: center !important;
  }
  .xxl-justify-between {
    justify-content: space-between !important;
  }
  .xxl-justify-around {
    justify-content: space-around !important;
  }
  .xxl-self-end {
    align-self: end !important;
  }
  .xxl-gap-0 {
    gap: 0 !important;
  }
  .xxl-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .xxl-gap-1 {
    gap: 1rem !important;
  }
  .xxl-gap-2 {
    gap: 2rem !important;
  }
  .xxl-gap-3 {
    gap: 3rem !important;
  }
  .xxl-gap-4 {
    gap: 4rem !important;
  }
  .xxl-gap-6 {
    gap: 6rem !important;
  }
  .xxl-mt-1 {
    margin-top: 1rem !important;
  }
  .xxl-mb-0 {
    margin-bottom: 0 !important;
  }
  .xxl-mb-1 {
    margin-bottom: 1rem !important;
  }
  .xxl-mb-2 {
    margin-bottom: 2rem !important;
  }
  .xxl-mx-auto {
    margin-inline: auto !important;
  }
  .xxl-w-fit {
    width: fit-content !important;
  }
  .xxl-w-full {
    width: 100% !important;
  }
  .xxl-w-3\/4 {
    width: 75% !important;
  }
  .xxl-w-3\/5 {
    width: 60% !important;
  }
  .xxl-w-1\/2 {
    width: 50% !important;
  }
  .xxl-w-1\/3 {
    width: 33.3333% !important;
  }
  .xxl-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .xxl-text-center {
    text-align: center !important;
  }
  .xxl-text-right {
    text-align: right !important;
  }
  .xxl-text-transform-none {
    text-transform: none !important;
  }
  .xxl-uppercase {
    text-transform: uppercase !important;
  }
  .xxl-white {
    color: white !important;
  }
  .xxl-black {
    color: black !important;
  }
  .xxl-primary-color {
    color: var(--primary-color) !important;
  }
  .xxl-pink-color {
    color: var(--pink-color) !important;
  }
  .xxl-grenat-color {
    color: var(--grenat-color) !important;
  }
  .xxl-green-bg {
    background-color: var(--green-color) !important;
  }
  .xxl-red-bg {
    background-color: var(--red-color) !important;
  }
  .xxl-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .xxl-font-bold {
    font-weight: 500 !important;
  }
  .xxl-italic {
    font-style: italic !important;
  }
  .xxl-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .xxl-z-10 {
    z-index: 10 !important;
  }
  .xxl-rounded-5 {
    border-radius: 5px !important;
  }
  .xxl-rounded-20 {
    border-radius: 20px !important;
  }
  .xxl-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .xxl-cursor-pointer {
    cursor: pointer !important;
  }
  .xxl-pointer-events-none {
    pointer-events: none !important;
  }
}
@media (min-width: 2000px) {
  .xxxl-block {
    display: block !important;
  }
  .xxxl-flex {
    display: flex !important;
  }
  .xxxl-column {
    flex-direction: column !important;
  }
  .xxxl-row {
    flex-direction: row !important;
  }
  .xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .xxxl-no-wrap {
    flex-wrap: nowrap !important;
  }
  .xxxl-flex-1 {
    flex: 1 !important;
  }
  .xxxl-grid {
    display: grid !important;
  }
  .xxxl-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .xxxl-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .xxxl-hidden {
    display: none !important;
  }
  .xxxl-order-2 {
    order: 2 !important;
  }
  .xxxl-items-center {
    align-items: center !important;
  }
  .xxxl-justify-center {
    justify-content: center !important;
  }
  .xxxl-justify-between {
    justify-content: space-between !important;
  }
  .xxxl-justify-around {
    justify-content: space-around !important;
  }
  .xxxl-self-end {
    align-self: end !important;
  }
  .xxxl-gap-0 {
    gap: 0 !important;
  }
  .xxxl-gap-0\.5 {
    gap: 0.5rem !important;
  }
  .xxxl-gap-1 {
    gap: 1rem !important;
  }
  .xxxl-gap-2 {
    gap: 2rem !important;
  }
  .xxxl-gap-3 {
    gap: 3rem !important;
  }
  .xxxl-gap-4 {
    gap: 4rem !important;
  }
  .xxxl-gap-6 {
    gap: 6rem !important;
  }
  .xxxl-mt-1 {
    margin-top: 1rem !important;
  }
  .xxxl-mb-0 {
    margin-bottom: 0 !important;
  }
  .xxxl-mb-1 {
    margin-bottom: 1rem !important;
  }
  .xxxl-mb-2 {
    margin-bottom: 2rem !important;
  }
  .xxxl-mx-auto {
    margin-inline: auto !important;
  }
  .xxxl-w-fit {
    width: fit-content !important;
  }
  .xxxl-w-full {
    width: 100% !important;
  }
  .xxxl-w-3\/4 {
    width: 75% !important;
  }
  .xxxl-w-3\/5 {
    width: 60% !important;
  }
  .xxxl-w-1\/2 {
    width: 50% !important;
  }
  .xxxl-w-1\/3 {
    width: 33.3333% !important;
  }
  .xxxl-translate-y-1 {
    transform: translateY(1rem) !important;
  }
  .xxxl-text-center {
    text-align: center !important;
  }
  .xxxl-text-right {
    text-align: right !important;
  }
  .xxxl-text-transform-none {
    text-transform: none !important;
  }
  .xxxl-uppercase {
    text-transform: uppercase !important;
  }
  .xxxl-white {
    color: white !important;
  }
  .xxxl-black {
    color: black !important;
  }
  .xxxl-primary-color {
    color: var(--primary-color) !important;
  }
  .xxxl-pink-color {
    color: var(--pink-color) !important;
  }
  .xxxl-grenat-color {
    color: var(--grenat-color) !important;
  }
  .xxxl-green-bg {
    background-color: var(--green-color) !important;
  }
  .xxxl-red-bg {
    background-color: var(--red-color) !important;
  }
  .xxxl-primary-bg {
    background-color: var(--primary-color) !important;
  }
  .xxxl-font-bold {
    font-weight: 500 !important;
  }
  .xxxl-italic {
    font-style: italic !important;
  }
  .xxxl-whitespace-no-wrap {
    white-space: nowrap !important;
  }
  .xxxl-z-10 {
    z-index: 10 !important;
  }
  .xxxl-rounded-5 {
    border-radius: 5px !important;
  }
  .xxxl-rounded-20 {
    border-radius: 20px !important;
  }
  .xxxl-shadowed-1 {
    box-shadow: var(--shadowed-1) !important;
  }
  .xxxl-cursor-pointer {
    cursor: pointer !important;
  }
  .xxxl-pointer-events-none {
    pointer-events: none !important;
  }
}
.space-y > * + * {
  margin-top: 0.5rem !important;
}

.space-y-1 > * + * {
  margin-top: 1rem !important;
}

.space-y-2 > * + * {
  margin-top: 2rem !important;
}

.space-y-4 > * + * {
  margin-top: 4rem !important;
}

@media (min-width: 340px) {
  .xs-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .xs-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .xs-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .xs-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 372px) {
  .sm-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .sm-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .sm-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .sm-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 768px) {
  .md-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .md-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .md-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .md-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .lg-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .lg-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .lg-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .lg-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 1440px) {
  .xl-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .xl-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .xl-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .xl-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 1700px) {
  .xxl-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .xxl-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .xxl-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .xxl-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
@media (min-width: 2000px) {
  .xxxl-space-y > * + * {
    margin-top: 0.5rem !important;
  }
  .xxxl-space-y-1 > * + * {
    margin-top: 1rem !important;
  }
  .xxxl-space-y-2 > * + * {
    margin-top: 2rem !important;
  }
  .xxxl-space-y-4 > * + * {
    margin-top: 4rem !important;
  }
}
/* General classes */
.owl-item {
  padding: 0;
}
@media (min-width: 768px) {
  .owl-item {
    padding: 0 20px;
  }
}

.owl-buttons > div {
  background: white !important;
  opacity: 1 !important;
  box-shadow: var(--shadowed-2);
}
.owl-buttons > div:hover {
  background: var(--primary-color) !important;
}
.owl-buttons > div:hover i {
  color: white !important;
}
.owl-buttons > div i {
  color: var(--primary-color) !important;
}

.gf_progressbar_percentage {
  background-color: var(--primary-color) !important;
}

.gfield_label {
  color: black;
}

.gform_footer input,
.gform_page_footer input {
  margin-bottom: 0;
  background-color: var(--primary-color);
  border: none;
}
.gform_footer input:hover,
.gform_page_footer input:hover {
  margin-bottom: 0;
  background-color: var(--primary-color);
  border: none;
}

.gform_wrapper.gravity-theme input,
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-size: var(--size-text) !important;
  padding: 8px !important;
  border-radius: 10px !important;
}

.designForm {
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #ffdbea;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: auto;
}

.main-title {
  font-size: var(--size-main);
  margin-bottom: 1rem;
  font-weight: 600;
}

.title-2 {
  font-size: var(--size-2);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .title-2 {
    margin-bottom: 2rem;
  }
}

.title-3 {
  font-size: var(--size-3);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.title-4 {
  font-size: var(--size-4);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.size-big-text {
  font-size: var(--size-big-text);
}

.size-text {
  font-size: var(--size-text);
}

.size-3 {
  font-size: var(--size-3);
}

.size-4 {
  font-size: var(--size-4);
}

.linear-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.linear-gradient-light {
  background: linear-gradient(90deg, #ffdbea, white);
}

.generalPadding {
  padding-block: 2rem;
  padding-inline: 1rem;
}
.generalPadding.bigger {
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .generalPadding.bigger {
    padding-block: 4rem;
  }
}
@media (min-width: 1440px) {
  .generalPadding.bigger {
    padding-block: 6rem;
  }
}
@media (min-width: 768px) {
  .generalPadding {
    padding-block: 3rem;
    padding-inline: 2rem;
  }
}
@media (min-width: 1440px) {
  .generalPadding {
    padding-block: 4rem;
    padding-inline: 0;
  }
}

.calendly-height {
  height: 400px;
}
@media (min-width: 1024px) {
  .calendly-height {
    height: 700px;
  }
}

.calendly-inline-widget iframe div[data-id=layout-container] > div:first-child {
  display: none !important;
}

/* Heros */
.hero {
  position: relative;
  height: auto;
}
@media (min-width: 768px) {
  .hero {
    height: 100vh;
  }
}
@media (min-width: 2000px) {
  .hero {
    max-height: 700px;
  }
}
.hero .container {
  position: relative;
  padding-inline: 1rem;
  z-index: 2;
  padding-block: 5rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero .container {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 54%;
    left: 50%;
    padding-inline: 2rem;
    padding-block: 0;
  }
}
@media (min-width: 1440px) {
  .hero .container {
    padding-inline: 0;
  }
}
.hero .bottom-fixed {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  aspect-ratio: 1;
  border-top-left-radius: 95%;
  object-fit: cover;
  z-index: 20;
}
@media (min-width: 1440px) {
  .hero .bottom-fixed {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .hero.hero-home {
    height: 80vh;
  }
}
@media (min-width: 1024px) {
  .hero.hero-home .container {
    width: auto;
  }
}
.hero.hero-short {
  height: auto;
}
.hero.hero-short .container {
  position: initial;
  transform: unset;
}
.hero.hero-short .container h1 {
  text-align: center;
}
@media (min-width: 768px) {
  .hero.hero-short .container {
    padding-block: 8rem;
  }
}
.hero.hero-location .container {
  width: 100%;
}
@media (min-width: 768px) {
  .hero.hero-location .container {
    width: 900px;
  }
}
.hero.tarifs .container {
  padding-bottom: calc(4rem + 60px);
}
@media (min-width: 768px) {
  .hero.tarifs .container {
    padding-bottom: unset;
  }
}

.hero-design .overlay-background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-design .overlay-veil {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-design .container {
  height: auto;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 10;
  padding-inline: 0;
  padding-top: 3rem;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero-design .container {
    width: 95%;
    border-radius: 20px;
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .hero-design .container {
    width: 100%;
  }
}
.hero-design .container .subcontainer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  z-index: 20;
}
@media (min-width: 768px) {
  .hero-design .container .subcontainer {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-design .container .subcontainer {
    padding: 3rem;
  }
}
@media (min-width: 1700px) {
  .hero-design .container .subcontainer {
    padding: 6rem;
  }
}
.hero-design .container .bottom-fixed {
  width: 30%;
}
@media (min-width: 1440px) {
  .hero-design .container .bottom-fixed {
    width: 30%;
  }
}

.hero .overlay-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.whychose-picture {
  border-radius: 12px;
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .whychose-picture {
    max-height: 500px;
  }
}

.design-picture {
  border-radius: 12px;
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

/*-------------------------------------------------------------- 
# Header & Footer
--------------------------------------------------------------*/
.headerNav {
  z-index: 100;
  width: 100%;
  transition: all 0.9s;
  align-items: center;
  text-align: center;
  padding: 10px;
  position: fixed;
}
.headerNav .btn {
  font-size: 13px;
  padding: 8px;
}
@media (min-width: 768px) {
  .headerNav .btn {
    padding: 10px 20px;
    font-size: var(--size-big-text);
  }
}

.footerNav a,
.footerNav p,
.footerNav h2,
.footerNav i {
  color: white;
}

.footerNav i {
  font-size: var(--size-3);
}

.footerNav .separator {
  width: 100%;
  height: 1px;
  background: var(--white-color);
  margin-block: 5rem 2rem;
}

.btn {
  width: fit-content;
  border-radius: 30px;
}
.btn i {
  margin-top: 0.2rem;
}
.btn.transparent {
  background: rgba(255, 255, 255, 0.0823529412);
  border-radius: 5px;
  border: none;
  color: white;
}

.btncom1 {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--size-big-text);
  text-transform: capitalize;
  box-shadow: 0 3px 6px 0px var(--primary-color) 47;
  border: 1px solid var(--primary-color);
}
.btncom1:hover, .btncom1:focus {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btncom2 {
  background: var(--white-color);
  color: var(--primary-color);
  font-size: var(--size-big-text);
  text-transform: capitalize;
  border: 1px solid var(--primary-color);
  box-shadow: 0 3px 6px 0px var(--primary-color) 47;
}
.btncom2:hover, .btncom2:focus {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
}

.sidenav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 500;
  top: 0;
  background: var(--white-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding: 2rem;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2117647059);
  transform: translateX(-100%);
}
.sidenav .logo-nav {
  max-width: 200px;
}
@media (min-width: 768px) {
  .sidenav {
    width: 400px;
    transform: translateX(-400px);
  }
}
.sidenav.open {
  transform: translateX(0);
}
.sidenav .closebtn {
  position: absolute;
  top: 2rem;
  right: 1rem;
}
.sidenav .lower-part {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sidenav .lower-part i {
  font-size: var(--size-3);
  color: var(--primary-color);
}
.sidenav nav {
  margin-top: 2rem;
}
.sidenav nav li a {
  font-size: var(--size-big-text);
  font-weight: bold;
  color: var(--primary-color);
  padding-block: 1rem;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}
.sidenav nav li a.no-border {
  border-bottom: none;
}
.sidenav nav li:last-child a {
  padding: 0;
}

/* Chiffres */
.countersbox {
  text-align: center;
}
.countersbox p:first-child {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .countersbox p:first-child {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .countersbox p:first-child {
    font-size: 52px;
  }
}
@media (min-width: 1440px) {
  .countersbox p:first-child {
    font-size: 64px;
  }
}
.countersbox p:last-child {
  font-size: 11px;
}
@media (min-width: 768px) {
  .countersbox p:last-child {
    font-size: var(--size-big-text);
  }
}

/* Contact Form */
.container.contact {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(51, 51, 51, 0.4509803922);
}

.container.contact > div:first-child {
  padding: 1.5rem;
}
@media (min-width: 372px) {
  .container.contact > div:first-child {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .container.contact > div:first-child {
    padding: 4rem;
  }
}

.container.contact i {
  background: white;
  color: var(--primary-color);
  font-size: var(--size-big-text);
  padding: 0.7rem;
  border-radius: 100%;
}

/* Dashboard */
.dashboard {
  position: relative;
  margin-block: 2rem;
}
@media (min-width: 768px) {
  .dashboard {
    margin-block: 3rem;
  }
}
@media (min-width: 1440px) {
  .dashboard {
    margin-block: 4rem;
  }
}
.dashboard .wave-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.dashboard ul > li {
  font-weight: 300;
}
.dashboard img {
  scale: 1.5;
}

/* Boxs */
.overflowingLabels.generalPadding {
  padding-inline: 0;
}
.overflowingLabels .container {
  max-width: 100%;
  margin: 0;
}
.overflowingLabels .label-carousel {
  cursor: pointer;
}
.overflowingLabels .label-carousel .label-box h3 {
  color: var(--primary-color);
}
.overflowingLabels .label-carousel .label-box i {
  background: var(--pink-color);
}

.label-box {
  flex: 1;
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 1.5rem;
}
.label-box > * + * {
  margin-top: 1rem;
}
.label-box h3 {
  font-size: var(--size-4);
  margin-bottom: 1rem;
  color: black;
  font-weight: 500;
  line-height: 1.23;
}
.label-box i {
  color: white;
  font-size: var(--size-big-text);
  border-radius: 100%;
  padding: 0.8rem;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .label-box i {
    width: 55px;
    height: 55px;
  }
}
.label-box.colored {
  background: var(--primary-color);
  border: unset;
}
.label-box.colored.light {
  background: var(--primary-color-light);
}
.label-box.colored.light h3 {
  color: black;
}
.label-box.colored.light i {
  color: white;
  background: var(--primary-color);
}
.label-box.colored p,
.label-box.colored h3 {
  color: white;
}
.label-box.colored i {
  color: var(--primary-color);
  background: white;
}

.label-carousel .owl-item,
.garantie-carousel .owl-item {
  padding-inline: 0.5rem;
}
@media (min-width: 768px) {
  .label-carousel .owl-item,
  .garantie-carousel .owl-item {
    padding-inline: 1rem;
  }
}
.label-carousel .label-box,
.garantie-carousel .label-box {
  height: 275px;
}
@media (min-width: 340px) {
  .label-carousel .label-box,
  .garantie-carousel .label-box {
    height: 260px;
  }
}
@media (min-width: 372px) {
  .label-carousel .label-box,
  .garantie-carousel .label-box {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .label-carousel .label-box,
  .garantie-carousel .label-box {
    height: 300px;
  }
}
@media (min-width: 1440px) {
  .label-carousel .label-box,
  .garantie-carousel .label-box {
    height: 320px;
  }
}
@media (min-width: 1700px) {
  .label-carousel .label-box,
  .garantie-carousel .label-box {
    height: 300px;
  }
}

.savoir-box {
  flex: 1;
  text-align: center;
  background: var(--primary-color-light);
  border-radius: 20px;
  padding: 1rem;
  height: 210px;
  margin-bottom: 1rem;
}
@media (min-width: 372px) {
  .savoir-box {
    height: 190px;
  }
}
@media (min-width: 768px) {
  .savoir-box {
    height: auto;
    margin-bottom: 0;
    padding: 1.5rem;
  }
}
.savoir-box p {
  font-size: var(--size-text);
  color: black;
}
.savoir-box h3 {
  font-size: var(--size-4);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.23;
}

.savoir-box:nth-child(even) {
  margin-block: 1rem -1rem;
}

@media (min-width: 768px) {
  #savoir-faire .savoir-box {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  #savoir-faire .savoir-box p {
    display: none;
    margin-top: 8px;
  }
  #savoir-faire .savoir-box.active p {
    display: block;
  }
  /* Ajout d'un petit caret */
  #savoir-faire .title-4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  #savoir-faire .title-4::after {
    content: "›";
    transition: transform 0.3s;
  }
  #savoir-faire .savoir-box.active .title-4::after {
    transform: rotate(90deg);
  }
}
.box-rdv {
  text-align: center;
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  box-shadow: var(--shadowed-2);
}

.etude-box {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .etude-box {
    padding: 2rem;
  }
}

/* Accordeon */
.gestion-accordeon {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color-light);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.accordeon-item {
  border-bottom: 2px solid var(--primary-color);
  background-color: #fff5f8;
  transition: all 0.3s ease;
}

.accordeon-item:last-child {
  border-bottom: none;
}

.accordeon-header {
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  background-color: var(--primary-color-light);
}
.accordeon-header i:first-child {
  color: var(--pink-color);
}

.accordeon-title {
  font-size: var(--size-big-text);
  color: var(--grenat-color);
  font-weight: 400;
}

.accordeon-item i {
  font-size: var(--size-text);
  color: black;
}

.accordeon-item .accordeon-arrow {
  font-size: var(--size-big-text);
  transition: all 0.4s ease;
}

.accordeon-header:hover {
  background-color: var(--primary-color);
  color: white;
}
.accordeon-header:hover .accordeon-title,
.accordeon-header:hover i {
  color: white;
}

.accordeon-header:focus {
  background-color: var(--primary-color);
  color: white;
}
.accordeon-header:focus .accordeon-title,
.accordeon-header:focus i {
  color: white;
}

.accordeon-item.active .accordeon-header {
  background-color: var(--primary-color);
  color: white;
}
.accordeon-item.active .accordeon-title {
  color: white;
}
.accordeon-item.active .accordeon-arrow {
  transform: rotate(90deg);
}

.accordeon-content {
  max-height: 0;
  color: black;
  font-size: var(--size-text);
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--primary-color-light);
  padding: 0 1.5rem;
}

.accordeon-item.active .accordeon-content {
  padding: 1rem 1.5rem;
  max-height: 200px;
}

.comparatif-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  column-gap: 2rem;
  width: 100%;
}

.comparatif-header {
  text-align: center;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  padding: 1.5rem;
}

.comparatif-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: bold;
}

.comparatif-label i {
  color: var(--primary-color);
  font-size: var(--size-4);
  width: 24px;
  flex-shrink: 0;
}

.comparatif-cell i {
  color: var(--primary-color);
  font-size: var(--size-4);
}

.comparatif-cell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: left;
  color: black;
  font-style: italic;
  font-size: var(--size-big-text);
  border-bottom: 1px solid white;
}

.comparatif-grid > div:nth-child(3n+5) {
  background-color: var(--primary-color-light);
}

.comparatif-grid > div:nth-child(3n+6) {
  background-color: var(--primary-color-light);
}

.comparatif-grid > div:nth-last-child(-n+2) {
  border-radius: 0 0 20px 20px;
}

.service-tabs {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: -60px;
}
.service-tabs .tabs {
  display: flex;
  justify-content: center;
  height: 60px;
}
.service-tabs .tabs .tab {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  background: var(--primary-color-light);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
@media (min-width: 768px) {
  .service-tabs .tabs .tab {
    padding: 1rem 2rem;
    font-size: var(--size-text);
  }
}
.service-tabs .tabs .tab:first-child {
  border-top-left-radius: 20px;
}
.service-tabs .tabs .tab:last-child {
  border-top-right-radius: 20px;
}
.service-tabs .tabs .tab.active, .service-tabs .tabs .tab:hover {
  background: white;
  color: var(--primary-color);
  border: unset;
}
@media (min-width: 768px) {
  .service-tabs .tabs .tab.active, .service-tabs .tabs .tab:hover {
    font-size: var(--size-big-text);
  }
}
.service-tabs .tab-content {
  display: none;
  margin: auto;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 2rem;
}
.service-tabs .tab-content.active {
  display: block;
}
@media (min-width: 1024px) {
  .service-tabs .tab-content {
    padding: 3rem 4rem;
    width: 70%;
  }
}

/*END*/ /*-------------------------------------------------------------- # **/
.carousel-img {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 !important;
  margin: 1rem 0;
}

.casdiv .carousel-img {
  width: 50%;
}

.carousel-img-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-img-img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  max-height: 300px;
}
@media (min-width: 768px) {
  .carousel-img-img {
    max-height: 400px;
  }
}

.realisations .carousel-img-img {
  height: 300px;
}

.box-carousel-img p {
  font-style: italic;
}

.carousel-img-btn {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white-color);
  padding: 5px 11px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.carousel-img-btn.prev {
  right: 60px;
}

.carousel-img-btn.next {
  right: 10px;
}

.carousel-img-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #222;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.modalEstimation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modalEstimation.active {
  display: flex;
}
.modalEstimation .modal-content {
  background: var(--primary-color-light);
  border-radius: 20px;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  position: relative;
  padding: 2rem;
  text-align: center;
  overflow-y: scroll;
}
.modalEstimation .close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.wlspril {
  position: absolute;
  right: -55px;
  top: -56px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s linear infinite;
  -moz-animation: rotating 5s linear infinite;
  -ms-animation: rotating 5s linear infinite;
  -o-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}

.textimonial {
  background: #ffebce;
  padding: 60px 0 28px;
  box-shadow: 0 0 33px 0 rgba(126, 102, 68, 0.5882352941);
}

.textimonalbox {
  background: #fff;
  /* border: 1px solid #ddd; */
  box-shadow: 0 0 20px 0 #838383;
  border-radius: 15px;
  padding: 20px;
  min-height: 230px;
  position: relative;
  margin: 20px 15px;
}

.textimonalbox h4 {
  font-size: 25px;
  font-weight: 500;
  padding: 0 0 0 50px;
}

.textimonalbox span {
  font-size: 21px;
  font-weight: 100;
}

.textimonalbox p {
  padding: 7px 0 10px 0;
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.textimonalbox .ratingdiv {
  color: #ffd000;
}

.userimg {
  position: absolute;
  left: 20px;
  top: 15px;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd;
  width: 40px;
  height: 40px;
  margin: auto;
  text-align: center;
}

.textimonial .owl-item > div {
  padding: 0 10px 0 10px;
}

.textimonial .owl-buttons {
  position: absolute;
  top: 43%;
  width: 100%;
}

.textimonial .owl-buttons .owl-prev {
  position: absolute;
  left: 0;
  background: #fff !important;
  color: #333 !important;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 4px 0 #333;
  font-size: 21px !important;
}

.textimonial .owl-buttons .owl-next {
  position: absolute;
  right: 0;
  background: #fff !important;
  color: #333 !important;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 4px 0 #333;
  font-size: 21px !important;
}

.faqsection .accordion-item {
  border-bottom: 1px solid var(--primary-color);
}
.faqsection .accordion-item .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
  width: 100%;
  border: none;
  text-align: left;
  color: var(--primary-color);
}
.faqsection .accordion-item i {
  font-size: var(--size-4);
  transition: all 0.3s;
}
.faqsection .accordion-item:hover, .faqsection .accordion-item:focus {
  background-color: var(--primary-color);
}
.faqsection .accordion-item:hover .accordion-button,
.faqsection .accordion-item:hover i, .faqsection .accordion-item:focus .accordion-button,
.faqsection .accordion-item:focus i {
  color: white;
}
.faqsection .accordion-item.active .accordion-button,
.faqsection .accordion-item.active .accordion-body {
  background-color: var(--primary-color);
  color: white;
}
.faqsection .accordion-item.active .accordion-button,
.faqsection .accordion-item.active i {
  color: white;
}
.faqsection .accordion-item.active i {
  transform: rotate(90deg);
}

.faqsection .accordion-body {
  display: none;
  animation: fadeIn 0.3s ease;
  color: white;
  font-size: var(--size-text);
  padding: 0 1rem 1rem 1rem;
}

.faqsection .accordion-item.active .accordion-body {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stepbox {
  text-align: center;
  position: relative;
}

.stepbox .divicon {
  padding: 20px 0;
  position: relative;
}

.stepbox .divicon i {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color-light);
  font-size: var(--size-main);
  width: 100px;
  height: 100px;
  padding: 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 100%;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .stepbox .divicon i {
    width: 120px;
    height: 120px;
  }
}

.divicon:after {
  height: 1px;
  width: 100%;
  content: "";
  display: inline-block;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}

.boxd {
  border: 1px solid var(--secondary-color);
  border-radius: 15px;
  padding: 20px;
  margin: 0 0 30px 0;
  box-shadow: 0 0 20px 0 rgba(153, 153, 153, 0.6196078431);
}

.boxd img {
  margin: 22px 0 0 0;
}

.boxd p {
  font-size: 20px;
}

.newsbox {
  padding-bottom: 40px;
}

.divsec {
  position: relative;
  z-index: 2;
}

.divsec:after {
  content: "";
  background: var(--primary-color);
  width: 40%;
  height: 15px;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 28%;
  z-index: 0;
}

.divsec:before {
  content: "";
  background: var(--primary-color);
  width: 40%;
  height: 15px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 31%;
}

.toggle-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.toggle-btn.type-1 {
  border: 2px solid var(--green-color);
  color: var(--green-color);
}
.toggle-btn.type-2 {
  border: 2px solid var(--red-color);
  color: var(--red-color);
}
.toggle-btn.active {
  color: #fff;
}
.toggle-btn.active.type-1 {
  background: var(--green-color);
}
.toggle-btn.active.type-2 {
  background: var(--red-color);
}

.mobile-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-row {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 10px;
}

.mobile-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--size-big-text);
  color: var(--primary-color);
  font-weight: bold;
}

.mobile-value {
  color: var(--primary-color);
}

.infoDiv {
  border: 4px solid var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(109, 82, 82, 0.3411764706);
}
.infoDiv .lower-part {
  padding: 1rem 2rem;
}
.infoDiv .lower-part a {
  color: var(--primary-color);
}

.ratdivition {
  padding: 30px 0 0 0;
}

.ratdivition span {
  padding: 0 1px;
}

.ratdivition span img {
  width: 17px;
}

.locdivinfo ul li img {
  margin-right: 6px;
}

.ratingsec {
  text-align: center;
  padding: 0 0 60px 0;
}

.ratingsec p {
  font-size: 24px;
  padding: 0 0 12px 0;
  margin: 0;
}

.ratingsec h4 {
  font-size: 40px;
  font-weight: 600;
  padding: 10px 0 20px 0;
  margin: 0;
}

/*# sourceMappingURL=customtheme.css.map */
