/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}


:root {
  --font: "Noto Sans", sans-serif;
  --font-size: 1.6rem;
  --font-size-lg: 1.8rem;
  --text-primary: #000;
  --text-secondary: #404145;
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
}

body {
  background-color: #fff;
  font-family: var(--font);
  font-size: var(--font-size);
}

.container {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Generic */
main, section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

a.btn {
  text-align: center;
  background-color: #fff;
  border: .01rem solid #000;
  transition: box-shadow 0.12s ease-in-out;
  color: #000;
  text-decoration: none;
  padding: 1.4rem 2.4rem;
}

a.btn:hover {
  box-shadow: -5px 5px 0px #000;
}

section h2,
section h3 {
  font-size: 3.2rem;
  font-weight: bold;
}

.hero .hero_content,
.about .about_content {
  display: flex;
  flex-direction: column;
  color: #2D2D2D;
  gap: 5.5rem;
  align-items: center;
  text-align: center;
  max-width: 40rem;
  margin: auto;
}

header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0.03rem 1rem rgba(0,0,0,.05);
  padding: 0.5rem 0;
}

header .header_wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

header .header_wrapper .logo {
  grid-column: 2;
  justify-self: center;
}

header .header_wrapper .lang-select {
  grid-column: 3;
  justify-self: end;
}

/* Home */
.hero {
  background: rgba(255, 181, 167, 10);
  background: linear-gradient(0deg, rgba(255, 181, 167, 0.4) 0%, rgba(249, 220, 196, 0.6) 40%);
}

.hero .hero_content {
  position: relative;
  z-index: 0;
}

.hero .hero_content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero .hero_content h1 {
  font-weight: bold;
  font-size: 4rem;
  line-height: 120%;
}

.hero .hero_content p {
  line-height: 125%;
}

.hero .hero_image {
  display: none;
}


/* About Section */
.about {
  position: relative;
  overflow: hidden;
  background: rgba(249, 220, 196, 10%);
}

.about .blob {
  position: absolute;
}

.about .about_content .blob {
  max-width: 40rem;
  width: 100%;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about > .blob {
  max-width: 20rem;
  bottom: -7.5rem;
  right: -7.5rem;
} 

.about .about_content {
  z-index: 1;
}

.about .about_content img {
  width: 100%;
  max-width: 23rem;
}

.about .about_image img {
  display: none;
}

/* why section */
.why {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  text-align: center;
}

.why img {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.why img:nth-of-type(2) {
  left: 0;
}

.why img:nth-of-type(1) {
  right: 0;
}

.why ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 5.5rem auto 0;
  padding: 0;
}

.why ul li {
  position: relative;
  display: flex;
  align-items: start;
  text-align: left;
  list-style-type: none;
  line-height: 2rem;
  gap: 2.5rem;
}

.why ul li::before {
  flex: 0 1 2rem;
  content: '';
  width: 2rem;
  height: 2rem;
  border-radius: .6rem;
}


.why ul li:nth-child(odd)::before {
  display: block  ;
  background: #FCD5CE;
}

.why ul li:nth-child(even)::before {
  display: block  ;
  background: #FFB5A7;
}

/* package section */
.package {
  position: relative;
  text-align: center;
  background: rgba(249, 220, 196, 0.2);
}

.package_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 5rem 0;

}

.package article {
  text-align: left;
  flex:  1 1 23rem;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.package article span {
  font-weight: bold;
  margin-top: auto;
}

.faq {
  position: relative;
  text-align: center;
}

.faq .faq_wrapper {
  gap: 5.5rem;
}

.faq .faq_wrapper,
.faq .faq_wrapper article {
 display: flex;
  flex-direction: column;
}

.faq .faq_wrapper article {
  align-items: center;
  padding: 3rem 2rem;
  border-radius: 1.2rem;
  text-align: center;
}

.faq .faq_wrapper article img {

}

.faq .faq_wrapper article > div {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
}

.faq .faq_wrapper article h4 {
  font-weight: bold;
  font-size: 1.8rem;
}

.faq .faq_wrapper article p {
  font-size: 1.4rem;
}

.faq .faq_wrapper article:nth-of-type(1) {
  background: rgba(208, 244, 222, 0.6);
}

.faq .faq_wrapper article:nth-of-type(2) {
  background: rgba(189, 224, 254, 0.6);
}

.faq .faq_wrapper article:nth-of-type(3) {
  background: rgba(254, 250, 224, 0.66);
}





@media (min-width: var(--breakpoint-sm)) {

}

@media (min-width: 768px) {


  header .header_wrapper .logo img {
    width: 90px;
  }

  .hero {
    background: rgba(255, 181, 167, 10);
    background: linear-gradient(260deg, rgba(255, 181, 167, 0.4) 0%, rgba(249, 220, 196, 0.6) 40%);
  }

  .hero .hero_wrapper,
  .about .about_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }
  
  .hero_wrapper > .hero_content,
  .hero_wrapper > .hero_image,
  .about_wrapper > .about_content,
  .about_wrapper > .about_image {
    flex: 0 1 50%;
  }

  .hero .hero_content,
  .about .about_content {
    position: relative;
    align-items: start;
    text-align: left;
    max-width: unset;
    margin: unset;
    z-index: 1;
  }
  
  .hero .hero_image {
    position: relative;
    text-align: center;
  }

  .hero .hero_image img:first-of-type {
    position: absolute;
    z-index: 0;
    width: 100%;
  }

  .hero .hero_image img:last-of-type {
    position: relative;
    display: inline-block;
    max-width: 400px;
    z-index: 1;
  }

  .about .about_content img:nth-of-type(2) {
    display: none;
  }

  .about .about_image img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 40rem;
  }

  .about .about_content .blob {
    left: -20rem;
    transform: translate(0%, -50%);
  }


  .package_wrapper {
    display: grid;
    justify-content: center;
    gap: 5rem;
    grid-template-columns: repeat(2, minmax(23rem, 30rem));
  }

  .faq .faq_wrapper {
    max-width: 100.25rem;
    margin: auto;
    padding: 5.5rem 0;
  }

  .faq .faq_wrapper article {
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .faq .faq_wrapper article > div {
    flex: 0 1 50%;
    gap: 2.5rem;
  }

  .faq .faq_wrapper article h4 {
    font-size: 3.6rem;
  }

  .faq .faq_wrapper article p {
    font-size: 1.8rem;
  }

  .faq .faq_wrapper article:nth-of-type(2) {
    flex-direction: row-reverse;
  }

}

@media screen and (min-width: 1024px) {
  
  body {
    font-size: var(--font-size-lg);
  }

  .hero .hero_content h1 {
    font-size: 6rem;
  }

    section h2,
    section h3 {
    font-size: 4.8rem;
    font-weight: bold;
  }

  main, section {
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }

  .why ul li {
    font-size: 2rem;
  }
}




/* Animations */
/* ----------------------------------------------
 * Generated by Animista on 2025-6-23 15:37:26
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
 .pulsate-fwd {
	  -webkit-animation: pulsate-fwd 4s ease-in-out infinite both;
    animation: pulsate-fwd 4s ease-in-out infinite both;
}
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
