nav a {
 text-decoration: none;
 color: white;
}
nav{
 position: fixed;
 display: flex;
 height: 80px;
 width: 100%;
 background: #24262b;
 align-items: center;
 justify-content: space-between;
 padding: 0 50px 0 100px;
 flex-wrap: wrap;
 z-index: 5;
}
nav .logo{
 color: #fff;
 font-size: 33px;
 font-weight: 550;
}
nav ul{
 display: flex;
 flex-wrap: wrap;
 list-style: none;
}
nav ul li{
 margin: 0 5px;
}
nav ul li a{
 color: #f2f2f2;
 text-decoration: none;
 font-size: 18px;
 font-weight: 500;
 padding: 8px 15px;
 border-radius: 16px;
 letter-spacing: 1px;
 transition: all 0.3s ease;
}
nav ul li a:hover{
  color: black;
  border-radius: 16px;
  background: linear-gradient(141deg,#dee0e3 20%,white 80%);
}
nav ul li a.active {
  color: black;
  border-radius: 16px;
  background: linear-gradient(141deg,#dee0e3 20%,white 80%);
}

nav .menu-btn i{
 color: #fff;
 font-size: 22px;
 cursor: pointer;
 display: none;
}
input[class="checkbox"]{
 display: none;
}
input[class="checkbox"]:checked ~ ul {
 display: block;
}
input[class="checkbox"]:checked ~ .menu-btn i:before {
 content: "\f00d";
}
.content{
 position: relative;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 text-align: center;
 z-index: -1;
 width: 100%;
 padding: 0 30px;
 color: #1b1b1b;
}

@media (max-width: 1000px){
 nav{
   padding: 0 40px 0 50px;
 }
}

@media (max-width: 920px) {
 nav .menu-btn i{
   display: block;
 }
 #click:checked ~ .menu-btn i:before{
   content: "\f00d";
 }
 nav ul{
   overflow: hidden;
   position: fixed;
   top: 75px;
   left: -100%;
   background: #24262b;
   height: 100vh;
   width: 100%;
   text-align: center;
   display: block;
   transition: all 0.3s ease;
   z-index: 5;
 }
 #click:checked ~ ul{
   left: 0;
 }
 nav ul li{
   width: 100%;
   margin: 40px 0;
 }
 nav ul li a{
   width: 100%;
   margin-left: -100%;
   display: block;
   font-size: 20px;
   transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }
 #click:checked ~ ul li a{
   margin-left: 0px;
 }
 #click:checked ~ .cards1{
   display: none;
 }
 nav ul li a.active,
 nav ul li a:hover{
   background: none;
   color: cyan;
 }
 nav .logo{
 color: #fff;
 font-size: 25px;
 font-weight: 450;
}
}