/* --- Your Existing Styles --- */

.no-padding {
 padding-left: 0 !important;
 padding-right: 0 !important;
}

.flex-container {
 display: flex;
 width: 100%;
}

.flex-item {
 flex: 1; /* Make items share space */
 border-right: 2px solid white;
}

.flex-item:last-child {
 border-right: none;
}

.flex-item a {
 display: block !important;
 height: 50px !important;
 line-height: 50px !important;
 text-align: center !important;
 color: white !important;
 text-decoration: none !important;
 font-size: 16px;
}

.flex-item p {
 display: inline !important;
 font-weight: bold;
 margin: 0;
}

/* --- Add These New Styles for Mobile --- */

@media (max-width: 768px) {
 .flex-container {
 /* Stack the items vertically */
 flex-direction: column;
 }

 .flex-item {
 /* Remove the side borders */
 border-right: none;
 /* Add a bottom border to separate the stacked items */
 border-bottom: 2px solid white;
 }

 .flex-item:last-child {
 /* Remove the bottom border from the very last item */
 border-bottom: none;
 }
}

#PageMain, #PageFooter { margin-top: 0; }

 .center {
 
 margin: 0 center;
 
 }

.btn-redfade {
background: linear-gradient(to left, lighten(orange, 28%), crimson);
}

/* This targets only the slide with the .no-overlay class to remove the dark layer */
.sePage .sePageLayout .rbm-section-slider-top .content-block-column.no-overlay::after {
 background: transparent;
}

.stretched-link::after {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 z-index: 1;
 content: "";
}

rbm-slider-top-wrapper {
margin: 0px !important;
padding: 0px !important;
}