.serve-banner-section {
  display: flex;
  flex-direction: column;
  row-gap: 110px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.schedule-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.schedule-section .schedule-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.schedule-section .schedule-wrapper p {
  max-width: 45%;
  text-align: center;
  margin-top: clamp(20px, 5vw, 60px);
}

@media screen and (max-width: 1031px) {
  .schedule-section .schedule-wrapper p {
    max-width: 60%;
  }
}
@media screen and (max-width: 681px) {
  .schedule-section .schedule-wrapper p {
    max-width: 70%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .schedule-section .schedule-wrapper p {
    max-width: 90%;
  }
}

.banner-img-wrapper {
  position: relative;
  overflow: hidden; /* THIS STOPS PROTRUSION */
}

.banner-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

/* HARD STOP FOR BLUE BACKGROUND BLEED */

.banner-img-wrapper {
  position: relative !important;
  overflow: hidden !important;
  max-width: 100%;
}

.banner-img-bg {
  position: absolute !important;
  inset: 0 !important; /* replaces top/left/right/bottom */
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  margin: 0 !important;
  z-index: -1 !important;
}

.banner-img {
  position: relative !important;
  display: block;
  width: 100% !important;
  height: auto !important;
}