
body {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
	color: #333;
	font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	font-variation-settings: "wdth" 100;
}
a,
a:visited {
	text-decoration: none;
	color: #007acb;
}
a:hover {
	text-decoration: underline;
}
h1 {
	color: #007acb;
	font-size: 32px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 20px;
}
img {
	max-width: 100%;
}

/*==============
=====HEADER=====
==============*/

.header {
	display: flex;
	flex-direction: column;
}
.logo-heading {
	padding: 20px;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
}
.main-nav-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex: 1;
	border-bottom: 1px solid #ddd;
}
.main-nav {
	display: flex;
	flex-direction: row;
	justify-content: end;
	margin: 0;
	padding: 20px 0;
	list-style: none;
}
.main-nav li a {
	padding: 0 10px;
	color: #333;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}
.main-nav li a:hover {
	text-decoration: underline;
}

/*==============
======MAIN======
==============*/

.main {
	display: flex;
	flex-direction: row;
}

/*==SIDE NAV==*/

.aside {
	width: 200px;
	margin-right: 20px;
	border-right: 1px solid #ddd;;
}
.side-nav {
	position: sticky;
	top: 0;
	margin: 0 0 0 10px;
	padding: 20px;
	list-style: none;
}

.side-nav ul {
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
	list-style: none;
}
.side-nav li {
	font-weight: 700;
	line-height: 1.2;
}
.side-nav li:not(:empty)::before { 
  content: "";
  border-color: transparent #007acb;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 0.9em;
  position: relative;
}
.side-nav li:empty {
	height: 1em;
}
.side-nav li a {
	color: #333;
	text-decoration: none;
}
.side-nav li a:hover {
	text-decoration: underline;
}
.side-nav ul li {
	font-weight: 400;
}

/*====CONTENT====*/

.content {
	flex: 1;
	position: relative;
	padding: 30px 20px 20px;
}
.faq-list {
	font-size: 18px;
	font-weight: 700;
}
.columns {
	display: flex;
	flex-direction: row;
}
.columns div {
	flex: 1 1 auto;
}
.plain-list {
	list-style: none;
	padding: 0;
}
.services-table tr td:first-child {
	width: 25%;
}

/*==============
=====FOOTER=====
==============*/

.footer {
	margin: 0 0 20px;
	padding: 20px 10px;
	border-top: 1px solid #ddd;
	color: #333;
	text-align: center;
}
.links {
	padding: 0 10px;
	margin: 0 0 20px;
	list-style: none;
	columns: 3;
}
