:root {
  font-size: 14px;
}

body {
  margin: 0;
  z-index: 1;
  font-family: "Lexend Deca", serif!important;
}

#navbar{
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: white;
	-webkit-box-shadow: 0 4px 6px -6px #222;
  -moz-box-shadow: 0 4px 6px -6px #222;
  box-shadow: 0 4px 6px -6px #222;
}

.responsive-margins {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

span.rose {
  color: var(--rose-color);
}

.gris {
  color: #9a9a9f !important;
}

header {
  display: flex;
  flex-direction: column;
}
header #form_left, header #form_right {
  position: absolute;
  z-index: -1;
  top: 140px;
}
header #form_left {
  left: 0;
}
header #form_right {
  right: 0;
}
header #bandeau-header {
  position: relative;
  z-index: 2;
  display: flex;
  background-color: #F7F7F7;
  border-radius: 24px;
  overflow: hidden;
  max-height: 346px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
header #bandeau-header #header-left {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
}
header #bandeau-header #header-left h1 {
  color: #2F2E41;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  font-family: "Lexend Deca", serif!important;
}
header #bandeau-header #header-left h2 {
  color: #2F2E41;
  font-size: 1.13rem;
  font-weight: 600;
  margin: 0;
  max-width: 580px;
}
header #bandeau-header #header-left > div {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-right: auto;
}
header #bandeau-header #header-left > div > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
  margin-bottom: 0;
}
header #bandeau-header #header-left > div > ul li {
  display: flex;
  gap: 30px;
  align-items: center;
}
header #bandeau-header #header-left > div > ul li img, header #bandeau-header #header-left > div > ul li svg {
  width: 20px;
  height: 20px;
}
header #bandeau-header #header-left > div > ul li p {
  font-size: 1.13rem;
  color: #2F2E41;
  margin: 0;
}
header #bandeau-header #header-left > div > a {
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: 30px;
  text-decoration: none;
  color: white;
  background-color: var(--rose-color);
  padding: 18px 40px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: rgba(207, 11, 93, 0.2) 0 3px 8px;
}
header #bandeau-header #fleche-header-right {
  position: relative;
  top: 0;
  right: -1px;
}
header #bandeau-header #header-right {
  position: relative;
  background-color: #D6D6D6;
  padding: 50px 75px 50px 75px;
}
header #bandeau-header #header-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header #bandeau-chiffres {
  position: relative;
  margin-bottom: 20px;
  overflow-x: hidden;
  height: 120px;
}
header #bandeau-chiffres > div {
  width: 100%;
  position: absolute;
  left: 0;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
}
header #bandeau-chiffres > div.secondary {
  display: none;
}
header #bandeau-chiffres > div .chiffres-container {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid #dadada;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
header #bandeau-chiffres > div .chiffres-container #fusee {
  position: absolute;
  top: -10px;
  right: -10px;
}
header #bandeau-chiffres > div .chiffres-container > svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  fill: #2F2E41;
}
header #bandeau-chiffres > div .chiffres-container .chiffres-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header #bandeau-chiffres > div .chiffres-container .chiffres-content > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
header #bandeau-chiffres > div .chiffres-container .chiffres-content h3 {
  color: #2F2E41;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
header #bandeau-chiffres > div .chiffres-container .chiffres-content p {
  color: #2F2E41;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
}

#etapes {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F7F7F7;
}
#etapes h2 {
  color: #2F2E41;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 50px 0;
}
#etapes > div {
  width: 100%;
}
#etapes > div #liste-etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 35px;
  margin: 0 50px;
}
#etapes > div #liste-etapes .etape {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background-color: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 24px;
}
#etapes > div #liste-etapes .etape h3 {
  color: #2F2E41;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
#etapes > div #liste-etapes .etape p {
  font-size: 1.13rem;
  margin: 0;
}
#etapes #plus-etapes {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  font-family: inherit;
  color: white;
  background-color: var(--rose-color);
  padding: 18px 40px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: rgba(207, 11, 93, 0.3) 0 3px 8px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 200ms background-color;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
}
#etapes #plus-etapes:hover {
  background-color: #ba0a53;
}

#demarches {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 12px;
  gap: 20px;
}
#demarches h2 {
  color: #2F2E41;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 40px 0;
}
#demarches #liste-demarches, #demarches #liste-demarches-cachees {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 20px;
}
#demarches #liste-demarches .demarche, #demarches #liste-demarches-cachees .demarche {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #D6D6D6;
  cursor: pointer;
  text-decoration: none;
}
#demarches #liste-demarches .demarche .demarche-svg, #demarches #liste-demarches-cachees .demarche .demarche-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #fae7ef;
  border-radius: 12px;
}
#demarches #liste-demarches .demarche .demarche-svg > svg, #demarches #liste-demarches-cachees .demarche .demarche-svg > svg {
  width: 25px;
  height: 25px;
  fill: var(--rose-color);
}
#demarches #liste-demarches .demarche .demarche-content, #demarches #liste-demarches-cachees .demarche .demarche-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#demarches #liste-demarches .demarche .demarche-content h3, #demarches #liste-demarches-cachees .demarche .demarche-content h3 {
  color: #2F2E41;
  font-size: 1.3rem;
  font-weight: normal;
  margin: 0;
}
#demarches #liste-demarches .demarche p, #demarches #liste-demarches-cachees .demarche p {
  color: #535261;
  font-size: 1.13rem;
  margin: 0;
}
#demarches #plus-demarches, #demarches #moins-demarches {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  font-family: inherit;
  color: #2F2E41;
  padding: 15px 25px;
  border-radius: 12px;
  white-space: nowrap;
  border: 1px solid #D6D6D6;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: 200ms background-color;
  font-size: 1.13rem;
}
#demarches #plus-demarches:hover, #demarches #moins-demarches:hover {
  background-color: #f3f3f3;
}

#retours-client {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F7F7F7;
}
#retours-client > div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
#retours-client > div:first-child h2 {
  flex: 1 1 auto;
  color: #2F2E41;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 100px 0 0;
  white-space: nowrap;
}
#retours-client > div:first-child > svg {
  flex: 0 0 70px;
  margin-left: auto;
}
#retours-client > .responsive-margins {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#retours-client #liste-retours, #retours-client #liste-retours-cachees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
}
#retours-client #liste-retours .retour, #retours-client #liste-retours-cachees .retour {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background-color: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 24px;
}
#retours-client #liste-retours .retour > div, #retours-client #liste-retours-cachees .retour > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
#retours-client #liste-retours .retour > div img, #retours-client #liste-retours-cachees .retour > div img {
  width: 43px;
  height: 43px;
  border-radius: 999px;
}
#retours-client #liste-retours .retour > div h3, #retours-client #liste-retours-cachees .retour > div h3 {
  color: #2F2E41;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
#retours-client #liste-retours .retour > div > div, #retours-client #liste-retours-cachees .retour > div > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
#retours-client #liste-retours .retour > div > div svg, #retours-client #liste-retours-cachees .retour > div > div svg {
  color: #f0ad4e;
}
#retours-client #liste-retours .retour p, #retours-client #liste-retours-cachees .retour p {
  font-size: 1.13rem;
  margin: 0;
}
#retours-client #plus-retours, #retours-client #moins-retours {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-family: inherit;
  background-color: #FFFFFF;
  padding: 15px 25px;
  border-radius: 12px;
  white-space: nowrap;
  border: 2px solid #D6D6D6;
  outline: none;
  cursor: pointer;
  transition: 200ms background-color;
  font-size: 1.13rem;
}
#retours-client #plus-retours:hover, #retours-client #moins-retours:hover {
  background-color: #eaeaea;
}

#nos-partenaires {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  margin-bottom: 80px;
}
#nos-partenaires h2 {
  color: #2F2E41;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 60px 0;
}
#nos-partenaires #liste-partenaires {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: center;
  align-items: center;
}
#nos-partenaires #liste-partenaires .partenaire {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #A4A4A4;
  height: 70px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 8px;
}
#nos-partenaires #liste-partenaires .partenaire img {
  width: 70px;
  height: 100%;
  object-fit: contain;
}

#bandeau-rappel {
  padding: 80px 0;
  background-color: #F7F7F7;
}
#bandeau-rappel > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}
#bandeau-rappel > div > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#bandeau-rappel > div > div h2 {
  color: #2F2E41;
  font-size: 2.3rem;
  font-weight: 600;
  margin: 0;
}
#bandeau-rappel > div > div p {
  font-size: 1.13rem;
  margin: 0;
}
#bandeau-rappel > div > div > a {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: inherit;
  color: white;
  background-color: var(--rose-color);
  padding: 15px 25px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: rgba(207, 11, 93, 0.3) 0 3px 8px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 200ms background-color;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  margin-top: 40px;
}
#bandeau-rappel > div > div > a > svg {
  width: 20px;
  height: 20px;
}
#bandeau-rappel > div > div > a:hover {
  background-color: #ba0a53;
}

@media screen and (max-width: 1400px) {
  .responsive-margins {
    max-width: 900px;
  }
  header #bandeau-header {
    max-height: unset;
    display: block;
  }
  header #bandeau-header #fleche-header-right {
    display: none;
  }
  header #bandeau-header #header-right {
    background-color: transparent;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  header #bandeau-header #header-right img {
    object-fit: unset;
    width: unset;
    display: flex;
    height: 75%;
  }
  header #bandeau-chiffres {
    gap: 30px 40px;
  }
  header #bandeau-chiffres > div {
    width: inherit;
  }
  header #bandeau-chiffres > div.primary {
    animation: primary 25s linear infinite;
  }
  header #bandeau-chiffres > div.secondary {
    display: flex;
    animation: secondary 25s linear infinite;
  }
  header #form_left, header #form_right {
    display: none;
  }
  #etapes > div #liste-etapes {
    margin: 0;
    gap: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .responsive-margins {
    max-width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  .responsive-margins {
    max-width: 800px;
  }
  header {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  header #bandeau-header #header-left {
    padding: 25px;
  }
  header #bandeau-header #header-left > div {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start !important;
  }
  header #bandeau-header #header-left > div > a {
    margin-left: 0;
  }
  #etapes {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #etapes > div {
    width: unset;
  }
  #etapes > div #liste-etapes {
    grid-template-columns: 1fr;
  }
  #etapes #plus-etapes {
    margin-top: 40px;
  }
  #demarches {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #demarches #liste-demarches, #demarches #liste-demarches-cachees {
    grid-template-columns: repeat(2, 1fr);
  }
  #demarches > h2 {
    margin-bottom: 20px;
  }
  #retours-client #liste-retours, #retours-client #liste-retours-cachees {
    grid-template-columns: 1fr;
  }
  #bandeau-rappel {
    padding: 0 0 60px 0;
  }
  #bandeau-rappel > div {
    flex-direction: column;
    gap: 0;
  }
  #bandeau-rappel > div #svg-carte-grise {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    font-size: 13px;
  }
  .responsive-margins {
    max-width: 700px;
  }
  header #bandeau-header #header-left {
    box-sizing: content-box;
    padding: 30px;
  }
  header #bandeau-header #header-left > div > a {
    text-align: center;
    width: calc(100% - 80px);
  }
  #etapes #plus-etapes {
    box-sizing: border-box;
    width: calc(100% - 60px);
  }
  #demarches {
    gap: 15px;
  }
  #demarches #liste-demarches {
    gap: 15px;
  }
  #demarches #liste-demarches .demarche {
    grid-column: span 2;
  }
  #demarches #liste-demarches .demarche:nth-child(-n+4) {
    grid-column: span 1;
  }
  #demarches #liste-demarches .demarche:nth-child(-n+4) h3 {
    font-size: 1.2rem;
  }
  #demarches #liste-demarches .demarche:nth-child(-n+4) p {
    display: none;
  }
  #demarches #liste-demarches .demarche > svg {
    width: 40px;
    height: 40px;
  }
  #demarches #liste-demarches-cachees {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #demarches #liste-demarches-cachees .demarche > svg {
    width: 40px;
    height: 40px;
  }
  #demarches #plus-demarches, #demarches #moins-demarches {
    margin-top: 10px;
  }
  #retours-client {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #retours-client div:first-child {
    flex-direction: column;
  }
  #retours-client div:first-child h2 {
    margin-right: 20px;
  }
  #retours-client div:first-child > svg {
    margin-right: auto;
  }
  #retours-client #plus-retours, #retours-client #moins-retours {
    margin-top: 10px;
  }
  #nos-partenaires {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #nos-partenaires #liste-partenaires {
    gap: 20px;
  }
  #bandeau-rappel > div > div h2 {
    text-align: center;
    font-size: 1.5rem;
  }
  #bandeau-rappel > div > div p {
    text-align: center;
    font-size: 1.13rem;
  }
  #bandeau-rappel > div > div a {
    padding: 15px 25px;
    margin: 20px auto 0 auto;
  }
  #bandeau-rappel > div > div a > svg {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 600px) {
  header {
    margin: 0 !important;
    padding: 0 !important;
  }
  header #bandeau-header {
    border-radius: 0;
    box-shadow: none;
  }
  .responsive-margins {
    padding-left: 15px;
    padding-right: 15px;
  }
  #demarches #liste-demarches .demarche:nth-child(-n+4) {
    grid-column: span 2;
  }
  #demarches #liste-demarches .demarche:nth-child(-n+4) p {
    display: block;
  }
}
@keyframes primary {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 25px));
  }
}
@keyframes secondary {
  from {
    transform: translateX(calc(100% + 25px));
  }
  to {
    transform: translateX(0);
  }
}

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