/* -------------------------------------------------------------------------- *
 * ========================================================================== *
 * Mohunky Cornerstone v7.0.6
 * Typography Styles
 * ========================================================================== *
 * -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- *
 * Font Weights Cheat Sheet

	100 - Thin
	200 - Light
	300 - Semi-light
	400 - Normal
	500 - Medium
	600 - Semi-bold
	700 - Bold
	800 - Extra-bold
	900 - Heavy

 * -------------------------------------------------------------------------- */

html {
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	font-family: 'Gotham Rounded', Helvetica, Arial, sans-serif;
	color: var(--colorText);
	background: var(--colorWhite);
}

	/* ----- Dark Mode Override ----- */
	body.-themeDark {
		color: var(--colorBlack);
	}


/* -------------------------------------------------------------------------- *
 * Headings
 * -------------------------------------------------------------------------- */
h1, .-fauxH1 {
	font-size: 3.375rem;
	font-weight: 800;
	font-family: 'Kurye', Helvetica, Arial, sans-serif;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}

h2, .-fauxH2 {
	font-size: 2.500rem;
	font-weight: 800;
	font-family: 'Kurye', Helvetica, Arial, sans-serif;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}

h3, .-fauxH3 {
	font-size: 2.000rem;
	font-weight: 800;
	font-family: 'Kurye', Helvetica, Arial, sans-serif;
	margin: 0 0 1rem 0;
	line-height: 1.250em;
}

h4 {
	font-size: 1.5625rem;
	font-weight: 800;
	font-family: 'Kurye', Helvetica, Arial, sans-serif;
	margin: 0 0 1rem 0;
}

h5 {
	font-size: 1.250rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

h6 {
	font-size: 1.000rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

/* -------------------------------------------------------------------------- *
 * Standard styles
 * -------------------------------------------------------------------------- */
p {
	font-size: 1.000rem;
	font-weight: 200;
	line-height: 1.5em;
	margin: 0 0 1em 0;
}

ol {
	font-size: 1.000rem;
	font-weight: 200;
	line-height: 1.5em;
}

ul {
	font-size: 1.000rem;
	font-weight: 200;
	line-height: 1.5em;
}

strong {
	 font-weight:700;
}

/* ----- Default links ----- */
a, a:visited {
	color: var(--colorPrimary);
	border-bottom: 0.0625em dotted var(--colorPrimary);
	text-decoration: none;
}

	a:hover {
		border-bottom-style: solid;
	}

	a:active, a:focus {
		outline: none;
	}

	a.-active {
		color: var(--colorPrimary);
		border-bottom-style: solid;
	}

		a.-active:hover {
			cursor: default;
		}

	a.-noBorder, a.-noBorder:visited, a.-noBorder:hover {
		border-bottom: none;
	}

/* ----- Pull/Blockquote ----- */
blockquote {
	margin: 1em 0;
	padding: 1em;
	border: none;
	border-left: 0.125rem solid var(--colorPrimary);
	font-size: 1.250em;
	line-height: 1.3125em;
	font-style: italic;
}

	blockquote span.author {
		display: block;
		padding-top: 0.500em;
		font-size: 1rem;
		font-style: normal;
	}

/* ----- Horizontal Rules ----- */
hr {
	display: inline-block;
	width: 100%;
	height: 0.0625rem;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background-color: var(--colorGrey);
}

/* -------------------------------------------------------------------------- *
 * Code styles
 * -------------------------------------------------------------------------- */
pre {
	display: block;
	margin: 0 0 1rem 0;
	padding: 1em;
	border-radius: 0.25em;
	font-size: 1em;
	text-align: left;
	tab-size: 3;
	color: var(--colorOffWhite);
	background: var(--colorOffBlack);
	overflow: hidden;
	overflow-y: hidden;
	overflow-x: auto;
}

code {
	display: inline-block;
	padding: 0 0.5em;
	border-radius: 0.25em;
	background-color: var(--colorOffBlack);
	color: var(--colorOffWhite);
	font-size: 0.875em;
	line-height: 1.5em;
}

span._inlineCode {
	display: inline-block;
	padding: 0 0.500em;
	border-radius: 0.25em;
	font-size: 0.750em;
	font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
	color: var(--colorOffWhite);
	background: var(--colorOffBlack);
}


/* -------------------------------------------------------------------------- *
 * Text Utilities
 * -------------------------------------------------------------------------- */

/* --- Alignment --- */
.-txtCenter
{
	text-align: center;
}

.-txtRight
{
	text-align: right;
}

.-txtLeft
{
	text-align: left;
}

.-txtJustify
{
	text-align: justify;
}

.-txtPullout
{
	margin-bottom: 1em;
	padding: 0.5em 0.5em 0.5em 1em;
	border-left: 2px solid var(--colorPrimary);
	background-color: var(--colorOffWhite);
}

.-txtHighlight
{
	color: var(--colorPrimary);
}

/* --- Sizes --- */
.-txtSmall, small {
	font-size: 1rem;
	font-weight: 400;
}

.-txtSmaller {
	font-size: 0.750em;
}

.-txtLarge {
	font-size: 1.250em;
}

.-txtLarger {
	font-size: 1.500em;
}

.-txtUpper {
	text-transform: uppercase;
}

/* ----- Font weights ----- */
.-txt100 {
	font-weight: 100;
}

.-txt200 {
	font-weight: 200;
}

.-txt300 {
	font-weight: 300;
}

.-txt400 {
	font-weight: 400;
}

.-txt500 {
	font-weight: 500;
}

.-txt600 {
	font-weight: 600;
}

.-txt700 {
	font-weight: 700;
}

.-txt800 {
	font-weight: 800;
}

.-txt900 {
	font-weight: 900;
}


@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .-ll- / 12 columns
	 * ---------------------------------------- */
	.-ll-txtLeft	{   text-align:left;   }
	.-ll-txtCenter	{   text-align:center;   }
	.-ll-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .-ls- / 12 columns
	 * ---------------------------------------- */
	.-ls-txtLeft	{   text-align:left;   }
	.-ls-txtCenter	{   text-align:center;   }
	.-ls-txtRight	{   text-align:right;   }
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .-tl- / 8 columns
	 * ---------------------------------------- */
	.-tl-txtLeft	{   text-align:left;   }
	.-tl-txtCenter	{   text-align:center;   }
	.-tl-txtRight	{   text-align:right;   }
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .-ts- / 6 columns
	 * ---------------------------------------- */
	.-ts-txtLeft	{   text-align:left;   }
	.-ts-txtCenter	{   text-align:center;   }
	.-ts-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .-ml- / 4 columns
	 * ---------------------------------------- */
	.-ml-txtLeft	{   text-align:left;   }
	.-ml-txtCenter	{   text-align:center;   }
	.-ml-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .-ms- / 2 columns
	 * ---------------------------------------- */
	.-ms-txtLeft	{   text-align:left;   }
	.-ms-txtCenter	{   text-align:center;   }
	.-ms-txtRight	{   text-align:right;   }
	
}


/* ------------------------------------------- */
/* ============= Font-face calls ============= */
/* ------------------------------------------- */

/* -------- Headings -------- */
@font-face {
  font-display: swap;
  font-family: 'Kurye';
  font-style: normal;
  font-weight: 800;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/kurye-extrabold.woff2') format('woff2');
}

/* -------- Body -------- */
/* --- 200 --- */
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: normal;
  font-weight: 200;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-Light.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: italic;
  font-weight: 200;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-LightItalic.woff2') format('woff2');
}

/* --- 400 --- */
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: normal;
  font-weight: 400;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-Book.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: italic;
  font-weight: 400;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-BookItalic.woff2') format('woff2');
}

/* --- 700 --- */
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: normal;
  font-weight: 700;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-Bold.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Gotham Rounded';
  font-style: italic;
  font-weight: 700;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/GothamRndSSm-BoldItalic.woff2') format('woff2');
}