.grecaptcha-badge {
  visibility: hidden;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #b32734;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header-btn {
  background: #b32734;
  padding: 10px 20px;
  color: #FFF;
  font-weight: 600;
  border-radius: 25px;
}
.header-btn:hover {
  color: #FFF;
  text-decoration: none;
  background: #8a1e29;
}
@media screen and (max-width: 768px) {
  .header-btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.navbar-dark {
  background: transparent;
}
.navbar-dark .container {
  flex-direction: row;
  align-items: stretch;
  gap: 15px;
  padding-top: 30px;
}
.navbar-dark .container > .header-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.navbar-dark .container > .header-btn i {
  font-size: 24px;
  flex-shrink: 0;
}
.navbar-dark .container > .header-btn:hover i {
  margin-right: 7px;
}
.navbar-dark .container > .header-btn span {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.navbar-dark .container > .header-btn:hover {
  border-radius: 50px;
  width: 230px;
  padding: 0 30px;
}
.navbar-dark .container > .header-btn:hover span {
  max-width: 150px;
  opacity: 1;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .navbar-dark .container > .header-btn {
    display: none;
  }
}
.navbar-single {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 8px 40px;
  margin: 0 0 0 -30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar-single .logo {
  margin-right: 40px;
  flex-shrink: 0;
}
.navbar-single .logo img {
  height: 38px;
}
.navbar-single .menu {
  display: flex;
  flex-wrap: nowrap;
  border-top: none;
  opacity: 1;
  margin-right: auto;
}
.navbar-single .menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}
.navbar-single .menu ul li a {
  color: #FFF;
  white-space: nowrap;
  padding: 10px 15px;
}
.navbar-single .menu ul li a i.ph-caret-down {
  font-size: 12px;
  margin-left: 3px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.navbar-single .menu ul li:hover > a i.ph-caret-down {
  transform: rotate(180deg);
  opacity: 1;
}
.navbar .container .menu ul li a {
  color: #111;
  border-top: none;
}
.navbar .container .menu ul li a:hover {
  border-top: none;
}
.navbar .container .menu ul li ul {
  background: #FFF;
  border-radius: 10px;
  padding: 8px 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 240px;
}
.navbar .container .menu ul li ul:before {
  display: none;
}
.navbar .container .menu ul li ul li {
  padding: 0 8px;
  width: 100%;
}
.navbar .container .menu ul li ul li a {
  color: #1a1a1a !important;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: none;
  transition: background 0.15s ease;
}
.navbar .container .menu ul li ul li a:hover {
  background: #F5F5F5;
  color: #b32734 !important;
  border-color: transparent;
}
.navbar .container .menu ul li ul li a span {
  font-weight: 400;
  font-size: 12px;
  color: #bbb;
  margin-left: 12px;
}
.navbar .container .menu ul li ul li.sep {
  height: 1px;
  background: #EEE;
  margin: 4px 20px;
  padding: 0;
}
.navbar .container .menu ul li ul li.secondary a {
  font-weight: 500;
  font-size: 13px;
  color: #666 !important;
}
.navbar .container .menu ul li ul li.secondary a i {
  font-size: 12px;
  color: #ccc;
  transition: color 0.15s ease;
}
.navbar .container .menu ul li ul li.secondary a:hover {
  color: #b32734 !important;
}
.navbar .container .menu ul li ul li.secondary a:hover i {
  color: #b32734;
}
.navbar .container .menu ul li:hover > ul {
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .navbar-single {
    border-radius: 0;
    border: 0;
    padding: 18px 30px;
    margin: 0 -30px;
  }
  .navbar-single .menu {
    display: none;
  }
  .navbar-single .hamburger {
    display: block;
    margin-left: auto;
    right: 30px;
    top: -6px;
  }
  .navbar-dark {
    background: transparent;
  }
}
.side-navigation {
  background: #1c1e21;
  padding: 40px 35px;
  z-index: 50;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.25);
}
.side-navigation .menu {
  display: block;
  margin-bottom: 0;
}
.side-navigation .menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-navigation .menu ul > li {
  border-top: 0;
  padding: 6px 0;
}
.side-navigation .menu ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.side-navigation .menu ul > li > a i {
  font-size: 14px;
  opacity: 0.6;
}
.side-navigation .menu ul > li > a:hover,
.side-navigation .menu ul > li > a:focus-visible {
  color: #b32734;
  text-decoration: none;
}
.side-navigation .menu ul > li ul {
  padding-left: 14px;
  margin: 4px 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  gap: 0;
}
.side-navigation .menu ul > li ul li {
  padding: 2px 0;
}
.side-navigation .menu ul > li ul li:first-child {
  margin-top: 0;
}
.side-navigation .menu ul > li ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
}
.side-navigation .menu ul > li ul li a:hover,
.side-navigation .menu ul > li ul li a:focus-visible {
  color: #FFF;
}
.side-navigation .menu ul li.slide-reservation {
  border-top: 0;
  margin-top: 30px;
  padding: 15px 0 6px;
  text-align: center;
}
.side-navigation .menu ul li.slide-reservation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  background: #b32734;
  padding: 14px 36px;
  border-radius: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.25s ease;
}
.side-navigation .menu ul li.slide-reservation a:hover {
  color: #FFF;
  background: #8a1e29;
  text-decoration: none;
}
.side-navigation .menu ul li.slide-reservation a i {
  font-size: 18px;
  position: static;
  top: auto;
  margin: 0;
}
.side-navigation .menu ul li.slide-phone {
  border-top: 0;
  padding: 6px 0 15px;
  text-align: center;
}
.side-navigation .menu ul li.slide-phone a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333;
  background: #FFF;
  padding: 14px 36px;
  border-radius: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}
.side-navigation .menu ul li.slide-phone a:hover,
.side-navigation .menu ul li.slide-phone a:focus-visible {
  color: #b32734;
  background: #FFF;
  text-decoration: none;
}
.side-navigation .menu ul li.slide-phone a i {
  font-size: 18px;
  color: #b32734;
  position: static;
  top: auto;
  margin: 0;
  opacity: 1;
}
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0 50px;
  width: calc(100% - 60px);
  margin: 30px;
  background: #f9f3f3;
  border-radius: 30px;
}
.footer p {
  color: #666;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer-logo {
  height: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.footer-nav a {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  color: #555;
  transition: color 0.2s ease;
  padding: 5px 0;
}
.footer-nav a:hover {
  color: #222;
  text-decoration: none;
}
.footer-nav a:not(:first-child)::before {
  content: "\B7";
  margin: 0 15px;
  color: #BBB;
}
.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  padding: 10px 20px;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 50px;
  transition: border-color 0.2s ease;
}
.footer-btn:hover {
  border-color: #666;
  color: #222;
  text-decoration: none;
}
.footer-btn i {
  font-size: 16px;
  color: #b32734;
}
.footer-bottom {
  border-top: 1px solid #DDD;
  padding-top: 30px;
  margin-top: 40px;
  color: #666;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .copyright a {
  color: #666;
}
.bloop img {
  position: relative;
  width: 42px;
  margin-right: 2px;
  transition: 0.2s;
  opacity: 0.5;
}
.bloop:hover img {
  opacity: 1;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .footer {
    width: calc(100% - 20px);
    margin: 15px 10px;
    padding: 40px 20px 25px;
    border-radius: 20px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-logo {
    height: 40px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
    max-width: 320px;
  }
  .footer-nav a {
    font-size: 13px;
    padding: 4px 0;
  }
  .footer-nav a:not(:first-child)::before {
    margin: 0 8px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 8px;
  }
  .footer-btn {
    justify-content: center;
    font-size: 13px;
    padding: 9px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    font-size: 12px;
  }
}
.slider {
  background: #FFF;
}
.slider-split {
  display: flex;
  width: 100%;
  height: 100%;
}
.slider-content {
  width: 50%;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #EEE;
  padding: 105px 50px 60px calc((100vw - 1300px) / 2 + 15px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1399px) {
  .slider-content {
    padding-left: calc((100vw - 1100px) / 2 + 15px);
  }
}
@media screen and (max-width: 1199px) {
  .slider-content {
    padding-left: calc((100vw - 960px) / 2 + 15px);
  }
}
@media screen and (max-width: 991px) {
  .slider-content {
    padding-left: calc((100vw - 720px) / 2 + 15px);
  }
}
.slider-content h1 {
  font-size: 48px;
  font-family: "Outfit", system-ui, sans-serif;
  color: #222;
  margin-bottom: 20px;
  font-weight: bold;
}
.slider-content h1 span {
  color: #b32734;
}
.slider-content h2,
.slider-content .hero-subtitle {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  position: relative;
  margin-bottom: 10px;
  max-width: 430px;
  line-height: 26px;
}
.slider-content p#breadcrumbs,
.slider-content .breadcrumbs#breadcrumbs {
  font-size: 12px;
  margin-bottom: 15px;
  opacity: 0.5;
}
.slider-image {
  width: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-swiper .swiper-slide:after {
  display: none;
}
.hero-scrollbar {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  z-index: 10;
  transition: height 0.3s ease;
}
.hero-scrollbar:hover {
  height: 5px;
}
.hero-scrollbar .swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  cursor: grab;
}
.hero-scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}
.hero-cta-group {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.hero-cta {
  display: inline-block;
  background: #b32734;
  color: #FFF;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s ease-in-out;
}
.hero-cta:hover {
  background: #8a1e29;
  color: #FFF;
  text-decoration: none;
}
.hero-cta i {
  margin-right: 8px;
}
.hero-cta-secondary {
  background: #FFF;
  color: #333;
  border: 1px solid #DDD;
  margin-left: 10px;
}
.hero-cta-secondary:hover {
  background: #F5F5F5;
  color: #333;
  border-color: #BBB;
}
@media screen and (max-width: 768px) {
  .slider {
    height: auto !important;
    min-height: 0 !important;
  }
  .slider-split {
    flex-direction: column-reverse;
  }
  .slider-content {
    width: 100%;
    padding: 40px 20px;
  }
  .slider-content h1 {
    font-size: 32px;
  }
  .slider-content h2 {
    padding-left: 0;
    font-size: 14px;
  }
  .slider-content h2:after {
    content: none;
  }
  .slider-image {
    width: 100%;
    height: 300px;
    border-bottom-left-radius: 0;
  }
  .navbar-dark {
    background: transparent;
  }
}
.intro figure .holder {
  position: relative;
  width: 100%;
  float: left;
  display: block !important;
  transform: translate(30px, -30px);
}
.intro figure .holder img {
  width: 525px;
  border-radius: 10px;
}
.intro .content-box h2,
.intro .content-box h4 {
  display: block;
  font-size: 28px;
  font-family: "Outfit", system-ui, sans-serif;
  margin-bottom: 25px;
}
.intro .content-box h2.mt-4,
.intro .content-box h4.mt-4 {
  margin-top: 35px !important;
}
.intro .content-box h2 span,
.intro .content-box h4 span {
  color: #b32734;
}
.intro .content-box p {
  margin-bottom: 0;
}
.intro .content-box a {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
  width: 100%;
  background: #f7f2f3;
}
.intro .intro-booking {
  padding-top: 20px;
}
.intro .intro-booking .intro-booking-title {
  display: block;
  font-size: 28px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.intro .intro-booking .intro-booking-title span {
  color: #b32734;
}
.intro .intro-features {
  padding-left: 0;
  margin: 30px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.intro .intro-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid #EEE;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.intro .intro-features li:last-child {
  border-bottom: none;
}
.intro .intro-features i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(179, 39, 52, 0.1);
  color: #b32734;
  border-radius: 50%;
  font-size: 20px;
  margin: 0;
}
.icons-link-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .icons-link-section {
    padding-top: 100px;
  }
  .icons-link-section .block-link-icon {
    border-right: none;
    border-bottom: 1px solid #EEE;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.label-clevacances {
  font-size: 14px;
  color: #444;
  line-height: 40px;
}
.label-clevacances img {
  width: 50px;
  margin-right: 5px;
}
.home-logements .col-md-4 {
  margin-top: 0 !important;
}
.home-logements-intro {
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-logements-intro h2 {
  font-family: "Outfit", system-ui, sans-serif;
}
.home-discover {
  padding: 80px 0;
  margin-bottom: 0;
}
.home-discover p {
  padding-right: 0;
  margin-bottom: 40px;
}
.home-discover .content-box {
  border-radius: 12px;
  margin-bottom: 0;
  padding: 80px 50px;
}
.home-discover .content-box h2 {
  font-family: "Outfit", system-ui, sans-serif;
}
.home-discover a.hero-cta {
  position: relative;
  float: none;
  height: auto;
  line-height: normal;
  background: #FFF;
  color: #b32734;
  box-shadow: none;
  padding: 14px 32px;
  border-radius: 25px;
  font-size: 15px;
}
.home-discover a.hero-cta:hover {
  background: #F5F5F5;
  color: #b32734;
}
.home-discover .container {
  position: relative;
  z-index: 2;
}
.discover-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.discover-marquee-track {
  display: flex;
  gap: 12px;
  height: 100%;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  align-items: stretch;
  background: white;
}
.discover-marquee-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home-discover a.discover-credit {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  float: none;
  height: auto;
  line-height: 1;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  box-shadow: none;
  color: #FFF;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease;
}
.home-discover a.discover-credit:hover,
.home-discover a.discover-credit:focus {
  color: #FFF;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.65);
}
.home-discover a.discover-credit i {
  font-size: 14px;
  color: #FFF;
  opacity: 0.9;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .discover-marquee-track img {
    height: 100%;
  }
  .home-discover a.discover-credit {
    bottom: 12px;
    right: 12px;
    font-size: 11px;
    padding: 5px 12px;
  }
}
.presentation-notif {
  background: #dbedff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #09203d;
}
.presentation-notif p:last-child {
  margin-bottom: 0;
}
.presentation-notif a {
  color: #09203d;
  font-weight: 600;
  border-bottom: 1px dashed #09203d;
}
.presentation-notif a:hover {
  text-decoration: none;
  border-bottom-style: solid;
}
.block-location a {
  text-align: center;
  display: block;
  border-radius: 12px;
}
.block-location a:hover {
  text-decoration: none;
  border-color: #b32734;
}
.block-location a:hover .block-location-btn {
  background: #8e1f2a;
}
.block-location img {
  width: 100%;
  border-radius: 5px;
  max-height: 270px;
  object-fit: cover;
  min-height: 270px;
}
.block-location .block-location-content {
  padding-top: 20px;
  text-align: left;
}
.block-location .block-location-content p {
  font-size: 12px;
  margin-bottom: 5px;
  color: #222;
}
.block-location .block-location-content h3,
.block-location .block-location-content h4 {
  margin-bottom: 5px;
  font-size: 19px;
  color: #111;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: bold;
}
.block-location .block-location-content span {
  font-size: 14px;
  color: #FFF;
}
.block-location .block-location-content span i {
  color: #333;
  font-size: 80%;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .block-location img {
    border: 1px solid #DDD;
  }
  .home-logements .row.inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 calc((100vw - 100%) / 2) 10px;
  }
  .home-logements .row.inner::-webkit-scrollbar {
    display: none;
  }
  .home-logements .row.inner > .col-md-4 {
    flex: 0 0 75%;
    max-width: 75%;
    scroll-snap-align: start;
  }
  .home-logements .row.inner > .col-md-4 .block-location {
    opacity: 1;
    transform: none;
  }
}
.block-location-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 24px;
  background: #b32734;
  color: #FFF;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Outfit", system-ui, sans-serif;
  transition: 0.2s;
}
.block-link-icon {
  text-align: center;
  display: block;
  border-right: 1px solid #EEE;
}
.block-link-icon > i {
  font-size: 38px;
  position: relative;
}
.block-link-icon > i:after {
  background: #f9f1f1;
  position: absolute;
  content: '';
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
}
.block-link-icon h5 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
}
.block-link-icon .link {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 0;
}
.block-link-icon .link:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #26282b;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.25s ease-in-out;
}
.block-link-icon .link i {
  margin-left: 10px;
  display: inline-block;
  color: #933e3d;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}
.block-link-icon:hover {
  text-decoration: none;
  color: #333;
}
.block-link-icon:hover .link {
  color: #b32734;
}
.block-link-icon:hover .link:before {
  background: #b32734;
}
.linkunderline {
  display: inline-block;
  color: #26282b;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}
.linkunderline:before {
  content: "";
  width: 60px;
  height: 1px;
  background: #26282b;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.25s ease-in-out;
}
.linkunderline i {
  margin-left: 10px;
}
.linkunderline:hover {
  text-decoration: none;
  color: #222;
}
.linkunderline:hover:before {
  width: 100%;
}
.book-form input[type="text"] {
  border: 1px solid #DDD;
  padding: 25px 15px !important;
  border-radius: 2px;
}
.book-form .co-widget .co-widget-styled {
  border-radius: 2px;
  border: 1px solid #DDD;
  height: 52px;
  padding: 0 5px 0 15px;
}
.book-form .co-widget .co-widget-styled.co-widget-chevron-down:before {
  margin-top: 18px !important;
  margin-right: 10px;
}
.book-form .co-widget .co-widget-icon:not(.co-widget-service):not(.co-widget-transport):not(.co-widget-cruise) {
  color: #b32734 !important;
}
.book-form .co-widget.co-widget-vertical {
  padding: 0 20px 20px !important;
}
.book-form .co-widget select {
  min-height: 52px;
  height: 52px;
  line-height: 52px !important;
}
.book-form .co-widget input,
.book-form .co-widget select,
.book-form .co-widget button:not([class*=pika]) {
  height: 52px;
  min-height: 52px;
}
.book-form .co-widget-i-calendar {
  position: absolute;
  right: 15px;
  bottom: 19px !important;
  cursor: pointer;
}
.book-form .co-widget-btn-resume-capa {
  border: 1px solid #DDD;
  padding: 25px 15px;
  line-height: 0;
  background: #d1c0c6 !important;
  color: #b32734 !important;
}
.book-form #BtnLaunchBooking {
  background: #b32734 !important;
  border-radius: 2px;
}
.book-form.book-horizontal {
  border: 1px solid #DDD;
  background: #FFF;
  border-radius: 3px;
  padding: 3rem !important;
}
.book-form.book-horizontal .co-widget-title * {
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 22px;
  text-transform: initial;
  padding-bottom: 15px;
  color: #333;
}
.book-form.book-horizontal p {
  padding: 0 15px !important;
  font-size: 13px;
  color: #AAA;
  max-width: 900px;
}
.book-form.book-vertical {
  background: #F9F1F1;
  border-radius: 3px;
  padding: 2.5rem 1.5rem !important;
}
.book-form.book-vertical .co-widget {
  background: transparent !important;
}
.book-form.book-vertical .co-widget.co-widget-intermediate .co-widget-trip,
.book-form.book-vertical .co-widget.co-widget-intermediate .co-widget-occupancy {
  width: 100%;
}
.book-form.book-vertical .co-widget.co-widget-intermediate {
  padding: 0 !important;
}
.book-form.book-vertical .co-widget-title {
  padding-left: 0 !important;
}
.book-form.book-vertical .co-widget-title * {
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 18px;
  text-transform: initial;
  padding-bottom: 15px;
  color: #333;
}
.book-form.book-vertical .co-widget > div:not([class*=co-widget-title]):not([class*=co-widget-type]):not([class*=co-widget-container]),
.book-form.book-vertical .co-widget > .co-widget-container > div:not([class*=co-widget-title]):not([class*=co-widget-type]):not([class*=co-widget-container]) {
  padding-left: 0 !important;
}
.book-form.book-vertical p {
  padding: 0 20px !important;
  font-size: 11px;
  color: #AAA;
  max-width: 900px;
  margin-bottom: 0;
}
.book-form.book-vertical-medium {
  padding: 1.5rem !important;
}
@media screen and (max-width: 768px) {
  .book-form.book-vertical {
    padding: 1.5rem 0.5rem !important;
  }
}
@media screen and (max-width: 768px) {
  .book-form.book-vertical-medium {
    padding: 1rem 0.5rem !important;
  }
}
.book-form-notice {
  margin-top: 15px;
  font-size: 12px;
  color: #3f3f3f;
  max-width: 900px;
  margin-bottom: 0;
  line-height: 20px;
}
ul.book-form-notice {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
ul.book-form-notice li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
}
ul.book-form-notice li i {
  color: #b32734;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.calendars {
  padding: 0 !important;
}
#widget-calendar {
  top: 25%;
  position: relative;
  margin: auto;
  width: 100% !important;
}
#widget-calendar .container {
  padding: 0 !important;
}
.page-header .container p#breadcrumbs,
.page-header .container .breadcrumbs,
.page-header .container nav.breadcrumbs,
.page-header .container #breadcrumbs {
  display: block;
  font-size: 12px;
  margin-top: 30px;
  opacity: 0.5;
}
.page-header .container p#breadcrumbs a,
.page-header .container .breadcrumbs a,
.page-header .container nav.breadcrumbs a,
.page-header .container #breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.page-header .container p#breadcrumbs a:hover,
.page-header .container .breadcrumbs a:hover,
.page-header .container nav.breadcrumbs a:hover,
.page-header .container #breadcrumbs a:hover {
  color: #b32734;
  text-decoration: underline;
}
.page-header .container p i {
  margin-right: 5px;
  color: #b32734;
  font-size: 80%;
}
.page-header .container p i:not(:first-child) {
  margin-left: 15px;
}
.page-header.page-header-simple {
  background: #F5F5F5;
  height: 350px;
}
.page-header.page-header-simple .container h1 {
  font-size: 2.5vw;
}
.page-header.page-header-simple:after {
  background: transparent;
}
.logement-header {
  padding: 160px 0 50px 0;
  background: #FFF;
}
.logement-header h1 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.logement-header h1 span {
  color: #b32734;
}
.logement-header p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}
.logement-header p i {
  margin-right: 5px;
  color: #b32734;
  font-size: 80%;
}
.logement-header p i:not(:first-child) {
  margin-left: 15px;
}
.logement-header p#breadcrumbs {
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.5;
}
.logement-header .breadcrumbs,
.logement-header nav.breadcrumbs,
.logement-header #breadcrumbs {
  display: block;
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.5;
  color: #555;
}
.logement-header .breadcrumbs a,
.logement-header nav.breadcrumbs a,
.logement-header #breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.logement-header .breadcrumbs a:hover,
.logement-header nav.breadcrumbs a:hover,
.logement-header #breadcrumbs a:hover {
  color: #b32734;
  text-decoration: underline;
}
.logement-header .breadcrumbs .breadcrumb_last,
.logement-header nav.breadcrumbs .breadcrumb_last,
.logement-header #breadcrumbs .breadcrumb_last {
  color: #333;
}
.logement-header:after {
  background: transparent;
}
@media screen and (max-width: 990px) {
  .logement-header {
    padding: 120px 0 20px 0;
  }
  .logement-header h1 {
    font-size: 26px;
  }
}
.calendar-availability {
  border: 1px solid #EEE;
  padding: 30px;
  background: #FFF;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px 0px;
  overflow: visible;
  position: relative;
  z-index: 10;
}
.calendar-availability .container,
.calendar-availability .container-fluid,
.calendar-availability [class*="container"] {
  padding: 0 !important;
}
.calendar-availability h2 {
  margin-top: 0 !important;
  font-size: 22px !important;
  font-family: "Outfit", system-ui, sans-serif;
}
.calendar-availability > a.book-btn {
  background: #b32734;
  color: #FFF !important;
  font-weight: bold !important;
  display: block !important;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
}
.calendar-availability > a.book-btn:hover {
  background: #8a1e29;
}
.intro .content-box .calendar-availability a {
  display: block;
  color: #FFF;
}
.intro-booking-box {
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 15px;
  padding: 24px;
  transition: border-color 0.25s;
  margin-top: 50px !important;
}
.intro-booking-box:hover {
  border-color: #d1d5db;
}
.intro-booking-box .l3c-availability-toggle {
  margin-top: 14px;
}
.intro-booking-box .book-form-notice {
  margin-top: 16px;
}
.l3c-availability-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin: 16px auto 0;
  padding: 16px 22px;
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 15px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.l3c-availability-toggle:hover {
  border-color: #b32734;
  color: #333;
  text-decoration: none;
}
.l3c-availability-toggle:hover .l3c-availability-toggle__chevron {
  transform: translateX(3px);
}
.l3c-availability-toggle .l3c-availability-toggle__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.l3c-availability-toggle .l3c-availability-toggle__label i {
  color: #b32734;
  font-size: 1.15rem;
}
.l3c-availability-toggle .l3c-availability-toggle__chevron {
  color: #b32734;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}
.intro .book-form-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 20px 4px 0;
}
.intro .book-form-notice i {
  color: #339211;
  font-size: 16px;
  line-height: 1.55;
  flex-shrink: 0;
  top: 2px;
  position: relative;
}
[id*="modale-pax"] {
  z-index: 9999 !important;
  position: fixed !important;
}
[id*="modale-pax"] * {
  font-size: initial;
  line-height: normal;
  box-sizing: border-box;
}
[id*="elloha"] .co-widget-modale,
.co-widget-modale {
  z-index: 9999 !important;
  position: fixed !important;
}
.ui-datepicker-next:before,
.ui-datepicker-next:after,
.ui-datepicker-prev:before,
.ui-datepicker-prev:after {
  font-size: 1rem !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  align-items: center;
  display: flex;
  height: 42px !important;
  justify-content: center;
  text-align: center;
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
  border-radius: 50%;
}
.logement-section {
  padding-bottom: 100px;
}
.logement-section h2 {
  margin-top: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}
.logement-section h2 span {
  color: #b32734;
}
.logement-section h3 {
  margin-top: 50px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #b32734;
}
.logement-section .logement-presentation h3 {
  border-top: 1px solid #DDD;
  padding-top: 50px;
  margin-top: 50px;
}
@media screen and (min-width: 990px) {
  .logement-presentation {
    padding-right: 100px;
  }
}
.logement-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 80px;
}
.logement-gallery .gallery--item {
  display: block;
  overflow: hidden;
  position: relative;
}
.logement-gallery .gallery--item:first-of-type {
  grid-column: span 2;
  grid-row: span 2;
}
.logement-gallery .gallery--item:nth-child(n+6) {
  display: none;
}
.logement-gallery .gallery--item:nth-child(5) {
  position: relative;
  overflow: hidden;
}
.logement-gallery .gallery--item:nth-child(5):after {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  content: "Voir les photos";
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.logement-gallery .gallery--item:nth-child(5):hover:after {
  opacity: 1;
}
.logement-gallery .gallery--item:hover .gallery--img {
  filter: brightness(0.9);
}
.logement-gallery .gallery--img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #DDD;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .logement-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 280px;
    border-radius: 8px;
  }
  .logement-gallery .gallery--item:first-of-type {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .logement-gallery .gallery--item:nth-child(n+4) {
    display: none;
  }
}
.logement-equipements {
  column-count: 1;
  column-gap: 20px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.logement-equipements li {
  margin-bottom: 15px;
}
.logement-equipements li i {
  font-size: 18px;
  margin-right: 5px;
  position: relative;
  top: 3px;
}
@media screen and (min-width: 990px) {
  .logement-equipements {
    column-count: 3;
  }
}
@media screen and (min-width: 7680px) {
  .logement-equipements {
    column-count: 2;
  }
}
.l3c-equipements-more {
  display: none;
}
@media screen and (max-width: 768px) {
  .logement-equipements.is-collapsed li:nth-child(n+11) {
    display: none;
  }
  .l3c-equipements-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #DDD;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 0 20px;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    width: 100%;
    justify-content: center;
  }
  .l3c-equipements-more:hover,
  .l3c-equipements-more:focus-visible {
    background: #f6f6f6;
    border-color: #CCC;
  }
  .l3c-equipements-more i {
    color: #b32734;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .l3c-equipements-more[aria-expanded="true"] i {
    transform: rotate(180deg);
  }
}
.logement-tarifs .table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #DDD;
  border-radius: 12px;
  overflow: hidden;
}
.logement-tarifs .table td,
.logement-tarifs .table th {
  border-top: none;
}
.logement-tarifs .thead {
  font-weight: bold;
  font-size: 13px;
}
.logement-tarifs .logement-tarifs-options span {
  font-size: 12px;
  border: 1px solid #DDD;
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 5px;
}
.logement-tarifs h4 {
  font-weight: bold;
  font-family: "Outfit", system-ui, sans-serif;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
}
.logement-tarifs h6 {
  font-weight: bold;
  font-family: "Outfit", system-ui, sans-serif;
  margin-top: 20px;
}
.logement-tarifs p {
  font-size: 13px;
}
.logement-tarifs .logement-tarif-price {
  font-size: 18px;
  margin-bottom: 10px;
}
.logement-tarifs .logement-tarif-price strong {
  color: #b32734;
  font-size: 22px;
  font-weight: 700;
}
.logement-tarifs .logement-tarif-inclus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f6f6f6;
  border: 1px solid #EEE;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 14px;
}
.logement-tarifs .logement-tarif-inclus i {
  color: #b32734;
  font-size: 18px;
  flex-shrink: 0;
}
.logement-tarifs .logement-tarif-inclus em {
  font-style: normal;
  color: #666;
}
.logement-tarifs .logement-horaires {
  list-style: none;
  padding-left: 0;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.logement-tarifs .logement-horaires li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.logement-tarifs .logement-horaires li i {
  color: #b32734;
  font-size: 20px;
  flex-shrink: 0;
}
.logement-tarifs .logement-horaires li strong {
  font-weight: 600;
}
.logement-localisation .logement-localisation-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 15px;
  border-top: 1px solid #EEE;
  padding-top: 50px;
  margin-top: 50px;
}
.logement-localisation .logement-localisation-header h3 {
  margin-bottom: 0;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.logement-localisation #map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}
.logement-localisation .logement-map {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.logement-localisation .logement-adresse {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.logement-localisation .logement-adresse i {
  color: #b32734;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .logement-tarifs .logement-tarif-inclus {
    display: block;
  }
  .logement-localisation .logement-localisation-header {
    display: block;
  }
  .logement-localisation .logement-localisation-header h3 {
    margin-bottom: 10px;
  }
  .calendar-availability {
    margin-top: 50px;
    box-shadow: none;
  }
}
.map-marker-custom {
  width: 20px;
  height: 20px;
  background: #b32734;
  border: 3px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
}
.map-marker-custom::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(179, 39, 52, 0.25);
  animation: marker-pulse 2s ease-out infinite;
}
@keyframes marker-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.sticky-element {
  position: relative;
}
.sticky-element-content.fixed {
  top: 30px;
}
@media screen and (max-width: 990px) {
  .sticky-element-content {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-width: 2px;
  border-color: #b32734;
}
.fancybox__content {
  padding: 0;
}
.slider:has(.loisirs-hero),
.slider:has(.contact-hero) {
  height: auto !important;
  min-height: 0 !important;
}
.loisirs-hero .slider-content,
.contact-hero .slider-content {
  padding-top: 205px;
  padding-bottom: 105px;
}
@media screen and (max-width: 768px) {
  .loisirs-hero .slider-content,
  .contact-hero .slider-content,
  .boutique-hero .slider-content {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.loisirs-hero {
  min-height: 0;
}
.loisirs-section {
  padding: 60px 0 100px;
}
.loisirs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.loisirs-grid > .loisirs-card:nth-child(5),
.loisirs-grid > .loisirs-card:nth-child(6),
.loisirs-grid > .loisirs-card:nth-child(7) {
  grid-column: span 1;
}
.loisirs-grid > :nth-child(n+5):not(.loisirs-card-featured) {
  grid-column: span 1;
}
.loisirs-grid > :nth-child(5) {
  grid-column: 1 / 2;
}
.loisirs-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #DDD;
  border-radius: 12px;
  overflow: hidden;
  color: #333;
}
.loisirs-card:hover {
  text-decoration: none;
  color: #333;
}
.loisirs-card-img {
  height: 220px;
  overflow: hidden;
}
.loisirs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loisirs-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.loisirs-card-content h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #222;
}
.loisirs-card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  flex: 1;
}
.loisirs-card-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b32734;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.loisirs-card-link {
  font-size: 13px;
  color: #b32734;
  font-weight: 600;
}
.loisirs-card-link i {
  font-size: 14px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}
.loisirs-card-featured {
  grid-column: span 2;
  flex-direction: row;
}
.loisirs-card-featured .loisirs-card-img {
  width: 55%;
  height: auto;
  min-height: 320px;
}
.loisirs-card-featured .loisirs-card-content {
  width: 45%;
  padding: 50px;
  justify-content: center;
}
.loisirs-card-featured .loisirs-card-content h2 {
  font-size: 26px;
}
.loisirs-card-featured .loisirs-card-content p {
  font-size: 15px;
}
.loisirs-card-featured.reverse {
  flex-direction: row-reverse;
}
@supports (grid-template-columns: repeat(3, 1fr)) {
  .loisirs-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .loisirs-card-featured {
    grid-column: span 6;
  }
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured):nth-child(2),
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured):nth-child(3) {
    grid-column: span 3;
  }
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured):nth-child(5),
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured):nth-child(6),
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured):nth-child(7) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .loisirs-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .loisirs-card-featured,
  .loisirs-card-featured.reverse {
    flex-direction: column;
    grid-column: span 1 !important;
  }
  .loisirs-card-featured .loisirs-card-img,
  .loisirs-card-featured.reverse .loisirs-card-img {
    width: 100%;
    min-height: 200px;
    height: 200px;
  }
  .loisirs-card-featured .loisirs-card-content,
  .loisirs-card-featured.reverse .loisirs-card-content {
    width: 100%;
    padding: 25px;
  }
  .loisirs-card-featured .loisirs-card-content h2,
  .loisirs-card-featured.reverse .loisirs-card-content h2 {
    font-size: 20px;
  }
  .loisirs-card-img {
    height: 180px;
  }
  .loisirs-grid > .loisirs-card:not(.loisirs-card-featured) {
    grid-column: span 1 !important;
  }
}
.loisirs-links {
  padding-top: 60px;
  padding-bottom: 0;
  border-top: 1px solid #EEE;
  margin-top: 60px;
}
.loisirs-links h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}
.loisirs-link-block {
  display: block;
  border: 1px solid #DDD;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: #333;
}
.loisirs-link-block:hover {
  text-decoration: none;
  color: #333;
  border-color: #DDD;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}
.loisirs-link-block:hover .loisirs-link-img img {
  transform: scale(1.03);
}
.loisirs-link-block .loisirs-link-img {
  overflow: hidden;
}
.loisirs-link-block .loisirs-link-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.loisirs-link-block .loisirs-link-content {
  padding: 20px;
  text-align: center;
}
.loisirs-link-block .loisirs-link-content h3,
.loisirs-link-block .loisirs-link-content h4 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 17px;
}
.loisirs-link-url {
  font-size: 13px;
  color: #b32734;
}
@media screen and (max-width: 768px) {
  .loisirs-links .row > div {
    margin-bottom: 20px;
  }
}
.page-content {
  padding-bottom: 100px;
}
.page-content h2 {
  margin-top: 50px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}
.page-content h2 span {
  color: #b32734;
}
.page-content h3 {
  margin-top: 30px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #b32734;
}
.page-content h4 {
  margin-top: 20px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  border-bottom: 1px solid;
}
.slider:has(.boutique-hero) {
  height: auto !important;
  min-height: 0 !important;
}
.boutique-hero .slider-content {
  padding-top: 205px;
  padding-bottom: 105px;
}
.boutique-hero {
  min-height: 0;
}
.boutique-intro {
  padding: 80px 0;
}
.boutique-intro-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .boutique-intro-img {
    margin-bottom: 30px;
  }
}
.boutique-section {
  padding: 60px 0 100px;
}
.boutique-section h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}
.boutique-section h2 span {
  color: #b32734;
}
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.boutique-card {
  border: 1px solid #EEE;
  border-radius: 12px;
  overflow: hidden;
}
.boutique-card-img {
  height: 200px;
  overflow: hidden;
}
.boutique-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.boutique-card-img:hover img {
  transform: scale(1.03);
}
.boutique-card-content {
  padding: 25px;
}
.boutique-card-content h3 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.boutique-card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}
.boutique-infos-row {
  display: flex;
  gap: 25px;
}
.boutique-infos-block {
  border: 1px solid #EEE;
  border-radius: 12px;
  overflow: hidden;
}
.boutique-infos-left {
  flex: 7;
  display: flex;
}
.boutique-infos-left .boutique-map-holder {
  flex: 1;
  min-width: 220px;
}
.boutique-infos-left .boutique-map-holder .boutique-map {
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.boutique-infos-left .boutique-infos-coord {
  flex: 1;
  padding: 30px;
}
.boutique-infos-right {
  flex: 5;
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .boutique-infos-row {
    flex-direction: column;
  }
  .boutique-infos-left {
    flex-direction: column;
  }
}
.boutique-infos {
  padding: 0 0 100px;
  border-top: 1px solid #EEE;
  padding-top: 60px;
}
.boutique-infos h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.boutique-infos h2 span {
  color: #b32734;
}
.boutique-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.boutique-info-item > i {
  font-size: 22px;
  color: #b32734;
  margin-top: 2px;
}
.boutique-info-item strong {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 3px;
}
.boutique-info-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
  line-height: 22px;
}
.boutique-info-item a {
  color: #333;
  font-weight: 600;
  border-bottom: 1px dashed #DDD;
}
.boutique-info-item a:hover {
  text-decoration: none;
  color: #b32734;
  border-bottom-style: solid;
}
.boutique-horaires-table {
  width: 100%;
  max-width: 450px;
  border-collapse: collapse;
}
.boutique-horaires-table td {
  padding: 10px 15px;
  font-size: 14px;
  border-bottom: 1px solid #EEE;
}
.boutique-horaires-table td:first-child {
  font-weight: 600;
  color: #333;
}
.boutique-horaires-table td:last-child {
  color: #555;
  text-align: right;
}
.boutique-horaires-table tr.highlight td {
  color: #b32734;
  font-weight: 600;
}
.boutique-horaires-table tr.highlight td:first-child {
  color: #333;
}
.boutique-horaires-periode {
  display: inline-block;
  background: rgba(179, 39, 52, 0.1);
  color: #b32734;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.boutique-horaires-note {
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .boutique-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact-hero {
  min-height: 0;
}
.contact-adresses-section {
  padding: 0 0 80px;
}
.contact-map-holder {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  z-index: 9;
}
.contact-map-holder .contact-map {
  width: 100%;
  height: 350px;
}
.contact-adresses-row {
  display: flex;
  gap: 40px;
  margin: 30px 0 0;
}
.contact-adresses-row .contact-adresse {
  flex: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact-adresses-row {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-adresse {
  margin-bottom: 20px;
}
.contact-adresse .contact-adresse-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-adresse h2,
.contact-adresse h5 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #b32734;
  margin: 0;
}
.contact-adresse .contact-adresse-sep {
  color: #CCC;
  font-size: 18px;
  line-height: 1;
}
.contact-adresse .contact-itineraire {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #DDD;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-adresse .contact-itineraire i {
  color: #555;
  font-size: 1em;
}
.contact-adresse .contact-itineraire:hover {
  color: #b32734;
  border-bottom-color: #b32734;
  text-decoration: none;
}
.contact-adresse .contact-itineraire:hover i {
  color: #b32734;
}
.contact-adresse address {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
  line-height: 22px;
  font-style: normal;
}
.contact-form-wrapper {
  padding-top: 65px;
  margin-bottom: 60px;
}
.contact-infos-card {
  background: #b32734;
  color: #FFF;
  border: 1px solid #b32734;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(179, 39, 52, 0.15);
}
.contact-infos-card-light {
  background: #FFF;
  color: #333;
  border: 1px solid #DDD;
  box-shadow: none;
}
.contact-infos-card-title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.85;
  margin: 0 0 14px;
}
.contact-infos-card-light .contact-infos-card-title {
  color: #666;
  opacity: 1;
}
.contact-infos-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 8px;
}
.contact-infos-card-item:last-child {
  margin-bottom: 0;
}
.contact-infos-card-item i {
  color: inherit;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-infos-card-item a {
  color: inherit;
  font-weight: 600;
  border-bottom: 1px dashed currentColor;
  transition: opacity 0.2s;
}
.contact-infos-card-item a:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
}
.contact-infos-card-light .contact-infos-card-item i {
  color: #b32734;
}
.contact-infos-card-light .contact-infos-card-item a {
  color: #333;
  border-bottom-color: #DDD;
}
.contact-infos-card-light .contact-infos-card-item a:hover {
  color: #b32734;
  border-bottom-color: #b32734;
  opacity: 1;
}
.contact-soude-notice {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 22px 4px 0;
}
.contact-soude-notice a {
  color: #555;
  font-weight: 600;
  border-bottom: 1px dashed #DDD;
}
.contact-soude-notice a:hover {
  text-decoration: none;
  color: #b32734;
  border-bottom-color: #b32734;
}
.contact-form {
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 15px;
  padding: 40px;
  position: relative;
}
.contact-form .mandatory {
  font-size: 13px;
  opacity: 0.7;
  border-bottom: 1px solid #EEE;
  padding-bottom: 30px;
}
.contact-form .mandatory span {
  color: red;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 13px;
  right: 15px;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 2em 0;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 15px;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output {
  background: #fff7ed;
  color: #9a3412;
}
.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.aborted .wpcf7-response-output,
.contact-form .wpcf7 form.spam .wpcf7-response-output {
  background: #fef2f2;
  color: #991b1b;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
  background: #f0fdf4;
  color: #166534;
}
.contact-form h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  text-transform: initial;
  color: #333;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 25px;
  color: #555;
}
.contact-form input[type=submit] {
  background: #b32734 !important;
  border-radius: 50px;
  padding: 12px 28px;
  color: #FFF;
  outline: none;
  border: none;
  font-weight: 600;
  margin-top: 20px;
}
.contact-form-notice {
  font-size: 12px;
  color: #666;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .intro figure .holder {
    transform: none;
  }
  .intro figure .holder img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .intro-booking-box {
    margin-top: 30px !important;
    padding: 18px;
  }
  .contact-map-holder {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .contact-map-holder .contact-map {
    height: 240px;
  }
  .footer {
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-nav a,
  .side-navigation .menu ul li a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer-btn,
  .hero-cta,
  .block-location-btn,
  .loisirs-card-link {
    min-height: 44px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .slider-content h1,
  .slider-content .hero-subtitle,
  .slider-content h2,
  .slider-content .hero-cta-group,
  .slider-content .breadcrumbs,
  .logement-header h1,
  .logement-header > .container > p,
  .logement-header .breadcrumbs,
  .page-header-simple h1 {
    opacity: 0;
    animation: l3c-fade-up 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }
  .slider-content h1,
  .logement-header h1,
  .page-header-simple h1 {
    animation-delay: 120ms;
  }
  .slider-content .hero-subtitle,
  .slider-content h2,
  .logement-header > .container > p {
    animation-delay: 280ms;
  }
  .slider-content .hero-cta-group,
  .slider-content .breadcrumbs,
  .logement-header .breadcrumbs {
    animation-delay: 440ms;
  }
  .intro figure,
  .intro .content-box,
  .home-logements .block-location,
  .contact-adresses-section,
  .contact-infos-card,
  .contact-form,
  .loisirs-grid,
  .loisirs-links,
  .boutique-intro,
  .boutique-section,
  .boutique-infos,
  .page-content,
  .logement-gallery,
  .logement-presentation,
  .logement-tarifs,
  .logement-localisation,
  .sticky-element,
  .presentation-notif {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .intro figure.is-visible,
  .intro .content-box.is-visible,
  .home-logements .block-location.is-visible,
  .contact-adresses-section.is-visible,
  .contact-infos-card.is-visible,
  .contact-form.is-visible,
  .loisirs-grid.is-visible,
  .loisirs-links.is-visible,
  .boutique-intro.is-visible,
  .boutique-section.is-visible,
  .boutique-infos.is-visible,
  .page-content.is-visible,
  .logement-gallery.is-visible,
  .logement-presentation.is-visible,
  .logement-tarifs.is-visible,
  .logement-localisation.is-visible,
  .sticky-element.is-visible,
  .presentation-notif.is-visible {
    opacity: 1;
    transform: none;
  }
  .home-logements .row.inner > div:nth-child(2) .block-location {
    transition-delay: 120ms;
  }
  .home-logements .row.inner > div:nth-child(3) .block-location {
    transition-delay: 240ms;
  }
}
@keyframes l3c-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*# sourceMappingURL=les3conserveries.css.map */