/* SCSS PARTIALS AND GLOBALS */
/* FONTS IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/sansation");
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: min(max(1rem, 5vw), 3.75rem);
}
.site-header .site-branding,
.site-header .site-branding--desktop,
.site-header .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-header .site-branding img,
.site-header .site-branding--desktop img,
.site-header .custom-logo-link img {
  display: block;
}
.site-header .header-navigation-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.site-header .header-navigation-wrapper a {
  text-decoration: none;
}
.site-header .header-navigation-wrapper .menu {
  display: flex;
  justify-content: flex-start;
  gap: min(max(1rem, 2vw), 2rem);
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.site-header .header-navigation-wrapper .menu li {
  flex-shrink: 0;
}
.site-header .header-navigation-wrapper .menu a {
  color: #555;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.813rem, 1.2vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  white-space: nowrap;
}
.site-header .header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(max(0.75rem, 1.5vw), 1.25rem);
  margin-left: min(max(1.5rem, 4vw), 3.75rem);
  flex-shrink: 0;
}
.site-header .header-actions .btn-connexion {
  color: #01AFF6;
  background-color: rgba(1, 175, 246, 0.15);
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(0.875rem, 2vw, 1.25rem);
  font-family: "Sansation", sans-serif;
  font-size: clamp(0.813rem, 1.2vw, 0.938rem);
  font-weight: 700;
  border-radius: 1.25rem;
  white-space: nowrap;
}
.site-header .header-actions .btn-register {
  color: #ffffff;
  background-color: #01AFF6;
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(0.875rem, 2vw, 1.25rem);
  font-family: "Sansation", sans-serif;
  font-size: clamp(0.813rem, 1.2vw, 0.938rem);
  font-weight: 700;
  border-radius: 1.25rem;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .site-header {
    padding-inline: 0.5rem;
    position: relative;
  }
  .site-header .menu-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0.625rem;
  }
  .site-header .menu-toggle .hamburger-symbol {
    display: block;
  }
  .site-header .menu-toggle .hamburger-symbol .hamburger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .menu-toggle .hamburger-symbol .hamburger-icon img {
    display: block;
    width: 2.188rem;
    height: 2.188rem;
  }
  .site-header .menu-toggle .hamburger-symbol .hamburger-icon--close {
    display: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #01AFF6;
  }
  .site-header .header-navigation-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1rem;
    opacity: 0;
    transform: translateY(-0.75rem) scale(0.96);
    filter: blur(6px);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out, filter 0.28s ease-out;
    z-index: 90;
    width: 80%;
    pointer-events: none;
  }
  .site-header .header-navigation-wrapper.toggled {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
  }
  .site-header .header-navigation-wrapper .site-branding--mobile {
    display: block;
    margin: 0.75rem 0 0.25rem;
  }
  .site-header .header-navigation-wrapper .site-branding--mobile img {
    max-height: 3.75rem;
    width: auto;
  }
  .site-header .header-navigation-wrapper .main-navigation {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .site-header .header-navigation-wrapper .main-navigation .menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    width: 100%;
    margin-bottom: 3rem;
  }
  .site-header .header-navigation-wrapper .main-navigation .menu li {
    opacity: 0;
    transform: translateY(0.375rem);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }
  .site-header .header-navigation-wrapper .main-navigation .menu a {
    display: block;
    font-size: 1.125rem;
    padding: 0.625rem 0.875rem;
    background-color: #E9F9FF;
    border: 1.1px solid #01AFF6;
    border-radius: 0.438rem;
    text-align: left;
  }
  .site-header .header-navigation-wrapper .header-actions {
    margin-left: 0;
    margin-top: 0;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .site-header .header-navigation-wrapper .header-actions a {
    width: 100%;
    text-align: center;
  }
  .site-header .header-navigation-wrapper.toggled .main-navigation .menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .site-header .site-branding--desktop {
    display: block;
  }
  .site-header .site-branding--mobile {
    display: none;
  }
  .site-header .menu-toggle[aria-expanded=true] {
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1000;
  }
  .site-header .menu-toggle[aria-expanded=true] .hamburger-icon--burger {
    display: none;
  }
  .site-header .menu-toggle[aria-expanded=true] .hamburger-icon--close {
    display: inline-flex;
  }
}
@media (max-width: 500px) {
  .site-header .header-navigation-wrapper {
    width: 85%;
  }
}
@media (min-width: 993px) {
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .site-branding--desktop {
    display: block;
  }
  .site-header .site-branding--mobile {
    display: none;
  }
}

#webgl-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-section,
.about-section,
.services-section,
.pricing-section,
.fifth-section,
.sixth-section,
.seventh-section {
  perspective: 1000px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #E9F9FF;
  padding: min(max(40px, 5vw), 76px) 0 0 0;
}
.hero-section .hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-section .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  flex: 0 0 50%;
  max-width: 480px;
  position: relative;
  z-index: 10;
  margin-left: 70px;
}
.hero-section .hero-content .hero-main-title {
  margin-bottom: 15px;
}
.hero-section .hero-content .hero-main-title svg {
  height: auto;
  width: auto;
  max-width: 100%;
}
.hero-section .hero-content .hero-main-title svg .hero-path-primary,
.hero-section .hero-content .hero-main-title svg .hero-path-gray {
  stroke-width: 2px;
}
.hero-section .hero-content .hero-main-title svg .hero-path-primary {
  stroke: #01AFF6;
}
.hero-section .hero-content .hero-main-title svg .hero-path-gray {
  stroke: #555;
}
.hero-section .hero-content .hero-main-title svg .letter-e {
  transform-box: fill-box;
  transform-origin: center;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-main-title svg {
    max-width: min(400px, 60vw);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-main-title svg {
    max-width: min(300px, 70vw);
  }
}
.hero-section .hero-content .hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.625rem);
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
}
.hero-section .hero-content .hero-subtext {
  color: #272727;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .hero-section .hero-content .hero-subtext {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-subtext {
    font-size: clamp(0.813rem, 3vw, 1rem);
  }
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-section .hero-content .hero-buttons .btn-access {
  align-self: flex-start;
  padding: 12px 40px;
  font-family: "Sansation", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  border: 2px solid #000000;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-buttons .btn-access:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hero-content .hero-buttons .btn-access {
    padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.813rem, 1.5vw, 0.9375rem);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-buttons .btn-access {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.563rem, 1.5vw, 0.688rem) clamp(1.25rem, 4vw, 1.875rem);
  }
}
.hero-section .hero-content .hero-buttons .store-buttons {
  display: flex;
  gap: 12px;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store {
  display: flex;
  align-items: center;
  background-color: #000000;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store img {
  height: 24px;
  width: auto;
  margin-right: 10px;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .small-text {
  font-size: 8px;
  font-weight: 400;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .main-text {
  font-size: 14px;
  font-weight: 600;
}
.hero-section .hero-content .hero-buttons .store-buttons .btn-store:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store {
    min-width: 120px;
    padding: clamp(0.5rem, 1vw, 0.5rem) clamp(0.75rem, 1.5vw, 1rem);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store img {
    height: clamp(20px, 2.5vw, 24px);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .small-text {
    font-size: clamp(0.438rem, 1vw, 0.5rem);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .main-text {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store {
    min-width: 110px;
    padding: clamp(0.438rem, 1vw, 0.5rem) clamp(0.625rem, 2vw, 0.813rem);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store img {
    height: clamp(18px, 3vw, 20px);
    margin-right: clamp(0.438rem, 1.5vw, 0.563rem);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .small-text {
    font-size: clamp(0.375rem, 1vw, 0.438rem);
  }
  .hero-section .hero-content .hero-buttons .store-buttons .btn-store .btn-text .main-text {
    font-size: clamp(0.625rem, 1.8vw, 0.75rem);
  }
}
.hero-section .hero-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  margin-right: 0;
}
.hero-section .hero-images .right-side-image {
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-section .hero-images .right-side-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 -10px 40px rgba(0, 0, 0, 0.08));
  display: block;
}
@media (max-width: 992px) {
  .hero-section .hero-images .right-side-image img {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-images {
    height: 500px;
    margin-right: 0;
    max-width: 100%;
    justify-content: center;
  }
  .hero-section .hero-images .right-side-image {
    height: 90%;
    width: 90%;
  }
  .hero-section .hero-images .right-side-image img {
    height: auto;
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-images {
    height: 350px;
    margin-right: 0;
    max-width: 100%;
    justify-content: center;
  }
  .hero-section .hero-images .right-side-image img {
    height: 100%;
    max-width: 85%;
  }
}

@media (max-width: 1280px) {
  .hero-section .hero-container {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 992px) {
  .hero-section {
    padding: 25px 0 0 0;
    min-height: auto;
  }
  .hero-section .hero-container {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .hero-section .hero-content {
    flex: 1;
    max-width: 100%;
    margin-top: 15px;
    margin-left: min(max(20px, 5vw), 36px);
    margin-right: min(max(20px, 5vw), 36px);
    margin-bottom: clamp(4rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-section .hero-content .hero-subtext {
    margin-left: 0;
    max-width: 100%;
  }
  .hero-section .hero-content .btn-access {
    align-self: flex-start;
  }
  .hero-section .hero-images {
    width: 100%;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 25px 0 0 0;
  }
}
.about-section {
  padding: 120px 180px;
  background-color: #ffffff;
}
.about-section .about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 180px;
}
@media (min-width: 1440px) {
  .about-section .about-container {
    max-width: 1200px;
    /* Set a maximum width for the content */
    width: 100%;
    /* Ensure it takes full width up to max-width */
    margin-inline: auto;
    /* Center horizontally */
  }
}
.about-section .about-image-column {
  flex: 0 0 auto;
}
.about-section .about-image-column .iphone-swiper-wrapper {
  position: relative;
  width: auto;
  margin: 0 auto;
}
.about-section .about-image-column .iphone-swiper-wrapper .iphone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper {
  position: absolute;
  top: 10%;
  left: 11%;
  width: 78%;
  height: 80%;
  z-index: 2;
  border-radius: 35px;
  background: #ffffff;
  overflow: hidden;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper .about-iphone-pagination {
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  width: auto !important;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper .about-iphone-pagination .swiper-pagination-bullet {
  width: 13.694px;
  height: 5.477px;
  background: #D9D9D9;
  opacity: 1;
  border-radius: 2.7385px;
  transition: all 0.3s ease;
  margin: 0;
}
.about-section .about-image-column .iphone-swiper-wrapper .about-iphone-swiper .about-iphone-pagination .swiper-pagination-bullet-active {
  background: #01AFF6;
  width: 20px;
}
.about-section .about-content-column {
  flex: 1;
}
.about-section .about-content-column .about-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  padding: 8px 24px;
  border-radius: 13.211px;
  border: 0.826px solid #01AFF6;
  background: rgba(1, 175, 246, 0.05);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.about-section .about-content-column .about-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 130%;
  color: #000000;
  margin-bottom: 32px;
  margin-top: 0;
}
.about-section .about-content-column .about-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #272727;
  margin-bottom: 40px;
}
.about-section .about-content-column .features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline: 30px;
}
.about-section .about-content-column .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.about-section .about-content-column .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-content-column .features-list .feature-item .feature-text .feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 0;
}
.about-section .about-content-column .features-list .feature-item .feature-text .feature-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #6D6D6D;
  margin: 0;
}

@media (max-width: 1440px) {
  .about-section {
    padding: 100px 100px;
  }
}
@media (max-width: 992px) {
  .about-section {
    padding: min(max(60px, 8vw), 80px) min(max(20px, 4vw), 40px) min(max(60px, 8vw), 80px);
  }
  .about-section .about-container {
    flex-direction: column;
    gap: min(max(40px, 5vw), 60px);
  }
  .about-section .about-image-column {
    width: 100%;
  }
  .about-section .about-image-column .iphone-swiper-wrapper {
    width: min(240px, 70vw);
    max-width: 260px;
    margin: 0 auto;
  }
  .about-section .about-content-column {
    flex: 1;
    width: 100%;
  }
  .about-section .about-content-column .about-tag {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    padding: clamp(0.5rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
  }
  .about-section .about-content-column .about-title {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  }
  .about-section .about-content-column .about-subtext {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
  .about-section .about-content-column .features-list {
    padding-inline: min(max(8px, 3vw), 30px);
  }
  .about-section .about-content-column .features-list .feature-item {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  .about-section .about-content-column .features-list .feature-item .feature-icon {
    width: clamp(48px, 6vw, 64px);
    height: clamp(48px, 6vw, 64px);
  }
  .about-section .about-content-column .features-list .feature-item .feature-text .feature-title {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
  }
  .about-section .about-content-column .features-list .feature-item .feature-text .feature-desc {
    font-size: clamp(0.813rem, 1.2vw, 0.875rem);
  }
}
.services-section {
  padding: 52px 80px;
  background-color: #01AFF6;
}
.services-section .services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.services-section .services-header .services-tag-container {
  margin-bottom: 42px;
}
.services-section .services-header .services-tag-container .services-tag {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 14.037px;
  font-weight: 600;
  padding: 11.624px 14.852px;
  border-radius: 13.211px;
}
.services-section .services-header .services-main-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 130%;
  color: #ffffff;
  max-width: 445px;
  margin-inline: auto;
}
.services-section .container.services-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto 40px;
  padding: 20px;
  gap: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.services-section .container.services-card:last-child {
  margin-bottom: 0;
}
.services-section .container.services-card .services-card-image {
  flex: 0 0 calc(60% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 314.613px;
}
.services-section .container.services-card .services-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 13.754px;
}
.services-section .container.services-card .services-card-content {
  flex: 0 0 calc(40% - 40px);
  height: 314.613px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.services-section .container.services-card .services-card-content .services-card-title {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 19.771px;
  font-weight: 700;
  color: #263238;
  padding: 12px 20px;
  border: 1px solid #01AFF6;
  border-radius: 8px;
  margin: 0;
  text-align: center;
}
.services-section .container.services-card .services-card-content .services-repeater {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 50px;
}
.services-section .container.services-card .services-card-content .services-repeater .services-repeater-item {
  display: flex;
  align-items: center;
  gap: 12.89px;
}
.services-section .container.services-card .services-card-content .services-repeater .services-repeater-item .item-icon {
  width: 23.209px;
  height: 23.209px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.services-section .container.services-card .services-card-content .services-repeater .services-repeater-item .item-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13.754px;
  font-weight: 400;
  line-height: 18.911px;
  color: #000000;
  margin: 0;
}
.services-section .container.services-card .services-card-content .card_access_button {
  display: block;
  width: 100%;
  padding: 12.034px 4.298px;
  background-color: #ffffff;
  color: #000000;
  border: 1.179px solid #000000;
  font-family: "Sansation", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 11.553px;
  transition: all 0.3s ease;
  margin: 0;
}
.services-section .container.services-card .services-card-content .card_access_button:hover {
  background-color: #000000;
  color: #ffffff;
}
.services-section .container.services-card .services-card-content .card-store-buttons {
  display: flex;
  gap: 10px;
  margin: 0;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  padding: 10px 10.54px;
  border-radius: 6.851px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store img {
  height: 20px;
  width: auto;
  margin-right: 8px;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store .btn-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store .btn-text .small-text {
  font-size: 7px;
  font-weight: 400;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store .btn-text .main-text {
  font-size: 12px;
  font-weight: 600;
}
.services-section .container.services-card .services-card-content .card-store-buttons .btn-store:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .services-section {
    padding: 80px 40px;
  }
  .services-section .container.services-card {
    gap: 40px;
    padding: 40px;
  }
  .services-section .container.services-card .services-card-image {
    flex: 0 0 55%;
  }
  .services-section .container.services-card .services-card-content {
    flex: 0 0 45%;
  }
}
@media (max-width: 992px) {
  .services-section {
    padding: min(max(32px, 5vw), 60px) min(max(16px, 2vw), 20px) min(max(60px, 6vw), 80px);
  }
  .services-section .services-header .services-tag {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  }
  .services-section .services-header .services-main-title {
    font-size: clamp(1.75rem, 3.5vw, 2rem);
  }
  .services-section .container.services-card {
    flex-direction: column;
    padding: min(max(24px, 3vw), 30px);
    gap: min(max(24px, 3vw), 40px);
  }
  .services-section .container.services-card .services-card-image,
  .services-section .container.services-card .services-card-content {
    flex: none;
    width: 100%;
    height: auto;
  }
  .services-section .container.services-card .services-card-image {
    height: min(max(200px, 40vw), 300px);
  }
  .services-section .container.services-card .services-card-image img {
    max-height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .services-section .container.services-card .services-card-content .services-card-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 25px;
  }
  .services-section .container.services-card .services-card-content .services-repeater {
    margin: min(max(16px, 2vw), 24px) 0;
  }
}
.pricing-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.pricing-section .pricing-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.pricing-section .pricing-header .pricing-tag-container {
  margin-bottom: 25px;
}
.pricing-section .pricing-header .pricing-tag-container .pricing-tag {
  display: inline-block;
  border-radius: 12.637px;
  border: 0.79px solid #01AFF6;
  background: rgba(1, 175, 246, 0.05);
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 13.426px;
  font-weight: 600;
  line-height: 28.413px;
  padding: 0 15px;
}
.pricing-section .pricing-header .pricing-main-title {
  color: #333;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 130%;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-section .pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.pricing-section .pricing-grid .pricing-card {
  width: 361.481px;
  height: 397.778px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.pricing-section .pricing-grid .pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-section .pricing-grid .pricing-card .pricing-card-top .pricing-card-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 10px;
}
.pricing-section .pricing-grid .pricing-card .pricing-card-top .pricing-card-text {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 32.459px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.738px;
  text-align: left;
  margin: 0;
}
.pricing-section .pricing-grid .pricing-card .pricing-card-middle {
  margin-top: 17.7px;
}
.pricing-section .pricing-grid .pricing-card .pricing-card-middle .pricing-card-price {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 44.262px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: left;
  margin: 0 0 5px 0;
}
.pricing-section .pricing-grid .pricing-card .pricing-card-middle .pricing-card-subtext {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 0 0 10px 0;
  opacity: 0.9;
}
.pricing-section .pricing-grid .pricing-card .pricing-card-middle .pricing-card-divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 0 0 15px 0;
  opacity: 0.5;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-2 {
  background-image: url("../assets/images/Frame 38489 (1).png");
}
.pricing-section .pricing-grid .pricing-card.pricing-card-2 .pricing-card-middle .pricing-card-subtext {
  color: rgba(0, 0, 0, 0.8) !important;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-2 .card_access_button {
  padding: 16.296px 32.593px;
  border-radius: 8.852px;
  border: 0.738px solid #01AFF6;
  background: linear-gradient(177deg, #01AFF6 -3.59%, #01AFF6 132.6%), #01AFF6;
  box-shadow: 0 5.902px 26.557px 0 rgba(27, 34, 60, 0.16);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 17.705px;
  font-weight: 400;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-2 .card_access_button:hover {
  background: #ffffff;
  color: #01AFF6;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-3 {
  background-image: url("../assets/images/Frame 38489 (2).png");
}
.pricing-section .pricing-grid .pricing-card.pricing-card-3 .pricing-card-middle .pricing-card-subtext {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 18.61px;
  font-weight: 500;
  opacity: 1;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-3 .card_access_button {
  padding: 16.296px 32.593px;
  border-radius: 8.889px;
  border: 0.741px solid #000000;
  background: #ffffff;
  box-shadow: 0 5.926px 26.667px 0 rgba(27, 34, 60, 0.16);
  color: #000000;
  font-family: "Outfit", sans-serif;
  font-size: 17.778px;
  font-weight: 400;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-3 .card_access_button:hover {
  background: #000000;
  color: #ffffff;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-1 {
  background-image: url("../assets/images/Frame 38489.png");
}
.pricing-section .pricing-grid .pricing-card.pricing-card-1 .card_access_button {
  padding: 16.296px 32.593px;
  border-radius: 8.889px;
  border: 0.741px solid #01AFF6;
  background: #ffffff;
  box-shadow: 0 5.926px 26.667px 0 rgba(27, 34, 60, 0.16);
  color: #01AFF6;
  font-family: "Outfit", sans-serif;
  font-size: 17.778px;
  font-weight: 400;
}
.pricing-section .pricing-grid .pricing-card.pricing-card-1 .card_access_button:hover {
  background: #01AFF6;
  color: #ffffff;
}
.pricing-section .pricing-grid .pricing-card .card_access_button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: transparent;
  color: #000000;
  border: 1.5px solid #000000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: auto;
}
.pricing-section .pricing-grid .pricing-card .card_access_button:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .pricing-section {
    padding: 80px 0;
  }
  .pricing-section .pricing-grid {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .pricing-section {
    padding: min(max(60px, 6vw), 80px) 0 min(max(60px, 6vw), 80px);
  }
  .pricing-section .pricing-header .pricing-tag {
    font-size: clamp(0.75rem, 1.2vw, 0.839rem);
  }
  .pricing-section .pricing-header .pricing-main-title {
    font-size: clamp(1.75rem, 3.5vw, 2rem);
  }
  .pricing-section .pricing-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 min(max(10px, 2vw), 20px);
  }
  .pricing-section .pricing-grid .pricing-card {
    width: min(361.481px, 100%);
    min-height: 397.778px;
    height: auto;
  }
  .pricing-section .pricing-grid .pricing-card .pricing-card-top .pricing-card-icon {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
  }
  .pricing-section .pricing-grid .pricing-card .pricing-card-top .pricing-card-text {
    font-size: clamp(1.5rem, 3vw, 2.029rem);
  }
  .pricing-section .pricing-grid .pricing-card .pricing-card-middle .pricing-card-price {
    font-size: clamp(2rem, 4vw, 2.766rem);
  }
  .pricing-section .pricing-grid .pricing-card .pricing-card-middle .pricing-card-subtext {
    font-size: clamp(0.813rem, 1.2vw, 0.875rem);
  }
  .pricing-section .pricing-grid .pricing-card .card_access_button {
    font-size: clamp(0.813rem, 1.2vw, 0.875rem);
  }
}
.fifth-section {
  padding: 103px 199px 76px;
  background-color: #ffffff;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .fifth-section {
    margin-bottom: 5rem;
  }
}
.fifth-section .fifth-container {
  display: flex;
  align-items: center;
  gap: 129px;
  max-width: 1440px;
  margin: 0 auto;
}
.fifth-section .fifth-left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fifth-section .fifth-left-side .fifth-tag-container {
  margin-bottom: 60px;
}
.fifth-section .fifth-left-side .fifth-tag-container .fifth-tag {
  display: inline-block;
  padding: 10.229px 13.07px;
  background: rgba(1, 175, 246, 0.05);
  border: 0.727px solid #01AFF6;
  border-radius: 11.626px;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 12.352px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.fifth-section .fifth-left-side .fifth-main-title {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 23px 0;
  text-align: left;
}
.fifth-section .fifth-left-side .fifth-subtext {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 23px;
  text-align: left;
}
.fifth-section .fifth-left-side .fifth-repeater {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 40px 30px;
}
.fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item {
  display: flex;
  align-items: center;
  gap: 12.89px;
}
.fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item .item-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item .item-text {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 38px;
  margin: 0;
}
.fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item:nth-child(4) .item-text span {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
.fifth-section .fifth-left-side .card_access_button {
  display: inline-block;
  width: auto;
  min-width: 200px;
  padding: 12px 40px;
  border-radius: 20px;
  border: 2px solid #000000;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-family: "Sansation", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.fifth-section .fifth-left-side .card_access_button:hover {
  background-color: #000000;
  color: #ffffff;
}
.fifth-section .fifth-right-side {
  flex: 0 0 288.284px;
}
.fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper {
  position: relative;
  width: 288.284px;
  aspect-ratio: 288.284/583.975;
  margin: 0 auto;
}
.fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper .iphone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper .fifth-iphone-swiper {
  position: absolute;
  top: 2%;
  left: 5%;
  width: 90%;
  height: 96%;
  z-index: 2;
  overflow: hidden;
}
.fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper .fifth-iphone-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34.184px;
  overflow: hidden;
}
.fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper .fifth-iphone-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 34.184px;
}

@media (max-width: 1440px) {
  .fifth-section {
    padding: 80px 100px;
  }
}
@media (max-width: 1200px) {
  .fifth-section {
    padding: 60px 40px;
  }
  .fifth-section .fifth-container {
    gap: 60px;
  }
}
@media (max-width: 992px) {
  .fifth-section {
    padding: min(max(60px, 6vw), 80px) min(max(15px, 3vw), 30px) min(max(60px, 6vw), 80px);
    margin-bottom: 4rem;
  }
  .fifth-section .fifth-container {
    flex-direction: column;
    gap: min(max(32px, 4vw), 40px);
    max-width: 100%;
  }
  .fifth-section .fifth-left-side {
    align-items: flex-start;
    text-align: left;
  }
  .fifth-section .fifth-left-side .fifth-tag {
    font-size: clamp(0.688rem, 1.2vw, 0.772rem);
  }
  .fifth-section .fifth-left-side .fifth-main-title {
    text-align: left;
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  }
  .fifth-section .fifth-left-side .fifth-subtext {
    text-align: left;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
  .fifth-section .fifth-left-side .fifth-repeater {
    margin-left: 0;
  }
  .fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item {
    justify-content: flex-start;
  }
  .fifth-section .fifth-left-side .fifth-repeater .fifth-repeater-item .item-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
  .fifth-section .fifth-left-side .card_access_button {
    align-self: flex-start;
    font-size: clamp(0.875rem, 1.2vw, 0.938rem);
  }
  .fifth-section .fifth-right-side {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .fifth-section .fifth-right-side .fifth-iphone-swiper-wrapper {
    width: min(250px, 70vw);
  }
}
.sixth-section {
  padding: 120px 80px;
  background-color: #ffffff;
}
.sixth-section .sixth-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.sixth-section .sixth-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.sixth-section .sixth-header .sixth-tag-container {
  margin-bottom: 24px;
}
.sixth-section .sixth-header .sixth-tag-container .sixth-tag {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12.637px;
  border: 0.79px solid #01AFF6;
  background: rgb(235, 248, 255);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sixth-section .sixth-header .sixth-title-nav-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sixth-section .sixth-header .sixth-title-nav-wrapper .sixth-main-title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 90px 0;
}
.sixth-section .sixth-slider-container {
  position: relative;
}
.sixth-section .sixth-slider-container .swiper-button-prev,
.sixth-section .sixth-slider-container .swiper-button-next {
  position: absolute;
  top: -50px;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 20;
}
.sixth-section .sixth-slider-container .swiper-button-prev::after,
.sixth-section .sixth-slider-container .swiper-button-next::after {
  display: none;
}
.sixth-section .sixth-slider-container .swiper-button-prev:hover,
.sixth-section .sixth-slider-container .swiper-button-next:hover {
  opacity: 0.8;
}
.sixth-section .sixth-slider-container .swiper-button-prev.swiper-button-disabled,
.sixth-section .sixth-slider-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.sixth-section .sixth-slider-container .swiper-button-next {
  right: 0;
  left: auto;
}
.sixth-section .sixth-slider-container .swiper-button-prev {
  right: 65px;
  left: auto;
}
.sixth-section .sixth-slider-container .sixth-swiper {
  position: relative;
  overflow: hidden;
}
.sixth-section .sixth-slider-container .sixth-swiper .sixth-swiper-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
}
.sixth-section .sixth-slider-container .sixth-swiper .sixth-swiper-item .item-image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.sixth-section .sixth-slider-container .sixth-swiper .sixth-swiper-item .item-image-wrapper .item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sixth-section .sixth-slider-container .sixth-swiper .sixth-swiper-item .item-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: normal;
  color: #333;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 992px) {
  .sixth-section {
    padding: min(max(60px, 8vw), 120px) min(max(16px, 2vw), 20px) min(max(60px, 6vw), 80px);
    margin-block: 4rem;
  }
  .sixth-section .sixth-header {
    margin-bottom: min(max(48px, 5vw), 80px);
  }
  .sixth-section .sixth-header .sixth-tag {
    font-size: clamp(0.75rem, 1.2vw, 0.813rem);
  }
  .sixth-section .sixth-header .sixth-title-nav-wrapper .sixth-main-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    padding-right: 0;
  }
  .sixth-section .sixth-header .sixth-title-nav-wrapper .sixth-nav-wrapper {
    position: static;
    justify-content: center;
    margin-top: 30px;
    transform: none;
  }
  .sixth-section .sixth-slider-container .sixth-swiper-item .item-image-wrapper {
    height: min(max(180px, 25vw), 250px);
  }
  .sixth-section .sixth-slider-container .sixth-swiper-item .item-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
}
.seventh-section {
  padding: 20px 80px;
  background-color: #ffffff;
}
.seventh-section .seventh-container {
  max-width: 1240px;
  margin: 0 auto;
}
.seventh-section .seventh-main-title {
  color: #35332F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 80px;
  margin-top: 0;
}
.seventh-section .faq-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.seventh-section .faq-grid .faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.seventh-section .faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 3px 3px 32.742px 0 rgba(149, 149, 149, 0.25);
  padding: 30px;
  transition: all 0.3s ease;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seventh-section .faq-item .faq-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
}
.seventh-section .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 19.62px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2px;
}
.seventh-section .faq-item .faq-header .faq-icon .icon-expand-wrapper,
.seventh-section .faq-item .faq-header .faq-icon .icon-shrink-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seventh-section .faq-item .faq-header .faq-icon .icon-expand-wrapper img,
.seventh-section .faq-item .faq-header .faq-icon .icon-shrink-wrapper img {
  width: 100%;
  height: auto;
}
.seventh-section .faq-item .faq-header .faq-icon .icon-shrink-wrapper {
  display: none;
}
.seventh-section .faq-item .faq-header .faq-question {
  color: #1B1139;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}
.seventh-section .faq-item .faq-body {
  margin-top: 30px;
  padding-left: 42px;
}
.seventh-section .faq-item .faq-body .faq-answer {
  color: #363049;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150.7%;
  letter-spacing: 0.1px;
}
.seventh-section .faq-item .faq-body .faq-answer p {
  margin: 0;
  margin-bottom: 10px;
}
.seventh-section .faq-item .faq-body .faq-answer p:last-child {
  margin-bottom: 0;
}
.seventh-section .faq-item.active {
  min-height: 220px;
  justify-content: flex-start;
}
.seventh-section .faq-item.active .faq-header .faq-icon .icon-expand-wrapper {
  display: none;
}
.seventh-section .faq-item.active .faq-header .faq-icon .icon-shrink-wrapper {
  display: flex;
}

@media (max-width: 992px) {
  .seventh-section {
    padding: min(max(16px, 2vw), 20px) min(max(16px, 2vw), 20px) min(max(60px, 6vw), 80px);
  }
  .seventh-section .seventh-main-title {
    font-size: clamp(2rem, 6vw, 4.375rem);
    margin-bottom: min(max(40px, 5vw), 80px);
  }
  .seventh-section .faq-grid {
    flex-direction: column;
    gap: min(max(16px, 2vw), 20px);
  }
  .seventh-section .faq-item {
    min-height: 100px;
    padding: min(max(20px, 2.5vw), 30px);
  }
  .seventh-section .faq-item .faq-header {
    gap: min(max(16px, 2vw), 24px);
  }
  .seventh-section .faq-item .faq-header .faq-icon {
    width: clamp(16px, 1.8vw, 18px);
    height: clamp(17px, 2vw, 19.62px);
  }
  .seventh-section .faq-item .faq-header .faq-question {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
  .seventh-section .faq-item .faq-body {
    margin-top: min(max(20px, 2.5vw), 30px);
    padding-left: min(max(32px, 3vw), 42px);
  }
  .seventh-section .faq-item .faq-body .faq-answer {
    font-size: clamp(0.813rem, 1.2vw, 0.875rem);
  }
  .seventh-section .faq-item.active {
    min-height: auto;
  }
}
.inscription-page {
  position: relative;
  min-height: 100vh;
  padding: 80px 64px;
  background-image: url("../assets/images/Frame1000003283.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inscription-page > * {
  position: relative;
  z-index: 2;
}

.inscription-page-title {
  color: #000000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3.35vw, 3.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: 134%;
  margin-bottom: 66px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inscription-page-subtitle-one,
.inscription-page-subtitle-two {
  color: #01AFF6;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.85vw, 1.85rem);
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.inscription-page-subtitle-two {
  margin-top: 50px;
}

.inscription-form {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.half-width {
  flex: 1;
  min-width: calc(50% - 12px);
}
.form-group.third-width {
  flex: 1;
  min-width: calc(33.333% - 16px);
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=file] {
  width: 100%;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  border-radius: 8px;
  border: 1px solid var(--Gray-Stroke, #EBEBEB);
  background: var(--White, #FFF);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #000000;
  transition: all 0.3s ease;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=file]::-moz-placeholder {
  color: #575757;
  opacity: 0.51;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=file]::placeholder {
  color: #575757;
  opacity: 0.51;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=file]:focus {
  outline: none;
  border-color: #01AFF6;
  box-shadow: 0 0 0 3px rgba(1, 175, 246, 0.1);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.input-with-icon input {
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 24px 24px;
}
.input-with-icon img {
  display: none;
}

.input-with-icon input.has-icon-left {
  padding-left: 48px;
}

input[name=email] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2301AFF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

input[name=phone] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2301AFF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

input[name=location] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 19.35C14.0333 17.4833 15.5417 15.7875 16.525 14.2625C17.5083 12.7375 18 11.3833 18 10.2C18 8.38333 17.4208 6.89583 16.2625 5.7375C15.1042 4.57917 13.6833 4 12 4C10.3167 4 8.89583 4.57917 7.7375 5.7375C6.57917 6.89583 6 8.38333 6 10.2C6 11.3833 6.49167 12.7375 7.475 14.2625C8.45833 15.7875 9.96667 17.4833 12 19.35ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z' fill='%2301AFF6'/%3E%3C/svg%3E");
}

input[type=file] {
  padding-right: 48px;
  cursor: pointer;
  color: transparent;
}
input[type=file]::file-selector-button {
  display: none;
}

.input-with-icon:has(input[type=file]) {
  position: relative;
}
.input-with-icon:has(input[type=file]) .file-placeholder {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #575757;
  opacity: 0.51;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 60px);
}
.input-with-icon:has(input[type=file]) .file-placeholder.has-file {
  color: #000000;
  opacity: 1;
}

.input-with-icon input[type=file] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2301AFF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='17 8 12 3 7 8'%3E%3C/polyline%3E%3Cline x1='12' y1='3' x2='12' y2='15'%3E%3C/line%3E%3C/svg%3E");
  background-position: calc(100% - 12px) center;
}

.inscription-submit {
  border-radius: 12px;
  background: #0468C6;
  color: #ffffff;
  padding: 15px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-left: auto;
  display: block;
  width: 235px;
}
.inscription-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(4, 104, 198, 0.3);
}
.inscription-submit:active {
  transform: translateY(0);
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  display: none;
}
.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

@media (max-width: 1024px) {
  .form-group.third-width {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .inscription-page {
    padding: 40px 15px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .form-group.half-width,
  .form-group.third-width {
    width: 100%;
    min-width: 100%;
  }
  .inscription-page-title {
    font-size: 36px;
  }
  .inscription-page-subtitle-one,
  .inscription-page-subtitle-two {
    font-size: 20px;
    line-height: 28px;
  }
  .inscription-submit {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .inscription-page-title {
    font-size: 32px;
  }
  .inscription-page-subtitle-one,
  .inscription-page-subtitle-two {
    font-size: 18px;
    line-height: 26px;
  }
}
.site-footer {
  background: var(--bleu-gradiant, linear-gradient(252deg, #01AFF6 19.37%, #0468C6 130.37%));
  box-shadow: 55.938px 25.572px 43.152px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 80px 10px;
  color: #ffffff;
  overflow-x: hidden;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 80px;
  gap: 80px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.site-footer .footer-container .footer-middle-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 500px) {
  .site-footer .footer-container .footer-middle-columns {
    flex-direction: column;
  }
}
.site-footer .footer-container .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.site-footer .footer-container .footer-column.footer-col-1 {
  flex: 1;
  min-width: 200px;
}
.site-footer .footer-container .footer-column.footer-col-1 .footer-logo-link {
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .site-footer .footer-container .footer-column.footer-col-1 .footer-logo-link {
    margin-bottom: 0;
  }
}
.site-footer .footer-container .footer-column.footer-col-1 .footer-logo-link .footer-logo {
  width: 180px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .footer-container .footer-column.footer-col-1 .footer-subtext {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  margin-bottom: 24px;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store {
  display: flex;
  align-items: center;
  background-color: #000000;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
}
@media (max-width: 576px) {
  .site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store {
    min-width: 120px;
    padding: 6px 12px;
  }
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store img {
  height: 24px;
  width: auto;
  margin-right: 10px;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store .btn-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store .btn-text .small-text {
  font-size: 8px;
  font-weight: 400;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store .btn-text .main-text {
  font-size: 14px;
  font-weight: 600;
}
.site-footer .footer-container .footer-column.footer-col-1 .store-buttons .btn-store:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.site-footer .footer-container .footer-column.footer-col-2 .footer-title, .site-footer .footer-container .footer-column.footer-col-3 .footer-title, .site-footer .footer-container .footer-column.footer-col-4 .footer-title {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}
.site-footer .footer-container .footer-column.footer-col-2 .footer-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-container .footer-column.footer-col-2 .footer-navigation ul li {
  margin-bottom: 16px;
}
.site-footer .footer-container .footer-column.footer-col-2 .footer-navigation ul li a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s;
}
.site-footer .footer-container .footer-column.footer-col-2 .footer-navigation ul li a:hover {
  opacity: 0.8;
}
.site-footer .footer-container .footer-column.footer-col-3 .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer .footer-container .footer-column.footer-col-3 .footer-contact-list .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-container .footer-column.footer-col-3 .footer-contact-list .contact-item .contact-icon {
  width: auto;
  height: auto;
}
.site-footer .footer-container .footer-column.footer-col-3 .footer-contact-list .contact-item .contact-link {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.site-footer .footer-container .footer-column.footer-col-4 .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 27px;
}
.site-footer .footer-container .footer-column.footer-col-4 .footer-social-icons .social-icon img {
  display: block;
  height: auto;
  width: auto;
}
.site-footer .footer-container .footer-column.footer-col-4 .footer-social-icons .social-icon {
  transition: opacity 0.3s;
}
.site-footer .footer-container .footer-column.footer-col-4 .footer-social-icons .social-icon:hover {
  opacity: 0.8;
}
.site-footer .footer-bottom {
  border-top: 1px solid #ffffff;
  padding: 24px 0px;
  max-width: 1240px;
  margin: 0 auto;
}
.site-footer .footer-bottom .footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .footer-bottom-wrapper .footer-copyright,
.site-footer .footer-bottom .footer-bottom-wrapper .footer-powered {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
}
.site-footer .footer-bottom .footer-bottom-wrapper a {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}
.site-footer .footer-bottom .footer-bottom-wrapper a span {
  font-weight: 800;
}

@media (max-width: 992px) {
  .site-footer {
    padding: 30px 20px 10px;
  }
  .site-footer .footer-container {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
  }
  .site-footer .footer-container .footer-column.footer-col-1 {
    min-width: 0;
  }
  .site-footer .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 20px 15px 10px;
  }
  .site-footer .footer-container {
    gap: 20px;
  }
}
.mentions-legales-page .mentions-hero {
  background-color: #E9F9FF;
  padding: 100px 0;
  text-align: center;
}
.mentions-legales-page .mentions-hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.mentions-legales-page .mentions-hero .hero-title .text-primary {
  color: #01AFF6;
}
.mentions-legales-page .mentions-hero .hero-title .text-black {
  color: #000000;
}
.mentions-legales-page .mentions-content-section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .mentions-legales-page .mentions-content-section {
    padding: 60px 0;
  }
}
.mentions-legales-page .mentions-content-section .mentions-container {
  width: 100%;
  max-width: 1600px;
  padding: 0 300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .mentions-legales-page .mentions-content-section .mentions-container {
    padding: 0 100px;
  }
}
@media (max-width: 768px) {
  .mentions-legales-page .mentions-content-section .mentions-container {
    padding: 0 20px;
  }
}
.mentions-legales-page .mentions-content-section .mentions-content .mentions-title,
.mentions-legales-page .mentions-content-section .mentions-content h1,
.mentions-legales-page .mentions-content-section .mentions-content h2,
.mentions-legales-page .mentions-content-section .mentions-content h3,
.mentions-legales-page .mentions-content-section .mentions-content h4,
.mentions-legales-page .mentions-content-section .mentions-content h5,
.mentions-legales-page .mentions-content-section .mentions-content h6 {
  color: #01AFF6;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.mentions-legales-page .mentions-content-section .mentions-content .mentions-title:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h1:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h2:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h3:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h4:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h5:first-child,
.mentions-legales-page .mentions-content-section .mentions-content h6:first-child {
  margin-top: 0;
}
.mentions-legales-page .mentions-content-section .mentions-content h2 {
  font-size: 28px;
}
.mentions-legales-page .mentions-content-section .mentions-content h3 {
  font-size: 24px;
}
.mentions-legales-page .mentions-content-section .mentions-content .mention-text,
.mentions-legales-page .mentions-content-section .mentions-content p,
.mentions-legales-page .mentions-content-section .mentions-content li,
.mentions-legales-page .mentions-content-section .mentions-content div {
  color: #272727;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
  leading-trim: both;
  text-edge: cap;
}
.mentions-legales-page .mentions-content-section .mentions-content .mention-text:last-child,
.mentions-legales-page .mentions-content-section .mentions-content p:last-child,
.mentions-legales-page .mentions-content-section .mentions-content li:last-child,
.mentions-legales-page .mentions-content-section .mentions-content div:last-child {
  margin-bottom: 0;
}
.mentions-legales-page .mentions-content-section .mentions-content ul,
.mentions-legales-page .mentions-content-section .mentions-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.mentions-legales-page .mentions-content-section .mentions-content ul li,
.mentions-legales-page .mentions-content-section .mentions-content ol li {
  margin-bottom: 12px;
}

.conditions-page .conditions-hero {
  background-color: #E9F9FF;
  padding: 100px 0;
  text-align: center;
}
.conditions-page .conditions-hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.conditions-page .conditions-hero .hero-title .text-primary {
  color: #01AFF6;
}
.conditions-page .conditions-hero .hero-title .text-black {
  color: #000000;
}
.conditions-page .conditions-content-section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .conditions-page .conditions-content-section {
    padding: 60px 0;
  }
}
.conditions-page .conditions-content-section .conditions-container {
  width: 100%;
  max-width: 1600px;
  padding: 0 300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .conditions-page .conditions-content-section .conditions-container {
    padding: 0 100px;
  }
}
@media (max-width: 768px) {
  .conditions-page .conditions-content-section .conditions-container {
    padding: 0 20px;
  }
}
.conditions-page .conditions-content-section .conditions-content .conditions-title,
.conditions-page .conditions-content-section .conditions-content h1,
.conditions-page .conditions-content-section .conditions-content h2,
.conditions-page .conditions-content-section .conditions-content h3,
.conditions-page .conditions-content-section .conditions-content h4,
.conditions-page .conditions-content-section .conditions-content h5,
.conditions-page .conditions-content-section .conditions-content h6 {
  color: #01AFF6;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.conditions-page .conditions-content-section .conditions-content .conditions-title:first-child,
.conditions-page .conditions-content-section .conditions-content h1:first-child,
.conditions-page .conditions-content-section .conditions-content h2:first-child,
.conditions-page .conditions-content-section .conditions-content h3:first-child,
.conditions-page .conditions-content-section .conditions-content h4:first-child,
.conditions-page .conditions-content-section .conditions-content h5:first-child,
.conditions-page .conditions-content-section .conditions-content h6:first-child {
  margin-top: 0;
}
.conditions-page .conditions-content-section .conditions-content h2 {
  font-size: 28px;
}
.conditions-page .conditions-content-section .conditions-content h3 {
  font-size: 24px;
}
.conditions-page .conditions-content-section .conditions-content .conditions-text,
.conditions-page .conditions-content-section .conditions-content p,
.conditions-page .conditions-content-section .conditions-content li,
.conditions-page .conditions-content-section .conditions-content div {
  color: #272727;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
  leading-trim: both;
  text-edge: cap;
}
.conditions-page .conditions-content-section .conditions-content .conditions-text:last-child,
.conditions-page .conditions-content-section .conditions-content p:last-child,
.conditions-page .conditions-content-section .conditions-content li:last-child,
.conditions-page .conditions-content-section .conditions-content div:last-child {
  margin-bottom: 0;
}
.conditions-page .conditions-content-section .conditions-content ul,
.conditions-page .conditions-content-section .conditions-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.conditions-page .conditions-content-section .conditions-content ul li,
.conditions-page .conditions-content-section .conditions-content ol li {
  margin-bottom: 12px;
}

.privacy-page .privacy-hero {
  background-color: #E9F9FF;
  padding: 100px 0;
  text-align: center;
}
.privacy-page .privacy-hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.privacy-page .privacy-hero .hero-title .text-primary {
  color: #01AFF6;
}
.privacy-page .privacy-hero .hero-title .text-black {
  color: #000000;
}
.privacy-page .privacy-content-section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .privacy-page .privacy-content-section {
    padding: 60px 0;
  }
}
.privacy-page .privacy-content-section .privacy-container {
  width: 100%;
  max-width: 1600px;
  padding: 0 300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .privacy-page .privacy-content-section .privacy-container {
    padding: 0 100px;
  }
}
@media (max-width: 768px) {
  .privacy-page .privacy-content-section .privacy-container {
    padding: 0 20px;
  }
}
.privacy-page .privacy-content-section .privacy-content .privacy-title,
.privacy-page .privacy-content-section .privacy-content h1,
.privacy-page .privacy-content-section .privacy-content h2,
.privacy-page .privacy-content-section .privacy-content h3,
.privacy-page .privacy-content-section .privacy-content h4,
.privacy-page .privacy-content-section .privacy-content h5,
.privacy-page .privacy-content-section .privacy-content h6 {
  color: #01AFF6;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.privacy-page .privacy-content-section .privacy-content .privacy-title:first-child,
.privacy-page .privacy-content-section .privacy-content h1:first-child,
.privacy-page .privacy-content-section .privacy-content h2:first-child,
.privacy-page .privacy-content-section .privacy-content h3:first-child,
.privacy-page .privacy-content-section .privacy-content h4:first-child,
.privacy-page .privacy-content-section .privacy-content h5:first-child,
.privacy-page .privacy-content-section .privacy-content h6:first-child {
  margin-top: 0;
}
.privacy-page .privacy-content-section .privacy-content h2 {
  font-size: 28px;
}
.privacy-page .privacy-content-section .privacy-content h3 {
  font-size: 24px;
}
.privacy-page .privacy-content-section .privacy-content .privacy-text,
.privacy-page .privacy-content-section .privacy-content p,
.privacy-page .privacy-content-section .privacy-content li,
.privacy-page .privacy-content-section .privacy-content div {
  color: #272727;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
  leading-trim: both;
  text-edge: cap;
}
.privacy-page .privacy-content-section .privacy-content .privacy-text:last-child,
.privacy-page .privacy-content-section .privacy-content p:last-child,
.privacy-page .privacy-content-section .privacy-content li:last-child,
.privacy-page .privacy-content-section .privacy-content div:last-child {
  margin-bottom: 0;
}
.privacy-page .privacy-content-section .privacy-content ul,
.privacy-page .privacy-content-section .privacy-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.privacy-page .privacy-content-section .privacy-content ul li,
.privacy-page .privacy-content-section .privacy-content ol li {
  margin-bottom: 12px;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  /* Global Overflow Rule */
  width: 100%;
}
/*# sourceMappingURL=style.css.map */