.sub h1 {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.1;
}

.sub .navbar {
	border-bottom: 1px solid var(--bgLight);
}

.sub aside,
.sub main,
.sub footer {
	margin-top: var(--sectionPadding);
}

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;
	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 a.active {
	border-left-color: var(--primary);
}

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

aside .nav a.active {color: var(--primary);}



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;
}

.gallery img {
	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;
	text-decoration: none;
	color: var(--textColor);
	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;
}


@media screen and (max-width: 620px) {
	.sub h1 {font-size: var(--h3)}
	.sub h2 {font-size: var(--h4)}
	.sub h3 {font-size: var(--h5)}
	.sub h4 {font-size: var(--h6)}

	.gallery img {
		width: 100%;
	}
}

@media screen and (max-width: 414px) {
	.downloads a {
		padding: 1em;
		flex-direction: column;
	}

	.download-icon {display: none;}

	.downloads a img:not(.download-icon) {
		height: 42px;
		border-radius: 0;
		margin-bottom: 15px;
	}

	.downloads .text {
		margin-left: 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}