:root{
	/*Font size*/
	--h1-size-mobile: 2.5rem;
	--h1-size-desk: 3.75rem;
	--h2-size-mobile: 2.5rem;
	--h2-size-desk: 3.125rem;
	--h3-size-mobile: 2.063rem;
	--h3-size-desk: 2.5rem;
	--h4-size-mobile: 1.688rem;
	--h4-size-desk: 2.25rem;
	--h5-size-mobile: 1.188rem;
	--h5-size-desk: 1.563rem;
	--h6-size-mobile: 1.188rem;
	--h6-size-desk: 1.25rem;
	--p-size-mobile: 1.063rem;
	--p-size-desk: 1.188rem;
	--li-size-mobile: 1.063rem;
	--li-size-desk: 1.188rem;
	--td-tr-size-mobile: 1.063rem;
	--td-tr-size-desk: 1.188rem;
	
	/*Line height*/
	--h1-lh-mobile-desk: 1em;
	--h2-lh-desk: 1.225em;
	--h2-lh-mobile: 1.2em;
	--h3-lh-mobile: 1.071em;
	--h3-lh-desk: 1.111em;
	--h4-lh-mobile: 1.154em;
	--h4-lh-desk: 1.212em;
	--h5-lh-mobile:  1.250em;
	--h5-lh-desk: 1.333em;
	--h6-lh-mobile: 1.364em;
	--h6-lh-desk: 1.481em;
	--p-lh-mobile: 1.222em;
	--p-lh-desk: 1.545em;
	--li-lh-mobile: 1.222em;
	--li-lh-desk: 1.545em;
	--td-tr-lh-mobile: 1.122em;
	--td-tr-lh-desk: 1.545em;
	}




/* Core styles can be used any where you need a generic HTML block */

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	/* TODO - change to site paragraph font */
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

button {
	background-color: var(--red);
	color: var(--white);
}

@media (hover: hover) {
	button:hover {
		background-color: var(--red);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	color: var(--blue);
	text-decoration: underline;
	transition: all ease 0.4s;

}

@media (hover: hover) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
		color: var(--gold);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color: var(--blue);
	font-family: var(--font-display);
	margin-bottom: var(--space-3);
	font-size: var(--h1-size-mobile);
	font-weight: 500;
	line-height: 50px;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: var(--h1-size-desk); 
        line-height: 70px; 
		margin-bottom: var(--space-4);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--blue);
	font-family: var(--font-display);
	margin-bottom: var(--space-3);
	font-size: var(--h2-size-mobile);
	font-weight: 500;
	line-height: 50px;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: var(--h2-size-desk); 
        line-height: 60px; 
		margin-bottom: var(--space-5);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--blue);
	font-family: var(--font-display);
	margin-bottom: var(--space-6);
	font-size: var(--h3-size-mobile);
	font-weight: 500;
	line-height: 40px;
	text-transform: uppercase;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: var(--h3-size-desk); 
        line-height: 45px; 
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	color: var(--blue);
	font-family: var(--font-body);
	margin-bottom: var(--space-3);
	font-size: var(--h4-size-mobile);
	font-weight: 500;
	line-height: 30px;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: var(--h4-size-desk); 
        line-height: 44px; 
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-family: var(--font-body);
	margin-bottom: var(--space-3);
	font-size: var(--h5-size-mobile);
	font-weight: 600;
	line-height: 22px;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: var(--h5-size-desk); 
        line-height: 30px; 
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-family: var(--font-display);
	margin-bottom: var(--space-3);
	font-size: var(--h6-size-mobile);
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--gold);
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: var(--h6-size-desk); 
        line-height: 25px; 
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-family: var(--font-body);
	margin-bottom: var(--space-5);
	font-family: var(--font-body);
	font-size: var(--p-size-mobile);
	line-height: 24px;
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: var(--p-size-desk); 
        line-height: 30px; 
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p sub,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p sup {
		font-size: 0.988rem;
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote {
	margin: var(--space-12) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--primary-color-500);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p {
	margin: 0;
	font-size: var(--text-2xl);
	font-style: italic;
	line-height: var(--leading-snug);
	color: var(--gray-600);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	background: #fff;
	margin-bottom: var(--space-5);
	table-layout: auto;
	padding: var(--space-2);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--font-body);
	font-size: var(--td-tr-size-mobile);
	line-height: 24px;
	padding: 5px var(--space-2);
	border: 1px solid var(--light-gold);
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: var(--td-tr-size-desk);
		line-height: 30px; 
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--white-smoke);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	margin-left: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	font-family: var(--font-body);
	font-size: var(--li-size-mobile);
	line-height: 24px;
	color: var(--blue);
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: var(--li-size-desk);
		line-height: 30px;
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul) {
	list-style-type: disc;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol) {
	list-style-type: decimal;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul) {
	list-style-type: circle;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul ul ul) {
	list-style-type: square;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul, ul li ol, ol li ol) {
	margin-left: var(--space-5);
}

:is(h1, h2, h3, h4, h5, h6) > a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.contentRender_name_plugins_core_textbox img {
	display: inline-block;
	margin-bottom: var(--space-4);
}

@media (min-width: 1024px) {
	.contentRender_name_plugins_core_textbox img {
		margin-left: var(--space-6);
		margin-right: var(--space-6);
	}
}