@charset "UTF-8";

/* page-level css */
.md-custom-wallpaper {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Page Title */
h1.md-page-title {
	font-family: "Folks-Bold", serif;
	text-transform: uppercase;
	font-size: 2.625em;
	color: rgb(255,255,255);
	background-color: rgb(0,83,154);
	font-weight: normal;
	width: 100%;
	text-align: center;
	padding: 1.5em calc( (100vw - 1232px ) / 2 ) 0.5em  calc( (100vw - 1232px ) / 2 );
	margin: 6rem auto 0 auto;
}

/* Section Title */

section.md-h2 {
	margin: 2rem auto 1rem auto;
}

section.md-h2 h2 {
	margin: 0;
}

section.md-h2 > section.txt-section {
	margin-top: 1rem !important;
}

p.page-intro {
	font-weight: bold;
	font-size: 1.25em;
}

/* breadcrumbs */
.breadcrumb {
	display: none;
}

/* post meta */
.md-post-meta {
	display: none;
}

/* Buttons */
.tlg-btn-link-light a {
	text-decoration: none;
	padding: 0.25em 0.5em;
	border-radius: 0.25em;
	background-color: rgb(255,255,255);
	background-image: linear-gradient(to bottom,rgba(255,255,255,0.1),rgba(13,53,148,0.1));
	border: 1px solid rgb(13,53,148);
	color: rgb(13,53,148);
	transition: 0.2s;
}
.tlg-btn-link-light a:hover {
	color: rgb(255,255,255);
	background-color: rgb(13,53,148);
	border: 1px solid rgb(255,255,255);
}

/* FAQs */
.tlg-open-all {
	display: block;
	text-align: right;
}


/* pagination */
.pagination,
.prev-next {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1;
	z-index: 100;
}
.page-numbers,
.prev-next a {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	margin: 0 0.5rem;
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 0.25rem;
	text-decoration: none !important;
}
.page-numbers.current {
	background: rgba(0,0,0,0.25);
}
.page-numbers:hover,
.page-numbers.current:hover,
.prev-next a:hover {
	background: rgba(0,0,0,0.5);	
}