.pg-herosection-main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbfbfd;
}
.pg-herosection-leftdiv {
  width: 45%;
  height: 100%;
  position: relative;
}
.pg-herosection-textdiv {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pg-herosection-textdiv h1 {
  font-size: 40px;
  color: #233d63;
}
.pg-herosection-textdiv p {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.5;
  color: #8e637c;
}
.pg-herosection-buttons {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 20px;
}
.pg-herosection-buttons a {
  background-image: radial-gradient(
    circle 893px at 4.3% 34.1%,
    rgba(44, 116, 172, 0.95) 0%,
    rgba(21, 128, 112, 0.68) 90%
  );
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.pg-herosection-buttons a i {
  color: #fbfbfd;
  font-size: 40px;
}
.pg-herosection-buttons a button {
  border: none;
  background: transparent;
  color: #fbfbfd;
  font-size: 24px;
}
.pg-herosection-rightdiv {
  width: 55%;
  height: 100%;
  background-color: #17c6bc;
  border-radius: 0% 0% 0% 100%;
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.pg-herosection-imagediv {
  height: 500px;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pg-herosection-imagediv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1000px) {
  .pg-herosection-main {
    height: 80vh;
  }
  .pg-herosection-rightdiv {
    display: none;
  }
  .pg-herosection-leftdiv {
    width: 100%;
    height: auto;
  }
  .pg-herosection-textdiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    top: 50%;
  }
  .pg-herosection-buttons a i {
    font-size: 16px;
  }
  .pg-herosection-buttons a button {
    font-size: 18px;
  }
  /* you need to write css for ipad pro for this herosection  */
}
