:root {
	--sw: 400px;
	--swneg: -400px;
}

body {
	overflow-x: hidden;
}

.backInBlack {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 20000;
	display: flex;
	align-items: center;
}

.backInBlack img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
}

.footerLinkInner {
	display: flex;
	flex-direction: column;
}

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

.footerLinkImage {
	flex: 0 1 auto;
}

.footerLinkImage img {
	margin-right: 0.5rem;
}

.footerLinkText {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: start;
}

.footerLinkText p {
	margin-bottom: 0;
}

.footerLinkTitle a {
	color: white;
}

.footerLinkPara {
	color: lightslategray;
	margin-bottom: 0;
	font-size: 85%;
}

.linkInner {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.linkImage {
	flex: 0 1 auto;
}

.linkImage img {
	margin-right: 0.5rem;
}

.linkText {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: start;
}

.linkText p {
	margin-bottom: 0;
}

.linkTitle a {
	color: var(--dark);
}

.linkPara {
	color: lightslategray;
	margin-bottom: 0;
	font-size: 85%;
}


.card-body p:last-child {
	margin-bottom: 0;
}

.categoryList {
	columns: 3;
	padding-left: 0;
}

.mgridcol {
	width: 33%;
	margin-bottom: 1.5rem;
	padding: 0 1rem 0 0;
}
@media (max-width: 1599px) {
	.linkInner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 991px) {
	.categoryList {
		columns: 2;
	}

	.mgridcol {
		width: 50%;
	}
}

@media (max-width: 575px) {
	.categoryList {
		columns: 1;
	}

	.mgridcol {
		width: 100%;
		padding: 0;
	}
}


.headerContainer {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.headerContainerLogo {
	flex: 0 1 auto;
}

.headerContainerContent {
	flex: 1;
}

.headerContainerMenu {
	flex: 0 1 auto;
}

@media (max-width: 991px) {
	.headerContainer {
		flex-direction: column;
		align-items: center;
	}
}

#page-title {
	background-color: var(--primary);
	color: var(--dark);
	padding: 2rem 0;
	margin: 0 0 1rem;
}

#page-title h1 {
	color: var(--light);
}

#page-title h3,#page-title h3 > a {
	color: var(--light);
}

blockquote {
	margin-left: 2rem;
	padding: 1rem 2rem;
	background-color: var(--light);
	font-style: oblique;
	border-left: 3px solid var(--primary);
}

.blog-info {
	display: flex;
	flex-direction: row;
	margin-bottom: 3rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid lightgrey;
	font-size: 85%;
}

.blog-list-info {
	display: flex;
	flex-direction: row;
	margin-bottom: 3rem;
	padding-bottom: 0.5rem;
	font-size: 85%;
}

.blog-info > div,.blog-list-info > div {
	margin: 0 1rem 0 0;
}

@media (max-width: 991px) {
	.blog-info, .blog-list-info {
		flex-direction: column;
	}

	.blog-info > div,.blog-list-info > div {
		margin: 0 0 0.5rem 0;
	}
}

#header {
	height: 80px;
	width: 100%;
	margin-bottom: -80px;
	display: flex;
	background-color: transparent;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	justify-content: center;
	align-content: center;
}

#header.header-light {
	margin-bottom: 0;
}

#header #logo {
	position: relative;
	display: inline-block;
	z-index: 13;
	margin: auto;
}

#header #logo img {
	max-width: 70vw;
}

.standard-logo {
	display: block;
}

#header.sticky {
	background-color: white;
	margin-bottom: 0;
	box-shadow: 0 0 10px gray;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 15;
}

.homeintro-outer.sticky {
	margin-top: 80px;
}

#header.sticky #primary-menu-np-trigger > i {
	color: var(--dark) !important;
}

.tooltip-inner {
	max-width: 800px;
	padding: 6px 12px;
	color: var(--dark);
	background-color: var(--white);
	border-radius: .25rem;
	line-height: 1.2;
	box-shadow: 0 0 5px black;
	border: 2px solid black;
	text-align: start;
}

.tooltip {
	opacity: 1 !important;
}
.totop {
	position:fixed;
	right:20px;
	bottom:20px;
	background: rgba(0,0,0,0.2);
	color:white;
	padding: 0.5rem 1rem;
	cursor: pointer;
	display:none;
}