	body {
	color:#222;
	font-family: 'Nunito', sans-serif;
	margin:0px;
	padding:0px;
}
h1 {
	text-transform: capitalize;
	font-weght:400;
	font-size:28px;
}
h2 {
	font-size:20px;
	font-weight:400;
}
.page {
	width:980px;
	max-width:90%;
}
a {
	text-decoration:none;
}
.cta {
	font-family:arial;
	display:flex;
	justify-content: center;
	align-items: center;
	width:280px;
	padding:10px;
	border-radius:6px;
	color:black;
	background-color:#fed75c;
	flex-direction:column;
	font-size:16px;
	margin-top:20px;
	margin-bottom:20px;
	text-decoration:none;
}
.ctaFree {
	font-size:18px;
	font-weight:bold;
	margin-bottom:10px;
}
.contactUs {
	font-family:arial;
	display:flex;
	justify-content: center;
	align-items: center;
	width:280px;
	padding:10px;
	border-radius:6px;
	color:white;
	background-color:#10779D;
	flex-direction:column;
	font-size:16px;
	margin-top:20px;
	margin-bottom:20px;
	text-decoration:none;
}

.shadow {
  box-shadow: 2.6px 5.3px 5.3px hsl(0deg 0% 0% / 0.42);
}
#cta:hover {
	box-shadow:none;
}

	.filler {
		display:block;
		height:112px;
	}
	.headerOutter {
		display:block;
		z-index:9000;
		width:100%;
		background-color:#0f85a5;
		color:white;
		min-height:80px;
		position:fixed;
	}
	.headerInner {
		display:flex;
		justify-content: space-between;
		align-items: center;
		padding-left:10px;
		padding-right:10px;
		width:100%;
		box-sizing: border-box;
	}
	.headerInner img {
		max-height: 76px;
		margin-right:20px;
	}
	.header2 {
		background-color:#d2d2d2;
		color:#0f85a5;
		border-top:2px solid white;
		border-bottom:2px solid #0f85a5;
		display:flex;
		justify-content: center;
		align-items:center;
		height:26px;
		font-weight:normal;
		font-size:16px;
	}
	.diamond {
		height:12px;
		margin-left:10px;
		margin-right:10px;
	}
	.menu {
		display:flex;
		width:auto;
	}
	.menuItem {
		margin-right:10px;
	}
	.menuItem a {
		color:white;
		text-decoration:none;
		font-size:18px;
		font-weight:600;
	}
	.menuItem a:visited {
		color:white;
	}
	.menuItem a:hover {
		color:#fed75c;
	}
	
	.burger {
		display:none;
	}
@media (max-width : 1000px) 
	{
		h1 {
			font-size:24px;
		}
	}
@media (max-width : 800px) 
	{
		h1 {
			font-size:20px;
		}
		.burger {
			display:block;
		}
		.menu {
			flex-direction: column;
			position:fixed;
			left:0px;
			top:108px;
			width:100%;
			background-color:#0f85a5;
		}
		.menuItem {
			width:100%;
			margin-right:0px;
			text-align: center;
			border-top:1px solid silver;
			padding:10px;
		}
		.menu, #menuWrapper {
			display:none;
		}
	}
