.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-image: linear-gradient(170deg, #7FE85A, #fff 80%);
  background-repeat: no-repeat;
  position: relative;
  padding: 20px 0px;
}
.banner-form form{
   display: grid;
  grid-template-columns: calc(70% - 30px) calc(30% - 0px);
  gap: 30px;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.banner-form h1{
  font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 46px;
    margin-bottom: 9px;
    margin-top: 0px !important;
    text-align: center;
}
.banner-form form button{
  padding: 15px;
}
.place-list-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.place-list-box a{
  text-decoration: none;
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
  text-align: center;
}
.place-list-box a:hover{
  background-color: #85EE00;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);

}
.place-listing h2{
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin: 0 0 20px 0;
}
.place-listing{
   background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}
@media(max-width:767px){
  
  .hero{
    height: auto;
    padding: 10px;
    text-align: center;
  }
  .banner-form form{
    grid-template-columns: 1fr;
    gap: 10px;
    display: flex;
  }
  .banner-form h1 {
    font-size: 17px;
    line-height: 24px;
  }
  .breadscrumbs ul li {
      line-height: 0px;
  }
  .escorts-box h2 a, .escorts-box h2 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0;
    text-align: center;
  }
  .h1_heading {
      margin-top:  0 !important;
  } 
  .place-list-box {
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 8px;
  }
  .place-list-box a {
      padding: 5px;
  }
  .banner-form form{
    padding: 5px;
  }
  .dropdown {
      width: 230px;
  }
  .sub-cities {
      margin-top: -15px;
      padding: 0px;
  }
  .ecorts-lists-grid {
      grid-template-columns: 1fr;
      border-radius: 10px;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid #eaeaea;
      margin-bottom: 0;
      padding: 10px 20px 20px 20px;
  }
  .sub-cities {
    border-radius: 0;
    box-shadow: none;
  }
}