/**Listing Pages**/
.listing-page main{
  padding : 0 0 70px;
}
.listing-page .landing-page-banner{
  margin-bottom: 70px;
  position: relative;
}
.listing-page .landing-page-banner::before{
  position: absolute;
  content: "";
  inset: 0;
  z-index: 3;
  background: linear-gradient(120deg, rgba(20, 6, 7, 0.85), rgba(40, 10, 12, 0.3));
}
.banner-image-wrapper{
  /*min-height: 350px;*/
}
.banner-title-overlay{
  position: absolute;
  display: flex;
  inset: 0;
  align-items: center;
  color: #fff;
  margin: 0 auto;
  z-index: 4;
}
.banner-title-overlay h1{
  font-family: var(--hedaing-font);
  font-size: 50px;
  line-height: 50px;
  font-weight: 800;
  color: #fff;  
  margin: 0;
}

@media (min-width: 1400px) {
  .banner-image-wrapper{
    /*min-height: 550px;*/
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-image-wrapper{
    /*min-height: 500px;*/
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-image-wrapper{
    /*min-height: 400px;*/
  }
  .banner-title-overlay h1{
    font-size: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-image-wrapper{
    /*min-height: 300px;*/
  }
}
@media (max-width: 767.98px) {
  .banner-image-wrapper{
    /*min-height: 250px;*/
  }
}

@media (max-width: 991.98px) {
  .banner-title-overlay h1{
    font-size: 30px;
    line-height: 30px;
  }
}


/**Listing Pages Ends**/