.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-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: 36px;
  font-weight: 700;
  color: #000;
  line-height: 46px;
}
.banner-form form button{
  padding: 15px;
}
.visible-xxs {
  display: none;
}
.escorts-box{
  display: grid;
  grid-template-columns: calc(20% - 20px) calc(80% - 0px);
  gap: 20px;
  margin-top: 20px;
  padding: 20px; 
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.thumbs{
  width: 100%;
  height: 208px;
}
.thumbs img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 2px solid #85EE00;
  border-radius: 10px;
}
.small-tumbs{
  margin-top: 10px;
  display: none;
}
.small-tumbs a{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.small-tumbs a img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid #85EE00;
}
.escorts-detals{
  position: relative;
}
.escorts-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.escorts-contact ul{
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.escorts-contact ul li{
 
}
.whatsapp {
  background-color: #25D366;
  color: #fff;
}
.phone {
  background-color: tomato;
  color: #fff;
}
.telegram {
  background-color: #0088cc;
  color: #fff;
}
.escorts-contact ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}
.escorts-contact ul li a svg {
  width: 24px;
  height: 24px;
}
.contact-btn a{
  text-decoration: none;
  color: #fff;
  background-color: #85EE00;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.contact-btn a:hover {
  background-color: #6dd600;
}
.escorts-box h2 a, .escorts-box h2{
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  margin-top: 0;
}
.ecorts-lists-grid{
  display: grid;
  grid-template-columns: calc(75% - 20px) calc(25% - 0px);
  gap: 20px;
  margin-bottom: 30px;
}
.sub-cities h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  margin-top: 0;
}
.sub-cities a{
  text-decoration: none;
  color: #000;
  display: block;
  padding: 8px 10px;
  background: #f0f0f0;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-bottom: 5px;
}
.sub-cities a:hover {
  background: #85EE00;
}
.sub-cities{
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
@media(max-width:1199px){
  .hero{
    padding-top: 50px;
  }
}
@media(max-width:991px){
  .hero{
    padding-top: 50px;
  }
  .ecorts-lists-grid{
    grid-template-columns: 1fr;
  }
  .escorts-box {
    grid-template-columns: calc(30% - 20px) calc(70% - 0px);
  }
  .esort-text-desk p{
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

  }
}
@media(max-width:767px){
  .escorts-box {
    grid-template-columns: 1fr;
  }
  .thumbs {
    width: 100%;
    height: auto;
}
.esort-text-desk{
  display: block;
}
.escorts-contact{
  position: unset;
}
.visible-xxs{
  display: none;
}
.banner-form form{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .escorts-contact{
    display: block;
  }
  .contact-btn a{
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
  .escorts-contact ul {
    justify-content: center;
  }
  .banner-form h1 {
    font-size: 30px;
  }
  .sub-cities {
    column-count: 2;
}
}