/* --- RESET DEFAULT BROWSER CSS --- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	/* font-family: inherit; */
	vertical-align: baseline;
}

* {
	-webkit-font-smoothing: antialiased;
}

/* Remove perforated edge around links and border on linked images. */
* {
	outline: 0 !important;
}

a img {
	border: none;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: """";
}

/* --- TYPOGRAPHY --- */
html {
	height: 100%;
}

body {
	font-family: 'Open Sans';
	background: #FFF;
	color: #000;
	height: 100%;
}

p {
	margin: 0 0 25px;
}

blockquote {
	margin: 25px 40px;
	padding-left: 45px;
	color: #666;
	font-style: italic;
	border-left: 4px solid #E8CF56;
	position: relative;
}

blockquote:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f10d";
	position: absolute;
	left: 15px;
	top: 0;
}

strong {
	font-weight: bold;
}

em,
dfn {
	font-style: italic;
}

dfn {
	font-weight: bold;
}

sup,
sub {
	line-height: 0;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
}

address {
	margin: 0 0 25px;
	font-style: italic;
}

del {
	color: #666;
}

pre {
	margin: 25px 0;
	white-space: pre;
}

pre,
code,
tt {
	font: 1em 'andale mono', 'lucida console', monospace;
	line-height: 1.5;
}

/* Headings */
h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
	color: #24305E;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

h1,
.h1 {
	font-size: 1.5em;
	line-height: 1.2em;
	margin-bottom: 30px;
}

h2 {
	font-size: 1.35em;
	line-height: 1.3em;
	margin-bottom: 25px;
}

h3 {
	font-size: 1.2em;
	line-height: 1.3em;
	margin-bottom: 20px;
}

h4 {
	font-size: 1.1em;
	line-height: 1.3em;
	margin-bottom: 15px;
}

h5 {
	font-size: 1.05em;
	margin-bottom: 10px;
	font-weight: 600;
}

h6 {
	font-size: 1em;
	margin-bottom: 10px;
	font-weight: 600;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
	margin: 0;
}

/* Links */
a {
	color: #24305E;
	text-decoration: none;
}

a:focus,
a:hover {
	color: #000;
}

main a {
	text-decoration: underline;
}

.dark a {
	color: #E8CF56;
}

/* main a[target="_blank"]:after { font-family: 'Font Awesome 5 Pro'; content: "\f08e"; padding-left: 8px; } /* External link icon indicators on external links */

/* Lists */
ul,
ol,
dl {
	margin: 0 0 25px 25px;
}

li ul,
li ol {
	margin: 0 25px;
}

dl dt {
	font-weight: bold;
}

dd {
	margin-left: 25px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
	border-bottom: 7px solid #E8CF56;
	margin-bottom: 25px;
	width: 100%;
}

table caption,
th,
td {
	text-align: left;
	font-weight: normal;
}

table,
td,
th {
	vertical-align: middle;
	background: #FFF;
}

th,
td,
table caption {
	padding: 12px 15px;
	border: 0px;
}

td,
table caption,
tbody th {
	border-top: 0px;
}

td:not(:first-child),
th:not(:first-child) {
	border-left: 0px;
}

th {
	font-weight: 600;
	background: #24305E;
	color: #E8CF56;
	padding: 15px;
}

tr:nth-child(even) td {
	background: #f2f6f9;
}

table caption {
	font-style: italic;
}

/* --- END TYPOGRAPHY --- */

/* --- UTILITIES --- */
img {
	max-width: 100%;
	height: inherit !important;
}

/* make sure images retain original aspect ratio */
.gm-style img {
	height: initial !important;
}

/* fix for Google Maps buttons */
img[style*="float: left"] {
	max-width: 50%;
	margin: 0 15px 10px 0;
}

/* floating images max 50% of container width from small size up */
img[style*="float: right"] {
	max-width: 50%;
	margin: 0 0 10px 15px;
}

@media (max-width: 575px) {

	img[style*="float: left"],
	img[style*="float: right"] {
		margin: 0 auto 25px;
		display: block;
		max-width: 100%;
		float: none !important;
	}
}

.error {
	color: red;
	background: #fff;
	padding: 5px;
	border: 1px solid red;
	margin: 10px 0;
	display: inline-block;
}

main ul li {
	padding-bottom: 10px;
	list-style-type: none;
	position: relative;
}

main ul li:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 600;
	content: "\f111";
	position: absolute;
	left: -20px;
	top: 7px;
	font-size: 7px;
	color: #24305E;
}

main ul ul {
	padding-top: 10px;
}

main .dark ul li:before {
	color: #E8CF56;
}

.note {
	display: block;
	background: #f2f6f9;
	padding: 15px;
}

.note a {
	text-decoration: underline;
}

.iframe-container {
	overflow: hidden;
	position: relative;
	padding-top: 56.25%;
	/* Calculated from the aspect ration of the content (in case of 16:9 it is 9/16= 0.5625) */
}

.iframe-container iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* Transitions */
a,
.navbar-nav .nav-link,
button,
.button,
.hero .dropdown-toggle:before,
.iconCta .icon {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/* Buttons */
.button {
	display: inline-block;
	padding: 12px 25px;
	font-size: 1.1em;
	font-weight: 600;
	background: #24305E;
	color: #FFF;
	border: 0;
	border-left: 7px solid #E8CF56;
	cursor: pointer;
	min-width: 150px;
	text-align: center;
	text-decoration: none;
}

.button:hover,
.button:focus {
	background: #E8CF56;
	color: #24305E;
	border-color: #24305E;
	text-decoration: none;
}

.button.apply {
	background: #E8CF56;
	border-left: 7px solid #24305E;
	color: #24305E;
	margin-left: 5px;
}

.button.apply:hover,
.button.apply:focus {
	background: #24305E;
	color: #fff;
	border-color: #E8CF56;
	text-decoration: none;
}

.detail-button {
	margin-top: 20px;
	margin-bottom: 20px;
}

.button.sm {
	font-size: 1em;
	padding: 4px 15px;
	min-width: initial;
	margin: 0 5px;
}

.button.alt {
	background: #e8e8e8;
	color: #24305E;
}

.button.alt:hover,
.button.alt:focus,
.iconCta:hover .button,
.iconCta:focus .button {
	background: #E8CF56;
	color: #24305E;
	border-color: #24305E;
	text-decoration: none;
}

/*.button:after { font-family: 'Font Awesome 5 Pro'; font-weight: 400; content: "\f105"; padding-left: 10px; }*/
.dark .button {
	background: #FFF;
	color: #24305E;
}

.dark .button:hover,
.dark .button:focus,
.dark .iconCta:hover .button,
.dark .iconCta:focus .button {
	background: #E8CF56;
	color: #24305E;
	border-color: #FFF;
}

/*.button[target="_blank"]:after { font-family: 'Font Awesome 5 Pro'; font-weight: 400; content: "\f08e"; padding-left: 10px; }*/
a.readMore {
	font-weight: 700;
}

/* Alert */
.alert {
	opacity: 1 !important;
	background: #E8CF56;
	color: #24305E;
	border-radius: 0;
	border: 0px;
	text-align: center;
	margin: 0;
	max-height: 0px;
	padding: 0 60px 0 15px;
	overflow: hidden;
	-webkit-transition: all 0.75s ease-out;
	-moz-transition: all 0.75s ease-out;
	-o-transition: all 0.75s ease-out;
	transition: all 0.75s ease-out;
}

.alert.show {
	max-height: 200px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.alert .button {
	margin-left: 10px;
	font-size: 0.9em;
	padding: 1px 15px;
}

.alert .button:hover,
.alert .button:focus {
	background: #FFF;
	color: #24305E;
}

.alert .close {
	opacity: 1;
	font-size: 2em;
	padding: 6px 14px;
}

/* --- HEADER --- */
header {
	background: #FFF;
}

header .logo {
	margin: 10px 0;
}

.utilityNav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.utilityNav ul {
	margin: 0;
}

.utilityNav ul li {
	list-style-type: none;
	display: inline-block;
}

.utilityNav ul li a {
	display: block;
	padding: 0 15px;
	color: #000;
	font-size: 0.95em;
}

.utilityNav ul li a:hover,
.utilityNav ul li a:focus {
	color: #24305E;
}

.searchBox {
	position: relative;
}

.searchBox.mobile {
	margin: 15px;
}

.searchBox:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f002";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
}

.searchBox input {
	border: 2px solid #000;
	background: transparent;
	border-radius: 50px;
	padding: 5px 10px 5px 50px;
	line-height: 25px;
	width: 100%;
}

.searchBox label,
.searchBox button {
	display: none;
}

.utilityNav .social {
	display: none;
	margin: 0 0 0 10px;
	text-align: center;
}

.utilityNav .social li {
	display: inline-block;
	list-style-type: none;
	margin-left: 5px;
}

.utilityNav .social li a {
	padding: 0;
}

.utilityNav .social a .fa-stack {
	font-size: 1.2em;
	color: #24305E;
}

.utilityNav .social a .fa-stack .fa-inverse {
	color: #FFF;
}

#google_translate_element {
	margin-left: 15px;
}


/* Main Navigation Global Styles */
.navbar {
	margin: 0;
	padding: 0;
	background: #24305E;
}

.navbar-expand-lg>.container,
.navbar-expand-lg>.container-fluid {
	padding: 10px 15px;
}

.navbar-brand {
	color: #FFF;
	margin-left: 10px;
}

.navbar-brand:hover,
.navbar-brand:focus {
	color: #E8CF56;
}

.navbar-toggler {
	border-color: #FFF;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
	margin: 0;
	padding: 0 15px;
	width: 100%;
}

.navbar-nav .nav-link {
	line-height: 1.3em;
}

/* Mobile Styles */
@media (max-width: 991px) {
	.navbar-nav .nav-link {
		color: #FFF;
		border-top: 1px solid #303c6c;
		padding: 15px 10px;
	}

	.navbar-nav.sm-collapsible .has-submenu {
		padding-right: 60px
	}

	.navbar-nav.sm-collapsible .sub-arrow {
		margin: 0 10px 0 0;
		transform: translateY(-50%);
		border: 1px solid #FFF;
		color: #FFF;
	}

	.navbar-nav .nav-link:hover,
	.navbar-nav .nav-link:focus,
	.navbar-nav .nav-link.active {
		color: #E8CF56;
	}

	.navbar-nav .nav-link.highlighted {
		background: #303c6c;
		color: #E8CF56;
	}

	.navbar-nav.sm-collapsible .nav-link:hover .sub-arrow,
	.navbar-nav.sm-collapsible .nav-link:focus .sub-arrow,
	.navbar-nav .nav-link.highlighted .sub-arrow {
		color: #FFF;
		border-color: #FFF;
	}

	/* Level 2 */
	.dropdown-menu {
		background: #303c6c;
		border-radius: 0;
		padding: 0;
		margin: 0;
	}

	.dropdown-item {
		color: #FFF;
		padding: 10px 25px;
		border-bottom: 1px solid #3f497b;
	}

	.dropdown-item:hover,
	.dropdown-item.active {
		background: transparent;
		color: #E8CF56;
	}

	.navbar-nav.sm-collapsible .dropdown-item:hover .sub-arrow,
	.navbar-nav.sm-collapsible .dropdown-item.active .sub-arrow,
	.navbar-nav.sm-collapsible .dropdown-item:active .sub-arrow,
	.navbar-nav.sm-collapsible .dropdown-item.highlighted .sub-arrow {
		color: #E8CF56;
		border-color: #E8CF56;
	}

	.navbar-nav.sm-collapsible .dropdown-item .sub-arrow {
		border: 1px solid #FFF;
		color: #FFF;
	}

	/* Level 3 */
	.dropdown-item.highlighted {
		background: #374273;
		color: #FFF;
		border-bottom: 1px solid #3f497b;
	}

	.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
		margin: 0;
		border: 0;
		background: #374273;
	}

	.dropdown-menu .dropdown-menu .dropdown-item {
		padding: 8px 40px;
	}
}

/* Sm Desktop Styles */
@media (min-width: 992px) {

	.navbar-brand,
	.navbar-nav>.nav-item>.nav-link>.sub-arrow {
		display: none;
	}

	.navbar-nav {
		justify-content: space-between;
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		color: #FFF;
		padding: 20px 20px;
		letter-spacing: 0.05em;
	}

	.navbar-nav .nav-link:hover,
	.navbar-nav .nav-link:focus,
	.navbar-nav .nav-link.active,
	.navbar-nav .nav-link.highlighted {
		background: #FFF;
		color: #24305E;
	}

	/* Level 2 */
	.navbar-nav .dropdown-menu {
		border: 0px;
		border-radius: 0px;
		background: #FFF;
		padding: 20px 0;
		border-right: 3px solid #f5f5f5;
	}

	.navbar-nav>.nav-item>.dropdown-menu {
		border-top: 0px;
	}

	.dropdown-item {
		padding: 8px 20px;
		line-height: 1.2em;
		position: relative;
	}

	.dropdown-item.active {
		background: transparent;
		color: #24305E;
	}

	.dropdown-item:hover,
	.dropdown-item.active:hover,
	.dropdown-item.highlighted {
		color: #24305E;
		background: #EEE;
	}

	.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow,
	.navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
		margin: 0 10px 0 0;
		transform: translateY(-40%);
	}

	/* Level 3 */
	.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu {
		transform: translate(5px, -10px);
	}
}

/* Lg Desktop Styles */
@media (min-width: 1200px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		font-weight: 600;
	}
}

/* --- SECTIONS, BLOCKS & ELEMENTS --- */
/* main {} */

.block {
	margin-bottom: 55px;
}

.block>*:last-child,
.block.row>div[class^="col-"]>*:last-child {
	margin-bottom: 0;
}

.section>.block:first-child {
	margin-top: 55px;
}

.section .overlay {
	padding: 56px 0 1px;
}

.section.lightgrey {
	background: #f2f2f2;
}

.section.blue {
	background: #24305E;
}

.section.bgImg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section.bgImg.white .overlay {
	background: rgba(255, 255, 255, 0.5);
}

.section.bgImg.lightgrey .overlay {
	background: rgba(200, 200, 200, 0.5);
}

.section.bgImg.dark .overlay {
	background: rgba(51, 51, 51, 0.5);
}

.section.dividerTop {
	border-top: 5px solid #e8e8e8;
}

.dark,
.dark h1,
.dark .h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
	color: #FFF;
}

.box {
	padding: 40px 30px 15px;
	background: #f2f6f9;
	border-top: 7px solid #24305E;
	border-bottom: solid 7px #E8CF56;
	height: 100%;
}

.box.noBorders {
	border: 0px;
}

.box.dark {
	background: #24305E;
	/* padding:  */
	border-top: 0px;
	color: #FFF;
}

.box.yellow {
	background: #E8CF56;
	border: 0px;
}

.yellow .button {
	border-color: #FFF;
}

.yellow .button:hover,
.yellow .button:focus {
	background: #FFF;
	border-color: #24305E;
	color: #000;
}

.contentColContent {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.contentColContent.box .bottomImg {
	margin: 15px -30px -28px;
	border-top: 7px solid #E8CF56;
}

.contentColContent.box .bottomImg img {
	border-top: 25px solid #FFF;
}

/* --- FOOTER --- */
footer {
	color: #FFF;
}

footer h4 {
	font-size: 1.4em;
	margin-bottom: 25px;
	color: #FFF;
	font-weight: 700;
}

footer .dark a {
	color: #FFF;
}

footer .top {
	background: url('images/footerBG.jpg') center no-repeat;
	background-size: cover;
}

footer .topOverlay {
	background: rgba(68, 76, 80, 0.93);
	padding: 75px 0 50px;
}

footer h5 {
	position: relative;
	padding-left: 38px;
	font-size: 1.1em;
	margin-bottom: 15px;
}

footer h5:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: "\f3c5";
	font-size: 1.4em;
	position: absolute;
	left: 0;
	top: -5px;
}

footer .top ul {
	margin: 0 0 25px 0;
}

footer .top ul li {
	list-style-type: none;
	line-height: 1.2em;
	padding: 0 0 12px;
}

footer .bottom {
	background: #3a3f43;
	border-top: 7px solid #E8CF56;
	padding: 30px 0 10px;
}

footer .bottom .row {
	align-items: center;
}

footer .bottom p,
footer .bottom ul {
	margin-bottom: 15px;
}

footer .copyright {
	font-weight: 300;
	font-size: 0.9em;
}

footer .social {
	margin: 0 0 25px;
	text-align: center;
}

footer .social li {
	display: inline-block;
	list-style-type: none;
	margin: 0 7px;
}

footer .social a .fa-stack {
	font-size: 1.5em;
	color: #d7d8da;
}

footer .social a .fa-stack .fa-inverse {
	color: #3a3f43;
}

/* Hero */
.hero {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2;
}

.hero>img {
	display: block;
}

.hero .overlay {
	font-size: 1.1em;
	background: #24305E;
}

.hero .radioButtons {
	margin-bottom: 30px;
}

.hero .radioButtons label {
	cursor: pointer;
}

.hero .radioButtons label:not(:last-child) {
	margin-right: 30px;
}

.hero .radioButtons label input {
	margin-right: 10px;
	cursor: pointer;
}

.hero .links {
	z-index: 2;
}

.hero .links.hidden {
	display: none;
}

.hero .dropdown-toggle {
	background: #FFF;
	color: #24305E;
	border: 0;
	padding: 10px 70px 10px 25px;
	position: relative;
	width: 100%;
	text-align: left;
}

.hero .dropdown-toggle:after {
	display: none !important;
}

.hero .dropdown-toggle:before {
	border: 0px;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f078";
	background: #E8CF56;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 45px;
	text-align: center;
	font-size: 18px;
	padding-top: 10px;
}

.hero .dropdown-toggle:hover {
	color: #000;
}

.hero .dropdown-toggle:hover:before,
.hero .dropdown.show .dropdown-toggle:before {
	background: #374273;
	color: #E8CF56;
}

.hero .dropdown-menu {
	background: #FFF;
	border-color: #ccc;
	width: 100%;
	border-radius: 0px;
	padding: 0;
	margin: 0;
}

.hero .dropdown-menu .dropdown-item {
	color: #000;
	padding: 8px 25px;
	font-weight: 600;
	text-decoration: none;
	white-space: normal;
}

.hero .dropdown-menu .dropdown-item:last-child {
	border-bottom: 0px;
}

.hero .dropdown-menu .dropdown-item:hover,
.hero .dropdown-menu .dropdown-item:focus {
	background: #f9f9f9;
	color: #24305E;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

/* CTA Grid */
.ctaGrid>div {
	margin-bottom: 30px;
}

.ctaGrid .cta {
	display: block;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 275px;
	overflow: auto;
	text-decoration: none;
}

.ctaGrid .cta .overlay {
	padding: 50px;
	background: rgba(36, 48, 94, 0.65);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.ctaGrid .cta .text {
	display: block;
	font-family: Montserrat;
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: 700;
	color: #FFF;
}

.ctaGrid .cta .button {
	margin-top: 25px;
}

.ctaGrid .cta:hover .button,
.ctaGrid .cta:focus .button {
	background: #E8CF56;
	color: #24305E;
	border-color: #FFF;
}

.dark .cta .overlay {
	background: rgba(255, 255, 255, 0.8);
}

.dark .cta .text {
	color: #24305E;
}

.dark .cta .button {
	background: #24305E;
	color: #FFF;
	border-color: #E8CF56;
}

.dark .cta .button:hover,
.dark .cta .button:focus {
	background: #E8CF56;
	color: #24305E;
	border-color: #24305E;
}

.iconCtaGrid .iconCta {
	display: block;
	margin-bottom: 30px;
	text-align: center;
	text-decoration: none;
}

.iconCta .icon {
	display: block;
	width: 150px;
	height: 150px;
	margin: 5px auto 20px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.iconCta .heading {
	margin-bottom: 8px;
}

.iconCta .text {
	display: block;
	color: #000;
	font-size: 0.95em;
	line-height: 1.4em;
}

.dark .iconCta .text {
	color: #FFF;
}

.dark .iconCta .text {
	color: #FFF;
}

.iconCta .button {
	margin-top: 15px;
}

a.iconCta:hover .icon,
a.iconCta:focus .icon {
	width: 160px;
	height: 160px;
	margin: 0px auto 15px;
}


/* Owl Carousel Slider */
.owl-carousel .item img {
	width: 100%;
	display: block;
}

.owl-carousel .item-video {
	height: 462px;
}

.owl-carousel .owl-video-frame {
	background: #000;
}

.owl-carousel .item-video.hasCustomImg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.owl-carousel .item-video.hasCustomImg .owl-video-wrapper {
	background: transparent;
}

.owl-carousel .item-video.hasCustomImg .owl-video-tn {
	background: transparent !important;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 45px;
	transform: translateY(-50%);
	pointer-events: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	float: left;
	font-size: 24px;
	background: #333;
	color: #FFF;
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0 4px 0 0 !important;
	text-align: center;
	position: relative;
	pointer-events: initial;
	margin: 1px 0;
}

.owl-carousel .owl-nav div i {
	font-weight: 400;
}

.owl-carousel .owl-nav button.owl-next {
	float: right;
	padding: 0 0 0 4px !important;
}

.owl-carousel .owl-nav>button:hover {
	background: #FFF;
	color: #333;
}

.owl-carousel .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}


/* 
.owl-carousel .owl-nav { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; }
.owl-carousel .owl-nav > div { float: left; width: 60px; height: 100%; font-size: 2em; position: relative; pointer-events: initial; }
.owl-carousel .owl-nav > div.owl-next { float: right; }
.owl-carousel .owl-nav > div > .fa { position: absolute; left: 0; top: 50%; width: 100%; text-align: center; height: 30px; margin-top: -15px; opacity: 0.7; color: #FFF; }
.owl-carousel .owl-nav > div:hover { background: rgba(255,255,255,0.3); }
.owl-carousel .owl-nav > div:hover > .fa { opacity: 1; }
*/

.imageContent5050:not(.flex) .img {
	margin-bottom: 25px;
}

.imageContent5050 .img img {
	display: block;
	width: 100%;
}

.imageContent5050 .bgCoverImg {
	background: url('images/default.jpg') center no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.subLinks a {
	font-size: 1.1em;
	text-decoration: none;
}

.videoContent5050 .embed-responsive {
	margin-bottom: 25px;
}

.postingList .postingItem {
	display: block;
	border-bottom: 1px solid #95999c;
	padding: 20px;
}

.postingList .postingItem h4 {
	font-size: 1em;
	font-weight: 600;
	margin: 0;
}

.postingList .postingItem .text {
	display: block;
	color: #000;
	margin-top: 10px;
}

.postingList .postingItem:hover,
.postingList .postingItem:focus {
	background: #f2f6f9;
}

.postingList a.readMore {
	display: inline-block;
	margin: 20px 0 10px;
}

.box .postingList .postingItem:hover,
.box .postingList .postingItem:focus {
	background: #FFF;
}

.recentPostingsCTA .ctaGrid {
	margin-top: 30px;
}

.eventsLinks .upcomingEvents {
	margin-top: 30px;
}

.linkList h2 {
	margin-bottom: 10px;
}

.linkList h2:not(:first-child) {
	margin-top: 30px;
}

.linkList .link {
	display: block;
	font-size: 1.1em;
	padding: 15px 0;
	border-bottom: 1px solid #8f9bc3;
	text-decoration: none;
}

.linkList .link:last-child {
	margin-bottom: 15px;
}

.linkList .link:hover,
.linkList .link:focus {
	text-decoration: underline;
}

.linkList.dark .link {
	color: #FFF;
}

.linkList.dark .link:hover,
.linkList.dark .link:focus {
	color: #E8CF56;
	text-decoration: none;
}

.eventsList .eventItem {
	display: block;
	border-bottom: 1px solid #95999c;
	padding: 20px 10px 20px 90px;
	position: relative;
	min-height: 130px;
	text-decoration: none;
}

.eventsList .eventItem .dateBox {
	display: block;
	position: absolute;
	left: 15px;
	top: 20px;
	width: 60px;
	padding: 10px 0;
	background: #24305E;
	color: #E8CF56;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}

.eventsList .eventItem .dateBox .day,
.eventsList .eventItem .dateBox .time {
	display: block;
	font-size: 25px;
	line-height: 25px;
	font-weight: 700;
}

.eventsList .eventItem .dateBox .time.allDay {
	padding: 15px 0;
}

.eventsList .eventItem .dateBox .month,
.eventsList .eventItem .dateBox .year,
.eventsList .eventItem .dateBox .intro,
.eventsList .eventItem .dateBox .amPm {
	display: block;
}

.eventsList .eventItem h4 {
	font-size: 1em;
	font-weight: 600;
}

.eventsList .eventItem .eventInfo {
	display: block;
	margin-bottom: 15px;
}

.eventsList .eventItem .eventInfo .time,
.eventsList .eventItem .eventInfo .location,
.eventsList .eventItem .eventInfo .categories {
	display: block;
	padding-left: 25px;
	margin-right: 25px;
	position: relative;
	line-height: 1.3em;
	color: #000;
	margin-bottom: 5px;
}

.eventsList .eventItem .eventInfo .time:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f017";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
}

.eventsList .eventItem .eventInfo .location:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f3c5";
	position: absolute;
	left: 1.5px;
	top: 0;
	font-size: 16px;
}

.eventsList .eventItem .eventInfo .categories:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f07c";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
}

.eventsList .eventItem .summary {
	display: block;
	margin-bottom: 20px;
}

.eventsList a.eventItem:hover,
a.eventsList .eventItem:focus {
	background: #f2f6f9;
}

.eventsList a.readMore {
	display: inline-block;
	margin: 0 0 10px;
}

.box .eventsList {
	margin-left: -20px;
	margin-right: -20px;
}

.box .eventsList a.eventItem:hover,
.box .eventsList a.eventItem:focus {
	background: #FFF;
}

.homepage .eventsList .eventItem .eventInfo {
	display: flex;
	flex-wrap: wrap;
}

.homepage .eventsList a.readMore {
	margin-top: 20px;
	text-decoration: none;
}

.homepage .eventsList a.readMore:hover,
.homepage .eventsList a.readMore:focus {
	text-decoration: underline;
}

.eventsList.search .eventItem {
	margin-top: 20px;
}

.eventDetail .eventsList .eventItem {
	margin-bottom: 45px;
}

.homeImageLinks {
	margin-bottom: 30px;
}

.homeImageLinks .box .row {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.homeImageLinks .link {
	display: block;
	text-align: center;
}


/* Inner pages
.headingBanner { background-image: url('images/bannerHexBG.jpg'); background-repeat: repeat; background-position: center; }
.headingBanner .overlay { min-height: 250px; background: rgba(0,0,0,0.55); display: flex; align-items: center; }
.headingBanner .overlay .container { text-align: center; }
.headingBanner.noOverlay .overlay { opacity: 0; }
.headingBanner .headingImg { margin-bottom: 15px; }
 */

.headingBanner {
	background-image: url('images/bannerHexBG.jpg');
	background-repeat: repeat;
	background-position: center;
}

.headingBanner .mobileBanner {
	background-image: url('images/bannerHexBG.jpg');
	background-repeat: repeat;
	background-position: center;
	height: 250px;
}

.headingBanner .overlay {
	background: #E8CF56;
	padding-top: 20px;
}

.headingBanner .overlay .container {
	text-align: left;
}

.headingBanner .overlay h1 {
	color: #24305E;
	padding-bottom: 10px;
	margin: 0;
}

.headingBanner .headingImg {
	margin-bottom: 15px;
}

.headingBanner.noOverlay .overlay h1 {
	display: none;
}

/* Search/Contact Block */
.section.searchContact {
	background: #E8CF56;
	padding: 45px 0;
	/* margin-top: -56px; */
}

.section.searchContact .overlay {
	padding: 0;
}

.section.searchContact p {
	margin: 0;
}

.section.searchContact .search {
	margin-bottom: 30px;
}

.section.searchContact h6 {
	margin-bottom: 15px;
	color: #000;
}

.section.searchContact .searchBox input {
	background: transparent;
	color: #000;
	width: 100%;
}

/* Fancybox Gallery */
.fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
	overflow-x: hidden;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}

/* Breadcrumbs */
.breadcrumbs {
	background: #E8CF56;
	padding: 0 0 20px 0;
	margin-bottom: 30px;
}

.breadcrumbs .last {
	color: #24305E;
}

/* Expanding Panels */
@keyframes arrowSpinOut {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(180deg);
	}
}

@keyframes arrowSpinIn {
	0% {
		transform: rotate(180deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

/* .accordion {} */

.card {
	border: 0px;
	border-radius: 0px;
	margin-bottom: 15px;
}

.card-header {
	font-size: 1em;
	line-height: 1.4em;
	padding: 0;
}

.card-header h4 {
	margin: 0;
	background: #24305E;
	font-size: 1.3em;
	font-weight: 600;
}

.accordion .card-header a {
	display: block;
	padding: 10px 75px 10px 30px;
	position: relative;
	cursor: pointer;
	color: #E8CF56;
}

.accordion .card-header a:hover,
.accordion .card-header a:focus {
	color: #FFF;
	text-decoration: none !important;
}

.card-header a .fa {
	display: inline-block;
	font-size: 20px;
	line-height: 20px;
	position: absolute;
	right: 30px;
	top: 14px;
	animation: 0.4s ease 0s normal forwards 1 running arrowSpinOut;
}

.card-header a.collapsed .fa {
	animation: 0.4s ease 0s normal forwards 1 running arrowSpinIn;
}

.card-body {
	border: 1px solid #24305E;
	border-top: 0px;
	padding: 30px 30px 5px;
}

.card-header h2 {
	margin: 0;
	background: #24305E;
}

.accordion .card-header h2 a {
	padding: 25px 90px 25px 30px;
}

.card-header h2 a .fa {
	font-size: 25px;
	line-height: 25px;
	right: 42px;
	top: 32px;
}

.card-body.dark {
	background: #24305E;
	color: #FFF;
}

.card-body.dark a {
	color: #E8CF56;
	text-decoration: underline;
}

.card-body.dark a:hover,
.card-body.dark a:focus {
	color: #f2f6f9;
	text-decoration: underline;
}

.quickLinks .quickLink {
	border-top: 1px solid #8c97c4;
	padding: 20px 0 1px 0;
	position: relative;
}

/*.quickLinks .quickLink:before { font-family: 'Font Awesome 5 Pro'; content: "\f08e"; position: absolute; right: 0; top: 50%; tranform: translateY(-50%); color: #E8CF56; font-size: 30px; line-height: 30px; }*/
.quickLinks .quickLink p,
.quickLinks .quickLink ul,
.quickLinks .quickLink ol {
	margin-bottom: 19px;
}

.quickLinks .card-body {
	padding: 0 30px 5px;
}

.contactCards {
	margin-bottom: 55px;
}

.contactCards .block {
	margin-bottom: 0px;
}

.contactCards .block>div {
	margin-bottom: 25px;
}

.contactCards .box {
	padding: 20px 20px 5px;
}

.contactCards h5 {
	font-size: 1.1em;
	margin-bottom: 15px;
}

.contactCards .address,
.contactCards .phone,
.contactCards .website {
	padding-left: 30px;
	position: relative;
	margin-bottom: 15px;
}

.contactCards .address:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f3c5";
	position: absolute;
	left: 1px;
	top: 4px;
	color: #24305E;
	font-size: 16px;
	line-height: 16px;
}

.contactCards .phone:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f095";
	position: absolute;
	left: 0;
	top: 4px;
	color: #24305E;
	font-size: 16px;
	line-height: 16px;
}

.contactCards .website:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f57d";
	position: absolute;
	left: 1px;
	top: 4px;
	color: #24305E;
	font-size: 16px;
	line-height: 16px;
}

.logoCards .box {
	text-align: center;
}

.logoCards .box .logo img,
.logoCards .box h5 {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.logoCards .box .logo img {
	transform: scale(0.95);
}

.logoCards .box .cta {
	display: block;
	text-decoration: none;
}

.logoCards .box .cta:hover h5 {
	color: #000;
}

.logoCards .box .cta:hover .logo img {
	transform: scale(1);
}

.logoCards .box p {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.logoCards .box p a {
	white-space: nowrap;
}

.summerHearings .regions>div {
	margin-top: 30px;
}

.summerHearings .box {
	text-align: center;
	font-size: 1.1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 40px;
	min-height: 200px;
}

.summerHearings .regions .box h4 {
	font-size: 1.8em;
	font-weight: 600;
	margin-bottom: 5px;
}

.summerHearings .regions .box p {
	margin-bottom: 5px;
}

.summerHearings .regions .box.dark h4 {
	color: #E8CF56;
}

.fileExt {
	text-transform: uppercase;
}

.quickLinksCta .quickLinks {
	margin: 0 0 25px;
}

.quickLinksCta .quickLinks li {
	padding: 0;
}

.quickLinksCta .quickLinks li:before {
	display: none;
}

.quickLinksCta .quickLinks li a {
	font-size: 1.15em;
	display: block;
	text-decoration: none;
	border-bottom: 1px solid #8f9bc3;
	padding: 12px 5px;
	color: #FFF;
}

.quickLinksCta .quickLinks li a:hover,
.quickLinksCta .quickLinks li a:focus {
	color: #E8CF56;
}

/* News & Blog Styles */
.categoriesList,
.tagsList {
	margin-bottom: 30px;
}

.categoriesList ul,
.tagsList ul,
.archivesList ul {
	margin-bottom: 0px;
}

.archivesList .archiveLink {
	display: block;
}

.archivesList .archiveLink:last-child {
	margin-bottom: 15px;
}

.archivesList .panel-title a .fa {
	top: 12px;
}

.videoThumb {
	position: relative;
}

.videoThumb .playBtn {
	top: 39%;
	left: 41%;
	background: url('images/youtubePlay.png') no-repeat;
	width: 40px;
	height: 28px;
	display: inline-block;
	position: absolute;
}

.newsItem {
	margin-top: 30px;
}

.newsItem .image,
.newsItem .videoThumb {
	float: right;
	max-width: 200px
}

.newsItem h2 {
	margin-bottom: 15px;
}

.newsItem .summary {
	margin: 10px 0;
}

.blogItem {
	margin-top: 30px;
}

.blogItem .image,
.blogItem .videoThumb {
	float: right;
	max-width: 200px
}

.blogItem h2 {
	margin-bottom: 15px;
}

.blogItem .summary {
	margin: 10px 0;
}

.blogSidebar .searchBox {
	margin-bottom: 30px;
}

.blogSidebar .searchBox label {
	display: none;
}

.socialShare {
	margin-top: 45px;
}

/* Paging */
.paging ul {
	margin: 45px 0 0;
}

.paging li {
	display: inline-block;
	line-height: 25px;
}

.paging li.pages {
	margin-right: 10px;
}

.paging li a {
	border: 1px solid #000;
	padding: 0 8px;
	display: inline-block;
	line-height: 25px;
}

.paging li a.active {
	color: #000;
	font-weight: bold;
}

/* Forms */
.form label {
	display: block;
}

.form .formInput {
	margin-bottom: 10px;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form textarea {
	width: 100%;
}

.form .formSubmit {
	text-align: right;
}

.error-inline,
.errors {
	color: #FF0000;
}

.form-group.submit-align-left {
	display: flex;
	align-items: center;
}

.sendMsg {
	margin-left: 15px;
	line-height: 1.2em;
}

.ui-datepicker-calendar th {
	padding: 0;
	width: 30px;
	height: 28px;
	line-height: 28px;
	text-align: center;
}

.ui-datepicker-calendar td {
	padding: 0;
}

.ui-datepicker-calendar a.ui-state-default {
	display: block;
	width: 30px;
	height: 28px;
	line-height: 28px;
	text-align: center;
}

.ui-datepicker-calendar .ui-state-highlight {
	font-weight: 600;
}

.ui-datepicker-calendar a.ui-state-default:hover {
	background: #24305E;
	color: #FFF;
	text-decoration: none;
}

.ui-datepicker-calendar tr th:first-child,
.ui-datepicker-calendar tr td:first-child {
	padding-left: 15px;
}

.ui-datepicker-calendar tr th:last-child,
.ui-datepicker-calendar tr td:last-child {
	padding-right: 15px;
}

.ui-datepicker-header {
	display: flex;
	justify-content: space-between;
	background: #E8CF56;
	color: #24305E;
	padding: 4px 10px;
}

.ui-datepicker-header .ui-datepicker-next {
	order: 3;
}

.ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker-header .ui-datepicker-next:hover {
	cursor: pointer;
	color: #000;
	text-decoration: underline !important;
}

.form-group {
	margin-bottom: 30px;
}

.form-group label.required:after {
	content: " *";
	color: #E8CF56;
	font-weight: bold;
}

.form-group>label {
	margin-bottom: 5px;
	font-weight: 600;
}

.form-group>.help-block {
	margin-top: 5px;
	font-style: italic;
	font-size: 0.9em;
	color: #3a3f43;
}

/* Search Autocomplete */
.ui-autocomplete {
	position: absolute;
	background: #FFF;
	padding: 15px;
	border: 1px solid #000;
}

.ui-autocomplete li {
	display: block;
	list-style-type: none;
}

.ui-autocomplete li a {
	display: block;
	cursor: pointer;
}

/* Search Results */
.searchResult {
	border-bottom: 1px solid #000;
	margin-bottom: 30px;
}

.searchResult:last-child {
	border-bottom: 0px;
}

/* Directory */
h2.directoryCategory {
	font-size: 1.6em;
}

.directoryList {
	margin-bottom: 30px;
}

.directoryItem {
	text-align: center;
	padding-top: 25px;
	padding-bottom: 15px;
	position: relative;
	align-items: center;
}

.directoryItem:first-child {
	border-top: 7px solid #E8CF56;
}

.directoryItem:last-child {
	border-bottom: 7px solid #E8CF56;
}

.directoryItem:nth-child(even) {
	background: #f2f6f9;
}

.directoryItem .img img {
	max-width: 200px;
	display: block;
	margin: 0 auto 10px;
}

.directoryItem h3 {
	margin: 0 0 10px;
	font-size: 1.4em;
}

.directoryItem h3:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f007";
	padding-right: 10px;
	color: #000;
	font-weight: 400;
}

.directoryItem h4 {
	margin-bottom: 10px;
	font-weight: 500;
}

.directoryItem h4:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f2bb";
	padding-right: 10px;
	color: #000;
	font-weight: 400;
}

.directoryItem p {
	margin-bottom: 10px;
}

.directoryItem p.phone:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f095";
	padding-right: 10px;
}

.directoryItem p.address:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f3c5";
	padding-right: 10px;
}

.directoryItem p.email a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f0e0";
	padding-left: 10px;
	font-weight: 400;
}

/* Department List */
.departmentList {
	margin-bottom: 30px;
}

.departmentItem {
	text-align: center;
	padding-top: 25px;
	padding-bottom: 15px;
	position: relative;
	align-items: center;
	border-bottom: 3px solid #E8CF56;
}

.departmentItem:nth-child(even) {
	background: #f2f6f9;
}

.departmentItem h3 {
	margin: 0 0 10px;
	font-size: 1.5em;
}

.departmentItem p {
	margin-bottom: 10px;
}

.departmentItem p.phone {
	font-size: 1.1em;
	font-weight: 600;
}

.departmentItem p.phone:before {
	font-family: 'Font Awesome 5 Pro';
	content: "\f095";
	padding-right: 10px;
}

.departmentItem p.link a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f061";
	padding-left: 10px;
	font-weight: 400;
}

.departmentItem p.email a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f0e0";
	padding-left: 10px;
	font-weight: 400;
}

ul.departmentMessageList li {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 15px;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

ul.departmentMessageList li:before {
	top: 9px;
}

ul.departmentMessageList li a {
	text-decoration: none;
	display: block;
	line-height: 1.2em;
}

ul.departmentMessageList li a:hover,
ul.departmentMessageList li a:focus {
	text-decoration: underline;
}


/* Ad Strip */
.extStrip {
	background: #24305E;
}

.extStrip.yellow {
	background: #E8CF56;
}

.extStrip.white {
	background: #FFF;
}

.extStrip.black {
	background: #000;
}

.extImg {
	background: url('images/default.jpg') center no-repeat;
	background-size: cover;
	width: 100%;
	height: 60vw;
}

.extText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 25px 30px 5px;
}

.extText .button {
	font-size: 1.05em;
	padding: 6px 20px;
	min-width: initial;
	margin: 0 5px;
}

.extText .h2 {
	font-weight: bold;
	font-size: 1.8em;
}

.extLogo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.extLogo a,
.extLogo img {
	display: block;
}

/* Google reCaptcha */
#html_element>div {
	display: inline-block;
}

@media (max-width: 991px) {

	/* Custom styles to hide inline background image at small sizes */
	.headingBanner {
		background-image: none !important;
	}
}

/* Mobile-first responsive styles - build up from Mobile */
@media (min-width: 576px) {

	/* Bootstrap SM and up */
	h1,
	.h1 {
		font-size: 1.6em;
	}

	h2 {
		font-size: 1.45em;
	}

	h3 {
		font-size: 1.25em;
	}

	.hero {
		position: relative;
	}

	.hero .overlay {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		/* background: rgba(0, 0, 0, 0.5); */
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 75%);
		font-size: 1.3em;
	}

	.hero .dropdown {
		display: inline-block;
	}

	.hero .dropdown-toggle {
		width: initial;
		min-width: 370px;
	}

	.ctaGrid .cta {
		min-height: 300px;
	}

	.postingList .postingItem h4 {
		font-size: 1.1em;
	}

	.box .eventsList {
		margin-left: 0;
		margin-right: 0;
	}

	.eventsList .eventItem {
		padding-left: 135px;
	}

	.eventsList .eventItem h4 {
		font-size: 1.1em;
	}

	.eventsList .eventItem .dateBox {
		width: 100px;
		font-size: 15px;
	}

	.eventsList .eventItem .dateBox .day {
		font-size: 40px;
		line-height: 40px;
	}

	.eventsList .eventItem .dateBox .month,
	.eventsList .eventItem .dateBox .year {
		display: inline-block;
	}

	.eventsList .eventItem .dateBox .month:after {
		content: ",";
	}

	.directoryItem {
		text-align: left;
	}

	.extImg {
		height: 300px;
	}

	.departmentMessageList {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		-moz-column-gap: 30px;
		column-gap: 30px;
	}

	.iconCtaGrid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -15px 25px;
	}

	.iconCtaGrid .iconCta {
		width: 50%;
		padding: 0 15px;
	}
}

@media (min-width: 768px) {

	/* Bootstrap MD and up */
	h1,
	.h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.55em;
	}

	h3 {
		font-size: 1.3em;
	}

	h4 {
		font-size: 1.15em;
	}

	h5 {
		font-size: 1.1em;
	}

	.alert.show {
		max-height: 100px;
		font-size: 1.1em;
	}

	.hero {
		z-index: initial;
	}

	/* .hero + .section { margin-top: -90px; position: relative; z-index: 3; } */
	.hero .dropdown-toggle {
		min-width: 430px;
	}

	.section.bgImg .overlay {
		padding: 136px 0 81px;
	}

	.homepage .section.bgImg {
		border-bottom: 90px solid #FFF;
	}

	.section.bgImg .overlay {
		padding: 136px 0 81px;
	}

	.homepage .section.bgImg .overlay {
		padding: 56px 0 1px;
		margin-bottom: -125px;
	}

	.ctaGrid .cta {
		min-height: 275px;
	}

	.ctaGrid .cta .text {
		font-size: 1.2em;
	}

	.ctaGrid>div {
		margin-bottom: initial;
	}

	.ctaGrid>div.quad:nth-child(1),
	.ctaGrid>div.quad:nth-child(2) {
		margin-bottom: 30px;
	}

	.ctaGrid .triple .cta .overlay {
		padding: 50px 30px;
	}

	.ctaGrid>div.triple:not(:first-child) {
		padding-left: 0;
	}

	.ctaGrid>div.triple:not(:last-child) {
		padding-right: 0;
	}

	.imageContent5050.reverseMd .row,
	.videoContent5050.reverseMd .row {
		flex-direction: row-reverse;
	}

	.imageContent5050.flex:not(.reverseMd) .img,
	.imageContent5050.flex.reverseMd .content {
		padding-right: 0;
	}

	.imageContent5050.flex:not(.reverseMd) .content,
	.imageContent5050.flex.reverseMd .img {
		padding-left: 0;
	}

	.recentPostingsCTA .ctaGrid {
		margin-top: 0;
	}

	.section.searchContact .search {
		border-right: 1px solid #9a804d;
		padding-right: 24px;
		margin: 0;
	}

	.section.searchContact .contact {
		padding-left: 25px;
	}

	.departmentItem h3 {
		margin: 0 0 20px;
	}

	.extImg {
		height: 100%;
	}

	.extText {
		padding: 20px 0 0;
	}

	.extText .h2 {
		font-size: 1.4em;
	}

	.headingBanner .headingImg {
		max-width: 600px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	/* ONLY Bootstrap MD */
	.recentPostingsCTA .ctaGrid .cta {
		background-position: 70% center;
	}
}

@media (min-width: 992px) {

	/* Bootstrap LG and up */
	h1,
	.h1 {
		font-size: 2.1em;
	}

	h2 {
		font-size: 1.65em;
	}

	h3 {
		font-size: 1.4em;
	}

	h4 {
		font-size: 1.2em;
	}

	h5 {
		font-size: 1.15em;
	}

	header .searchBox {
		margin-left: 15px;
	}

	header .searchBox input {
		width: 220px;
	}

	footer .top .row:first-child {
		margin-bottom: 60px;
		padding-bottom: 35px;
		border-bottom: 1px solid #919699;
	}

	/* .hero + .section { margin-top: -175px; } */
	.box.restricted {
		padding-right: 30%;
	}

	.ctaGrid .cta .text {
		font-size: 1.55em;
	}

	.ctaGrid .triple .cta .overlay {
		padding: 50px;
	}

	.postingList .postingItem h4 {
		font-size: 1.2em;
	}

	.eventsLinks .upcomingEvents {
		margin-top: 0;
	}

	.homeImageLinks {
		margin-bottom: 0;
	}

	.eventsList .eventItem .eventInfo {
		display: flex;
		flex-wrap: wrap;
	}

	.headingBanner .mobileBanner {
		display: none;
	}

	.headingBanner .overlay {
		min-height: 250px;
		background: rgba(0, 0, 0, 0.55);
		display: flex;
		align-items: center;
	}

	.headingBanner .overlay h1 {
		color: #FFF;
		max-width: 50%;
	}

	.headingBanner .overlay:not(.slim) {
		min-height: 400px;
	}

	.headingBanner.noOverlay .overlay {
		opacity: 0;
	}

	.breadcrumbs {
		padding: 25px 0
	}

	.contactCards .block {
		margin-bottom: 0px;
	}

	.contactCards .block>div {
		margin-bottom: 30px;
	}

	.section.searchContact .search {
		padding-right: 44px;
	}

	.section.searchContact .contact {
		padding-left: 45px;
	}

	.departmentItem {
		text-align: left;
	}

	.departmentItem .link,
	.departmentItem .email {
		text-align: center;
	}

	.departmentItem h3 {
		margin: 0 0 10px;
		font-size: 1.2em;
	}

	.extText .h2 {
		font-size: 1.6em;
	}

	.departmentMessageList {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}

	.iconCtaGrid .iconCta {
		width: 33.33%;
	}
}

@media (min-width: 1200px) {

	/* Bootstrap XL and up */
	h1,
	.h1 {
		font-size: 2.4em;
	}

	h2 {
		font-size: 1.8em;
	}

	h3 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1.3em;
	}

	h5 {
		font-size: 1.2em;
	}

	/*.utilityNav ul { margin-right: 15px; }*/
	.utilityNav ul li a {
		padding: 0 10px;
		font-weight: 600;
	}

	header .searchBox input {
		width: 200px;
	}

	.utilityNav .social {
		display: initial;
	}

	footer h4 {
		font-size: 1.7em;
	}

	footer h5 {
		font-size: 1.3em;
	}

	/* .hero { max-height: calc(100vh - 151px); } */
	.hero {
		max-height: 100vh;
	}

	.hero>img {
		opacity: 0;
	}

	.hero .overlay {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.hero .overlay .block {
		transform: translateY(-100px);
	}

	.videoRestrictedWidth {
		padding: 0 15%;
	}

	.ctaGrid .cta .text {
		font-size: 1.8em;
	}

	.ctaGrid .double .cta {
		min-height: 400px;
	}

	.ctaGrid .quad .cta .overlay {
		padding: 50px 30px;
	}

	.ctaGrid .quad .cta .text {
		font-size: 1.6em;
	}

	.ctaGrid>div.quad:nth-child(1),
	.ctaGrid>div.quad:nth-child(2) {
		margin-bottom: 0;
	}

	.postingList .postingItem h4 {
		font-size: 1.3em;
	}

	.headingBanner .overlay:not(.slim) {
		min-height: 475px;
	}

	.departmentItem h3 {
		font-size: 1.3em;
	}

	.extText {
		padding: 30px 15px 10px;
	}

	.extText .h2 {
		font-size: 1.8em;
	}

	.iconCtaGrid {
		flex-wrap: nowrap;
	}

	.iconCtaGrid .iconCta {
		width: initial;
	}
}

@media (min-width: 1420px) {

	/* Custom added responsive step above 1420px */
	.col-xxl-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-xxl-6 {
		-ms-flex: 0 0 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	h1,
	.h1 {
		font-size: 2.8em;
	}

	h2 {
		font-size: 2em;
	}

	h3 {
		font-size: 1.6em;
	}

	h4 {
		font-size: 1.4em;
	}

	.container {
		max-width: 1380px;
	}

	header .searchBox input {
		width: 300px;
	}

	.box:not(.normalPaddingXL) {
		padding-left: 60px;
		padding-right: 60px;
	}

	.ctaGrid .cta .text {
		font-size: 2.05em;
	}

	.ctaGrid .double .cta {
		min-height: 500px;
	}

	.ctaGrid .triple .cta .overlay {
		padding: 80px 50px;
	}

	.headingBanner .overlay:not(.slim) {
		min-height: 550px;
	}

	.departmentItem h3 {
		font-size: 1.5em;
	}

	.departmentMessageList {
		-webkit-column-count: 4;
		-moz-column-count: 4;
		column-count: 4;
	}
}

/* Accessibe Adjustments - Task 2fekke7 */
.acsb-trigger.acsb-trigger-size-small {
	width: 45px !important;
	height: 45px !important;
	border: 1px solid #ffffff !important;
	margin-bottom: 10px !important;
	margin-top: auto !important;
	margin-right: 10px !important;
}

/* Mimimize the Footer - Task 2wedzeh */
p#map-marker-before:before {
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	content: "\f3c5";
	margin-left: -24px;
	padding-right: 8px;
	font-size: 20px;
}

p#phone-icon-before:before {
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	content: "\f095";
	margin-left: -28px;
	padding-right: 8px;
	font-size: 20px;
}

.bottom.section.dark.thin-footer {
	background: #444D52;
	border-top: none;
	padding: 100px 0 50px 0;
}

p.footer-hed-logo img {
	padding: 0 10% 0 10%;
}

div.footer-legal-links {
	padding: 0 0 0 33%;
	line-height: 1.0;
	font-family: 'Montserrat', sans-serif;
}

div.footer-contact-column {
	padding: 0 0 0 20%;
	font-family: 'Montserrat', sans-serif;
}

div.footer-contact-column ul.social {
	text-align: left;
	margin-left: -33px;
	margin-top: 24px;
}

div.footer-contact-column i.fas.fa-circle.fa-stack-2x {
	color: #E8CF55;
}

.bottom.section.dark.bottom-bar p {
	font-family: 'Montserrat', sans-serif;
}

@media only screen and (max-width: 991px) {
	div.footer-legal-links {
		padding: 0;
	}

	div.footer-contact-column {
		padding: 0;
		margin-top: 30px
	}

	div.footer-contact-column ul.social {
		text-align: center;
		margin-left: unset;
	}

	p#map-marker-before:before {
		margin-left: unset;
	}

	p#phone-icon-before:before {
		margin-left: unset;
	}
}


/* Home Hero Adjustments - Task 2weduxv */
.home-hero-blue-block {
	background: #24305E;
	/* min-width: 430px; */
	padding: 35px;
	max-width: 800px;
	margin-left: -35px;
}

.home-hero-blue-block div.h1 {
	font-size: 2.5em;
}

.homepage .block.row.ctaGrid .col-md-4.triple {
	border-right: 7px solid #ffffff;
}


/* Link Styles - Task 2nh50y1 */
.box.subLinks a:hover {
	text-decoration: underline;
}


@media only screen and (max-width: 992px) {
	.box.subLinks a {
		text-decoration: underline;
	}
}

/* Hide Hand on Mobile - Task 2nh54qv */
@media only screen and (max-width: 767px) {
	.homeImageLinks .box .row .col-md:nth-child(2) {
		display: none !important;
		visibility: hidden !important;
	}
}

/* Calendar Page Style Adjustments - Task 2nh500v  */
#month_calendar #days_of_week th {
	text-overflow: ellipsis !important;
	overflow: hidden;
	white-space: nowrap;
}

@media screen and (max-width: 868px) and (min-width: 768px) {
	div#mini-cal-wrapper {
		font-size: 50%;
	}
}

#mini_calendar td.has_events div a {
	background: #24305E;
	color: #E8CF56;
}

#mini_calendar td.has_events div a:hover {
	background: #E8CF56;
	color: #24305E;
}


@media only screen and (max-width: 767px) {

	table#month_calendar_inner thead {
		display: none;
	}

	table#month_calendar_inner tr {
		display: flex;
		flex-direction: column;
	}

	table#month_calendar_inner td.day_cell.out_of_range {
		display: none;
	}

	#month_calendar #month_calendar_inner td {
		width: 100%;
		height: unset;
	}

	table#month_calendar_inner .day_cell .date {
		text-align: left;
		width: unset;
		padding-right: 10px;
	}

	table#month_calendar_inner td.day_cell {
		display: flex;
		justify-content: flex-start
	}

	table#month_calendar_inner td.day_cell .event {
		line-height: unset;
	}
}


/* Nav Dropdowns - Task 2nh570h  */
.navbar-nav>.nav-item>.dropdown-menu {
	margin-left: -3px !important;
	border: 3px solid #24305e;
	border-top: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu {
	border: 3px solid #24305e;
}


/* Hamburger Menu Changes - Task 2nh4yte  */
nav.navbar .container a.navbar-brand {
	display: none;
}

nav.navbar .container .navbar-toggler {
	width: 100%;
}

nav.navbar .container .navbar-toggler .navbar-toggler-icon {
	background-image: url("https://hed.state.nm.us/uploads/images/icon_ctas/xmark-solid-white.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

nav.navbar .container .navbar-toggler.collapsed .navbar-toggler-icon {
	background-image: url("https://hed.state.nm.us/uploads/images/icon_ctas/bars-solid-white.png");
	background-repeat: no-repeat;
	background-position: center;
}