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