.navy {
    position: absolute;
    width: 100%;
    top: 0;
}

.navy .nav-link,
.navy .dropdown-item {
    font-size: 18px;
    color: #fff;
    padding: 8px 20px !important;
}

.navy .nav-link.active {
    color: #d5b464;
}

.navy .nav-link:hover,
.dropdown-item:hover {
    color: #d5b464;
    background: transparent;
}


/* use bg image to change toggle icon */
.navbar-toggler-icon {
    background-image: url("../Assets/bars-solid.svg");
}

.navy .container-fluid {
    position: relative;
    z-index: 1;
    padding: 0;
}

.navy .container-fluid::after {
    content: '';
    left: 0px;
    z-index: -10;
    position: absolute;
    bottom: 0;
    top: 0;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7),
            rgba(116, 116, 116, 0));
    right: 0;
}

.navbar-toggler:focus {
    outline: unset;
    box-shadow: none;
    border: none;
}

.navy .dropdown-item {
    padding: 8px 60px !important;
}


.navy .dropdown-item.active,
.navy .dropdown-item:active {
    background: transparent;
}



@media (max-width: 991.99px) {
    .hero-half .heroBanner1 {
        height: 100%;
    }

    .hero-half .bannerTextBlock1 {
        padding-top: 70px;
        padding-bottom: 0;
    }
    .hero-half .bannerTextBlockStory {
        padding-top: 70px;
        padding-bottom: 0;
    }

    .navy div#navbarText {
        background-image: linear-gradient(to top,
        rgba(0, 0, 0, 0.7),
        rgba(116, 116, 116, 0));
    }

    .navbar-brand{
        margin-left: 20px;
    }

    .navbar-toggler{
        padding-right: 20px;
    }
}

@media(max-width:767.99px) {
    .navbar-brand>img {
        width: 150px;
    }

    .hero-half {
        height: 34vh !important;
    }
}

@media(min-width: 992px) {
    .navy {
        display: none;
    }
}