:root {
  --main-bg: #010302;
  --blue: #2384F6;
  --white: #FBF7F4;
  --font-family: "Barlow", sans-serif;
  --bg-hero-home-mobile: url(assets/img-hero-home-mobile.jpg);
  --bg-hero-home-desktop: url(assets/img-hero-home.jpg);
  --bg-hero-joyaux-mobile: url(assets/img-hero-Joyaux-mobile.jpg);
  --bg-hero-joyaux-desktop: url(assets/img-hero-Joyaux.jpg);
  --bg-hero-legendes-mobile: url(assets/img-hero-Legendes-mobile.jpg);
  --bg-hero-legendes-desktop: url(assets/img-hero-Legendes.jpg);
  --bg-hero-mysteres-mobile: url(assets/img-hero-Mysteres-mobile.jpg);
  --bg-hero-mysteres-desktop: url(assets/img-hero-Mysteres.jpg);
  --bg-hero-destins-mobile: url(assets/img-hero-Destins-mobile.jpg);
  --bg-hero-destins-desktop: url(assets/img-hero-Destins.jpg);
  --h2-size: 1.5em;
  --h2-weight:600;
  --h3-size: 1.25em;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--main-bg);
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  margin: 0;
}
body p {
  color: var(--white);
  font-family: var(--font-family);
  margin: 0;
  line-height: 1.6em;
}
body a {
  font-family: var(--font-family);
  text-decoration: none;
}

* {
  scroll-behavior: smooth;
}

.hero {
  width: 100%;
  height: 85vh;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-clip: border-box;
}
.hero .logo_SDB {
  display: block;
  width: 42%;
  margin: auto;
  padding-top: 30px;
}

.hero-home {
  background-image: var(--bg-hero-home-mobile);
}

.hero-joyaux {
  background-image: var(--bg-hero-joyaux-mobile);
}

.hero-legendes {
  background-image: var(--bg-hero-legendes-mobile);
}

.hero-mysteres {
  background-image: var(--bg-hero-mysteres-mobile);
}

.hero-destins {
  background-image: var(--bg-hero-destins-mobile);
  background-position: center;
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  color: var(--blue);
  font-family: var(--font-family);
  text-transform: uppercase;
  rotate: -5deg;
  margin-bottom: 2.5em;
}

.titleEpisode {
  color: var(--white);
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h2-weight);
  color: var(--white);
  font-family: var(--font-family);
  text-transform: uppercase;
  margin-bottom: 2.5em;
  text-align: center;
}

.titleNum {
  text-transform: none;
  font-weight: 400;
}

section {
  margin: 0 20px;
  font-size: 1em;
}

.sticky {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: sticky;
  position: -webkit-sticky;
  top: 50px;
  z-index: 99;
}

.StickyBooking {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 8px 8px;
  padding-left: 12px;
  margin-left: -4px;
  border-radius: 2px;
  background: var(--blue);
  width: 100px;
  justify-content: center;
  gap: 8px;
  rotate: -5deg;
  font-family: var(--font-family);
  font-size: 0.75em;
  text-transform: uppercase;
  color: var(--white);
}

.z-index {
  position: relative;
  z-index: 1;
}

video {
  height: 100vh;
  background-color: var(--blue);
  width: 100vh;
  margin-left: -20px;
  box-sizing: border-box;
}

.arabesques {
  display: none;
}

/* ************************** */
/* Menu code starts here */
#menuToggle {
  display: flex;
  flex-flow: row nowrap;
  align-items: top;
  gap: 8px;
  position: fixed;
  top: 50px;
  right: 16px;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  padding: 4px;
}
#menuToggle a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}
#menuToggle a:hover {
  color: var(--blue);
}
#menuToggle input {
  display: block;
  width: 100%;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle .menuSvg {
  z-index: 1;
}
#menuToggle .burger {
  padding-top: 4px;
}
#menuToggle .burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
  position: relative;
  background: var(--blue);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
#menuToggle .burger span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle .burger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ .burger span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -10px);
}
#menuToggle input:checked ~ .burger span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ .burger span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, 10px);
}

#menu {
  position: absolute;
  max-width: 400px;
  max-height: 100vh;
  margin: -20px 0 0 0;
  padding: 16px;
  padding-top: 50px;
  box-sizing: border-box;
  text-align: right;
  overflow-y: auto;
  border-radius: 5px;
  right: -16px;
  background: rgba(var(--main-bg), 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  list-style-type: none;
  font-family: var(--font-family);
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
#menu li {
  padding: 8px 0;
  font-size: 0.875em;
}
#menu li label {
  cursor: pointer;
}
#menu .menuReserver {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--blue);
}

#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}

/* ************************** */
/* Reservation code starts here */
#reservations {
  position: relative;
  top: -120px;
}
#reservations .episodeTitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  rotate: -5deg;
  margin-bottom: 3em;
}
#reservations .episodeTitle h2, #reservations .episodeTitle h3 {
  margin: 0;
  rotate: 0deg;
  text-align: left;
}

.ticket {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 300;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: var(--blue) solid 1px;
}
.ticket .episodeName {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 2px;
}
.ticket .location {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}
.ticket a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.875em;
  padding: 12px 16px;
  border: var(--white) solid 1px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
}
.ticket a:hover {
  color: var(--blue);
  border: var(--blue) solid 1px;
}

/* ************************** */
/* presentation code starts here */
#presentation {
  margin-top: 5em;
}
#presentation .alignment {
  display: flex;
  flex-direction: column;
  gap: 1em;
  rotate: -5deg;
  max-width: 90%;
  margin: 0 auto;
}
#presentation .alignment h2 {
  margin-bottom: 0;
  rotate: 0deg;
}
#presentation .p01Episode {
  position: relative;
  top: 3em;
  width: 90%;
  rotate: -5deg;
  margin: 0 auto;
  z-index: 1;
}
#presentation img {
  width: 100%;
  margin-bottom: 8em;
}
#presentation .home-img02 {
  margin-bottom: 4em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  z-index: -10;
}
#presentation .joyaux-img02, #presentation .legendes-img02 {
  width: 180%;
  position: relative;
  left: -42%;
}
#presentation .destins-img02 {
  position: relative;
  margin-top: 2em;
}
#presentation .home-img03 {
  position: relative;
  left: -20px;
  margin-top: 1em;
  width: 90%;
}
#presentation .joyaux-img03, #presentation .legendes-img03 {
  position: relative;
  margin-top: 4em;
  width: 120%;
  left: -30px;
  margin-bottom: 1em;
}
#presentation .mysteres-img03 {
  position: relative;
  margin-top: 8em;
  width: 120%;
  left: -30px;
  margin-bottom: 0em;
}
#presentation .destins-img03 {
  position: relative;
  margin-top: 10em;
}
#presentation .joyaux-img04, #presentation .mysteres-img04 {
  position: relative;
  width: 130%;
  left: -2em;
  margin-bottom: 4em;
}
#presentation .mysteres-img04 {
  width: 120%;
}
#presentation .joyaux-img05 {
  position: relative;
  width: 150%;
  left: -20%;
  top: -8em;
  margin-bottom: 0em;
}
#presentation .mysteres-img05 {
  position: relative;
  width: 130%;
  left: -20%;
  top: -2em;
  margin-bottom: 0em;
}
#presentation .destins-img04 {
  position: relative;
}
#presentation .destins-img05 {
  position: relative;
  margin-bottom: 0;
}
#presentation .joyaux-img06, #presentation .legendes-img05 {
  position: relative;
  width: 150%;
  left: -20%;
  top: -4em;
  margin-bottom: 0em;
}
#presentation .mysteres-img06 {
  margin-bottom: 0em;
}
#presentation .p02 {
  position: relative;
  width: 140px;
  rotate: -10deg;
  top: 100px;
  left: 45%;
  z-index: 1;
}
#presentation .p02Episode {
  width: 90%;
  rotate: 0deg;
  left: 0;
  top: 8em;
  margin: 0 auto;
  z-index: 1;
}
#presentation #explications {
  margin: 0;
}
#presentation #explications .home-img03-2 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
}
#presentation #explications h2 {
  margin-bottom: 2.5em;
}
#presentation .p03 {
  width: 200px;
  position: relative;
  top: 60px;
  z-index: 1;
}
#presentation .p03Episode {
  width: 90%;
  rotate: 0deg;
  left: 0;
  top: 0;
  padding-bottom: 8em;
  margin: 0 auto;
  z-index: 1;
}
#presentation .p04 {
  width: 250px;
  position: relative;
  top: 30px;
}
#presentation .home-img05 {
  position: relative;
  right: -30%;
}

/* ************************** */
/* 3e etage code starts here */
#etage {
  margin-top: 5em;
}
#etage .alignment {
  display: flex;
  flex-direction: column;
  gap: 1em;
  rotate: -5deg;
  max-width: 90%;
  margin: 0 auto;
}
#etage .alignment h2 {
  margin-bottom: 0;
  rotate: 0deg;
}
#etage img {
  width: 100%;
  margin-bottom: 8em;
}
#etage .home-img06 {
  margin-top: 2em;
  margin-bottom: 5em;
}
#etage .home-img07 {
  width: 200%;
  position: relative;
  left: -60%;
}
#etage .p02 {
  width: 200px;
  rotate: -5deg;
  position: relative;
  top: 100px;
  left: 25%;
  z-index: 1;
}

/* ************************** */
/* carousel code starts here */
#episodes h2 {
  color: var(--white);
}
#episodes .carousel {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1em;
  overflow: auto;
  white-space: nowrap;
}
#episodes .carousel .episode_card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 250px;
  height: 300px;
  padding: 12px;
  border-radius: 8px;
  border: #1E211F solid 1px;
  transition: all 0.3s ease-in-out;
}
#episodes .carousel .episode_card .EpDetails {
  text-align: right;
  text-decoration: none;
  color: var(--white);
}
#episodes .carousel .episode_card .EpDetails img {
  vertical-align: middle;
  margin-left: 4px;
}
#episodes .carousel .episode_card .episode_details {
  width: 220px;
}
#episodes .carousel .episode_card .episode_name {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
}
#episodes .carousel .episode_card:hover {
  border: var(--blue) solid 1px;
}
#episodes .carousel .episodeI {
  background-image: url("assets/img-hero-Joyaux.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-clip: border-box;
}
#episodes .carousel .episodeII {
  background-image: url("assets/img-hero-Legendes.jpg");
  background-repeat: no-repeat;
  background-position: bottom right -100px;
  background-size: cover;
  background-clip: border-box;
}
#episodes .carousel .episodeIII {
  background-image: url("assets/img-hero-Mysteres.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-clip: border-box;
}
#episodes .carousel .episodeIV {
  background-image: url("assets/img-hero-Destins-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-clip: border-box;
}

.home-img08 {
  width: 100%;
}

.home_arabesque {
  position: relative;
  width: 50%;
  left: 50%;
}

/* ************************** */
/* FAQ code starts here */
.accordion .accordion-item {
  border-bottom: 1px solid var(--blue);
  /*button[aria-expanded='true'] {
      border-bottom: 1px solid var(--blue);
  }*/
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--white);
  font-family: var(--font-family);
  font-size: 0.875rem;
  line-height: 1.3rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button .accordion-title {
  display: block;
  padding: 1em 3em 1em 0;
  font-weight: 600;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 0;
  width: 22px;
  height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button:hover, .accordion .accordion button:focus {
  cursor: pointer;
  color: var(--blue);
}
.accordion button:hover::after, .accordion .accordion button:focus::after {
  cursor: pointer;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.accordion button[aria-expanded=true] {
  color: var(--blue);
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 0.875rem;
  margin: 1em 0 2em 0;
}
.accordion .accordion-content a {
  text-decoration: none;
  color: var(--blue);
}

.home-img09, .joyaux-img09, .legendes-img09, .mysteres-img09, .destins-img06 {
  width: 100%;
  margin: 4em 0;
}

/* ************************** */
/* Quote code starts here */
.quote {
  width: 250px;
  rotate: -5deg;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.875em;
  margin: 0 auto;
}
.quote .quoteMark {
  width: 40px !important;
  margin-bottom: 0 !important;
}
.quote .quoteMark-close {
  align-self: flex-end;
}
.quote .quoteName {
  font-size: 0.75em;
  margin-top: 8px;
  text-align: right;
}

.XL-quote {
  padding-top: 7.5em;
}
.XL-quote .XL-text {
  font-size: 1.25em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ************************** */
/* Footer code starts here */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2em;
}
footer .links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2em;
}
footer .links .siteLink {
  width: 100%;
  text-align: center;
}

/* ************************** */
/* Responsive code starts here */
@media (min-width: 480px) {
  #presentation .p02 {
    width: 200px;
  }
  #presentation .p03 {
    width: 300px;
  }
  #presentation .p01Episode {
    width: 60%;
  }
  #presentation .p02Episode {
    width: 300px;
  }
  #etage .p02 {
    width: 250px;
  }
}
@media (min-width: 768px) {
  section {
    margin: 0 50px;
  }
  .hero-home {
    background-image: var(--bg-hero-home-desktop);
  }
  .hero-joyaux {
    background-image: var(--bg-hero-joyaux-desktop);
    background-size: cover;
  }
  .hero-legendes {
    background-image: var(--bg-hero-legendes-desktop);
    background-position: bottom right 16%;
  }
  .hero-mysteres {
    background-image: var(--bg-hero-mysteres-desktop);
    background-position: bottom right 30%;
  }
  #menuToggle {
    right: 50px;
  }
  #menu {
    right: -50px;
    padding: 50px;
  }
  #menu li {
    padding: 12px 0;
  }
  video {
    margin-left: -50px;
  }
  .quote {
    width: 350px;
  }
  h2 {
    max-width: 60%;
  }
  #reservations {
    top: -200px;
  }
  #reservations .episodeTitle {
    margin-bottom: 4em;
  }
  #presentation .alignment {
    max-width: 60%;
  }
  #presentation .home-img03 {
    width: 70%;
  }
  #presentation .joyaux-img02, #presentation .legendes-img02 {
    width: 120%;
    left: -22%;
  }
  #presentation .legendes-img03 {
    width: 80%;
    margin-bottom: 4em;
    margin-top: -4em;
    left: 150px;
  }
  #presentation .mysteres-img03 {
    width: 100%;
    left: 0;
  }
  #presentation .joyaux-img04, #presentation .mysteres-img04 {
    width: 100%;
  }
  #presentation .legendes-img05 {
    width: 100%;
    left: 0;
    top: 0;
    margin-bottom: 4em;
  }
  #presentation .mysteres-img05 {
    width: 80%;
    left: 20%;
  }
  #presentation .joyaux-img04, #presentation .joyaux-img06 {
    width: 120%;
  }
  #presentation .p02 {
    width: 350px;
  }
  #etage .alignment {
    max-width: 60%;
  }
  #etage .p02 {
    width: 400px;
  }
  #etage .home-img07 {
    width: 130%;
    left: -40%;
  }
  #episodes .carousel .episode_card {
    height: 450px;
    width: 350px;
  }
  #episodes .carousel .episode_card .episode_details {
    width: 350px;
  }
  .home-img08 {
    width: 80%;
    margin-left: 10%;
  }
  .home-img09 {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .hero {
    height: 100vh;
    background-size: contain;
    background-position: bottom right;
  }
  .hero .logo_SDB {
    width: 20%;
    margin-left: 50px;
    padding-top: 50px;
  }
  .hero-destins {
    background-image: var(--bg-hero-destins-desktop);
    background-size: cover;
  }
  .hero-joyaux {
    background-size: cover;
  }
  #reservations {
    width: 42%;
    top: -400px;
  }
  #reservations .episodeTitle h2 {
    max-width: 100%;
  }
  .sticky {
    margin-top: -200px;
  }
  video {
    width: 100%;
    margin-left: 0;
    height: 80%;
  }
  .arabesques {
    display: block;
    width: 22%;
    margin: 0 auto;
    margin-top: -20px;
  }
  #presentation .alignment {
    max-width: 35%;
    margin: 0 100px;
  }
  #presentation img {
    width: 50%;
  }
  #presentation .home-img02 {
    margin: -8em 2em 4em 27%;
    width: 55%;
  }
  #presentation .p02 {
    width: 35%;
    rotate: -5deg;
    left: 115px;
    top: -24em;
  }
  #presentation .home-img03 {
    width: 40%;
    left: 20%;
    margin-bottom: 4em;
  }
  #presentation #explications .home-img03-2 {
    width: 80%;
  }
  #presentation .quote-home01 {
    margin: -35em 2em 4em 60%;
  }
  #presentation .arabesque02 {
    width: 22%;
    margin: 12em 0em 0 -4em;
  }
  #presentation .p03 {
    left: 42em;
    top: 10em;
    rotate: -5deg;
  }
  #presentation .p03Episode {
    left: 0;
    top: -4em;
    rotate: 0deg;
    width: 500px;
  }
  #presentation .p04 {
    width: 300px;
    rotate: -5deg;
    left: 43em;
    top: -25em;
  }
  #presentation .home-img04 {
    margin-top: -10em;
  }
  #presentation .home-img05 {
    right: -60%;
  }
  #presentation .arabesque03 {
    width: 15%;
    top: -40em;
  }
  #presentation .quote-home02 {
    margin: -90em 2em 4em 60%;
  }
  #presentation .p01Episode {
    width: 500px;
  }
  #presentation .joyaux-img02 {
    width: 80%;
    top: -4em;
  }
  #presentation .p02Episode {
    left: 0;
    width: 500px;
    top: 8em;
    rotate: 0deg;
  }
  #presentation .quote-joyaux01 {
    margin-top: -20em;
  }
  #presentation .joyaux-img03 {
    width: 70%;
    left: 30%;
    margin-top: 0;
  }
  #presentation .joyaux-img04 {
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #presentation .quote-joyaux02 {
    margin: 0 0 0 60%;
  }
  #presentation .joyaux-img05 {
    width: 70%;
    left: 40%;
    top: -12em;
    z-index: -3;
  }
  #presentation .quote-joyaux03 {
    margin: -60em 0 0 200px;
  }
  #presentation .quote-joyaux04 {
    margin: -12em 0 0 50%;
  }
  #presentation .joyaux-img06 {
    width: 90%;
    top: 18em;
  }
  #presentation .legendes-img02 {
    width: 90%;
    top: -8em;
  }
  #presentation .legendes-img03 {
    width: 50%;
    left: 50%;
    top: -4em;
  }
  #presentation .legendes-img04 {
    width: 70%;
    margin-top: -15em;
  }
  #presentation .legendes-img05 {
    width: 70%;
    left: 30%;
  }
  #presentation .mysteres-img03 {
    width: 70%;
    left: 30%;
  }
  #presentation .mysteres-img04 {
    width: 70%;
    top: -8em;
    z-index: -3;
  }
  #presentation .mysteres-img05 {
    width: 60%;
    top: -10em;
    left: 40%;
  }
  #presentation .mysteres-img06 {
    position: relative;
    top: -10em;
    width: 70%;
  }
  #presentation .destins-img02 {
    left: 50%;
    margin-top: -6em;
  }
  #presentation .destins-img03 {
    left: 50%;
    transform: translateX(-50%);
  }
  #presentation .destins-img04 {
    left: 10%;
    margin-top: -6em;
  }
  #presentation .destins-img05 {
    left: 20%;
  }
  #presentation .episode-arabesque01 {
    position: relative;
    width: 30%;
    left: 45%;
    top: -10em;
  }
  #presentation .episode-arabesque02 {
    position: relative;
    width: 25%;
    left: -5em;
    top: -50em;
    margin: 0;
  }
  #presentation .mysteres-arabesque02 {
    top: -100em;
  }
  #etage {
    margin-top: 25em;
  }
  #etage .alignment {
    max-width: 35%;
    margin: 0 0 0 100px;
  }
  #etage .home-img06 {
    width: 70%;
    margin-top: 4em;
  }
  #etage .p02 {
    left: 45%;
  }
  #etage .home-img07 {
    width: 70%;
    left: -10%;
    top: -10em;
  }
  #etage .arabesque04 {
    width: 15%;
    top: -50em;
    left: 40%;
  }
  #etage .quote-home03 {
    margin: -60em 2em 4em 60%;
  }
  #episodes {
    margin-top: 12em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #episodes .carousel .episode_card {
    padding: 20px;
  }
  #episodes .carousel .episodeIV {
    margin-right: 50px;
  }
  .XL-quote {
    margin-left: 10%;
    padding-top: 12em;
  }
  .XL-quote .XL-text {
    font-size: 2em;
  }
  .home-img08 {
    width: 42%;
    margin: -18em 0 0 50%;
  }
  .home_arabesque {
    width: 30%;
    left: 80%;
  }
  #faq {
    width: 42%;
    margin-left: 50%;
  }
  .home-img09 {
    width: 40%;
    margin-top: -50em;
    margin-bottom: 0;
  }
  .joyaux-img09 {
    width: 40%;
    margin-top: -40em;
  }
  .legendes-img09 {
    width: 40%;
    margin-top: -50em;
  }
  .mysteres-img09 {
    width: 40%;
    margin-top: -35em;
  }
  .destins-img06 {
    width: 40%;
    margin-top: -45em;
  }
  footer {
    margin-top: 4em;
  }
  footer .links {
    align-items: center;
  }
  footer .links .siteLink {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  #presentation .p02 {
    left: 119px;
    top: -30em;
  }
  #presentation .p02Episode {
    left: 0;
    top: 0;
  }
  #presentation .home-img02 {
    margin: -16em 2em 4em 25%;
    width: 70%;
  }
  #presentation .quote-joyaux01 {
    margin-top: -30em;
    margin-bottom: 8em;
  }
  #presentation .destins-img02 {
    width: 40%;
  }
  #presentation .home-img03 {
    margin-bottom: 0;
  }
  #presentation .p04 {
    top: -32em;
  }
  #etage .palignement {
    max-width: 35%;
  }
}
@media (min-width: 1512px) {
  #presentation .alignment {
    margin: 0 150px;
  }
  #presentation .p02 {
    left: 164px;
    top: -26em;
  }
  #presentation .p03 {
    width: 400px;
    left: 45em;
  }
  #presentation .p03Episode {
    left: 0;
  }
  #presentation .p04 {
    width: 400px;
    left: 46em;
    top: -34em;
  }
  #presentation .home-img02 {
    width: 60%;
  }
  #presentation .joyaux-img02 {
    width: 60%;
    left: -12%;
  }
  #presentation .quote-joyaux01 {
    margin-top: -40em;
  }
  #presentation .p02Episode {
    left: 0;
    top: 8em;
  }
  #presentation .joyaux-img06 {
    width: 75%;
  }
  #presentation .quote-joyaux04 {
    margin: -8em 0 10em 50%;
  }
  #presentation .legendes-img04 {
    width: 60%;
    margin-top: -20em;
  }
  #presentation .legendes-img05 {
    width: 60%;
  }
  #presentation .mysteres-img02 {
    width: 40%;
    margin-top: -5em;
    margin-bottom: 12em;
  }
  #presentation .mysteres-img03 {
    width: 60%;
    left: 40%;
    margin-top: 4em;
  }
  #presentation .mysteres-img04 {
    width: 60%;
    top: -15em;
  }
  #presentation .mysteres-img05 {
    width: 50%;
  }
  #etage .alignment {
    margin: 0 0 0 150px;
  }
  #episodes {
    margin-left: 100px;
  }
  .home_arabesque {
    width: 25%;
  }
  .home-img09 {
    width: 35%;
  }
  .joyaux-img09 {
    margin-top: -50em;
  }
  .legendes-img09 {
    margin-top: -56em;
  }
}
@media (min-width: 1728px) {
  h2 {
    font-size: 2.25em;
  }
  section {
    margin: 0 100px;
  }
  .hero .logo_SDB {
    margin-left: 100px;
  }
  #menuToggle {
    right: 100px;
    top: 100px;
  }
  #menu {
    right: -100px;
  }
  #presentation .alignment {
    margin: 0 200px;
  }
  #presentation .p02 {
    left: 212px;
    top: -30em;
    width: 510px;
  }
  #presentation .p02Episode {
    left: 0;
    top: 0;
  }
  #presentation .arabesque02 {
    margin: 12em 0em 0 -8em;
  }
  #presentation .p04 {
    top: -38em;
  }
  #presentation .quote-home02 {
    margin: -110em 2em 4em 60%;
  }
  #presentation .home-img05 {
    top: -10em;
  }
  #presentation .arabesque03 {
    top: -60em;
  }
  #presentation .home-img05 {
    right: -65%;
  }
  #presentation .p01Episode {
    margin-top: 15em;
  }
  #presentation .joyaux-img03 {
    width: 60%;
    left: 35%;
  }
  #presentation .joyaux-img04 {
    width: 50%;
  }
  #presentation .joyaux-img05 {
    width: 60%;
  }
  #presentation .episode-arabesque02 {
    left: -10em;
  }
  #presentation .joyaux-img06 {
    width: 70%;
  }
  #presentation .legendes-img02 {
    width: 70%;
  }
  #presentation .legendes-img03 {
    width: 40%;
  }
  #presentation .mysteres-img03 {
    width: 50%;
    margin-top: 8em;
  }
  #presentation .mysteres-img04 {
    width: 50%;
  }
  #etage .arabesque04 {
    top: -60em;
  }
  #etage .quote-home03 {
    margin: -70em 2em 4em 60%;
  }
  #etage .home-img07 {
    width: 60%;
  }
  #etage .alignment {
    margin: 0 200px;
  }
  #episodes {
    margin-top: 25em;
    margin-left: 150px;
  }
  .joyaux-img09 {
    margin-top: -60em;
  }
  .legendes-img09 {
    margin-top: -70em;
  }
  .mysteres-img09 {
    margin-top: -47em;
  }
  .destins-img06 {
    margin-top: -53em;
  }
  footer {
    margin-top: 8em;
  }
}
@media (min-width: 1920px) {
  #presentation .alignment {
    max-width: 500px;
    margin: 0 250px;
  }
  #presentation .home-img02 {
    margin: -20em 2em 4em 25%;
  }
  #presentation .p02 {
    width: 500px;
    top: -30em;
    left: 270px;
  }
  #presentation .home-img03 {
    width: 35%;
  }
  #presentation .quote-home01 {
    margin: -45em 2em 4em 60%;
  }
  #presentation .arabesque02 {
    margin: 22em 0em 0 -8em;
  }
  #presentation .p03 {
    left: 50%;
  }
  #presentation .p03Episode {
    left: 0;
  }
  #presentation .p04 {
    left: 51%;
    top: -44em;
  }
  #presentation .quote-home02 {
    margin: -120em 2em 4em 60%;
  }
  #presentation .arabesque03 {
    top: -70em;
  }
  #presentation .p02Episode {
    left: 0;
    top: 8em;
  }
  #etage .alignment {
    max-width: 500px;
    margin: 0 250px;
  }
  #episodes {
    margin-left: 200px;
  }
  #episodes .carousel .episodeIV {
    margin-right: 150px;
  }
  .XL-quote {
    margin-left: 20%;
    padding-top: 22em;
  }
  .home-img08 {
    margin: -30em 0 0 50%;
  }
  .accordion button {
    font-size: 1em;
  }
  .accordion .accordion-content p {
    font-size: 1em;
  }
  .home-img09 {
    margin-top: -65em;
  }
  .joyaux-img09, .legendes-img09, .mysteres-img09 {
    width: 35%;
  }
}
@media (min-width: 2500px) {
  h2 {
    font-size: 3em;
  }
  .StickyBooking {
    padding: 16px;
    font-size: 1em;
    width: 130px;
    padding-left: 20px;
  }
  #reservations .episodeTitle {
    margin-bottom: 8em;
  }
  #presentation .alignment {
    margin: 0 350px;
  }
  #presentation .p02 {
    top: -47em;
    left: 365px;
  }
  #presentation .p03 {
    top: 20em;
  }
  #presentation .p03Episode {
    top: 0;
  }
  #presentation .p04 {
    top: -52em;
  }
  #presentation .quote-home02 {
    margin: -150em 2em 4em 60%;
  }
  #presentation .arabesque03 {
    top: -80em;
  }
  #presentation .p02Episode {
    left: 0;
    top: 8em;
  }
  #presentation .joyaux-img02 {
    width: 50%;
    left: 12%;
  }
  #presentation .joyaux-img03 {
    width: 50%;
    left: 40%;
  }
  #presentation .joyaux-img05 {
    width: 50%;
    left: 45%;
  }
  #presentation .joyaux-img06, #presentation .legendes-img02 {
    left: 0;
  }
  #presentation .episode-arabesque02 {
    width: 20%;
    top: -70em;
  }
  #presentation .quote-joyaux03 {
    margin: -80em 0 0 600px;
  }
  #presentation .quote-joyaux04 {
    margin: -25em 0 30em 50%;
  }
  #presentation .mysteres-arabesque02 {
    top: -120em;
  }
  #presentation .mysteres-img02 {
    margin-left: 10%;
  }
  #presentation .mysteres-img04, #presentation .mysteres-img06 {
    left: 10%;
  }
  #presentation .mysteres-img06 {
    width: 50%;
  }
  #etage .home-img06 {
    width: 60%;
  }
  #etage .p02 {
    width: 550px;
    top: 300px;
    left: 50%;
  }
  #etage .arabesque04 {
    top: -70em;
  }
  #etage .quote-home03 {
    margin: -95em 2em 4em 60%;
  }
  #episodes {
    margin-top: 35em;
  }
  #episodes .carousel .episode_card {
    width: 450px;
    height: 550px;
    padding: 32px;
  }
  #episodes .carousel .episode_card .episode_name {
    font-size: 1.5em;
  }
  #faq {
    width: 35%;
  }
  .home-img09 {
    width: 30%;
  }
  .joyaux-img09 {
    margin-top: -77em;
  }
  .legendes-img09 {
    margin-top: -88em;
  }
  .mysteres-img09 {
    margin-top: -58em;
  }
  .destins-img06 {
    margin-top: -67em;
  }
  footer {
    padding-bottom: 4em;
  }
}
@media (min-width: 3840px) {
  body p {
    font-size: 1.25em;
    line-height: 1.8em;
  }
  section {
    margin: 0 200px;
  }
  .hero .logo_SDB {
    margin-left: 200px;
  }
  h2 {
    max-width: 25%;
  }
  #menuToggle {
    right: 200px;
    top: 200px;
  }
  #menu {
    right: -200px;
  }
  #reservations {
    top: -500px;
  }
  #presentation .alignment {
    margin: 0 700px;
    max-width: 600px;
  }
  #presentation .home-img02 {
    margin: -40em 2em 4em 20%;
  }
  #presentation .p02 {
    width: 600px;
    top: -46em;
    left: 727px;
  }
  #presentation .home-img03 {
    width: 32%;
  }
  #presentation .quote-home01 {
    margin: -60em 2em 4em 60%;
  }
  #presentation .arabesque02 {
    margin: 30em 0em 0 -16em;
  }
  #presentation .p03 {
    width: 500px;
  }
  #presentation .p04 {
    width: 500px;
    top: -68em;
  }
  #presentation .quote-home02 {
    margin: -230em 2em 4em 60%;
  }
  #presentation .home-img05 {
    top: -30em;
  }
  #presentation .p02Episode {
    left: 0;
    top: 8em;
  }
  #presentation .episode-arabesque02 {
    left: -15em;
  }
  #presentation .quote-joyaux03 {
    margin: -100em 0 10em 1000px;
  }
  #presentation .joyaux-img06 {
    width: 60%;
  }
  #presentation .p01Episode {
    margin-top: 25em;
  }
  #etage {
    margin-top: 55em;
  }
  #etage h2 {
    max-width: 50%;
  }
  #etage .alignment {
    margin: 0 700px;
    max-width: 600px;
  }
  #etage .home-img06 {
    margin-top: 20em;
  }
  #etage .home-img07 {
    width: 50%;
    left: 0;
  }
  #etage .p02 {
    width: 600px;
  }
  #etage .home-img07 {
    top: -20em;
    left: 0px;
  }
  #etage .quote-home03 {
    margin: -110em 2em 4em 60%;
  }
  #episodes {
    margin-top: 50em;
  }
  #episodes .carousel .episode_card {
    width: 650px;
    height: 750px;
    padding: 50px;
  }
  .quote {
    width: 450px;
  }
  .home-img08 {
    margin: -40em 0 0 50%;
    width: 35%;
  }
  .XL-quote {
    margin-left: 30%;
    padding-top: 42em;
  }
  .home-img09 {
    width: 20%;
  }
  .joyaux-img09 {
    width: 30%;
    margin: -89em 0 0 300px;
  }
  .legendes-img09 {
    width: 23%;
    margin: -85em 0 0 300px;
  }
  .mysteres-img09 {
    width: 25%;
    margin: -55em 0 0 300px;
  }
  .destins-img06 {
    width: 30%;
    margin: -68em 0 0 300px;
  }
  footer {
    padding-bottom: 8em;
    margin-top: 12em;
  }
}/*# sourceMappingURL=style2.css.map */