/* 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;
}

/* Kalender Pendidikan Section */
.kalenderSection {
  margin: 100px auto;
  width: 90%;
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  text-align: justify;
  row-gap: 20px;
}
.kalenderSection h2 {
  font-size: 28px;
  color: #222;
}
.kalenderSection p {
  font-size: 18px;
  color: #333;
}
.kalenderSection img {
  width: 100%;
}

/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }

  /* Kalender Pendidikan Section */
  .kalenderSection p {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  /* Kalender Pendidikan Section */
  .kalenderSection h2 {
    font-size: 24px;
  }
  .kalenderSection p {
    font-size: 14px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* Kalender Pendidikan Section */
  .kalenderSection h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }
}
