@import url('https://fonts.cdnfonts.com/css/recoleta');
@import url('https://fonts.cdnfonts.com/css/chillax');

.Hero_hero__Z352h {
  min-height: 100vh;
  background-image: url('/Assets/bg-image-rays.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
 
}

/* .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, 
    transparent 0%,
    rgba(32, 178, 170, 0.3) 40%,
    rgba(0, 100, 100, 0.6) 70%,
    rgba(32, 178, 170, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
  
} */

.Hero_hero-container__fTZGL {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex-direction: row; 
  flex-wrap: wrap;
}

.Hero_hero-content__vhuv1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  flex-direction: row; /* default */
  width: 100%;
}

.Hero_hero-text__ydooL {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
  text-align: left;
}

.Hero_hero-title__CizK4 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: rgba(196, 248, 255, 1);
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Recoleta', serif;
  margin-bottom: 1.5rem;
}

.Hero_hero-subtitle__E_2bL {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(196, 248, 255, 1);
  line-height: 1.6;
  font-family: 'Chillax', sans-serif;
}

.Hero_hero-image__xc_Ln {
  flex: 0 0 auto;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Hero_hero-image__xc_Ln img {
  width: 700px;
  height: auto;
  max-width: 100%;
  display: block;
}

.Hero_dropping-texts__ZzDeL {
  display: inline-block;
  width: auto;
  text-align: left;
  height: clamp(2.5rem, 6vw, 4.4rem);
  vertical-align: -12px;
  position: relative;
  min-width: 200px;
}

.Hero_dropping-texts__ZzDeL > div {
  font-size: 0px;
  opacity: 0;
  padding-left: 20px;
  margin-left: -30px;
  position: absolute;
  font-weight: 300;
  box-shadow: 0px 60px 25px -20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  left: 0;
  top: 0;
  transition: transform 0.6s ease, font-size 0.6s ease, margin 0.6s ease, opacity 0.6s ease;
}

.Hero_dropping-texts__ZzDeL > div:nth-child(1) { animation: Hero_roll__w_N78 12s linear infinite 0s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(2) { animation: Hero_roll__w_N78 12s linear infinite 1s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(3) { animation: Hero_roll__w_N78 12s linear infinite 2s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(4) { animation: Hero_roll__w_N78 12s linear infinite 3s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(5) { animation: Hero_roll__w_N78 12s linear infinite 4s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(6) { animation: Hero_roll__w_N78 12s linear infinite 5s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(7) { animation: Hero_roll__w_N78 12s linear infinite 6s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(8) { animation: Hero_roll__w_N78 12s linear infinite 7s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(9) { animation: Hero_roll__w_N78 12s linear infinite 8s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(10) { animation: Hero_roll__w_N78 12s linear infinite 9s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(11) { animation: Hero_roll__w_N78 12s linear infinite 10s; }
.Hero_dropping-texts__ZzDeL > div:nth-child(12) { animation: Hero_roll__w_N78 12s linear infinite 11s; }

@keyframes Hero_roll__w_N78 {
  0% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(-25deg);
  }
  2% {
    opacity: 1;
    transform: rotate(0deg);
  }
  4% {
    font-size: clamp(1.8rem, 5vw, 4.3rem);
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
  }
  8% {
    font-size: clamp(1.8rem, 5vw, 4.3rem);
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
    transform: rotate(0deg);
  }
  10% {
    font-size: 0px;
    opacity: 0.5;
    margin-left: 20px;
    margin-top: 100px;
  }
  100% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(15deg);
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .Hero_hero-container__fTZGL {
    padding: 0 30px;
    margin-top: 40px;
  }
  
  .Hero_hero-content__vhuv1 {
    gap: 40px;
  }
  
  .Hero_hero-image__xc_Ln {
    max-width: 350px;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .Hero_hero-container__fTZGL {
    padding: 0 20px;
    margin-top: 20px;
  }
  .Hero_hero__Z352h{
    min-height: 90vh; /* Adjust height for smaller screens */
  }
  
  .Hero_hero-content__vhuv1 {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    margin-top: 10px;
  }
  
  .Hero_hero-text__ydooL {
    max-width: 100%;
    min-width: auto;
  }
  
  .Hero_hero-title__CizK4 {
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  
  .Hero_hero-image__xc_Ln {
    order: -1; /* Move image above text on mobile */
    max-width: 320px;

    margin: 0 auto 40px;
  }
  
  .Hero_dropping-texts__ZzDeL {
    vertical-align: -3px;
    min-width: 150px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .Hero_dropping-texts__ZzDeL {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-top: 19px; /* Move it down */
    margin-bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    min-width: unset;
    vertical-align: 0;
  }
  
  .Hero_dropping-texts__ZzDeL > div {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
    margin-left: 0 !important;
  }

  
  .Hero_hero-container__fTZGL {
    padding: 0 15px;
    margin-top: 10px;
  }
  
  .Hero_hero-content__vhuv1 {
    gap: 20px;
  }
  
  .Hero_hero-title__CizK4 {
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    font-size: 22px;
  }
  
  .Hero_hero-image__xc_Ln {
    max-width: 250px;
  }
  
  .Hero_dropping-texts__ZzDeL {
    vertical-align: -15px;
    min-width: 120px;
    font-size: 18px;
  }
  
  .Hero_dropping-texts__ZzDeL > div {
    padding-left: 10px;
    margin-left: -20px;
  }
  .Hero_hero-subtitle__E_2bL{
    font-size: 15px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .Hero_hero-container__fTZGL {
    padding: 0 10px;
  }
  
  .Hero_hero-image__xc_Ln {
    max-width: 200px;
  }
  
  .Hero_dropping-texts__ZzDeL {
    min-width: 100px;
    font-size: 18px;
  }
  .Hero_hero-title__CizK4 {
    font-size: 16px;
  }
  .Hero_hero-subtitle__E_2bL{
    font-size: 14px;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .Hero_hero__Z352h {
    min-height: 100vh;
  }
  
  .Hero_hero-container__fTZGL {
    margin-top: 20px;
  }
  
  .Hero_hero-content__vhuv1 {
    flex-direction: row;
    gap: 30px;
  }
  
  .Hero_hero-image__xc_Ln {
    max-width: 250px;
    order: 1;
  }
  
  .Hero_hero-text__ydooL {
    text-align: left;
  }
}


/* Animate in from left */
.Hero_hero-text__ydooL.Hero_animate-in__QAsun {
  animation: Hero_slideInLeft__7ea1W 1s ease-out forwards;
  opacity: 0;
}

/* Animate in from right */
.Hero_hero-image__xc_Ln.Hero_animate-in__QAsun {
  animation: Hero_slideInRight__QVE4i 1s ease-out forwards;
  opacity: 0;
}

@keyframes Hero_slideInLeft__7ea1W {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes Hero_slideInRight__QVE4i {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .Hero_hero-text__ydooL {
    max-width: 100% !important;
    min-width: auto !important;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .Hero_hero-text__ydooL {
    max-width: 100% !important;
    min-width: auto !important;
    text-align: center;
    margin: 0 auto;
  }
}
/* .fade-divider {
  height: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5), rgba(0,0,0,0));
} */
.Hero_scroll-indicator__24KiI {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  gap: 8px;
}

/* Vertically written text */
.Hero_scroll-text__tFDBK {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Aquire', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 6px;
}

/* Mouse icon and arrow */
.Hero_scroll-icon__oFpRS {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.Hero_mouse__A1uZw {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.Hero_wheel__h1xCh {
  width: 4px;
  height: 6px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: Hero_scrollWheel__o77lf 1.5s infinite ease-in-out;
}

@keyframes Hero_scrollWheel__o77lf {
  0% { top: 6px; opacity: 1; }
  50% { top: 14px; opacity: 0.6; }
  100% { top: 6px; opacity: 1; }
}

.Hero_arrow-down__nTvAQ {
  font-size: 1.1rem;
  color: white;
  animation: Hero_arrowBounce__OY3xS 1.2s infinite;
}

@keyframes Hero_arrowBounce__OY3xS {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@import url('https://fonts.cdnfonts.com/css/recoleta');
@import url('https://fonts.cdnfonts.com/css/aquire');

.ThirdPart_thirdpart__GoZnv {
    position: relative;
    height: 120vh;
    width: 100%;
    /* background: url('/Assets/bg-image-rays.png') no-repeat center center/cover; */
    font-family: 'Aquire', sans-serif;
    color: white;
    position: relative;
  background-size: cover;
  }

.ThirdPart_topBar__McDyd {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 1.2rem;
}

.ThirdPart_logo__xUsl5 {
  font-weight: bold;
  width: 80px;
  height: auto;
}

.ThirdPart_aiyuhBtn__rzSeS {
  background: linear-gradient(89.95deg, #0091D5 -40.98%, #C5F8FF 36.73%, #FFFFFF 145.69%);
  color: #000;
  padding: 8px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}
.ThirdPart_selfCareButton__JteZH {


  transform: translateX(-50%);
  background-color: rgba(0, 63, 71, 1);
  color: white;
  padding: 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: 'Aquire';
  z-index: 2;
}
@media (max-width: 600px) {
  
.ThirdPart_thirdpart__GoZnv{
  min-height: 1200px;
}
  .ThirdPart_selfCareButton__JteZH {
    top: 20px;
    left: 155px; /* move slightly lower on small screens */
    font-size: 12px;
  }
}
.ThirdPart_selfCareText__xmS6u {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.ThirdPart_selfCareButton__JteZH:hover .ThirdPart_selfCareText__xmS6u {
  animation: ThirdPart_bounceText__7K2Bz 0.6s ease-in-out;
}

@keyframes ThirdPart_bounceText__7K2Bz {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  60%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}


.ThirdPart_fade-in-down__AnrX7 {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1s ease-out;
}

.ThirdPart_fade-in-down__AnrX7.ThirdPart_in-view__BNfFz {
  opacity: 1;
  transform: translateY(0);
}



.ThirdPart_mainText__JksZr {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 1.6;
  font-family: 'Recoleta';
  color:rgba(196, 248, 255, 1);
  font-feature-settings: "liga" 0, "clig" 0;
  font-variant-ligatures: none;
}

@keyframes ThirdPart_bounce__qGEWL {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}



.ThirdPart_fade-in-left__654zt,
.ThirdPart_fade-in-right__PJfuF {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.ThirdPart_fade-in-up__2YRQg {
  transform: translate(-50%, 20px);
}
.ThirdPart_fade-in-up__2YRQg.ThirdPart_in-view__BNfFz {
  transform: translate(-50%, 0);
}

.ThirdPart_fade-in-left__654zt.ThirdPart_in-view__BNfFz {
  opacity: 1;
  transform: translateX(0);
}

.ThirdPart_fade-in-right__PJfuF.ThirdPart_in-view__BNfFz {
  opacity: 1;
  transform: translateX(0);
}

.ThirdPart_fade-in-up__2YRQg.ThirdPart_in-view__BNfFz {
  opacity: 1;
  transform: translateY(0);
}

.ThirdPart_fade-in-left__654zt {
  transform: translateX(-60px);
}

.ThirdPart_fade-in-right__PJfuF {
  transform: translateX(60px);
}

@media (min-width: 768px) and (max-width: 1240px) {
  .ThirdPart_tablet-left-fix__c3BOc {
    left: -43% !important; /* Instead of -24% */
  }

  .ThirdPart_tablet-right-fix__FVLhE {
    right: -42% ;
  }
}

@media (min-width: 1049px) and (max-width: 1300px) {
  .ThirdPart_tablet-left-fix__c3BOc {
    left: -30% !important; 
  }

  .ThirdPart_tablet-right-fix__FVLhE {
    right: -30% ;
  }
  .ThirdPart_center-part__c5hyY{
    top: 30%
  }
}

@media (min-width: 1300px) and (max-width: 2000px) {
  .ThirdPart_tablet-left-fix__c3BOc {
    left: -20% !important; 
  }

  .ThirdPart_tablet-right-fix__FVLhE {
    right: -20% ;
  }
  .ThirdPart_center-part__c5hyY{
    top: 30%
  }
}

