.sub header {
	height: 300px;
}

.sub aside, .sub main {
	padding: 60px 0;
}

.sub h1 {
	margin-top: 0;
	margin-bottom: 30px;
	font-size: var(--h2);
}

.sub section a {
	color: black;
	text-decoration: underline;
}

aside .nav {
	margin: 0;
	padding: 0;
	width: 100%;
}

aside .nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

aside .nav a {
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	width: 100%;
	line-height: 1.3;
	padding: 10px 25px;
	border-left: 2px solid var(--borderColor);
	transition: all .2s;
	color: var(--textColor);
}

aside .nav a:hover,
aside .nav .active > a,
aside .nav a.active {
	border-left-color: #152d6e;
}

aside .nav a:hover {
	padding-left: 30px;
	padding-right: 20px;
}

aside .nav .active > a,
aside .nav a.active {color: #152d6e;}



aside .card {
	margin-bottom: 30px;
}

aside .card-image {
	width: 100px;
	margin-right: 20px;
}

aside .card-image::after {display: none;}

aside .card-title {
	margin: 0 0 5px;
	line-height: 1.1;
}


.gallery a {
	overflow: hidden;
	text-decoration: none;
}

.gallery img {
	display: block;
	width: 100%;
	transition: all var(--fastSpeed) var(--easeOutBack);
}

.gallery a:hover img {
	transform: scale(1.1);
}


.downloads a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 15px 30px;
	color: var(--textColor);
	text-decoration: none !important;
	transition: all var(--fastSpeed);
	box-shadow: 0 0 30px hsl(0, 0%, 0%, .1);
}

.downloads a:hover {
	color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 15px 20px -5px hsl(0, 0%, 0%, .2);
}

.downloads a img:not(.download-icon) {
	height: 52px;
	border-radius: 0;
}

.download-icon {
	height: 18px;
	display: block;
	margin-left: 30px;
	border-radius: 0;
}

.downloads .text {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 30px;
}

.downloads .text strong {
	font-weight: normal;
	display: block;
	line-height: 1.1;
}


section form input,
section form select,
section form textarea {
	background-color: #fff;
	border-color: var(--borderColor);
	color: var(--textColor);
}

section form textarea {
	height: 17.4em;
}

section form button {
	filter: invert(1);
}

#form [type="checkbox"],
#form [type="radio"] {
	margin-top: 12px;
}

#form label li {
	list-style: disc !important;
	padding-left: 0;
	display: list-item;
	position: inherit;
}

#form label li::before {display: none;}

#form label li::marker {color: black; display: block;}