.new-hero {
  /* padding-top: clamp(250px, 21.3020833333vw, 409px); */
  /* padding-bottom: clamp(250px, 21.3020833333vw, 409px); */
  position: relative;
  height: calc(100vh - 210px);
  max-height: 800px;
  display: flex;
  align-items: center;
}
.new-hero.text-left {
  justify-content: flex-start;
}
.new-hero.text-right {
  text-align: right;
}
.new-hero .container-new {
  width: 100%;
}
.new-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.new-hero-content {
  position: relative;
  z-index: 9;
}
.new-hero-content h1,
.new-hero-content p {
  margin-top: 0;
}
.new-hero-content h1 {
  margin-bottom: 16px;
}

.new-hero-content p {
  max-width: 470px;
}
.new-hero-content.text-center p {
  margin-left: auto;
  margin-right: auto;
}
.new-hero-content.text-right p {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .new-hero {
    padding-top: 238px;
    padding-bottom: 80px;
    background-position: 52% 18%;
  }
  .new-hero-content {
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media only screen and (max-width: 575px) {
  .new-hero h1 {
    font-size: 32px;
  }
  .new-hero p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1399px) {
  .new-hero {
    height: calc(100vh - 162px);
  }
}
