/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    background: transparent;
}

.headborder {
    position: relative;
    background: transparent;
    border: none;
    padding: 10px;
}

.headborder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(228, 148, 34, 0) 9.5%, #e49422 50%, rgba(228, 148, 34, 0) 90.01%);
}

#header.header-scrolled {
    background: #070500;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#header .hd {
    padding: 6px 0;
    border: none;
    box-shadow: none;
    height: auto;
    background: transparent;
    position: relative !important;
    z-index: 1 !important;
    border-radius: 12px !important;
}



.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar .nav-link,
.navbar .nav-link:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #efbf04;
}

@media (max-width: 1108px) {
    #header {
        backdrop-filter: unset !important;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
    color: #e39322;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    display: none;
}

@media (max-width: 700px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        background: #070500;
    }
}

.navbar.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #10100fba;
    transition: 0.3s;
    z-index: 999;
    backdrop-filter: blur(1px);
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 26px;
    right: 15px;
}

.navbar-mobile ul {
    border: 2px solid transparent;
    background: linear-gradient(39deg, #221B10 0%, #14120e 51%, #221B10 100%) padding-box, linear-gradient(138deg, #83581c 0%, #48391aa8 16%, #dc920200 51%, #48391aa8 85%, #83581c 100%) border-box;
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    overflow-y: auto;
    transition: 0.3s;
    height: fit-content;
    padding-right: 0px !important;
    margin-right: 0px !important
}


@media (max-width: 1711px) {

    .header-scrolled.p-cust {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .cust-margin.head {
        padding: 60px 0;
    }
}