.header{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 25px;
    left: calc((100% - 800px ) / 2);
    z-index: 100;
    width: 800px;
    background: #0000001A;
    border-radius: 10px;
    z-index: 99999;
    flex-direction: column;
    align-items: center;
}

.header img{
    width: 200px;
    margin: 10px 0;
}

.header ul{
    display: flex;
    align-items: center;
    flex-direction: row;
    list-style: none;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 5px;
}

.header ul li{
}

.header ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 5px;
    display: block;
}

.header ul li.active a{
    background: #0B120B5C;
}


.mobile-header {
    display: none;
  }

@media only screen and (max-width: 600px) {
    .header {
      display: none;
    }

    .mobile-header{
        display: block;
        position: fixed;
        background: #0000001A;
        width: 90%;
        left: 5%;
        top: 20px;
        padding: 15px;
        border-radius: 10px;
        z-index: 999999;
        backdrop-filter: blur(50px);
    }

    .mobile-header-top{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-header img{
        width: 130px;
    }

    .mobile-header .hamburger{
        border-radius: 10px;
        width: 42px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        cursor: pointer;
    }

    .mobile-header-items ul{
        padding: 0;
        margin: 0;
    }

    .mobile-header-items ul li{
        background: #97FF8B12;
        display: flex;
        justify-content: center;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .mobile-header-items ul li a{
        color: #fff;
        text-decoration: none;
    }

    .closed-mobile{
        border-radius: 10px;
        width: 42px;
        height: 42px;
        display: none;
        justify-content: center;
        align-items: center;
        background-color: #D9D9D970;
        cursor: pointer;
        transform: rotate(45deg);
    }

    .closed-mobile i{
        transform: rotate(-45deg);
        color: #FF9090;
    }

    .mobile-header-items{
        display: none;
        margin-top: 35px;
    }
}