/* Start Typography (Position 5) */
/* Default Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', Helvetica, Verdana, sans-serif;
	/* font-family: 'Lobster', cursive; */
	font-weight: 400;
	margin: 1rem 0;
	line-height: 1.4;
	position: relative;
	color: rgb(32, 64, 85);
	/* For extra styling */
}

h1 {
	margin-top: .7rem;
}
/* A Slight tweak to improve page heading vertical alignment */
.h1,
h1 {
	font-size: 180%;
}
/* 26px */
.h2,
h2 {
	font-size: 150%;
}
/* 24px */
.h3,
h3 {
	font-size: 140%;
}
/* 22px */
.h4,
h4 {
	font-size: 130%;
}
/* 20px */
.h5,
h5 {
	font-size: 120%;
}
/* 18px */
.h6,
h6 {
	font-size: 100%;
}
/* 16px */
/* .h1,.h2,.h3 etc - use to style body text as 'headings' <p class="h1">H1 Text</p> */
p {
	margin-top: 0;
	margin-bottom: 1rem;
}

a,
ins,
u {
	-webkit-text-decoration-skip: ink edges;
	text-decoration-skip: ink edges;
}

abbr[title] {
	border-bottom: .05rem dotted;
	cursor: help;
	text-decoration: none;
}

mark {
	background: #ffe9b3;
	border-bottom: .05rem solid #ffd367;
	border-radius: .1rem;
	color: #3b4351;
	padding: .05rem .1rem 0;
}

kbd {
	background: #303742;
	border-radius: .1rem;
	color: #fff;
	font-size: 116%;
	padding: 3px 5px;
}

cite,
.cite {
	text-align: right;
	color: var(--grey);
	display: block;
}

code,
kbd,
pre,
samp {
	font-family: "SF Mono", "Segoe UI Mono", "Roboto Mono", Menlo, Courier, monospace;
	font-size: 80%;
}

ol,
ul {
	margin: .8rem 0 .8rem .8rem;
	padding: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin: .8rem 0 .8rem .8rem;
}

ol li,
ul li {
	margin-top: .4rem;
}

ul {
	list-style: disc inside;
}

ul ul {
	list-style-type: circle;
}

ol {
	list-style: decimal inside;
}

ol ol {
	list-style-type: lower-alpha;
}

dl dt {
	font-weight: bold;
}

dl dd {
	margin: .4rem 0 .8rem;
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}
/* hr{
border: 0; height: 1px; background-image: linear-gradient(to right, rgba(61, 61, 61, 0.62) 0%,rgba(0,0,0,0) 100%);} */
/* Basic Rule */
hr {
	border: .05rem dotted var(--grey);
	margin: 1.5rem 0;
}

blockquote {
	background: var(--pale_grey);
	border-left: 10px solid var(--almostblack);
	margin: 1.8em 10px;
	padding: 28px;
	quotes: "\201C""\201D";
}

blockquote:before {
	color: var(--almostblack);
	content: open-quote;
	font-size: 4em;
	line-height: .1em;
	margin-right: .10em;
	vertical-align: -0.4em;
}

blockquote p {
	display: inline;
}
/* Citation using 'Strong' */
blockquote strong {
	font-weight: normal;
	display: block;
	font-size: var(--txt_small);
	margin: 1rem 0 0;
	font-style: italic;
}
/*Pullquotes*/
p.pullquote_right {
	border-right: 10px solid var(--almostblack);
	margin-left: auto;
	text-align: right;
}

p.pullquote_left {
	border-left: 10px solid var(--almostblack);
	margin-right: auto;
	text-align: left;
}

p.pullquote_left,
p.pullquote_right {
	background-color: var(--pale_grey);
	font-size: 100%;
	padding: 30px;
	width: 100%;
	font-style: italic;
}
/* Table */
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	border: 1px solid var(--almostwhite);
	margin: 20px 0;
	font-size: 90%;
}

thead tr th {
	color: var(--almostwhite);
	background-color: var(--charcoal);
	padding: 10px;
	font-size: 100%;
}

td,
th {
	border: none;
	text-align: left;
	padding: 15px;
}

table tr:first-child td {
	vertical-align: top;
	color: var(--almostblack);
}

tr:nth-of-type(2n + 1) {
	background: rgb(235, 235, 235) none repeat scroll 0 0;
	color: var(--almostblack);
}

tr:nth-of-type(2n) {
	background: var(--pale_grey) none repeat scroll 0 0;
	color: var(--almostblack);
}

tr:hover {
	background: var(--almostwhite) url("none") repeat scroll 0 0;
}
@media screen and (max-width: 600px) {
	table {
		border: 0;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	table tr {
		border: 1px solid var(--almostwhite);
		display: block;
		margin-bottom: .825em;
	}

	table td {
		border-bottom: 1px solid var(--almostwhite);
		display: block;
		text-align: left;
	}

	table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}
}

/* Centre Text */
.centre {
	text-align: center;
}
/* End Typography  */
