@charset "UTF-8";
/*
* Feuille de style global, réunissant l'ensemble des appels
* 
*/
/*
* Remise à zéro des styles
*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  box-sizing: border-box;
  z-index: 1;
  font-size: 1em;
}

:root,
body,
html {
  --background-body: #000a1d;
}

:root {
  font-size: 16px;
}

body {
  background-color: var(--background-body);
  position: relative;
  z-index: 0;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  color: hsl(35, 68%, 87%);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  width: 100%;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/*
* Définitions des Mixins
*/
/*
  Utiliser comme ca : 
  @include responsive-only(portable) {
    grid-template-columns: 1fr;
  }
*/
/*
  Applique les règles EN DESSOUS du breakpoint (exclu) :
  @include responsive-under(tablette) {
    grid-template-columns: 1fr;
  }
*/
/*
* Définitions des règles générales pour les élements flex
*/
.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: center;
}
.flex--g1 {
  gap: 1em;
}
.flex--gp1 {
  gap: 1em;
  padding: 1em;
}
.flex--g2 {
  gap: 2em;
}
.flex--gp2 {
  gap: 2em;
  padding: 2em;
}
.flex--g3 {
  gap: 3em;
}
.flex--gp3 {
  gap: 3em;
  padding: 3em;
}
.flex--g4 {
  gap: 4em;
}
.flex--gp4 {
  gap: 4em;
  padding: 4em;
}
.flex--spar {
  justify-content: space-around;
}
.flex--center {
  justify-content: center;
}
.flex--spab {
  justify-content: space-between;
}
.flex--start {
  justify-content: flex-start;
}
.flex--end {
  justify-content: flex-end;
}
.flex--col {
  flex-direction: column;
}
.flex--nw {
  flex-wrap: nowrap;
}
.flex--aliStart {
  align-items: flex-start;
}
.flex--aliCenter {
  align-items: center;
}
.flex--aliStretch {
  align-items: stretch;
}
.flex--aliEnd {
  align-items: flex-end;
}

.fl--1 {
  flex: 1;
}
.fl--2 {
  flex: 2;
}
.fl--3 {
  flex: 3;
}
.fl--4 {
  flex: 4;
}
.fl--5 {
  flex: 5;
}
.fl--6 {
  flex: 6;
}
.fl--7 {
  flex: 7;
}
.fl--8 {
  flex: 8;
}
.fl--9 {
  flex: 9;
}
.fl--10 {
  flex: 10;
}
.fl--11 {
  flex: 11;
}
.fl--12 {
  flex: 12;
}
.fl--13 {
  flex: 13;
}
.fl--14 {
  flex: 14;
}
.fl--15 {
  flex: 15;
}
.fl--full {
  min-width: 100%;
}

/*
* Définitions des règles générales pour les espacements entre éléments
*/
.pad--1 {
  padding: 1em;
}
.pad--t1 {
  padding-top: 1em;
}
.pad--r1 {
  padding-right: 1em;
}
.pad--l1 {
  padding-left: 1em;
}
.pad--b1 {
  padding-bottom: 1em;
}
.pad--vert1 {
  padding-bottom: 1em;
  padding-top: 1em;
}
.pad--horiz1 {
  padding-left: 1em;
  padding-right: 1em;
}
.pad--2 {
  padding: 2em;
}
.pad--t2 {
  padding-top: 2em;
}
.pad--r2 {
  padding-right: 2em;
}
.pad--l2 {
  padding-left: 2em;
}
.pad--b2 {
  padding-bottom: 2em;
}
.pad--vert2 {
  padding-bottom: 2em;
  padding-top: 2em;
}
.pad--horiz2 {
  padding-left: 2em;
  padding-right: 2em;
}
.pad--3 {
  padding: 3em;
}
.pad--t3 {
  padding-top: 3em;
}
.pad--r3 {
  padding-right: 3em;
}
.pad--l3 {
  padding-left: 3em;
}
.pad--b3 {
  padding-bottom: 3em;
}
.pad--vert3 {
  padding-bottom: 3em;
  padding-top: 3em;
}
.pad--horiz3 {
  padding-left: 3em;
  padding-right: 3em;
}
.pad--4 {
  padding: 4em;
}
.pad--t4 {
  padding-top: 4em;
}
.pad--r4 {
  padding-right: 4em;
}
.pad--l4 {
  padding-left: 4em;
}
.pad--b4 {
  padding-bottom: 4em;
}
.pad--vert4 {
  padding-bottom: 4em;
  padding-top: 4em;
}
.pad--horiz4 {
  padding-left: 4em;
  padding-right: 4em;
}
.pad--5 {
  padding: 5em;
}
.pad--t5 {
  padding-top: 5em;
}
.pad--r5 {
  padding-right: 5em;
}
.pad--l5 {
  padding-left: 5em;
}
.pad--b5 {
  padding-bottom: 5em;
}
.pad--vert5 {
  padding-bottom: 5em;
  padding-top: 5em;
}
.pad--horiz5 {
  padding-left: 5em;
  padding-right: 5em;
}
.pad--6 {
  padding: 6em;
}
.pad--t6 {
  padding-top: 6em;
}
.pad--r6 {
  padding-right: 6em;
}
.pad--l6 {
  padding-left: 6em;
}
.pad--b6 {
  padding-bottom: 6em;
}
.pad--vert6 {
  padding-bottom: 6em;
  padding-top: 6em;
}
.pad--horiz6 {
  padding-left: 6em;
  padding-right: 6em;
}
.pad--7 {
  padding: 7em;
}
.pad--t7 {
  padding-top: 7em;
}
.pad--r7 {
  padding-right: 7em;
}
.pad--l7 {
  padding-left: 7em;
}
.pad--b7 {
  padding-bottom: 7em;
}
.pad--vert7 {
  padding-bottom: 7em;
  padding-top: 7em;
}
.pad--horiz7 {
  padding-left: 7em;
  padding-right: 7em;
}
.pad--8 {
  padding: 8em;
}
.pad--t8 {
  padding-top: 8em;
}
.pad--r8 {
  padding-right: 8em;
}
.pad--l8 {
  padding-left: 8em;
}
.pad--b8 {
  padding-bottom: 8em;
}
.pad--vert8 {
  padding-bottom: 8em;
  padding-top: 8em;
}
.pad--horiz8 {
  padding-left: 8em;
  padding-right: 8em;
}
.pad--9 {
  padding: 9em;
}
.pad--t9 {
  padding-top: 9em;
}
.pad--r9 {
  padding-right: 9em;
}
.pad--l9 {
  padding-left: 9em;
}
.pad--b9 {
  padding-bottom: 9em;
}
.pad--vert9 {
  padding-bottom: 9em;
  padding-top: 9em;
}
.pad--horiz9 {
  padding-left: 9em;
  padding-right: 9em;
}

.marge--1 {
  margin: 1em;
}
.marge--t1 {
  margin-top: 1em;
}
.marge--r1 {
  margin-right: 1em;
}
.marge--l1 {
  margin-left: 1em;
}
.marge--b1 {
  margin-bottom: 1em;
}
.marge--vert1 {
  margin-bottom: 1em;
  margin-top: 1em;
}
.marge--horiz1 {
  margin-left: 1em;
  margin-right: 1em;
}
.marge--2 {
  margin: 2em;
}
.marge--t2 {
  margin-top: 2em;
}
.marge--r2 {
  margin-right: 2em;
}
.marge--l2 {
  margin-left: 2em;
}
.marge--b2 {
  margin-bottom: 2em;
}
.marge--vert2 {
  margin-bottom: 2em;
  margin-top: 2em;
}
.marge--horiz2 {
  margin-left: 2em;
  margin-right: 2em;
}
.marge--3 {
  margin: 3em;
}
.marge--t3 {
  margin-top: 3em;
}
.marge--r3 {
  margin-right: 3em;
}
.marge--l3 {
  margin-left: 3em;
}
.marge--b3 {
  margin-bottom: 3em;
}
.marge--vert3 {
  margin-bottom: 3em;
  margin-top: 3em;
}
.marge--horiz3 {
  margin-left: 3em;
  margin-right: 3em;
}
.marge--4 {
  margin: 4em;
}
.marge--t4 {
  margin-top: 4em;
}
.marge--r4 {
  margin-right: 4em;
}
.marge--l4 {
  margin-left: 4em;
}
.marge--b4 {
  margin-bottom: 4em;
}
.marge--vert4 {
  margin-bottom: 4em;
  margin-top: 4em;
}
.marge--horiz4 {
  margin-left: 4em;
  margin-right: 4em;
}
.marge--5 {
  margin: 5em;
}
.marge--t5 {
  margin-top: 5em;
}
.marge--r5 {
  margin-right: 5em;
}
.marge--l5 {
  margin-left: 5em;
}
.marge--b5 {
  margin-bottom: 5em;
}
.marge--vert5 {
  margin-bottom: 5em;
  margin-top: 5em;
}
.marge--horiz5 {
  margin-left: 5em;
  margin-right: 5em;
}
.marge--6 {
  margin: 6em;
}
.marge--t6 {
  margin-top: 6em;
}
.marge--r6 {
  margin-right: 6em;
}
.marge--l6 {
  margin-left: 6em;
}
.marge--b6 {
  margin-bottom: 6em;
}
.marge--vert6 {
  margin-bottom: 6em;
  margin-top: 6em;
}
.marge--horiz6 {
  margin-left: 6em;
  margin-right: 6em;
}
.marge--7 {
  margin: 7em;
}
.marge--t7 {
  margin-top: 7em;
}
.marge--r7 {
  margin-right: 7em;
}
.marge--l7 {
  margin-left: 7em;
}
.marge--b7 {
  margin-bottom: 7em;
}
.marge--vert7 {
  margin-bottom: 7em;
  margin-top: 7em;
}
.marge--horiz7 {
  margin-left: 7em;
  margin-right: 7em;
}
.marge--8 {
  margin: 8em;
}
.marge--t8 {
  margin-top: 8em;
}
.marge--r8 {
  margin-right: 8em;
}
.marge--l8 {
  margin-left: 8em;
}
.marge--b8 {
  margin-bottom: 8em;
}
.marge--vert8 {
  margin-bottom: 8em;
  margin-top: 8em;
}
.marge--horiz8 {
  margin-left: 8em;
  margin-right: 8em;
}
.marge--9 {
  margin: 9em;
}
.marge--t9 {
  margin-top: 9em;
}
.marge--r9 {
  margin-right: 9em;
}
.marge--l9 {
  margin-left: 9em;
}
.marge--b9 {
  margin-bottom: 9em;
}
.marge--vert9 {
  margin-bottom: 9em;
  margin-top: 9em;
}
.marge--horiz9 {
  margin-left: 9em;
  margin-right: 9em;
}

/*
* Définitions des règles générales pour les textes
*/
.tac, .tac .text-block, .tac ul,
.tac ol, .tac p, .tac h4 {
  text-align: center;
}
.taj, .taj .text-block, .taj ul,
.taj ol, .taj p, .taj h4 {
  text-align: justify;
}
.tal, .tal .text-block, .tal ul,
.tal ol, .tal p, .tal h4 {
  text-align: left;
}
.tar, .tar .text-block, .tar ul,
.tar ol, .tar p, .tar h4 {
  text-align: right;
}
.content-block {
  width: 90%;
  margin: 1em auto;
}

.text-block, ul,
ol, p, h4 {
  line-height: 1.5;
}

h1 {
  font-size: 4rem;
  color: #efc383;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 3rem;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 20%;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #efc383;
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #efc383;
  width: fit-content;
}
h3::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #efc383;
  margin-top: 1.5rem;
  margin-inline: 0 auto;
}
.tac h3::before, .tac .text-block h3::before, .tac ul h3::before,
.tac ol h3::before, .tac p h3::before, .tac h4 h3::before, h3.tac::before, .tac h3.text-block::before {
  margin-inline: auto;
}
.tar h3::before, .tar .text-block h3::before, .tar ul h3::before,
.tar ol h3::before, .tar p h3::before, .tar h4 h3::before, h3.tar::before, .tar h3.text-block::before {
  margin-inline: auto 0;
}

h4 {
  text-decoration: underline;
  --elem-color: #042a2b;
  color: var(--elem-color);
}
h4--secondary {
  --elem-color: #5eb1bf;
}
h4--tercary {
  --elem-color: #c3bf6a;
}

h5 {
  font-size: 0.8em;
}

ul,
ol {
  padding-left: 1em;
}

small {
  font-size: 0.75em;
}

.c-primary {
  color: #042a2b;
}

.c-secondary {
  color: #5eb1bf;
}

.c-tercary {
  color: #c3bf6a;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #000;
}

sup {
  font-size: 0.8em;
}

/*
* Définitions des règles générales pour les img
*/
img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/*
* Définitions des règles générales pour les liens
*/
.link {
  display: inline-block;
  font-family: inherit;
  color: #efc383;
  text-decoration: none;
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.15s ease-in-out;
}
.link:hover, .link:focus {
  background-size: 100% 2px;
}

/*
* Écran de chargement affiché tant que les assets ne sont pas chargés
*/
.loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000a1d;
  transition: opacity 0.5s ease-in-out;
}
.loader-cercle {
  width: 3rem;
  height: 3rem;
  border: solid 2px rgba(239, 195, 131, 0.25);
  border-top-color: #efc383;
  border-radius: 50%;
  animation: loader-rotation 0.8s linear infinite;
}
.loader--hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes loader-rotation {
  to {
    transform: rotate(360deg);
  }
}
/*
* Définitions des règles générales pour le footer
*/
footer {
  padding: 1.25rem 1.5rem 3rem;
  text-align: center;
  position: relative;
}
footer::before {
  content: "";
  margin: 0 auto;
  display: block;
  height: 1px;
  background-color: #efc383;
  width: 80%;
  position: absolute;
  top: 0;
  left: 10%;
}
footer p {
  color: #808080;
  font-size: 0.75rem;
  margin: 0;
}

/*
* Overlay de grain appliqué sur l'ensemble du site
*/
.noise {
  position: absolute;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background-image: url("../assets/noise.png");
  background-repeat: repeat;
  background-size: 1024px;
  opacity: 3%;
}

.separateur {
  width: 100%;
  margin-bottom: 2em;
  margin-top: 2em;
  padding: 0 2em;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.separateur img {
  display: block;
  height: 2em;
  width: 2em;
  object-fit: contain;
}
.separateur::before, .separateur::after {
  content: "";
  display: block;
  flex: 1;
  max-width: 10rem;
  height: 2px;
  border-radius: 1px;
  background-color: #efc383;
}

section {
  padding: 5rem 1.5rem;
  border-bottom: solid 1px #efc383;
}
@media screen and (max-width: 767px) {
  section {
    padding: 3rem 1.5rem;
  }
}

/*
* Définitions des règles générales pour les scrollBars
*/
*::-webkit-scrollbar {
  width: 0.25rem;
}
* {
  /* Track */
}
*::-webkit-scrollbar-track {
  background: --background-body;
  border-radius: 0.5rem;
}
* {
  /* Handle */
}
*::-webkit-scrollbar-thumb {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}

/*
* Définitions des règles initial pour les HTMLelements <mb-details>
*/
mb-details {
  box-sizing: content-box;
  display: block;
  padding-bottom: 1em;
  border-bottom: solid thin #fff;
}
mb-details:last-child {
  border-bottom: none;
}
mb-details summary {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #efc383;
  position: relative;
  cursor: pointer;
  padding-left: 2em;
}
mb-details summary::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 1em;
  transform: translate(-50%, -50%);
  border-width: 0.4rem;
  border-style: solid;
  border-color: transparent;
  border-left-color: inherit;
  transform-origin: 50% 50%;
  transition: 0.3s ease-in-out;
}
mb-details .mb-details-content {
  padding-left: 2em;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: MB_Details_Anim_Close;
}
mb-details[open] > summary::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
mb-details[open] > .mb-details-content {
  animation-name: MB_Details_Anim_Open;
}
mb-details[opening] * {
  pointer-events: none !important;
  transition: 0s !important;
}

@keyframes MB_Details_Anim_Open {
  0% {
    opacity: 0;
    font-size: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(0.5);
    opacity: 0;
    font-size: 1em;
  }
  100% {
    transform: scale(1);
    font-size: 1em;
    opacity: 1;
  }
}
@keyframes MB_Details_Anim_Close {
  0% {
    opacity: 1;
    font-size: 1em;
  }
  20% {
    font-size: 1em;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    font-size: 0;
  }
}
a,
.link,
mb-details summary,
button {
  cursor: none;
}

a:focus,
a:active {
  cursor: pointer;
}

/*
* Définitions des règles initial pour les HTMLelements <mb-navbar>
*/
:root {
  --navbar-height: 5rem;
}

.mb-navbar {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: stretch;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3333333333);
  backdrop-filter: blur(5px);
  border-bottom: solid 2px #efc383;
  padding: 0 1.5rem;
  gap: 2em;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mb-navbar-part {
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  font-size: 1.25rem;
  gap: 1em;
  justify-content: space-between;
  min-width: 50%;
}
.mb-navbar-logo {
  flex-shrink: 0;
  flex-grow: 1;
  height: var(--navbar-height);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}
.mb-navbar-logo a {
  color: #efc383;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}
.mb-navbar-logo img,
.mb-navbar-logo svg {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.mb-navbar-toggler {
  display: none;
  height: 1em;
  width: 1em;
  font-size: 3em;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.mb-navbar-toggler div {
  background-color: #fff;
  font-size: 0.1em;
  height: 1em;
  width: 1em;
  position: absolute;
  border-radius: 1em;
}
.mb-navbar-toggler div:nth-of-type(1) {
  top: calc(20% - 0.5em);
  left: calc(50% - 0.5em);
}
.mb-navbar-toggler div:nth-of-type(2), .mb-navbar-toggler div:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transition: height 0.15s ease-in-out, width 0.15s ease-in-out, transform 0.3s ease-in-out;
  transform-origin: center center;
}
.mb-navbar-toggler div:nth-of-type(2) {
  transform: translate(-50%, -50%);
}
.mb-navbar-toggler div:nth-of-type(3) {
  transform: translate(-50%, -50%);
}
.mb-navbar-toggler div:nth-of-type(4) {
  top: calc(80% - 0.5em);
  left: calc(50% - 0.5em);
}
.mb-navbar-toggler:hover div:nth-of-type(2),
.mb-navbar-toggler:hover div:nth-of-type(3) {
  width: 5em;
  height: 0.5em;
}
.mb-navbar-toggler--cross div:nth-of-type(2),
.mb-navbar-toggler--cross div:nth-of-type(3) {
  width: 10em;
  height: 0.5em;
}
.mb-navbar-toggler--cross div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mb-navbar-toggler--cross div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mb-navbar--scrolled {
  background-color: #000611;
}
.mb-navbar--placeHolder {
  z-index: -10;
  opacity: 0 !important;
  pointer-events: none;
  position: fixed;
  top: -100vh;
  width: auto;
}
.mb-navbar--placeHolder,
.mb-navbar--placeHolder * {
  flex-shrink: 0;
  white-space: nowrap;
}
.mb-navbar--small {
  position: sticky;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  max-height: var(--navbar-height);
  gap: 2em;
  transition: max-height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}
.mb-navbar--small .mb-navbar-logo {
  order: 1;
  justify-content: center;
}
.mb-navbar--small .mb-navbar-part {
  order: 2;
  flex-direction: column;
}
.mb-navbar--small .mb-navbar-toggler {
  display: block;
}
.mb-navbar--small.mb-navbar--opened {
  max-height: 100vh;
  padding-bottom: 2em;
}

.approche-titre {
  margin-inline: auto;
  margin-bottom: 4rem;
}
.approche-titre::after {
  margin-inline: auto;
}
.approche-texte {
  width: min(60rem, 100%);
  margin-inline: auto;
  text-align: justify;
}

.contact {
  border-bottom: none;
}
.contact-titre {
  margin-inline: auto;
  margin-bottom: 4rem;
}
.contact-titre::after {
  margin-inline: auto;
}
.contact-grille {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-evenly;
  gap: 3rem;
  width: min(60rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-grille {
    grid-template-columns: auto;
    justify-content: center;
    gap: 2.5rem;
  }
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact-item-icone {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.contact-item-titre {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: hsl(35, 68%, 87%);
  margin: 0 0 0.5rem;
}
.contact-item-texte {
  color: hsl(35, 68%, 87%);
  margin: 0;
}

.faq-titre {
  margin-inline: auto;
  margin-bottom: 4rem;
}
.faq-titre::after {
  margin-inline: auto;
}
.faq-liste {
  width: min(50rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-question p,
.faq-question ul {
  color: hsl(35, 68%, 87%);
}
.faq-question ul li + li {
  margin-top: 0.5em;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-inline: 1.5rem;
  border-bottom: solid 2px #efc383;
  text-align: center;
  background-image: url(/assets/aurore-1788557352.png);
  background-size: cover;
  background-position: center bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.hero p {
  font-size: 1.5em;
  font-weight: 300;
  font-style: italic;
  color: hsl(35, 68%, 87%);
  margin: 0;
}
.hero h1 {
  word-spacing: 0.5em;
}
@media screen and (max-width: 1023px) {
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero h2 {
    font-size: 1.5em;
  }
  .hero p {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 369px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

.parcours-titre {
  margin-inline: auto;
  margin-bottom: 4rem;
}
.parcours-titre::after {
  margin-inline: auto;
}
.parcours-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.parcours-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #efc383;
}
.parcours-etape {
  position: relative;
  width: 50%;
  margin-top: -1em;
}
.parcours-etape-icone {
  background-color: var(--background-body);
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  z-index: 1;
}
.parcours-etape::before {
  content: "";
  position: absolute;
  top: calc(1rem - 1px);
  width: 4rem;
  height: 2px;
  background-color: #efc383;
}
.parcours-etape-titre {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #efc383;
  text-decoration: none;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.parcours-etape-texte {
  margin-top: 0;
}
.parcours-etape:nth-child(odd) {
  align-self: flex-end;
  padding-left: 7rem;
}
.parcours-etape:nth-child(odd) .parcours-etape-icone {
  left: 0;
  transform: translateX(-50%);
}
.parcours-etape:nth-child(odd)::before {
  left: 2rem;
}
.parcours-etape:nth-child(even) {
  align-self: flex-start;
  padding-right: 7rem;
  text-align: right;
}
.parcours-etape:nth-child(even) .parcours-etape-icone {
  right: 0;
  transform: translateX(50%);
}
.parcours-etape:nth-child(even)::before {
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .parcours-timeline {
    gap: 2rem;
  }
  .parcours-timeline::before {
    left: 1rem;
  }
  .parcours-etape {
    margin-top: 0em;
  }
  .parcours-etape:nth-child(odd), .parcours-etape:nth-child(even) {
    width: 100%;
    padding: 0 0 0 4rem;
    text-align: left;
  }
  .parcours-etape:nth-child(odd) .parcours-etape-icone, .parcours-etape:nth-child(even) .parcours-etape-icone {
    left: 1rem;
    right: auto;
    transform: translateX(-50%);
  }
  .parcours-etape:nth-child(odd)::before, .parcours-etape:nth-child(even)::before {
    left: 2rem;
    right: auto;
    width: 1.5rem;
  }
}

.presentation {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.presentation-image {
  grid-column: 2/6;
  grid-row: 1;
  position: relative;
  max-height: calc(80vh - var(--navbar-height));
  border-radius: 40% 40% 0.5rem 15%;
}
.presentation-image::before, .presentation-image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: solid thin #efc383;
  z-index: 0;
}
.presentation-image::after {
  top: -1em;
  left: -1em;
}
.presentation-image::before {
  top: 1em;
  left: 1em;
}
.presentation-image img {
  max-height: inherit;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presentation-texte {
  grid-column: 7/13;
  grid-row: 1;
}
.presentation-texte h3 {
  display: inline-block;
}
@media screen and (max-width: 1279px) {
  .presentation {
    display: block;
  }
  .presentation-image {
    float: left;
    width: min(40%, 22rem);
    margin: 0 3em 3em 0;
  }
  .presentation::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (max-width: 767px) {
  .presentation-image {
    float: none;
    width: min(100%, 22rem);
    margin: 0 auto 3em;
  }
}/*# sourceMappingURL=main.css.map */