.bj-bannerblock {
    width: 100%;
    background: linear-gradient(180deg, #000000 -11.11%, rgba(0, 0, 0, 0) 89.74%);
    position: relative;
    z-index: 100;
}

header{
    width:100%;
    height:180px;
    position: relative;
    z-index: 100;
}

nav{
    width: 100%;
    height:100%;
    position: relative;
}

.navbar {
    justify-content: space-between;
}

.navbar .bj-logoblock{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: flex-start;    
    align-items: center;
    outline: none;
    position: relative;
    z-index: 1000;
}

.bj-logo{
    width: 120px;
}

.nav-menu{
    width: 80%;
    height: 100%;   
    justify-content: flex-end;
}

.navbar ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu li {
    padding-right: 30px;
    font-size: 14px;
}

.nav-menu li:last-child{
    padding-right: 0;
}

.menu-icons{
    height: 100%;
    display: flex;
    align-items: center;
}

.hamburger{
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.bar{
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bar:nth-child(2){
    margin-top: 5px;
}

.bar:nth-child(3){
    margin-top: 5px;
}

.bj-bannerbottomimg{
    display: none;
}

@media screen and (max-width:1660px) {
    header{
        height: 150px;
    }

    /* .nav-menu li{
        font-size: 16px;
    } */
}

@media screen and (max-width:1440px) {
    /* .nav-menu li{
        font-size: 14px;
    } */
}

@media screen and (max-width:1360px) {

    header{
        height: 120px;
    }

    .bj-logo{
        width: 100px;
    }

    .nav-menu li {
        font-size: 14px;
        line-height: 22px;
        padding-right: 20px;
    }
}

@media screen and (max-width:1200px) {
    .nav-menu li {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width:990px) {

    header{
        height: 100px;
    }

    .navbar .bj-logoblock{
        width: unset;
    }

    .navbar ul{
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .hamburger{
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 999;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu{
        position:fixed;
        left:-100%;
        top:0;
        gap:0;
        justify-content: center;
        flex-direction: column;
        background: #17073D;
        width: 100%;
        transition: all 0.5s ease-out;
        z-index:999;
        padding-left:0;
    }

    .nav-menu.open{
        clip-path:circle (1000px at 90% -10%);
        -webkit-clip-path:circle (1000px at 90% -10%);
        pointer-events: all;
    }
    
    .nav-menu.active {
        left:0px;
        transition: all 0.5s ease-out;
    }

    .navbar ul{
        padding-top: 130px;
    }
    
    .nav-menu li{
        padding-right: unset;
    }

    .nav-item .nav-link {
        transition: 0.7s ease;
    }
    .nav-item{
        margin:15px 0;
    }

    .bj-bannerbottomimg{
        width: 80%;
        position: absolute;
        /* left: 0; */
        right: 0;
        bottom: 0;
        z-index: 999;
        justify-content: flex-end;
        transition: all 0.5s ease-out;
    }
    
    .bj-bannerbottomlogo{
        width: 75%;
        
    }
}

@media screen and (max-width:768px) {
    .bj-logo {
        width:90px;
    }

    .nav-item{
        margin:15px 0;
    }

    /* .bj-bannerbottomlogo {
        width: 60%;
    } */
}

@media screen and (max-width:480px) {
    .nav-item{
        margin:12px 0;
    }

    /* .bj-bannerbottomlogo {
        width: 75%;
    } */
}

@media screen and (max-width:420px) {
    .navbar ul {
        padding-left: 50px;
    }
}