.header {
    width:95.8%;
    z-index: 1000;
    position: sticky;
    background: var(--darkBackground);
    height: 4.5rem;
    top: 0;
    margin: 0 2rem;
  
}

.white-header{
    background-color: var(--white);
    width: 100%;
    box-shadow: rgb(108 108 108 / 42%) 16px 3px 20px 0px;
    margin: 0rem!important;
}

.header .title {
    overflow: hidden;
    -webkit-animation: expand 1s;
    position: fixed;
    width: fit-content;
    top: 0.2rem;
    left: 3rem;
    /*background-color: var(--active);*/
    border-radius: 0.5rem;
    line-height: normal;
    text-align: center;
    font-size: 26px;

    font: normal normal normal 26px/1.4em reklamescriptw00-medium, cursive;
 

}
.header .title img{
    
    height: 100%;
    width:3.6rem;
}
.header .title a {
    color: var(--white);
    text-decoration: none;
}


.menu {
    display: grid;
    grid-template-columns: repeat(6,auto);
    justify-content: space-between;
    color: white;
    background-color: var(--white);
    width: fit-content;
    overflow: hidden;
    position: fixed;
    top: 0.2rem;
    right: 3rem;
    border-radius: 0.5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-animation: expand 1s;
}



 
#menu-btn-mobile {
    display: none;
    grid-template-rows: repeat(3,1fr);
    justify-items: center;
    height: 3.4rem;
    width: 3rem;
    padding: 0.4rem;
    border-radius: 0 0  1rem 1rem;
    position: fixed;
    top: 0.1rem;
    right: 0.4rem;
    fill: var(--white);
    cursor: pointer;
    background-color: var(--white);
    box-shadow: rgb(117 119 121 / 20%) 1px 13px 24px;
    
}

#menu-btn-mobile span{
    background-color: rgba(var(--lineColor,var(--color_11)),var(--alpha-lineColor,1));
    border-radius: 2px;
    height: 2px;
    left: 0;
    transition: all .25s ease-in-out;
    width: 70%;
}

#slider_menu:checked ~ .menu-mobile
{
 display: grid!important;

}
.header .header  #menu-btn-close-mobile{
    display: none;
}
#slider_menu:checked   #menu-btn-close-mobile{
    display: inline;
}
.menu li {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: rgb(39, 36, 67);
    /* font: normal normal normal 16px/1.4em din-next-w01-light, din-next-w02-light, din-next-w10-light, sans-serif; */
    padding: 1.2rem 2rem;
    cursor: pointer;
    overflow: hidden;

}

.menu li a,
.menu li a{
    height: 100%;
    width: 100%;
        font-family: "poppins", sans-serif;
    color: #000;
    font-weight: bold;
}
.menu li:not(.active):hover  {
    animation: mymove 0.2s ;
    animation-fill-mode: forwards;

    color: var(--white);

}
.menu li:not(.active):hover a {
   
    color: var(--white);

}
.menu .active ,
.menu .active a
{
    background-color: var(--active);
    color: var(--white);

}




@media only screen and (max-width: 920px) {
    
    .header .title img{
        width: 4.6rem;
    }
    .white-header, .header{
        width: 100%;
        margin: 0;
    }
    .header .menu {
        display: none !important;
    }

     .header .title {
        left: 0 !important;
        right: 0;
        /* padding: 0.5rem 1rem; */
        margin:-1rem auto;
    }
 
   .header #menu-btn-mobile {
        display: grid!important;
        margin-top: 0.4rem;
    }
}