* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    position: relative;
}
.nav-k {
    height: 8vh;
    background:  var(--main-black);
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    z-index: 100;
    -webkit-box-shadow: 1px 11px 15px 3px rgba(0,0,0,0.52); 
    box-shadow: 1px 11px 15px 3px rgba(0,0,0,0.52);
    animation: menu-animation 1s both ease-in-out; 
}
/* .header-paper {
    -webkit-box-shadow: 1px 11px 15px 3px rgba(0,0,0,0.52); 
    box-shadow: 1px 11px 15px 3px rgba(0,0,0,0.52);
} */
.nav-links {
    min-width: 25vh;
    max-width: 650px;
	position: relative;
}
.f-cz-info {
	position: absolute;
	bottom: 0px;
	color: orangered;
	opacity: 0;
	transition: .3s;
	
}
.nav-links li:first-child:hover .f-cz-info {
	opacity: 1;
}
.nav-links {
    display: flex;
    list-style: none;
    width: 65%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
   
}
.nav-item {
    color: var(--main-white);
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
}
.nav-active {
    color: var(--main-orange);
}
.nav-item:hover {
    color: var(--main-orange);
}
.header-paper {
    width: 100%;
    height: 25px;
}
@keyframes menu-animation {
    0% {
        top: -100px;
    }
   100% {
       top: 0;
    }
    
}
@media screen and (max-width: 768px) {
   
    .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 5px;
    }
    .hamburger {
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
    }
    .nav-links {
       /* position: fixed; */
       background:  var(--main-black);
       height: 100vh;
       min-width: 100%;
       flex-direction: column;
       justify-items: flex-start;
       clip-path: circle(50px at 90% -10%);
       -webkit-clip-path: circle(50px at 90% -10%);
       transition: all .5s ease-out;
    }
    .nav-links.open {
        clip-path: circle(1200px at 90% -10%);
        -webkit-clip-path: circle(1200px at 90% -10%);
        pointer-events: all;
    }
   .f-cz-info {
	   top: 65px;
	   opacity: 0;
	   height: 20px;
	   font-size: 10px;
	}
}

.f-cz {
	color: red;
}