/* 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(../img/resize1.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top;
}
.firstHero h1 {
  color: #fff;
  font-size: 60px;
  text-align: center;
}

/* PPDB Section */
.ppdbSection {
  margin: 150px 10%;
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  /* border: 1px solid salmon; */
}
.firstPpdb {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.firstPpdb img {
  width: 60%;
  border-radius: 5px;
  /* border: 1px solid black; */
}
.secondPpdb {
  width: 40%;
  /* background: salmon; */
}
.secondPpdb h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 15px;
  /* text-align: justify; */
}
.line {
  width: 80%;
  border: 1.5px solid #1e4b30;
  margin-bottom: 30px;
}
.secondPpdb h5 {
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}
.secondPpdb a {
  background: #1e4b30;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}

/* Jurusan Section */
.jurusanSection {
  width: 100%;
  padding: 150px 0;
  border-top: 10px solid #dbd31e;
  border-bottom: 10px solid #dbd31e;
  background-color: #1e4b30;
  color: #fff;
}
.backgroundJurusan {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jurusanSection h2 {
  font-size: 28px;
}
.flexJurusan {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 50px;
  margin-top: 50px;
  /* background: salmon; */
}
.itemJurusan {
  display: flex;
  width: 40%;
  column-gap: 20px;
  /* border: 1px solid black; */
}
.iconJurusan img {
  padding: 5px;
  width: 50px;
  object-fit: cover;
  background: #dbd31e;
  background: #fff;
  /* padding: 20px; */
  border-radius: 50%;
}
.descJurusan h4 {
  font-size: 24px;
  font-weight: 600;
}
.descJurusan h5 {
  font-size: 20px;
  font-weight: 600;
}
.descJurusan p {
  font-size: 16px;
  text-align: justify;
}

.contactSection {
  width: 100%;
  /* border: 1px solid salmon; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 150px 0;
}
.contactSection h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}
.itemContact {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* background: #dbd31e; */
}
.itemContact h5 {
  font-size: 24px;
  color: #222;
}
.leftContact,
.rightContact {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.maps {
  height: 400px;
}
.rightContact img {
  height: 25px;
  object-fit: contain;
  margin-right: 10px;
}
.rightContact p {
  font-weight: 500;
}
.email,
.address,
.phone {
  display: flex;
  column-gap: 5px;
}

/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }

  /* PPDB Section */
  .ppdbSection {
    margin: 150px 5%;
    width: 90%;
  }
  .firstPpdb img {
    width: 70%;
  }
  .secondPpdb {
    width: 50%;
  }
  .secondPpdb h2 {
    font-size: 30px;
  }
  .line {
    width: 65%;
  }
  .secondPpdb h5 {
    /* font-size: 16px; */
  }
  .secondPpdb a {
    font-size: 16px;
  }

  /* Jurusan Section */
  .descJurusan h4 {
    font-size: 22px;
  }
  .descJurusan h5 {
    font-size: 18px;
  }
  .descJurusan p {
    font-size: 16px;
  }

  /* Contact Section */
  .itemContact h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 48px;
  }

  /* PPDB Section */
  .secondPpdb {
    width: 60%;
  }
  .secondPpdb h2 {
    font-size: 24px;
  }
  .secondPpdb h5 {
    font-size: 16px;
  }
  .secondPpdb a {
    font-size: 14px;
  }

  /* Jurusan Section */
  .itemJurusan {
    width: 45%;
    column-gap: 15px;
  }
  .jurusanSection h2 {
    font-size: 24px;
  }
  .descJurusan h4 {
    font-size: 18px;
  }
  .descJurusan h5 {
    font-size: 16px;
  }
  .descJurusan p {
    font-size: 14px;
  }

  /* Contact Section */
  .contactSection h2 {
    font-size: 24px;
  }
  .itemContact h5 {
    font-size: 18px;
  }
  .itemContact {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* background: #dbd31e; */
  }
  .leftContact,
  .rightContact {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* row-gap: 40px; */
  }
  .rightContact img {
    height: 25px;
    object-fit: contain;
    margin-right: 10px;
  }
  .rightContact p {
    font-size: 16px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* PPDB Section */
  .ppdbSection {
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .firstPpdb img {
    width: 100%;
  }
  .secondPpdb {
    width: 100%;
  }
  .secondPpdb h2 {
    font-size: 20px;
  }

  /* Jurusan Section */
  .itemJurusan {
    width: 100%;
    column-gap: 15px;
  }
  .jurusanSection h2 {
    font-size: 20px;
  }
  .descJurusan h4 {
    font-size: 18px;
  }

  /* Contact Section */
  .contactSection h2 {
    font-size: 20px;
  }
  .itemContact {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
  }
  .itemContact h5 {
    font-size: 16px;
  }
  .leftContact,
  .rightContact {
    width: 100%;
  }
  .rightContact p {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }
}
