@charset "UTF-8";


*{
	margin: 0px;
	padding: 0px;
/*	box-sizing: border-box;
*/	font-family: "Myriad Pro", "Helvetica", "Gill Sans", "Gill Sans MT",  "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

nav{
    position: fixed;
    padding: 5px;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 130px;
    align-items: center;
    background-color: #111;
}


.gallery{
	height: 130px;
}

.logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 5%;
	
}

.logotype a{
	color: #fff;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 2px;
	text-decoration: none;
}

.logotype a:hover{
	color: #555;
}

.logo img:hover{
	opacity: 0.5;
	transition: opacity 0.5s;
	}	

.nav-links{
	display: flex;
	padding-right: 5%;
}

.nav-links li{
	list-style: none;
	padding-right: 15px;
    padding-left: 15px;	

}

.nav-links a{
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 2px;
}


.nav-links a:hover{
		color: #555;
	}

.nav-links.short{
		display: none;
	}

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

.burger div{
	width: 20px;
	height: 2px;
	background-color: #fff;
	margin: 5px;
	transition: all 0.3s ease;
}

.buttontwo{
	display: none;
}

.nav-links-m{
	display: none;
}

.navigation-active{
	background-color: #111;
}

@media all and (max-width: 1100px){
	.nav-links.short{
		display: flex;
	}
	.nav-links{
		display: none;
	}
}


/*@media  all and (max-width: 850px){
	
	body{
		overflow-x: hidden;
	}
	
	nav{
    position: fixed;
    padding: 5px;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 100px;
    align-items: center;
    background-color: #111;
}*/
	
.navigation-active{
	background-color: #fff;
	transition: color 1s ease-out;

}	
	
	
.logotype a{
	font-size: 18px;
	font-weight: normal;
	padding-left: 5px;
	}	

	
.logo{
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-right: 60%;
}

.logo img{
		width: 80px;
		height: 80px;
		
	}	
.button{
		display: none;
	}
	
.buttontwo{
	display: flex;
}
.nav-links.short{display: none;}
	
.nav-links {display: none;}	
	
.nav-links-m{
		position: fixed;
		right: 0px;
		top: 100px;
		height: auto;
		background-color: #111;
		display: flex;
		justify-content: space-around;
		flex-direction: column;
		align-items: flex-start;
		height: calc(100vh - 100px);	
		width: 100%;
		z-index: 200;
		transform: translateY(-100%);
	}
	
	
	
	.nav-links-m li{
	list-style: none;
	padding-left: 10%;	
}
	
	
	
	
	
	.nav-links-m a{
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;	
	font-weight: lighter;	
}
	
	
	
	.nav-links-m a:hover{
		color: #aaa;
	}

	
	.burger{
	
		display: block;
		padding-right: 5%;
		}
}





@media  all and (max-width: 450px){
	
nav{
    position: fixed;
    padding: 5px;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 60px;
    align-items: center;
    background-color: #111;
	transition: color 1s ease-out;

}
	
	

.logotype a{
	font-size: 18px;
	font-weight: normal;
	padding-left: 5px;
	}	

	
.logo{
	display: flex;
	flex-direction: row;
	align-items: center;
	
}

.logo img{
		width: 60px;
		height: 60px;
		
	}	
	
.nav-links-m{
		top: 60px;
		height: clac(100vh - 60px);
	}
	

	
}





.nav-active{
	transform: translateY(0%);
	transition: transform 0.35s ease-out;
}



@keyframes navLinkFade{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,5px);
	background-color: #111;
}

.toggle .line2{
	opacity: 0;
}

.toggle .line3{
	transform: rotate(45deg) translate(-5px,-5px);
	background-color: #111;
}	

.toggle .circle{
    opacity: 0;
	}	
