/* font roboto */
@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");
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: 0;
  font-family: "Roboto", sans-serif;
  
}

body {
  overflow-x: hidden;
}


/* navbar 
 nav {
  width: 100%;
  padding: 9px 47px;
  display: flex;
  position: fixed;
  background-color: #ffff;
  /* transition: background-color 0.3s ease, padding 0.3s ease; 
  justify-content: space-between;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #333;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  width: 55px;
  height: 59px;
}

nav .logo .ket {
  color: #ffff;
  font-size: 1.1rem;
  margin: 10px 13px;
  color: #333;
  font-weight: 500;
}

nav .fitur {
  padding-top: 19px;
}

nav .fitur a {
  color: #ffff;
  margin-left: 24px;
  font-weight: 500;
  color: #333;
  transition: 0.5s ease;
  font-size: 1.1rem;
  padding-bottom: 5px;
  text-decoration: none;
}

nav .fitur a:hover {
  color: #3da18b;
  border-bottom: 1px solid #3da18b;
}

.navbar-extra {
  display: none;
}

#hamburger-menu {
  color: #333;
  font-size: 24px;
  margin: auto;
  cursor: pointer;
} */

/* section main hero */
.section {
  width: 100%;
  background-image: url(assets/Group1.png);
  background-size: cover;
  background-position: center;
  height: 632px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}


.section .main-hero .parent-btn {
  align-items: center;
  justify-content: center;
  gap: 20px;
  display: flex;
  width: 100%;
}


/* waves effect */
.hero_area {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  top: 0;
  /* bottom: 100px; */
}

.waves-main {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  height: 100px;
  min-height: 57px;
  max-height: 150px;
  bottom: 18px;
  left: 0;
  /* top: 0; */
  z-index: 0; /* Pastikan berada di bawah elemen lain */
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}


/* main-hero */
.main-hero {
  width: 100%;
  height: 558px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.main-hero .container {
  color: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 81%;
}

.main-hero .container h1 {
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 20px;
}

.main-hero .container p {
  width: 90%;
  text-align: center;
  font-size: 1.2rem;
  padding: 0;
}

.main-hero .container h1 span {
  color: #57f5d2;
}
/* .slides {
  display: none;
  width: 100%;
  /* background-image: url("Assets/Logo.png"); */
/* position: absolute;
  background-repeat: repeat; */
/* }  */
button {
  margin-top: 20px;
  font-family: inherit;
  font-size: 20px;
  background: transparent;
  background-color: #3da18b;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
  transform: translateX(5em);
}

button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
/* section 2 ( benefit ) */
.section-two {
  height: 900px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  background-color: #f6f9fc;
}

.section-two .parent {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
/* font */
.card-font {
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}
.loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  box-sizing: content-box;
  height: 48px;
  padding: 10px 10px;
  justify-content: center;
  display: flex;
}

.words {
  overflow: hidden;
  position: relative;
}
.words::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #3da18b;
  animation: spin_4991 2s infinite;
}

@keyframes spin_4991 {
  0%,
  25% {
    transform: translateY(0%);
  }

  30%,
  55% {
    transform: translateY(-100%);
  }

  60%,
  100% {
    transform: translateY(0%);
  }
}

/* card (benefit) */
.section-two .parent .parent-sec {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 10px;
  justify-content: center;
}

.card {
  width: 500px;
  background-color: #f2f3f7;
  border-radius: 0.75em;
  cursor: pointer;
  margin-top: 20px;
  transition: ease 0.2s;
  box-shadow: 1em 1em 1em #d8dae0b1, -0.75em -0.75em 1em #ffffff;
  border: 1.5px solid #f2f3f7;
}

.card:hover {
  background-color: #d3ddf1;
  border: 1.5px solid #1677ff;
}

.container {
  margin-top: 1.25em;
  margin-bottom: 1.375em;
  margin-left: 1.375em;
  margin-right: 2em;
  display: flex;
  flex-direction: row;
  gap: 0.75em;
}

.status-ind {
  width: 0.625em;
  height: 0.625em;
  background-color: #3da18b;
;
  margin: 0.375em 0;
  position: relative;
  border-radius: 0.5em;
}

.text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  color: #333;
}

.time {
  font-size: 0.875em;
  color: #777;
  padding-top: 10px;
}

.text-link {
  font-weight: 500;
  text-decoration: none;
  color: black;
}

.button-wrap {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}

.secondary-cta {
  background-color: transparent;
  border: none;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  cursor: pointer;
}

.primary-cta {
  font-size: 15px;
  background-color: transparent;
  font-weight: 600;
  color: #1677ff;
  border: none;
  border-radius: 1.5em;
  cursor: pointer;
}

button:hover {
  text-decoration: underline;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 0.875em;
}

/* poster  */
.section-tree {
  width: 100%;
  background-color: #f6f9fc;
  height: 1200px;
}

.section-tree .parent-poster {
  justify-content: center;
  display: flex;
  gap: 37px;
  flex-wrap: wrap;
}
.section-tree .parent-poster img {
  flex-wrap: wrap;
  width: 350px;
  height: 420px;
}

/* FAQ */
.section-four {
  width: 100%;
  background-color: #f6f9fc;
  height: 1000px;
}

.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

/* footer */
.footer {
  position: relative;
  width: 100%;
  background: #3da18b;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}







/* device phone */
@media (max-width: 700px) {
  /* navbar start */
  .section {
    height: auto;
  }
  .section .main-hero .parent-btn {
    gap: 20px;
    width: 100%;
  }
  .section .img {
    width: 100%;
    height: auto;
  }

  .hero_area .waves-main {
    bottom: 20px;
    top: 25px;
  }
  nav {
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-extra {
    display: block; /* Tampilkan hamburger menu */
  }
  .fitur.active {
    right: 0;
  }

    nav.scrolled {
    padding: 10px 20px;
  }  

nav .fitur {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #ffff;
    color: #333;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 17vh;
    padding: 0;
    gap: 5px;
  }

.nav .ket p {
    font-size: 1rem;
  }

  nav .fitur a {
    color: #333;
    margin: 5px 5px;
  }
  .mobile-menu a {
    padding: 10px;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
  }

  .mobile-menu a:hover {
    background-color: #3da18b;
    color: white;
  }

  .mobile-menu.show {
    display: flex; /* Tampilkan menu ketika diaktifkan */
    animation: slideDown 0.3s ease forwards;
  }
  /* navbar end */

  /* main hero star   */
  .main-hero {
    height: 463px;
    padding: 63px 20px 10px;
    text-align: center;
  }
  .main-hero .container {
    width: 100%;
  }
  .main-hero .container h1 {
    font-size: 1.5rem;
    width: auto;
    height: 91px;
  }

  .parent-sec .parent-card-one h3 {
    font-size: 16px;
  }
  .main-hero .container p {
    font-size: 1rem;
  }

  button {
    font-size: 16px;
    font-weight: 600;
    padding: 9px 24px;
    border-radius: 7px;
  }

  button span {
    margin-left: 0.2em;
  }

  button svg {
    transform: translateX(0.8em) rotate(45deg) scale(0.9);
  }

  .svg-wrapper {
    display: none;
  }
  /* main hero end */

  /* font section 1 2 3 4 */
  .loader {
    font-size: 2rem;
  }
  .card-font {
    padding: 0 2rem;
  }

  /* section two start */
  .section-two {
    height: auto;
  }
  .section-two .parent .parent-sec {
    padding: 10px 10px;
    /* height: 500px; */
  }
  .card {
    width: 100%;
    margin-top: 10px;
  }
  /* section two end */

  /* section three start */
  .section-tree {
    height: 2866px;
    margin-top: 99px;
  }
  .parent-poster {
    margin-top: 20px;
  }
  /* section three end */

  /* section four start */
  .section-four {
    padding: 10px;
    height: 613px;
  }

  .section-four .parent-modal {
    gap: 0;
  }
  .parent-modal .modal {
    padding-bottom: 20px;
  }
  /* section four end */


  .modal-container {
    width: 90%;
    max-width: 100%;
    margin-top: 25px;
  }

  /* footer start */
  .footer {
    padding: 10px 20px;
  }

  .footer .social-icon__link,
  .footer .menu__link {
    font-size: 1rem;
  }

  .button {
    font-size: 14px;
    padding: 10px;
  }
}
/* footer End */
