
@font-face {
    font-family: "Noto Serif";
    src:url(/assets/fonts/NotoSans-Regular.ttf);
}

@font-face {
    font-family: "raleway";
    src:url(/assets/fonts/Raleway-Regular.ttf);
}

@font-face {
    font-family: "SysFalsoW00-italic";
    src:url(/assets/fonts/SysFalso-W00-Italic.ttf);
}

header {
	height: 100vh;
	width: 100vw;	
}

.navbar {
	font-family: "raleway";
    font-style: normal;
    display: flex;
    align-items: center;
    position: fixed;
	justify-content:flex-end;
    font-size: 0.8em;
    font-weight:700;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    z-index: 9;
    background-color: #00000046;
    padding-right: 50px;
}

.navbar ul{
    display: flex;
	justify-content:flex-end;
    align-items: center;
    list-style: none;
}

.navbar ul li a{
    text-decoration: none;
    color: #ffffff;
    padding: 0 30px;
    box-sizing: border-box;
    
}

.scroll-active{
    background-color: #00000049;
    backdrop-filter: blur(7px);
}
.scroll-active ul li a{
    color: #ffffff;
    
}


.en {
    top: 0;
    left: 0;
	display: flex;
	justify-content: flex-end;
	padding-left: 40px;

}
.en button {
	position: relative;
	align-items: center;
	justify-content:center;
	font-family: "raleway";
    font-size: 0.8em;
    font-weight:700;
	color: rgb(255, 255, 255);
	height: 25px;
	width: 80px;
	border-radius: 40px;
	border: 2px solid rgb(255, 255, 255);
	transition: all 0.5s ease-out;
	background-color: rgba(255, 255, 255, 0);

}

.en button:hover,
.en button:focus {
	color:#e7b670;
	background-color: rgb(255, 255, 255);	
}

.menu-btn {
    display: none;
    }
    
    .navbar .menu-btn { 
        position: fixed;
        left: 20px;
        width: 20px;
    }
    

    @media screen and (max-width: 1024px) {
        .navbar {
            position: fixed;
            padding: 0;
            left: 0;
			background-color: #00000042;
			padding-bottom: 20px;
        }
        .navbar .menu-btn { 
            display: block;
            left: 45px;
            top: 30px;
            width: 20px;
        }
            
        .nav-links {
            top: 0;
            left: 0;
            position: absolute;
            background-color:#00000059;
            backdrop-filter: blur(7px);
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: -100%;
            transition: all 0.5s ease;  
        
        }
        
        .nav-links.mobile-menu {
            margin-left: 0;
        }
        
        .nav-links ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .navbar .nav-links ul li {
        margin: 25px 0;
        font-size: 1em;
    }
    
    .en {padding-top: 25px;
        padding-right: 60px;}

    
    }




