.sub .navbar {
	position: sticky;
}

.text-left .text-center {
	text-align: left !important;
}

.sub h1 {margin-top: 0;}

.sub main {
	clear: both;
	min-height: 800px;
	background-color: #fff;
	padding: var(--sectionPadding) 0;
}

.gallery a {
	overflow: hidden;
}

.gallery img {
	width: 100%;
	display: block;
	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: 520px) {
	h1 {font-size: var(--h3);}

	.podpis {margin-top: 10px; width: 100%; display: block;}
}