.container-large-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    /* Add any other styles needed for the image container */
}

.overlay-white::before,
.overlay-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay-white::before {
    background-color: rgba(255, 255, 255, 0.1); /* White overlay with 50% opacity */
}

.overlay-blue::before {
    background-color: rgba(0, 73, 145, 0.1); /* Blue overlay with 50% opacity */
}

.heading-wrapper {
    position: relative;
    z-index: 2; /* Ensure the heading is above the overlay */
    padding-top: 2rem;
    padding-bottom: 2rem;
}
}



/* Splash */
.container-large-bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: row;
    height:35vh;
}

.heading-wrapper h1 {
    color: var(--blue);
    text-align: center;
    font-weight: bold;
    font-family: 'Georgia', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Adds a shadow to the text */
}

@media (max-width: 768px) {
.container-large-bg-image {
  height:50vh;
}
}