html {
	font-size: 1vw;
}
body, p, h1, h2, h3, h4, ul, li {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}

body {
	max-height: 100vh;
	font-family: 'Montserrat', sans-serif;
}
#nav-container > nav > ul {
	list-style-type: none;
}
/* NAVIGATION */
#nav-background {
	position: fixed;
	top: 0;
	z-index: 9000;
	width: 100%;
	/*	background-color: rgba(254, 254, 254, .5); */
	background-image: linear-gradient(rgba(254, 254, 254, .6) 0, rgba(254, 254, 254, .5) 75%, rgba(254, 254, 254, 0) 78%);
}
#nav-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: 'Montserrat', sans-serif;
}
#nav-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
#nav-logo {
	color: #444;
	text-decoration: none;
    background-image: url("../images/logo.png");
    background-size: 100%;
    background-repeat: no-repeat;
    display: block;
    width: 21rem;
    height: 5rem;
}
#nav-logo:hover {
	color: #666;
}
.logo {
	width: 20vw;
}
.nav-ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 1rem;
}
.nav-ul > li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.nav-link {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	padding: 5px;
	border-radius: 20px;
	font-size: 1rem;
	-webkit-transition: 1rem;
	transition: 1rem;
}
.nav-link:hover {
	color: #999;
}
.active-link {
	font-weight: 700;
}
.active-link:hover {
	color: #444;
}
.blink {
	background-color: #022A4D;
	color: #fff;
	font-weight: 700;
	transition: all linear .2s;

}
.nav-link-bold:link {
	color: #fff;
	text-decoration: none;
}
.blink:hover {
	opacity: .8;
	background-color: #FFA300;
	box-shadow: 1px 1px 2px 2px #999;
	color: #f1f1f1;
}
.nav-link-bold:visited {
	color: #fff;
	text-decoration: none;
}
/* END NAVIGATION */
/* MOBILE MENU */
@media screen and (max-width: 700px) {
    html {
        font-size: 2vw;
    }
    
    
    #nav-background {
        background-image:none;
        
    }
    
    #nav-logo {
        color: #444;
        text-decoration: none;
        background-image: url("../images/turiya_reciclaveis_mobile.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        display: block;
        width: 18rem;
        height: 6rem;
    }
    
    #nav-header {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: right;
        justify-content: flex-end;
        -webkit-box-align: right;
        -webkit-align-items: right;
        -ms-flex-align: right;
        align-items: right;
        padding: 0;
    }
    
	#nav-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
        padding: 0;
	}
	#nav-menu-button {
		padding: 1rem;
        margin-top: 0;
		background-color: #f1f1f1;
		cursor: pointer;
        background-color: #003ec9;
        background-image: url("../images/mobile/btMenu.png");
        background-repeat: no-repeat;
        background-position: center;
        width: 7rem;
        height: 3.9rem;
        margin-top: -0.2rem;
	}
    
    #nav-menu-button:hover {
        background-blend-mode:color-dodge;
    }
	.nav-ul {
		display: block;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow: auto;
		direction: rtl;
		transition: max-height 5rem;
		max-height: 35rem;
        background-color:rgba(0, 62, 201, 0.86);
        padding: 0;
	}
	.hide-ul {
		max-height: 0;
        display: none;
	}
	.nav-link {
		padding: 1rem 0;
		font-size: 1.5rem;
		border-bottom: 1px solid #f4f4f4;
        background-color: #A5BBEC;
        color: #000;
        border-radius: .5rem;
        border: none;
        margin: 1rem;
	}
    
    .blink {
        background-color: #FFA300;
        font-weight: 700;
        border-radius: .5rem;
        border: none;
        margin: 1rem;
    }
    
	.logo {
		width: 25vw;
	}
}
/* END MOBILE MENU */
/* DESKTOP MENU */
@media screen and (min-width: 701px) {
	#nav-menu-button {
		display: none;
	}
	.nav-link {
		flex-basis: auto;
		font-weight: 600;
		padding: .5rem 1.5rem;
	}
}
/* This moves the logo so that it's not touching the left side */
@media screen and (max-width: 1100px) {
	#nav-logo {}
}

/* END DESKTOP MENU */
