:root {
  --blanc: #ffffff;
  --bleu: #2b53a0;
  --bleuFoncee: #0c295c;
  --mauve: #112445;
  --gris: #efeeee;
}
#cookies-configuration-link {
  cursor: pointer;
}
.cookies-action-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  /* margin-top: 1rem; */
  gap: 1rem;
  flex-shrink: 0;
}
.cookies_popup p {
  text-align: left;
  color: white;
}
.page-link {
  color: #a5a6a8;
}
.cookies_popup li {
  font-size: 1rem;
}
.cookies-container {
  flex-direction: column;
  color: var(--black);
}
.cookies-modal {
  position: relative;
  z-index: 999999999999;
  background-color: #fff;
  padding: 32px;
  width: 100%;
  height: auto;
  max-width: 700px;
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.cookies-modal > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookies-modal > div .popup-title {
  margin: 0;
  font-size: 1.3rem;
  color: black;
}
#cookies-modal-close-button {
  background-color: transparent;
  border: none;
  width: auto;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookies-modal-configuration-list {
  margin-top: 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  color: black;
  height: 80%;
}
.cookies-modal-list-item {
  width: 100%;
  position: relative;
  column-gap: 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.cookies-modal-list-item:last-of-type {
  border-bottom: 0;
}
.cookies-toggle-heading {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--black);
}
.cookies-modal-list-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookies-toggle-checkbox {
  display: none;
}
.cookies-toggle-label {
  flex-shrink: 0;
  width: 60px;
  height: 34px;
  background-color: #ccc;
  border-radius: 34px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: background-color 0.4s;
  margin: 0 auto;
}
.cookies-toggle-checkbox:disabled ~ .cookies-toggle-label {
  cursor: not-allowed;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label {
  background-color: #2b53a0;
}
.cookies-toggle-label::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: transform 0.4s;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label::before {
  transform: translateX(26px);
}
.cookies-toggle-text {
  display: block;
  color: black;
}
.cookies-modal > button {
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #2b53a0;
  border-radius: 24px;
  border: none;
  color: #fff;
  cursor: pointer;
}
.cookies-banner-close {
  transition: transform 500ms ease-in-out;
  transform: translateY(100%);
}
.cookies-configuration-modal {
  transition: opacity 500ms ease-in-out;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9999999999;
}
.cookies-modal-animate-open {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}
.cookies-modal-animate-close {
  transition: opacity 500ms ease-in-out;
  opacity: 0;
}
#cookies-consent-banner {
  display: none;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: #1b2846;
  box-sizing: border-box;
  z-index: 999999999;
}
.cookies-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookies-action-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .cookies-container {
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .cookies_popup .cookies-modal {
    width: 70%;
  }
}
@media (min-width: 420px) {
  .cookies_popup .cookies-modal {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .cookies_popup li {
    font-size: 90%;
  }
}
.cookies_popup button {
  border-radius: 20px;
}
#cookies-configuration-button {
  box-sizing: border-box;
  color: black;
  background-color: #fff;
  border: 2px solid black;
  padding: 12px 32px;
  min-width: 165px;
  cursor: pointer;
}
#cookies-decline-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #ca0b0f;
  background-color: #fff;
  border: 2px solid #ca0b0f;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-accept-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  /* Text-color */
  background-color: #2b53a0;
  padding: 12px 32px;
  min-width: 165px;
  border: 1px solid white;
}
.anim-opacity {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-opacity.actif {
  opacity: 1;
  transform: translateY(0);
}
.anim-translate {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.3s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-translate.actif {
  opacity: 1;
  transform: translateX(0);
}
.anim-only-opacity {
  opacity: 0;
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-only-opacity.actif {
  opacity: 1;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  position: relative;
  width: 100%;
  font-size: 16px;
  overflow-x: hidden !important;
}
html.disable-scroll {
  overflow-y: hidden;
}
body {
  font-family: 'Ubuntu', sans-serif;
}
p,
h1,
h2,
h3,
h4,
a,
b,
span,
.button {
  color: black;
}
a {
  text-decoration: unset;
  display: inline-block;
  max-width: fit-content;
}
a,
button {
  transition: all 400ms;
  cursor: pointer;
}
.btn {
  background-color: var(--bleu);
  color: var(--blanc);
  text-transform: uppercase;
  padding: 14px 50px;
  display: block;
  width: max-content;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 500;
  border: 1px solid transparent;
}
.btn:hover {
  background-color: transparent;
  border: 1px solid var(--blanc);
}
.btn-2 {
  background-color: var(--blanc);
  color: var(--bleu);
  text-transform: uppercase;
  padding: 14px 18px;
  display: block;
  width: max-content;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 500;
  border: 1px solid var(--bleu);
}
.btn-2:hover {
  background-color: var(--mauve);
  color: var(--blanc);
}
.btn-3 {
  background-color: var(--bleu);
  color: var(--blanc);
  text-transform: uppercase;
  padding: 14px 50px;
  display: block;
  width: max-content;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 500;
  border: 1px solid var(--blanc);
}
.btn-3:hover {
  background-color: var(--mauve);
}
.btn-4 {
  background-color: var(--mauve);
  color: var(--blanc);
  text-transform: uppercase;
  padding: 14px 50px;
  display: block;
  width: max-content;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 500;
  border: 1px solid transparent;
}
.btn-4:hover {
  background-color: var(--bleu);
  border: 1px solid var(--blanc);
}
.btn-5 {
  background-color: var(--blanc);
  color: var(--bleu);
  text-transform: uppercase;
  padding: 14px 54px;
  display: block;
  width: max-content;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 500;
  border: 1px solid var(--bleu);
}
.btn-5:hover {
  background-color: var(--mauve);
  color: var(--blanc);
}
img {
  width: 100%;
  height: auto;
  max-width: max-content;
  display: block;
}
main {
  position: relative;
}
.section-intro {
  z-index: 1;
  position: relative;
  margin-top: 160px;
}
.section-intro h1 {
  color: var(--mauve);
  text-transform: uppercase;
  font-size: 1.2em;
}
.section-intro h1 .break {
  font-weight: 300;
  display: block;
  color: var(--mauve);
}
.section-intro h1 .petit {
  font-size: 0.9em;
}
.section-intro h1 .no-weight {
  font-weight: unset;
}
.section-intro h2 {
  text-transform: uppercase;
  color: var(--mauve);
  margin-top: 30px;
  font-size: 1.1em;
}
.section-intro .container {
  display: flex;
  flex-direction: column;
  column-gap: 30px;
}
.section-intro .container .col-2 {
  margin-top: 45px;
}
.section-intro .container .col-2 img {
  min-width: 300px;
  max-width: 390px;
  width: 68%;
  margin: auto;
}
.section-form {
  margin-top: 40px;
}
.section-form .container-full {
  background-color: var(--gris);
}
.section-form .container-full h2,
.section-form .container-full h3 {
  text-transform: uppercase;
  font-size: 1.2em;
}
.section-form .container-full .col-1 {
  background-color: var(--mauve);
  padding-top: 30px;
  padding-bottom: 40px;
  row-gap: 60px;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}
.section-form .container-full .col-1 h2,
.section-form .container-full .col-1 h3,
.section-form .container-full .col-1 p,
.section-form .container-full .col-1 li,
.section-form .container-full .col-1 a {
  color: var(--blanc);
}
.section-form .container-full .col-1 a:hover {
  color: var(--bleu);
}
.section-form .container-full .col-1 .row-1 .container-p {
  margin-top: 30px;
  row-gap: 20px;
}
.section-form .container-full .col-1 .row-2 ul {
  margin-left: 16px;
}
.section-form .container-full .col-1 .row-2 .flex-column {
  margin-top: 20px;
  row-gap: 12px;
}
.section-form .container-full .col-2 {
  background-color: var(--gris);
  padding-top: 24px;
  padding-bottom: 30px;
}
.section-form .container-full .col-2 h2 {
  color: var(--mauve);
}
.section-form .container-full .col-2 form {
  margin-top: 30px;
}
.section-form .container-full .col-2 form .btn-5 {
  margin-top: 30px;
}
.container {
  width: 90%;
  margin: 0 auto;
}
.container-padding {
  padding-left: 5%;
  padding-right: 5%;
}
.container-padding-left {
  padding-left: 5%;
}
.container-padding-right {
  padding-right: 5%;
}
.flex-row {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-switch {
  display: flex;
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}
header ul li {
  transition: background-color 0.3s linear, color 0.2s linear;
}
header .header-mobile {
  width: 100%;
  position: fixed;
  padding: 8px 0;
}
header .header-mobile .container {
  width: unset;
  padding-left: 5%;
}
header .header-mobile .container .flex-row {
  justify-content: space-between;
  align-items: center;
}
header .header-mobile .container .flex-row .logo {
  width: 130px;
}
header .header-mobile .container .flex-row .logo.invisible {
  display: none;
}
header .header-mobile .container .flex-row .burger-container {
  background-color: var(--bleu);
  width: 50%;
  border-radius: 8px 0px 0px 8px;
  padding: 10px 0 10px 16px;
  max-width: 360px;
  margin-left: auto;
}
header .header-mobile .container .flex-row .burger-container #burger {
  cursor: pointer;
}
header .header-mobile .container .flex-row .burger-container #burger .line {
  width: 33px;
  background-color: white;
  height: 5px;
  margin: 5px 0;
  border-radius: 0px;
  transform-origin: 6% 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .header-mobile .container .flex-row .burger-container #burger.actif .line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
header .header-mobile .container .flex-row .burger-container #burger.actif .line:nth-child(2) {
  opacity: 0;
}
header .header-mobile .container .flex-row .burger-container #burger.actif .line:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
header .header-screen {
  display: none;
}
.menu-mobile {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: -200vh;
  padding-top: 150px;
  background-color: var(--jaune);
  z-index: 2;
  padding-left: 22px;
  transition: top 0.5s ease;
  background-color: var(--blanc);
}
.menu-mobile li {
  font-size: 1.2em;
  margin: 14px 0;
}
.menu-mobile li a {
  text-transform: uppercase;
}
.menu-mobile.actif {
  top: 0;
}
.w-100 {
  width: 100%;
}
.banner {
  position: relative;
}
.banner-content {
  position: absolute;
}
hr {
  background-color: var(--blanc);
  color: #b11819;
  height: 9px;
}
.hr-container {
  display: flex;
  align-items: center;
}
.hr-container span {
  font-size: 1.2em;
  font-weight: 600;
}
.elm-absolute {
  position: absolute;
}
.decoratif {
  top: 0%;
  left: 0%;
  display: block;
  z-index: -1;
  display: none;
}
ul {
  list-style: none;
  display: list-item;
}
.bold {
  font-weight: bold;
}
input[name="name"] {
  display: none;
}
input,
textarea {
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
}
.input-container {
  margin-bottom: 14px;
}
input:not([type="submit"]),
textarea {
  width: 100%;
  padding: 18px 11px;
  border-radius: 12px;
  border: 1px solid var(--bleu);
}
input::placeholder,
textarea::placeholder {
  font-weight: 500;
}
input[type="submit"] {
  border: 0;
}
select {
  background-color: var(--blanc);
  padding: 4px 6px;
  min-width: 205px;
  cursor: pointer;
}
input[type="file"] {
  display: none;
}
label[for="upload"] {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: fit-content;
}
label[for="upload"] img {
  max-width: 50px;
}
label[for="upload"]:hover span {
  color: var(--bleu);
}
.uploaded-files {
  margin-top: 10px;
}
.form-error {
  color: red;
  font-weight: bold;
  margin-bottom: 12px;
}
.input-error {
  border: 3px solid red !important;
}
.fields-error {
  color: red;
  font-weight: bold;
}
.message-success {
  display: block;
  padding: 10px 12px;
  background-color: #ddfad9;
  border: 1px solid #288d1b;
  color: #288d1b;
}
footer .container .row-1 a:hover,
footer .container .row-2 a:hover {
  color: var(--bleu);
}
footer .container > .row-1 > .flex-switch .col-1 {
  text-align: center;
  margin-top: 30px;
}
footer .container > .row-1 > .flex-switch .col-1 .logo {
  width: 130px;
}
footer .container > .row-1 > .flex-switch .col-2 {
  margin-top: 48px;
}
footer .container > .row-1 > .flex-switch .col-2 .row-1 nav {
  display: none;
}
footer .container > .row-1 > .flex-switch .col-2 .row-1 nav ul li {
  position: relative;
  padding: 19px 0;
}
footer .container > .row-1 > .flex-switch .col-2 .row-1 nav ul li a {
  color: var(--bleu);
  font-weight: 500;
}
footer .container > .row-1 > .flex-switch .col-2 .row-1 nav ul li hr {
  background-color: var(--bleu);
  border: unset;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease;
}
footer .container > .row-1 > .flex-switch .col-2 .row-2 {
  text-align: center;
  align-items: center;
  margin-bottom: 60px;
}
footer .container > .row-2 {
  margin-bottom: 60px;
}
footer .container > .row-2 > .flex-switch .col-1 {
  text-align: center;
  margin-top: 10px;
}
footer .container > .row-2 > .flex-switch .col-1 .logo {
  width: 130px;
}
footer .container > .row-2 > .flex-switch .col-2 {
  margin-top: 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .section-intro h1 {
    font-size: 1.5em;
  }
  .section-intro h1 .petit {
    font-size: 0.9em;
  }
  .section-intro h2 {
    font-size: 1.1em;
  }
  .section-intro .container {
    flex-direction: row;
  }
  .section-intro .container .col-1 {
    width: 50%;
  }
  .section-intro .container .col-2 {
    width: 50%;
    margin-top: 0;
  }
  .section-intro .container .col-2 img {
    width: 100%;
    min-width: unset;
    max-width: max-content;
  }
  .section-form .container-full .col-1 {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
  }
  .section-form .container-full .col-1 .row-1 {
    width: 50%;
  }
  .section-form .container-full .col-1 .row-2 {
    width: 50%;
  }
  .section-form .container-full .col-1 .row-2 .flex-column {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  .flex-switch {
    flex-direction: row;
    justify-content: space-between;
  }
  hr {
    width: 100%;
  }
  .break {
    display: block;
  }
  header .header-mobile {
    display: none;
  }
  header .header-screen {
    display: flex;
    flex-direction: column;
  }
  header .header-screen .container {
    width: 100%;
    padding-left: 5%;
    padding-top: 10px;
  }
  header .header-screen .container > .flex-row {
    justify-content: space-between;
    align-items: center;
  }
  header .header-screen .container > .flex-row .col-1 .logo {
    width: 130px;
  }
  header .header-screen .container > .flex-row .col-2 {
    width: 76%;
    background-color: var(--mauve);
    border-radius: 15px 0 0 15px;
  }
  header .header-screen .container > .flex-row .col-2 nav ul {
    justify-content: space-between;
    align-items: center;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 770px;
  }
  header .header-screen .container > .flex-row .col-2 nav ul li {
    padding: 19px 0;
    position: relative;
  }
  header .header-screen .container > .flex-row .col-2 nav ul li hr {
    position: absolute;
    top: 0%;
    opacity: 0;
    transition: 0.3s ease;
  }
  header .header-screen .container > .flex-row .col-2 nav ul li:hover hr {
    opacity: 1;
  }
  header .header-screen .container > .flex-row .col-2 nav ul li a {
    color: var(--blanc);
    text-transform: uppercase;
    font-weight: 500;
  }
  .decoratif {
    display: block;
  }
  .section-intro {
    margin-top: 180px;
  }
  .section-intro h1 {
    font-size: 1.8em;
  }
  .section-intro h2 {
    font-size: 1.2em;
    max-width: 455px;
  }
  .section-intro .container {
    align-items: center;
  }
  .section-form .container-full .col-1,
  .section-form .container-full .col-2 {
    width: 50%;
  }
  .section-form .container-full .col-1 {
    flex-direction: column;
    margin-top: -30px;
    padding-right: 15%;
  }
  .section-form .container-full .col-1 .row-1 {
    width: 100%;
  }
  .section-form .container-full .col-1 .row-2 {
    width: 100%;
  }
  footer .container .row-1 > .flex-switch .col-1 .logo {
    width: 130px;
  }
  footer .container .row-1 > .flex-switch .col-2 {
    width: 76%;
  }
  footer .container .row-1 > .flex-switch .col-2 .row-1 nav {
    display: flex;
  }
  footer .container .row-1 > .flex-switch .col-2 .row-1 nav ul {
    width: 100%;
    justify-content: space-between;
  }
  footer .container .row-1 > .flex-switch .col-2 .row-1 nav ul li a {
    text-transform: uppercase;
  }
  footer .container .row-1 > .flex-switch .col-2 .row-1 nav ul li:hover hr {
    opacity: 1;
  }
  footer .container .row-1 > .flex-switch .col-2 .row-2 {
    text-align: right;
    margin-top: 18px;
    justify-content: flex-end;
    column-gap: 20px;
  }
  footer .container > .row-2 {
    margin-top: 50px;
  }
}
/* Laptop */
@media only screen and (min-width: 1536px) and (orientation: landscape) {
  .container {
    width: 86%;
  }
  .section-intro .container h1 {
    font-size: 3.4em;
  }
  .section-intro .container h1 .petit {
    font-size: 0.6em;
  }
  .section-intro .container h2 {
    font-size: 1.3em;
  }
  .section-intro .container h2.short {
    max-width: 495px;
  }
  .section-intro .container h2.long {
    max-width: 580px;
  }
  .section-form {
    margin-top: 160px;
  }
  .section-form .container-full {
    padding-bottom: 70px;
  }
  .section-form .container-full h2,
  .section-form .container-full h3 {
    font-size: 1.4em;
  }
  .section-form .container-full .col-1 {
    margin-top: -50px;
    padding-top: 90px;
    padding-bottom: 56px;
    padding-left: 9%;
    padding-right: 10%;
    width: 40%;
  }
  .section-form .container-full .col-2 {
    padding-top: 90px;
    width: 55%;
  }
  .section-form .container-full .col-2 form .btn-5 {
    margin-top: 50px;
  }
  .w-100 {
    width: 100%;
  }
  input[type="submit"] {
    font-size: 1.4em;
    padding: 4px 43px;
  }
  header .header-screen .container > .flex-row .col-1 .logo {
    width: 200px;
  }
  header .header-screen .container > .flex-row .col-2 {
    width: 66%;
  }
  header .header-screen .container > .flex-row .col-2 nav ul {
    width: 80%;
    max-width: unset;
    padding-left: 40px;
  }
  footer .container .row-1 > .flex-switch .col-1 .logo {
    width: 150px;
    margin-left: 10px;
  }
  footer .container .row-1 > .flex-switch .col-2 {
    width: 50%;
  }
}
@media only print {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li {
    color: #000 !important;
  }
  nav {
    display: none;
  }
}
