@charset "UTF-8";
:root {
  --blanc: #fff;
  --noir: #000;
  --primary-color: #1F358B;
  --secondary-color: #FF0;
  --border-radius: 0.75rem;
  --border-radius-lg: 3.75rem;
  --font-weight-regular: 400;
  --font-weight-extrabold: 800;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  tab-size: 4;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

html {
  overflow-x: clip;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin: 0;
  overflow-x: clip;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

@media only screen and (max-width: 1023px) {
  .hide-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 1440px) {
  .hide-before-13-pouces {
    display: none !important;
  }
}

@media only screen and (min-width: 767px) {
  .hide-tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .show-tablet {
    display: block;
  }
}

@media only screen and (min-width: 379px) {
  .hide-big-mobile {
    display: none !important;
  }
}

.margin-t-12 {
  margin-top: 12px !important;
}

.margin-b-12 {
  margin-bottom: 12px !important;
}

.margin-t-24 {
  margin-top: 24px !important;
}

.margin-b-24 {
  margin-bottom: 24px !important;
}

.margin-b-32 {
  margin-bottom: 32px !important;
}

.margin-b-48 {
  margin-bottom: 48px !important;
}

@media only screen and (min-width: 1024px) {
  .margin-b-48-l {
    margin-bottom: 48px !important;
  }
}

.margin-b-0 {
  margin-bottom: 0 !important;
}

.text-white {
  color: var(--blanc) !important;
}

.text-blue {
  color: var(--primary-color) !important;
}

.text-yellow {
  color: var(--secondary-color) !important;
}

.fw-light {
  font-weight: var(--fw-light) !important;
}

.fw-regular {
  font-weight: var(--fw-regular) !important;
}

.fw-medium {
  font-weight: var(--fw-medium) !important;
}

.fw-semibold {
  font-weight: var(--fw-semibold) !important;
}

.fw-bold {
  font-weight: var(--fw-bold) !important;
}

.fw-extrabold {
  font-weight: var(--fw-extrabold) !important;
}

.fw-black {
  font-weight: var(--fw-black) !important;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-underline {
  text-decoration: underline;
}

.text-no-underline {
  text-decoration: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-italic {
  font-style: italic;
}

.text-not-italic {
  font-style: normal;
}

.hero-title {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  line-height: normal;
}
@media only screen and (min-width: 360px) {
  .hero-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 375px) {
  .hero-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero-title {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  line-height: 120%;
  text-align: center;
  color: var(--secondary-color);
}
@media only screen and (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-subtitle {
    font-size: 20px;
    text-align: right;
  }
}
@media only screen and (min-width: 1440px) {
  .hero-subtitle {
    font-size: 28px;
    text-align: right;
  }
}

.hero-anchor-text {
  font-size: 17px;
  font-weight: var(--font-weight-extrabold);
  line-height: 120%;
  color: var(--primary-color);
}
@media only screen and (min-width: 1024px) {
  .hero-anchor-text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero-anchor-text {
    font-size: 28px;
  }
}

.section-title {
  font-size: 36px;
  line-height: 120%;
  text-align: left;
  font-weight: var(--font-weight-extrabold);
}
@media only screen and (min-width: 1200px) {
  .section-title {
    font-size: 44px;
  }
}

.card-title {
  font-size: 32px;
  line-height: 120%;
  text-align: left;
  font-weight: var(--font-weight-extrabold);
}
@media only screen and (min-width: 1200px) {
  .card-title {
    font-size: 36px;
  }
}
.card-title--bigger {
  font-size: 40px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  margin-top: 8px;
}
@media only screen and (min-width: 1200px) {
  .section-subtitle {
    font-size: 1.5rem;
  }
}
.section-subtitle--small {
  font-size: 0.75rem;
}
@media only screen and (min-width: 1200px) {
  .section-subtitle--small {
    font-size: 1.25rem;
  }
}

.section-body, .card-body, .footer-title {
  line-height: 120%;
  text-align: left;
  font-weight: var(--font-weight-regular);
}

.section-title {
  color: var(--primary-color);
}

.card-title {
  color: var(--blanc);
}

.section-body {
  font-size: 20px;
  color: var(--noir);
}

.card-body, .footer-title {
  font-size: 24px;
  color: var(--secondary-color);
}

.card-body-highlight {
  font-weight: var(--font-weight-extrabold);
  font-size: 36px;
}

.footer-title {
  font-weight: var(--font-weight-extrabold);
}
.footer-title--before {
  margin-inline: auto;
  padding-block: 3rem 2.5rem;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  padding-inline: 12px;
}
.footer-title--color-switch {
  color: var(--primary-color);
}
@media only screen and (min-width: 768px) {
  .footer-title--color-switch {
    color: var(--blanc);
  }
}

.offres .footer-title--before {
  padding-block: 0;
}

body.grand-jeu .footer-title--before,
body.joueur .footer-title--before,
body.form-win .footer-title--before,
body.loose .footer-title--before,
body.win .footer-title--before,
body.deja-joue .footer-title--before,
body.video .footer-title--before,
body.resultat .footer-title--before {
  background-color: var(--blanc);
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px 12px 0 0;
}

.encadre-title {
  display: inline-flex;
  align-items: center;
  transform: rotate(-3deg);
  padding: 12px 20px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  border: 2px solid var(--secondary-color);
  font-size: 1.5rem;
  line-height: 120%;
  text-align: left;
  color: var(--secondary-color);
  font-weight: var(--font-weight-extrabold);
  text-align: left;
}
.encadre-title-xl {
  font-size: 32px;
  line-height: 150%;
  text-align: center;
}

.offer-title {
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
}
@media only screen and (min-width: 1440px) {
  .offer-title {
    font-size: 52px;
    margin-bottom: 0 !important;
  }
}

.offer-body {
  font-size: 1rem;
  line-height: normal;
  letter-spacing: -0.064px;
  text-align: center;
  font-weight: var(--font-weight-regular);
}
@media only screen and (min-width: 1024px) {
  .offer-body {
    font-size: 18px;
    line-height: normal;
    letter-spacing: normal;
  }
}
.offer-body--medium {
  font-size: 18px;
  font-weight: 800;
  line-height: 120%;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .offer-body--medium {
    font-size: 1.25rem;
    line-height: 120%;
    letter-spacing: normal;
  }
}
.offer-body-highlight {
  font-weight: var(--font-weight-extrabold);
  font-size: 32px;
}

.offer-highlight {
  font-size: 32px;
  font-weight: var(--fw-extrabold);
  text-align: center;
  line-height: 120%;
  color: var(--primary-color);
}
.offer-highlight.offer-highligt--plus {
  font-size: 44px;
}
.offer-highlight sup {
  font-size: 60%;
}

.form-title, .form-subtitle {
  color: var(--secondary-color);
}

.form-title, .form-subtitle {
  line-height: 120%;
  text-align: left;
  font-weight: var(--font-weight-extrabold);
  color: var(--secondary-color);
}

.form-title {
  font-size: 28px;
}

.joueur .form-title {
  text-align: center;
}

.form-subtitle {
  font-size: 20px;
}

.form-body {
  font-size: 1rem;
  line-height: normal;
  text-align: left;
  font-weight: var(--font-weight-regular);
  color: var(--blanc);
}

.nav-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  text-align: left;
  color: var(--secondary-color);
  line-height: 150%;
}

.nav-subtitle {
  font-size: 1.25rem;
  font-weight: var(--font-weight-regular);
  text-align: left;
  color: var(--blanc);
  line-height: 150%;
}

.ml-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.048px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--blanc);
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .ml-text {
    text-align: right;
  }
}
@media only screen and (min-width: 1440px) {
  .ml-text {
    font-size: 18px;
  }
}

.form .ml-text {
  text-align: left;
}

.small-body {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-body {
  color: #2b2e30;
  font-size: 12px;
  letter-spacing: -0.048px;
}

sup {
  font-size: 65%;
  vertical-align: super;
  line-height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
}
.header__bar {
  position: relative;
  z-index: 101;
  padding: calc(4px + env(safe-area-inset-top, 0px)) 16px 4px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0 0 20px 20px;
}
@media only screen and (min-width: 1024px) {
  .header__bar {
    justify-content: flex-end;
    box-sizing: border-box;
    min-height: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .header__bar {
    padding-inline: 36px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    position: absolute;
    left: 2%;
    transform: none;
  }
}
@media only screen and (min-width: 1440px) {
  .header__logo {
    left: 50%;
    transform: translateX(-50%);
  }
}
.header__logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: 48px;
}
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 0;
}
.header__icon {
  display: block;
  width: 48px;
  height: 48px;
}
.header__icon--close {
  display: none;
}
.header--menu-open .header__icon--burger {
  display: none;
}
.header--menu-open .header__icon--close {
  display: block;
}
.header--menu-open .header__toggle {
  width: 48px;
  height: 48px;
}
.header--menu-open .header__bar {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: #fff;
  border-radius: 0;
}

body.home .header:not(.header--scrolled):not(.header--menu-open) .header__bar,
body:not(.grand-jeu):not(.form-win):not(.joueur):not(.loose):not(.win):not(.deja-joue):not(.video):not(.resultat):not(.rappel-offre) .header:not(.header--scrolled):not(.header--menu-open) .header__bar {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home .header--scrolled .header__bar,
body:not(.grand-jeu):not(.form-win):not(.joueur):not(.loose):not(.win):not(.deja-joue):not(.video):not(.resultat):not(.rappel-offre) .header--scrolled .header__bar {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10.3999996185px);
  -webkit-backdrop-filter: blur(10.3999996185px);
}

body.is-menu-open {
  overflow: hidden;
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  body:not(.home):not(.grand-jeu):not(.form-win):not(.joueur):not(.loose):not(.win):not(.deja-joue):not(.video):not(.resultat):not(.rappel-offre) .header__logo {
    left: 50%;
    transform: translateX(-50%);
  }
}

body.rappel-offre {
  background-color: var(--blanc);
}
body.rappel-offre .header__bar {
  background-color: var(--secondary-color);
  border-radius: 0 0 20px 20px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.rappel-offre .form__container {
  position: relative;
  padding: 108px 20px 48px;
}
@media only screen and (min-width: 1024px) {
  body.rappel-offre .form__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    min-height: 100dvh;
    max-height: 890px;
  }
}
body.rappel-offre .form__content {
  gap: 30px;
}
@media only screen and (min-width: 1024px) {
  body.rappel-offre .form__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-top: 108px;
    justify-content: center;
    padding-inline: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 1200px) {
  body.rappel-offre .form__content {
    padding-top: 156px;
  }
}
body.rappel-offre .form__content .form__intro, body.rappel-offre .form__content .form__subcontainer {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  body.rappel-offre .form__content .form__intro, body.rappel-offre .form__content .form__subcontainer {
    width: 85%;
  }
}
body.rappel-offre .form__content .form-title {
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  body.rappel-offre .form__field {
    width: 100%;
  }
}
body.rappel-offre .form__intro {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}
body.rappel-offre .form__intro-text {
  flex: 1;
  min-width: 0;
}
body.rappel-offre .form__intro-biker {
  flex-shrink: 0;
  width: 60px;
  margin: 0;
  pointer-events: none;
}
body.rappel-offre .form__intro-biker img {
  display: block;
  width: 100%;
  height: auto;
}
body.rappel-offre .form-title {
  color: var(--primary-color);
  margin: 0 0 12px;
}
body.rappel-offre .form__lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  color: var(--primary-color);
}
body.rappel-offre .form__input {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}
body.rappel-offre .form__input::placeholder {
  color: var(--primary-color);
}
body.rappel-offre select.form__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11.06 0.5L6.71333 4.84667C5.78 5.78 5.78 5.78 4.84667 4.84667L0.5 0.5' stroke='%231F368B' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
body.rappel-offre .form__error {
  color: #e57373;
}
body.rappel-offre .form__input--invalid,
body.rappel-offre .form__radio.form__input--invalid {
  border-color: #e57373;
  box-shadow: 0 0 0 1px #e57373;
}
body.rappel-offre .form__required-note {
  margin: 0;
  font-size: 12px;
  line-height: normal;
  letter-spacing: -0.048px;
  color: var(--primary-color);
}
body.rappel-offre .form__outro {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
}
body.rappel-offre .form__deco {
  position: relative;
  min-height: 260px;
  background-color: #eaebeb;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  body.rappel-offre .form__deco {
    display: none;
  }
}
body.rappel-offre .form__deco-biker {
  position: absolute;
  left: -2rem;
  bottom: 0;
  width: 110px;
  margin: 0;
}
body.rappel-offre .form__deco-biker img {
  width: 100%;
  height: auto;
}
body.rappel-offre .form__deco-bonhomme {
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 150px;
  margin: 0;
}
body.rappel-offre .form__deco-bonhomme img {
  width: 100%;
  height: auto;
}
body.rappel-offre .form__deco-confetti {
  position: absolute;
  left: 15%;
  top: 20%;
  width: 120px;
  margin: 0;
}
body.rappel-offre .form__deco-confetti img {
  width: 100%;
  height: auto;
}
body.rappel-offre .footer--rappel {
  margin-top: 0;
  background-color: var(--blanc);
  padding: 0px 0 30px;
}

body.grand-jeu {
  background-color: var(--primary-color);
}
body.grand-jeu .form__container {
  background-image: url("../assets/media/deco/biker-form.svg");
  background-repeat: no-repeat;
  background-position: 108% 20%;
}

.form__container {
  padding: 108px 20px 20px;
}
@media only screen and (min-width: 1024px) {
  .form__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    background-image: none;
    overflow: hidden;
    min-height: 100dvh;
    max-height: 850px;
  }
}
@media only screen and (min-width: 1920px) {
  .form__container {
    max-height: 1000px;
  }
}
@media only screen and (min-width: 2160px) {
  .form__container {
    max-height: 1100px;
  }
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  .form__content {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    padding-top: 32px;
    justify-content: center;
    padding-inline: 1.5rem;
  }
}
.form__content .form-title,
.form__content .form__subcontainer,
.form__content .form-win__content,
.form__content .loose__content {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.form__media {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .form__media {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    align-self: stretch;
    flex-direction: column;
    overflow: hidden;
  }
}
.form__media-image {
  margin: 0;
  flex: 1;
  width: 100%;
  min-height: 0;
  display: block;
}
.form__media-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.form__subcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__subcontainer label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form__subcontainer fieldset {
  border: 0;
  padding: 0;
}
.form__subcontainer fieldset .fieldset__container {
  display: flex;
  gap: 12px;
}
.form__subcontainer fieldset legend {
  margin-bottom: 1rem;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__error {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #ffcccc;
}
.form__input {
  width: 100%;
  padding: 8px 20px;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--secondary-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: var(--blanc);
}
.form__input::placeholder {
  color: var(--blanc);
}
.form__input--invalid {
  border-color: #ff9999;
  box-shadow: 0 0 0 1px #ff9999;
}
.form__radio[type=radio], .form__radio[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.form__radio[type=radio]::before, .form__radio[type=checkbox]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  transform: scale(0);
  transition: transform 0.15s ease;
}
.form__radio[type=radio]:checked, .form__radio[type=checkbox]:checked {
  background-color: rgba(255, 255, 255, 0.35);
  border-color: white;
}
.form__radio[type=radio]:checked::before, .form__radio[type=checkbox]:checked::before {
  transform: scale(1);
}
.form__radio[type=radio]:hover:not(:checked), .form__radio[type=checkbox]:hover:not(:checked) {
  background-color: rgba(255, 255, 255, 0.3);
}
.form__radio[type=radio]:focus-visible, .form__radio[type=checkbox]:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
.form__radio[type=radio].form__input--invalid, .form__radio[type=checkbox].form__input--invalid {
  border-color: #ff9999;
  box-shadow: 0 0 0 1px #ff9999;
}

select.form__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11.06 0.5L6.71333 4.84667C5.78 5.78 5.78 5.78 4.84667 4.84667L0.5 0.5' stroke='%23FFEA0F' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 7px;
}
select.form__input option {
  color: var(--noir);
}

.reglement {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ml {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

body.form-win {
  background-color: var(--primary-color);
}
body.form-win .form__container {
  padding: 108px 20px 44px;
}
@media only screen and (min-width: 1024px) {
  body.form-win .form__container {
    padding: 0;
    min-height: 100dvh;
  }
}
@media only screen and (min-width: 1200px) {
  body.form-win .form__container {
    min-height: 1020px !important;
  }
}
@media only screen and (min-width: 1440px) {
  body.form-win .form__container {
    max-height: 1100px !important;
  }
}
body.form-win .form-win__content {
  align-items: center;
  text-align: center;
  gap: 20px;
}
body.form-win .form-win__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 22.625rem;
  min-height: 12.5rem;
  margin-inline: auto;
}
body.form-win .form-win__visual .loose__image {
  position: relative;
  z-index: 1;
  margin-right: -1.5rem;
}
body.form-win .form-win__visual .loose__image img {
  width: 107px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
  transform: rotate(-14.31deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
body.form-win .form-win__visual .form-win__image {
  position: relative;
  z-index: 2;
  margin: 0;
}
body.form-win .form-win__visual .form-win__image img {
  max-height: 184px;
  width: auto;
  object-fit: contain;
  transform: rotate(12.69deg);
  filter: drop-shadow(10px 14px 24px rgba(0, 0, 0, 0.25));
  border: none;
  border-radius: 0;
  background-color: transparent;
}
body.form-win .form-win__visual .win__confetti {
  position: absolute;
  pointer-events: none;
  max-width: 40%;
}
body.form-win .form-win__visual .win__confetti--left {
  left: -2rem;
  bottom: 0;
  transform: scaleY(-1) rotate(180deg);
}
body.form-win .form-win__visual .win__confetti--right {
  right: -1.5rem;
  top: 0;
}
body.form-win .form-win__lot-text {
  color: var(--blanc);
  max-width: 28rem;
}
body.form-win .form-win__form {
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  body.form-win .form-win__form {
    max-width: 640px;
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  body.form-win .form-win__form {
    max-width: auto;
    width: 100%;
  }
}

body.form-win .form__media-image,
body.win .form__media-image,
body.loose .form__media-image {
  position: relative;
}
body.form-win .form__media-image::after,
body.win .form__media-image::after,
body.loose .form__media-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6.25%, rgba(42, 50, 123, 0.59) 32.69%);
  pointer-events: none;
}

@media only screen and (min-width: 1440px) {
  body.win .form__container {
    height: 100dvh;
    max-height: 1100px !important;
  }
}

body.loose,
body.deja-joue,
body.win {
  background-color: var(--primary-color);
}
body.loose .form__container,
body.deja-joue .form__container,
body.win .form__container {
  padding: 108px 20px 48px;
}
@media only screen and (min-width: 1024px) {
  body.loose .form__container,
  body.deja-joue .form__container,
  body.win .form__container {
    padding: 0;
  }
}
body.loose .loose__content,
body.deja-joue .loose__content,
body.win .loose__content {
  align-items: center;
  text-align: center;
  gap: 30px;
}
body.loose .loose__image,
body.deja-joue .loose__image,
body.win .loose__image {
  margin: 0;
  display: flex;
  justify-content: center;
}
body.loose .loose__image img,
body.deja-joue .loose__image img,
body.win .loose__image img {
  width: 141px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
  transform: rotate(-14.31deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
body.loose .loose__title,
body.deja-joue .loose__title,
body.win .loose__title {
  max-width: 22.625rem;
  white-space: normal;
}
body.loose .loose__text,
body.deja-joue .loose__text,
body.win .loose__text {
  max-width: 22.625rem;
  margin: 0;
}
body.loose .footer,
body.deja-joue .footer,
body.win .footer {
  margin-top: 0;
}

body.deja-joue .deja-joue__prenom {
  color: #ff0fc3;
}

body.win .deja-joue__prenom {
  color: #ff0fc3;
}
body.win .loose__text.form-subtitle {
  font-size: 18px;
}
body.win .win__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 22.625rem;
  min-height: 12.5rem;
  margin-inline: auto;
}
body.win .loose__image {
  position: relative;
  z-index: 1;
  margin-right: -1.5rem;
}
body.win .loose__image img {
  width: 107px;
  transform: rotate(-14.31deg);
}
body.win .form-win__image {
  position: relative;
  z-index: 2;
  margin: 0;
}
body.win .form-win__image img {
  max-height: 184px;
  width: auto;
  transform: rotate(12.69deg);
  filter: drop-shadow(10px 14px 24px rgba(0, 0, 0, 0.25));
  border: none;
  border-radius: 0;
  background-color: transparent;
}
body.win .win__confetti {
  position: absolute;
  pointer-events: none;
  max-width: 40%;
}
body.win .win__confetti--left {
  left: -2rem;
  bottom: 0;
  transform: scaleY(-1) rotate(180deg);
}
body.win .win__confetti--right {
  right: -1.5rem;
  top: 0;
}
body.win .loose__share {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 24rem;
}
body.win .loose__share .encadre-title {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  padding: 15px;
  margin: 0;
}
body.win .loose__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.win .loose__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
body.win .loose__social-link img {
  display: block;
}
body.win .loose__social-replay {
  align-self: center;
  margin-top: 1.5rem;
}

body.loose .loose__share,
body.deja-joue .loose__share {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 24rem;
}
body.loose .loose__share .encadre-title,
body.deja-joue .loose__share .encadre-title {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  padding: 15px;
  margin: 0;
}
body.loose .loose__social,
body.deja-joue .loose__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.loose .loose__social-link,
body.deja-joue .loose__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
body.loose .loose__social-link img,
body.deja-joue .loose__social-link img {
  display: block;
}
body.loose .loose__social-replay,
body.deja-joue .loose__social-replay {
  align-self: center;
  margin-top: 1.5rem;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 30px;
  background-color: #eaebeb;
  border: 1px solid #e5e9ed;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: visible;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
@media only screen and (min-width: 1024px) {
  .footer {
    width: 100%;
    margin-inline: 0;
  }
}
.footer .footer-title {
  color: var(--primary-color);
  text-align: center;
}
.footer__jeu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 19px 20px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 1024px) {
  .footer__container {
    max-width: 1440px;
  }
}
.footer__award {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer__award {
    justify-content: flex-start;
  }
}
.footer .client-annee {
  flex-shrink: 0;
  width: 85px;
  height: 90px;
  margin: 0;
}
.footer .client-annee img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__subcontainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.footer__deco {
  position: absolute;
  top: -98px;
  right: 0;
  width: 114px;
  height: 141px;
  transform: rotate(10.89deg);
  z-index: 2;
  pointer-events: none;
}
.footer__deco img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-title--before + .footer {
  border-radius: 0;
}

body:not(:has(> .footer-title--before)):not(.rappel-offre):not(.video) > main {
  margin-bottom: 2.5rem;
}
body:not(:has(> .footer-title--before)):not(.rappel-offre):not(.video) > main.form {
  margin-bottom: 0;
}
body:not(:has(> .footer-title--before)):not(.rappel-offre):not(.video) > [data-offer-lead] + .footer {
  margin-top: 2.5rem;
}

.btn {
  display: flex;
  padding: 12px 30px;
  border-radius: var(--border-radius-lg);
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-weight: var(--font-weight-extrabold);
  text-align: center;
  width: fit-content;
  line-height: 120%;
  font-size: 1.25rem;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn.m-auto {
  margin-inline: auto;
}
.btn.arrow::after {
  content: "";
  flex-shrink: 0;
  width: 15px;
  height: 10px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.btn--primary {
  background-color: var(--blanc);
  color: var(--primary-color);
}
.btn--primary.arrow::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23000'/%3E%3C/svg%3E");
}
.btn--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.btn--secondary.arrow::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23FFEA0F'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23FFEA0F'/%3E%3C/svg%3E");
}
.btn--tercary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.btn--tercary.arrow::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23FFEA0F'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M9.41739 0.290193C9.79565 -0.0967316 10.4217 -0.0967316 10.8 0.290193L14.713 4.29286C14.9087 4.49299 15 4.7465 15 5C15 5.2535 14.9087 5.507 14.713 5.70714L10.8 9.70981C10.4217 10.0967 9.79565 10.0967 9.41739 9.70981C9.03913 9.32288 9.03913 8.68245 9.41739 8.29553L11.6609 6.00067L0.978261 6.00067C0.443478 6.00067 -1.94645e-07 5.54703 -2.18557e-07 5C-2.42468e-07 4.45297 0.443478 3.99933 0.978261 3.99933L11.6609 3.99933L9.41739 1.70447C9.03913 1.31755 9.03913 0.677118 9.41739 0.290193Z' fill='%23FFEA0F'/%3E%3C/svg%3E");
}

.card {
  margin-top: 3rem;
  position: relative;
  height: 630px;
  max-height: 630px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  --card-reveal-duration: 0.55s;
  --card-reveal-opacity-duration: 0.4s;
  --card-reveal-opacity-delay: 0.12s;
}
.card__etiquette {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 0.75rem;
  border: 2px solid var(--secondary-color);
  transform: rotate(-2.95deg);
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  position: absolute;
  top: -5%;
  z-index: 2;
  left: 1rem;
  line-height: 120%;
}
@media only screen and (min-width: 1024px) {
  .card__etiquette {
    left: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .card__etiquette {
    left: 2%;
  }
}
@media only screen and (min-width: 1440px) {
  .card__etiquette {
    font-size: 2rem;
    padding: 20px 28px;
  }
}
.card__image {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}
.card__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.card__biker {
  display: none;
  position: absolute;
  right: 4%;
  top: 20%;
  z-index: 3;
  width: 20%;
  margin: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .card__biker {
    display: block;
  }
}
.card__biker img {
  width: 100%;
  height: auto;
}
.card__container {
  flex: 0 0 auto;
  z-index: 1;
  width: 100%;
  margin-top: -12px;
  padding: 32px 20px 30px;
  position: relative;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px 12px 0 0;
  transition: padding var(--card-reveal-duration) cubic-bezier(0.33, 1, 0.68, 1);
}
.card__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--card-reveal-duration) cubic-bezier(0.33, 1, 0.68, 1);
}
.card__details-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--card-reveal-opacity-duration) ease var(--card-reveal-opacity-delay);
}
.card--expanded .card__details {
  grid-template-rows: 1fr;
}
.card--expanded .card__details-inner {
  opacity: 1;
}
.card--expanded-quick {
  --card-reveal-duration: 0.22s;
  --card-reveal-opacity-duration: 0.16s;
  --card-reveal-opacity-delay: 0s;
}
.card--expanded-instant {
  --card-reveal-duration: 0ms;
  --card-reveal-opacity-duration: 0ms;
  --card-reveal-opacity-delay: 0ms;
}
@media (prefers-reduced-motion: reduce) {
  .card__details {
    grid-template-rows: 1fr;
  }
  .card__details-inner {
    opacity: 1;
    transition: none;
  }
}

.nav {
  display: none;
  background-color: var(--primary-color);
}
.header--menu-open .nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: calc(56px + env(safe-area-inset-top, 0px));
  overflow-y: auto;
}
@media only screen and (min-width: 1024px) {
  .header--menu-open .nav {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }
}
.nav__list {
  margin: 0;
  padding: 0 20px 20px !important;
  list-style: none;
}
.nav__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.nav__chevron {
  flex-shrink: 0;
  width: 7px;
  height: 12px;
  transition: transform 150ms ease-in-out;
}
.nav__item .nav__link {
  padding-block: 20px;
}
.nav__item:not(:first-child) .nav-title {
  border-bottom: none;
  padding-block: 20px 0;
  margin-left: 0;
}
.nav__item--group > .nav__link.nav-title {
  border-bottom: none;
}
.nav__item--group .nav__sublist .nav__link {
  margin-inline: 30px;
}
.nav__sublist {
  width: 100%;
  padding-right: 30px;
}

.cat-runner-zone {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 109.29px;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 1.5rem;
  overflow: visible;
  pointer-events: none;
}

.cat-runner {
  position: relative;
  width: 150px;
  height: 109.29px;
  overflow: hidden;
  transform: translateX(-150px);
}
@media (prefers-reduced-motion: reduce) {
  .cat-runner {
    display: none;
  }
}
.cat-runner.is-running {
  animation: sprite-cross-ltr 3s linear forwards;
}
.cat-runner.is-running .cat-runner__sprite {
  animation: sprite-walk 0.5s steps(3) 6 forwards;
}
.cat-runner__sprite {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../assets/media/jeu/spritesheet.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 630px 109.29px;
}

@keyframes sprite-walk {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -480px 0;
  }
}
@keyframes sprite-cross-ltr {
  from {
    transform: translateX(-150px);
  }
  to {
    transform: translateX(100vw);
  }
}
/*
      THE TRICK :
      .carousel__window → overflow:hidden + padding latéral
                          Le padding crée l'espace pour voir les slides voisines.
                          overflow:hidden coupe uniquement ce qui dépasse du padding.

      .carousel__track  → display:flex, pas d'overflow défini (= visible par défaut)
                          Les slides débordent librement dans le padding du window.
                          On translate ce track pour changer de slide.
    */
.carousel {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.carousel.carousel--initializing {
  opacity: 0;
  pointer-events: none;
}

.carousel__window {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  margin-inline: auto;
  position: relative;
}
@media only screen and (min-width: ) {
  .carousel__window::before, .carousel__window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .carousel__window::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
  }
  .carousel__window::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
  }
}

@media (max-width: 767px) {
  .carousel__window {
    max-width: 390px;
  }
}
@media (min-width: 768px) {
  .carousel__window {
    max-width: 680px;
    padding-inline: 24px;
  }
}
@media only screen and (min-width: ) {
  .carousel__window {
    max-width: 860px;
    padding-inline: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .carousel__window {
    max-width: 1020px;
    padding-inline: 48px;
  }
}
.carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.carousel__track--dragging {
  transition: none;
  cursor: grabbing;
}

.carousel__track--recalibrating .carousel__slide {
  transition: none;
}
.carousel__track--recalibrating .carousel__slide::before {
  transition: none;
}

/* Force no transition/animation during init so extra classes on slides don’t cause a “stop then start” */
.carousel--initializing .carousel__track,
.carousel--initializing .carousel__track *,
.carousel--initializing .carousel__slide,
.carousel--initializing .carousel__slide * {
  transition: none !important;
  animation: none !important;
}

/*
     slide = 70% du window → les 30% restants sont répartis entre gauche et droite.
     Le track est centré via translateX donc chaque voisine montre ~15%.
     Sur desktop on descend à 60% pour un peek encore plus généreux.
   */
.carousel__slide {
  flex: none;
  border-radius: 32px;
  border: 4px solid var(--secondary-color);
  overflow: hidden;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.5s ease;
  width: 208px;
  height: 330px;
}
.carousel__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, #000 100%);
  transition: opacity 0.5s ease;
}
@media only screen and (min-width: 1620px) {
  .carousel__slide {
    width: 240px;
    height: 380px;
  }
}
@media only screen and (min-width: 1920px) {
  .carousel__slide {
    width: 280px;
    height: 443px;
  }
}

.carousel__slide--active {
  transform: scale(1.1);
}
.carousel__slide--active::before {
  opacity: 0;
}

.carousel__slide--selected {
  border-color: var(--blanc);
  z-index: 1;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.carousel__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.carousel__slide-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel__slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.carousel__slide-title {
  font-size: 18px;
  font-weight: 400;
}

.carousel__slide-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.carousel__slide-joueur {
  font-size: 18px;
  font-weight: 600;
}

.offres {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-image: url("../assets/media/icons/route.svg");
  background-repeat: no-repeat;
  background-position: -15% 75%;
  gap: 2.5rem;
}
@media only screen and (min-width: 430px) {
  .offres {
    background-position: 19vw 82%;
  }
}
@media only screen and (min-width: 768px) {
  .offres {
    background-position: 40vw 72%;
  }
}
@media only screen and (min-width: 1024px) {
  .offres {
    background-position: 50vw 42%;
  }
}
@media only screen and (min-width: 1200px) {
  .offres {
    background-position: 95% 42%;
  }
}
@media only screen and (min-width: 1440px) {
  .offres {
    gap: 3.5rem;
    background-position: 75% 60%;
  }
}
.offres--main {
  overflow: visible;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .offres--main {
    overflow-x: clip;
  }
}
@media only screen and (min-width: 768px) {
  .offres--main {
    background-color: #1F368B;
    padding-block: 2rem;
    padding-inline: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .offres--main {
    padding-inline: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .offres--main .offres__carousel {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .offres--main .offres__carousel--nuages .card__nuage--1 {
    left: -15%;
  }
}
@media only screen and (min-width: 1024px) {
  .offres--main .offres__carousel--nuages .card__nuage--1 {
    left: -5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .offres--main .offres__carousel--nuages .card__nuage--2 {
    right: -15%;
  }
}
@media only screen and (min-width: 1024px) {
  .offres--main .offres__carousel--nuages .card__nuage--2 {
    right: -5%;
  }
}
@media only screen and (min-width: 1200px) {
  .offres--main .offres__carousel.splide.offres__carousel--static .splide__track, .offres--main .offres__carousel.splide:not(.is-initialized) .splide__track {
    overflow: visible;
  }
  .offres--main .offres__carousel.splide.offres__carousel--static .splide__list, .offres--main .offres__carousel.splide:not(.is-initialized) .splide__list {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: 100% !important;
    transform: none !important;
  }
  .offres--main .offres__carousel.splide.offres__carousel--static .splide__slide, .offres--main .offres__carousel.splide:not(.is-initialized) .splide__slide {
    width: calc(50% - 0.75rem) !important;
    flex: 0 0 calc(50% - 0.75rem);
  }
  .offres--main .offres__carousel.splide.offres__carousel--static .splide__pagination, .offres--main .offres__carousel.splide:not(.is-initialized) .splide__pagination {
    display: none;
  }
  .offres--main .offres__carousel.splide.offres__carousel--static .card, .offres--main .offres__carousel.splide:not(.is-initialized) .card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .offres--main .offres__carousel.splide .splide__pagination {
    display: none;
  }
}
.offres__container {
  padding: 1rem 1.25rem 0;
}
@media only screen and (min-width: 1024px) {
  .offres__container {
    padding: 2rem 3rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .offres__container {
    padding: 2rem 4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .offres__container {
    width: 1440px;
    margin-inline: auto;
    padding: 2rem 3rem 0;
  }
}
.offres__carousel {
  margin-top: 2rem;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .offres__carousel {
    padding-inline: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .offres__carousel {
    max-width: 1440px;
    margin-inline: auto;
  }
}
.offres__carousel--nuages {
  overflow: visible;
}
.offres__carousel--nuages .card__nuage {
  position: absolute;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  will-change: transform;
}
@media only screen and (max-width: 389.98px) {
  .offres__carousel--nuages .card__nuage {
    display: none;
  }
}
.offres__carousel--nuages .card__nuage img {
  width: clamp(9rem, 55vw, 14.8125rem);
  max-width: none;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .offres__carousel--nuages .card__nuage img {
    width: clamp(7rem, 42vw, 10rem);
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .offres__carousel--nuages .card__nuage img {
    width: clamp(7rem, 18vw, 10rem);
  }
}
.offres__carousel--nuages .card__nuage--1 {
  top: 23%;
  left: -40%;
}
@media only screen and (max-width: 767px) {
  .offres__carousel--nuages .card__nuage--1 {
    left: -32%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .offres__carousel--nuages .card__nuage--1 {
    left: -5%;
  }
}
.offres__carousel--nuages .card__nuage--2 {
  top: 0;
  right: -30%;
}
@media only screen and (max-width: 767px) {
  .offres__carousel--nuages .card__nuage--2 {
    right: -24%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .offres__carousel--nuages .card__nuage--2 {
    right: -5%;
  }
}
.offres__carousel--nuages .splide__track {
  z-index: 1;
}
.offres__carousel--nuages .card__etiquette {
  z-index: 4;
}
.offres__carousel.splide {
  visibility: visible;
}
.offres__carousel.splide .splide__track {
  overflow: hidden;
}
.offres__carousel.splide .splide__list {
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.offres__carousel.splide.is-initialized .splide__list {
  display: flex !important;
}
.offres__carousel.splide .splide__slide {
  flex-shrink: 0;
}
.offres__carousel.splide .card {
  margin-top: 0;
}
.offres__carousel.splide .splide__list,
.offres__carousel.splide .splide__pagination {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offres__carousel.splide .splide__slide,
.offres__carousel.splide .splide__pagination li {
  list-style: none;
}
.offres__carousel.splide .splide__slide::marker,
.offres__carousel.splide .splide__pagination li::marker {
  content: none;
}
.offres__carousel.splide .splide__arrow {
  display: none;
}
.offres__carousel.splide .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 1rem 1.25rem 0;
}
.offres__carousel.splide .splide__pagination__page {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: #D2D7E8;
}
.offres__carousel.splide .splide__pagination__page.is-active {
  opacity: 1;
  background-color: var(--secondary-color);
}
.offres__carousel--small {
  padding: 20px;
}
@media only screen and (min-width: 1024px) {
  .offres__carousel--small {
    padding-inline: 3rem;
  }
}
.offres__carousel--small .card {
  height: 450px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .offres__carousel--small .card {
    height: 510px;
  }
}
.offres__carousel--small .card__image {
  position: relative;
}
.offres__carousel--small .card__container, .offres__carousel--small .card__etiquette {
  z-index: 3;
}
.offres__bonhomme {
  position: absolute;
  right: -10%;
  top: 20%;
  z-index: 4;
  width: 40%;
}
@media only screen and (min-width: 768px) {
  .offres__bonhomme {
    right: -20%;
  }
}
@media only screen and (min-width: 1024px) {
  .offres__bonhomme {
    right: -25%;
  }
}
@media only screen and (min-width: 1200px) {
  .offres__bonhomme {
    right: -30%;
    top: 80%;
  }
}
.offres__biker {
  position: absolute;
  right: 4%;
  top: 26%;
  z-index: 4;
  width: 13%;
}
@media only screen and (max-width: 767px) {
  .offres__biker {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .offres__biker {
    right: 2%;
    width: 9%;
  }
}
@media only screen and (min-width: 1024px) {
  .offres__biker {
    width: 7.5%;
    top: 70%;
  }
}
@media only screen and (min-width: 1200px) {
  .offres__biker {
    right: -1.5%;
  }
}
@media only screen and (min-width: 1440px) {
  .offres__biker {
    width: 6.5%;
  }
}
.offres--pas-de-route {
  background-image: none;
}

.ancrage {
  position: fixed;
  right: max(20px, 6%);
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  padding: 0;
  line-height: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.ancrage--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.ancrage img {
  display: block;
  width: 31px;
  height: 31px;
}
.ancrage:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
  border-radius: 50%;
}

@media (prefers-reduced-motion: no-preference) {
  html:has(body.home) {
    scroll-behavior: smooth;
  }
}
@media only screen and (min-width: ) {
  body.home {
    background-color: var(--primary-color);
  }
}
#nos-offres {
  scroll-margin-top: calc(56px + env(safe-area-inset-top, 0px));
  overflow: visible;
}
@media only screen and (min-width: 1024px) {
  #nos-offres {
    scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #nos-offres .offres__carousel--nuages .card__nuage--1 {
    left: -15%;
  }
}
@media only screen and (min-width: 1024px) {
  #nos-offres .offres__carousel--nuages .card__nuage--1 {
    left: -5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #nos-offres .offres__carousel--nuages .card__nuage--2 {
    right: -15%;
  }
}
@media only screen and (min-width: 1024px) {
  #nos-offres .offres__carousel--nuages .card__nuage--2 {
    right: -5%;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "video" "lots";
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero {
    min-height: 100dvh;
    grid-template-rows: minmax(max(13.75rem, 45dvh), 1fr) auto;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero {
    height: 100dvh;
    min-height: 0;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
    overflow: visible;
  }
}
@media only screen and (min-width: 1024px) and (min-height: 700px) and (max-height: 899px) {
  .hero {
    height: 100dvh;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1200px) and (min-height: 700px) {
  .hero {
    height: 100dvh;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1200px) and (min-height: 700px) and (max-height: 899px) {
  .hero {
    height: 100dvh;
    min-height: 0;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }
}
@media (min-width: 1024px) and (max-height: 699px) {
  .hero {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .hide-mobile {
    display: none !important;
  }
}
.hero__media {
  grid-area: video;
  position: relative;
  z-index: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--primary-color) url("../assets/media/home/home_fallback.png") center top/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .hero__media {
    min-height: max(13.75rem, 45dvh);
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__media {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: unset;
    background-image: url("../assets/media/home/vignette-video-desk.webp");
    background-position: center top;
  }
}
@media only screen and (min-width: 1200px) and (min-height: 700px) {
  .hero__media {
    background-image: url("../assets/media/home/vignette-video-desk.webp");
    background-position: center center;
    width: 100%;
    aspect-ratio: unset;
    max-height: none;
  }
}
@media only screen and (min-width: 1200px) and (min-height: 900px) {
  .hero__media {
    height: 100%;
  }
}
@media (min-width: 1024px) and (max-height: 699px) {
  .hero__media {
    min-height: unset;
    height: auto;
    aspect-ratio: 4/1;
    width: 100%;
    max-height: none;
  }
}
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}
@media only screen and (min-width: 768px) {
  .hero__video {
    object-position: center center;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__video {
    object-fit: cover;
    object-position: center top;
  }
}
@media (min-width: 1024px) and (max-height: 699px) {
  .hero__video {
    object-position: center center;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__video {
    object-position: center 30%;
  }
}
.hero__ml {
  display: flex;
  flex-direction: column;
}
.hero__play {
  position: absolute;
  left: var(--hero-play-x, 50%);
  top: var(--hero-play-y, 54%);
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1440px) and (min-height: 700px) {
  .hero__play--desktop {
    transform: translate(-50%, -50%) scale(1.3);
  }
}
@media (min-width: 1024px) and (max-height: 699px) {
  .hero__play {
    top: auto;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__lots {
  grid-area: lots;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots {
    flex-shrink: 0;
    margin-top: 0;
  }
}
.hero__lots-container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .hero__lots-container {
    flex-direction: row-reverse;
    gap: 52px;
    justify-content: center;
    margin-block: 0.75rem;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__lots-container {
    margin-block: 28px 20px;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots-container {
    gap: 1.5rem;
    padding-top: 2.75rem;
    margin-block: 0 1rem;
  }
}
.hero__lots-element {
  position: relative;
  padding: 3.125rem 1rem 1rem;
  background-color: var(--primary-color);
  border-radius: 12px 12px 0 0;
}
@media only screen and (min-width: 1024px) {
  .hero__lots-element {
    padding: 2rem 1rem 1rem;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots-element {
    padding: 1.25rem 1rem 0.75rem;
    border-radius: 0;
  }
}
.hero__lots-element-titre {
  position: absolute;
  top: 0;
  left: 1.25rem;
  transform: translateY(-35%) rotate(-3deg);
  margin: 0;
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--secondary-color);
  border-radius: 1rem;
  background-color: var(--primary-color);
  width: fit-content;
}
@media only screen and (min-width: 1024px) {
  .hero__lots-element-titre {
    left: 27%;
    top: -8%;
    transform: translateX(-50%) translateY(-35%) rotate(-3deg);
  }
}
@media only screen and (min-width: 1200px) {
  .hero__lots-element-titre {
    top: 0%;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__lots-element-titre {
    top: -8%;
    left: 50%;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots-element-titre {
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%) rotate(-3deg);
  }
}
.hero__lots-a-gagner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  list-style: none;
}
.hero__lots-a-gagner-image {
  margin: 0;
}
.hero__lots-a-gagner-image img {
  display: block;
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .hero__lots-a-gagner-image img {
    max-height: 3.25rem;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots-a-gagner-image img {
    max-height: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__lots-a-gagner-image img {
    max-height: 4rem;
  }
}
@media only screen and (min-width: 1200px) and (min-height: 900px) {
  .hero__lots-a-gagner-image img {
    max-height: 120px;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__lots-a-gagner-image img {
    max-height: 5.75rem;
  }
}
@media only screen and (min-width: 1440px) and (min-height: 900px) {
  .hero__lots-a-gagner-image img {
    max-height: 120px;
  }
}
.hero__lots-a-gagner-subtitle {
  margin: 0 0 0.5rem;
}
.hero__lots-ancrage {
  position: relative;
  margin-top: -2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 4rem;
  padding: 0.75rem 1.25rem 0.875rem;
  text-align: center;
  text-decoration: none;
  border-radius: 12px 12px 0 0;
  background-color: var(--secondary-color);
  cursor: pointer;
}
@media only screen and (min-width: 1440px) {
  .hero__lots-ancrage {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (min-height: 700px) and (max-height: 899px) {
  .hero__lots-ancrage {
    min-height: 3rem;
    padding: 0.875rem 1.25rem;
    border-radius: 0;
  }
}
.hero__lots-ancrage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: var(--primary-color);
}
.hero__lots-ancrage > * {
  position: relative;
  z-index: 1;
}
.hero__lots-ancrage-confetti {
  position: absolute;
  left: -7%;
  margin: 0;
  flex-shrink: 0;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .hero__lots-ancrage-confetti {
    left: 18%;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__lots-ancrage-confetti {
    left: 22vw;
  }
}
@media only screen and (min-width: 1620px) {
  .hero__lots-ancrage-confetti {
    left: 25vw;
  }
}
@media only screen and (min-width: 1920px) {
  .hero__lots-ancrage-confetti {
    left: 28vw;
  }
}
.hero__lots-ancrage-confetti img {
  width: 6.8125rem;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .hero__lots-ancrage-confetti img {
    width: 5rem;
  }
}

.splide__track {
  padding-inline: 0 !important;
}

body.joueur {
  background-color: var(--primary-color);
  color: var(--blanc);
  min-height: 100vh;
}
@media only screen and (max-width: 1023px) {
  body.joueur .form__container {
    padding-bottom: 56px;
  }
}
body.joueur .form-title {
  margin-bottom: 0;
}
body.joueur .page-actions {
  margin-top: 0;
}

.page-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.joueur__chosen {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.joueur__chosen-image {
  margin: 0;
}
.joueur__chosen-image img {
  display: block;
  width: 8.8125rem;
  height: auto;
  object-fit: contain;
}

body.video {
  background-color: var(--primary-color);
}
body.video .video__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 108px 0 44px;
}
@media only screen and (min-width: 1024px) {
  body.video .video__container {
    padding: 0;
    gap: 0;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
  }
}
body.video .video__layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  body.video .video__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-height: 700px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1620px) {
  body.video .video__layout {
    height: 850px;
    max-height: none;
  }
}
@media only screen and (min-width: 1920px) {
  body.video .video__layout {
    height: 1000px;
  }
}
@media only screen and (min-width: 2160px) {
  body.video .video__layout {
    height: 1100px;
  }
}
body.video .video__joueur {
  display: none;
}
@media only screen and (min-width: 1024px) {
  body.video .video__joueur {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
    align-items: center;
    justify-content: center;
    gap: 48px;
    height: 700px;
    padding: 24px;
    max-height: 700px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1620px) {
  body.video .video__joueur {
    height: 850px;
    max-height: none;
  }
}
@media only screen and (min-width: 1920px) {
  body.video .video__joueur {
    height: 1000px;
  }
}
@media only screen and (min-width: 2160px) {
  body.video .video__joueur {
    height: 1100px;
  }
}
body.video .video__joueur-image {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.video .video__joueur-image img {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
@media only screen and (min-width: 1024px) {
  body.video .video__joueur-image img {
    width: 200px;
  }
}
@media only screen and (min-width: 1440px) {
  body.video .video__joueur-image img {
    width: 250px;
  }
}
@media only screen and (min-width: 1920px) {
  body.video .video__joueur-image img {
    width: 300px;
  }
}
body.video .video__lots {
  margin: 0;
  flex-shrink: 0;
}
body.video .video__lots img {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}
@media only screen and (min-width: 1440px) {
  body.video .video__lots img {
    width: 475px;
    max-width: none;
  }
}
@media only screen and (min-width: 1920px) {
  body.video .video__lots img {
    width: 550px;
  }
}
body.video .video__media {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  body.video .video__media {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: stretch;
    min-height: 100dvh;
    overflow: hidden;
  }
}
body.video .video__media > .video {
  min-height: 450px;
  height: calc(90dvh - 108px - 100px);
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  body.video .video__media > .video {
    flex: 1;
    min-height: 100%;
    height: 100%;
  }
}
body.video .video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.video .video__reglement {
  padding-inline: 20px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  body.video .video__reglement {
    padding-block: 1rem;
  }
}

.resultat {
  background-color: var(--primary-color);
}
.resultat__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-block: 24px 44px;
}
.resultat__container > .video {
  min-height: 450px;
  height: calc(90dvh - 24px - 100px);
  width: 100%;
}
.resultat .video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.resultat--vu .video {
  display: none;
}

.offre {
  position: relative;
  overflow: visible;
}
.offre__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .offre__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 820px;
  }
}
.offre__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 20px 28px;
}
@media only screen and (min-width: 768px) {
  .offre__container {
    width: 80%;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__container {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    width: auto;
    max-width: 900px;
    margin-inline: auto;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }
}
@media only screen and (min-width: 1440px) {
  .offre__container {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: 100px;
  }
}
.offre__container--bienvenue {
  padding: 32px 20px 112px;
}
@media only screen and (min-width: 1024px) {
  .offre__container--bienvenue {
    padding: 112px 20px 56px;
    max-width: 600px;
  }
}
@media only screen and (min-width: 1440px) {
  .offre__container--bienvenue .offre__subcontainer {
    max-width: 100%;
  }
}
.offre__container--parrainage {
  padding: 32px 20px 0;
  margin-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  .offre__container--parrainage {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: 28px;
    margin-bottom: 48px;
  }
}
.offre__container--no-max-width {
  max-width: none !important;
  width: 100%;
}
.offre__image {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .offre__image {
    height: 260px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__image {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    height: 0;
    min-height: 100%;
    overflow: hidden;
  }
}
.offre__image picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.offre__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.offre__subcontainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1440px) {
  .offre__subcontainer {
    margin-bottom: 1rem;
    max-width: 590px;
  }
}
.offre__subcontainer--no-max-width {
  max-width: none !important;
  width: 100%;
}
.offre__subcontainer:first-child h1,
.offre__subcontainer:first-child h2 {
  margin-bottom: 12px;
}
@media only screen and (min-width: 1440px) {
  .offre__subcontainer:first-child h1,
  .offre__subcontainer:first-child h2 {
    margin-bottom: 0;
  }
}
.offre__subcontainer-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .offre__subcontainer-item {
    align-items: flex-start;
  }
  .offre__subcontainer-item .offer-body {
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__subcontainer--flex {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }
}
.offre__subcontainer-border {
  margin-top: 1rem;
  border-top: 8px solid #D9D9D9;
  border-bottom: 8px solid #D9D9D9;
}
.offre__subcontainer:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offre__confetti {
  position: absolute;
  right: -8%;
  bottom: -1.5%;
}
@media only screen and (min-width: 430px) {
  .offre__confetti {
    right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__confetti {
    width: 20%;
    top: 10%;
    right: 29vw;
  }
}
@media only screen and (min-width: 1200px) {
  .offre__confetti {
    max-width: 296px;
    right: 35vw;
  }
}
@media only screen and (min-width: 1440px) {
  .offre__confetti {
    right: 32vw;
  }
}
@media only screen and (min-width: 1920px) {
  .offre__confetti {
    right: 38vw;
  }
}
.offre__confetti img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offre__bonhomme {
  position: absolute;
  left: -23%;
  bottom: -52%;
  z-index: -2;
  width: 43%;
}
@media only screen and (min-width: 430px) {
  .offre__bonhomme {
    left: -10%;
    bottom: -80%;
    width: 27%;
  }
}
@media only screen and (min-width: 768px) {
  .offre__bonhomme {
    left: -15%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__bonhomme {
    max-width: 233px;
    top: -26%;
    left: -3vw;
    bottom: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .offre__bonhomme {
    top: -28%;
    width: 27%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre__bonhomme {
    width: 35%;
    left: -8vw;
  }
}
.offre__bonhomme img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offre__bonhomme-3 {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: 3;
}
.offre__madame {
  display: none;
  margin: 0;
  pointer-events: none;
}
.offre__madame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.offre__subcontainer-image-1, .offre__subcontainer-image-2 {
  flex-shrink: 0;
  min-width: 0;
  margin: 0;
}
.offre__subcontainer-image-1 img, .offre__subcontainer-image-2 img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.offre__subcontainer-image-1 {
  width: 77px;
}
@media only screen and (min-width: 1024px) {
  .offre__subcontainer-image-1 {
    width: 132px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__subcontainer-image-1 img {
    width: 100%;
    height: auto;
  }
}
.offre__subcontainer-image-2 {
  width: 132px;
}
.offre__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.9375rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 311px;
}
.offre__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
}
.offre__list-icon {
  flex-shrink: 0;
}
.offre__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.offre__legal-title {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.offre__legal-body {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.offre__legal-warning {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.offre__table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}
@media only screen and (min-width: 768px) {
  .offre__table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
@media only screen and (min-width: 1440px) {
  .offre__table {
    max-width: 540px;
  }
}
.offre__table-row {
  display: flex;
  flex-direction: column;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .offre__table-row {
    height: 100%;
  }
}
.offre__table-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px;
  margin: 0;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .offre__table-label {
    flex: 1;
    min-height: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .offre__table-label {
    font-size: 24px;
  }
}
.offre__table-label-note {
  display: block;
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  letter-spacing: -0.048px;
  line-height: 1.2;
}
.offre__table-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px;
  margin: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .offre__table-value {
    min-height: 48px;
  }
}
.offre__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: center;
  color: var(--primary-color);
}
.offre__specs-taeg {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  margin: 0;
}
.offre__specs-line {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}
.offre__specs-line strong {
  font-size: 20px;
  font-weight: 700;
}
.offre__client-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .offre__client-link {
    text-align: left;
  }
}
.offre__client-text {
  font-size: 16px;
  color: #030303;
  letter-spacing: -0.064px;
  margin: 0;
  text-align: center !important;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .offre__client-text {
    text-align: left !important;
  }
}
.offre__client-link-url {
  font-size: 16px;
  color: #030303;
  letter-spacing: -0.064px;
  text-decoration: underline;
}
.offre__client-app {
  font-size: 14px;
  font-weight: 700;
  color: #2a327b;
  letter-spacing: -0.056px;
  line-height: normal;
  margin: 12px 0 0;
  text-align: center;
}
.offre__qrcode {
  margin: 0;
  width: 101px;
}
.offre__qrcode img {
  display: block;
  width: 100%;
  height: auto;
}
.offre__offer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.offre__offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.offre__intro-note {
  font-size: 16px;
  font-style: italic;
  letter-spacing: -0.064px;
  line-height: 1.2;
  text-align: center;
  color: #030303;
  margin: 0;
}
.offre__intro-note sup {
  font-size: 10px;
}
.offre__intro-extra {
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
}
.offre__intro-extra sup {
  font-size: 12px;
}
.offre__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .offre__cta-group {
    flex-direction: row;
    justify-content: center;
  }
}
.offre__cta-btn {
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 30px;
  width: 100%;
  max-width: 340px;
}
@media only screen and (min-width: 1024px) {
  .offre__cta-btn {
    max-width: none;
    width: fit-content;
  }
}
@media only screen and (min-width: 1440px) {
  .offre__cta-btn {
    font-size: 1.25rem;
  }
}
.offre__intro {
  font-size: 18px;
  line-height: inherit;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 590px;
  color: #030303;
}
.offre__intro strong {
  color: var(--primary-color);
  font-weight: var(--font-weight-extrabold);
}
.offre__intro-highlight {
  font-size: 32px;
  line-height: inherit;
}
.offre__intro-highlight sup {
  font-size: 20px;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -0.35em;
}
.offre__benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 16px;
  margin-top: 40px;
  background-color: var(--primary-color);
  border-radius: 12px 12px 0 0;
}
@media only screen and (min-width: 768px) {
  .offre__benefits {
    padding: 20px 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .offre__benefits {
    max-width: 540px;
  }
}
.offre__benefits-title {
  font-size: 24px;
  font-weight: var(--font-weight-extrabold);
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.offre__benefits-title sup {
  font-size: 15px;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -0.35em;
}
.offre__benefits-list {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.offre__benefits-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 5px;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-weight-extrabold);
  line-height: inherit;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .offre__benefits-item {
    width: fit-content;
    margin-inline: auto;
  }
}
.offre__benefits-item:first-child {
  font-weight: 700;
}
.offre__benefits-icon {
  align-self: start;
  width: 30px;
  height: 30px;
}
.offre__hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.offre--epargne .offre__container {
  gap: 0;
  position: relative;
}
.offre--epargne .offre__confetti--4 {
  display: block;
  position: absolute;
  left: -32%;
  top: -14%;
  width: 140px;
  margin: 0;
}
@media only screen and (min-width: 360px) {
  .offre--epargne .offre__confetti--4 {
    left: -25%;
  }
}
@media only screen and (min-width: 430px) {
  .offre--epargne .offre__confetti--4 {
    left: -10%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--epargne .offre__confetti--4 {
    left: -9%;
    top: 6%;
    width: 30%;
    max-width: 296px;
    transform: scaleX(-1);
  }
}
.offre--epargne .offre__confetti--4 img {
  display: block;
  width: 100%;
  height: auto;
}
.offre--epargne .offre__biker {
  position: absolute;
  right: -12%;
  top: -5%;
  width: 20%;
  max-width: 92px;
}
@media only screen and (min-width: 430px) {
  .offre--epargne .offre__biker {
    right: -3%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--epargne .offre__biker {
    top: 30%;
    right: -5%;
    max-width: 361px;
  }
}
.offre--epargne .offre__biker img {
  width: 100%;
  height: auto;
}
.offre--epargne .offre__cta-btn {
  margin-top: 20px;
  font-size: 1.375rem;
  line-height: 1.5;
  max-width: 340px;
}
.offre--credit-conso .offre__container {
  gap: 0;
}
.offre--credit-conso .offre__confetti--cta {
  position: absolute;
  right: -18%;
  bottom: -1%;
  top: auto;
  z-index: 2;
  width: 120px;
  pointer-events: none;
  transform: none;
}
@media only screen and (min-width: 430px) {
  .offre--credit-conso .offre__confetti--cta {
    right: -5%;
    bottom: -2%;
  }
}
@media only screen and (min-width: 768px) {
  .offre--credit-conso .offre__confetti--cta {
    right: auto;
    right: 0;
    bottom: 6%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--credit-conso .offre__confetti--cta {
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--credit-conso .offre__confetti--cta {
    width: 13%;
  }
}
.offre--credit-conso .offre__confetti--cta img {
  width: 100%;
  height: auto;
}
.offre--credit-conso .offre__bonhomme-3 {
  width: 92px;
  left: -20%;
  top: 10%;
  transform: rotate(20deg);
}
@media only screen and (min-width: 375px) {
  .offre--credit-conso .offre__bonhomme-3 {
    left: -12%;
  }
}
@media only screen and (min-width: 430px) {
  .offre--credit-conso .offre__bonhomme-3 {
    left: 0%;
    top: 15%;
    transform: rotate(0);
  }
}
@media only screen and (min-width: 768px) {
  .offre--credit-conso .offre__bonhomme-3 {
    left: 10vw;
    top: 15%;
    transform: rotate(0);
  }
}
@media only screen and (min-width: 1024px) {
  .offre--credit-conso .offre__bonhomme-3 {
    left: 45%;
    top: 10%;
    transform: translateX(-50%, 0);
  }
}
@media only screen and (min-width: 1440px) {
  .offre--credit-conso .offre__bonhomme-3 {
    top: 30%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--credit-conso .offre__bonhomme-3 {
    width: 7%;
  }
}
@media only screen and (min-width: 1920px) {
  .offre--credit-conso .offre__bonhomme-3 {
    left: 43%;
  }
}
.offre--credit-conso .offre__bonhomme-3 img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .offre--parrainage .offre__subcontainer:last-child {
    position: relative;
  }
}
.offre--parrainage .offre__madame {
  display: block;
  position: absolute;
  left: -8%;
  top: 10%;
  z-index: 1;
  width: 32vw;
  max-width: 126px;
}
@media only screen and (min-width: 430px) {
  .offre--parrainage .offre__madame {
    left: -3%;
    top: 40vw;
    width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  .offre--parrainage .offre__madame {
    left: 10%;
    top: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--parrainage .offre__madame {
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .offre--parrainage .offre__madame {
    max-width: 187px;
    left: -4%;
    top: 2%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--parrainage .offre__madame {
    max-width: 220px;
    left: 0%;
    top: 2%;
  }
}
@media only screen and (max-width: 1023px) {
  .offre--parrainage .offre__confetti {
    right: -8%;
    bottom: -3%;
    width: 34%;
    max-width: 150px;
    max-height: 172px;
    z-index: 2;
  }
}
@media only screen and (min-width: 430px) {
  .offre--parrainage .offre__confetti {
    right: 0;
    bottom: -6%;
    width: 30%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--parrainage .offre__confetti {
    top: -25%;
    right: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .offre--parrainage .offre__confetti {
    top: -35%;
    right: 30%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--parrainage .offre__confetti {
    right: 38vw;
  }
}
.offre--parrainage .offre__confetti img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offre--cartes .offre__confetti {
  top: 40vw;
  right: 0;
  max-width: 132px;
  max-height: 170px;
}
@media only screen and (min-width: 768px) {
  .offre--cartes .offre__confetti {
    top: 15%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--cartes .offre__confetti {
    max-width: 296px;
    max-height: 361px;
    right: auto;
    left: -5%;
    bottom: 25%;
    top: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .offre--cartes .offre__confetti {
    left: -8%;
    bottom: 6%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--cartes .offre__confetti {
    bottom: 10%;
    left: -10%;
  }
}
@media only screen and (min-width: 1620px) {
  .offre--cartes .offre__confetti {
    bottom: 10%;
    left: -3%;
  }
}
.offre--cartes .offre__confetti img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offre--cartes .offre__peace {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .offre--cartes .offre__peace {
    display: block;
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateX(-50%, -50%);
    z-index: 2;
  }
}
.offre--credit-velo .offre__container {
  gap: 0;
}
@media only screen and (min-width: 1024px) {
  .offre--credit-velo .offre__container {
    padding-bottom: 104px;
  }
}
.offre--credit-velo .offre__hero {
  padding-bottom: 64px;
}
@media only screen and (min-width: 1024px) {
  .offre--credit-velo .offre__hero {
    padding-bottom: 0;
  }
}
.offre--credit-velo .offre__confetti--4 {
  position: absolute;
  right: 0;
  top: 45vw;
  z-index: 2;
  max-width: 140px;
  width: 30%;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .offre--credit-velo .offre__confetti--4 {
    top: 15%;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--credit-velo .offre__confetti--4 {
    top: 15%;
    right: 45%;
    transform: translateX(50%, 0);
  }
}
.offre--credit-velo .offre__confetti--4 img {
  width: 100%;
  height: auto;
}
.offre--credit-velo .offre__biker--3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  max-width: 176px;
  width: 25%;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .offre--credit-velo .offre__biker--3 {
    width: 12%;
    left: -2%;
  }
}
.offre--credit-velo .offre__biker--3 img {
  width: 100%;
  height: auto;
}
.offre--credit-velo .offre__confetti--cta {
  position: absolute;
  right: 0;
  bottom: -2%;
  z-index: 2;
  max-width: 176px;
  width: 25%;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .offre--credit-velo .offre__confetti--cta {
    display: none;
  }
}
.offre--credit-velo .offre__confetti--cta img {
  width: 100%;
  height: auto;
}
.offre--credit-velo .offre__cta-btn {
  font-size: 1.375rem;
  line-height: 1.5;
  max-width: 340px;
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__hero {
    min-height: 1143px;
  }
}
@media only screen and (max-width: 1023px) {
  .offre--enfants-0-17 .offre__hero .hide-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__hero .hide-mobile {
    display: block !important;
  }
}
.offre--enfants-0-17 .offre__confetti {
  position: absolute;
  pointer-events: none;
  margin: 0;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__confetti {
    max-width: 296px;
    max-height: 361px;
    right: auto;
    left: -10%;
    top: 20%;
    transform: scaleX(-1);
  }
}
@media only screen and (min-width: 1440px) {
  .offre--enfants-0-17 .offre__confetti {
    bottom: 10%;
    left: -10%;
  }
}
@media only screen and (min-width: 1620px) {
  .offre--enfants-0-17 .offre__confetti {
    bottom: 10%;
    left: -8%;
  }
}
.offre--enfants-0-17 .offre__confetti img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offre--enfants-0-17 .offre__container {
  gap: 24px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__container {
    gap: 50px;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__subcontainer {
    max-width: 622px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__subcontainer .offer-body {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: normal;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__offer-block {
    max-width: 622px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--enfants-0-17 .offre__offer-content,
  .offre--enfants-0-17 .offre__intro {
    max-width: 506px;
  }
}
.offre--enfants-0-17 .offre__intro-extra span {
  font-weight: var(--font-weight-regular);
}
.offre--enfants-0-17 .offre__peluche:not(.offre__peluche--hero) {
  position: absolute;
  left: -8%;
  top: -8%;
  z-index: 2;
  width: 130px;
  pointer-events: none;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .offre--enfants-0-17 .offre__peluche:not(.offre__peluche--hero) {
    width: 25%;
  }
}
.offre--enfants-0-17 .offre__peluche:not(.offre__peluche--hero) img {
  display: block;
  width: 100%;
  height: auto;
}
.offre--enfants-0-17 .offre__peluche--hero {
  position: absolute;
  left: 41%;
  bottom: 6%;
  z-index: 3;
  width: 331px;
  max-width: 35vw;
  height: auto;
  pointer-events: none;
  margin: 0;
}
.offre--enfants-0-17 .offre__peluche--hero img {
  display: block;
  width: 100%;
  height: auto;
}
.offre--enfants-0-17 .offre__client-link {
  max-width: 492px;
}
.offre--enfants-0-17 .offre__cta-btn {
  margin-top: 0;
  font-size: 1.375rem;
  line-height: 1.5;
  max-width: 340px;
}
.offre--ados .offre__container {
  gap: 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__container {
    gap: 24px;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__subcontainer {
    max-width: 506px;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__subcontainer .offer-body {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: normal;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__intro {
    max-width: 515px;
  }
}
.offre--ados .offre__confetti--4 {
  display: block;
  position: absolute;
  left: -10%;
  top: -30%;
  z-index: 2;
  width: 35%;
  pointer-events: none;
  margin: 0;
  max-width: 165px;
}
.offre--ados .offre__confetti--4 img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__confetti--4 {
    left: -13%;
    top: auto;
    bottom: -5%;
    width: 50%;
    max-width: 250px;
    transform: scaleX(-1);
  }
}
@media only screen and (min-width: 1200px) {
  .offre--ados .offre__confetti--4 {
    left: -25%;
  }
}
@media only screen and (min-width: 1440px) {
  .offre--ados .offre__confetti--4 {
    left: -45%;
  }
}
.offre--ados .offre__cta-group {
  margin-top: 0;
}
@media only screen and (min-width: 1024px) {
  .offre--ados .offre__cta-group {
    flex-direction: column;
  }
}
.offre--ados .offre__cta-btn {
  margin-top: 0;
  font-size: 1.375rem;
  line-height: 1.5;
  max-width: 340px;
}
@media only screen and (min-width: 1024px) {
  .offre--famille .offre__hero {
    min-height: 1027px;
  }
}
@media only screen and (max-width: 1023px) {
  .offre--famille .offre__hero .hide-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .offre--famille .offre__hero .hide-mobile {
    display: block !important;
  }
}
.offre--famille .offre__container {
  gap: 20px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .offre--famille .offre__container {
    max-width: 720px;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: 28px;
  }
}
.offre--famille .offre__subcontainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 362px;
}
@media only screen and (min-width: 768px) {
  .offre--famille .offre__subcontainer {
    max-width: 506px;
  }
}
.offre--famille .offre__subcontainer .offer-title {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .offre--famille .offre__subcontainer .offer-title {
    font-size: 52px;
    line-height: 1.2;
  }
}
.offre--famille .offre__subcontainer .offer-body {
  margin: 0;
}
.offre--famille .offre__subcontainer .offre__intro {
  max-width: none;
}
.offre--famille .offre__image {
  position: relative;
}
.offre--famille .offre__biker--famille {
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 3;
  max-height: 202px;
  width: 15%;
  pointer-events: none;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .offre--famille .offre__biker--famille {
    display: none;
  }
}
.offre--famille .offre__biker--famille img {
  width: 100%;
  height: auto;
}
.offre--famille .offre__famille-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 362px;
}
@media only screen and (min-width: 768px) {
  .offre--famille .offre__famille-stack {
    max-width: 528px;
  }
}
@media only screen and (min-width: 1200px) {
  .offre--famille .offre__famille-stack {
    max-width: 768px;
  }
}
.offre--famille .offre__famille-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 0 0;
}
.offre--famille .offre__famille-arrow {
  display: block;
  width: 20px;
  height: auto;
  margin-top: 10px;
}
.offre--famille .offre__famille-card {
  width: 100%;
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.offre--famille .offre__famille-section {
  padding: 20px 16px 24px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .offre--famille .offre__famille-section {
    padding-inline: 24px;
  }
}
.offre--famille .offre__famille-section .offre__benefits-title,
.offre--famille .offre__famille-section .offer-body,
.offre--famille .offre__famille-section .offer-highlight,
.offre--famille .offre__famille-section .offre__client-link-url,
.offre--famille .offre__famille-section .offre__client-app {
  color: inherit;
}
.offre--famille .offre__famille-section .offre__client-link-url {
  font-weight: 800;
}
.offre--famille .offre__famille-section .offre__benefits-title {
  margin-bottom: 12px;
}
.offre--famille .offre__famille-section .offer-highlight {
  margin-top: 8px;
}
.offre--famille .offre__famille-section .offer-body .offer-highlight {
  margin-top: 4px;
}
.offre--famille .offre__famille-section sup {
  font-size: 12px;
  line-height: 0;
  vertical-align: super;
}
.offre--famille .offre__famille-section .offre__benefits-title sup {
  font-size: 15px;
}
.offre--famille .offre__famille-section--parents {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 12px 12px 0 0;
  padding-bottom: 28px;
}
.offre--famille .offre__famille-section--enfants {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding-bottom: 28px;
  border-radius: 0 0 12px 12px;
}
.offre--famille .offre__famille-section--enfants .offre__client-link-url {
  display: block;
  margin: 10px 0;
}
.offre--famille .offre__famille-section--enfants .offre__client-app {
  margin-top: 16px;
}
.offre--famille .offre__client-app.hide-mobile {
  max-width: 506px;
  margin-top: 0;
}
.offre--famille .offre__qrcode {
  margin-top: 0;
}

.offer-taeg {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 13px;
}
.offer-taeg__text {
  display: inline-block;
  transform: rotate(-3deg);
  padding: 20px 40px;
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-align: center;
}
.offer-taeg__text sup {
  font-size: 18px;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -0.35em;
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .aller-plus-loin {
    overflow-x: clip;
  }
}
.aller-plus-loin .offres__container {
  padding-bottom: 32px;
}

[data-theme=dark] {
  --color-text: #f3f4f6;
  --color-bg: #111827;
  --color-bg-alt: #1f2937;
  --color-border: #374151;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.u-hidden {
  display: none !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-text-center {
  text-align: center !important;
}

.u-mt-sm {
  margin-top: 1rem !important;
}

.u-mt-md {
  margin-top: 1.5rem !important;
}

.u-mt-lg {
  margin-top: 2rem !important;
}

.u-mb-sm {
  margin-bottom: 1rem !important;
}

.u-mb-md {
  margin-bottom: 1.5rem !important;
}

.u-flex {
  display: flex !important;
}

.u-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.u-gap-sm {
  gap: 1rem !important;
}

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