:root {
  --color-red: #db2f14;
  --color-red-dark: #b82510;
  --color-red-darker: #8a1c0c;
  --color-red-glow: #ff5a3c;
  --color-red-light: #f4e8e5;
  --color-cream: #fdf8f6;
  --color-gray-900: #1f1a16;
  --color-gray-800: #3a332d;
  --color-gray-600: #6b6058;
  --color-gray-400: #a09890;
  --color-gray-200: #ebe7e4;
  --color-gray-100: #f7f5f3;
  --line: 1px solid #ebe7e4;
  --speed: .3s;
  --ease: cubic-bezier(.16,1,.3,1);
  --color-text: #3a332d;
  --color-text-dark: #1f1a16;
  --color-text-light: #ffffff;
  --color-primaire: #db2f14;
  --color-primaire-dark: #b82510;
  --color-primaire-light: #f4e8e5;
  --color-primaire-transparent: rgba(219, 47, 20, 0.08);
  --real-theme-color-1: #db2f14;
  --real-theme-color-2: #1f1a16;
  --color-secondaire: #1f1a16;
  --color-secondaire-dark: rgb(16.0849056604, 13.4905660377, 11.4150943396);
  --color-secondaire-light: #6b6058;
  --color-bg-light: #fdf8f6;
  --color-bg-white: #ffffff;
  --color-bg-dark: #1f1a16;
  --color-danger: #c92523;
  --color-success: #40b521;
  --color-delete: #ff0000;
  --color-delete-light: #ffcdc0;
  --color-noir: #1f1a16;
  --color-gris: #6b6058;
}

:root {
  --real-font-regular: "DM Sans", system-ui, sans-serif;
  --real-font-italic: "DM Sans", system-ui, sans-serif;
  --real-font-bold: "DM Sans", system-ui, sans-serif;
  --real-font-black: "DM Sans", system-ui, sans-serif;
  --real-font-titre: "DM Serif Display", Georgia, serif;
  --font-regular: "DM Sans", system-ui, sans-serif;
  --font-italic: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fs-body-xs: 1.2rem;
  --fs-body-sm: 1.4rem;
  --fs-body-md: 1.6rem;
  --fs-body-lg: 1.68rem;
  --fs-body-xl: 1.76rem;
  --fs-display-sm: 2rem;
  --fs-display-md: 2.4rem;
  --fs-display-lg: clamp(2.8rem, 3.5vw, 4rem);
  --fs-display-xl: clamp(4rem, 5vw, 6rem);
  --fs-display-hero: clamp(4rem, 5vw, 6rem);
}

.module-section {
  padding: 6rem 2.5rem;
}

.module-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.module-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primaire);
  margin-bottom: 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
}
.module-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-primaire);
  border-radius: 2px;
}

.module-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: var(--fs-display-lg);
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.module-intro {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-600);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.module-intro p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.module-bandeau_image {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, #2a1f18 50%, var(--color-red-darker) 100%);
  margin-top: -74px;
}
.module-bandeau_image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(219, 47, 20, 0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(219, 47, 20, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.module-bandeau_image .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.module-bandeau_image .hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border: 2px solid var(--color-red-glow);
  animation: float-slow 20s ease-in-out infinite;
}
.module-bandeau_image .hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  background: var(--color-primaire);
  animation: float-slow 15s ease-in-out infinite reverse;
}
.module-bandeau_image .hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 5%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  animation: float-slow 12s ease-in-out infinite;
}
.module-bandeau_image .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2.5rem 6rem;
  display: grid;
  justify-items: center;
  width: 100%;
}
.module-bandeau_image .hero-content {
  text-align: center;
  max-width: 640px;
}
.module-bandeau_image .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(219, 47, 20, 0.15);
  border: 1px solid rgba(219, 47, 20, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: var(--fs-body-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-red-glow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s both;
}
.module-bandeau_image .hero-content .hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-red-glow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.module-bandeau_image .hero-content h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: var(--fs-display-hero);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s both;
}
.module-bandeau_image .hero-content h1 em {
  font-style: italic;
  color: var(--color-red-glow);
}
.module-bandeau_image .hero-content p, .module-bandeau_image .hero-content.css_mce p {
  font-size: var(--fs-body-xl);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.module-bandeau_image .hero-content .hero-text {
  animation: fadeInUp 0.8s 0.3s both;
}
.module-bandeau_image .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  animation: fadeInUp 0.8s 0.45s both;
}
.module-bandeau_image .hero-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.3rem 2rem;
  border-radius: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  color: inherit;
}
.module-bandeau_image .hero-content .btn-primary {
  background: var(--color-primaire);
  color: #fff;
  box-shadow: 0 4px 20px rgba(219, 47, 20, 0.35);
}
.module-bandeau_image .hero-content .btn-primary:hover {
  background: var(--color-primaire-dark);
  transform: translateY(-2px);
  color: #fff;
}
.module-bandeau_image .hero-content .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.module-bandeau_image .hero-content .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}
.module-bandeau_image.full_height {
  min-height: 100vh;
}
.module-bandeau_image.heurisko-module-back {
  margin-top: 0;
  overflow: visible;
  min-height: 60vh;
}
@media only screen and (max-width: 660px) {
  .module-bandeau_image .hero-inner {
    padding: 7rem 1.5rem 4rem;
  }
  .module-bandeau_image .hero-shape-1 {
    width: 300px;
    height: 300px;
  }
}

.module-texte {
  background: var(--color-bg-white);
}
.module-texte .texte-header {
  margin-bottom: 2.5rem;
}
.module-texte .texte-body em, .module-texte .texte-body i {
  color: var(--color-primaire);
}
.module-texte.fond-rouge {
  background: linear-gradient(135deg, var(--color-primaire) 0%, var(--color-primaire-dark) 60%, var(--color-red-darker) 100%);
  position: relative;
  overflow: hidden;
}
.module-texte.fond-rouge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.module-texte.fond-rouge .module-inner {
  position: relative;
  z-index: 2;
}
.module-texte.fond-rouge .module-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.module-texte.fond-rouge .module-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}
.module-texte.fond-rouge .module-title {
  color: #fff;
}
.module-texte.fond-rouge .module-intro {
  color: rgba(255, 255, 255, 0.75);
}
.module-texte.fond-rouge .module-intro p {
  color: rgba(255, 255, 255, 0.75);
}
.module-texte.fond-rouge .texte-body em, .module-texte.fond-rouge .texte-body i {
  color: rgba(255, 255, 255, 0.9);
}
.module-texte.fond-rouge .texte-body p {
  color: rgba(255, 255, 255, 0.75);
}
.module-texte.fond-rouge .texte-body h1, .module-texte.fond-rouge .texte-body h2, .module-texte.fond-rouge .texte-body h3, .module-texte.fond-rouge .texte-body h4, .module-texte.fond-rouge .texte-body h5, .module-texte.fond-rouge .texte-body h6 {
  color: #fff;
}
.module-texte.fond-rouge .texte-body strong, .module-texte.fond-rouge .texte-body b {
  color: #fff;
}
.module-texte.fond-rouge .texte-body .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 4.5rem;
}
.module-texte.fond-rouge .texte-body .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--fs-body-md);
  font-weight: var(--fw-semibold);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--speed) var(--ease);
}
.module-texte.fond-rouge .texte-body .btn-white {
  background: #fff;
  color: var(--color-primaire);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.module-texte.fond-rouge .texte-body .btn-white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  color: var(--color-primaire);
}
.module-texte.fond-rouge .texte-body .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.module-texte.fond-rouge .texte-body .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.module-texte.center .texte-header {
  text-align: center;
}
.module-texte.center .module-eyebrow {
  justify-content: center;
}
.module-texte.center .module-intro {
  margin-left: auto;
  margin-right: auto;
}
.module-texte.center .texte-body {
  margin: 0 auto;
  text-align: center;
}
.module-texte.center .texte-body .cta-buttons {
  justify-content: center;
}
@media only screen and (max-width: 660px) {
  .module-texte .module-section {
    padding: 4rem 1.5rem;
  }
}

.module-texte_blocs {
  background: var(--color-cream);
  padding: 6rem 2.5rem;
}
.module-texte_blocs .module-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.module-texte_blocs .blocs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 1024px) {
  .module-texte_blocs .blocs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .module-texte_blocs .blocs-grid {
    grid-template-columns: 1fr;
  }
}
.module-texte_blocs .bloc {
  padding: 2rem;
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-gray-200);
  position: relative;
  transition: all var(--speed) var(--ease);
}
.module-texte_blocs .bloc:hover {
  border-color: rgba(219, 47, 20, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(219, 47, 20, 0.06);
}
.module-texte_blocs .bloc .bloc-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  color: rgba(219, 47, 20, 0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.module-texte_blocs .bloc .bloc-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: var(--fs-display-sm);
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}
.module-texte_blocs .bloc .css_mce p {
  font-size: var(--fs-body-sm);
  color: var(--color-gray-600);
  line-height: 1.65;
}
@media only screen and (max-width: 660px) {
  .module-texte_blocs {
    padding: 4rem 1.5rem;
  }
}

.module-blocs {
  background: var(--color-cream);
}
.module-blocs .blocs-header {
  margin-bottom: 3rem;
}
.module-blocs .module-title {
  font-weight: bold;
}
.module-blocs .blocs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 1024px) {
  .module-blocs .blocs-grid {
    grid-template-columns: 1fr;
  }
}
.module-blocs.col-3 .blocs-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1024px) {
  .module-blocs.col-3 .blocs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .module-blocs.col-3 .blocs-grid {
    grid-template-columns: 1fr;
  }
}
.module-blocs.col-4 .blocs-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1024px) {
  .module-blocs.col-4 .blocs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .module-blocs.col-4 .blocs-grid {
    grid-template-columns: 1fr;
  }
}
.module-blocs .bloc {
  background: var(--color-bg-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all var(--speed) var(--ease);
}
.module-blocs .bloc:hover {
  border-color: rgba(219, 47, 20, 0.15);
  box-shadow: 0 8px 32px rgba(219, 47, 20, 0.06);
}
.module-blocs .bloc .bloc-icon {
  width: 56px;
  height: 56px;
  background: var(--color-red-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}
.module-blocs .bloc .bloc-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.module-blocs .bloc .bloc-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: var(--fs-display-sm);
  color: var(--color-gray-900);
  font-weight: bold;
}
.module-blocs .bloc .bloc-desc {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--fs-body-md);
  margin: 2rem 0;
  color: var(--color-gray-600);
  line-height: 1.65;
}
.module-blocs .bloc .bloc-address {
  background: var(--color-gray-100);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
}
.module-blocs .bloc .bloc-address p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--fs-body-sm);
  color: var(--color-gray-800);
  line-height: 1.6;
  margin-bottom: 0;
}
.module-blocs .bloc .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  padding: 1.3rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--speed) var(--ease);
}
.module-blocs .bloc .btn-primary {
  background: var(--color-primaire);
  color: #fff;
  box-shadow: 0 4px 16px rgba(219, 47, 20, 0.3);
}
.module-blocs .bloc .btn-primary:hover {
  background: var(--color-primaire-dark);
  transform: translateY(-2px);
  color: #fff;
}
.module-blocs.dark {
  background: var(--color-gray-900);
}
.module-blocs.dark .module-title {
  color: #fff;
}
.module-blocs.dark .module-intro {
  color: rgba(255, 255, 255, 0.55);
}
.module-blocs.dark .bloc {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.module-blocs.dark .bloc:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(219, 47, 20, 0.3);
}
.module-blocs.dark .bloc .bloc-title {
  color: #fff;
}
.module-blocs.dark .bloc .bloc-desc {
  color: rgba(255, 255, 255, 0.55);
}
@media only screen and (max-width: 660px) {
  .module-blocs .module-section {
    padding: 4rem 1.5rem;
  }
  .module-blocs .blocs-grid {
    margin-top: 2rem;
  }
}

.module-argument_blocs {
  background: var(--color-gray-900);
  position: relative;
  overflow: hidden;
}
.module-argument_blocs::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(219, 47, 20, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.module-argument_blocs .module-inner {
  position: relative;
  z-index: 2;
}
.module-argument_blocs .module-eyebrow {
  color: var(--color-red-glow);
}
.module-argument_blocs .module-eyebrow::before {
  background: var(--color-red-glow);
}
.module-argument_blocs .module-title {
  color: #fff;
}
.module-argument_blocs .module-intro.css_mce p {
  color: rgba(255, 255, 255, 0.55);
}
.module-argument_blocs .blocs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 1024px) {
  .module-argument_blocs .blocs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .module-argument_blocs .blocs-grid {
    grid-template-columns: 1fr;
  }
}
.module-argument_blocs .bloc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.module-argument_blocs .bloc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primaire);
  border-radius: 3px 3px 0 0;
  transition: width var(--speed) var(--ease);
}
.module-argument_blocs .bloc:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(219, 47, 20, 0.3);
  transform: translateY(-4px);
}
.module-argument_blocs .bloc:hover::after {
  width: 60%;
}
.module-argument_blocs .bloc.featured {
  background: rgba(219, 47, 20, 0.1);
  border-color: rgba(219, 47, 20, 0.25);
}
.module-argument_blocs .bloc.featured::after {
  width: 60%;
}
.module-argument_blocs .bloc .bloc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-primaire);
  color: #fff;
  font-size: var(--fs-body-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.module-argument_blocs .bloc .bloc-value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.5rem;
  color: var(--color-red-glow);
  margin-bottom: 0.25rem;
}
.module-argument_blocs .bloc .bloc-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: var(--fs-display-sm);
  color: #fff;
  margin-bottom: 0.75rem;
}
.module-argument_blocs .bloc .css_mce p {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
@media only screen and (max-width: 660px) {
  .module-argument_blocs .module-section {
    padding: 4rem 1.5rem;
  }
}

.module-blockquote {
  background: var(--color-cream);
  padding: 6rem 2.5rem;
}
.module-blockquote .module-inner {
  max-width: 800px;
  margin: 0 auto;
}
.module-blockquote .bloc {
  background: var(--color-bg-white);
  border: 1px solid var(--color-gray-200);
  border-left: 3px solid var(--color-primaire);
  border-radius: 0 16px 16px 0;
  padding: 2.5rem;
}
.module-blockquote .bloc .bloc-quote {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--color-gray-900);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.module-blockquote .bloc .bloc-author {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  color: var(--color-gray-800);
}
.module-blockquote .bloc .bloc-ref {
  font-size: var(--fs-body-xs);
  color: var(--color-gray-600);
  margin-top: 0.25rem;
}
@media only screen and (max-width: 660px) {
  .module-blockquote {
    padding: 4rem 1.5rem;
  }
}

.module-image_texte {
  background: var(--color-bg-white);
  padding: 6rem 2.5rem;
}
.module-image_texte .module-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .module-image_texte .module-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.module-image_texte.image_droite .module-inner {
  direction: rtl;
}
.module-image_texte.image_droite .module-inner > * {
  direction: ltr;
}
.module-image_texte .module-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.module-image_texte .module-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .module-image_texte .module-image img {
    height: 320px;
  }
}
.module-image_texte .module-content .module-title {
  margin-bottom: 1.25rem;
}
.module-image_texte .module-content .module-intro {
  margin-bottom: 1.5rem;
}
.module-image_texte .module-content .css_mce {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 660px) {
  .module-image_texte {
    padding: 4rem 1.5rem;
  }
}

.module-contact {
  background: var(--color-cream);
  padding: 6rem 2.5rem;
}
.module-contact .module-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.module-contact .contact-header {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 660px) {
  .module-contact {
    padding: 4rem 1.5rem;
  }
}

.module-recherche {
  background: var(--color-bg-white);
  padding: 6rem 2.5rem;
}
.module-recherche .module-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 660px) {
  .module-recherche {
    padding: 4rem 1.5rem;
  }
}

.module-categorie_actualites {
  background: var(--color-bg-white);
  padding: 2rem 2.5rem 0;
}
.module-categorie_actualites .module-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 660px) {
  .module-categorie_actualites {
    padding: 1.5rem 1.5rem 0;
  }
}

.heurisko-module {
  transition: box-shadow 0.3s ease;
}
.heurisko-module .heurisko-toolbar-add-after {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: opacity 1s ease;
}
.heurisko-module .heurisko-toolbar-add-after .cont-btn {
  display: block;
  text-align: center;
}
.heurisko-module .heurisko-toolbar-add-after .cont-btn button.btn-show-toolbar-add-after {
  display: inline-block;
  border-radius: 100px;
  background-color: #28a745;
  color: #fff;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.heurisko-module .heurisko-toolbar-add-after .cont-btn button.btn-show-toolbar-add-after:hover {
  box-shadow: 0 0 3px 0 #fff;
  background-color: #4de36f;
}
.heurisko-module .heurisko-toolbar-add-after .modules {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  width: 100%;
}
.heurisko-module .heurisko-toolbar-add-after .modules.showme {
  opacity: 1;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0 -10px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 15px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.heurisko-module .heurisko-toolbar-add-after .modules.showme ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.heurisko-module .heurisko-toolbar-add-after .modules .heurisko-toolbar-cont-btn-close {
  text-align: center;
  width: 100%;
}
.heurisko-module .heurisko-toolbar-add-after .modules .heurisko-toolbar-cont-btn-close button {
  display: inline-block;
  border-radius: 100px;
  background-color: #a72828;
  color: #fff;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.heurisko-module .heurisko-toolbar-add-after .modules .heurisko-toolbar-cont-btn-close button:hover {
  box-shadow: 0 0 3px 0 #fff;
  background-color: #e34d4d;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul, .heurisko-module .heurisko-toolbar-add-after .modules li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li {
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0.8;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li button {
  background-color: transparent !important;
  border: none !important;
  text-align: center;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li button img {
  max-height: 35px;
  border-radius: 2px;
  box-shadow: 0 0 3px 0 #999;
  transition: all 0.25s ease;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li button i {
  text-align: center;
  display: inline-block;
  font-size: 2rem;
  color: #01bbaa;
  background-color: #fff;
  padding: 1rem;
  border-radius: 2px;
  box-shadow: 0 0 3px 0 #999;
  transition: all 0.25s ease;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li button span {
  display: block;
  text-align: center;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  padding: 3px 5px;
  margin-top: 5px;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li:hover {
  opacity: 1;
}
.heurisko-module .heurisko-toolbar-add-after .modules ul li:hover button i, .heurisko-module .heurisko-toolbar-add-after .modules ul li:hover button img {
  box-shadow: 0 0 5px 0 #999;
}
.heurisko-module .heurisko-toolbar,
.heurisko-module .heurisko-toolbar-bloc {
  opacity: 0;
  display: block;
}
.heurisko-module .heurisko-toolbar .heurisko-toolbar-line,
.heurisko-module .heurisko-toolbar-bloc .heurisko-toolbar-line {
  text-align: right;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
}
.heurisko-module .heurisko-toolbar .heurisko-toolbar-line .dropdown-custom,
.heurisko-module .heurisko-toolbar-bloc .heurisko-toolbar-line .dropdown-custom {
  position: absolute;
  width: 200px;
  top: 100%;
  right: 0;
  left: auto;
  padding: 20px 10px 10px 20px;
  margin: 0;
}
.heurisko-module.heurisko-module-back:hover {
  position: relative;
  box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.4);
}
.heurisko-module.heurisko-module-back:hover .heurisko-toolbar-add-after {
  opacity: 1;
}
.heurisko-module.heurisko-module-back:hover .heurisko-toolbar {
  opacity: 1;
}
.heurisko-module.heurisko-module-back:hover .heurisko-toolbar .heurisko-toolbar-line {
  z-index: 99;
}
.heurisko-module.heurisko-module-back .bloc:hover {
  position: relative;
}
.heurisko-module.heurisko-module-back .bloc:hover .heurisko-toolbar-bloc {
  opacity: 1;
}
.heurisko-module.heurisko-module-back .bloc:hover .heurisko-toolbar-bloc .heurisko-toolbar-line {
  z-index: 99;
}
.heurisko-module.heurisko-module-back img.ajax-visuel {
  transition: opacity 0.3s ease;
  cursor: revert;
}
.heurisko-module.heurisko-module-back img.ajax-visuel:hover {
  opacity: 0.5;
}
.heurisko-module.heurisko-module-back .blocs .bloc {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px rgba(100, 100, 100, 0.1);
}
.heurisko-module.heurisko-module-back .blocs .bloc:hover {
  box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.4);
  position: relative;
}
.heurisko-module.heurisko-module-back .blocs .bloc:hover .heurisko-toolbar-bloc {
  display: block;
}

/*# sourceMappingURL=klemeor-modules.css.map */
