.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.header::before{
  content: '';
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0 ,0 , .1);
  backdrop-filter: blur(50px); 
  z-index: -1;
}

.header::after{
  content: '';
  position: absolute;
  top: 0;
  left:-100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg , transparent, red
  transparent);
}


/* #themeToggle{
  border: none; 
  background-color: transparent;
} */
.logox {
  
  font-size: 2rem;
  font-weight: 800;
  color: purple; 
  text-decoration: none;
  
}

.navbarr a{
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
}

#check{
  display: none;
}
.icons{
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
}


@media (max-width: 992px){
  .header{
    padding: 1.3rem 5%;
  }
}

@media (max-width:768px){
  .icons{
    display: inline-flex;
  }

  #check:checked~icons #menu-icon{
     display: none;
  }

  .icons #close-icon{
    display: none;
  }

  #check:checked~icons #close-icon{
    display: block;
 }
  .navbarr {
  
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba( 0, 0, 0, .1);
    backdrop-filter: blur(50px);
    box-shadow: 0.5rem 1rem rgba( 0, 0, 0, .1) ;
    overflow: hidden;
    transition: 0.3s ease;
  
  }

  #check:checked~.navbarr{
   height: 17.7rem;
 }
  .navbarr a{
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: 0.3s ease;
  }

  #check:checked~.navbarr a{
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s *var(--i));
  }
}