@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400&display=swap');

	* {
		box-sizing: border-box;
	}

	body {
		margin:0;
	}
	.sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0,0,0,0);
		border: 0;
	}
	.header {
		background: #007299;
	}
	.header .logo {
		background-image: none;
		font-family: 'Montserrat', sans-serif;
		font-weight: bold;
		text-transform: uppercase;
		font-size: 32px;
		width: auto;
		height: auto;
		line-height: 1;
		color: white;
		text-decoration: none;
		margin:12px 0;
		padding:10px 0;
		display:inline-block;
	}
	@media (max-width: 990px) {
		.header .logo {
			font-size: 24px;
			margin:0;
		}
	}
	.container-fluid {
		max-width: 1280px;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	.footer {
		background: #007299;
		color:white;
		font-family: 'Open Sans', sans-serif;
		font-weight: 300;
	}
	.footer nav {
		padding-bottom:30px;
	}
	.footer nav ul {
		list-style: none;
		padding: 0px;
		margin: 0px;
	}
	.footer nav ul li {
		display: inline-block;
	}
	.footer nav ul li:not(:last-of-type):after {
		color: #ffffff;
		content: '|';
		padding: 0 0.625em;
	}
	.footer nav ul li a {
		font-size: 19px;
		font-weight: 300;
		border: 0;
		text-decoration: underline;
		color: #ffffff;
	}
	.footer nav ul li a:hover {
		text-decoration: none;
	}
	.footer p {
		margin-bottom: 0;
		font-weight: 300;
		margin-top: 15px;
		color: #ffffff;
		font-size: 16px;
	}
	.footer .container-fluid {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	@media (min-width: 768px) {
		footer.main .container-fluid {
			padding-top: 45px;
			padding-bottom: 45px;
		}
	}

