/* Global View aka Desktop View */

body {
	background-color: white;
	max-width: 1440px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 20px 20px 20px;
	}

header{
	top: 0;
	z-index: 20;
	width: 100%;
	background-color: white;
}

Li{
	list-style: none;
}

a{
	color: black;
	text-decoration: none;
}

.container{
	width: 1440;
	margin: 0px 0px 0px 0px;
}

.subcontainer{
	width: 85%;
	margin: 0px 0px 0px 0px;;
	/*background-color: yellow;*/
}

.navbar{
	width: 100%;
	min-height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*background-color:green;*/
}

.nav-menu{
	display: flex;
	justify-content: space-between;
	align-items: right;
	gap: 30px;
	/*background-color:green;*/
}

.nav-branding{
	font-size: 18px;
	font-weight: 300;
	color: #808080;
	z-index:50;
	/*background-color:green;*/
}

.hamburger{
	display: none;
	cursor: pointer;
}

.bar{
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px 0px 5px 0px;
	transistion: all 0.3s ease;
	background-color: black;
}

#home{
	margin-top: 5px;
	/*background-color:green;
	border: 1px solid black;
	height: 100vh;*/
}

@media(max-width:1440px){
	.container{
	  width:100%;
	}
}

@media(max-width:768px){
	.hamburger{
	display: block;
}
	.hamburger.active .bar:nth-child(2){
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1){
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3){
		transform: translateY(-8px) rotate(-45deg);
	}
	
header{
	top: 0;
	z-index: 20;
	width: 100%;
	background-color: #e6e6e6;
}
	
.nav-branding{
	font-size: 20px;
	font-weight: 400;
	color: black;
	z-index:50;
	/*background-color:green;*/
}
	
	.nav-menu{
		position: fixed;
		z-index: 1;
		left: -100%;
		top: 65px;
		gap: 0;
		flex-direction: column;
		background-color:#d0d0d0;
		width: 100%;
		height: auto;
		text-align: center;
		transistion: 0.5s;
	}
	
	.nav-item{
		margin: 16px 0;
		z-index: 10;
	}
	
	.nav-menu.active{
		left: 0;
	}

}

