::-webkit-scrollbar {
  background: #b6b6b6;
  border-radius: 5px;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: #4a5fd3;
  border-radius: 5px;
  width: 10px;
}

body {
  font-family: "Poppins", sans-serif;
}

#about {
  padding-top: 80px;
  height: 200vh;
  /* background-color: blueviolet; */
  /* gap: 50px; */
}

.container-fluid {
  gap: 54px;
  padding-left: 40px;
}

.container-fluid .kiri {
  /* background-color: blue; */
  width: 550px;
  position: relative;
  top: 50px;
  margin-left: 50px;
}

.container-fluid .kiri .vision h5 {
  font-family: Roboto Serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 23.42px;

  color: #4a5fd3;
  margin-bottom: 24px;
}

.container-fluid .kiri .vision h2 {
  font-family: Roboto Serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56.21px;
  margin-bottom: 24px;
}

.container-fluid .kiri .vision P {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: justify;
  color: #8b8b8b;
  margin-bottom: 25px;
}

.container-fluid .kiri .mission h2 {
  font-family: Roboto Serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56.21px;
  margin-bottom: 25px;
}

.container-fluid .mission .misi {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* background-color: chartreuse; */
  margin: 5px 0px;
}

.container-fluid .mission .misi img {
  width: 28.11761474609375px;
  height: 28.11761474609375px;
}

.container-fluid .mission .misi p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8b8b8b;
}

.container-fluid .kanan img {
  width: 555px;
  margin: 60px;

  /* background-color: red; */
}

#value {
  height: 100vh;
}

#value .container h2 {
  font-family: Roboto Serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56.21px;
  margin-bottom: 25px;
}
/* Animasi dari kanan */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animasi dari bawah */
@keyframes slideInBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Class untuk elemen yang akan dianimasi */
.animate-right {
  animation: slideInRight 1s ease forwards;
}

.animate-bottom {
  animation: slideInBottom 1s ease forwards;
}

/* Delay untuk setiap elemen */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* Pastikan elemen tersembunyi sebelum animasi mulai */
.animate-right,
.animate-bottom {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #about {
    height: auto;
    padding-top: 40px;
  }

  .container-fluid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 0;
  }

  .container-fluid .kiri {
    width: 90%;
    margin-left: 0;
    top: 0;
    text-align: left; /* Changed from center to left */
  }

  .container-fluid .kiri .vision h5 {
    font-size: 20px;
  }

  .container-fluid .kiri .vision h2,
  .container-fluid .kiri .mission h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .container-fluid .kiri .vision p {
    font-size: 16px;
    text-align: left; /* Changed from center to left */
    text-align: justify;
  }

  .container-fluid .kanan {
    order: -1; /* Moves the image to the top */
    margin-bottom: 20px;
  }

  .container-fluid .kanan img {
    width: 100%;
    max-width: 400px;
    margin: 0;
    margin-top: 20px;
  }

  .container-fluid .mission .misi {
    flex-direction: row; /* Keep items in a row */
    align-items: center; /* Vertically center items */
    gap: 15px; /* Space between icon and text */
  }

  .container-fluid .mission .misi img {
    width: 28px; /* Adjust size if needed */
    height: 28px;
    margin-bottom: 0; /* Remove any bottom margin */
    top: 50px;
    display: none;
  }

  .container-fluid .mission .misi p {
    margin-left: 0; /* Remove previous left margin */
    flex-grow: 1; /* Allow text to take remaining space */
    text-align: justify;
  }
}
