/* 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;
}

/* Profile Section */
.profileSection {
  margin: 100px auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: justify;
  row-gap: 20px;
}
.profileSection h2 {
  font-size: 28px;
  color: #222;
}
.isiProfile {
  width: 100%;
  gap: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.isiProfile img {
  width: 18%;
}
.isiProfile h5 {
  font-size: 22px;
}
.profileSection p {
  font-size: 18px;
  color: #333;
}

/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 52px;
  }

  /* Profile Section */
  .isiProfile img {
    width: 30%;
  }
  .isiProfile p {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 48px;
  }

  /* Profile Section */
  .profileSection h2 {
    font-size: 24px;
  }
  .isiProfile h5 {
    font-size: 20px;
  }
  .isiProfile p {
    font-size: 14px;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 30px;
  }

  /* Profile Section */
  .isiProfile {
    width: 100%;
    gap: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .isiProfile {
    flex-direction: column;
    align-items: center;
  }
  .profileSection h2 {
    font-size: 20px;
  }
  .isiProfile img {
    width: 45%;
  }
  .isiProfile h5 {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 450px) {
  /* Hero Section */
  .firstHero h1 {
    font-size: 26px;
  }
}
