main.nd .section-1{
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	height: 40vh;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center;
	background-origin: border-box;
	background-size: cover;
}
main.nd .section-1 > h1{
	position: relative;
	margin: 0;
	padding: 20px;
	background-color: #ffffff;
    border-radius: 10px;
    -moz-box-shadow: 0 0 5px 0 rgba(123, 123, 123, 0.1);
    -webkit-box-shadow: 0 0 5px 0 rgba(123, 123, 123, 0.1);
    box-shadow: 0 0 5px 0 rgba(123, 123, 123, 0.1);
}
main.nd .section-1 .n-overlay{
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center;
	background-origin: border-box;
	background-size: cover;
	/*-webkit-filter: blur(5px);*/
	/*-moz-filter: blur(5px);*/
	/*-o-filter: blur(5px);*/
	/*-ms-filter: blur(5px);*/
	/*filter: blur(5px);*/
	/*background-color: rgba(255,255,255);*/
}
main.nd .section-2{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
main.nd .section-2 .n-content{
	width: 60%;
	padding: 30px 0;
	background-color: var(--mainFgColorBright);
}
main.nl .section-1{
	display: flex;
	align-items: flex-start;
    justify-content: center;
    min-height: 70vh;
}
main.nl .section-1 .content{
	display: flex;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	width: 60%;
	padding: 30px;
}
main.nl .section-1 .content > a{
	display: flex;
	flex: 1 1 30%;
	flex-direction: column;
	max-width: 30%;
	margin: 10px 10px 20px 10px;
	padding: 10px;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	text-decoration: none;
    color: #797979;
    border-radius: 15px;
	-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
main.nl .section-1 .content > a:hover{
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	color: var(--mainFgColorDark);
	background-color: var(--mainBgColor40);
	-moz-box-shadow: 0 20px 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 20px 10px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 20px 10px 0 rgba(0, 0, 0, 0.2);
}
main.nl .section-1 .content > a .n-cover{
	height: 300px;
	-moz-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    border-radius: 10px;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center;
	background-origin: border-box;
	background-size: cover;
}
main.nl .section-1 .content > a:hover .n-cover{
	color: var(--mainFgColorDark);
	background-color: var(--mainBgColor40);
	/*-moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);*/
	/*-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);*/
	/*box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);*/
}
main.nl .section-1 .content > a .n-text{
	display: flex;
	flex-direction: column;
}
main.nl .section-1 .content > a .n-text .n-publishDate{
	align-self: flex-end;
	margin: 0;
	color: #949494;
}