@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
html {
  margin: 0 !important;
}

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

body {
  width: 100vw;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

h1 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 68px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-family: "Poppins", sans-serif;
  color: #333333;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-family: "Poppins", sans-serif;
  color: #333333;
  font-size: 33px;
  font-weight: 700;
  line-height: 120%;
}

p {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.button-primary {
  background-color: #007BFF;
  color: #FFFFFF;
  border: 2px solid #007BFF;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  align-self: flex-start;
}
.button-primary:hover {
  background-color: white;
  color: #007BFF;
}

.button-secondary {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.button-secondary:hover {
  background-color: #007BFF;
  color: white;
}

.link {
  color: #007BFF;
  text-decoration: underline 1px #007BFF;
  text-underline-offset: 3px;
}

.card-full-width {
  padding: 20px;
  height: 350px;
  width: 100%;
  border: 1px solid #C8C8C8;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.card-full-width img {
  height: 300px;
  width: 250px;
  min-width: 250px;
  object-fit: cover;
}
.card-full-width .card-full-width-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 100%;
}
.card-full-width .card-full-width-content p {
  text-align: justify;
}

.card-full-width-no-image {
  padding: 50px 40px;
  width: 100%;
  border: 1px solid #C8C8C8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.card-full-width-no-image p {
  text-align: justify;
}
.card-full-width-no-image h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
}
.card-full-width-no-image.faq-page .faq-page-answer {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.card-full-width-no-image.faq-page .faq-page-answer span {
  display: none;
}
.card-full-width-no-image.faq-page .link {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.card-full-width-no-image.faq-page .learn-more {
  display: none;
}

.activities-square-container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 500px);
  justify-items: stretch;
  align-items: stretch;
}
.activities-square-container .activities-square {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.activities-square-container .activities-square * {
  cursor: pointer;
}
.activities-square-container .activities-square::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.activities-square-container .activities-square:hover::before {
  opacity: 0;
}
.activities-square-container .activities-square:hover h2 {
  transform: translateY(-100%);
  opacity: 0;
}
.activities-square-container .activities-square img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.activities-square-container .activities-square h2 {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  transition: all 0.3s;
  width: 100%;
}

.wp-block-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wp-block-table table {
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  min-width: 100%;
  position: relative;
  border-spacing: 0;
  color: #4A4A4A;
}
.wp-block-table table td, .wp-block-table table th {
  padding-left: 8px;
  border: 1px solid #4A4A4A;
}
.wp-block-table table thead tr {
  height: 60px;
  background: #F5F5F5;
  font-size: 16px;
}
.wp-block-table table tbody tr {
  height: 48px;
}
.wp-block-table table tbody tr td:nth-child(1) {
  min-width: 150px;
}

.search-container {
  position: relative;
  width: 100%;
}
.search-container #search {
  width: 100%;
  height: 45px;
  border: 1px solid #C8C8C8;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #4A4A4A;
}
.search-container #clear {
  position: absolute;
  right: 10px;
  top: 50%;
  height: 25px;
  width: 25px;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

nav {
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
nav > img {
  height: 60%;
  margin: auto 0;
  cursor: pointer;
  transition: all 0.3s;
}
nav > img:hover {
  transform: translateX(5px);
}
nav #nav-cta {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
nav #nav-cta .wpml-ls-legacy-dropdown-click {
  width: auto;
}
nav #nav-cta a {
  margin: auto 0;
}
nav #nav-button {
  display: none;
}
nav #main-menu-mobile {
  display: none;
}
nav #main-menu, nav #main-menu .sub-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
nav #main-menu .menu-item, nav #main-menu .menu-item > a, nav #main-menu .sub-menu .menu-item, nav #main-menu .sub-menu .menu-item > a {
  position: relative;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
nav #main-menu .menu-item:hover, nav #main-menu .menu-item > a:hover, nav #main-menu .sub-menu .menu-item:hover, nav #main-menu .sub-menu .menu-item > a:hover {
  color: #007BFF;
}
nav #main-menu .menu-item.menu-item-has-children .sub-menu, nav #main-menu .menu-item > a.menu-item-has-children .sub-menu, nav #main-menu .sub-menu .menu-item.menu-item-has-children .sub-menu, nav #main-menu .sub-menu .menu-item > a.menu-item-has-children .sub-menu {
  padding: 30px clamp(10px, 10vw, 100px);
  position: fixed;
  top: 149px !important;
  right: 0 !important;
  width: 100vw;
  height: 200px;
  background: white;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.75s;
  overflow-y: hidden;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  border: 1px solid #ccc;
}
nav #main-menu .menu-item.menu-item-has-children .sub-menu li a, nav #main-menu .menu-item > a.menu-item-has-children .sub-menu li a, nav #main-menu .sub-menu .menu-item.menu-item-has-children .sub-menu li a, nav #main-menu .sub-menu .menu-item > a.menu-item-has-children .sub-menu li a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav #main-menu .menu-item.menu-item-has-children .sub-menu li a:hover, nav #main-menu .menu-item > a.menu-item-has-children .sub-menu li a:hover, nav #main-menu .sub-menu .menu-item.menu-item-has-children .sub-menu li a:hover, nav #main-menu .sub-menu .menu-item > a.menu-item-has-children .sub-menu li a:hover {
  color: #007BFF;
}
nav #main-menu .menu-item.menu-item-has-children .sub-menu:before, nav #main-menu .menu-item > a.menu-item-has-children .sub-menu:before, nav #main-menu .sub-menu .menu-item.menu-item-has-children .sub-menu:before, nav #main-menu .sub-menu .menu-item > a.menu-item-has-children .sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 20px;
  display: block;
  border: solid;
  border-width: 10px 10px 0;
  border-color: #3395ff transparent;
}
nav #main-menu .menu-item.menu-item-has-children:hover .sub-menu, nav #main-menu .menu-item > a.menu-item-has-children:hover .sub-menu, nav #main-menu .sub-menu .menu-item.menu-item-has-children:hover .sub-menu, nav #main-menu .sub-menu .menu-item > a.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
nav.transparent {
  background-color: transparent;
  box-shadow: none;
}
nav.transparent .menu-item, nav.transparent .menu-item > a {
  color: white !important;
}
nav.transparent .menu-item:hover, nav.transparent .menu-item > a:hover {
  color: #007BFF;
}
nav.transparent #nav-cta .wpml-ls-legacy-dropdown-click * {
  background-color: transparent;
  border: none;
}
nav.transparent ul li::after {
  filter: brightness(0) invert(1);
}
nav.transparent ul li.menu-item-has-children:before {
  background: white;
}
nav.transparent ul li.menu-item-has-children.opened:before {
  background: white;
}
nav.transparent ul li a {
  color: white;
}
nav.transparent div .button-primary {
  color: white;
  border: 2px solid white;
  background-color: transparent;
}

#homepage-header {
  position: relative;
  padding: 0 clamp(10px, 10vw, 100px);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-image: url("../assets/images/homepage-header-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#homepage-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.46) 0%, rgba(51, 51, 51, 0.28) 100%);
}
#homepage-header h1, #homepage-header p, #homepage-header .button-primary {
  z-index: 1;
}
#homepage-header p {
  color: white;
  font-size: 18px;
  font-weight: 400;
  max-width: 650px;
  line-height: 32px;
}
#homepage-header .button-primary {
  font-size: 17px;
}
#homepage-header .button-primary:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

#discover-nominingue {
  width: 100vw;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.container-split {
  width: 100vw;
  height: 450px;
  display: flex;
}
.container-split.reverse {
  flex-direction: row-reverse;
}
.container-split div:first-child {
  padding: 0 clamp(10px, 10vw, 100px);
  width: 50%;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.container-split div:last-child {
  width: 50%;
}
.container-split div:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#faq {
  padding: 50px clamp(10px, 10vw, 100px);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#faq h2 {
  margin-bottom: 50px;
}
#faq .container-faq {
  min-height: 500px;
  max-width: 100%;
  width: 800px;
  display: flex;
  flex-direction: column;
}
#faq .container-faq .faq-question {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
#faq .container-faq .faq-question .row-faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
}
#faq .container-faq .faq-question .row-faq h5 {
  font-weight: 500;
  font-size: 18px;
}
#faq .container-faq .faq-question .row-faq .icons {
  position: relative;
  background-color: white;
  height: 35px;
  width: 35px;
  min-height: 35px;
  min-width: 35px;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
#faq .container-faq .faq-question .row-faq .icons .line:first-child {
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: black;
  transition: all 0.1s ease-in-out;
}
#faq .container-faq .faq-question .row-faq .icons .line:last-child {
  position: absolute;
  width: 2px;
  height: 60%;
  background-color: black;
  transition: all 0.3s ease-in-out;
}
#faq .container-faq .faq-question .faq-answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
#faq .container-faq .faq-question .faq-answer p {
  color: #4A4A4A;
}
#faq .container-faq .faq-question hr {
  border: 0.5px solid #C8C8C8;
  margin-bottom: 30px;
}

header.page-header {
  position: relative;
  height: 550px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
header.page-header img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
header.page-header::before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 550px;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.46) 0%, rgba(51, 51, 51, 0.28) 100%);
}
header.page-header h1 {
  width: 80%;
  text-align: center;
}
header.page-header h1, header.page-header button {
  z-index: 1;
}
header.page-header .video-overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
header.page-header .video-overlay iframe {
  width: 60vw;
  max-width: 900px;
  height: 60vh;
  max-height: 500px;
  opacity: 0;
  border: none;
  transition: all 0.3s;
}
header.page-header .video-overlay svg {
  position: absolute;
  top: 20px;
  right: 20px;
  fill: white;
  height: 30px;
  width: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
header.page-header .video-overlay svg:hover {
  transform: rotate(90deg);
}
header.page-header .video-overlay.active {
  opacity: 1;
  visibility: visible;
}
header.page-header .video-overlay.active iframe {
  opacity: 1;
}
header.page-header button {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
header.page-header button svg {
  fill: white;
  height: 24px;
  transition: all 0.3s;
}
header.page-header button:hover svg {
  transform: translateX(3px);
}

section.page-content {
  margin: 0 auto;
  padding: 50px clamp(10px, 10vw, 100px);
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.page-content h2 {
  align-self: flex-start;
  margin-top: 15px;
}
section.page-content .alignLeft {
  align-self: flex-start;
  text-align: left;
}
section.page-content .row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
section.page-content .row img {
  max-width: 430px;
  max-height: 300px;
}
section.page-content .row div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.page-content ul {
  padding-left: 15px;
}
section.page-content ul li {
  color: #4A4A4A;
  font-size: 18px;
  line-height: 1.5;
}
section.page-content #contact-page-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 15px;
}
section.page-content #contact-page-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #4A4A4A;
  font-size: 18px;
  line-height: 1.5;
}
section.page-content #contact-page-list li svg {
  fill: #4A4A4A;
  height: 24px;
  min-width: 24px;
}
section.page-content #contact-page-list li a {
  color: #4A4A4A;
  text-decoration: none;
  transition: all 0.3s;
}
section.page-content #contact-page-list li a:hover {
  color: #007BFF;
  transform: translateX(3px);
}
section.page-content .google-map {
  width: 100%;
  height: 500px;
}
section.page-content figure {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section.page-content figure div iframe {
  width: 60vw;
  max-width: 900px;
  height: 500px;
}
section.page-content .wp-block-image {
  width: 100%;
}
section.page-content .wp-block-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
section.page-content .image-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
section.page-content .image-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 500px));
  justify-content: center;
  gap: 30px;
}
.cards-container .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 45px;
  gap: 25px;
  border: 1px solid #C8C8C8;
  transition: all 0.3s;
}
.cards-container .card:hover {
  background-color: #F5F5F5;
}
.cards-container .card img {
  align-self: flex-start;
}
.cards-container .card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.swiper.simple-image-slider {
  height: 600px;
  width: 100%;
  position: relative;
}
.swiper.simple-image-slider .custom-nav {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.swiper.simple-image-slider .custom-nav button.prev {
  width: 50%;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: w-resize;
}
.swiper.simple-image-slider .custom-nav button.next {
  width: 50%;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: url("../assets/svg/arrow-right.svg"), e-resize;
}
.swiper.simple-image-slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.redirection {
  height: 400px;
  width: 100vw;
  display: flex;
}
.redirection .redirection-prev {
  padding: 0 30px;
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  position: relative;
  width: 50%;
  height: 100%;
}
.redirection .redirection-prev img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.redirection .redirection-prev::after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.46) 0%, rgba(51, 51, 51, 0.28) 100%);
}
.redirection .redirection-prev h2, .redirection .redirection-prev a {
  text-align: center;
  align-self: center;
  color: white;
  z-index: 1;
}
.redirection .redirection-prev h2 {
  text-transform: uppercase;
}
.redirection .redirection-prev a {
  border: white 2px solid;
}
.redirection .redirection-prev a:hover {
  background-color: white;
  color: #007BFF;
}
.redirection .redirection-next {
  padding: 0 30px;
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 50%;
  height: 100%;
}
.redirection .redirection-next::after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.46) 0%, rgba(51, 51, 51, 0.28) 100%);
}
.redirection .redirection-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.redirection .redirection-next h2, .redirection .redirection-next a {
  text-align: center;
  align-self: center;
  color: white;
  z-index: 4;
}
.redirection .redirection-next h2 {
  text-transform: uppercase;
}
.redirection .redirection-next a {
  border: white 2px solid;
}
.redirection .redirection-next a:hover {
  background-color: white;
  color: #007BFF;
}

section.newsletter {
  background-color: #F5F5F5;
  width: 100vw;
  padding: 50px clamp(10px, 10vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
section.newsletter p {
  max-width: 700px;
  text-align: center;
}
section.newsletter .column {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.newsletter .column p {
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: crimson;
  padding-top: 5px;
  visibility: hidden;
  transition: all 0.3s;
}
section.newsletter .column p.invalid {
  visibility: visible;
}
section.newsletter .column .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
section.newsletter .column .row input {
  position: relative;
  height: 45px;
  width: 80%;
  border: 1px solid #C8C8C8;
  border-radius: 0;
  padding-left: 10px;
  font-size: 16px;
  outline: none;
}
section.newsletter .column .row input::placeholder {
  color: #C8C8C8;
}
section.newsletter .column .row .button-secondary {
  height: 45px;
  width: 20%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  width: 100vw;
}
footer #footer-informations {
  padding: 50px clamp(10px, 10vw, 100px);
  width: 100%;
  background-color: #F5F5F5;
  display: flex;
  justify-content: space-between;
}
footer #footer-informations #footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
footer #footer-informations #footer-contact img {
  height: 85px;
  transform: translateX(-15px);
}
footer #footer-informations #footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer #footer-informations #footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer #footer-informations #footer-contact ul li svg {
  height: 25px;
  fill: #4A4A4A;
}
footer #footer-informations #footer-contact ul li a {
  text-decoration: none;
  color: #4A4A4A;
  transition: all 0.3s;
}
footer #footer-informations #footer-contact ul li a:hover {
  color: #007BFF;
}
footer #footer-informations #footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer #footer-informations #footer-links ul {
  list-style: none;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer #footer-informations #footer-links ul li h5 {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;
}
footer #footer-informations #footer-links ul li a {
  font-size: 16px;
  color: #4A4A4A;
  text-decoration: none;
  transition: all 0.3s;
}
footer #footer-informations #footer-links ul li a:hover {
  color: #007BFF;
}
footer #footer-informations #footer-links .row {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer #footer-informations #footer-links .row svg {
  fill: #4A4A4A;
  height: 30px;
  transition: all 0.3s;
  cursor: pointer;
}
footer #footer-informations #footer-links .row svg:hover {
  fill: #007BFF;
}
footer #footer-copyright {
  padding: 0 clamp(10px, 10vw, 100px);
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer #footer-copyright p {
  color: #4A4A4A;
  font-size: 16px;
}

.checklist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.checklist div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.checklist div ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist div ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.checklist div ul li input {
  height: 20px;
  min-height: 20px;
  width: 20px;
  min-width: 20px;
  border: 1px solid #4A4A4A;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}
.checklist div ul li span {
  font-size: 16px;
  color: #4A4A4A;
}
.checklist div ul li span.checked {
  text-decoration: line-through;
}

.grecaptcha-badge {
  visibility: hidden;
}

#staff-main {
  width: 100vw;
  padding: 50px clamp(10px, 10vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#staff-main img {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
}

@media (max-width: 1240px) {
  #camp_map {
    width: 100%;
    max-width: 776px;
  }
  #camp_map img {
    width: 100%;
  }
  nav {
    padding: 0 20px;
    position: fixed;
  }
  nav #main-menu {
    display: none;
  }
  nav img {
    display: none;
  }
  nav #nav-cta .wpml-ls-legacy-dropdown-click {
    display: none;
  }
  nav #main-menu-mobile {
    height: calc(100vh - 80px);
    width: 100vw;
    background-color: white;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    list-style: none;
    overflow-y: scroll;
  }
  nav #main-menu-mobile > li.menu-item {
    padding: 20px 20px;
    position: relative;
    width: 100%;
    border-top: 1px solid #C8C8C8;
    transition: all 0.3s;
    cursor: pointer;
  }
  nav #main-menu-mobile > li.menu-item:hover {
    background-color: #F5F5F5;
  }
  nav #main-menu-mobile > li.menu-item > a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu {
    overflow: hidden;
    max-height: 0;
    width: 100%;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu li.menu-item {
    padding: 20px 20px;
    border-bottom: 1px solid #C8C8C8;
    width: 100%;
    cursor: pointer;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu li.menu-item:first-child {
    border-top: 1px solid #C8C8C8;
    margin-top: 20px;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu li.menu-item:last-child {
    border-bottom: none;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu li.menu-item:hover a {
    color: #007BFF;
  }
  nav #main-menu-mobile > li.menu-item ul.sub-menu li.menu-item a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s;
  }
  nav #main-menu-mobile > li.menu-item.active {
    padding-bottom: 0;
    background-color: #F5F5F5;
  }
  nav #main-menu-mobile > li.menu-item.active ul.sub-menu {
    max-height: none;
    transition: all 0.3s ease-in-out;
  }
  nav #nav-button {
    display: flex;
    height: 25px;
    width: 35px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  nav #nav-button .line {
    height: 3px;
    width: 100%;
    background-color: #333333;
    transition: all 0.3s ease-in-out;
    border-radius: 1px;
  }
  nav.opened #main-menu-mobile {
    transform: translateX(0);
  }
  nav.opened #nav-button .line:nth-child(2) {
    opacity: 0;
  }
  nav.opened #nav-button .line:first-child {
    transform: rotate(45deg) translate(5px, 10px);
  }
  nav.opened #nav-button .line:last-child {
    transform: rotate(-45deg) translate(5px, -10px);
  }
  nav.transparent #nav-button .line {
    background-color: white;
  }
  section.page-content figure {
    align-items: initial;
  }
}
@media (max-width: 850px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-family: "Poppins", sans-serif;
    color: #333333;
    font-size: 33px;
    font-weight: 700;
    line-height: 120%;
  }
  p {
    font-size: 16px;
  }
  .button-primary {
    font-size: 16px;
  }
  #homepage-header {
    padding: 0 20px;
    gap: 30px;
  }
  #homepage-header .button-primary {
    font-size: 16px;
  }
  #homepage-header .button-primary:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }
  header.page-header .video-overlay iframe {
    width: 95vw;
    max-width: 900px;
    height: 60vh;
    max-height: 500px;
    opacity: 0;
    border: none;
    transition: all 0.3s;
  }
  section.page-content {
    padding: 50px 20px;
  }
  section.page-content > p {
    text-align: justify;
  }
  section.page-content ul li {
    font-size: 16px;
  }
  section.page-content figure div {
    width: 100%;
  }
  section.page-content figure div iframe {
    width: 100%;
    height: 300px;
  }
  section.page-content #contact-page-list {
    padding-left: 0;
  }
  section.page-content #contact-page-list li {
    font-size: 16px;
  }
  .card-full-width-no-image {
    padding: 25px 20px;
  }
  .activities-square-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(15, 300px);
  }
  .activities-square-container .activities-square {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .activities-square-container .activities-square * {
    cursor: pointer;
  }
  .activities-square-container .activities-square::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.4;
    z-index: 1;
    transition: all 0.3s;
    cursor: pointer;
  }
  .activities-square-container .activities-square:hover::before {
    opacity: 0;
  }
  .activities-square-container .activities-square:hover h2 {
    transform: translateY(-100%);
    opacity: 0;
  }
  .activities-square-container .activities-square img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .activities-square-container .activities-square h2 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    transition: all 0.3s;
    width: 100%;
  }
  .card-full-width {
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .card-full-width .card-full-width-content {
    text-align: center;
  }
  .redirection {
    height: auto;
    flex-direction: column;
  }
  .redirection .redirection-prev {
    padding: 0 20px;
    width: 100%;
    height: 300px;
  }
  .redirection .redirection-next {
    padding: 0 20px;
    width: 100%;
    height: 300px;
  }
  .container-split {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .container-split.reverse {
    flex-direction: column-reverse;
  }
  .container-split div:first-child {
    padding: 30px 20px;
    width: 100%;
    align-items: center;
  }
  .container-split div:first-child h2 {
    text-align: center;
  }
  .container-split div:last-child {
    width: 100%;
  }
  .container-split div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #discover-nominingue {
    padding: 0 20px;
  }
  #faq {
    padding: 50px 20px;
  }
  #faq h2 {
    text-align: center;
  }
  section.newsletter {
    padding: 50px 20px;
  }
  section.newsletter h3 {
    text-align: center;
  }
  section.newsletter p {
    text-align: center;
  }
  section.newsletter .column {
    width: 100%;
  }
  section.newsletter .column .row {
    flex-direction: column;
    gap: 15px;
  }
  section.newsletter .column .row input {
    position: relative;
    height: 45px;
    width: 100%;
    border: 1px solid #C8C8C8;
  }
  section.newsletter .column .row input::placeholder {
    color: #C8C8C8;
  }
  section.newsletter .column .row .button-secondary {
    width: auto;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .cards-container {
    grid-template-columns: repeat(1, minmax(300px, 100%));
  }
  footer #footer-informations {
    padding: 20px 20px;
    flex-direction: column;
    gap: 30px;
  }
  footer #footer-informations #footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  footer #footer-informations #footer-contact img {
    height: 65px;
    transform: translateX(0);
  }
  footer #footer-informations #footer-contact ul {
    gap: 10px;
    align-items: center;
  }
  footer #footer-informations #footer-contact ul li svg {
    display: none;
  }
  footer #footer-informations #footer-contact ul li a {
    text-align: center;
  }
  footer #footer-informations #footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  footer #footer-informations #footer-links ul {
    text-align: center;
    gap: 10px;
  }
  footer #footer-informations #footer-links ul li h5 {
    font-size: 16px;
    padding-bottom: 5px;
  }
  footer #footer-informations #footer-links .row {
    margin-bottom: 20px;
    justify-content: center;
  }
  footer #footer-copyright {
    padding: 10px 20px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  footer #footer-copyright p {
    text-align: center;
  }
  #staff-main {
    padding: 50px 20px;
  }
  #staff-main img {
    align-self: center;
  }
}

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