:root {
  --blanc: #ffffff;
  --noir: #000000;
  --rouge: #bb0606;
  --lavande: #ede8ee;
  --mauve: #00294d;
}
@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: white;
}
.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(--rouge);
}
.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: #b11819;
  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: #bb0606;
  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;
  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: #b11819;
  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;
}
.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;
}
.anim-opacity {
  opacity: 0;
  transform: translateY(-50px);
  transition: transform 0.4s ease-in var(--delay, 0s), opacity 0.4s ease-in var(--delay, 0s) !important;
}
.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) !important;
}
.anim-translate.actif {
  opacity: 1;
  transform: translateX(0);
}
.anim-only-opacity {
  opacity: 0;
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s) !important;
}
.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;
}
p,
h1,
h2,
h3,
h4,
a,
b,
span,
.button {
  color: black;
}
h2,
h3 {
  color: var(--rouge);
  text-transform: uppercase;
}
h2 .break,
h3 .break {
  color: var(--rouge);
}
a {
  text-decoration: unset;
  display: inline-block;
  max-width: fit-content;
}
a,
button,
.btn,
.link {
  transition: all 400ms;
  cursor: pointer;
}
.btn {
  background-color: #b11819;
  color: var(--blanc);
  padding: 15px 62px;
  display: block;
  width: max-content;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn:hover {
  background-color: var(--blanc);
  color: var(--noir);
  border: 1px solid #b11819;
}
.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-full {
  width: 100%;
}
.side-padding {
  padding-left: 5%;
  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;
}
.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-mobile {
  width: 100%;
  position: fixed;
  padding: 8px 0;
  background-color: black;
}
.header-mobile .container-90 {
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}
.header-mobile .container-90 .logo {
  max-width: 400px;
}
.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: 112px;
  background-color: var(--lavande);
  z-index: 2;
  padding-left: 22px;
  row-gap: 10px;
  transition: top 0.5s ease;
}
.menu-mobile li {
  font-size: 1.3em;
}
.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: #b11819;
  color: #b11819;
  height: 0;
  flex: 1;
  height: 5px;
  max-width: 230px;
  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;
}
.relatif {
  position: relative;
}
.absolute {
  position: absolute;
}
input,
textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border: 1px solid var(--rouge);
}
input[type="text"],
textarea {
  width: 100%;
  padding: 9px 9px;
}
.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%;
  margin-bottom: 20px;
}
input:not([type="submit"]):not([type="checkbox"]),
textarea {
  width: 100%;
  padding: 24px 9px;
}
.checkbox-container input,
.checkbox-container label {
  cursor: pointer;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  text-transform: uppercase;
}
input[type="submit"] {
  border: 0;
}
select {
  background-color: var(--blanc);
  padding: 4px 6px;
  min-width: 205px;
  cursor: pointer;
}
.uploaded-files {
  margin-top: 10px;
}
.retour {
  text-decoration: underline;
}
footer {
  background-color: var(--rouge);
  padding-top: 40px;
  padding-bottom: 34px;
}
footer a,
footer p {
  color: var(--blanc);
}
footer a:hover {
  color: var(--noir);
}
footer .hosting {
  font-weight: 500;
  text-align: center;
}
footer .flex-switch {
  align-items: center;
  margin-top: 20px;
}
footer .flex-switch a {
  font-size: 0.9em;
}
.mt-18 {
  margin-top: 18px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 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-50 {
  margin-top: 50px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-36 {
  padding-top: 36px;
}
.pt-50 {
  padding-top: 50px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 1.7em;
  }
  form .row {
    flex-direction: row;
  }
  footer .flex-switch {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
  }
  footer .flex-switch a {
    font-size: revert;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  .flex-switch {
    flex-direction: row;
    justify-content: space-between;
  }
  hr {
    width: 100%;
  }
  .break {
    display: block;
  }
  .header-mobile {
    display: none;
  }
  .header-screen {
    flex-direction: column;
  }
  .header-screen ul .hide {
    display: none;
  }
  .checkbox-container {
    row-gap: 18px;
    column-gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer .flex-switch {
    margin-top: 24px;
  }
}
/* Laptop */
@media only screen and (min-width: 1536px) and (orientation: landscape) {
  h1 {
    font-size: 3.4em;
  }
  h2 {
    font-size: 3em;
  }
  p {
    font-size: 17px;
  }
  .additional-padding {
    padding-left: 7%;
    padding-right: 7%;
  }
  input[type="submit"] {
    font-size: 1.4em;
    padding: 4px 43px;
  }
}
@media only print {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li {
    color: #000 !important;
  }
  nav {
    display: none;
  }
}
