/* ----------------------------------- HEADER SECTION ----------------------------------- */
.header-container {
  height: 80px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-family: "Raleway", "Lato", sans-serif;
}

.header-container button {
  font-family: "Raleway", "Lato", sans-serif;
}

.monier-logo {
  max-width: 220px;
  min-width: 200px;
  height: auto;
}

/* ----- header menus ----- */
.header-menus {
  display: none;
}

/* ----- header dropdown user infos ----- */
.dropdown {
  position: relative;
  display: flex;
  justify-content: end;
  width: 250px;
}

.desktop-dropdown-btn {
  display: none;
}

.dropdown-desktop-menu {
  display: none;
}

.dropdown.open-mobile .dropdown-mobile-menu {
  display: block;
}

.dropdown-mobile-menu {
  width: 100vw;
  height: calc(100vh - 70px);
  display: none;
  position: absolute;
  top: 48px;
  right: -16px;
  background-color: white;
  z-index: 1000;
}

.dropdown-mobile-menu-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dropdown-mobile-user-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 16px 32px;
  font-weight: bold;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  border-top: 1px solid rgb(219, 221, 222);
  border-bottom: 1px solid rgb(219, 221, 222);
}

.dropdown-mobile-user-reward-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dropdown-mobile-menu-section {
  padding: 16px 16px 16px 32px;
  font-size: clamp(1.4rem, 4vw, 1.4rem);
  text-transform: uppercase;
  color: rgb(78, 78, 78);
}

.dropdown-mobile-menu-section .current-menu {
  margin-bottom: 32px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.dropdown-mobile-menu-section a {
  display: block;
  text-decoration: none;
  margin-bottom: 32px;
  color: rgb(78, 78, 78);
}

.dropdown-mobile-nav-section-container {
  padding: 16px 16px 16px 32px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgb(219, 221, 222);
  font-size: 14px;
}

.dropdown-mobile-nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dropdown-mobile-nav-section a {
  color: rgb(78, 78, 78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

/* ----------------------------------- WELCOME SECTION ----------------------------------- */
.welcome-section-background {
  background-color: var(--primary-color);
}

.welcome-section {
  padding: 40px 16px 32px;
}

.logo-top {
  width: 220px;
  height: auto;
}

.welcome-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-text-logo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
  margin-bottom: 24px;
}

.welcome-text-logo-container h2 {
  flex: 1;
  margin: 0px;
}

.welcome-red-line-top-mobile {
  display: block;
  width: 100%;
  min-width: 100vw;
  margin: 0px 0px 0px 10px;
  padding: 0px !important;
}

.welcome-red-line-bottom-mobile {
  display: block;
  width: 100%;
  min-width: 100vw;
  margin: 0px 0px 0px -8px;
  padding: 0px !important;
}

#welcome-section-cta {
  margin-top: 32px !important;
}

/* ----------------------------------- DECLARATIONS SECTION ----------------------------------- */
.declarations-section {
  padding: 16px;
}

.declarations-section-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.double-btn-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.steps {
  display: flex;
  gap: 16px;
  margin: 24px 0px 8px;
}

.step img {
  width: 52px;
}

.step p {
  margin-top: 8px;
}

/* ----------------------------------- CAROUSEL SECTION ----------------------------------- */
.carousel-section {
  padding: 16px;
}

.carousel {
  margin-bottom: 96px;
}

.custom-prev-arrow {
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}

.custom-next-arrow {
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}

.carousel .custom-prev-arrow {
  position: absolute;
  top: 110%;
  right: 124px;
  transform: translateY(-50%);
}

.carousel .custom-next-arrow {
  position: absolute;
  top: 110%;
  right: 64px;
  transform: translateY(-50%);
}

.custom-prev-arrow:hover path,
.custom-next-arrow:hover path {
  stroke: var(--background-color);
}

.custom-prev-arrow:hover circle,
.custom-next-arrow:hover circle {
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
}

.slick-list {
  padding-left: 16px !important;
}

.slick-slide {
  margin-right: 16px;
}

.operation {
  background: white;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 264px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 4px;
}

.operation-card-img-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.operation-card-img-container picture {
  width: 100%;
  min-width: 100%;
}

.operation-card-img-container img {
  width: 100%;
  min-width: 100%;
  height: auto;
}

.operation-card-text-container {
  padding: 16px;
  cursor: pointer;
  height: 375px;
}

.operation-name {
  display: -webkit-box;
  display: box;
  display: flexbox;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 8px;
}

.operation-date {
  display: -webkit-box;
  display: box;
  display: flexbox;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.operation-description {
  font-weight: 400;
}

.operation-btn-container {
  padding: 0px 16px 16px;
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
  gap: 8px;
  cursor: pointer;
}

.operation-btn-arrow img {
  height: 20px;
  width: 20px;
}

/* ----------------------------------- ADVANTAGES SECTION ----------------------------------- */
.advantages-section {
  margin-top: 24px;
  padding: 24px 16px;
}

/* ----------------------------------- JOIN US SECTION ----------------------------------- */
.join-us-section {
  padding: 16px 16px 0px 16px;
}

.join-us-section-img {
  width: 70%;
}

/* ----------------------------------- PROGRAM SECTION ----------------------------------- */
.program-section {
  padding: 24px 16px;
}

/* ----------------------------------- HELP SECTION ----------------------------------- */
.help-section {
  padding: 24px 16px 0px;
}

.help-section-img {
  width: 70%;
}

.faq-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--background-color);
  border-radius: 2px;
  padding: 8px 16px;
  margin-top: 24px;
  max-width: 450px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-card:hover {
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.faq-left {
  display: flex;
  align-items: center;
}

.faq-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.faq-text {
  font-weight: bold;
  color: #333;
  margin: 0px;
}

/* ----------------------------------- CONTACT SAV SECTION ----------------------------------- */
.contact-section {
  font-family: "Raleway", "Lato", sans-serif;
  padding: 24px 16px;
}

.contact-section p {
  font-size: 14px;
}

.sav-phone {
  text-align: center;
}

.sav-icons-block-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 32px;
}

.sav-icons-block-container img {
  width: 80px;
  height: auto;
}

.sav-icon-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sav-icon-block p {
  margin-top: 16px;
}

/* ----------------------------------- FOOTER SECTION ----------------------------------- */
footer {
  font-family: "Raleway", "Lato", sans-serif;
  text-align: center;
  padding: 24px 16px;
}

footer a {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary-color);
  cursor: pointer;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  font-size: 14px;
  text-decoration: none;
  color: var(--primary-color);
}

.footer-container {
  display: flex;
  flex-direction: column;
}

/* ----------------------------------- FIXED SECTION ----------------------------------- */
#btn-fixed-content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.expanded-content {
  height: auto;
  background-color: var(--primary-color);
}

.data-container {
  padding: 0px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.data-content {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.data-content h3 {
  margin-bottom: 24px;
}

.level-logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vip-logo {
  max-width: 60px;
  height: auto;
}

.nb-of-declarations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.dot-container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.dot-container p {
  margin: 0px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid white;
}

.dot-red {
  background-color: red;
}

.dot-green {
  background-color: green;
}

.dot-yellow {
  background-color: yellow;
}

.nb-of-points {
  font-size: 34px;
  margin-bottom: 16px;
}
