/* header {
    background-color: #e6f4ff;
    top: 0px;
    text-align: center;
}


.navbar-toggle {
    top: 0;
    width: 100%;
    background: #00406ae4;
    height: 80px;
    position: fixed;
    display: None;
}

#nav-trigger {
    background: #002e4de4;
    color: #fff;
    border: none;
    padding: 0;
    margin: 15px;
    font: inherit;
    cursor: pointer;
    outline: none;
    width: 50px;
    font-size: 30px;
    position: absolute;
    right: 0;
}

#nav-trigger:hover, #nav-trigger.active {
    background-color: #237db9; 
}


nav {
    background: #00406ae4; 
    text-align: center;
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 800; 
}

.nav-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

#navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

#navbar li {
    display: inline-block; 
    margin: auto;
    padding: 5px;
    color: #fff;
}

#navbar a {
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    font-weight: 550;
}

#navbar a:hover, #navbar a.active {
    background-color: #022c48; 
}

#navbar .location {
    color: #d6cd47;
}

#navbar .submenu {
    display: none;
    border-top: 3px solid #d6cd47;
    background-color: #022c48;
    position: absolute;
    flex-direction: column;
    width: auto;
    height: auto;
    z-index: 1200;
    
}

#navbar li:hover .submenu, #navbar a:hover .submenu{
    display: flex;
    
}


@media screen and (max-width: 800px) {
    .navbar-toggle {
        display: block;
        z-index: 1000; 
    }

    #navbar {
        display: none; 
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
    }

    #navbar li {
        display: block;
        width: 100%;
        margin: 0;
    }

    #navbar a {
        display: block;
        width: 100%;
        text-align: left;
    }
} */

header {
    background-color: #e6f4ff;
    top: 0px;
    text-align: center;
}


.title-container {
    display: flex; /* Use flexbox */
    justify-content: center; /* Horizontally center the child */
    align-items: center;
    height: 65vh;          /* KEY CHANGE */
    min-height: 400px;     /* prevent too small */
    max-height: 650px;     /* prevent too large */    
    background-size: cover; /* Adjusts the size of the background image to cover the entire container */
    background-position: center 35%;
}

.small-title-container {
    display: flex; /* Use flexbox */
    justify-content: center; /* Horizontally center the child */
    align-items: center;
    height: 150px;
    background-size: cover; /* Adjusts the size of the background image to cover the entire container */
    background-position: center;
    margin-top: 80px;
}

.small-title-container .title h1 {
    font-size: 20px;
    color: #1f3d66;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: none;   /* IMPORTANT */
}

.small-title-container .title h3 {
    font-size: 16px;
    color: #444;
    font-weight: 400;
    text-shadow: none;   /* IMPORTANT */
}

.title {
    text-align: center;
    line-height: 1.3;
    margin: 0 auto;
    padding:  40px 20px;
    color: #ffffff;
    width: 800px;
}

.title h1{
    text-transform: uppercase;
    font-size: 32px;
    text-shadow: 0.1em 0.1em 0.1em #000000;
    font-weight: bold;
    font-style: normal;
}

.title h1 span{
    text-transform: none;
}

.title h3{
    margin: 18px;
    font-size: 20px;
    text-shadow: 0.1em 0.1em 0.1em #000000;
    font-weight: bold;
    font-style: normal;
}

@media screen and (max-width: 1300px) {
    .title h1{
        font-size: 30px;
    }

    .title h3{
        font-size: 15px;
    }
}
