.banner-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
    /*margin-top: 47px;*/
}

header {
    /* border-bottom: 1px solid #e0dfdf; */
    background: #000;
    margin-top:47px;
}

header .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    margin: 0px 10px;
}
.navbar-toggler{
    filter:invert(1)
}
header .nav-link:hover {
    color: #ffffff;
    border-bottom: 1px solid #fff;
}

.banner-main-wrapper {
    padding: 35px 0px 20px 0px;
    background: #000;
}

.heding-banner {
    font-size: 75px;
    color: #e9a319;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1;
    display: block;
}

.button-banner {
    padding: 13px 40px;
    color: #100f0f;
    background: #e9a319;
    border-radius: 1px;
    border: none;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    margin-top: 30px;
}

.button-banner a {
    color: #000;
    text-decoration: none;
}

.button-banner svg {
    width: 17px;
    fill: #000000;
}

.navbar-nav li {
    position: relative;
}

/* First level submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 4px 4px;
    z-index: 999;
    min-width: 180px;
}


.sub-menu li {
    position: relative;
    list-style: none;
}

.sub-menu li a,
.sub-menu li .inside-link {
    display: block;
    padding: 10px 20px;
    color: #020202;
    text-decoration: none;
    font-size: 14px;
}

.sub-menu li a:hover,
.sub-menu li .inside-link:hover {
    background-color: #dddddd;
}

/* Second level submenu (more-sub-menu) */
.more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background: #ffffff;
    min-width: 180px;
    border-radius: 0 4px 4px 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 10px;
    padding-left: 0px;
}
.top-frame{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

@media(min-width:768px) {
    .has-submenu:hover>.sub-menu {
        display: block;
    }
}

@media(max-width:768px) {
    .sub-menu.show {
        display: block;
        position:relative !important;
        left: 0px;
    }
    .more-sub-menu{
        box-shadow: none;
    }

    .nav-link.new-link::before {
        position: absolute;
        content: '';
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        border-top: .5em solid #000;
        border-right: .5em solid transparent;
        border-bottom: 0;
        border-left: .5em solid transparent;
    }
}

@media(max-width:991px) {
    .heding-banner {
        font-size: 36px;
    }

    .banner-main-wrapper {
        padding: 85px 0px 120px 0px;
    }
}