:root {
  --blanc: #ffffff;
  --bleu: #0672b9;
  --mauve: #010b17;
  --noir: #0a0b0b;
  --gris: #eceded;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.woff2") format('woff2'), url("/fonts/Montserrat-Regular.woff") format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.woff2") format('woff2'), url("/fonts/Montserrat-Bold.woff") format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Black.woff2") format('woff2'), url("/fonts/Montserrat-Black.woff") format('woff');
  font-weight: 600;
  font-display: swap;
}
.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: var(--blanc);
}
.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: var(--bleu);
}
.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: black;
  border-radius: 24px;
  border: none;
  color: #fff;
}
.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: var(--bleu);
  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: 85%;
  }
}
.cookies_popup button {
  border-radius: 20px;
}
#cookies-configuration-button {
  box-sizing: border-box;
  cursor: pointer;
  color: black;
  background-color: #fff;
  border: 2px solid black;
  padding: 12px 32px;
  min-width: 165px;
}
#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: #282b2f;
  padding: 12px 32px;
  min-width: 165px;
  border: 1px solid white;
}
input[name="name"] {
  display: none;
}
input[type="file"] {
  display: none;
}
.form-error {
  color: red;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.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;
  margin-top: 20px;
}
.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: "Montserrat", sans-serif;
}
h1 {
  font-size: 1.8em;
}
h1,
h2,
h3,
h4,
h5 {
  text-transform: uppercase;
}
p,
h1,
h2,
h3,
h4,
a,
b,
span,
.button {
  color: black;
}
a {
  text-decoration: unset;
  display: inline-block;
  max-width: fit-content;
}
a,
button,
.btn,
a span {
  transition: all 400ms;
  cursor: pointer;
}
.btn {
  background-color: var(--bleu);
  color: var(--blanc);
  padding: 16px 14px 16px 30px;
  display: flex;
  align-items: center;
  column-gap: 14px;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn img {
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}
.btn:hover {
  background-color: transparent;
  border: 1px solid var(--blanc);
}
.btn:hover img {
  transform: rotate(180deg);
}
.btn-2 {
  background-color: #b11819;
  color: #000;
  padding: 4px 20px;
  display: block;
  width: max-content;
  font-size: 16px;
}
.btn-container .btn {
  margin: auto;
}
img {
  width: 100%;
  height: auto;
  max-width: max-content;
  display: block;
}
svg {
  transition: fill 0.3s ease;
}
main {
  position: relative;
}
.container-90 {
  width: 90%;
  margin: 0 auto;
}
.container-80 {
  width: 80%;
  margin: 0 auto;
}
.container-full {
  width: 100%;
}
.container-padding {
  padding-left: 5%;
  padding-right: 5%;
}
.container-padding-left {
  padding-left: 5%;
}
.container-padding-right {
  padding-right: 5%;
}
.container-mobile {
  width: 90%;
}
.margin-mobile {
  margin-top: 26px;
}
.flex-row {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-switch {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.upper {
  text-transform: uppercase;
}
.wrap {
  flex-wrap: wrap;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
  row-gap: 30px;
  column-gap: 30px;
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}
header ul li {
  transition: background-color 0.3s linear, color 0.2s linear;
}
.header-mobile {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 8px 0;
  background-color: black;
}
.header-mobile > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile > div .logo {
  width: 60%;
  min-width: 214px;
  max-width: 250px;
}
.header-screen {
  display: none;
}
#burger .line {
  width: 33px;
  height: 3px;
  background-color: white;
  margin: 8px 0;
  transform-origin: 3% 0%;
  border-radius: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#burger.actif .line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#burger.actif .line:nth-child(2) {
  opacity: 0;
}
#burger.actif .line:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
.menu-mobile {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: -200vh;
  padding-top: 130px;
  background-color: var(--bleu);
  row-gap: 20px;
  z-index: 2;
  padding-left: 22px;
  transition: top 0.5s ease;
}
.menu-mobile li {
  font-size: 1.3em;
}
.menu-mobile li a {
  color: var(--blanc);
}
.menu-mobile .hide {
  display: none;
}
.menu-mobile.actif {
  top: 0;
}
.banner {
  position: relative;
}
.banner .background {
  height: 420px;
  max-width: unset;
  object-fit: cover;
}
.banner-content {
  position: absolute;
}
hr {
  background-color: var(--bleu);
  color: var(--bleu);
  flex: 1;
  height: 2px;
  border: unset;
}
.hr-container {
  display: flex;
  align-items: center;
}
.hr-container span {
  font-size: 1.2em;
  font-weight: 600;
}
.elm-absolute {
  position: absolute;
}
ul {
  list-style: none;
}
.bold {
  font-weight: bold;
}
.blue-bg {
  background-color: var(--bleu);
}
.blue-bg p,
.blue-bg h1,
.blue-bg h2,
.blue-bg h3,
.blue-bg span {
  color: var(--blanc);
}
.relatif {
  position: relative;
}
.absolute {
  position: absolute;
}
input,
textarea,
select {
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
input[type="text"],
textarea,
select {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--bleu);
}
.checkbox-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.checkbox-container label {
  display: flex;
  column-gap: 5px;
}
form .row {
  display: flex;
  flex-direction: column;
}
.input-container {
  width: 100%;
}
input[type="submit"] {
  border: 0;
}
select {
  padding: 4px 6px;
  min-width: 205px;
  cursor: pointer;
}
select {
  width: 100%;
  border: 1px solid var(--bleu);
  font-size: 16px;
  font-weight: 500;
  background-color: var(--blanc);
  box-sizing: border-box;
  appearance: none;
  /* Enlève le style natif */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
  /* espace pour la flèche */
  padding-left: 20px;
  color: gray;
}
.uploaded-files {
  margin-top: 20px;
}
.return {
  text-decoration: underline;
}
.bleu {
  color: var(--bleu);
}
footer {
  background-color: var(--mauve);
  padding-top: 40px;
}
footer p,
footer a,
footer span {
  color: var(--blanc);
}
footer a:hover {
  color: var(--bleu);
}
footer a .break:hover {
  color: var(--bleu);
}
footer .logo {
  max-width: 250px;
}
footer .row-1 .title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .row-1 .flex-column {
  row-gap: 10px;
}
footer hr {
  margin-top: 50px;
  background-color: var(--blanc);
  color: var(--blanc);
}
footer .row-2 {
  margin-top: 30px;
  padding-bottom: 30px;
}
footer .row-2 .col-1,
footer .row-2 .col-2 {
  row-gap: 7px;
}
footer .row-2 p,
footer .row-2 a:not(.ymarketing) {
  font-size: 0.8em;
}
.section-intro {
  padding-top: 118px;
  position: relative;
  background-color: var(--mauve);
}
.section-intro .container-padding .col-1 {
  z-index: 1;
}
.section-intro .container-padding .col-1 .bienvenu {
  width: fit-content;
  text-transform: uppercase;
  font-weight: 500;
}
.section-intro .container-padding .col-1 .bienvenu p {
  color: var(--blanc);
}
.section-intro .container-padding .col-1 .bienvenu hr {
  height: 2px;
  margin-top: 5px;
}
.section-intro .container-padding .col-1 h1 {
  color: var(--blanc);
  margin-top: 30px;
}
.section-intro .container-padding .col-1 h1 .bleu {
  font-size: 0.6em;
  font-weight: 500;
  line-height: 25px;
  display: block;
}
.section-intro .container-padding .col-1 h1 .break {
  color: var(--blanc);
  display: block;
  font-size: 0.9em;
}
.section-intro .container-padding .col-1 .flex-row {
  column-gap: 20px;
  margin-top: 40px;
  flex-direction: column-reverse;
  align-items: flex-start;
  row-gap: 30px;
}
.section-intro .container-padding .col-1 .flex-row .telephone {
  font-weight: 500;
}
.section-intro .container-padding .col-1 .flex-row .telephone:hover {
  color: var(--bleu);
}
.section-intro .container-padding .col-2 {
  margin-top: 70px;
}
.section-intro .container-padding .col-2 img {
  max-width: 400px;
}
.section-intro a {
  color: var(--blanc);
}
.mt-18 {
  margin-top: 18px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-22 {
  margin-top: 22px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-26 {
  margin-top: 26px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-34 {
  margin-top: 34px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-38 {
  margin-top: 38px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-42 {
  margin-top: 42px;
}
.mt-44 {
  margin-top: 44px;
}
.mt-46 {
  margin-top: 46px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-36 {
  padding-top: 36px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-6em {
  padding-top: 6em;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 1.7em;
  }
  footer .row-1 {
    display: flex;
    flex-wrap: wrap;
    row-gap: 80px;
  }
  footer .row-1 .col-1,
  footer .row-1 .col-2,
  footer .row-1 .col-3,
  footer .row-1 .col-4 {
    width: 50%;
    margin-top: 0;
  }
  footer .row-1 .col-3 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  footer .row-2 {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .row-2 .col-2 {
    margin-top: 0;
  }
  form .row {
    flex-direction: row;
  }
  .section-intro .flex-row {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  h1 {
    font-size: 2.6em;
  }
  h2 {
    font-size: 2em;
  }
  .flex-switch {
    flex-direction: row;
    justify-content: space-between;
  }
  hr {
    width: 100%;
  }
  .break {
    display: block;
  }
  header {
    position: revert;
  }
  .header-mobile {
    display: none;
  }
  .header-screen {
    display: flex;
    flex-direction: column;
    background-color: var(--blanc);
  }
  .header-screen a {
    color: var(--noir);
  }
  .header-screen > div {
    justify-content: space-between;
  }
  .header-screen ul {
    display: flex;
  }
  .header-screen ul li a:hover {
    color: var(--bleu);
  }
  .header-screen ul .hide {
    display: none;
  }
  .header-screen .container-padding-left {
    column-gap: 40px;
  }
  .header-screen .container-padding-left .col-1 {
    width: 28%;
    padding: 14px 0;
  }
  .header-screen .container-padding-left .col-2 {
    width: 70%;
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .header-screen .container-padding-left .col-2 nav {
    width: 100%;
  }
  .header-screen .container-padding-left .col-2 nav ul {
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    text-align: center;
  }
  .header-screen .container-padding-left .col-3 {
    background-color: var(--bleu);
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .header-screen .container-padding-left .col-3 .telephone {
    color: var(--blanc);
    font-weight: 500;
  }
  .header-screen .container-padding-left .col-3 > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 12px;
  }
  .header-screen .container-padding-left .col-3 > a:hover {
    color: var(--noir);
  }
  .section-intro {
    padding-top: 0;
  }
  .section-intro .container-padding {
    padding-right: 0;
  }
  .section-intro .container-padding .col-1 {
    background-color: var(--mauve);
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
    width: 65%;
    margin-right: -210px;
    display: flex;
    align-items: center;
  }
  .section-intro .container-padding .col-1 .flex-row {
    flex-direction: row;
    align-items: center;
  }
  .section-intro .container-padding .col-2 {
    width: 50%;
    margin-top: 0;
  }
  .section-intro .container-padding .col-2 img {
    max-width: unset;
  }
  footer .row-1 {
    flex-wrap: nowrap;
    column-gap: 40px;
  }
  footer .row-1 .col-1 {
    width: 15%;
  }
  footer .row-1 .col-2 {
    width: 24%;
  }
  footer .row-1 .col-3 {
    width: 15%;
  }
  footer .row-1 .col-4 {
    width: 24%;
  }
  footer hr {
    margin-top: 80px;
  }
  footer .row-2 .col-1,
  footer .row-2 .col-2 {
    column-gap: 60px;
  }
  footer .row-2 .col-2 {
    margin-top: 0;
  }
  .checkbox-container {
    row-gap: 18px;
    column-gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner .background {
    height: auto;
    object-fit: unset;
  }
}
/* Laptop */
@media only screen and (min-width: 1536px) and (orientation: landscape) {
  h1 {
    font-size: 3.4em;
  }
  input[type="submit"] {
    font-size: 1.4em;
    padding: 4px 43px;
  }
  .container-padding {
    padding-left: 8%;
  }
  .header-screen .container-padding-left {
    column-gap: 22px;
  }
  .header-screen .container-padding-left .col-2 {
    width: 46%;
  }
  .header-screen .container-padding-left .col-3 {
    width: 18%;
    padding: 0 20px;
  }
  .section-intro .container-padding .col-1 {
    width: 59%;
  }
  .section-intro .container-padding .col-2 {
    width: 52%;
  }
  .section-intro h1 .bleu {
    font-size: 0.35em;
  }
  .section-intro h1 .break {
    font-size: 0.9em;
  }
  .section-intro h1 .break:nth-child(2) {
    margin-top: 7px;
  }
  .section-intro .flex-row {
    margin-top: 54px;
  }
  footer {
    padding-top: 130px;
  }
  footer .row-1 .col-2 {
    width: 20%;
    margin-left: -54px;
  }
  footer .row-1 .col-2 p {
    max-width: 75%;
  }
  footer .row-1 .col-3 {
    width: 10%;
  }
  footer .row-1 .col-4 {
    margin-left: 40px;
  }
  footer .row-2 {
    margin-top: 34px;
    padding-bottom: 110px;
  }
}
@media only print {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li {
    color: #000 !important;
  }
  nav {
    display: none;
  }
}
