* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'ABCDiatype-Regular';
  src: url('../fonts/ABCDiatype-Regular.woff2') format('woff2'),
       url('../fonts/ABCDiatype-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ABCDiatype-Regular';
  src: url('../fonts/ABCDiatype-RegularItalic.woff2') format('woff2'),
       url('../fonts/ABCDiatype-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'ABCDiatype-Regular';
  src: url('../fonts/ABCDiatype-Bold.woff2') format('woff2'),
       url('../fonts/ABCDiatype-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'ABCDiatype-Regular';
  src: url('../fonts/ABCDiatype-BoldItalic.woff2') format('woff2'),
       url('../fonts/ABCDiatype-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'ABCDiatypeMono-Regular';
  src: url('../fonts/ABCDiatypeMono-Regular.woff2') format('woff2'),
       url('../fonts/ABCDiatypeMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-black: #222;
  --color-background: #fffdee;
  --color-footer: #eee;
  --color-gray: #828282;
  --color-gray-2: #606060;
  --color-green: #99B39D;
  --font-family-regular: 'ABCDiatype-Regular', sans-serif;
  --font-family-mono: 'ABCDiatypeMono-Regular', sans-serif;
  --font-size-16: 1rem;
  --font-size-18: 1.12rem;
  --font-size-21: 1.31rem;
  --font-size-24: 1.5rem;
  --transition-link: 0.2s;
  --row-height: 2.5rem;
  --border-radius-images: 0.8rem;
  --padding-global: 40px;
  --padding-intern: 10px;
  --line-height: 0.1rem;
  --image-max-height: 31rem;
  --image-height: calc(100vh - 12.5rem);
}

html {
  font-family: var(--font-family-regular);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-background);
}

@media all and (max-width: 800px) {
  :root {
    --padding-global: 20px;
    --image-height: calc(100vh - 18.8rem);
  }
}
@media all and (max-width: 414px) {
  :root {
    --padding-global: 10px;
  }
  html {
    font-size: 13px;
  }
}
@media all and (max-width: 320px) {
  html {
    font-size: 12px;
  }
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  transition: var(--transition-link);
}

h1, h2, h3 {
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}

img {
  vertical-align: middle;
}

.hide {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

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

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.cursor-pointer {
  cursor: pointer;
}

/* Header */

.image-header {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-footer);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.image-header img {
  width: 60%;
}

.home-header-spacing {
  width: 100%;
  height: var(--row-height);
  background-color: var(--color-background);
  position: relative;
  z-index: 1000;
}

.home-header-line {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 var(--padding-global);
  position: relative;
  z-index: 1000;
}

.home-header-line > div {
  max-width: 1280px;
  border-top: var(--line-height) solid var(--color-black);
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 var(--padding-global);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-background);
}

header > div {
  width: 100%;
  max-width: 1280px;
}

.logo-header {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: var(--line-height) solid var(--color-black);
}

.logo-header img {
  height: 2.2rem;
  vertical-align: middle;
}

.logo-header .burger {
  display: none;
  height: 1.5rem;
  width: 2.2rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 100;
}

.logo-header .burger div {
  border: 0.1rem solid var(--color-black);
  width: 100%;
}

.menu-row {
  height: var(--row-height);
  border-bottom: var(--line-height) solid var(--color-black);
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-21);
  line-height: var(--row-height);
  text-transform: lowercase;
}

.menu-row a:hover {
  color: var(--color-gray);
}

.back-arrow, .btn-arrow {
  display: none;
}

.back-arrow {
  padding-left: var(--padding-intern);
  cursor: pointer;
}

.menu-btn {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  padding-left: var(--padding-intern);
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-right: 5px;
  transition: var(--transition-link);
}

.menu-btn:hover,
.back-arrow:hover {
  color: var(--color-gray);
}

.menu-btn .burger {
  height: 1rem;
  width: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 10px;
}

.menu-btn .burger div {
  border: 0.1rem solid var(--color-black);
  width: 100%;
  transition: var(--transition-link);
}

.menu-btn:hover .burger div {
  border-color: var(--color-gray);
}

.after-menu-btn {
  color: var(--color-gray);
  text-transform: none;
  white-space: nowrap;
  margin-right: 1rem;
}

.menu-remove.hide {
  display: none;
}

.menu-row ul {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.menu-row ul li {
  padding: 0 1.5rem;
}

.lang-booking {
  display: flex;
  position: relative;
  z-index: 3;
}

.lang {
  width: 2.5rem;
  margin-right: 1.3rem;
  text-align: center;
  line-height: line-height: var(--row-height);
}

.lang:hover {
  color: var(--color-gray);
}

.lang .other-lang {
  display: none;
}

.lang:hover .current-lang {
  display: none;
}

.lang:hover .other-lang {
  display: inline;
}

.booking-btn,
.privatise-btn {
  height: var(--row-height);
  width: 7.6rem;
  font-size: var(--font-size-21);
  line-height: var(--row-height);
  text-align: center;
  text-transform: ;
  color: var(--color-background);
  background-color: var(--color-black);
  padding: 0 0.8rem 0 0.85rem;
  transition: background-color var(--transition-link);
  border-bottom: var(--line-height) solid var(--color-black);
}

.booking-btn:hover {
  color: var(--color-background) !important;
  background-color: var(--color-gray);
}

.booking-btn-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  border-radius: 0.3rem;
  text-align: center;
  background-color: var(--color-black);
  color: var(--color-background);
  margin: var(--padding-global);
  font-size: var(--font-size-24);
  text-transform: lowercase;
  cursor: pointer;
  z-index: 100;
}

.booking-btn-mobile.hidden {
  display: none;
}

.nav-header {
  height: 0;
  border-bottom: 0 solid var(--color-black);
  transition: height 0.3s ease-out;
  font-size: var(--font-size-18);
  position: absolute;
  width: calc(100% - 80px);
  max-width: 1280px;
  max-height: calc(100vh - 7.4rem);
  background-color: var(--color-footer);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-header::-webkit-scrollbar {
  display: none;
}

.nav-header.open {
  border-bottom: var(--line-height) solid var(--color-black);
}

.nav-header > div {
  padding: 1.3rem var(--padding-intern) 1.3rem 0;
  display: flex;
  justify-content: space-between;
}

.nav-header .logo-header--nav-mobile,
.nav-booking .logo-header--nav-mobile {
  display: none;
  background-color: transparent !important;
  border: none;
  position: sticky;
  top: 0;
}

.cross {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  cursor: pointer;
}

.cross .line {
  position: absolute;
  width: 100%;
  height: 0.15rem;
  background-color: black;
  top: 50%;
  left: 0;
}

.cross .line-1 {
  transform: rotate(45deg);
}

.cross .line-2 {
  transform: rotate(-45deg);
}

.nav-header li {
  padding: 0.5rem 2rem 0.5rem 0;
}

.nav-header li .active {
  position: relative;
}

.nav-header li .active::after {
  content: ' ';
  position: absolute;
  right: -1.37rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.55rem;
  height: 0.55rem;
  background-color: var(--color-black);
  border-radius: 50%;
}

.nav-header a:hover {
  color: var(--color-gray);
}

.nav-header .hotel-link {
  font-weight: normal;
}

header .ah-code {
  width: 3.6rem;
  display: inline-block;
}

.nav-header .a-venir {
  color: var(--color-gray);
}

.nav-header .column {
  width: 33%;
}

.nav-header .column--1 {
  padding-left: 2.5rem;
}

.nav-header .column--2 {
  flex-direction: column;
  justify-content: space-between;
  border-left: var(--line-height) solid var(--color-black);
  padding-left: 2.5rem;
}

.nav-header .column--3 {
  border-left: var(--line-height) solid var(--color-black);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-booking {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 80px);
  max-width: 1280px;
  font-size: var(--font-size-18);
  pointer-events: none;
  height: 0;
  transition: height 0.3s ease-out;
  overflow: hidden; /* Ajouter cette ligne pour gérer l'overflow lors de la transition */
}

.nav-booking ul {
  padding: 1.3rem var(--padding-intern) 0 2.5rem;
  background-color: var(--color-footer);
  pointer-events: auto;
  border-bottom: var(--line-height) solid var(--color-black);
}

.nav-booking li {
  padding: 0.5rem 2.5rem 0.5rem 0;
}

.nav-booking a:hover {
  color: var(--color-gray);
}

.nav-booking .a-venir {
  color: var(--color-gray);
}

.nav-booking .merci {
  padding-bottom: 1.7rem;
  text-transform: lowercase;
  font-weight: bold;
}

@media all and (max-width: 1240px) {
  .menu-row ul {
    position: static;
  }
}
@media all and (max-width: 1112px) {
  .menu-row ul li {
    padding: 0 1rem;
  }
}
@media all and (max-width: 1024px) {
  .menu-row ul {
    display: none;
  }
}
@media all and (max-width: 800px) {
  .image-header {
    padding: 5%;
  }
  .image-header img {
    width: 100%;
  }
  .logo-header {
    width: 100%;
    height: 6.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--line-height) solid var(--color-black);
    padding: 0 20px 0 7px;
    background-color: var(--color-background) !important;
  }
  .logo-header a {
    display: inline-block;
  }
  .logo-header img {
    height: auto;
    width: 21rem;
  }
  .logo-header .burger {
    display: flex;
  }
  .menu-row {
    display: none;
  }
  .booking-btn-mobile {
    display: flex;
  }
  .nav-header,
  .nav-booking {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s ease;
  }
  .nav-header.show,
  .nav-booking.show {
    visibility: visible;
    opacity: 1;
  }
  .nav-header {
    height: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    z-index: 100;
  }
  .nav-header .logo-header--nav-mobile,
  .nav-booking .logo-header--nav-mobile {
    display: flex;
    padding: 0 40px 0 27px;
  }
  .nav-header .logo-header--nav-mobile img,
  .nav-booking .logo-header--nav-mobile img {
    position: relative;
    bottom: 1px;
  }
  .nav-header > div {
    padding: 0;
    display: block;
  }
  .nav-header li {
    padding-left: 20px;
  }
  .nav-header .column {
    width: auto;
    border-left: none;
    padding-left: 0;
    margin: 0 10px;
  }
  .nav-header .column--1 {
    padding-bottom: 1rem;
    border-bottom: var(--line-height) solid var(--color-black);
  }
  .nav-header .column--2 {
    padding: 1rem 0;
    border-bottom: var(--line-height) solid var(--color-black);
  }
  .nav-header .column--3 {
    padding: 1rem 0 10rem 0;
  }
  .nav-booking {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: auto;
    height: auto;
    background-color: var(--color-footer);
    z-index: 100;
  }
  .nav-booking ul {
    padding: 0 0 0 30px;
    pointer-events: auto;
    border-bottom: none;
  }
}
@media all and (max-width: 414px) {
  .image-header img {
    padding-bottom: 5rem;
  }
  .logo-header {
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--line-height) solid var(--color-black);
  }
  .logo-header img {
    width: 18rem;
  }
  .booking-btn-mobile {
    height: 5rem;
  }
  .nav-header .logo-header--nav-mobile,
  .nav-booking .logo-header--nav-mobile {
    display: flex;
    padding: 0 30px 0 17px;
  }
  .nav-header li {
    padding-left: 10px;
  }
  .nav-booking ul {
    padding: 0 0 0 20px;
  }
}

/* Footer */

footer {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 var(--padding-global);
  background-color: var(--color-footer);
}

footer > div {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  padding-bottom: var(--row-height);
}

footer > div > div {
  border-bottom: var(--line-height) solid var(--color-black);
  min-height: var(--row-height);
  padding: 0.55rem 10px;
  display: flex;
  align-items: center;
}

footer .no-border {
  border-bottom: none;
}

footer a:hover {
  text-decoration: underline;
  transition: 0.1s;
}

footer .contact {
  grid-column: 1 / 4;
}

footer .social-links {
  
}

footer .social-links ul {
  display: flex;
}

footer .legal-links {
  grid-column: 1 / 4;
}

footer .credits {
  
}

footer .footer-hotel-column {
  border-top: var(--line-height) solid var(--color-black);
  margin-top: var(--row-height);
  line-height: 1.6rem;
}

footer .footer-hotel-column .li-nom {
  display: none;
}

footer .footer-hotel-column.gds {
  text-align: right;
  justify-content: flex-end;
  text-transform: uppercase;
}

footer .footer-hotel-column .li-codes {
  padding-bottom: 0.6rem;
}

footer .footer-hotel-column.label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-regular);
  padding: 3rem 0;
  grid-column: 2 / 4;
}

footer .footer-hotel-column .hotel-label > div {
  font-size: 1.1rem;
  line-height: 1.2;
  border: 0.14rem solid;
  text-align: center;
  border-radius: 50%;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 13rem;
  height: 10.5rem;
}

footer .social-links--hotel,
footer .credits--hotel {
  justify-content: flex-end;
}

@media all and (max-width: 1200px) {
  footer .hotel-column {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .hotel-column span {
    display: none;
  }
  footer .address-column span {
    display: block;
  }
  footer .address-column .hyphen {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  footer > div > div {
    display: block;
  }
  footer .footer-hotel-column {
    display: flex;
  }
  footer .option-column {
    border: none;
  }
  footer .title-column {
    display: none;
  }
  footer .hotel-column,
  footer .address-column,
  footer .phone-column,
  footer .email-column {
    grid-column: 1 / 5;
    padding: 0 10px;
    min-height: 0;
  }
  footer .hotel-column {
    flex-direction: row;
    align-items: center;
    border: none;
    padding-top: 1rem;
  }
  footer .hotel-column span {
    display: inline;
  }
  footer .address-column,
  footer .phone-column {
    border: none;
  }
  footer .address-column .hyphen {
    display: inline;
  }
  footer .address-column span {
    display: inline;
  }
  footer .email-column {
    padding-bottom: 1rem;
  }
  footer .contact,
  footer .social-links {
    grid-column: 1 / 5;
  }
  footer .credits {
    text-align: right;
  }
  footer .footer-hotel-column {
    line-height: initial;
  }
  footer .footer-hotel-column .li-nom {
    display: block;
  }
  footer .footer-hotel-column .hotel-label {
    display: none;
  }
  footer .footer-hotel-column .li-codes {
    padding-bottom: 0;
  }
}
@media all and (max-width: 800px) {
  footer > div {
    padding-bottom: 13rem;
  }
  footer .legal-links,
  footer .credits {
    grid-column: 1 / 5;
  }
  footer .credits {
    text-align: left;
  }
  footer .credits--hotel {
    justify-content: flex-start;
  }
  footer .footer-hotel-column {
    grid-column: 1 / 5;
  }
  footer .footer-hotel-column.label {
    display: none;
  }
  footer .footer-hotel-column.gds {
    margin: 0;
    border-top: none;
    justify-content: flex-start;
    text-align: left;
  }
}
@media all and (max-width: 414px) {
  footer > div {
    padding-bottom: 11rem;
  }
}

/* Sections */

section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 var(--padding-global);
  scroll-margin-top: calc(7.5rem - var(--line-height));
}

section > div {
  width: 100%;
  max-width: 1280px;
  border-top: var(--line-height) solid var(--color-black);
}

.section-title {
  font-size: var(--font-size-21);
  line-height: var(--row-height);
  height: var(--row-height);
  padding: 0 var(--padding-intern);
  border-bottom: var(--line-height) solid var(--color-black);
  text-transform: lowercase;
}

/* Section header texte */

.section-header-text {
  font-size: var(--font-size-21);
}

.section-header-text > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8.4rem var(--padding-intern) 6.9rem var(--padding-intern);
  text-align: center;
  border-top: none;
}

.section-header-text h1 {
  font-size: var(--font-size-24);
  padding-bottom: 1.8rem;
  font-weight: bold;
}

.section-header-text h1 .ah-code {
  padding-right: 0.3rem;
}

.section-header-text p {
  max-width: 46.5rem;
  padding-bottom: 2.1rem;
}

.section-header-text p a {
  text-decoration: underline;
}

.section-header-text p a:hover {
  text-decoration: none;
}

/* Section texte */

.section-text .section-content {
  font-size: var(--font-size-18);
  padding: 6.3rem var(--padding-intern);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-text--contact ul {
  padding: 2rem 0;
}

.section-text--contact li {
  padding-bottom: 0.8rem;
}

.section-text--contact a:hover {
  color: var(--color-gray);
  transition: var(--transition-link);
}

/* Section header hotel */

.section-header-hotel > div {
  border-top: none;
  padding: var(--row-height) var(--padding-intern);
  position: relative;
}

.section-header-hotel .image {
  width: 100%;
  border-radius: var(--border-radius-images);
  height: var(--image-height);
  max-height: 40rem;
  background-color: var(--color-footer);
  position: relative;
}

.section-header-hotel .title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-24);
  font-weight: bold;
  text-align: center;
  padding: var(--row-height);
}

.section-header-hotel .hotel-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.section-header-hotel .hotel-label > div {
  font-size: 1.8rem;
  line-height: 1.2;
  border: 0.2rem solid;
  text-align: center;
  border-radius: 50%;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 19.5rem;
  height: 15.5rem;
}

.section-header-hotel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 60%;
  border-radius: var(--border-radius-images);
}

/* Section slide hotels */

.slide-hotels {
  padding: var(--row-height) 0;
  position: relative;
  display: flex;
}

.section-galerie-hotel .slide-hotels {
  padding: var(--row-height) 0 1.1rem 0;
}

.slide-hotels .prev-next-btn {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  height: calc(90vh - 7.5rem);
  max-height: 29rem;
}

.slide-hotels .prev-next-btn--prev {
  padding-right: var(--padding-intern);
}

.slide-hotels .prev-next-btn--next {
  padding-left: var(--padding-intern);
}

.slide-hotels .prev-btn:hover,
.slide-hotels .next-btn:hover,
.slide-hotels .prev-btn-footer:hover,
.slide-hotels .next-btn-footer:hover {
  cursor: pointer;
  color: var(--color-gray);
  transition: 0.1s;
}

.slide-hotels .prev-btn {
  padding-right: calc(1.2rem - var(--padding-intern));
}

.slide-hotels .next-btn {
  padding-left: calc(1.2rem - var(--padding-intern));
}

.slide-hotels .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.35;
}

.swiper--hotels {
  margin-left: inherit !important;
}

.swiper--hotels .swiper-slide {
  width: auto;
}

.swiper--hotels .slide-content {
  width: 21.9rem;
}

.swiper--hotels .image {
  margin-bottom: 2.1rem;
  border-radius: var(--border-radius-images);
  overflow: hidden;
}

.section-galerie-hotel .swiper--hotels .image {
  margin-bottom: 0;
}

.swiper--hotels .hotel-label {
  position: absolute;
  left: 0;
  right: 0;
  height: calc(90vh - 7.5rem);
  max-height: 27.4rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.swiper--hotels .hotel-label > div {
  font-size: 1.3rem;
  line-height: 1.2;
  border: 0.15rem solid;
  text-align: center;
  border-radius: 50%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 14.5rem;
  height: 11.5rem;
}

.swiper--hotels img {
  width: 100%;
  object-fit: cover;
  height: calc(90vh - 7.5rem);
  max-height: 27.4rem;
  transition: transform 0.5s ease;
}

.slide-content--hover .image:hover img {
  transform: scale(1.05);
  cursor: pointer;
}

.slide-content--hover h3 {
  display: inline-block;
}

.slide-content--hover h3:hover {
  color: var(--color-gray);
  cursor: pointer;
}

.swiper--hotels h3 {
  font-size: var(--font-size-24);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  font-weight: bold;
  transition: color var(--transition-link);
  display: flex;
}

.swiper--hotels h3 span {
  padding-right: 0.8rem;
  display: block;
}

.swiper--hotels p {
  font-size: var(--font-size-18);
  padding-bottom: 1.9rem;
}

.swiper--hotels .link {
  display: inline-block;
  font-size: var(--font-size-18);
  margin-bottom: 1.9rem;
}

.swiper--hotels a {
  border-bottom: 0.12rem solid var(--color-black);
}

.swiper--hotels .a-venir {
  font-style: italic;
}

/* Section slide hotels footer */

.slide-hotels--footer .prev-next-btn {
  max-height: 22rem;
}

.swiper--footer {
  margin-left: inherit !important;
}

.swiper--footer .swiper-slide {
  width: auto;
}

.swiper--footer .image {
  margin-bottom: 0.8rem;
  border-radius: var(--border-radius-images);
  overflow: hidden;
}

.swiper--footer .image a {
  display: block;
  position: relative;
}

.swiper--footer .hotel-label {
  position: absolute;
  left: 0;
  right: 0;
  height: calc(90vh - 7.5rem);
  max-height: 21.3rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.swiper--footer .hotel-label > div {
  font-size: 1.1rem;
  line-height: 1.2;
  border: 0.14rem solid;
  text-align: center;
  border-radius: 50%;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 13rem;
  height: 10.5rem;
}

.swiper--footer img {
  width: 100%;
  object-fit: cover;
  height: calc(90vh - 7.5rem);
  max-height: 21.3rem;
  transition: transform 0.5s ease;
}

.swiper--footer .slide-content {
  width: 17rem;
}

.swiper--footer h3 a {
  font-size: var(--font-size-21);
}

.swiper--footer h3 span {
  padding-right: 0.7rem;
}

.slide-hotels--footer .swiper--footer h3 a:hover {
  color: var(--color-gray);
  transition: color var(--transition-link);
}

.slide-hotels--footer .image:hover img {
   transform: scale(1.05);
}

/* Section slide valeurs */

.slide-valeurs {
  padding: var(--row-height) 0;
  display: flex;
  justify-content: center;
}

.slide-valeurs .prev-next-btn {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  max-height: var(--image-max-height);
  height: var(--image-height);
}

.slide-valeurs .prev-next-btn--prev {
  padding-right: var(--padding-intern);
}

.slide-valeurs .prev-next-btn--next {
  padding-left: var(--padding-intern);
}

.slide-valeurs .prev-btn:hover,
.slide-valeurs .next-btn:hover {
  cursor: pointer;
  color: var(--color-gray);
  transition: 0.1s;
}

.slide-valeurs .prev-btn {
  padding-right: calc(1.2rem - var(--padding-intern));
}

.slide-valeurs .next-btn {
  padding-left: calc(1.2rem - var(--padding-intern));
}

.slide-valeurs .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.35;
}

.swiper--valeurs {
  max-width: 700px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.swiper--valeurs .slide-content {
  text-align: center;
}

.swiper--valeurs .image {
  margin-bottom: 2.1rem;
}

.swiper--valeurs .image img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  max-height: var(--image-max-height);
  height: var(--image-height);
}

.swiper--valeurs h2 {
  font-size: var(--font-size-24);
  padding-bottom: 0.3rem;
  font-weight: bold;
}

.swiper--valeurs .text {
  font-size: var(--font-size-18);
  padding-bottom: 1.9rem;
  display: flex;
  justify-content: center;
}

.swiper--valeurs .text p {
  max-width: 40rem;
}

/* Détails essentiels */

.essential-details {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 253, 238, 0.9);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.essential-details.active {
  opacity: 1;
  visibility: visible;
}

.essential-details > div {
  background-color: var(--color-background);
  border: var(--line-height) solid var(--color-black);
  border-radius: var(--border-radius-images);
  padding: var(--row-height);
  pointer-events: auto;
  margin: var(--padding-global);
  position: relative;
  width: 100%;
  max-height: calc(100% - (var(--padding-global) * 2));
  max-width: 900px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.essential-details > div::-webkit-scrollbar {
  display: none;
}

.essential-details .cross {
  position: absolute;
  top: var(--row-height);
  right: var(--row-height);
}

.essential-details .title {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 1.8rem;
}

.essential-details .title span {
  font-size: var(--font-size-21);
}

.essential-details .text-images {
  display: flex;
}

.essential-details .text {
  margin-right: 3rem;
}

.essential-details p {
  font-size: var(--font-size-18);
  max-width: 25rem;
  padding-bottom: 2rem;
}

.essential-details p a {
  text-decoration: underline;
}

.essential-details p a:hover {
  text-decoration: none;
}

.essential-details ul {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  padding-left: 1rem;
}

.essential-details li {
  list-style: initial;
}

.swiper--essentiel {
  width: 25rem;
  margin-bottom: 1rem !important;
}

.swiper--essentiel img {
  width: 100%;
  height: var(--image-max-height);
  object-fit: cover;
}

/* Section texte image */

.section-text-image .text-image {
  display: flex;
  justify-content: space-between;
  padding: var(--row-height) var(--padding-intern);
}

.section-text-image .text-image > div {
  width: calc(50% - 1.25rem);
}

.section-text-image .text-image {
  text-align: center;
}

.section-text-image .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-text-image h3 {
  font-size: var(--font-size-24);
  padding-bottom: 1.8rem;
  font-weight: bold;
}

.section-text-image p {
  font-size: var(--font-size-18);
  padding-bottom: 2.1rem;
  max-width: 30rem;
}

.section-text-image img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  height: var(--image-height);
  max-height: var(--image-max-height);
}

/* Section 3 images avec textes */

.section-3-images-text > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: var(--row-height) var(--padding-intern) 1rem var(--padding-intern);
}

.section-3-images-text.multiple-of-3 .item {
  width: calc(33.3% - 1.66rem);
  padding-bottom: 2rem;
}

.section-3-images-text.not-multiple-of-3 .item {
  width: calc(50% - 1.1rem);
  padding-bottom: 2rem;
}

.section-3-images-text h2 {
  font-size: var(--font-size-24);
  padding-bottom: 0.3rem;
  font-weight: bold;
}

.section-3-images-text p {
  font-size: var(--font-size-18);
  padding-bottom: 2rem;
}

.section-3-images-text .image {
  padding-bottom: 2.1rem;
}

.section-3-images-text img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  height: calc(100vh - 12.5rem);
  max-height: var(--image-max-height);
}

.section-3-images-text .dispos {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  padding-bottom: 2rem;
}

.section-3-images-text .dispos h3 {
  padding-bottom: 0.5rem;
}

.section-3-images-text .dispos .ah-code {
  padding-right: 0.5rem;
}

.section-3-images-text .dispos a:hover span {
  text-decoration: underline;
}

.section-3-images-text .download-file {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  padding-bottom: 2rem;
}

.section-3-images-text .download-file a {
  text-decoration: underline;
}

.section-3-images-text .download-file a:hover {
  text-decoration: none;
}

.section-3-images-text .download-file svg {
  height: 0.9rem;
  position: relative;
  top: 0.15rem;
}

/* Section texte image home */

.section-text-image-home .text-image {
  display: flex;
  padding: var(--row-height) var(--padding-intern);
}

.section-text-image-home h3 {
  font-size: var(--font-size-24);
  padding-bottom: 1.5rem;
  font-weight: bold;
}

.section-text-image-home .text {
  margin-right: 2.5rem;
}

.section-text-image-home p {
  font-size: var(--font-size-18);
  padding-bottom: 1.9rem;
  width: 23.3rem;
}

.section-text-image-home .link {
  display: inline-block;
}

.section-text-image-home .image {
  width: 100%;
}

.section-text-image-home .image img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  height: calc(100vh - 12.5rem);
  max-height: 37.5rem;
}

/* Section hôtel dans page hôtel */

.hotel-hotel .section-title {
  border-bottom: none;
}

.hotel-hotel .images {
  padding: var(--row-height) var(--padding-intern);
  border-top: var(--line-height) solid var(--color-black);
}

.hotel-hotel .images {
  display: flex;
  justify-content: space-between;
}

.hotel-hotel .images .image {
  width: calc(50% - 1.1rem);
}

.hotel-hotel .images .image img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  max-height: var(--image-max-height);
  height: var(--image-height);
}

.hotel-hotel .text {
  font-size: var(--font-size-21);
  padding: 8.8rem var(--padding-intern);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: var(--line-height) solid var(--color-black);
}

.hotel-hotel .text h1 {
  font-size: var(--font-size-24);
  padding-bottom: 1.8rem;
  font-weight: bold;
}

.hotel-hotel .text h1 .ah {
  display: block;
}

.hotel-hotel .text h1 .ah-code {
  padding-right: 0.5rem;
}

.hotel-hotel .text p {
  max-width: 46.5rem;
}

.hotel-hotel .text .button-forward {
  margin-top: 1.9rem;
  margin-bottom: 0;
}

/* Sections supplémentaires */

.section-sup.green-background {
  background-color: var(--color-green);
  padding-top: var(--row-height);
}

.green-background + section:not(.green-background) > div {
  border-top: none;
}

.green-background + .section-sup.green-background {
  padding-top: 0;
}

.section-sup .text {
  font-size: var(--font-size-18);
  padding: 8.8rem var(--padding-intern) 6.5rem var(--padding-intern);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-sup .text h3 {
  font-size: var(--font-size-24);
  padding-bottom: 1.8rem;
  font-weight: bold;
}

.section-sup .text p {
  max-width: 46.5rem;
  padding-bottom: 2.1rem;
}

.section-sup .text p a {
  text-decoration: underline;
}

.section-sup .text p a:hover {
  text-decoration: none;
}

.section-sup .infos a {
  text-decoration: underline;
  transition: var(--transition-link);
}

.section-sup .infos a:hover {
  text-decoration: none;
}

.section-sup .text .infos {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  max-width: 30rem;
}

.section-sup .text .button-forward {
  margin-bottom: 2.1rem;
}

.section-sup .text-image {
  display: flex;
  justify-content: space-between;
  padding: var(--row-height) var(--padding-intern);
}

.section-sup .text-image.text-right {
  flex-direction: row-reverse;
}

.section-sup .text-image > div {
  width: calc(50% - 1.25rem);
}

.section-sup .text-image {
  text-align: center;
}

.section-sup .text-image .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-sup .text-image h3 {
  font-size: var(--font-size-24);
  padding-bottom: 1.8rem;
  font-weight: bold;
}

.section-sup .text-image p {
  font-size: var(--font-size-18);
  max-width: 30rem;
  padding-bottom: 2.1rem;
}

.section-sup .text-image p a {
  text-decoration: underline;
}

.section-sup .text-image p a:hover {
  text-decoration: none;
}

.section-sup .text-image .infos {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  max-width: 25rem;
}

.section-sup .text-image .button-forward {
  margin-bottom: 2.1rem;
}

.section-sup .swiper {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  height: 100%;
}

.section-sup .text-image img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  height: var(--image-height);
  max-height: var(--image-max-height);
}

.section-sup .images {
  padding: var(--row-height) var(--padding-intern);
}

.section-sup .images {
  display: flex;
  justify-content: space-between;
}

.section-sup .images .image {
  width: calc(50% - 1.1rem);
}

.section-sup .images .image img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  max-height: var(--image-max-height);
  height: var(--image-height);
}

.section-sup .blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: var(--row-height) var(--padding-intern) 0 var(--padding-intern);
}

.section-sup .block {
  padding-bottom: var(--row-height);
}

.section-sup .blocks.multiple-of-3 .block {
  width: calc(33.3% - 1.66rem);
}

.section-sup .blocks.not-multiple-of-3 .block {
  width: calc(50% - 1.1rem);
}

.section-sup .block h3 {
  font-size: var(--font-size-24);
  padding-bottom: 0.3rem;
  font-weight: bold;
}

.section-sup .block p {
  font-size: var(--font-size-18);
  padding-bottom: 2rem;
  max-width: 30rem;
}

.section-sup .block p a {
  text-decoration: underline;
}

.section-sup .block p a:hover {
  text-decoration: none;
}

.section-sup .block .image {
  padding-bottom: 2.1rem;
}

.section-sup .block img {
  width: 100%;
  border-radius: var(--border-radius-images);
  object-fit: cover;
  height: calc(100vh - 12.5rem);
  max-height: var(--image-max-height);
}

.section-sup .block--partenaire {
  padding-bottom: 4rem;
}

.section-sup .block--partenaire p {
  padding-bottom: 2rem;
}

.section-sup .block--partenaire .link {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-sup .block--partenaire .code-promo {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
}

.section-sup .block--partenaire .copy-button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  color: var(--color-black);
  text-decoration: underline;
  cursor: pointer;
  margin-left: 1rem;
}

.section-sup .block--partenaire .copied-message {
  display: none;
  color: green;
  margin-left: 1rem;
}
.section-sup .block--partenaire .copied-message.show {
  display: inline;
}

/* Slide images */

.swiper--images {
  border-radius: var(--border-radius-images);
  position: relative;
  margin-bottom: 2rem;
}

.swiper--images .prev-btn,
.swiper--images .next-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  line-height: 0;
}

.swiper--images .prev-btn {
  left: 1rem;
}

.swiper--images .next-btn {
  right: 1rem;
}

.swiper--images .prev-btn:hover,
.swiper--images .next-btn:hover {
  color: var(--color-gray);
  transition: 0.1s;
}

.swiper--images .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/* Chambres */

.rooms {
  padding: 0 var(--padding-intern);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  scroll-margin-top: 10rem;
}

.rooms.open {
  margin-bottom: 2rem;
}

.room {
  width: calc(50% - 1.1rem);
  padding-bottom: var(--row-height);
}

.room img {
  border-radius: 0;
}

.room .room-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
}

.room h3 {
  font-size: var(--font-size-24);
  padding-bottom: 0.3rem;
}

.room p {
  font-size: var(--font-size-18);
  padding-bottom: 1.5rem;
}

.room ul {
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 5rem;
}

.room li {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  list-style: initial;
}

.room .button-forward {
  margin-bottom: 1.5rem;
}

/* Bars */

.bars {
  padding: var(--row-height) var(--padding-intern);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bar{
  width: calc(50% - 1.1rem);
  padding-bottom: var(--row-height);
  scroll-margin-top: 10rem;
}

.bar img {
  border-radius: 0;
}

.bar h3 {
  font-size: var(--font-size-24);
  padding-bottom: 0.3rem;
}

.bar p {
  font-size: var(--font-size-18);
  padding-bottom: 0.6rem;
}

.bar .infos {
  font-family: var(--font-family-mono);
  font-size: 0.9rem;
  padding: 1rem 0;
}

.bar .infos a {
  text-decoration: underline;
}

.bar .infos a:hover {
  text-decoration: none;
}

/* Atouts */

.atouts {
  padding: 4.5rem var(--padding-intern) 5rem var(--padding-intern);
  font-size: var(--font-size-18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4rem;
}

.atout h3 {
  font-size: var(--font-size-21);
  font-weight: bold;
  padding-bottom: 0.5rem;
}

/* Tableau Compiègne */

.tab-compiegne {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr 1fr;
  font-size: var(--font-size-18);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 25rem;
}

.tab-compiegne div {
  border-bottom: var(--line-height) solid var(--color-black);
  padding: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-compiegne .picto {
  justify-content: flex-end;
}

.tab-compiegne svg {
  width: 1.5rem;
}

@media all and (max-width: 1112px) {
  .atouts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 1024px) {
  .section-header-hotel .image {
    max-height: 60vw;
  }
  .hotel-hotel .blocks.multiple-of-3 .block {
    width: calc(50% - 1.1rem);
  }
  .hotel-hotel .block img {
    max-height: 30vw;
  }
  .section-3-images-text.multiple-of-3 .item {
    width: calc(50% - 1.1rem);
  }
  .section-3-images-text.multiple-of-3 .item img,
  .section-3-images-text.not-multiple-of-3 .item img {
    max-height: 30vw;
  }
  .section-sup .blocks.multiple-of-3 .block {
    width: calc(50% - 1.1rem);
  }
  .section-sup .blocks.multiple-of-3 .block img,
  .section-sup .blocks.not-multiple-of-3 .block img {
    max-height: 30vw;
  }
}
@media all and (max-width: 800px) {
  section {
    scroll-margin-top: calc(6.5rem - var(--line-height));
  }
  .section-header-hotel .hotel-label > div {
    font-size: 1.4rem;
    border: 0.15rem solid;
    padding: 2rem;
    width: 17rem;
    height: 13.5rem;
  }
  .section-header-text {
    font-size: var(--font-size-18);
  }
  .section-header-text > div {
    padding: 6rem var(--padding-intern) 4.8rem var(--padding-intern);
  }
  .section-header-text .button-forward--21 {
    font-size: var(--font-size-18);
    border-bottom: 0.12rem solid var(--color-black);
  }
  .hotel-hotel .text {
    padding: 6rem var(--padding-intern) 6.2rem var(--padding-intern);
  }
  .section-sup .text {
    padding: 6rem var(--padding-intern) 3.9rem var(--padding-intern);
  }
  .section-text .section-content {
    padding: 4rem var(--padding-intern);
  }
  .hotel-hotel .text {
    font-size: var(--font-size-18);
  }
  .hotel-hotel .text .button-forward--21 {
    font-size: var(--font-size-18);
    border-bottom: 0.12rem solid var(--color-black);
    margin-top: 1.9rem;
    margin-bottom: 0;
  }
  .hotel-hotel .images {
    display: block;
    padding-bottom: 0;
  }
  .hotel-hotel .images .image {
    width: 100%;
    margin-bottom: var(--row-height);
  }
  .hotel-hotel .images .image img {
    max-height: 60vw;
  }
  .rooms {
    display: block;
    scroll-margin-top: 8.6rem;
  }
  .room {
    width: 100%;
    padding-bottom: var(--row-height);
  }
  .bar{
    width: 100%;
  }
  .section-text-image .text-image {
    display: block;
  }
  .section-text-image .text-image > div {
    width: 100%;
  }
  .section-text-image .text {
    padding: 2rem 0 4rem 0;
  }
  .section-text-image img {
    max-height: 60vw;
  }
  .section-sup .text-image,
  .section-sup .text-image.text-right {
    flex-direction: column;
  }
  .section-sup .text-image > div {
    width: 100%;
  }
  .section-sup .text-image img {
    max-height: 60vw;
  }
  .section-sup .text-image .text-content {
    padding: 2rem 0 3.1rem 0;
  }
  .section-sup .images {
    display: block;
    padding-bottom: 0;
  }
  .section-sup .images .image {
    width: 100%;
    margin-bottom: var(--row-height);
  }
  .section-sup .images .image img {
    max-height: 60vw;
  }
  .essential-details {
    align-items: flex-start;
  }
  .essential-details .text-images {
    display: block;
  }
  .essential-details .text {
    padding-bottom: 3rem;
  }
  .essential-details .cross {
    position: fixed;
    top: calc(var(--row-height) + var(--padding-global));
    right: calc(var(--row-height) + var(--padding-global));
    z-index: 1000;
  }
}
@media all and (max-width: 700px) {
  .hotel-hotel .blocks.multiple-of-3 .block,
  .hotel-hotel .blocks.not-multiple-of-3 .block {
    width: 100%;
  }
  .hotel-hotel .block img {
    max-height: 60vw;
  }
  .section-3-images-text.multiple-of-3 .item,
  .section-3-images-text.not-multiple-of-3 .item {
    width: 100%;
  }
  .section-3-images-text.multiple-of-3 .item img,
  .section-3-images-text.not-multiple-of-3 .item img {
    max-height: 60vw;
  }
  .section-sup .blocks.multiple-of-3 .block,
  .section-sup .blocks.not-multiple-of-3 .block {
    width: 100%;
  }
  .section-sup .blocks.multiple-of-3 .block img,
  .section-sup .blocks.not-multiple-of-3 .block img {
    max-height: 60vw;
  }
}
@media all and (max-width: 550px) {
  .atouts {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
}
@media all and (max-width: 475px) {
  .swiper--essentiel {
    width: auto;
  }
}
@media all and (max-width: 414px) {
  section {
    scroll-margin-top: calc(5rem - var(--line-height));
  }
  .swiper--hotels .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .swiper--hotels .slide-content {
    width: 21.9rem;
  }
  .section-header-hotel .hotel-label > div {
    font-size: 1.3rem;
    border: 0.15rem solid;
    padding: 1.8rem;
    width: 16rem;
    height: 12.5rem;
  }
  .section-header-text > div {
    padding: 5rem var(--padding-intern) 3.8rem var(--padding-intern);
  }
  .hotel-hotel .text {
    padding: 5rem var(--padding-intern) 5.4rem var(--padding-intern);
  }
  .rooms {
    scroll-margin-top: 7rem;
  }
  .section-sup .text {
    padding: 5rem var(--padding-intern) 4.3rem var(--padding-intern);
  }
  .swiper--valeurs .image img {
    max-height: 100vw;
  }
  .slide-valeurs .prev-next-btn {
    max-height: 100vw;
  }
  .essential-details > div {
    padding: 20px;
  }
  .essential-details .cross {
    top: calc(20px + var(--padding-global));
    right: calc(20px + var(--padding-global));
  }
}

/* FAQ */

.section-header-text--faq > div {
  padding: 5rem var(--padding-intern);
}

.section-header-text--faq h1 {
  padding: 0;
}

.section-faq > div {
  border: none;
  margin-bottom: 7rem;
  border-bottom: var(--line-height) solid var(--color-black);
}

.section-faq .question {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-21);
  line-height: 1.2;
  min-height: var(--row-height);
  padding: 0.4rem var(--padding-intern);
  border-top: var(--line-height) solid var(--color-black);
}

.section-faq .question h2 {
  cursor: pointer;
}

.section-faq .question h2:hover {
  color: var(--color-gray);
}

.section-faq .question > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 50rem;
}

.section-faq .question .arrow {
  transform: rotate(0deg);
  transition: transform 0.3s;
  margin-left: 1.5rem;
  cursor: pointer;
}

.section-faq .question .arrow:hover {
  color: var(--color-gray);
}

.section-faq .question .arrow.up {
  transform: rotate(180deg);
}

.section-faq .text {
  display: flex;
  justify-content: center;
  padding: 0 var(--padding-intern);
  font-size: var(--font-size-18);
  color: var(--color-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.section-faq .text.active {
  max-height: 1000px;
  border-top: var(--line-height) solid var(--color-black);
}

.section-faq .text > div {
  width: 100%;
  max-width: 50rem;
}

.section-faq .text p {
  padding: 2rem 4rem 2rem 0;
}

.section-faq .text p a {
  text-decoration: underline;
}

.section-faq .text p a:hover {
  text-decoration: none;
}

.section-faq-hotel > div {
  border-top: var(--line-height) solid var(--color-black);
  border-bottom: none;
  padding: 8.5rem 0 6rem 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-faq-hotel article {
  max-width: 60rem;
  width: 100%;
}

.section-faq-hotel h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  text-align: center;
  padding-bottom: 2.5rem;
}

.section-faq-hotel .link {
  border-top: var(--line-height) solid var(--color-black);
  display: flex;
  justify-content: center;
  padding: 3.3rem 0;
  width: 100%;
  max-width: 60rem;
}


@media all and (max-width: 800px) {
  .section-faq .question h2:hover {
    color: inherit;
  }
  .section-faq-hotel > div {
    padding: 5.7rem 0 3.2rem 0;
  }
}
@media all and (max-width: 414px) {
  .section-faq .text p {
     padding-right: 0;
  }
}

/** Page CGV **/

.section-cgv > div {
  border-top: 0;
}
.section-cgv .section h2 {
  font-size: var(--font-size-21);
  line-height: var(--row-height);
  height: var(--row-height);
  padding: 0 var(--padding-intern);
  border-top: var(--line-height) solid var(--color-black);
  border-bottom: var(--line-height) solid var(--color-black);
  text-transform: lowercase;
}
.section-cgv .text  {
  font-size: var(--font-size-18);
  padding: var(--row-height) var(--padding-intern);
}

/** Page la maison **/

/* Section header */
.section-header-maison .image {
  max-height: 20rem;
}
.section-header-maison .image + .text {
  padding: var(--row-height) var(--padding-intern) 0;
}
.section-header-maison .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-header-maison h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
}
.section-header-maison .text p {
  font-size: var(--font-size-21);
  max-width: 70rem;
  text-align: center;
  margin-bottom: 1em;
}
.section-header-maison .text a {
  margin-top: 1.9rem;
}

/* Section galerie */
.section-galerie-hotel .slide-hotels.section-galerie-hotel .slide-hotels {
  padding: var(--row-height) 0;
}

/* Section espaces */
.section-espaces-maison.section-text-image .text-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}
.section-espaces-maison.section-text-image .text-image .text {
  width: 80%;
}
.section-espaces-maison.section-text-image .text-image .text h3 {
 padding-bottom: 0;
}
.section-espaces-maison.section-text-image .text-image .text p {
  max-width: unset;
  padding-bottom: 0;
}
.section-espaces-maison .galerie-tableau {
  display: flex;
  justify-content: center;
  padding: 0 var(--padding-intern) var(--row-height);
}
.section-espaces-maison .galerie-tableau .slide-espaces {
  width: calc(50% - 1.25rem)
}
.section-espaces-maison .galerie-tableau .slide-espaces .swiper--espaces-maison .swiper-slide .slide-content .slide-title {
  font-size: var(--font-size-21);
}
.section-espaces-maison .galerie-tableau .tab-commercial {
  width: calc(50% - 1.25rem);
  display: grid;
  place-items: center;
}
.section-espaces-maison .galerie-tableau .tab-commercial .tab-compiegne {
  margin-bottom: 0;
  width: 90%;
  max-width: unset;
  grid-template-columns: repeat(2, 1fr);
}
.section-espaces-maison .galerie-tableau .tab-commercial .tab-compiegne div {
  padding: 0.5rem;
  justify-content: flex-start;
}
.section-espaces-maison .galerie-tableau .tab-commercial .tab-compiegne .column-2-4 {
  grid-column: 2 / 4;
}

/* Section acces et contact */
.section-acces-contact .text-image .text {
  padding: var(--padding-global);
  align-items: flex-start;
}
.section-acces-contact .text-image .text .proximite {
  text-align: left;
}
.section-acces-contact .text-image .map {
  max-width: 100%;
}

/* Section slide espaces */
.slide-espaces {
  padding: var(--row-height) 0;
  position: relative;
  display: flex;
}

.section-espaces-maison .slide-espaces {
  padding: var(--row-height) 0 1.1rem 0;
}

.slide-espaces .prev-next-btn {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  height: calc(90vh - 7.5rem);
  max-height: 29rem;
}

.slide-espaces .prev-next-btn--prev {
  padding-right: var(--padding-intern);
}

.slide-espaces .prev-next-btn--next {
  padding-left: var(--padding-intern);
}

.slide-espaces .prev-btn:hover,
.slide-espaces .next-btn:hover,
.slide-espaces .prev-btn-footer:hover,
.slide-espaces .next-btn-footer:hover {
  cursor: pointer;
  color: var(--color-gray);
  transition: 0.1s;
}

.slide-espaces .prev-btn {
  padding-right: calc(1.2rem - var(--padding-intern));
}

.slide-espaces .next-btn {
  padding-left: calc(1.2rem - var(--padding-intern));
}

.slide-espaces .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.35;
}

@media all and (max-width: 800px) {
  .section-acces-contact .text-image .text {
    align-items: center;
  }
  .section-espaces-maison .galerie-tableau .slide-espaces {
    width: 100%;
  }
  .section-espaces-maison .galerie-tableau {
    flex-wrap: wrap;
  }
  .section-espaces-maison .galerie-tableau .tab-commercial {
    width: 100%;
  }
  .section-espaces-maison .galerie-tableau .tab-commercial > div {
    margin-bottom: 2rem;
  }
}

/* Page carrière */

.header-carriere {
  position: static;
}

.header-carriere,
.header-carriere > div,
.section-sup--carriere,
.section-equipes,
.section-experience,
.form-section--carriere {
  background-color: var(--color-green);
}

.header-carriere > div {
  position: relative;
}

.header-carriere .ah-label-container {
  display: flex;
  justify-content: center;
  padding: var(--row-height);
}

.header-carriere .ah-label {
  font-size: 3.4rem;
  border: 0.24rem solid var(--color-black);
  border-radius: 50%;
  padding: 1.7rem 2.5rem;
}

.header-carriere .menu-row {
  border-top: var(--line-height) solid var(--color-black);
  position: relative;
}

.header-carriere a:hover {
  color: var(--color-gray-2);
}

.header-carriere .retour {
  padding-left: var(--padding-intern);
}

.header-carriere .retour span,
.header-carriere .retour-mobile span {
  padding-right: 0.5rem;
}

.header-carriere .retour,
.header-carriere .lang {
  z-index: 3;
}

.header-carriere .retour-mobile {
  display: none;
  position: absolute;
  top: var(--padding-global);
  left: var(--padding-intern);
  font-size: var(--font-size-21);
}

.header-carriere .title {
  position: absolute;
  width: 100%;
  text-align: center;
  text-transform: none;
  font-weight: bold;
}

.section-header-carriere {
  background-color: var(--color-green);
}

.section-header-carriere h1 {
  font-size: 2.3rem;
  margin-bottom: 5rem;
}

.section-header-carriere .button {
  display: inline-block;
  font-size: var(--font-size-21);
  font-weight: ;
  border: var(--line-height) solid white;
  border-radius: var(--border-radius-images);
  padding: 1.5rem 1.7rem;
  margin: 0 3rem 2rem 3rem;
}

.section-header-carriere .button:hover {
  color: var(--color-black);
  background-color: var(--color-background);
}

.main--carriere section {
  scroll-margin-top: 0;
}

.section-chiffres .chiffres {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  flex-wrap: wrap;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0;
}

.section-chiffres .chiffre-description {
  padding-bottom: 2rem;
}

.section-chiffres .chiffre {
  display: block;
  font-size: 5.8rem;
  line-height: 1.1;
}

.section-chiffres .description {
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
}

.section-sup--carriere {
  padding-top: var(--row-height);
}

.section-avantages {
  margin-top: var(--row-height);
}

.avantages {
  padding: 4.5rem var(--padding-intern) 5rem var(--padding-intern);
  font-size: var(--font-size-18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4rem;
}

.avantage h3 {
  font-size: var(--font-size-21);
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.avantage svg {
  width: 1.8rem;
}

.section-equipes > div {
  padding-bottom: 1rem;
}

.section-equipes .button {
  width: 100%;
  text-align: center;
}

.section-equipes .button a {
  display: inline-block;
  font-size: var(--font-size-21);
  font-weight: bold;
  border: var(--line-height) solid var(--color-black);
  border-radius: var(--border-radius-images);
  padding: 1.5rem 1.7rem;
  margin: ;
}

.section-equipes .button a:hover {
  color: var(--color-background);
  background-color: var(--color-black);
}

.section-experience .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem var(--padding-intern);
}

.section-experience .title-text {
  text-align: center;
  max-width: 30rem;
  padding-bottom: 4rem;
}

.section-experience .title-text h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  padding-bottom: 1.5rem;
}

.section-experience .title-text p {
  font-size: var(--font-size-18);
}

.section-experience .videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--padding-intern);

}

.section-experience .video {
  padding-bottom: 1.5rem;
}

.section-experience .name {
  font-size: var(--font-size-21);
  font-weight: bold;
}

.section-experience .position {
  font-size: var(--font-size-18);
}

.section-experience .video-container {
    position: relative;
    width: 100%;
    max-width: 560px; /* Taille de la vidéo */
    cursor: pointer;
    border-radius: var(--border-radius-images); /* Applique un border-radius à la vidéo */
    overflow: hidden; /* Assure que les coins sont arrondis */
    margin-bottom: 1rem;
}

.section-experience .video-container img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-images); /* Applique un border-radius à l'image */
    object-fit: cover;
    height: 20rem;
}

.section-experience .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    wdisplay: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2rem 0 2rem 3.5rem;
    border-color: transparent transparent transparent white;
    transition: var(--transition-link);
}

.section-experience .video-container:hover .play-button {
  border-color: transparent transparent transparent var(--color-gray);
}

.section-experience iframe {
    display: none;
    width: 100%;
    height: 20rem;
    border-radius: var(--border-radius-images); /* Applique un border-radius à l'iframe */
}

.section-offres > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  padding: 8rem var(--padding-intern) 9rem var(--padding-intern);
}

.section-offres .h2-text {
  text-align: center;
  max-width: 30rem;
  margin-bottom: 5rem;
}

.section-offres .h2-text h2 {
  font-size: var(--font-size-24);
  font-weight: bold;
  padding-bottom: 1.5rem;
}

.section-offres .h2-text p {
  font-size: var(--font-size-18);
}

.offres {
  width: 100%;
  max-width: 55rem;
  border-top: var(--line-height) solid var(--color-black);
}

.offre {
  border-bottom: var(--line-height) solid var(--color-black);
  padding: 0.5rem 0;
}

.offre .image-title {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.offre .image-title:hover .title {
  color: var(--color-gray);
}

.offre .image-title img {
  display: block;
  max-width: 12rem;
}

.offre .image-title .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: var(--font-size-18);
  padding: var(--padding-intern) 2rem var(--padding-intern) 1.5rem;
  transition: color var(--transition-link);
}

.offre h3 {
  font-size: var(--font-size-21);
  font-weight: bold;
}

.offre .arrow {
  font-size: var(--font-size-24);
  transition: transform 0.3s ease;
  color: var(--color-black);
}

.offre .text {
  font-size: var(--font-size-16);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.offre .text > div {
  display: flex;
  align-items: flex-end;
  padding: 1rem var(--padding-intern) 2rem 13.5rem;
}

.offre .text p {
  padding-right: 4rem;
}

.offre .text p a {
  text-decoration: underline;
}

.offre .text p a:hover {
  text-decoration: none;
}

.offre .text .button {
  display: block;
  font-size: var(--font-size-18);
  font-weight: bold;
  border: var(--line-height) solid var(--color-black);
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
}

.offre .text .button:hover {
  color: var(--color-background);
  background-color: var(--color-black);
}

.offre.open .arrow {
  transform: rotate(180deg);
}

.section-offres .pas-offres {
  font-size: var(--font-size-21);
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .section-experience .videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 800px) {
  .header-carriere .ah-label-container {
    padding-top: 4rem;
    padding-bottom: 1.3rem;
  }
  .header-carriere .menu-row {
    border: none;
    display: flex;
  }
  .header-carriere .retour,
  .header-carriere .lang {
    display: none;
  }
  .header-carriere .retour-mobile {
    display: block;
  }
  .section-header-carriere .image {
    height: 25rem;
    max-height: 100%;
  }
  .section-header-carriere .title {
    padding: var(--padding-intern) var(--padding-intern) 0 var(--padding-intern);
  }
  .section-header-carriere h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .section-header-carriere .button {
    font-size: var(--font-size-18);
    border: var(--line-height) solid white;
    border-radius: var(--border-radius-images);
    padding: 1.3rem 1.5rem;
    margin: 0 2rem 1.5rem 2rem;
  }
  .section-chiffres .chiffres {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 0;
  }
  .avantages {
    padding: 4.5rem var(--padding-intern) 5rem var(--padding-intern);
    font-size: var(--font-size-18);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }
  .section-offres > div {
    padding: 6rem var(--padding-intern) 8rem var(--padding-intern);
  }
}
@media all and (max-width: 700px) {
  .section-experience .videos {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-experience .video-container {
    max-width: 450px;
  }
  .offre .text > div {
    display: block;
  }
  .offre .text p {
    padding-bottom: 2rem;
  }
  .offre .text .button {
    display: inline-block;
  }
}
@media all and (max-width: 600px) {
  .offre .image-title img {
    max-width: 8rem;
    height: 8rem;
    object-fit: cover;
  }
  .offre .image-title .title {
    padding-right: 1rem;
  }
  .offre .text > div {
    padding: 2rem var(--padding-intern) 2rem 0;
  }
}
@media all and (max-width: 414px) {
  .header-carriere .retour-mobile {
    top: 1.2rem;
  }
  .offre .image-title img {
    max-width: 6rem;
    height: 6rem;
    object-fit: cover;
  }
  .offre .text p {
    padding-right: 0;
  }
}

/* Page légale */

.section-header-text--legal > div {
  padding: 5rem var(--padding-intern);
}

.section-header-text--legal h1 {
  padding: 0;
}

.section-legal > div {
  border: none;
  padding: 0 var(--padding-intern) 5rem var(--padding-intern);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-legal .legal {
  max-width: 60rem;
}

.section-legal .legal h2 {
  font-size: var(--font-size-21);
  padding-bottom: 1rem;
  font-weight: bold;
}

.section-legal .legal p {
  font-size: var(--font-size-18);
  padding-bottom: 4rem;
}

.section-legal .legal p a {
  text-decoration: underline;
}

.section-legal .legal p a:hover {
  text-decoration: none;
}

/* Icon Forward */

.button-forward {
  display: flex;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.button-forward .button-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin-left: 6px;
}
.button-forward:hover .button-icon {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.button-forward--16 {
  font-size: var(--font-size-16);
  border-bottom: 0.1rem solid var(--color-black);
}

.button-forward--18 {
  font-size: var(--font-size-18);
  border-bottom: 0.12rem solid var(--color-black);
}

.button-forward--21 {
  font-size: var(--font-size-21);
  border-bottom: 0.13rem solid var(--color-black);
  margin-bottom: 1.9rem;
}

.button-forward--21 .button-icon {
  margin-left: 8px;
}

.button-forward--rooms:hover .button-icon {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}

.button-forward--rooms .button-icon {
  position: relative;
  top: -3px;
  margin-left: 10px;
  transition: transform 0.2s ease-out;
}

.button-forward--rooms:hover .button-icon {
  transform: translateY(6px);
}

.button-forward--rooms.rotate .button-icon {
  transform: rotate(180deg);
}

.button-forward--rooms.rotate:hover .button-icon {
  transform: rotate(180deg) translateY(6px);
}

/* Formulaires */

.uniform__potty {
  position: absolute;
  left: -9999px;
}

.form-section > div {
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-section--carriere > div {
  max-width: 55rem;
  border: none;
}

.form-section h2 {
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: bold;
  padding-bottom: 7rem;
}

.form-section .message {
  margin-top: -5rem;
  font-size: var(--font-size-21);
  padding: 0 var(--padding-intern) 3rem var(--padding-intern);
}

.form-section .message--success {
  color: green;
}

.form-section .message--error {
  color: red;
}

.form-section form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  max-width: 70rem;
}

.form-section--carriere form {
  grid-template-columns: repeat(2, 1fr);
}

.form-section label {
  font-size: var(--font-size-21);
  display: block;
  padding: 0 var(--padding-intern);
}

.form-section input,
.form-section textarea,
.form-section select {
  border: none;              
  border-bottom: var(--line-height) solid var(--color-black);
  padding: var(--padding-intern);
  margin-bottom: 1rem;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: var(--font-size-18);
  color: var(--color-gray);
  border-radius: 0;
}

.form-section--carriere input,
.form-section--carriere textarea,
.form-section--carriere select {
  color: var(--color-gray-2);
}

.form-section select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-file input[type="file"]::-webkit-file-upload-button {
  background-color: transparent;
  color: var(--color-gray-2);
  border: none;
  cursor: pointer;
  padding: 0 2rem 0 0.3rem;
}

.form-file input[type="file"]::before {
  content: "--";
}

.form-section textarea {
  height: 10rem;
  resize: none;
}

.form-section input.error,
.form-section  select.error,
.form-section  textarea.error {
  border-color: red;
}

.form-section .form-info {
  font-size: 0.9rem;
  position: relative;
  bottom: 0.5rem;
  padding: 0 0 var(--padding-intern) var(--padding-intern);
}

.form-section .gap {
  display: none;
}

.form-section .date input {
  font-family: var(--font-family-regular);
}

.form-section .commentaire {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.form-section .consentement label {
  font-size: var(--font-size-18);
  display: block;
}

.form-section .consentement input {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: var(--line-height) solid var(--color-black);
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  position: relative;
  display: block;
}

.form-section .consentement input.error {
  border-color: red;
}

.consentement input:checked:after { 
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem; /* Taille du carré noir */
  height: 1rem;
  background-color: var(--color-gray);
  border: 0.2rem solid var(--color-background);
}

.form-section--carriere .consentement input:checked:after { 
  background-color: var(--color-gray-2);
  border: 0.2rem solid var(--color-green);
}

.form-section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

.form-section button {
  color: var(--color-black);
  font-weight: normal;
  font-style: normal;
}

.form-section .button-forward {
  background-color: transparent;
  border: none;
  border-bottom: 0.13rem solid var(--color-black);
  margin-bottom: 0;
  padding-bottom: 0.3rem;
  cursor: pointer;
}

.form-section .button-forward svg {
  width: 1rem;
}

@media all and (max-width: 1024px) {
  .form-section form {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-section .gap {
    display: block;
  }
  .form-section .gap-2 {
    display: none;
  }
  .form-section .commentaire {
    grid-column: auto;
    grid-row: auto;
  }
}
@media all and (max-width: 800px) {
  .form-section > div {
    padding: 6rem 0;
  }
  .form-section .commentaire {
    grid-column: 1 / 3;
  }
  .form-section .gap-2 {
    display: block;
  }
}
@media all and (max-width: 500px) {
  .form-section form {
    grid-template-columns: 1fr;
  }
  .form-section .gap {
    display: none;
  }
  .form-section .commentaire {
    grid-column: auto;
  }
  .form-section .gap-2 {
    display: none;
  }
}

/* Pop-up promo home */

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 253, 238, 0.9);
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.popup.hidden {
  display: none;
}

.popup > div {
  display: flex;
  background-color: var(--color-green);
  border: var(--line-height) solid var(--color-black);
  border-radius: var(--border-radius-images);
  padding: var(--row-height);
  position: relative;
  margin: var(--padding-global);
  max-height: calc(100vh - (var(--padding-global) * 2));
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.popup > div::-webkit-scrollbar {
  display: none;
}

.popup .cross {
  position: absolute;
  top: var(--row-height);
  right: var(--row-height);
}

.popup .image {
  max-width: 30rem;
}

.popup img {
  width: 100%;
  border-radius: var(--border-radius-images);
}

.popup .content {
  line-height: 1.3;
  max-width: 25rem;
  width: 100%;
  text-align: center;
  padding: var(--row-height) var(--row-height) 0 var(--row-height);
}

.popup .content p {
  padding-bottom: 2rem;
}

.popup .title {
  font-size: var(--font-size-24);
  font-weight: bold;
}

.popup .subtitle {
  font-size: var(--font-size-21);
  font-weight: bold;
}

.popup .text {
  font-size: var(--font-size-16);
}

.popup .boutons {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

.popup .boutons a {
  color: var(--color-background);
  background-color: var(--color-black);
  width: 100%;
  padding: 1.3rem 1.5rem;
  margin: 0.5rem 0;
  border-radius: 0.7rem;
  font-size: var(--font-size-16);
  font-weight: bold;
  transition: 0.3s;
}

.popup .boutons a:hover {
  color: var(--color-black);
  background-color: var(--color-background);
}

@media all and (max-width: 700px) {
  .popup {
    align-items: flex-start;
  }
  .popup > div {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .popup .cross {
    position: fixed;
    top: calc(var(--row-height) + var(--padding-global));
    right: calc(var(--row-height) + var(--padding-global));
    z-index: 1000;
  }
  .popup .image {
    margin: 4rem 20px 1rem 20px;
  }
  .popup img {
    height: 12rem;
    object-fit: cover;
  }
  .popup .content {
    padding: 0;
    margin-top: 2rem;
  }
}

@media all and (max-width: 414px) {
  .popup > div {
    padding: 20px;
  }
  .popup .cross {
    top: calc(20px + var(--padding-global));
    right: calc(20px + var(--padding-global));
  }
}