*{
    margin: 0;
    padding: 0;
    font-family: HK Grotesk, Avenir, Montserrat, Corbel, source-sans-pro, system-ui, -apple-system, sans-serif;;
}

.logo img{
    width: 230px;
}

header {
    align-items: center;
    background: linear-gradient(to left,rgba(104, 84, 234, 0.123),rgba(104, 84, 234, 0.123), rgb(47, 43, 67));
    /* background: rgba(104, 84, 234, 0.123); */
    border-bottom: .1rem solid #f1f8fe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    transform: translateY(0) translateZ(0);
    transition: transform .25s cubic-bezier(.45,.05,.55,.95) 0ms, background-color .25s cubic-bezier(.45,.05,.55,.95) 0ms;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media only screen and (min-width: 1500px) {
    header {
        border: none;
        height: 30px;
    }
}

@media only screen and (min-width: 768px) {
    header {
        height: 100px;
    }
    .drp_menu_btn{
        display: none;
    } 
}

.drp_menu_btn{
    font-size: 22px;
    position: absolute;
    right: 50px;
    
}

@media only screen and (max-width: 1500px) {
    .menu{
        display: none;
    }
    .acc_btn{
        display: none;
    }
    header {
        border: none;
        height: 50px;
    }
    .drp_menu_btn{
        display: flex;
    }
    .logo img {
        height: 50px; 
    }
}

.header_grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    position: relative;
    left: 1.8%;
    align-items: center;
    display: flex;
    
}

.logo h1{
    font-family: fantasy;
    font-weight: 100;
}



.menu_div{
    position: relative;
    right: 30%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 40px; 
}

.menu p{
    font-size: 1.3em;
    cursor: pointer;
}

a{
    text-decoration: none;

}

a:active{
    color:#0c0c0c;
}


.acc_btn{
    background: rgb(104, 84, 234);
    font-size: 1.2em;
    color:#f1f8fe;
    border-radius: 10px;
    padding: 5px 10px;
}

