/* Core styles can be used any where you need a generic HTML block */

.core-styles h1,
.contentRender_name_plugins_core_textbox h1 {
	color: var(--dark-grey);
    font-size: 56px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 900;
    line-height: 58px;
    text-transform: uppercase;
}

.core-styles h2,
.contentRender_name_plugins_core_textbox h2 {
	color: var(--dark-grey-85);
    font-size: 42px;
    font-family: var(--font-display-alt);
    font-style: normal;
    font-weight: 900;
    line-height: 49px;
    text-transform: uppercase;
}

.core-styles h3,
.contentRender_name_plugins_core_textbox h3 {
	color: var(--red);
    font-size: 36px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 900;
    line-height: 39px;
    text-transform: uppercase;
}

.core-styles h4,
.contentRender_name_plugins_core_textbox h4,
.sitemap h4  {
	color: var(--dark-grey);
    font-size: 32px;
    font-family: var(--font-display-alt);
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    text-transform: uppercase;
}

.core-styles h5,
.contentRender_name_plugins_core_textbox h5 {
	color: var(--red);
    font-size: 28px;
    font-family: var(--font-display-alt);
    font-style: normal;
    font-weight: 700;
    line-height: 31px;
    text-transform: uppercase;
}

.core-styles h6,
.contentRender_name_plugins_core_textbox h6 {
	color: var(--dark-grey);
    font-size: 24px;
    font-family: var(--font-display-alt);
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
}

.core-styles p,
.contentRender_name_plugins_core_textbox p {
    color: var(--dark-grey);
    font-size: 18px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-rendering: optimizeLegibility;
}

.core-styles a,
.contentRender_name_plugins_core_textbox a {
	color: var(--red);
    font-weight: 500;
}

.core-styles > ul:not([class*="block-grid-"]),
.core-styles > ol:not([class*="block-grid-"]),
.contentRender_name_plugins_core_textbox > ul:not([class*="block-grid-"]),
.contentRender_name_plugins_core_textbox > ol:not([class*="block-grid-"]),
.sitemap > ul {
    margin-bottom: 20px;
}

.core-styles ul:not([class*="block-grid-"]) li,
.core-styles ol:not([class*="block-grid-"]) li,
.contentRender_name_plugins_core_textbox ul:not([class*="block-grid-"]) li,
.contentRender_name_plugins_core_textbox ol:not([class*="block-grid-"]) li {
    color: var(--dark-grey);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    list-style-position: outside;
    margin-left: 20px;
    padding-left: 5px;
}

.core-styles td,
.contentRender_name_plugins_core_textbox td,
.core-styles tr,
.contentRender_name_plugins_core_textbox tr {
    color: var(--dark-grey);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--font-body);
    font-weight: 500;
}

.core-styles strong, .contentRender_name_plugins_core_textbox strong,
.core-styles b, .contentRender_name_plugins_core_textbox b {
	font-weight: 700;
}

.core-styles em, .contentRender_name_plugins_core_textbox em,
.core-styles i, .contentRender_name_plugins_core_textbox i {
	font-style: italic;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.core-styles img[align*='right'],
.contentRender_name_plugins_core_textbox img[align*='right'] { margin-left : 15px; margin-bottom: 5px; }
.core-styles img[align*='left'],
.contentRender_name_plugins_core_textbox img[align*='left'] { margin-right : 15px; margin-bottom: 5px; }

.sitemap > ul {
	-webkit-column-count: 3;
	   -moz-column-count: 3;
			column-count: 3;
	-webkit-column-gap: 15px;
	   -moz-column-gap: 15px;
			column-gap: 15px;
}

@media screen and (max-width: 1024px) {
	.sitemap > ul {
		-webkit-column-count: 2;
		   -moz-column-count: 2;
				column-count: 2;
	}
	
	.core-styles h1,
    .contentRender_name_plugins_core_textbox h1 {
		font-size: 52px;
		line-height: 55px;
	}

	.core-styles h2,
	.contentRender_name_plugins_core_textbox h2 {
		font-size: 36px;
    	line-height: 39px;
	}
}

@media screen and (max-width: 640px) {
	.sitemap > ul {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
				column-count: 1;
    }
	
	.core-styles h1,
    .contentRender_name_plugins_core_textbox h1 {
		font-size: 42px;
		line-height: 46px;
    }
    
    .core-styles h2,
    .contentRender_name_plugins_core_textbox h2 {
        font-size: 30px;
    	line-height: 33px;
    }
    
    .core-styles h3,
    .contentRender_name_plugins_core_textbox h3 {
		font-size: 28px;
		line-height: 31px;
    }
    
    .core-styles h4,
    .contentRender_name_plugins_core_textbox h4,
    .sitemap h4  {
        font-size: 24px;
    	line-height: 27px;
    }
    
    .core-styles h5,
    .contentRender_name_plugins_core_textbox h5 {
        font-size: 23px;
    	line-height: 26px;
    }
    
    .core-styles h6,
    .contentRender_name_plugins_core_textbox h6 {
        font-size: 21px;
    	line-height: 24px;
    }
    
    .core-styles p,
    .contentRender_name_plugins_core_textbox p {
        font-size: 18px;
    	line-height: 27px;
	}
	
	.core-styles ul:not([class*="block-grid-"]) li,
	.core-styles ol:not([class*="block-grid-"]) li,
	.contentRender_name_plugins_core_textbox ul:not([class*="block-grid-"]) li,
	.contentRender_name_plugins_core_textbox ol:not([class*="block-grid-"]) li {
		font-size: 18px;
    	line-height: 27px;
	}

	.core-styles td,
	.contentRender_name_plugins_core_textbox td,
	.core-styles tr,
	.contentRender_name_plugins_core_textbox tr {
		font-size: 18px;
    	line-height: 27px;
	}
}