/* 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;
}

/* Ekstra Section */
.ekstraSection {
  margin: 100px auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.ekstraSection h2 {
  font-size: 28px;
  color: #222;
}
.splitEkstra {
  width: 100%;
  /* border: 1px solid black; */
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.isiEkstra {
  width: 45%;
  /* height: 300px; */
  /* border: 1px solid salmon; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}
.isiEkstra img {
  width: 95%;
  transition: all 0.3s ease;
}
.isiEkstra img:hover {
  width: 100%;
}

.isiEkstra h5 {
  position: absolute;
  font-size: 40px;
  /* -webkit-text-stroke: 2px black; */
  color: #fff;
}
/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }
}

@media screen and (max-width: 900px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 48px;
  }

  /* Ekstra Section */
  .ekstraSection h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* Ekstra Section */
  .ekstraSection h2 {
    font-size: 20px;
  }
  .isiEkstra h5 {
    font-size: 30px;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }

  /* Ekstra Section */
  .isiEkstra {
    width: 95%;
  }
}
