#fw-section-hero-1743987173 {

/* General styling for the banner */
* {
  max-height: 250px !important;
  overflow: hidden; /* Default to no scrolling */
  scrollbar-width: none;
}

/* Center text vertically and horizontally */
h1, p {
  position: relative;
  top: -40px;
}

@media (max-width: 768px) {
  p {
    font-size: 13.5px; /* Adjust the font size for mobile view */
  }
  h1 {
    font-size: 26px;
  }
}

/* Apply overflow:auto and scrollbar-width:none only for screens under 320px */
@media (max-width: 314px) {
  * {
    overflow: auto;
    scrollbar-width: none;
  }
}

}