header {
  max-width: 90vw;
  margin: 0 auto;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-right {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin-right: 40px;
}
.nav-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
.nav-left {
  display: none;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin-top: 20px;
  /* background-color: blueviolet; */
  height: 600px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.hero-description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0;
  font-weight: 600;
}
.heto-btn {
  padding: 10px 25px;
  color: white;
  background-color: #e02c6d;
  border-radius: 18px;
  border: none;
  font-size: 17px;
}
.hero-content {
  flex: 1;
  /* background-color: aqua; */
}
.hero-img img {
  width: 70%;
  padding-left: 100px;
}
.hero-img {
  flex: 1;
  /* background-color: rgb(9, 9, 8); */
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url("../images/Circle\ design.svg");
  background-repeat: no-repeat;
  background-position: right 30px top 60px;
}
@media screen and (max-width: 576px) {
  .nav-links {
    display: none;
  }
  .nav-left {
    display: block;
  }
  .nav-bar {
    margin-bottom: 60px;
  }
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    margin: 0 auto;
    align-items: flex-start;
  }
  .hero-img {
    background-size: 70%;
    background-position: left 85px top 50px;
    padding-right: 20px;
    padding-bottom: 50px;
    padding-top: 30px;
    margin-bottom: 0;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
    margin-top: 0;
  }
}
