*{
	margin: 0;
	padding: 0;
	color: #444444;
}

body{
	font-family: 'Roboto', sans-serif;
}

a{
	text-decoration: none;
}

textarea{
	margin: 5px 0;
	resize: none;
	padding: 10px;
	font-size: 12pt;
	font-family: 'Roboto', sans-serif;
	border-radius: 5px;
	border: 2px solid #CCCCCC;
	outline: none;
	width: 30vw;
	min-width: 300px;

	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

input{
	margin: 5px 0;
	padding: 10px;
	font-size: 12pt;
	font-family: 'Roboto', sans-serif;
	border: 2px solid #DDDDDD;
	border-radius: 5px;
	outline: none;
	min-width: 0;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

.h-captcha {
	margin: 5px 0;
}

input:focus{
	border-color: #13629d;
}

textarea:focus{
	border-color: #13629d;
}

#navbar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 3%;
	padding-right: 3%;
	margin-bottom: 2vw;

	box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
}

#navimage{
	height: 80px;
	max-height: 100px;
	margin: 20px 0;
}

#navmenu{
	display: flex;
	list-style-type: none;
}

.navitem{
	text-align: center;
	flex: 3;
	margin: 0 20px;
}

.navitem a{
	width: 100%;
	display: inline-block;
	padding: 20px 10px;
	border-bottom: 2px solid #DDDDDD;

	/* TRANSITIONS */
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
	/* TRANSITIONS */
}

.navitem a:hover{
	border-color: #13629d;
	color: #13629d;
}


@media all and (max-width: 650px) {
	nav{
		align-items: center;
		justify-content: center;
	}

	#navbar{
		flex-wrap: wrap;
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
		padding-top: 25px;

		margin-bottom: 0;
	}

	#navmenu{
		flex-direction: column;
		justify-content: center;
		width: 100%;
		display: none;
	}

	.navitem{
		margin: 0;
	}

	.navitem a{
		padding: 20px 0;
	}
}
