@charset "UTF-8";
/* 1. Variables */
/* --------------------------
   MUNDIAL (texte)
-------------------------- */
@font-face {
  font-family: "Mundial";
  src: url("../fonts/mundial/MundialThin.otf") format("opentype");
  font-weight: 100; /* Thin */
  font-style: normal;
  font-display: swap;
}
/* --------------------------
   SUPERIOR TITLE (titres)
-------------------------- */
/* --------------------------
   ADVENTURE (script)
-------------------------- */
/* --------------------------
   OUTFIT (strong / bold text)
-------------------------- */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
  font-style: normal;
  font-display: swap;
}
/* 2. Mixins & Functions */
/* 1. Variables */
/* Mixin pour le centrage flex */
/* Mixin pour les tailles de police responsives */
/* Mixin pour ajouter une ombre portée */
/* 1. Variables */
/* 3. Reset / Normalize */
/* _reset.scss */
/* Basic CSS Reset - Easily extendable */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #fff;
  color: #222;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* 4. Base (typographie, body, etc.) */
/* 1. Variables */
/* 2. Mixins & Functions */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Mundial", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: black;
  background: white;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "superior-title", serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: #004c6e;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: blue;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: violet;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: 1px solid #ccc;
  padding: 0.5em;
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: blue;
}

.hide {
  display: none !important;
}

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

.important {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  z-index: 100;
  color: #022f44;
}

.important2 {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  z-index: 100;
  margin-bottom: 1rem;
}

p {
  z-index: 100;
}

.red-line {
  position: relative;
}
.red-line::after {
  content: url("../medias/svg/line_red.svg");
  width: 135%;
  height: 2rem;
  position: absolute;
  bottom: -15%;
  left: -15%;
  z-index: 12;
}

/* 5. Layout (grilles, containers, etc.) */
/* Variables de base */
/* Container principal */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Grille simple */
.row {
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 12px;
  padding-right: 12px;
}

/* Exemple de colonne de largeur fixe */
.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Espacement vertical modulable */
.spacer {
  height: 2rem;
}
.spacer--small {
  height: 1rem;
}
.spacer--large {
  height: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .col,
  .col-4,
  .col-6 {
    max-width: 100%;
    flex: 1 1 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* 6. Components (boutons, cartes, etc.) */
/* _buttons.scss */
/* Variables */
/* Base button */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-align: center;
  text-decoration: none;
  background: #f8f9fa;
  color: #333;
}
.btn:hover, .btn:focus {
  filter: brightness(0.95);
}
.btn:disabled, .btn.is-disabled {
  background: #e0e0e0;
  color: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary modifier */
.btn--primary {
  background: #007bff;
  color: #fff;
}

/* Outline modifier */
.btn--outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
}
.btn--outline:hover, .btn--outline:focus {
  background: #007bff;
  color: #fff;
}

/* Size modifiers */
.btn--small {
  padding: 0.5em 1em;
  font-size: 0.875rem;
}

.btn--large {
  padding: 1em 2em;
  font-size: 1.25rem;
}

/* 7. Pages spécifiques */
/* 3. Reset / Normalize */
/* 1. Variables */
/* 2. Mixins & Functions */
/* 1. Variables */
/* 2. Mixins & Functions */
.footer {
  color: #fbfdff;
  padding: 4rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  gap: 1rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), #022f44;
}
.footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer div p {
  width: 100%;
  text-align: left;
}
.footer div img {
  height: 100px;
  margin-bottom: 1.5rem;
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
}
.footer ul li a {
  color: #fbfdff;
  text-decoration: underline;
}
.footer ul li.footer-lg {
  display: none;
}
.footer ul li img {
  width: 12px;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: -12px;
}

@media (min-width: 768px) {
  .footer ul li:last-of-type {
    display: flex;
    gap: 1rem;
  }
  .footer ul li.footer-lg {
    display: flex;
    gap: 1rem;
  }
  .footer-lg {
    display: block;
  }
}
@media (min-width: 1024px) {
  .footer {
    flex-direction: row;
    gap: 6rem;
    padding: 4rem 8rem;
    justify-content: center;
  }
  .footer div {
    max-width: 30vw;
    align-items: start;
  }
  .footer div img {
    width: 80px;
  }
  .footer ul {
    max-width: 40vw;
  }
}
/* 1. Variables */
/* 2. Mixins & Functions */
.header {
  background: #013146;
  color: #fbfdff;
  padding: 1rem;
  position: relative;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__content img {
  height: 40px;
}
.header__content ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: #013146;
  width: 100%;
  padding: 1rem;
  z-index: 5000;
  font-size: 1.2rem;
}
.header__content ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__content ul li a {
  color: #fbfdff;
  text-decoration: none;
  transition: color 0.2s;
}
.header__content ul li .contact-sm {
  display: block;
}
.header__content nav.accessible {
  background-color: #022f44;
  padding: 8px 8px;
  border: none;
  border-radius: 5px;
  margin: 5px 0 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__content nav.accessible .glass-radio-group {
  --bg: rgba(255, 255, 255, 0.06);
  --text: $color-white;
  display: flex;
  background: var(--bg);
  border-radius: 5px;
  backdrop-filter: blur(12px);
  box-shadow: inset 1px 1px 4px rgba(255, 255, 255, 0.2), inset -1px -1px 6px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  flex: 1;
}
.header__content nav.accessible .glass-radio-group input {
  display: none;
}
.header__content nav.accessible .glass-radio-group input:checked + label {
  color: #fbfdff;
}
.header__content nav.accessible .glass-radio-group label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  font-size: 14px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}
.header__content nav.accessible .glass-radio-group label:hover {
  color: white;
}
.header__content nav.accessible .glass-glider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border-radius: 5px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.37, 1.95, 0.66, 0.56), background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.header__content nav.accessible {
  /* === Font type (Normale / Dys) === */
}
.header__content nav.accessible #font-default:checked ~ .glass-glider {
  transform: translateX(0%);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3333333333), #e0e0e0);
  box-shadow: 0 0 18px rgba(192, 192, 192, 0.5), 0 0 10px rgba(255, 255, 255, 0.4) inset;
}
.header__content nav.accessible #font-dys:checked ~ .glass-glider {
  transform: translateX(100%);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3333333333), #ffcc00);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 235, 150, 0.4) inset;
}
.header__content nav.accessible {
  /* === Font size (Normale / Grande) === */
}
.header__content nav.accessible #size-default:checked ~ .glass-glider {
  transform: translateX(0%);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3333333333), #e0e0e0);
  box-shadow: 0 0 18px rgba(192, 192, 192, 0.5), 0 0 10px rgba(255, 255, 255, 0.4) inset;
}
.header__content nav.accessible #size-large:checked ~ .glass-glider {
  transform: translateX(100%);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3333333333), #ffcc00);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 235, 150, 0.4) inset;
}
.header__content nav.accessible {
  /* === Contrast (Normal / Élevé) === */
}
.header__content nav.accessible #contrast-default:checked ~ .glass-glider {
  transform: translateX(0%);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3333333333), #e0e0e0);
  box-shadow: 0 0 18px rgba(192, 192, 192, 0.5), 0 0 10px rgba(255, 255, 255, 0.4) inset;
}
.header__content nav.accessible #contrast-high:checked ~ .glass-glider {
  transform: translateX(100%);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3333333333), #ffcc00);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 235, 150, 0.4) inset;
}
.header__content nav.accessible #glass-platinum:checked ~ .glass-glider {
  transform: translateX(200%);
  background: linear-gradient(135deg, rgba(208, 231, 255, 0.3333333333), #a0d8ff);
  box-shadow: 0 0 18px rgba(160, 216, 255, 0.5), 0 0 10px rgba(200, 240, 255, 0.4) inset;
}
.header__content a.contact-lg {
  display: none;
  color: #fbfdff;
  text-decoration: none;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: solid 2px #fbfdff;
}
.header__content button.burger {
  all: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}
.header__content button.burger span {
  display: block;
  height: 3px;
  background: #fbfdff;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.header__content.open ul {
  display: flex;
}
.header__content.open .burger span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6.5px);
}
.header__content.open .burger span:nth-child(2) {
  opacity: 0;
}
.header__content.open .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6.5px);
}
.header .burger {
  display: flex;
}

@media (min-width: 1024px) {
  .header {
    padding: 0.75rem 2rem;
  }
  .header__content {
    margin: 0;
  }
  .header__content img {
    width: 60px;
    height: 60px;
  }
  .header__content ul {
    margin: 0;
    margin-left: 1rem;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row;
    position: relative;
    width: fit-content;
  }
  .header__content ul li {
    margin: 0 1.2rem;
    padding: 0;
  }
  .header__content ul li.contact-sm {
    display: none;
    visibility: hidden;
    margin: 0;
    list-style: none;
    text-decoration: none;
  }
  .header__content a.contact-lg {
    display: block;
    background-color: transparent;
    font-family: "Outfit", sans-serif;
    color: #fbfdff;
    padding: 0.4rem 1rem;
    border: solid 2px #fbfdff;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .header__content a.contact-lg:hover {
    background-color: #fbfdff;
    color: #022f44;
  }
  .header__content a.contact-lg:active {
    filter: brightness(95%);
  }
  .header__content a.contact-lg {
    margin-right: 2rem;
    width: max-content;
    font-size: 1rem;
  }
  .header__content button.burger {
    display: none;
  }
}
.body__accueil .fade-up {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
  transform: translateY(30px);
}
.body__accueil .fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}
.body__accueil .fade-left {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
  transform: translateX(-30px);
}
.body__accueil .fade-left.appear {
  opacity: 1;
  transform: translateX(0);
}
.body__accueil .zoom-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
  transform: scale(0.95);
}
.body__accueil .zoom-in.appear {
  opacity: 1;
  transform: scale(1);
}
.body__accueil .corner-borders {
  position: relative;
  padding: 1rem;
}
.body__accueil .corner-borders::before, .body__accueil .corner-borders::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #022f44;
}
.body__accueil .corner-borders::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.body__accueil .corner-borders::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.body__accueil .elegant-border {
  position: relative;
  padding: 0 1.5rem;
}
.body__accueil .elegant-border::before, .body__accueil .elegant-border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ffffff, transparent);
}
.body__accueil .elegant-border::before {
  left: 0;
}
.body__accueil .elegant-border::after {
  right: 0;
}
.body__accueil p {
  font-weight: 500;
}
.body__accueil-accroche {
  text-align: left;
  padding: 4rem 2rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), #022f44;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 50;
}
.body__accueil-accroche a {
  display: none;
}
.body__accueil-accroche div {
  display: flex;
  flex-direction: column;
  color: #fbfdff;
  margin-bottom: 2rem;
  z-index: 20000;
}
.body__accueil-accroche div p {
  font-family: "adventures-unlimited", sans-serif;
  margin-bottom: -1.2rem;
  font-size: 36px;
}
.body__accueil-accroche h1 {
  max-width: 450px;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #fbfdff;
  position: relative;
  z-index: 1;
}
.body__accueil-accroche video {
  margin-top: 1rem;
  scale: 1.01;
  background-color: #000;
  border: 0 solid;
  border-radius: 5px;
}
.body__accueil-identite {
  background: #f7f6fe;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-identite h3 {
  font-family: "superior-title", serif;
  color: #022f44;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 100;
  width: 55%;
  margin-top: 1.5rem;
}
.body__accueil-identite h3 span {
  position: relative;
  font-weight: 300;
}
.body__accueil-identite h3 span::after {
  content: "“";
  font-style: italic;
  font-size: 78px;
  font-family: "superior-title", serif;
  color: #004c6e;
  font-weight: bolder;
  position: absolute;
  top: -100%;
  left: -100%;
  z-index: 100000;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 4px;
}
.body__accueil-identite img {
  width: 45px;
  height: auto;
  margin-bottom: 4rem;
}
.body__accueil-identite .ellipse {
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0.5rem;
}
.body__accueil-identite .ellipse h2 {
  margin-bottom: 1rem;
  color: #004c6e;
  position: relative;
  z-index: 10;
  overflow: visible;
  text-align: center;
}
.body__accueil-identite .ellipse .important {
  color: #022f44;
  margin-bottom: 0.75rem;
  width: 80%;
  text-align: center;
}
.body__accueil-identite .ellipse p {
  margin-bottom: 1rem;
  line-height: 1.1rem;
  width: 90%;
  color: #004c6e;
}
.body__accueil-equipe {
  font-size: 12px;
  background: #022f44;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-equipe h2 {
  color: #f7f6fe;
}
.body__accueil-equipe .important {
  color: #f7f6fe;
  margin-bottom: 0.75rem;
  width: 100%;
}
.body__accueil-equipe .org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  max-width: 300px;
  color: #f7f6fe;
  /* Chaque rang */
}
.body__accueil-equipe .org-chart .org-level {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .body__accueil-equipe .org-chart p {
    width: 100%;
  }
}
.body__accueil-equipe .org-chart {
  /* Chaque boîte */
}
.body__accueil-equipe .org-chart .org-node {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f7f6fe;
  color: #f7f6fe;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  background: transparent;
  text-align: center;
  min-width: 100px;
  min-height: 3.5rem;
}
.body__accueil-equipe .org-chart {
  /* Style particulier pour le management */
}
.body__accueil-equipe .org-chart .management .org-node {
  background: #f7f6fe;
  color: #022f44;
  width: max-content;
}
.body__accueil-pourquoi {
  background: #fbfdff;
  color: #004c6e;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-pourquoi h2 {
  color: #004c6e;
}
.body__accueil-pourquoi .image {
  background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/1.locaux.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 0;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 4/3;
  padding: 8px 12px;
  margin-bottom: 2rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.body__accueil-pourquoi .image blockquote {
  font-family: "superior-title", serif;
  font-style: normal;
  font-weight: 100;
  color: #fbfdff;
  font-size: 0.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.body__accueil-pourquoi .image blockquote .auteur {
  font-family: "Mundial", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.body__accueil-pourquoi .text {
  order: 2;
  text-align: left;
}
.body__accueil-edition {
  background: #022f44;
  color: #f7f6fe;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-edition h2 {
  color: #f7f6fe;
}
.body__accueil-edition .image {
  background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/2.editoriale.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 0;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 4/3;
  padding: 8px 12px;
  margin-bottom: 2rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.body__accueil-edition .image blockquote {
  font-family: "superior-title", serif;
  font-style: normal;
  font-weight: 100;
  color: #fbfdff;
  font-size: 0.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.body__accueil-edition .image blockquote .auteur {
  font-family: "Mundial", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.body__accueil-edition .text {
  order: 2;
  text-align: left;
}
.body__accueil-creation {
  background: #fbfdff;
  color: #004c6e;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-creation h2 {
  color: #004c6e;
}
.body__accueil-creation .image {
  background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/3.graphique.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 0;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 4/3;
  padding: 8px 12px;
  margin-bottom: 2rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.body__accueil-creation .image blockquote {
  font-family: "superior-title", serif;
  font-style: normal;
  font-weight: 100;
  color: #fbfdff;
  font-size: 0.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.body__accueil-creation .image blockquote .auteur {
  font-family: "Mundial", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.body__accueil-creation .text {
  order: 2;
  text-align: left;
}
.body__accueil-photogravure {
  background: #022f44;
  color: #f7f6fe;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-photogravure h2 {
  color: #f7f6fe;
}
.body__accueil-photogravure .image {
  background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/4.illustrations.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 0;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 4/3;
  padding: 8px 12px;
  margin-bottom: 2rem;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.body__accueil-photogravure .image blockquote {
  font-family: "superior-title", serif;
  font-style: normal;
  font-weight: 100;
  color: #fbfdff;
  font-size: 0.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.body__accueil-photogravure .image blockquote .auteur {
  font-family: "Mundial", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.body__accueil-photogravure .text {
  order: 2;
  text-align: left;
}
.body__accueil-logiciels {
  background: #fbfdff;
  color: #004c6e;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.body__accueil-logiciels h2 {
  color: #004c6e;
}
.body__accueil-logiciels .viewport {
  display: flex;
  flex-direction: column;
  align-items: normal;
  width: 100%;
  position: relative;
}
.body__accueil-logiciels .viewport .logiciels {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
  width: 300%;
  padding: 0;
  margin: 1rem 0 0 0;
  touch-action: pan-y;
}
.body__accueil-logiciels .viewport .logiciels-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  list-style: none;
  padding: 2rem 1rem 0 1rem;
  text-align: center;
  border-radius: 5px;
  background: #004c6e;
  color: #fbfdff;
  font-family: "Mundial", sans-serif;
  opacity: 0.4;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 0;
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.5);
}
.body__accueil-logiciels .viewport .logiciels-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.body__accueil-logiciels .viewport .logiciels-card img {
  max-width: 140px;
  margin-bottom: 1.5rem;
}
.body__accueil-logiciels .viewport .logiciels-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.body__accueil-logiciels .viewport .logiciels-card ul {
  padding: 0;
  list-style: none;
  text-align: left;
}
.body__accueil-logiciels .viewport .logiciels-card ul li {
  margin: 0.15rem 0;
  font-size: 1rem;
}
.body__accueil-logiciels .puces {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
}
.body__accueil-logiciels .puces .puce {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #004c6e;
  background: #fbfdff;
  cursor: pointer;
  transition: background 0.3s;
}
.body__accueil-logiciels .puces .puce.active {
  background: #004c6e;
}
.body__accueil-book {
  background: #f7f6fe;
  padding: 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5000;
}
.body__accueil-book .presentation {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.body__accueil-book .presentation a {
  background-color: #013146;
  font-family: "Outfit", sans-serif;
  color: #fbfdff;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.body__accueil-book .presentation a:hover {
  filter: brightness(90%);
  transform: translateY(-2px);
}
.body__accueil-book .presentation a:active {
  filter: brightness(80%);
  transform: translateY(0);
}
.body__accueil-book .projets {
  padding: 0.5rem 2rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.body__accueil-book .projets .projets-liste {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0;
  margin: 0;
  transition: transform 0.15s ease;
}
.body__accueil-book .projets .projets-liste li {
  background-color: #fbfdff;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 9/14;
  width: 240px;
  min-width: 200px;
  scroll-snap-align: center;
  transition: filter 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0px 10px 15px rgba(148, 148, 148, 0.2);
}
.body__accueil-book .projets .projets-liste li img {
  min-height: 85%;
  height: 150px;
  object-fit: cover;
  width: 100%;
  margin: 0;
  background-image: url("../medias/default.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.body__accueil-book .projets .projets-liste li div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.5rem;
}
.body__accueil-book .projets .projets-liste li div p {
  margin: 0;
}
.body__accueil-book .projets .projets-liste li div h3 {
  margin: 0;
}
.body__accueil-book .projets .projets-liste li div {
  text-align: left;
  height: 15%;
  margin: 0;
}
.body__accueil-book .projets .projets-liste li.fogged {
  filter: blur(var(--blur, 0px));
  opacity: var(--opacity, 1);
}
.body__accueil-book video {
  background-color: black;
  border: 0 solid;
  border-radius: 5px;
}
.body__accueil-slogan {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), #022f44;
  padding: 1rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 100000;
}
.body__accueil-slogan .slogan-groupe {
  font-family: "superior-title", serif;
  font-style: italic;
  color: #fbfdff;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.body__accueil-slogan .slogan-groupe img {
  width: 30px;
  height: auto;
  margin-top: 0.5rem;
}
.body__accueil-map {
  margin: 0;
  padding: 0;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100000;
}
.body__accueil-contact {
  background: #f7f6fe;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.body__accueil-contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.body__accueil-contact form p {
  width: 65%;
  line-height: 0.75rem;
  margin-bottom: 2rem;
}
.body__accueil-contact form fieldset {
  width: 100%;
  margin-top: 1rem;
  border: none;
  padding: 2rem;
  border-radius: 10px;
  background-color: #f7f6fe;
  box-shadow: 0 6px 18px rgba(174, 144, 255, 0.226);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.body__accueil-contact form fieldset legend {
  display: none;
}
.body__accueil-contact form fieldset div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.body__accueil-contact form fieldset div .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.body__accueil-contact form fieldset div .form-group:last-child {
  flex: 1;
}
.body__accueil-contact form fieldset div .form-group input,
.body__accueil-contact form fieldset div .form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border: 2px solid #022f44;
  background: transparent;
  outline: none;
}
.body__accueil-contact form fieldset div .form-group input:focus,
.body__accueil-contact form fieldset div .form-group textarea:focus {
  border-color: #013146;
}
.body__accueil-contact form fieldset div .form-group input:focus + label, .body__accueil-contact form fieldset div .form-group input:not(:placeholder-shown) + label,
.body__accueil-contact form fieldset div .form-group textarea:focus + label,
.body__accueil-contact form fieldset div .form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.5rem;
  font-size: 0.75rem;
  background: #f7f6fe;
  padding: 0 0.25rem;
  color: #022f44;
}
.body__accueil-contact form fieldset div .form-group label {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease;
}
.body__accueil-contact form fieldset div .form-group label::after {
  content: "*";
  color: red;
  margin-left: 0.25rem;
  font-size: 0.85em;
  vertical-align: super;
  opacity: 0.8;
}
.body__accueil-contact form fieldset div .form-group input:not([required]) + label::after,
.body__accueil-contact form fieldset div .form-group textarea:not([required]) + label::after {
  content: "";
}
.body__accueil-contact form fieldset .captcha-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  margin: 0.8rem 0;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.body__accueil-contact form fieldset .captcha-wrap .captcha img {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  user-select: none;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input {
  width: 100%;
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input input[type=text] {
  flex: 1 1 100%;
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 0.95rem;
  color: #022f44;
  background: transparent;
  outline: none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input input[type=text]::placeholder {
  color: #999;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input input[type=text]:focus {
  border-color: #013146;
  box-shadow: 0 0 0 4px rgba(139, 35, 53, 0.07);
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button {
  background-color: #0d834c;
  font-family: "Outfit", sans-serif;
  color: #fbfdff;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button:hover {
  filter: brightness(90%);
  transform: translateY(-2px);
}
.body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button:active {
  filter: brightness(80%);
  transform: translateY(0);
}
.body__accueil-contact form fieldset button[type=submit] {
  width: 100%;
  background: #013146;
  color: #fbfdff;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
  text-transform: uppercase;
}
.body__accueil-contact form fieldset button[type=submit]:hover {
  background: rgb(0.2816901408, 13.8028169014, 19.7183098592);
}

@media (min-width: 768px) {
  :root {
    --font-size-base: 15px;
    --font-size-smaller: 13px;
    --font-size-titres: 48px;
    --font-size-quotes: 0.9rem;
    --font-size-small: 0.95rem;
    --font-size-large: 1rem;
    --font-size-larger: 1.1rem;
  }
  .line-horizontale {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .line-horizontale::before, .line-horizontale::after {
    content: "";
    flex: 1;
    height: 3px;
    width: 20vw;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 2rem;
  }
  .line-horizontale::after {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  }
  .line-horizontale-2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .line-horizontale-2::before, .line-horizontale-2::after {
    content: "";
    flex: 1;
    height: 3px;
    width: 20vw;
    background: linear-gradient(to left, transparent, #022f44, transparent);
    margin: 0 2rem;
  }
  .line-horizontale-2::after {
    background: linear-gradient(to right, transparent, #022f44, transparent);
  }
  .body__accueil .red-line::after {
    width: 150%;
    height: 2.2rem;
    bottom: 0;
  }
  .body__accueil-accroche {
    position: relative;
    margin: 0;
    overflow: hidden;
  }
  .body__accueil-accroche::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 49, 70, 0.5), rgba(0, 37, 54, 0.8));
    z-index: 0;
    pointer-events: none;
  }
  .body__accueil-accroche video {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .body__accueil-accroche a {
    display: block;
    margin-top: 1rem;
    background-color: #fbfdff;
    font-family: "Outfit", sans-serif;
    color: #022f44;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: max-content;
  }
  .body__accueil-accroche a:hover {
    filter: brightness(95%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .body__accueil-accroche a:active {
    filter: brightness(90%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  .body__accueil-accroche a {
    position: relative;
    z-index: 1;
  }
  .body__accueil-identite {
    padding-bottom: 8rem;
    position: relative;
  }
  .body__accueil-identite h3 {
    font-size: 1.75rem;
    max-width: 30vw;
  }
  .body__accueil-identite p {
    max-width: 50vw;
    text-align: justify;
    word-break: keep-all;
    font-size: var(--font-size-base);
  }
  .body__accueil-identite .ellipse {
    gap: 0.25rem;
  }
  .body__accueil-identite .ellipse .important {
    margin-bottom: 0.8rem;
  }
  .body__accueil-identite .ellipse p {
    margin-bottom: 0.5rem;
  }
  .body__accueil-identite .ellipse::before {
    top: 70%;
  }
  .body__accueil-identite .ellipse p {
    font-size: var(--font-size-base);
  }
  .body__accueil-identite::after {
    content: "”";
    font-family: "superior-title", serif;
    font-weight: bolder;
    font-style: italic;
    position: absolute;
    color: #9e9e9e;
    opacity: 0.1;
    bottom: -122rem;
    right: -78px;
    transform: translate(-50%, -50%);
    font-size: 1200px;
  }
  .body__accueil h2 {
    font-size: 2.8rem;
  }
  .body__accueil-equipe {
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }
  .body__accueil-equipe .org-chart {
    max-width: max-content;
  }
  .body__accueil-equipe::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: 100px;
    left: 0;
    z-index: 0;
  }
  .body__accueil-pourquoi {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .body__accueil-pourquoi .image {
    background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/1.locaux.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 0;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4/3;
    padding: 8px 12px;
    margin-bottom: 2rem;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .body__accueil-pourquoi .image blockquote {
    font-family: "superior-title", serif;
    font-style: normal;
    font-weight: 100;
    color: #fbfdff;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .body__accueil-pourquoi .image blockquote .auteur {
    font-family: "Mundial", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
  }
  .body__accueil-pourquoi .text {
    order: 2;
    text-align: left;
  }
  .body__accueil-pourquoi h2 {
    width: 100%;
  }
  .body__accueil-pourquoi .image {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-pourquoi .text {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-edition {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .body__accueil-edition .image {
    background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/2.editoriale.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 0;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4/3;
    padding: 8px 12px;
    margin-bottom: 2rem;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .body__accueil-edition .image blockquote {
    font-family: "superior-title", serif;
    font-style: normal;
    font-weight: 100;
    color: #fbfdff;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .body__accueil-edition .image blockquote .auteur {
    font-family: "Mundial", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
  }
  .body__accueil-edition .text {
    order: 1;
    text-align: left;
  }
  .body__accueil-edition h2 {
    width: 100%;
  }
  .body__accueil-edition .image {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-edition .text {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-creation {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .body__accueil-creation .image {
    background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/3.graphique.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 0;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4/3;
    padding: 8px 12px;
    margin-bottom: 2rem;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .body__accueil-creation .image blockquote {
    font-family: "superior-title", serif;
    font-style: normal;
    font-weight: 100;
    color: #fbfdff;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .body__accueil-creation .image blockquote .auteur {
    font-family: "Mundial", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
  }
  .body__accueil-creation .text {
    order: 2;
    text-align: left;
  }
  .body__accueil-creation h2 {
    width: 100%;
  }
  .body__accueil-creation .image {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-creation .text {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-photogravure {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .body__accueil-photogravure .image {
    background: linear-gradient(to bottom, rgba(0, 76, 110, 0.05) 0%, rgba(0, 76, 110, 0.1) 60%, rgb(0, 76, 110) 100%), url("../medias/images/4.illustrations.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 0;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4/3;
    padding: 8px 12px;
    margin-bottom: 2rem;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .body__accueil-photogravure .image blockquote {
    font-family: "superior-title", serif;
    font-style: normal;
    font-weight: 100;
    color: #fbfdff;
    font-size: 0.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .body__accueil-photogravure .image blockquote .auteur {
    font-family: "Mundial", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
  }
  .body__accueil-photogravure .text {
    order: 1;
    text-align: left;
  }
  .body__accueil-photogravure h2 {
    width: 100%;
  }
  .body__accueil-photogravure .image {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-photogravure .text {
    max-width: calc(50% - 1rem);
  }
  .body__accueil-logiciels .viewport {
    align-items: normal;
    width: 80%;
    overflow: hidden;
  }
  .body__accueil-logiciels .viewport .logiciels {
    transition: transform 0.4s ease;
    width: 180%;
  }
  .body__accueil-logiciels .viewport .logiciels-card {
    flex: 1;
    width: 16.6666666667%;
  }
  .body__accueil-book .projets {
    padding: 0 4.5rem;
  }
  .body__accueil-book .projets .my-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
    margin: 30px 0; /* raccourcit visuellement le thumb */
  }
  .body__accueil-book .projets .projets-liste {
    padding: 1.5rem 1rem 3rem;
  }
  .body__accueil-book .projets .projets-liste .projet-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  }
  .body__accueil-book .projets .projets-liste .projet-card:hover img {
    transition: transform 0.5s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    transform: scale(1.05) rotateZ(1deg);
  }
  .body__accueil-book .projets .projets-liste .projet-card.active {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  }
  .body__accueil-book .projets .projets-liste .projet-card.faded {
    opacity: 0.5;
    transform: scale(0.95);
  }
  .body__accueil-slogan .slogan-groupe img {
    width: 50px;
  }
  .body__accueil-contact {
    padding: 6rem 4rem;
  }
  .body__accueil-contact form {
    max-width: 1000px;
    margin: 0 auto;
  }
  .body__accueil-contact form fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .body__accueil-contact form fieldset .left,
  .body__accueil-contact form fieldset .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 320px;
  }
  .body__accueil-contact form fieldset > div:last-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
  }
  .body__accueil-contact form fieldset input,
  .body__accueil-contact form fieldset textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .body__accueil-contact form fieldset textarea {
    flex: 1;
  }
  .body__accueil-contact form fieldset .captcha-wrap {
    width: 100%;
    align-items: center;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    position: relative;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha img {
    width: 100%;
    height: auto;
    border: 2px solid #022f44;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input {
    width: 100%;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input input[type=text] {
    width: 340px;
    flex: 1;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button {
    background-color: #0d834c;
    font-family: "Outfit", sans-serif;
    color: #fbfdff;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button:hover {
    filter: brightness(90%);
    transform: translateY(-2px);
  }
  .body__accueil-contact form fieldset .captcha-wrap .captcha .wrap-captcha-input button:active {
    filter: brightness(80%);
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  :root {
    --font-size-base: 16px;
    --font-size-smaller: 14px;
    --font-size-titres: 60px;
    --font-size-quotes: 1rem;
    --font-size-small: 1rem;
    --font-size-large: 1.1rem;
    --font-size-larger: 1.45rem;
  }
  .body__accueil p {
    font-weight: 400;
  }
  .body__accueil blockquote.citation {
    font-size: var(--font-size-quotes);
  }
  .body__accueil p {
    font-size: var(--font-size-base);
  }
  .body__accueil p.important2 {
    font-size: var(--font-size-base);
  }
  .body__accueil .important2 {
    font-size: var(--font-size-base);
  }
  .body__accueil-accroche {
    min-height: 80vh;
    padding: 6rem 8rem;
  }
  .body__accueil-logiciels .viewport {
    width: 60%;
  }
  .body__accueil-logiciels .viewport .logiciels {
    width: 160%;
  }
  .body__accueil-identite h3 {
    font-size: 2.5rem;
    max-width: 25vw;
  }
  .body__accueil-identite h3 span::after {
    font-size: 6rem;
  }
  .body__accueil-identite .ellipse {
    max-width: 560px;
  }
  .body__accueil-identite .ellipse p {
    line-height: 1.35rem;
  }
  .body__accueil-identite .ellipse::before {
    top: 80%;
  }
  .body__accueil-pourquoi, .body__accueil-edition, .body__accueil-creation, .body__accueil-photogravure {
    padding: 4rem 8rem;
    justify-content: center;
  }
  .body__accueil-pourquoi .image,
  .body__accueil-pourquoi .text, .body__accueil-edition .image,
  .body__accueil-edition .text, .body__accueil-creation .image,
  .body__accueil-creation .text, .body__accueil-photogravure .image,
  .body__accueil-photogravure .text {
    width: calc(50% - 1rem);
    max-width: 500px;
  }
  .body__accueil-equipe .management .org-node {
    width: fit-content;
  }
  .body__accueil-equipe .org-chart {
    width: 75%;
  }
  .body__accueil-book .projets {
    scrollbar-width: thin;
    scroll-padding-left: 8rem;
    scroll-padding-right: 8rem;
    padding: 0 10vw;
  }
  .body__accueil-book .projets::-webkit-scrollbar {
    height: 8px; /* taille horizontale */
  }
  .body__accueil-book .projets::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 2rem; /* ← ça simule un "padding" au début et à la fin */
  }
  .body__accueil-book .projets::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  .body__accueil-slogan {
    min-height: 22vh;
  }
  .body__accueil-slogan p {
    font-size: var(--font-size-larger);
  }
}
@media (min-width: 1680px) {
  .body__accueil-accroche h1 {
    font-size: 3.8rem;
    max-width: 40vw;
  }
  .body__accueil-accroche div p {
    font-size: 2.8rem;
  }
  .body__accueil-accroche a {
    font-size: 1.2rem;
  }
}
/* 3. Reset / Normalize */
/* 1. Variables */
/* 2. Mixins & Functions */
/* ==============================
   mentions-legales.scss
   Style élégant inspiré Home
   Mobile First + Breakpoints
============================== */
.body__mentions {
  font-family: "Mundial", sans-serif;
  color: #022f44;
  background-color: #f7f6fe;
}
.body__mentions main#mentions-legales {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 2rem 1rem;
}
.body__mentions main#mentions-legales header {
  text-align: center;
  margin: 1rem 1rem;
}
.body__mentions main#mentions-legales header h1 {
  font-family: "superior-title", serif;
  font-size: 2rem;
  color: #022f44;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}
.body__mentions main#mentions-legales header h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #004c6e;
  margin: 0.5rem auto 0 auto;
  border-radius: 0.25rem;
}
.body__mentions main#mentions-legales section {
  background: #fbfdff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.body__mentions main#mentions-legales section h2 {
  font-family: "superior-title", serif;
  font-size: 1.5rem;
  color: #013146;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}
.body__mentions main#mentions-legales section article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.body__mentions main#mentions-legales section article h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  color: #004c6e;
  margin-bottom: 0.5rem;
}
.body__mentions main#mentions-legales section article p {
  font-size: 14px;
  line-height: 1.6;
}
.body__mentions main#mentions-legales section article p a {
  color: #022f44;
  text-decoration: underline;
}
.body__mentions main#mentions-legales section article p a:hover {
  color: rgb(0.5428571429, 12.7571428571, 18.4571428571);
}
.body__mentions main#mentions-legales section article address {
  font-style: normal;
  font-family: "Mundial", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #495057;
  margin-top: 0.25rem;
}
.body__mentions main#mentions-legales section article address p {
  margin-bottom: 0.25rem;
}

/* --------------------------
   Breakpoints
-------------------------- */
@media (min-width: 768px) {
  .body__mentions main#mentions-legales {
    padding: 0 2rem;
  }
  .body__mentions main#mentions-legales header h1 {
    font-size: 2.5rem;
  }
  .body__mentions main#mentions-legales section {
    padding: 2.5rem;
    gap: 1rem;
  }
  .body__mentions main#mentions-legales section h2 {
    font-size: 1.75rem;
  }
  .body__mentions main#mentions-legales section article h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .body__mentions main#mentions-legales {
    padding: 0 4rem;
  }
  .body__mentions main#mentions-legales header h1 {
    font-size: 3rem;
  }
  .body__mentions main#mentions-legales section {
    padding: 3rem 4rem;
    gap: 1rem;
  }
  .body__mentions main#mentions-legales section h2 {
    font-size: 2rem;
  }
  .body__mentions main#mentions-legales section article h3 {
    font-size: 1.5rem;
  }
  .body__mentions main#mentions-legales section p {
    font-size: 1rem;
  }
}
@media (min-width: 1680px) {
  .body__mentions main#mentions-legales {
    max-width: 1140px;
    margin: 2rem auto;
  }
  .body__mentions main#mentions-legales header h1 {
    font-size: 3rem;
  }
  .body__mentions main#mentions-legales section h2 {
    font-size: 2rem;
  }
  .body__mentions main#mentions-legales article h3 {
    font-size: 1.4rem;
  }
}
/* 3. Reset / Normalize */
/* 1. Variables */
/* 2. Mixins & Functions */
/* 8. Utilitaires (helpers, classes utilitaires) */

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