header .banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
    position: relative;
}
header .banner:not(.no-banner) {
    height: 878px;
}
header .banner.h500 {
    height: 500px;
}
header .banner::after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    background-color: rgba(12, 12, 12, 0.34);
    z-index: 1;
}
header .no-banner::after {
    background-color: var(--darkMaroon);
}
.banner-container {
    height: calc(100% - 250px);
}
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-title {
    font-family: var(--font-AvantGardeDemi);
    font-size: var(--bannerHeadingFont);    
    font-style: normal;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.25);
}
.inner-page-banner-content {
    align-items: flex-start;
    justify-content: flex-end;
    /*padding-bottom: 66px;*/
}

.menu-bar {
    background-color: transparent;
    padding: 42px 0 23px;
    position: relative;
    z-index: 3;
    background-image: linear-gradient(180deg, rgba(1, 1, 1, 0.70) 1.92%, rgba(1, 1, 1, 0.50) 47.12%, rgba(1, 1, 1, 0.00) 100%);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
}
.no-banner .menu-bar {
    padding: 42px 0 42px;
    background-image: none;
}
.menu-bar .navbar {
    padding: 0;
}
.menu-bar .navbar .container-fluid {
    align-items: flex-start;
}

.home .menu-bar{
    display: none;
}

.navbar-brand {
    width: 231px;
    height: 129px;
    flex-shrink: 0;
    aspect-ratio: 77/43;
}

@media(min-width:992px) {
    
}
@media(max-width:1400px) {
    .navbar-nav {
        gap: 25px;
    }
}

@media(max-width:992px) {
    header .banner:not(.no-banner) {
        height: 578px;
        position: relative;
    }
    .navbar-toggler:focus,
    .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
    }
    header .banner .navbar-toggler.navbar-hamburger {
        position: absolute;
        top: -150px;
        right: 0;
    }
    .menu-bar .navbar .container-fluid {
        justify-content: center;
    }
    .navbar-brand {
        margin: 0;
        padding: 0;
    }    
    
}
@media(max-width:767px) {
    header .banner:not(.no-banner) {
        height: 578px;
    }
    .banner-container {
        height: calc(100% - 220px);
    }
}