/* Start custom CSS */.half-map-right-wrap .btn-primary {
    color: #9c8c64;
  background-color: transparent;
  border-color: #9c8c64;
}
.half-map-right-wrap .btn-primary:hover, .half-map-right-wrap .btn-primary:focus {
  color: #fff;
  background-color: #9c8c64;
  border-color: #9c8c64;
}
.half-map-right-wrap .page-title h1,.half-map-right-wrap .page-title h2,.half-map-right-wrap .page-title h3 {
  font-family: "Inter", sans-serif;
    
}
.listing-wrap .container {
  max-width: 100% !important;
}
.listing-wrap .btn-primary {
    color: #9c8c64;
  background-color: transparent;
  border-color: #9c8c64;
}
.listing-wrap .btn-primary:hover, .listing-wrap .btn-primary:focus {
  color: #fff;
  background-color: #9c8c64;
  border-color: #9c8c64;
}
.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 767.98px) {
    .listing-wrap .page-title-wrap a {
        display: none;
    }
    .listing-wrap .grid-view .item-listing-wrap {
        padding: 0;
    }

}
<script>
        $(document).ready(function() {
            function isMobileView() {
                return window.innerWidth <= 768;
            }

            $(window).on('scroll', function() {
                if (isMobileView()) {
                    $('.advanced-search-nav').addClass('scrolled');
                } else {
                    $('.advanced-search-nav').removeClass('scrolled');
                }
            });
        });
    </script>/* End custom CSS */