.banner-wrapper {
    display: flex;
    align-items: stretch;
    /* Fallback for Banner */
    /* height: 100%; */
    position: relative;
}

.banner-wrapper img {
    width: 891px;
    height: 219px;
    /* Fallback for Banner */
    /* width: 100%; */
    /* Fallback for Banner */
    /* height: 100%; */
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.banner-timer {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 0;
}

.banner-heading {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 500;
}

.banner-paragraph {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
    width: 100%;
    max-width: 440px;
}

.banner-content a {
    padding: 10px 20px;
    border: 3px solid var(--white);
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.2s ease-in-out;
    line-height: normal;
    color: var(--white);
    background-color: var(--red);
}

/* Left Aligned Banner */
.banner-left .banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    max-width: 540px;
}

/* Right Aligned Banner */
.banner-right .banner-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    width: 100%;
    max-width: 540px;
    text-align: right;
}

.banner-right .banner-content .banner-paragraph {
    max-width: none;
}

/* Centered Banner */
.banner-center .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 10%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 490px;
}

/* 50 Years Banner */
.banner-years .banner-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.banner-years .banner-heading {
    margin-bottom: 0;
    line-height: 0.85;
}

.banner-years .banner-heading .celebrating {
    color: var(--white);
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.banner-years .banner-heading .years {
    font-size: 67px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.banner-years .banner-heading .practical-guidance {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Accessibility for Banners */
.banner-content a:hover,
.banner-content a:focus {
    text-decoration: none;
}

/* Overriding Swiper JS Styles for Customization */
.swiper-button-prev,
.swiper-button-next {
    height: 30px !important;
    width: 30px !important;
    background-color: var(--gray);
    border-radius: 50%;
    top: var(--swiper-navigation-top-offset, 53%) !important;

}

.swiper-button-prev:after {
    content: '' !important;
    background-image: url('/images/swiper-js-prev.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 4px;

}

.swiper-button-next:after {
    content: '' !important;
    background-image: url('/images/swiper-js-next.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 4px;

}

.swiper-slide,
.swiper-container {
    background-color: var(--white) !important;
}