.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background-image: linear-gradient(170deg, #7FE85A, #fff 80%);
  background-repeat: no-repeat;
  position: relative;
}
.banner-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
.banner-grid-2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.banner-form form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  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: 36px;
  font-weight: 700;
  color: #000;
  line-height: 46px;
}
.bnr-img img{
  width: 100%;
  height: auto;
  display: block;
}
.breadscrumbs ul li::after{
  display: none;
}
.search-loc-box{
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #85EE00;
}
.search-loc-box input{
  width: 100%;
  padding: 10px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  font-size: 16px;
}
.search-loc-box input:focus{
  border-color: #85EE00;
  outline: none;
}
.search-loc-box h2{
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  margin-top: 0;
}
.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:991px){
     
    .banner-form h1 {
    font-size: 30px;
    }
    
}
@media(max-width:767px){
    .banner-form h1 {
        font-size: 30px;
        text-align: center;
        padding-top: 0px;
    }
    .banner-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
    .hero {
      height: auto;
    }
    .place-list-box {
        grid-template-columns: repeat(auto-fill, minmax(130px, 2fr));
         gap: 8px;
    }
    .place-list-box a{
        padding: 5px;
    }
}