.hero-image {
  position: relative;
}
.hero-image__cover-image img {
    width: 100%;
    display: block;
}
.hero-image__content {
  position: absolute;
  bottom: 3rem;
  display: flex;
  align-items: center;
  color: #F7F2E1;
  left: 4vw;
  right: 4vw;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-image__title {
  font-family: "HelveticaNeueLT";
  font-size: 7vw;
  width: 50%;
  line-height: 6.1vw;
}

.hero__content {
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  margin-right: -50%;
  max-width: 95%;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 544px) {
  .hero__content {
    max-width: 750px;
    padding: 2rem 3rem;
  }
}

.hero__heading {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 544px) {
  .hero__heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .hero__heading {
    font-size: 3rem;
  }
}
@media screen and (min-width: 544px) {
  .hero__heading {
    margin-bottom: 1rem;
  }
}

.hero__eyebrow {
  color: #464646;
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.15rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 544px) {
  .hero__eyebrow {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.hero__body {
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 544px) {
  .hero__body {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 575.98px) {
  .hero-image img {
    border-style: none;
    display: block;
    max-width: 100%;
    height: 23rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .hero-image__content {
    flex-direction: column;
  }
  .hero-image__title {
    font-family: "HelveticaNeueLT";
    font-size: 7vw;
    width: 95%;
    line-height: 6.1vw;
  }
  .hero-image__text {
    width: 95%;
    line-height: 1rem;
    padding-top: 1rem;
  }
}

/* pankaj new styling */

.full-image-type img {
    width: 100%;
    display: block;
    margin-bottom: -3px;
  }
  
  .hero-image .scroll-to svg {
    width: 40px;
    display: block;
    height: auto;
  }
  .hero-image .scroll-to {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%,calc(100% - 60px));
    transform: translate(-50%,calc(100% - 60px));
    z-index: 2;
    height: 135px;
    overflow: hidden;
    cursor: pointer;
  }
  
  @media screen and (min-width: 768px) {
    .hero-image .scroll-to {
      -webkit-transform: translate(-50%,calc(100% - 90px));
      transform: translate(-50%,calc(100% - 90px));
      height: 201px;
    }
    .hero-image .scroll-to svg {
      width: 60px;
    }
  }
  /* pankaj new styling */