.header__sidebar{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.847);
    backdrop-filter: blur(2px);
    z-index: 100;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start ;
    list-style: none;
    gap: 1rem;
    text-decoration: none;
}
.header__sidebar li{
    padding: 1rem;
    
}
.sidebar__close{
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 2rem;
    cursor: pointer;
}
.header__sidebar a{
    font-size: var(--size-lg);
    color: var(--clr-dark);
    text-decoration: none;
}
@media (min-width: 475px) {
    .header__sidebar{
        width: 15.625rem;
        display: none;
    }
}
/* sm */
@media (min-width: 640px) {
    .header__sidebar{
        
        display: none;
    }
    
}
@media (min-width: 768px) {
    .header__sidebar{
        display: none;
    }
}
