@import url("https://use.typekit.net/uey3lgt.css");
:root {
  --bg: #0f172a;
  --text: #e5e7eb;
  --card-height: 240px;
  --card-radius: 18px;
  --top-sticky: 35px;
  --gap: 24px;
  --size-24: 16px;
  --size-32: 20px;
  --size-36: 18px;
  --size-40: 18px;
  --size-46: 22px;
  --size-56: 24px;
  --size-66: 28px;
  --size-70: 15px;
  --size-76: 36px;
  --size-90: 28px;
  --margin-30: 10px;
  --border-radius-40: 20px;
}
@media (min-width: 576px) {
  :root {
    --size-70: 20px;
    --size-36: 36px;
    --size-46: 30px;
    --size-66: 46px;
    --size-76: 50px;
    --size-32: 30px;
    --size-24: 22px;
    --border-radius-40: 30px;
    --margin-30: 10px;
    --size-90: 36px;
    --size-40: 24px;
  }
}
@media (min-width: 768px) {
  :root {
    --size-70: 30px;
    --size-36: 36px;
    --margin-30: 20px;
    --size-90: 50px;
    --size-40: 24px;
    --size-56: 36px;
    --size-46: 36px;
    --size-66: 56px;
    --size-76: 66px;
  }
}
@media (min-width: 992px) {
  :root {
    --size-70: 36px;
    --size-36: 36px;
    --border-radius-40: 40px;
    --margin-30: 25px;
    --size-90: 60px;
    --size-40: 30px;
    --size-46: 40px;
    --size-66: 66px;
    --size-76: 76px;
  }
}
@media (min-width: 1200px) {
  :root {
    --size-70: 56px;
    --size-36: 36px;
    --margin-30: 30px;
    --size-90: 80px;
    --size-56: 56px;
  }
}
@media (min-width: 1400px) {
  :root {
    --size-70: 70px;
    --size-90: 86px;
    --size-40: 38px;
  }
}
* {
  box-sizing: border-box;
}
body {
  font-family: goldenbook, serif;
  margin: 0;
  font-size: var(--size-24);
  line-height: 24px;
}
@media (max-width: 991px) {
  body {
    margin-bottom: 100px;
  }
}
img {
  vertical-align: middle;
}
a {
  color: inherit;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 5px 0;
  z-index: 1000000;
  transition: all 0.2s ease;
}
@media (min-width: 576px) {
  header {
    padding: 35px 30px 0;
  }
}
@media (min-width: 992px) {
  header {
    padding: 75px 60px 0;
  }
}
header.scrolled {
  padding-top: 10px;
}
header.scrolled .logo-nb {
  opacity: 0;
  visibility: hidden;
  display: none;
}
header.scrolled nav.open .nav_contact {
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  header.scrolled .header__langue {
    opacity: 0;
    visibility: hidden;
  }
}
header .logo-nb {
  width: 146px;
  filter: grayscale(100%);
}
header .logo-nb:hover {
  width: inherit;
  filter: grayscale(0);
}
header a.btn {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  border: 3px solid #FFFFFF;
  border-radius: var(--border-radius-40);
  padding: 7px 49px;
  text-decoration: none;
  background: #2E2E25;
  display: inline-block;
}
header a.btn:hover {
  background-color: #fff;
  color: #A1AB76;
}
header .header__langue {
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  transition: all 1s ease;
}
@media (max-width: 991px) {
  header .header__langue {
    padding: 6px 10px;
  }
}
header .header__langue span {
  color: #fff;
  margin-left: 40px;
  border: 3px solid white;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #2E2E25;
}
header .header__langue span:hover {
  background-color: #fff;
  color: #A1AB76;
}
header .header__langue .header__langue__change {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
}
@media (max-width: 991px) {
  header .header__langue .header__langue__change {
    right: 9px;
  }
}
header .header__langue .header__langue__change li {
  margin-top: 5px;
}
header .header__langue .header__langue__change li a {
  color: #fff;
  border: 3px solid white;
  border-radius: 50%;
  padding: 11px;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  text-decoration: none;
  background: #2E2E25;
}
header .header__langue .header__langue__change li a:hover {
  background-color: #fff;
  color: #A1AB76;
}
header .header__langue:hover .header__langue__change {
  display: block;
}
#ascenseur {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 9999;
  background-color: #2E2E25;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ascenseur.visible {
  visibility: visible;
  opacity: 1;
}
#ascenseur a {
  color: #fff;
  padding: 10px 15px;
}
#cartouche {
  background-color: #F6F2E7;
  padding: var(--margin-30) var(--margin-30) 0;
  position: relative;
}
.cartouche {
  position: sticky;
  top: var(--top-sticky);
  border-radius: var(--card-radius);
  transform-origin: center top;
  transition: transform 220ms ease, opacity 220ms ease;
  margin-bottom: var(--gap);
}
@media (max-width: 991px) {
  .cartouche:first-child {
    margin-top: var(--top-sticky);
  }
}
.cartouche img,
.cartouche video {
  border-radius: var(--border-radius-40);
}
.cartouche .sur_cartouche {
  position: absolute;
  bottom: 0;
  padding: 0 20px 20px;
  z-index: 1;
  font-size: var(--size-40);
  line-height: var(--size-56);
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
@media (min-width: 768px) {
  .cartouche .sur_cartouche {
    padding: 0 24px 24px;
  }
}
@media (min-width: 992px) {
  .cartouche .sur_cartouche {
    padding: 0 36px 50px 80px;
  }
}
@media (min-width: 1400px) {
  .cartouche .sur_cartouche {
    padding: 0 55px 70px 130px;
  }
}
.cartouche .sur_cartouche .titre {
  font-size: var(--size-90);
}
.cartouche .sur_cartouche .lien {
  font-size: 26px;
  line-height: 30px;
}
.cartouche .sur_cartouche .lien a {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 5px 10px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .cartouche .sur_cartouche .lien a {
    padding: 10px 20px;
  }
}
.cartouche .sur_cartouche .lien a img {
  margin-left: 30px;
}
.cartouche:nth-child(1) {
  z-index: 1;
}
.cartouche:nth-child(2) {
  z-index: 2;
}
.cartouche:nth-child(3) {
  z-index: 3;
}
.cartouche:nth-child(4) {
  z-index: 4;
}
.cartouche:nth-child(5) {
  z-index: 5;
}
h1 {
  font-family: balto, sans-serif;
  font-size: var(--size-36);
  line-height: var(--size-36);
  font-weight: normal;
  margin: 0 0 var(--size-70);
}
@media (min-width: 992px) {
  h1 span {
    display: block;
  }
}
h2 {
  font-weight: 900;
  margin: 0 0 var(--margin-30);
  font-size: var(--size-36);
  line-height: var(--size-36);
  font-family: balto, sans-serif;
}
h2 span {
  display: block;
}
h2 .libre_franklin {
  font-size: var(--size-46);
  line-height: var(--size-66);
  font-weight: normal;
}
h2 .hello_bloomie {
  font-family: hello-bloomie-script, sans-serif;
  font-size: var(--size-56);
  line-height: var(--size-76);
  font-weight: normal;
}
h3 {
  font-weight: 900;
  margin: 0 0 var(--margin-30);
}
h3 span {
  display: block;
}
h3 .libre_franklin {
  font-size: var(--size-36);
  line-height: var(--size-56);
  font-weight: normal;
}
h3 .hello_bloomie {
  font-family: hello-bloomie-script, sans-serif;
  font-size: var(--size-46);
  line-height: var(--size-66);
  font-weight: normal;
}
p {
  margin: 0;
}
p strong {
  font-weight: 600;
}
.libre_franklin {
  font-family: libre-franklin, sans-serif;
}
.hello_bloomie {
  font-family: hello-bloomie-script, sans-serif;
}
.section1 {
  padding: var(--size-70) 0;
}
@media (min-width: 768px) {
  .section1 {
    background-image: url("../images/montagnes.png");
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1400px) {
  .section1 {
    background-image: url("../images/montagnes.png"), url("../images/fougeres.png");
    background-position: left center, right -25% center;
    background-repeat: no-repeat, no-repeat;
  }
}
p.titre {
  font-size: var(--size-32);
  line-height: var(--size-32);
  margin-bottom: 15px;
}
p.legende {
  margin-top: 10px;
}
.hr {
  margin-top: 30px;
  margin-bottom: 70px;
}
.hr > div {
  width: 4px;
  height: 80px;
  background-color: #707070;
}
@media (max-width: 991px) {
  .hr {
    display: none;
  }
}
section.service {
  margin: var(--size-70) var(--margin-30);
}
section.service > div {
  background-color: #F2F0E7;
  border-radius: var(--border-radius-40);
  padding: var(--margin-30);
}
section.service > div .icone {
  margin-top: 40px;
}
@media (max-width: 767px) {
  section.service > div .icone {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  section.service > div > div:nth-child(2) {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .section2 {
    background-image: url("../images/montagnes.png");
    background-position: center top;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1200px) {
  .section2 {
    background-image: url("../images/montagnes.png"), url("../images/table-pingpong.png"), url("../images/batons-gants-montagne-2.png");
    background-position: left top,
            right top,
            left bottom;
    background-repeat: no-repeat, no-repeat;
  }
}
section.activite {
  margin: var(--size-70) var(--margin-30);
}
section.activite > div {
  background-color: #A1AB76;
  border-radius: var(--border-radius-40);
  padding: var(--margin-30);
}
@media (min-width: 992px) {
  section.activite > div {
    background-image: url("../images/tronc.png");
    background-position: right 50px bottom 85px;
    background-repeat: no-repeat;
  }
}
section.activite > div .icone {
  margin-top: 40px;
}
section.activite .stack_list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 3rem) 4rem;
  min-height: 26rem;
  gap: 0;
  --overlap: clamp(3.5rem, 6vw, 5.5rem);
  --card-w: 120px;
}
@media (max-width: 767px) {
  section.activite .stack_list {
    margin: 0 15px;
    min-height: 20rem;
    padding-bottom: 30px;
  }
}
@media (min-width: 576px) {
  section.activite .stack_list {
    --card-w: 150px;
  }
}
@media (min-width: 768px) {
  section.activite .stack_list {
    --card-w: 180px;
  }
}
@media (min-width: 992px) {
  section.activite .stack_list {
    --card-w: 220px;
  }
}
@media (min-width: 1200px) {
  section.activite .stack_list {
    --card-w: 250px;
  }
}
@media (min-width: 1400px) {
  section.activite .stack_list {
    --card-w: 320px;
  }
}
section.activite .stack_list .stack_item {
  --stack-y: 0rem;
  position: relative;
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  margin-left: calc(var(--overlap) * -1);
  transform: translateY(var(--stack-y));
  transform-origin: center bottom;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border-radius: var(--border-radius-40);
  overflow: hidden;
}
@media (max-width: 991px) {
  section.activite .stack_list .stack_item:first-child {
    margin-left: 0;
  }
}
section.activite .stack_list .stack_item .stack_icone {
  position: absolute;
  top: 7px;
  left: 7px;
}
@media (min-width: 992px) {
  section.activite .stack_list .stack_item .stack_icone {
    top: 12px;
    left: 16px;
  }
}
section.activite .stack_list .stack_item .stack_icone img {
  width: 21px;
}
@media (min-width: 576px) {
  section.activite .stack_list .stack_item .stack_icone img {
    width: 30px;
  }
}
@media (min-width: 768px) {
  section.activite .stack_list .stack_item .stack_icone img {
    width: 40px;
  }
}
@media (min-width: 992px) {
  section.activite .stack_list .stack_item .stack_icone img {
    width: 56px;
  }
}
@media (min-width: 1200px) {
  section.activite .stack_list .stack_item .stack_icone img {
    width: 70px;
  }
}
@media (min-width: 1400px) {
  section.activite .stack_list .stack_item .stack_icone img {
    width: inherit;
  }
}
section.activite .stack_list .stack_item:nth-child(1) {
  --stack-y: 0rem;
  z-index: 1;
}
section.activite .stack_list .stack_item:nth-child(2) {
  --stack-y: 2.5rem;
  z-index: 1;
}
section.activite .stack_list .stack_item:nth-child(3) {
  --stack-y: 5rem;
  z-index: 1;
}
section.activite .stack_list .stack_item:nth-child(4) {
  --stack-y: 1.25rem;
  z-index: 1;
}
section.activite .stack_list .stack_item:nth-child(5) {
  --stack-y: 3.25rem;
  z-index: 1;
}
section.activite .stack_list .stack_item:hover {
  z-index: 100 !important;
  transform: translateY(calc(var(--stack-y) - 1.75rem)) scale(1.06);
}
@media (min-width: 768px) {
  .section3 {
    background-image: url("../images/gland.png"), url("../images/feuille.png");
    background-position: left calc(100% / 12) top, right top;
    background-repeat: no-repeat, no-repeat;
  }
}
section.locatifs {
  background-color: #F2F0E7;
  border-radius: var(--border-radius-40);
  padding: var(--size-56) 0;
  margin: var(--size-70) 0;
}
.swiper {
  height: auto;
}
.swiper-slide {
  height: auto;
}
.swiper_locatif {
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: calc(800 * 100% / 1920);
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: #A1AB76;
  --swiper-scrollbar-size: 23px;
}
.swiper_locatif a {
  text-decoration: none;
}
.swiper_locatif .swiper-title {
  text-align: end;
  width: auto !important;
  writing-mode: sideways-lr;
  font-size: var(--size-56);
  line-height: var(--size-56);
  font-family: goldenbook, serif;
  font-weight: 900;
  transform-origin: left bottom;
}
@media (min-width: 576px) {
  .swiper_locatif .swiper-title {
    width: 45px !important;
  }
}
@media (min-width: 768px) {
  .swiper_locatif .swiper-title {
    width: 60px !important;
  }
}
@media (min-width: 992px) {
  .swiper_locatif .swiper-title {
    width: 75px !important;
  }
}
.swiper_locatif .swiper-slide img {
  border-radius: var(--border-radius-40);
}
.swiper_locatif .swiper-photo {
  position: relative;
}
.swiper_locatif .swiper-photo .img1 {
  position: relative;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s ease;
}
.swiper_locatif .swiper-photo:hover .img1 {
  clip-path: inset(0 0 100% 0);
}
.swiper_locatif .swiper-photo .img2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}
.swiper_locatif .swiper-texte {
  margin-top: 25px;
}
.swiper_locatif .scrollbar > div {
  width: 320px;
}
section.emplacement {
  position: relative;
  margin: var(--size-70) var(--margin-30);
}
section.emplacement img:first-child {
  border-radius: var(--border-radius-40);
}
section.emplacement .absolute {
  position: absolute;
  bottom: 5px;
  right: 0;
}
section.emplacement .absolute img {
  margin: 0 35px;
  width: 8vw;
  max-width: 162px;
}
section.alentours {
  margin: var(--size-70) var(--margin-30);
  background-color: #A1AB76;
  border-radius: var(--border-radius-40);
  padding: var(--size-56) 0 0;
  color: #2E2E25;
}
@media (min-width: 992px) {
  section.alentours {
    background-image: url(../images/montagnes.png);
    background-position: center top 150px;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1400px) {
  section.alentours {
    background-image: url(../images/montagnes.png), url(../images/fougeres.png);
    background-position: left top 150px, right -50% top;
    background-repeat: no-repeat, no-repeat;
  }
}
.anim_alentours {
  margin-top: var(--size-70);
}
.anim_alentours > div {
  padding: 10px;
}
@media (min-width: 576px) {
  .anim_alentours > div {
    padding: 20px;
  }
}
.anim_alentours > div img {
  border-radius: var(--border-radius-40);
  transition: all 0.5s ease;
  transform-origin: top center;
}
.anim_alentours > div .anim_alentours_image {
  text-align: center;
}
.anim_alentours > div .anim_alentours_texte {
  margin-top: 20px;
  transition: all 0.6s ease;
}
@media (min-width: 1200px) {
  .anim_alentours > div .anim_alentours_texte {
    margin-top: var(--margin-30);
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}
.anim_alentours > div:hover img {
  transform: scale(0.75);
}
.anim_alentours > div:hover .anim_alentours_texte {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  height: 100%;
}
footer {
  margin: var(--size-70) var(--margin-30) var(--margin-30);
  background-color: #2E2E25;
  color: #fff;
  padding: 10px;
  padding-bottom: 0;
  border-radius: var(--border-radius-40);
}
footer a {
  color: #fff;
}
footer .titre {
  font-size: var(--size-32);
  font-weight: 600;
}
footer i {
  margin-right: 10px;
}
footer .noSpamTel {
  text-decoration: none;
}
footer .adresse > div {
  margin-bottom: 5px;
}
footer .adresse > div .logo {
  width: 150px;
  margin: 10px;
}
footer .reseau {
  margin-top: var(--margin-30);
}
footer .reseau img {
  margin: 10px;
}
footer .footer_btn {
  font-size: var(--size-32);
  font-weight: 600;
}
@media (min-width: 768px) {
  footer .footer_btn i {
    display: none;
  }
}
footer .footer_btn:not(:first-child) {
  margin-top: 25px;
}
@media (max-width: 767px) {
  footer .footer_btn {
    padding: 10px;
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 767px) {
  footer .footer_card {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
  }
  footer .footer_card > div {
    padding: 15px;
  }
  footer .footer_card ul {
    margin: 0;
  }
}
@media (min-width: 768px) {
  footer #footer .lien {
    margin-top: 145px;
  }
}
@media (min-width: 1200px) {
  footer #footer .info_pratique {
    margin-top: 145px;
  }
}
@media (min-width: 1400px) {
  footer #footer .ouverture {
    margin-top: 145px;
  }
}
footer ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}
footer .ouverture .titre:not(:first-child) {
  margin-top: 15px;
}
footer .mt25 {
  margin-top: 25px;
}
footer .carte {
  position: relative;
}
footer .carte img {
  position: absolute;
  bottom: 0;
}
footer #copy {
  font-size: 16px;
  padding: 15px 0;
}
#footer_mobile {
  font-size: 30px;
  text-align: center;
  position: fixed;
  z-index: 100000;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  #footer_mobile {
    display: none;
  }
}
#footer_mobile a:first-child {
  background-color: #A1AB76;
  text-transform: uppercase;
}
#footer_mobile a {
  color: #ffffff;
  background-color: #000000;
  padding: 10px;
  text-decoration: none;
}
.padding_image {
  padding: 15px;
}
.camping_section1 {
  background-color: #F6F2E7;
  padding: var(--size-70) var(--margin-30);
}
@media (min-width: 992px) {
  .camping_section1 {
    background-image: url("../images/fougeres-grises.png");
    background-position: right -75px top;
    background-repeat: no-repeat;
  }
}
.br-40 {
  border-radius: var(--border-radius-40);
}
.camping_section2,
.alentours_section0 {
  padding: var(--size-70) var(--margin-30);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--size-40);
}
@media (min-width: 992px) {
  .camping_section3 {
    background-image: url("../images/sac-a-dos.png"), url("../images/jumelles.png");
    background-position: left calc(100% / 12) top, right top;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) {
  .highlights {
    position: relative;
  }
  .highlights .highlights__wrapper h2 {
    line-height: 30px;
  }
  .highlights .highlights__wrapper h2 .libre_franklin {
    font-size: 30px;
    line-height: 30px;
  }
  .highlights .highlights__wrapper h2 .hello_bloomie {
    font-size: 24px;
    line-height: 30px;
  }
  .highlights .highlight--card {
    padding: 10px 0;
  }
  .highlights .highlight {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 100%;
    width: calc(50% - 16px);
    border-radius: 40px;
    background-color: #F2F0E7;
    overflow: hidden;
    transition: all 0.8s ease-out;
  }
  .highlights .highlight--2 {
    left: calc(50% + 16px);
  }
  .highlights .highlight--media .highlight--media__item {
    position: absolute;
    inset: 0;
    height: calc(100svh - 16px);
    z-index: 1;
  }
  .highlights_anim {
    position: relative;
    height: 300vh;
  }
  .highlights_anim .highlights__wrapper {
    position: sticky;
    display: block;
    height: 780px;
    top: 32px;
    margin: 32px;
    overflow: hidden;
  }
  .highlights_anim .highlights__wrapper h2 {
    line-height: 30px;
  }
  .highlights_anim .highlights__wrapper h2 .libre_franklin {
    font-size: 30px;
    line-height: 30px;
  }
  .highlights_anim .highlights__wrapper h2 .hello_bloomie {
    font-size: 24px;
    line-height: 30px;
  }
  .highlights_anim .highlight--card {
    padding: 10px 0;
  }
  .highlights_anim .highlight {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 100%;
    width: calc(50% - 16px);
    border-radius: 40px;
    background-color: #F2F0E7;
    overflow: hidden;
    transition: all 0.8s ease-out;
  }
  .highlights_anim .highlight--2 {
    left: 0;
  }
  .highlights_anim .highlight--2 {
    left: calc(50% + 16px);
  }
  .highlights_anim .highlight--3 {
    left: calc(50% + 16px);
    top: 100%;
  }
  .highlights_anim .highlight--media .highlight--media__item {
    position: absolute;
    inset: 0;
    height: calc(100svh - 16px);
    z-index: 1;
  }
  .highlights_anim .highlight--media > div:last-child {
    clip-path: inset(0% 0% 100% 0%);
    transition: clip-path 1.2s ease-out;
    z-index: 2;
  }
  .highlights_anim.step-1 .highlight--1 {
    transform: scale(0.8);
    opacity: 0;
  }
  .highlights_anim.step-1 .highlight--2 {
    left: 0;
  }
  .highlights_anim.step-1 .highlight--3 {
    top: 0;
  }
  .highlights_anim.step-1 .highlight--media > div:last-child {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .highlights .highlights__wrapper h2 {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .highlights .highlights__wrapper h2 .libre_franklin {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights .highlights__wrapper h2 .libre_franklin {
    font-size: var(--size-46);
    line-height: 66px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .highlights .highlights__wrapper h2 .hello_bloomie {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights .highlights__wrapper h2 .hello_bloomie {
    font-size: var(--size-36);
    line-height: 76px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .highlights .highlights__wrapper p.titre {
    font-size: 20px;
  }
  .highlights .highlights__wrapper p {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .highlights .highlight--card {
    padding: 15px 0;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights .highlight--card {
    padding: 70px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .highlights_anim .highlights__wrapper h2 {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .highlights_anim .highlights__wrapper h2 .libre_franklin {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights_anim .highlights__wrapper h2 .libre_franklin {
    font-size: var(--size-46);
    line-height: 66px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .highlights_anim .highlights__wrapper h2 .hello_bloomie {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights_anim .highlights__wrapper h2 .hello_bloomie {
    font-size: var(--size-36);
    line-height: 76px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .highlights_anim .highlights__wrapper p.titre {
    font-size: 20px;
  }
  .highlights_anim .highlights__wrapper p {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .highlights_anim .highlight--card {
    padding: 15px 0;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .highlights_anim .highlight--card {
    padding: 70px 0;
  }
}
.highlights .highlights__wrapper h2 {
  line-height: 30px;
}
@media (max-width: 1199px) {
  .highlights .highlights__wrapper h2 {
    margin-bottom: 15px;
  }
}
.highlights .highlights__wrapper h2 .libre_franklin {
  font-size: 30px;
  line-height: 30px;
}
@media (min-width: 1200px) {
  .highlights .highlights__wrapper h2 .libre_franklin {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (min-width: 1600px) {
  .highlights .highlights__wrapper h2 .libre_franklin {
    font-size: var(--size-46);
    line-height: 66px;
  }
}
.highlights .highlights__wrapper h2 .hello_bloomie {
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 1200px) {
  .highlights .highlights__wrapper h2 .hello_bloomie {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1600px) {
  .highlights .highlights__wrapper h2 .hello_bloomie {
    font-size: var(--size-36);
    line-height: 76px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .highlights .highlights__wrapper p.titre {
    font-size: 20px;
  }
  .highlights .highlights__wrapper p {
    font-size: 18px;
  }
}
.highlights .highlight--card {
  border-radius: 40px;
  background-color: #F2F0E7;
  overflow: hidden;
  transition: all 0.8s ease-out;
  padding: 15px;
}
@media (min-width: 992px) {
  .highlights .highlight--card {
    padding: 10px 0;
  }
}
@media (min-width: 1400px) {
  .highlights .highlight--card {
    padding: 15px 0;
  }
}
@media (min-width: 1500px) {
  .highlights .highlight--card {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .highlights .highlight--card {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .highlights .highlight--card {
    margin: 15px var(--margin-30);
  }
}
@media (max-width: 991px) {
  .highlights .highlight--media {
    margin: 15px var(--margin-30);
  }
}
@media (max-width: 991px) {
  .highlights_anim .highlight--media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 var(--margin-30);
  }
}
.camping_section4 .detail_emplacement {
  margin: 10px;
}
@media (min-width: 992px) {
  .camping_section5 {
    background-image: url("../images/oiseau.png"), url("../images/fougeres.png");
    background-position: left calc(100% / 12) top, right -50% center;
    background-repeat: no-repeat, no-repeat;
  }
}
.camping_slide {
  margin: var(--size-70) 0;
  background-color: #F2F0E7;
  padding: var(--margin-30) 0;
}
.camping_slide img {
  border-radius: var(--border-radius-40);
}
.section.activite.activites > div {
  background-image: none;
}
.service_activites p {
  margin-bottom: var(--size-70);
}
.last_section_activite {
  margin: var(--size-70) var(--margin-30);
  background: #A1AB76;
  border-radius: var(--border-radius-40);
  padding-top: 15px;
}
.last_section_activite p {
  font-size: 36px;
  line-height: 56px;
}
@media (max-width: 991px) {
  .last_section_activite p {
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .last_section_activite p {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .last_section_activite p {
    font-size: 20px;
    line-height: 24px;
  }
}
.alentours_section0 img {
  transition: transform 0.5s ease;
}
.alentours_section0:hover img:first-child {
  transform: translateX(calc(100% + var(--size-40)));
}
.alentours_section0:hover img:last-child {
  transform: translateX(calc(-100% - var(--size-40)));
}
.alentours_section1 {
  background-color: #A1AB76;
  margin: var(--size-70) var(--margin-30);
  border-radius: var(--border-radius-40);
  padding: var(--size-70) 0;
}
@media (min-width: 768px) {
  .alentours_section1 {
    background-image: url("../images/montagnes.png");
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1400px) {
  .alentours_section1 {
    background-image: url("../images/montagnes.png"), url("../images/branches.png");
    background-position: left top,
                right 150px top 150px;
    background-repeat: no-repeat, no-repeat;
  }
}
.alentours_section1 .galerie {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  gap: 20px;
  padding: var(--size-70) var(--margin-30) 0;
}
.alentours_section1 .galerie img:nth-child(1) {
  width: 36%;
}
.alentours_section1 .galerie img:nth-child(2) {
  width: 26%;
}
.alentours_section1 .galerie img:nth-child(3) {
  width: 22%;
}
.alentours_section2 .vtt {
  margin: var(--margin-30) 0;
}
.alentours_section3 {
  margin: var(--size-70) var(--margin-30);
}
@media (max-width: 991px) {
  .alentours_section3 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .alentours_section3 h2 {
    margin-left: 100px;
  }
}
@media (min-width: 992px) {
  .alentours_section3 .texte {
    border-left: 2px solid #707070;
  }
  .alentours_section3 .onMouseOut,
  .alentours_section3 .onMouseOver {
    transition: all 1s ease;
  }
  .alentours_section3 .onMouseOver {
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }
}
.alentours_section3 .img_alentours {
  padding: 5px;
  margin: var(--size-70) 0;
  display: flex;
  transition: width 1s ease;
}
@media (min-width: 576px) {
  .alentours_section3 .img_alentours {
    padding: 10px;
  }
}
.alentours_section3 .img_alentours > div {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: var(--border-radius-40);
}
.alentours_section3 .img_alentours > div img {
  visibility: hidden;
}
.alentours_section3 .img_alentours:first-child {
  width: 66.66666667%;
}
.alentours_section3 .img_alentours:last-child {
  width: 33.33333333%;
}
.alentours_section3:hover .img_alentours {
  width: 50%;
}
@media (min-width: 992px) {
  .alentours_section3:hover .onMouseOver {
    opacity: 1;
    visibility: visible;
  }
  .alentours_section3:hover .onMouseOut {
    opacity: 0;
    visibility: hidden;
  }
}
.alentours_section4 > div > div {
  padding: 10px 0;
}
@media (min-width: 576px) {
  .alentours_section4 > div > div {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .alentours_section4 > div > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .alentours_section4 > div > div {
    padding: 20px;
  }
}
.alentours_section4 > div > div > div {
  padding: 10px;
  height: 100%;
  border-radius: var(--border-radius-40);
}
@media (min-width: 768px) {
  .alentours_section4 > div > div > div {
    padding: 120px;
  }
}
@media (min-width: 992px) {
  .alentours_section4 > div > div > div {
    padding: 40px;
  }
}
.alentours_section4 > div > div:first-child > div {
  background-color: #F2F0E7;
}
.alentours_section4 > div > div:last-child > div {
  background-color: #A1AB76;
}
.alentours_section_img > div > div {
  padding: 10px 0;
}
@media (min-width: 576px) {
  .alentours_section_img > div > div {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .alentours_section_img > div > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .alentours_section_img > div > div {
    padding: 20px;
  }
}
.alentours_section5 {
  margin: var(--size-70) var(--margin-30);
}
.alentours_section5 > div {
  padding: 5px;
  transition: all 1s ease;
}
@media (min-width: 576px) {
  .alentours_section5 > div {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .alentours_section5 > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .alentours_section5 > div {
    padding: 20px;
  }
}
.alentours_section5 > div:first-child > div {
  background-color: #F2F0E7;
  border-radius: var(--border-radius-40);
  height: 100%;
  padding: var(--size-70) 0;
}
.alentours_section5 .img_alentours2 {
  height: 100%;
}
.alentours_section5 .img_alentours2 > div {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: var(--border-radius-40);
  height: 100%;
}
.alentours_section5 .img_alentours2 > div img {
  visibility: hidden;
}
@media (min-width: 1200px) {
  .alentours_section5 .onMouseOver2 {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
  .alentours_section5 .onMouseOver2:last-child {
    right: 0;
  }
  .alentours_section5:hover .onMouseOut2 {
    opacity: 0;
    visibility: hidden;
  }
  .alentours_section5:hover .onMouseOver2 {
    opacity: 1;
    visibility: visible;
  }
}
.last_section_alentours {
  margin: var(--size-70) var(--margin-30);
  background: #A1AB76;
  border-radius: var(--border-radius-40);
  padding-top: 15px;
}
@media (min-width: 992px) {
  .last_section_emplacement {
    background-image: url(../images/montagnes.png);
    background-position: center top;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1400px) {
  .last_section_emplacement {
    padding-top: 300px;
    background-image: url(../images/montagnes.png), url(../images/fougeres.png);
    background-position: left top, right -50% bottom 50%;
    background-repeat: no-repeat, no-repeat;
  }
}
.last_section_emplacement .libellule {
  position: absolute;
  right: 150px;
  bottom: 200px;
}
.last_section_emplacement .oiseau {
  position: absolute;
}
@media (max-width: 1399px) {
  .last_section_emplacement .libellule,
  .last_section_emplacement .oiseau {
    display: none;
  }
}
.marge_section {
  margin: var(--size-70) var(--margin-30);
}
.background1 {
  background-color: #F2F0E7;
}
.locatif_section1 > div > div {
  padding: 5px;
}
@media (min-width: 576px) {
  .locatif_section1 > div > div {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .locatif_section1 > div > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .locatif_section1 > div > div {
    padding: 20px;
  }
}
.locatif_section1 .background1 {
  padding: var(--size-70) 0;
}
.locatifs_chalet {
  font-size: 18px;
}
@media (max-width: 991px) {
  .locatifs_chalet {
    margin-top: calc(var(--size-70) * -1);
  }
}
@media (min-width: 992px) {
  .locatifs_chalet > div {
    margin-bottom: 50px;
  }
}
.locatifs_chalet > div > div {
  padding: 5px;
}
@media (min-width: 576px) {
  .locatifs_chalet > div > div {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .locatifs_chalet > div > div {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .locatifs_chalet > div > div {
    padding: 20px;
  }
}
.locatifs_chalet > div .background1 {
  padding: var(--size-70) var(--size-56);
  height: 100%;
}
.locatifs_chalet h2 .libre_franklin {
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 1200px) {
  .locatifs_chalet h2 .libre_franklin {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .locatifs_chalet h2 .libre_franklin {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 1400px) {
  .locatifs_chalet h2 .libre_franklin {
    font-size: 40px;
    line-height: 46px;
  }
}
.locatifs_chalet h2 .hello_bloomie {
  font-size: 22px;
  line-height: 36px;
}
@media (min-width: 1200px) {
  .locatifs_chalet h2 .hello_bloomie {
    font-size: 24px;
    line-height: 46px;
  }
}
@media (min-width: 1400px) {
  .locatifs_chalet h2 .hello_bloomie {
    font-size: 30px;
    line-height: 56px;
  }
}
.locatifs_chalet p.titre {
  font-size: 22px;
}
@media (min-width: 1200px) {
  .locatifs_chalet p.titre {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .locatifs_chalet p.titre {
    font-size: 26px;
  }
}
.locatifs_chalet .prix_btn {
  margin-top: 40px;
  font-size: 22px;
}
.locatifs_chalet .prix_btn .prix span {
  display: block;
  font-size: 14px;
}
@media (max-width: 575px) {
  .locatifs_chalet .prix_btn .btn {
    margin-top: 10px;
  }
}
.locatifs_chalet .prix_btn .btn a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #2E2E25;
  border-radius: 15px;
  text-decoration: none;
  width: 200px;
}
.locatifs_chalet .prix_btn .btn a img {
  margin-left: 5px;
  transition: margin 0.5s ease;
}
.locatifs_chalet .prix_btn .btn a:hover img {
  margin-left: 20px;
}
.last_section_locatifs {
  margin: var(--size-70) var(--margin-30);
  background: #A1AB76;
  border-radius: var(--border-radius-40);
}
.last_section_locatifs > div:first-child {
  padding: var(--margin-30) 0;
}
.location_section1 {
  background-color: #F6F2E7;
  padding: var(--size-70) var(--margin-30);
}
@media (min-width: 992px) {
  .location_section1 {
    background-image: url("../images/fougeres-grises.png");
    background-position: right -75px top;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1200px) {
  .location_section1 h2 {
    margin-top: -100px;
  }
}
.location_section2 .detail_location {
  margin: var(--size-70) 0;
}
.location_section2 .detail_location h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: libre-franklin, sans-serif;
  font-weight: 900;
}
.location_section2 .detail_location h3:not(:first-child) {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .location_section2 .detail_location h3 {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .location_section2 .detail_location h3 {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .location_section2 .detail_location h3 {
    font-size: 36px;
  }
}
.location_section2 .detail_location img {
  padding: 10px;
}
@media (max-width: 767px) {
  .location_section2 .detail_location {
    text-align: center;
  }
}
.location_section2 .prix_btn {
  font-size: 24px;
}
@media (max-width: 767px) {
  .location_section2 .prix_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .location_section2 .prix_btn > *:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .location_section2 .prix_btn > *:not(:last-child) {
    margin-right: 50px;
  }
}
.location_section2 .prix_btn .prix span {
  display: block;
  font-size: 14px;
}
.location_section2 .prix_btn a {
  font-size: 24px;
  text-shadow: 1px 1px 1px #2E2E25;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 190px;
  height: 52px;
  border-radius: 40px;
  border: 3px solid #A1AB76;
}
.location_section2 .prix_btn a.btn_tarif {
  color: #A1AB76;
}
.location_section2 .prix_btn a.btn_tarif:hover {
  background-color: #A1AB76;
  color: #fff;
}
.location_section2 .prix_btn a.btn_reservez {
  background-color: #2E2E25;
  color: #A1AB76;
}
.location_section2 .prix_btn a.btn_reservez:hover {
  background-color: #707070;
}
.contact_section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 992px) {
  .contact_section {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .contact_section {
    gap: 40px;
  }
}
.contact_section .coordonnees {
  background-color: #A1AB76;
  border-radius: var(--border-radius-40);
  padding: var(--size-70) 0;
  color: #2E2E25;
}
.contact_section .coordonnees h3 {
  font-size: 36px;
  font-weight: 900;
  font-family: libre-franklin, sans-serif;
  margin-bottom: 30px;
}
@media (min-width: 1400px) {
  .contact_section .coordonnees h3 {
    margin-bottom: 60px;
    font-size: 36px;
  }
}
.contact_section .coordonnees .reseau {
  margin-top: 60px;
}
.contact_section .coordonnees .reseau a {
  margin: 25px;
}
.contact_section .formulaire {
  background-color: #707070;
  border-radius: var(--border-radius-40);
  padding: var(--size-70) 0;
}
.contact_section .formulaire .form_grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .contact_section .formulaire .form_grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}
@media (min-width: 1400px) {
  .contact_section .formulaire .form_grid {
    column-gap: 95px;
  }
}
.contact_section .formulaire .form_grid .full {
  grid-column: 1 / -1;
}
.contact_section .formulaire .form_grid label {
  display: block;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.contact_section .formulaire .form_grid input,
.contact_section .formulaire .form_grid textarea {
  margin-top: 6px;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font: inherit;
  width: 100%;
  margin-bottom: 25px;
}
.contact_section .formulaire .form_grid textarea {
  min-height: 105px;
}
.contact_section .formulaire .form_grid .captcha {
  justify-self: center;
  margin-bottom: 25px;
}
.contact_section .formulaire .form_grid #btnSubmit {
  background-color: #A8BA0C;
  border-radius: 10px;
  border: 0;
  color: #fff;
  font-size: 20px;
  width: 300px;
  padding: 12px;
}
.success,
.error {
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #fff;
}
.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #155724;
}
.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #721c24;
}
#swiper_locatifs {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
#swiper_locatifs .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 70%;
}
#swiper_locatifs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#swiper_locatifs .swiper-slide-shadow-right,
#swiper_locatifs .swiper-slide-shadow-left {
  border-radius: var(--border-radius-40);
}
#swiper_locatifs .swiper-button {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 0.8em;
  transition: opacity 0.5s ease;
}
@media (min-width: 992px) {
  #swiper_locatifs .swiper-button {
    opacity: 0;
  }
}
#swiper_locatifs .swiper-button svg {
  width: 65%;
  height: 65%;
}
#swiper_locatifs:hover .swiper-button {
  opacity: 1;
}
.rgpd h1 {
  margin: 0 0 25px;
  font-size: 36px;
}
.rgpd h2 {
  font-size: 24px;
  margin: 20px 0;
}
.rgpd h3 {
  font-size: 20px;
  margin: 15px 0;
}
/*# sourceMappingURL=styles.css.map */