@import url('https://fonts.googleapis.com/css2?family=Graduate&display=swap');
*{
	padding: 0;
	margin: 0;
	font-family: 'Graduate',  cursive;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}
html{
	scroll-behavior: smooth;
}
.header.active{
	background:whitesmoke;
}
header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 28px 12%;
	transition: all .50s ease;
}
.logo{
	display: flex;
	align-items: center;
}
.logo img{
	height: 100px;
	width: 100px;

}
.navbar{
	display: flex;
}
.navbar a{
	color: #000000;
	font-size: 1.3rem;
	font-weight: 600;
	padding: 5px 0;
	margin: 0px 30px;
	transition: all .50s ease;
}
.navbar a:hover{
	color: aqua;
}
.main{
	display: flex;
	align-items: center;
}
.main a{
	margin-right: 25px;
	margin-left: 10px;
	color: #000;
	font-size: 1.5rem;
	font-weight: 500;
	transition: all .50s ease;
}
.main a:hover{
	color:aqua;
}
#menu-icon{
	font-size: 35px;
	color: #000;
	cursor: pointer;
	z-index: 10001;
	display: none;
}


@media (max-width: 1280px){
	header{
		padding: 14px 2%;
		transition: .2s;
	}
	.navbar a{
		padding: 5px 0;
		margin: 0px 20px;
	}
}

@media (max-width: 1090px){
	#menu-icon{
		display: block;
	}
	.navbar{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 270px;
		height: auto;
		background: whitesmoke;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		border-radius: 10px;
		transition: all .50s ease;
	}
	.navbar a{
		display: block;
		margin: 12px 0;
		padding: 0px 25px;
		transition: all .50s ease;
	}
	.navbar a:hover{
		color: whitesmoke;
		transform: translateY(5px);
	}
	.navbar a.active{
		color: #000;
	}
	.navbar.open{
		right: 0px;
	}
}



.scroll-up-btn{
    height: 45px;
    width: 42px;
    background: crimson;
    position: fixed;
    right:30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: aliceblue;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    opacity: 1;
    bottom: 30px;
    pointer-events: auto;
}