h1 {
    font-size: 70px;
}

.navigation {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100vw;
    padding-top: 10px;
    z-index: 2000;
}

#hamburger {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

img#bannerLogo {
    width: 130px;
    height: 80px;
    display: block;
    margin: 0;
    padding:0
}

ul {
    margin-bottom: 20px;
    margin-top: 10px;
}

li {
    float: left;
}

.dropdown {
    position: absolute;
    left: 0;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    width: 100vw;
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
 }

.nav_img_title {
    text-align: center;
    font-size: 18px;
    display: none;
    padding-top: 200px;
    cursor: pointer;
    height: 400px
}


.nav-item:hover .dropdown-content {
    display: block;
}

.about {
    float: left;
    width: 300px;
    height: 400px;
    margin: 4px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.nav-link {
    height: 60px;
}

.drop-down-container-a {
    width: 40%;
    height: auto;
    float: left;
}

.drop-down-container-b {
    width: 60%;
    height: auto;
    float: left;
    background-color: lightgrey;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    padding-top: 15px;
}

.about:hover .nav_img_title {
    display: block;
    background-color: rgba(0,0,0,0.8);
}

a.about-links {
    margin-left: 40%;
    color: #242124
}

a.about-links:hover {
    color: #004953
}


.caret {
    display: inline-block;
    width: 10px;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.caret:hover {
    border-top-width: 0;
    border-bottom: 4px solid #fff;
}

.title{
    margin-left:40%
}

.navigation {
    backdrop-filter: blur(6px);
}

.about {
    position: relative;
    min-height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .about::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05) );
        z-index: 1;
    }

.nav_img_title {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about:hover .nav_img_title {
    opacity: 1;
    color:white
}