@import url(https://fonts.googleapis.com/css?family=Roboto);



body {
	background-color: white;
	font-family: 'Roboto', serif;
	background-image: none; /*change this before upload */
	background-position: bottom;
	background-repeat: no-repeat;
	background-size:cover;
	}
	


header {
	background: white;
	margin-top: -10px;
	margin-left: -8px;
	margin-right: -8px;
	opacity: 1;
	}

header::after {
	content:'';
	display: table;
	clear: both;
} 
	

.container {
	width: 80%; 
	margin: 0 auto;
}

#logo {
	float: left;
	height: auto;
	width: auto;
	max-width: 350px;
	max-height: 350px;
	padding: 0; 
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: -30px;
	
	}

#logo:hover {
	opacity: .9
}

nav {
	float:right;
	/* margin-top: 14px; */
	
	} 

nav ul{
	margin: 0;
	padding: 0;
	list-style: none;
	
	
} 

nav li {
    display:inline-block; 
	margin-left: 70px;
	padding-top: 55px;
    position: relative; 
}

nav a {
	color: #004a5c;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold; 
	
}

nav a:hover {
	color: #6C6C6C;
}

nav a::before {
	content:'';
	display: block;
	height: 5px;
	background-color: #004a5c;
	margin-top: 5px;
	
	position: absolute; 
	top: 0;
	width: 0%;
	
	transition: all ease-in-out 200ms;
}
	
nav a:hover::before {
	width: 100%;
}

		.toggle-btn { 
			width: 35px; 
			position: absolute;
			right: 30px;
			top: 50px; 
			display: none; 
		}

		.toggle-btn span{ 
			display: inline-block;
			width: 100%;
			height: 4px; 
			background-color: #004a5c;
			float: left;
			margin-bottom: 8px;
			

		} 
		
	
		

		

		@media (max-width: 1170px) {
			.toggle-btn { 
				display: block;
			}
			
			.navmenulinks {
				display: none; 
				width: 100%;
				
			}
			
			.navmenu {
				flex-direction: column;
				align-items: flex-start; 
				float: none; 
		
				
			}
			
			.navmenulinks ul {
				width: 100%;
				flex-direction: column;
			}
			
			.navmenulinks li {
				text-align: center;
				display: block;
				padding-top: 20px;
				padding-bottom: 20px;
				margin-left: -100%;
				margin-right: -100%;
				background-color: transparent;
				
				
			}
			
			.navmenulinks.active {
				display: flex;
			} 
			
			nav a:hover::before {
				display:none;
			}
			
			nav a{
				
			}
		}


@media (max-width: 450px) { 

	#logo {
		float: left;
		height: auto;
		width: auto;
		max-width: 200px;
		max-height: 200px;
		padding: 0; 
		margin-top: 20px;
		margin-bottom: 20px;
		margin-left: -20px;
	
	}

	.toggle-btn { 
			width: 28px; 
			position: absolute;
			right: 10px;
			top: 34px; 
			
		}
		
	.toggle-btn span{ 
			display: inline-block;
			width: 100%;
			height: 3px; 
			background-color: #004a5c;
			float: left;
			margin-bottom: 5px;
			

		} 


} 


.cutitle h1 {
	color: #004a5c;
	text-align: center;
}

.cutitle p {
	color: #004a5c;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
} 

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
  color: #004a5c;
  font-weight: bold;
}

.form-control {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 3px;
  color: #004a5c;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #004a5c;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


.input-textarea {
  min-height: 120px;
  width: 100%;
  padding: 3px;
  resize: vertical;
}

.submit-button {
  display: block;
  width: 50%;
  font-weight: bold;
  transform: translateX(50%);
  padding: 0.75rem;
  background: #004a5c;
  color: white;
  border-radius: 2px;
  cursor: pointer;
  border-color: #004a5c;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.submit-button:hover {
	color: #004a5c;
	background-color: white;
	box-shadow: 0 0 40px 40px white inset;
}