/* -------------------------------------------------------------------------- *
 * ========================================================================== *
 * Mohunky Cornerstone v7
 * 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%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	color: var(--colorOffBlack);
	background: var(--colorWhite);
}
body.theme-BMAC
{
	color:var(--colorBlack);
}

/* -------------------------------------------------------------------------- *
 * Headings
 * -------------------------------------------------------------------------- */


h1, .fauxH1 {
	font-size: 3.750rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}

.theme-BMAC h1 {
	text-transform: uppercase;
}

/**umb_name: Heading 2*/
h2 {
	font-size: 2.750rem;
	font-weight: 700;
	color: var(--colorSecondary);
	margin: 0 0 1rem 0;
	line-height: 1.125em;
	text-transform: uppercase;
}

.theme-BMAC h2 {
	font-size: 2.250rem;
	margin-bottom: 2rem;
}
.fauxH2 {
	font-size: 2.750rem;
	font-weight: 700;
	color: var(--colorSecondary);
	margin: 0 0 1rem 0;
	line-height: 1.125em;
	text-transform: uppercase;
}

/**umb_name: Heading 3*/
h3 {
	font-size: 2.000rem;
	font-weight: 400;
	color: var(--colorPrimary);
	margin: 0 0 1rem 0;
	line-height: 1.250em;
	text-transform: uppercase;
}

.fauxH3 {
	font-size: 2.000rem;
	font-weight: 400;
	color: var(--colorPrimary);
	margin: 0 0 1rem 0;
	line-height: 1.250em;
	text-transform: uppercase;
}

.theme-BMAC h4 {
	font-size: 1.5625rem;
	font-weight: 700;
	color: var(--colorPrimary);
	margin: 0 0 1rem 0;
}

h5 {
	font-size: 1.250rem;
	font-weight: 200;
	margin: 0 0 1rem 0;
}

h6 {
	font-size: 1.000rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

/* -------------------------------------------------------------------------- *
 * Standard styles
 * -------------------------------------------------------------------------- */
p {
	font-size: 1.250rem;
	font-weight: 400;
	line-height: 1.5em;
	margin: 0 0 1em 0;
}

ol {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5em;
}

ul {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5em;
}

	ul li::marker {
		color: var(--colorSecondary);
	}

strong {
	font-weight: 700;
}

/* ----- Default links ----- */
a.anchorFix {
	position: relative;
	top: -200px;
}

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;
	}

.theme-BMAC a, .theme-BMAC a:visited
{
	border-bottom:none;
	font-weight:600;
}
/* ----- 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 --- */
.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

.txt-left {
	text-align: left;
}

.txt-justify {
	text-align: justify;
}

.txt-pullout {
	margin-bottom: 1em;
	padding: 0.5em 0.5em 0.5em 1em;
	border-left: 2px solid var(--colorPrimary);
	background-color: var(--colorOffWhite);
}

.txt-highlight {
	color: var(--colorPrimary);
}

/* --- Sizes --- */
.-txtSmall, small {
	font-size: 0.875em;
	font-weight: 400;
}

.-txtSmaller {
	font-size: 0.750em;
}
/**umb_name:Text Large*/
.txt-large {
	font-size: 1.250em;
}

/**umb_name:Text Larger*/
.txt-larger {
	font-size: 1.625em;
}

.txt-upper {
	text-transform: uppercase;
}

/* ----- Font weights ----- */
.txt-100 {
	font-weight: 100;
}

.txt-200 {
	font-weight: 200;
}

.txt-300 {
	font-weight: 300;
}

.txt-400 {
	font-weight: 400;
}

.txt-500 {
	font-weight: 500;
}

.txt-600 {
	font-weight: 600;
}

.txt-700 {
	font-weight: 700;
}

.txt-800 {
	font-weight: 800;
}

.txt-900 {
	font-weight: 900;
}

/**umb_name:Align image to left*/
p.-imgLeft {
	
}

p.-imgLeft img {
	float: left;
	margin: 0 1rem 1rem 0;
}

/**umb_name:Align image to right*/
p.-imgRight {
	
}

p.-imgRight img {
	float: right;
	margin: 0 0 1rem 1rem;
}


@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .ll- / 12 columns
	 * ---------------------------------------- */
	.ll-txt-left {
		text-align: left;
	}

	.ll-txt-center {
		text-align: center;
	}

	.ll-txt-right {
		text-align: right;
	}
}

@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .ls- / 12 columns
	 * ---------------------------------------- */
	.ls-txt-left {
		text-align: left;
	}

	.ls-txt-center {
		text-align: center;
	}

	.ls-txt-right {
		text-align: right;
	}
}

@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .tl- / 8 columns
	 * ---------------------------------------- */
	.tl-txt-left {
		text-align: left;
	}

	.tl-txt-center {
		text-align: center;
	}

	.tl-txt-right {
		text-align: right;
	}
}

@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .ts- / 6 columns
	 * ---------------------------------------- */
	.ts-txt-left {
		text-align: left;
	}

	.ts-txt-center {
		text-align: center;
	}

	.ts-txt-right {
		text-align: right;
	}

	h1 {
		font-size: 3rem;
	}
}

@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .ml- / 4 columns
	 * ---------------------------------------- */
	.ml-txt-left {
		text-align: left;
	}

	.ml-txt-center {
		text-align: center;
	}

	.ml-txt-right {
		text-align: right;
	}

	.heroLargeTxt {
		font-size: 4.25rem;
	}

	.o_heroHome ._grid ._content {
		padding: 1rem;
	}

	h1 {
		font-size: 2.500rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.625rem;
	}

	h4 {
		font-size: 1.250rem
	}

	p, ul, ol {
		font-size: 1rem;
	}
}

@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .ms- / 2 columns
	 * ---------------------------------------- */
	.ms-txt-left {
		text-align: left;
	}

	.ms-txt-center {
		text-align: center;
	}

	.ms-txt-right {
		text-align: right;
	}
}


/* ------------------------------------------- */
/* ============= Font-face calls ============= */
/* ------------------------------------------- */

/* -------- Body Fonts -------- */
@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-300.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-300italic.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-italic.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-500.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 500;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-500italic.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-700.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	src: url('/_content/MohCornerstone.Web.Ui/fonts/open-sans-v40-latin-700italic.woff2') format('woff2');
}
