/* Hero Section */
.heroSection {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  /* border: 1px solid red; */
}
.firstHero {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../../../../assets/img/resize1.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top;
}
.firstHero h1 {
  color: #fff;
  font-size: 60px;
  text-align: center;
}

/* Sejarah Section */
.saranaSection {
  position: relative;
  margin: 100px auto;
  width: 90%;
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  text-align: justify;
  /* row-gap: 20px; */
}
.saranaSection h2 {
  text-align: center;
  font-size: 28px;
  color: #222;
}
.buttonSarana {
  top: 0;
  width: 100%;
  background: #dbd31e;
  /* border: 1px solid black; */
  padding: 10px 0;
  color: #fff;
}
.buttonSarana ul {
  cursor: pointer;
  font-size: 20px;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
}
.sarana {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 50px 0;
  border-radius: 0px 100% 0px 0px;
  /* text-align: right; */
}
.sarana h5 {
  width: 100%;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}
.even {
  text-align: right;
}
.saranaImg,
.saranaImg2 {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.saranaImg {
  justify-content: flex-start;
}
.saranaImg2 {
  justify-content: flex-end;
}
.saranaImg img,
.saranaImg2 img {
  width: 45%;
  /* margin: 0 auto; */
}

/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }

  /* Sejarah Section */
  .saranaSection h5 {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  /* Sejarah Section */
  .saranaSection h2 {
    font-size: 24px;
  }
  .saranaSection h5 {
    font-size: 14px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* Sarana Section */
  .saranaSection h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }

  /* SaranaSection */
  .saranaImg,
  .saranaImg2 {
    flex-direction: column;
    row-gap: 10px;
  }
  .saranaImg img,
  .saranaImg2 img {
    width: 100%;
  }
}
