*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

article section.TentangKami {
  padding: 3rem 1.5rem;
  background-image: url("../assets/background/Hijau.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 70vh;
  height: auto;
}
.TentangKami .boxAnimasi {
  padding: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  min-height: 50vh;
}
.box img {
  width: 60%;
  margin-bottom: 2rem;
}
.box {
  width: 200px;
  height: 250px;
  background-color: orange;
  position: absolute;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 1px 1px 10px 1px black;
  cursor: pointer;
}
.box p {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
}
.box button {
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 14px;
  border: hidden;
  background-color: #0fbbe0;
  color: white;
  cursor: pointer;
}
.box1 {
  left: 0;
  animation: moveRight1 1s linear forwards;
}

.box2 {
  left: 0;
  animation: moveRight2 1s linear forwards;
}
.box3 {
  left: 0;
  animation: moveRight3 1s linear forwards;
}
@keyframes moveRight1 {
  0% {
    left: 0;
  }
  100% {
    left: 5%;
  }
}
@keyframes moveRight2 {
  0% {
    left: 0;
  }
  100% {
    left: 40%;
  }
}
@keyframes moveRight3 {
  0% {
    left: 0;
  }
  100% {
    left: 76%;
  }
}


@media (max-width: 768px) {
  article section.TentangKami,
  article section.Layanan {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .boxAnimasi {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .box {
    position: static;
    margin-bottom: 2rem;
  }
}

