/* global css */
@font-face {
	font-family: 'Braganza';
	src: url('/fonts/AkzidGrtskProMed.otf');
	font-weight: normal;
	font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

body {
	margin: 0;
	font-family: 'Braganza', sans-serif;
}

main {
	min-height: calc(100vh - 192px);
	max-width: 2000px;
	margin: 0 auto;
}

.hidden-title {
	position: absolute;
	width: 0px;
	height: 0px;
	left: -9999px;
}

/* nav style */
.navbar {
	height: 70px;
	padding: 18px;
	padding-left: 30px;
	padding-right: 30px;
}
	
.header-img-container {
	width: 200px;
	float: right;
	padding-top: 22px;
	margin-right: 30px;
}
	
.header-img {
	width: 100%;
	height: 100%;
}
	
.nav_menu {
	max-width: calc(100% - 250px);
	height: 100%;
	float: left;
	
	display: flex;
	flex-wrap: wrap;
	align-items:center;
}
			
.nav {
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	
	color: black;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 14px;
}

.nav:hover {
	color: black !important;
}
	
.hamburger {
	display: none;		
}
	
@media screen and (max-width: 835px) {
	main {
		min-height: calc(100vh - 159px);
	}

	.nav {
		position: relative;
		float: none;
		display: block;
		margin-top: 20px;
		margin-left: 25px;
		
		text-align: left;
		font-weight: bold;
		transition: .3s;
	}
	
	.navbar {
		height: 45px;
		padding-top: 6px;
		padding-bottom: 6px;
		padding-left: 0px;
		padding-right: 0px;
	}
		
	.hamburger {
		float: right;
		display: block;
		padding-top: 10px;
		padding-right: 20px;
		width: 24px;
		height: 24px;
	}
		
	.header-img-container {
		position: static;
		float: left;
		margin-left: 20px;
		padding-top: 10px;
	}
		
	.nav_menu {
		display: block;
		float: none;
		height: 100%;
		max-width: 80%;
		width: 80%;
		padding-top: 20px;
		
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		
		background-color: white;
		
	}
	
	.invis {
		transform: translateX(-100%);
	}
	
	.vis {
		transform: tranlateX(0%);
	}
	
	.slide {
		transition: .5s;
	}
}

@media screen and (max-width: 320px) {
	.hamburger {
		padding-right: 10px;
	}
}

/* footer style */
.braganza-footer {
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.social-icon {
	height: 22px;
	width: 22px;
	transition: .3s;
}

@media screen and (max-width: 768px) {
	.social-icon {
		height: 20px;
		width: 20px;
	}
}


