/*        SCHOOL TEMPLATE F      */
/* ========== Main CSS ========= */

/************* FONTS *************/

/*
	font-family: var(--alt-font-family);
	font-family: var(--default-font-family);
	font-family: 'Playfair Display', serif;
*/

/*********** VARIABLES ***********/

:root {
    --default-font-color: #01393D;
    --default-font-family: 'STKBureauSerifRegular', sans-serif;
    --default-font-size: 18px;
    --alt-font-family: 'MDPrimerSemibold', sans-serif;
    --primary-color: #73994E;
}

/*********************************/

body,
html {
	height: 100%;
}
 
body {
	background: #fff;
	box-sizing: border-box;
	color: var(--default-font-color);
	font-family: var(--default-font-family);
	font-size: var(--default-font-size);
	font-weight: 400;
	margin: 0;
	padding: 102px 0 0;
}

body.nav-active {
	overflow: hidden;
	position: relative;
}

a {
	color: var(--primary-color);
	font-family: var(--alt-font-family);
	font-weight: 500;
	text-decoration: none;
}

a:hover {
	color: var(--default-font-color);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--default-font-color);
	font-family: 'HALRepostRegular', serif;
	font-weight: 400;
	line-height: 110%;
	margin: 0 0 15px;
	padding: 0;
}

h1 {
	color: #fff;
	font-size: 90px;
	margin: 0;
}

h2 {
	font-size: 42px;
}

h3 {
	font-family: 'MDPrimerSemibold';
	font-size: 26px;
	font-weight: 700;
}

h4 {
	font-size: 26px;
}

h5 {
	font-size: 24px;
	font-weight: 700;
}

h6 {
	font-size: 22px;
	font-weight: 700;
}

p, 
.ss-content-block ul,
.ss-content-block ol {
	line-height: 26px;
}

p {
	line-height: 28px;
	margin: 0 0 20px 0;
	padding: 0;
}

p:last-child {
	margin-bottom: 0;
}

.hr {
	border-bottom: 1px solid #dedede;
	margin: 15px 0;
}

hr {
	display: none;
}

iframe {
	display: inline-block;
	margin: 0 0 20px 0;
	max-width: 100%;
}

cite {
	background: #fff;
	border-left: 3px solid #707070;
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 120%;
	margin-top: 15px;
	padding: 5px 0 0 10px;	
}

cite a {
	text-transform: uppercase;
}

h2 img {
	margin-right: 15px;
}

.strong {
	font-weight: 700;
	color: #29B16D;
}

.red-text {
	color: var(--primary-color);
}

@media (max-width: 1024px) {
		p, 
	.ss-content-block ul,
	.ss-content-block ol {
		line-height: 26px;
	} 
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Global Content Box Overrides ----------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.ss-section-wrap {
	font-size: inherit;
}

.ss-content-block {
	margin-bottom: 10px;
}

.inner-content-block-wrap {
	padding: 20px 40px;
}

.ss-content-block.image-block .inner-content-block-wrap {
	padding: 0;
}

.ss-content-block.image-block img {
	margin: 0 auto;
	display: block;
}

.page-type-0 .main-content { 
	padding-bottom: 35px; 
}

@media only screen and (min-width: 550px) {
	.ss-content-block.col-1,
	.ss-content-block.col-2,
	.ss-content-block.col-2-3, 
	.ss-content-block.col-3,
	.ss-content-block.col-2-5,
	.ss-content-block.col-3-5,
	.ss-content-block.col-3-4,
	.ss-content-block.col-4,
	.ss-content-block.col-4-5, 
	.ss-content-block.col-5 {
		display: block;
		margin-left: 0;
		margin-right: 0;
		width: auto;
	}
}

@media only screen and (min-width: 768px) {
	.ss-content-block.col-1,
	.ss-content-block.col-2,
	.ss-content-block.col-2-3, 
	.ss-content-block.col-3,
	.ss-content-block.col-2-5, 
	.ss-content-block.col-3-5,
	.ss-content-block.col-3-4,
	.ss-content-block.col-4,
	.ss-content-block.col-4-5, 
	.ss-content-block.col-5 {
		display: inline-block;
		margin-left: 5px;
		margin-right: 5px;
	}

	.ss-content-block.col-1 {
		width: calc(100% - 10px);
	}

	.ss-content-block.col-2 {
		width: calc(50% - 10px);
	}
	
	.ss-content-block.col-2-3 {
		width: calc(100% * 2/3 - 10px);
	}	
	
	.ss-content-block.col-3 {
		width: calc(100% * 1/3 - 10px);
	}	

	.ss-content-block.col-5 {
		width: calc(20% - 10px);
	}

	.ss-content-block.col-2-5 {
		width: calc(40% - 10px);
	}

	.ss-content-block.col-3-5 {
		width: calc(60% - 10px);
	}

	.ss-content-block.col-4-5 {
		width: calc(80% - 10px);
	}

	.ss-content-block.col-4 {
		width: calc(25% - 10px);
	}

	.ss-content-block.col-3-4 {
		width: calc(75% - 10px);
	}
}

@media only screen and (min-width: 1024px) {
	.ss-content-block.col-1,
	.ss-content-block.col-2,
	.ss-content-block.col-2-3, 
	.ss-content-block.col-3,
	.ss-content-block.col-2-5, 
	.ss-content-block.col-3-4,
	.ss-content-block.col-3-5,
	.ss-content-block.col-4,
	.ss-content-block.col-4-5, 
	.ss-content-block.col-5 {
		display: inline-block;
		margin-left: 20px;
		margin-right: 20px;
	}

	.ss-content-block.col-1 {
		width: calc(100% - 40px);
	}

	.ss-content-block.col-2 {
		width: calc(50% - 40px);
	}
	
	.ss-content-block.col-2-3 {
		width: calc(100% * 2/3 - 40px);
	}	
	
	.ss-content-block.col-3 {
		width: calc(100% * 1/3 - 40px);
	}	

	.ss-content-block.col-5 {
		width: calc(20% - 40px);
	}

	.ss-content-block.col-2-5 {
		width: calc(40% - 40px);
	}

	.ss-content-block.col-3-5 {
		width: calc(60% - 40px);
	}

	.ss-content-block.col-4-5 {
		width: calc(80% - 40px);
	}

	.ss-content-block.col-4 {
		width: calc(25% - 40px);
	}

	.ss-content-block.col-3-4 {
		width: calc(75% - 40px);
	}
}

.wrapper {
	position: relative;
}

.middle-area .wrapper {
	max-width: 1300px;
	margin: 0 auto;
}

.page-type-0 .middle-area .wrapper,
.page-type-0.has-secondary-nav .middle-area .wrapper {
	max-width: none;
	margin: 0;
}

@media (max-width: 1024px) {
	.page-type-8 .middle-area-inner {
		padding: 0 30px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Header --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.header {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	box-sizing: border-box;
	height: 102px;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 100;
}
.header .wrapper {
	max-width: calc(100% - 60px);
}

.page-index.at-top .header {
	background-color: transparent;
	box-shadow: none;
}

/* Alternate Header -------------------------------------------------- */

.alternate-header .header > .wrapper {
	height: 100%;
}

/* Header Logo ------------------------------------------------------- */
.header .logo {
	background: none;
	display: flex;
	float: left;
	height: 80px;
	margin: 12px 0 0;
	max-height: 100%;
	max-width: 320px;
	position: relative;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	width: 100%;
	z-index: 1;
}

.header .logo:before {
	background: url(/images/template/HCS-vertical-logo.svg?v=0.02) 50% 50% no-repeat;
	background-size: contain;
	content: '';
	filter: brightness(0) invert(1);
	height: 124px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	width: 180px;
}

.page-index.at-top .header .logo:before {
	opacity: 1;	
}

.header .logo img,
.header .logo svg {
	height: 100%;
  	width: 100%;
}

.header .logo svg * {
	fill: #4472B7
}

.header .logo:hover {
	transform: scale(1.025);
}

.page-index.at-top .header .logo img,
.page-index.at-top .header .logo svg {
	opacity: 0;
}


/* Header Quick Links ------------------------------------------------ */
.header-quick-links {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: 0;
	margin-top: 21px;
	float: right;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.nav-active .header-quick-links > .quick-links,
.nav-active .header-quick-links > .search-form {
	opacity: 0;
}

.quick-links {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}

.quick-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.quick-links ul li {
	float: left;
	padding: 0 15px 0 0;
}

.quick-links ul li:after {
	color: #DEDEDE;
	content: '|';
	display: inline-block;
	padding-left: 15px;
}

.page-index.at-top:not(.nav-active) .quick-links ul li:after {
	color: #fff;
}

.nav-active .quick-links ul li:last-child:after {
	content: none;
}

.quick-links > ul > li > a {
	color: var(--default-font-color);
	font-family: var(--alt-font-family);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	-webkit-transition: color .3s ease;
	text-transform: uppercase;
	transition: color .3s ease;
}

.nav-active .quick-links > ul > li > a {
	font-weight: 400;
}

.nav-active .quick-links > ul > li:hover > a {
	-webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.page-index.at-top .quick-links ul li a {
	color: #fff;
}

.quick-links ul li:hover a,
.page-index.at-top .quick-links ul li:hover a,
.nav-active .primary-nav-wrap .quick-links > ul > li > a {
	color: var(--primary-color);
}

.nav-active .primary-nav-wrap .quick-links > ul > li:hover > a {
	color: var(--default-font-color);
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Primary Nav ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.nav-toggle {
	cursor: pointer;
	display: inline-block;
	height: 60px;
	position: relative;
	vertical-align: middle;
	width: 60px;
	z-index: 101;
}

.nav-toggle span {
	background-color: var(--primary-color);
	border-radius: 2px;
	height: 4px;
	right: 0;
	position: absolute;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	width: 40px;
}

.page-index .nav-toggle span {
	background-color: #fff;
}

.page-index.nav-active .nav-toggle span,
.page-index.scrolled .nav-toggle span {
	background-color: var(--primary-color);
}

.hamburger-first {
	top: 17px;
}

.nav-toggle span.hamburger-second {
	top: 27px;
	width: 34px;
}

.hamburger-third {
	top: 37px;
}

.nav-active .hamburger-first {
	top: 25px;
	transform: rotate(45deg);
	width: 34px;
}

.nav-active .hamburger-second {
	opacity: 0;
}

.nav-active .hamburger-third {
	top: 25px;
	transform: rotate(-45deg);
	width: 34px;
}

.primary-nav-wrap {
	background: #fff url(/newtheme/images/icons/primary-nav-bg.svg) 100% 100% no-repeat;
	background-size: 442px auto;
	bottom: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 35px 0 0;
	position: fixed;
	right: -100%;
	top: 0;
	max-width: 800px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	width: 100%;
	z-index: 4;
}

body.single-level-nav .primary-nav-wrap {
	max-width: 350px;
}

.nav-active .primary-nav-wrap {
	box-shadow: -15px 0 30px rgba(0,0,0,.16);
	right: 0;
}

.primary-nav-wrap .quick-links {
	opacity: 0;
	margin-left: 20px;
	margin-right: 50px;
}

body.single-level-nav .primary-nav-wrap .quick-links {
	display: block;
	margin: 15px 25px;
}

.nav-active .primary-nav-wrap .quick-links {
	opacity: 1;
}

.primary-nav-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav-wrap > ul li {
	margin-bottom: 5px;
}

.primary-nav-wrap ul li:last-child {
	margin-bottom: 0;
}

.primary-nav-wrap ul a {
	color: var(--default-font-color);
	font-family: var(--alt-font-family);
	font-weight: 300;
}

.primary-nav-wrap > ul {
	border-top: 1px solid #dedede;
	flex: 1;
	margin-top: 15px;
	padding: 15px 50px 0 50px;
	position: relative;
}

.primary-nav-wrap > ul:before {
	border-left: 1px solid #dedede;
	bottom: 0;
	content: '';
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 280px);
	z-index: -1;
}

body.single-level-nav .primary-nav-wrap > ul:before {
	display: none;
}

.primary-nav-wrap > ul > li > a {
	box-sizing: border-box;
	display: inline-block;
	font-size: 24px;
	height: auto;
	line-height: 110%;
	padding: 12px 20px;
	position: relative;
	vertical-align: top;
	width: 230px;
}

body.single-level-nav .primary-nav-wrap > ul > li > a {
	display: block;
	width: auto;
}

.primary-nav-wrap > ul > li.sub > a:before {
	background: var(--primary-color);
	content: '';
	height: 24px;
	opacity: 0;
	position: absolute;
	right: 0;
	top: calc(50% - 12px);
	transform: rotate(45deg);
	-webkit-transition: none;
	transition: none;
	width: 24px;
	z-index: 3;
}

.primary-nav-wrap > ul > li.sub:hover > a:before,
.primary-nav-wrap > ul > li.sub.selected > a:before,
.primary-nav-wrap > ul > li.sub.hovered > a:before {
	opacity: 1;
	right: -5px;
	-webkit-transition: right .2s linear .2s, opacity .2s linear .2s;
	transition: right .2s linear .2s, opacity .2s linear .2s;
}

.primary-nav-wrap > ul > li > a:after {
	bottom: 0;
	content: '';
	height: 100%;
	position: absolute;
	right: -40px;
	top: 0;
	width: 40px;
	z-index: 2;
}

.primary-nav-wrap > ul > li.hovered > a,
.primary-nav-wrap > ul > li:hover > a,
.primary-nav-wrap > ul > li.selected > a {
	background-color: var(--primary-color);
	color: #fff;
}

.primary-nav-wrap > ul > li > ul {
	bottom: 0;
	box-sizing: border-box;
	opacity: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 15px 0 0 40px;
	position: absolute;
	right: 0;
	text-align: left;
	top: 0;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	visibility: hidden;
	width: calc(100% - 280px);
	z-index: 1;
}

.primary-nav-wrap > ul > li:hover > ul,
.primary-nav-wrap > ul > li.selected > ul,
.primary-nav-wrap > ul > li.hovered > ul {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.primary-nav-wrap > ul > li > ul > li,
.primary-nav-wrap > ul > li > ul > li {
	opacity: 0;
	position: relative;
	transform: translateY(10px);
	-webkit-transition: none;
	transition: none;
	visibility: hidden;
	z-index: 1;
}

.primary-nav-wrap > ul > li:hover > ul > li,
.primary-nav-wrap > ul > li.selected > ul > li,
.primary-nav-wrap > ul > li.hovered > ul > li {
	opacity: 1;
	transform: translateY(0);
	-webkit-transition: transform .3s ease, opacity .3s ease;
	transition: transform .3s ease, opacity .3s ease;
	visibility: visible;
}

.primary-nav-wrap ul ul li a {
	display: block;
	font-family: var(--default-font-size);
	padding: 12px; 
}

.primary-nav-wrap ul ul li:hover > a,
.primary-nav-wrap ul ul li.selected > a {
	background-color: var(--primary-color);
	color: #fff;
}

.primary-nav-wrap ul ul ul {
	display: none;
	padding: 5px 10px 0;
}

.primary-nav-wrap ul ul > li.sub > a:after {
	background: url(/newtheme/images/icons/plus.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	content: '';
	display: block;
	float: right;
	height: 11px;
	margin-right: 8px;
	margin-top: 5px;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	width: 11px;
}

.primary-nav-wrap > ul ul li.sub:hover > a:after {
	background-image: url(/newtheme/images/icons/plus-white.svg);
}

.primary-nav-wrap ul ul li.sub > a.clicked-once:after {
	background-image: url(/newtheme/images/icons/minus.svg);
}

.primary-nav-wrap ul ul ul ul ul ul {
	display: none;
}

/* Alternate Nav -------------------------------------------------------------------------------------------- */

@media (min-width: 1400px) {
	.alternate-header .header-quick-links {
		margin-top: 10px;
	}
	.alternate-header .primary-nav-wrap {
		background: transparent;
		bottom: auto;
		left: auto;
		margin-top: 0;
		max-width: none;
		overflow: visible;
		overflow-y: visible;
		padding: 0;
		position: relative;
		right: auto;
		top: -30px;
	}
	.alternate-header .primary-nav-wrap > ul {
		border-top: none;
		display: flex;
		height: fit-content;
		justify-content: flex-end;
		margin: 0;
		opacity: 1;
		padding: 0;
		right: -10px;
	}
	.alternate-header .primary-nav-wrap > ul:before,
	.alternate-header .primary-nav-wrap > ul:after,
	.alternate-header .primary-nav-wrap > .form-and-quick-links-wrap {
		display: none;
	}
	.alternate-header .primary-nav-wrap > ul > li {
		height: fit-content;
		position: relative;
	}
	.alternate-header .primary-nav-wrap > ul > li > a {
		font-size: 16px;
		transition: background 0.2s ease;
		width: max-content;
		z-index: 4;
	}
	.alternate-header .primary-nav-wrap > ul > li > a::after {
		display: none;
	}
	.alternate-header .nav-toggle {
		display: none;
	}
	.alternate-header .primary-nav-wrap > ul ul {
		background-color: white;
		height: fit-content;
		left: 0;
		max-height: calc(100vh - 200px);
		opacity: 0;
		overflow-y: overlay;
		padding: 15px 0;
		pointer-events: none;
		position: absolute;
		top: 100%;
		visibility: visible;
		width: max-content;
		z-index: -1;
	}
	.alternate-header .primary-nav-wrap > ul > li:last-child > ul {
		left: auto;
		right: 0;
	}
	.alternate-header .primary-nav-wrap > ul ul::-webkit-scrollbar {
		background-color: transparent;
		width: 10px;
	}
	.alternate-header .primary-nav-wrap > ul ul::-webkit-scrollbar-thumb {
		background-color: var(--primary-color);
	}
	.alternate-header .primary-nav-wrap > ul li.hovered ul {
		opacity: 1;
		pointer-events: all;
	}
	.alternate-header .primary-nav-wrap > ul li:not(.hovered) ul {
		opacity: 0;
		pointer-events: none;
	}
	.alternate-header .primary-nav-wrap ul ul > li.sub > a:after { 
		margin-top: 7px;
	}
	.alternate-header .primary-nav-wrap > ul > li.sub > a:before {
		left: 42%;
		top: 50%;
		opacity: 0;
		transform: rotate(45deg) translate(-50%,-50%);
		transition: top 0.3s ease;
		z-index: -1;
	}
	.alternate-header .primary-nav-wrap > ul > li.sub:hover > a:before, 
	.alternate-header .primary-nav-wrap > ul > li.sub.hovered > a:before {
		opacity: 1;
		top: 100%;
		transition: top 0.3s ease, opacity 0.2s linear 0.16s;
	}
	.alternate-header .primary-nav-wrap > ul ul ul {
		border-left: 1px solid var(--primary-color);
		height: auto;
		margin-left: 10px;
		margin: 0px 12px 10px;
		overflow-y: visible;
		padding: 0;
		position: relative;
		width: auto;
		z-index: 0;
	}
	.page-index.alternate-header.at-top .primary-nav-wrap > ul > li > a {
		color: white;
	}
}

/* Header Search Form ------------------------------------------------ */
.search-form {
	border: 1px solid transparent;
	display: inline-block;
	border-radius: 4px;
	margin: 0;
	position: relative;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	z-index: 5;
}

.primary-nav-wrap .search-form {
	margin-left: 50px;
}

body.single-level-nav .primary-nav-wrap .search-form {
	display: flex;
	margin-left: 25px;
	margin-right: 100px;
}

body.single-level-nav .primary-nav-wrap .search-form label {
	width: calc(100% - 30px);
}


.search-active .search-form,
.nav-active .primary-nav-wrap .search-form {
	background: #fff;
	border: 1px solid #C3C3C3;
}

.page-index.search-active .search-form {
	background: rgba(255,255,255,.8);
}

.search-form input.text-input {
	color: #A3A6B2;
}

.search-form input::placeholder {
	color: #A3A6B2;
	opacity: 1;
}

.search-form input[type="text"] {
	background-color: transparent;
	border: none;
	border-radius: 4px;
	box-shadow: none;
	float: left;
	font-size: 12px;
	opacity: 0;
	outline: none;
	position: relative;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	width: 0;
}

.search-active .search-form input[type="text"],
.nav-active .primary-nav-wrap .search-form input[type="text"] {
	opacity: 1;
	padding: 9px;
	max-width: 100%;
	width: 257px;
}

.search-form .submit,
.search-form .submit:hover {
	background: url(/newtheme/images/icons/search-icon.svg?v=0.01) 50% 50% no-repeat;
	background-size: 20px auto;
	border: none;
	cursor: pointer;
	height: 20px;
	margin: 5px 9px 0 0;
	outline: none;
	position: relative;
	-webkit-transition: all .3s ease;
	transform: translateY(5px);
	transition: all .3s ease;
	width: 20px;
}

body.single-level-nav .primary-nav-wrap .search-form  .submit {
	width: 30px;
	height: 30px;
	margin: 0;
}

.nav-active .primary-nav-wrap .search-form .submit {
	background-color: #fff;
	-webkit-transition: all .3s ease .2s;
	transition: all .3s ease .2s;
}

.page-index .search-form .submit {
	background-image: url(/newtheme/images/icons/search-icon-white.svg)
}

.page-index.nav-active .primary-nav-wrap .search-form .submit,
.page-index.search-active .search-form .submit,
.page-index.scrolled .search-form .submit {
	background-image: url(/images/icons/search-icon-new.svg);
}



/* ---------------------------------------------------------------------------------------------------------- */
/* Main Content / Containers -------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.main-site-content-wrap {
	opacity: 0;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

body.loaded .main-site-content-wrap {
	opacity: 1;
}

body.loaded.nav-active .main-site-content-wrap {
	opacity: 0.3;
}

.main-content {
	min-height: 300px;
	padding: 60px 0;
}

.middle-area .page-banner {
	display: none;
}

.wrapper .page-banner  {
	max-width: none;
}

.page-banner {
	background: url(/newtheme/images/template/page-banner-default.webp) 50% 50% no-repeat;
	background-size: cover;
	background-color: #707070;
	height: 300px;
	line-height: 300px;
	position: relative;
	text-align: center;
}

.page-banner:before {
	background: rgba(0,0,0,.5);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.page-banner h1 {
	display: inline-block;
    line-height: 130%;
	position: relative;
    vertical-align: middle;
	z-index: 1;
}

.ss-content-block p:last-of-type {
	margin: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Global Adjustements -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
	.has-secondary-nav .middle-area-inner {
		padding: 0;
	}
}

.middle-area {
	min-height: calc(100vh - 822px);
}

.main-content {
	min-height: 300px;
}

.ss-section-wrap-inner {
	margin: 0 45px;
	max-width: 900px;
	padding-bottom: 30px;
}

.page-index .ss-section-wrap-inner {
	padding-bottom: 20px;
}

.middle-area .page-banner {
	display: none;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Breadcrumbs ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.breadcrumbs {
	border-bottom: 1px solid #E5E5E5;
	color: #939393;
	display: block;
	padding: 13px 0;
}

.breadcrumbs a {
	color: #939393;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .2px;
	line-height: 130%;
	padding: 0 3px;
	vertical-align: middle;
}

.breadcrumbs a:hover,
.breadcrumbs a.selected {
	color: var(--primary-color);
}

.breadcrumbs a:first-of-type {
	padding-left: 0;
}

.breadcrumbs a:last-of-type {
	padding-right: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Secondary Navigation ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.secondary-nav-wrap { 
	display: none;
}

.has-secondary-nav .middle-area-inner > .wrapper {
	margin: 0 25px;
	max-width: 1050px;
}


@media screen and (min-width: 900px) {
	.has-secondary-nav .middle-area-inner {
		display: flex;
		margin: 0 auto;
		max-width: 1245px;
	}

	.secondary-nav-wrap {
		border-right: 1px solid #DEDEDE;
		display: block;
		padding: 45px 0;
		width: 300px;
	}

	.has-secondary-nav .middle-area-inner > .wrapper {
		width: calc(100% - 270px);
	}

	.secondary-nav-wrap .wrapper {
		margin: 0 25px !important;
		max-width: none;
	}

	.secondary-nav-wrap ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.secondary-nav-wrap > ul {
		border-bottom: 1px solid #dedede;
		padding-bottom: 60px;
	}

	.secondary-nav-wrap ul li {
		display: block;
	}

	.secondary-nav-wrap ul li:last-child {
		margin-bottom: 0;
	}

	.secondary-nav-wrap ul li a {
		color: var(--default-font-color);
		display: block;
		font-family: var(--alt-font-family);
		font-size: 16px;
		font-weight: 300;
		padding: 10px 10px 10px 45px;
		position: relative;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	.secondary-nav-wrap ul li:hover > a {
		color: var(--primary-color);
	}

	.secondary-nav-wrap ul li.selected > a {
		color: var(--primary-color);
		font-weight: 700;
	}

	.secondary-nav-wrap ul li.sub > a:after {
		background: url(/newtheme/images/icons/plus.svg) 100% 50% no-repeat;
		background-size: 100% auto;
		content:'';
		display: inline-block;
		height: 8px;
		position: absolute;
		right: 25px;
		top: calc(50% - 6px);
		-webkit-transition: background-image .2s linear;
		transition: background-image .2s linear;
		width: 8px;
	}

	.secondary-nav-wrap ul li.sub:hover > a:after {
		background-image: url(/newtheme/images/icons/minus-black.svg);
	}

	.secondary-nav-wrap ul ul {
		margin: 0;
		max-height: 0;
		opacity: 0;
		padding-left: 10px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
		visibility: hidden;
	}

	.secondary-nav-wrap ul li:hover > ul {
		opacity: 1;
		max-height: 600px;
		visibility: visible;
	}

	.secondary-nav-wrap ul ul li a {
		font-size: 15px;
	}
}


@media screen and (min-width: 1024px) {
	.has-secondary-nav .middle-area-inner > .wrapper {
		margin: 0 45px;
		width: calc(100% - 340px);
	}

	.secondary-nav-wrap {
		padding: 45px 0;
	}
}

@media screen and (min-width: 1300px) {
	.secondary-nav-wrap {
		padding: 60px 0;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Quick Links / Quick Links Footer ------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.quick-links-footer ul {
	list-style: none;
	margin: 0 -10px;
	font-size: 0;
	padding: 0;
}

.quick-links-footer h2,
.quick-links-footer h3,
.quick-links-footer h4 {
	display: none;
}

.quick-links-footer ul li {
	background: #F7F5EC;
	box-sizing: border-box;
	display: inline-block;
	margin: 20px 10px 0;
	padding: 0 15px;
	position: relative;
	flex: 0 0 calc(50% - 20px);
}

.quick-links-footer ul li:before {
	background: #553020 50% 50% no-repeat;
	background-size: cover;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	top: 0;
}

.quick-links-footer ul li:hover:before {
	opacity: 1;
}

.quick-links-footer ul li a {
	color: var(--default-font-color);
	display: block;
	font-family: var(--alt-font-family);
	font-size: 16px;
	font-weight: 500;
	padding: 30px 0;
	position: relative;
	text-transform: uppercase;
	transition: color 0.3s ease;
	z-index: 1;
}

.quick-links-footer ul li a img {
	transition: filter 0.3s ease;
}
.quick-links-footer ul li:hover a {
	color: #fff;
}
.quick-links-footer ul li:hover a img {
	filter: brightness(0) contrast(10) invert(1);
}

.quick-links-footer ul li a .image-wrap {
	display: block;
	text-align: center;
	margin: 0 auto 15px;
}
.quick-links-footer ul li a .image-wrap svg * {
	transition: fill 0.3s ease;
}
.quick-links-footer ul li:hover a .image-wrap svg * {
	fill: #fff;
}

.quick-links-footer ul li a img {
	height: 30px !important;
	width: auto !important;
}

.quick-links-footer {
	border-top: 1px solid #dedede;
	box-sizing: border-box;
	padding: 0 20px 100px;
	text-align: center;
}

.quick-links-footer ul {
	display: flex;
	flex-wrap: wrap;
}

.quick-links-footer ul li {
	flex: 1;
	width: auto;
}


@media screen and (min-width: 900px) {
	.page-index .quick-links-footer ul li {
		padding: 0 60px;
	}

	.page-index .quick-links-footer ul li a {
		padding: 80px 0;
	}

	.page-index .quick-links-footer ul li a .image-wrap {
		margin-bottom: 30px;
	}

	.page-index .quick-links-footer ul li a img {
		height: 60px !important;
	}
}


/* Quick Links Box Wrap ----------------------------------------------------- */
.quick-links-box-wrap {
	border: none;
	box-sizing: border-box;
	padding: 40px 40px 40px 0;
	text-align: center;
}

.ss-content-block:last-child .quick-links-box-wrap  {
	border-right: none;
}

.quick-links-box-wrap h3 {
	font-family: var(--alt-font-family);
	/* font-family: var(--default-font-size); */
	font-weight: 400;
	text-transform: none;
}

.quick-links-box-wrap h3 > img {
	display: block;
	height: auto!important;
	margin: 0 auto 20px;
	padding-right: 5px;
	width: 24px!important;
}

.quick-links-box-wrap a[href^=tel] {
	color: var(--default-font-color);
	font-family: var(--default-font-family);
	font-weight: 400;
}

.quick-links-box-wrap a[href^=tel]:hover {
	text-decoration: underline;
}

.secondary-nav-wrap .quick-links-box-wrap {
	border-bottom: 1px solid #dedede;
	border-right: none;
	font-size: 16px;
	padding: 25px;
	text-align: left;
}

.secondary-nav-wrap .quick-links-box-wrap p {
	line-height: 125%;
}

.secondary-nav-wrap .quick-links-box-wrap h3 img {
	display: inline-block;
	margin:	0;
	vertical-align: middle;
}


@media screen and (min-width: 768px) {
	.quick-links-box-wrap {
		border-right: 1px solid #dedede;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Footer --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.footer {
	background-color: #01393D;
	position: relative;
	z-index: 2;
}

.footer a,
.footer strong {
	color: #F7F5EC;
	font-weight: 700;
}

.footer a[href^=tel] {
	color: #F7F5EC;
	font-family: var(--default-font-size);
	font-weight: 400;
}

.footer a[href^=tel]:hover {
	color: var(--primary-color);
}

.footer .upper-footer {
	padding: 40px 0;
}

.footer-logo {
    margin-bottom: 25px;
    max-height: 200px;
    position: relative;
    width: 295px;
}

.footer-logo img {
	display: block;
	height: auto !important;
	max-height: 200px !important;
	width: auto !important;
}

.footer-left-side {
	color: #fff;
	float: left;
}
.footer-left-side a {
	letter-spacing: 0.08em;
}

.footer-left-side p {
	line-height: 177%;
}

.footer-right-side {
	float: right;
}

.footer-right-side ul {
	columns: 3;
	column-gap: 80px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-right-side ul > li {
	margin-bottom: 10px;
}

.footer-right-side ul > li > a {
	color: #F7F5EC;
	font-family: var(--default-font-size);
	font-weight: 400;
}

.footer-right-side ul > li:hover > a {
	color: var(--primary-color);
	-webkit-transition: color .2s ease;
	transition: color .2s ease;
}

.lower-footer {
	border-top: 1px solid rgba(255,255,255,0.2);
	font-size: 12px;
	padding: 25px 0;
}

.footer .copyright {
	color: #fff;
	float: left;
	margin-top: 5px;
}

.footer .copyright .powered-by-logo {
	display: inline-block;
	max-width: 100%;
	padding-right: 10px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	vertical-align: middle;
	width: 130px;
}

.footer .copyright .powered-by-logo:hover {
	opacity: .8;
}
.footer .copyright .powered-by-logo {
	filter: brightness(0) invert(1);
}

.footer .nav-mode-changer-link {
	margin-left: 20px;
}

.footer .social {
	float: right;
}

.footer .social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .social ul li {
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}

.footer .social ul li:last-child {
	margin-right: 0;
}

.footer .social ul li a {
	-webkit-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

.footer .social ul li:hover a {
	opacity: .8;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Image Block / Text Block --------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.equal-heights .image-block {
	background: none;
	margin-bottom: 0;
}

.equal-heights .image-block img {
	display: block;
    height: auto!important;
	width: 100%!important;
}

.equal-heights .vertical-align-wrap {
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 19px 38px rgba(0,0,0,.16);
	padding: 25px;
	position: relative;
	width: calc(100% + 60px);
}

.equal-heights.image-is-first .vertical-align-wrap {
    margin-left: -60px;
}

.callout-section .ss-section-wrap-inner {
	border: 1px solid var(--primary-color);
	box-shadow: 0px 20px 40px rgba(0,0,0,0.16);
	display: flex;
	margin-bottom: 60px;
	padding: 0;
}
.callout-section .ss-content-block {
	align-self: stretch;
	flex: auto;
	margin: 0;
	padding: 30px;
	position: relative;
}
.callout-section .ss-image-block {
	margin: -30px;
}
.callout-section .ss-image-block > p,
.callout-section .ss-image-block > p > img {
	display: block;
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
}
.callout-section .ss-content-block .ss-editor-video-embed-container {
	height: calc(100% + 60px);
	margin: -30px;
	padding: 0;
}

@media only screen and (min-width: 550px) {
	.equal-heights .ss-content-block.col-1,
	.equal-heights .ss-content-block.col-2,
	.equal-heights .ss-content-block.col-2-3, 
	.equal-heights .ss-content-block.col-3,
	.equal-heights .ss-content-block.col-2-5,
	.equal-heights .ss-content-block.col-3-5,
	.equal-heights .ss-content-block.col-3-4,
	.equal-heights .ss-content-block.col-4,
	.equal-heights .ss-content-block.col-4-5, 
	.equal-heights .ss-content-block.col-5 {
		display: block;
		margin-left: 0;
		margin-right: 0;
		width: auto;
	}
}


@media only screen and (min-width: 852px) {
	.equal-heights .ss-section-wrap-inner {
		display: flex;
		flex-wrap: nowrap;
	}

	.equal-heights .ss-content-block {
		margin: 0;
	}

	.equal-heights .ss-content-block.col-1,
	.equal-heights .ss-content-block.col-2,
	.equal-heights .ss-content-block.col-2-3, 
	.equal-heights .ss-content-block.col-3,
	.equal-heights .ss-content-block.col-2-5, 
	.equal-heights .ss-content-block.col-3-5,
	.equal-heights .ss-content-block.col-3-4,
	.equal-heights .ss-content-block.col-4,
	.equal-heights .ss-content-block.col-4-5, 
	.equal-heights .ss-content-block.col-5 {
		display: inline-block;
		width: auto;
	}

	.equal-heights .ss-content-block.col-1 {
		flex: 0 0 100%;
	}

	.equal-heights .ss-content-block.col-2 {
		flex: 0 0 50%;
	}
	
	.equal-heights .ss-content-block.col-2-3 {
		flex: 0 0 calc(100% * 2/3);
	}	
	
	.equal-heights .ss-content-block.col-3 {
		flex: 0 0 calc(100% * 1/3);
	}	

	.equal-heights .ss-content-block.col-5 {
		flex: 0 0 20%;
	}

	.equal-heights .ss-content-block.col-2-5 {
		flex: 0 0 40%;
	}

	.equal-heights .ss-content-block.col-3-5 {
		flex: 0 0 60%;
	}

	.equal-heights .ss-content-block.col-4-5 {
		flex: 0 0 80%;
	}

	.equal-heights .ss-content-block.col-4 {
		flex: 0 0 25%;
	}

	.equal-heights .ss-content-block.col-3-4 {
		flex: 0 0 75%;
	}

	.equal-heights .image-block {
		background: 50% 50% no-repeat;
		background-size: cover;
	}

	.equal-heights .image-block img {
		opacity: 0;
	}

	.vertical-align-wrap {
		display: inline-block;
		line-height: 100%;
		vertical-align: middle;
	}

	.equal-heights .vertical-align-wrap {
		padding: 35px 60px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Homepage ------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* --------------------------------------- */
/* Homepage Template Adjustments --------- */
/* --------------------------------------- */
body.page-index {
	padding-top: 0;
}

body.page-index .page-banner {
    display: none;
}

.page-index.page-type-0 .main-content {
	padding: 0;
}

.page-index .ss-section-wrap-inner {
	margin: 0 20px;
	max-width: none;
}

.image-link-section {
	margin: 60px 0;
}
.image-link-section .ss-section-wrap-inner {
	margin: 0 auto;
	max-width: 1300px;
}
.image-link-section .ss-image-block {
	border: 1px solid var(--primary-color);
	box-shadow: 0px 20px 40px rgba(0,0,0,0.16);
	padding: 30px;
}
.image-link-section .ss-image-block > p:first-child {
	height: auto !important;
	margin: -30px -30px 30px;
	width: calc(100% + 60px) !important;
}

/* Preloader ----------------------------------------------------------------- */
#preloader-wrap {
	background: #000;
	bottom: 0;
	display: none;
	filter: alpha(opacity=50);
	left: 0;
	opacity: .5;
	right: 0;
	position: fixed;
	top: 0;
	z-index: 9999;
}

.preloader {
	-webkit-animation:loader infinite 4s;
	-moz-animation:loader infinite 4s;
	animation:loader infinite 4s;
	border-radius:100%;
	box-shadow:15px 15px #000000,
	-15px 15px #000000,
	-15px -15px #000000,
	15px -15px #000000;
	filter: alpha(opacity=10);
	height: 20px;
	left: 50%; 
	margin: -10px 0 0 -10px;
	opacity: 0.5;
	position: absolute;
	top: 50%;
	width: 20px;
	z-index:9999;
}


@-webkit-keyframes loader {
  0%,100% {
      box-shadow:15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000;
  }
  25% {
      box-shadow:-15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000;
  }
  50% {
      box-shadow:-15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000;
  }
  75% {
      box-shadow:15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000;
  }
}

@-moz-keyframes loader {
  0%,100% {
      box-shadow:15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000;
  }
  25% {
      box-shadow:-15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000;
  }
  50% {
      box-shadow:-15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000;
  }
  75% {
      box-shadow:15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000;
  }
}

@keyframes loader {
  0%,100% {
      box-shadow:15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000;
  }
  25% {
      box-shadow:-15px 15px #000000,
        -15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000;
  }
  50% {
      box-shadow:-15px -15px #000000,
        15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000;
  }
  75% {
      box-shadow:15px -15px #000000,
        15px 15px #000000,
        -15px 15px #000000,
        -15px -15px #000000;
  }
}

.homepage-banner .ss-section-wrap-inner {
	display: block;
	height: 100dvh;
	margin: 0;
	max-width: 100%;
	padding: 0;
}

.homepage-banner .ss-content-block {
	margin: 0;
	width: 100%;
}

.homepage-banner .embedded-gallery-wrap,
.homepage-banner .internal-page-inline-slideshow-wrap {
	background-color: #000;
	position: relative;
}

.homepage-banner .embedded-gallery,
.homepage-banner .embedded-gallery .slide {
	height: 100vh;
	line-height: 100vh;
}

.homepage-banner .prev-arrow,
.homepage-banner .next-arrow {
	display: none;
}

.homepage-banner .embedded-gallery .slide {
	display: block !important;
	text-align: center;
	width: 100%;
}

.homepage-banner .embedded-gallery .slide .image:before {
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
	bottom: 0;
	content: '';
	left: 0;
	opacity: 1;
	position: absolute;
	right: 0;
	top: 0;
}

.homepage-banner .embedded-gallery .slide .image:after {
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000',GradientType=0 );
	bottom: 0;
	content: '';
	left: 0;
	opacity: 1;
	position: absolute;
	right: 0;
	top: 0;
}

.homepage-banner .embedded-gallery .slide .image img {
	visibility: hidden;
}

.homepage-banner .embedded-gallery .slide .ss-youtube-vimeo-player {
	background-color: #000;
	bottom: 0; 
	left: 0;
	position: relative;
	pointer-events: none;
	min-height: 100vh;
	right: 0;
	top: 0; 
} 

.homepage-banner .embedded-gallery .slide .ss-youtube-vimeo-player iframe {
	left: 50%;
	max-width: none;
	min-height: 100vh;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
}

@media (min-aspect-ratio: 16/9) {
	.homepage-banner .embedded-gallery .slide .ss-youtube-vimeo-player iframe { 
		/* height = 100 * (9 / 16) = 56.25 */
		min-height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.homepage-banner .embedded-gallery .slide .ss-youtube-vimeo-player iframe { 
		/* width = 100 / (9 / 16) = 177.777777 */
		width: 177.78vh;
	}
}

.homepage-banner .embedded-gallery .caption {
	background: none;
	bottom: 100px;
	box-sizing: border-box;
	box-shadow: none;
	color: #fff;
	display: block!important;
	line-height: 140%;
	margin: 0!important;
	opacity: 0;
	height: auto!important;
	padding: 60px 75px 0!important;
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .75s ease .2s, transform .75s ease .2s;
	transition: opacity .75s ease .2s, transform .75s ease .2s;
	transform: translateY(15px);
	width: 100%;
	z-index: 2;
}

.video-banner-section {
	overflow: hidden;
	position: relative;
}
.video-banner-section .ss-section-wrap-inner {
	margin: 0;
	max-height: 100vh;
	padding: 0;
	position: relative;
}
.video-banner-section .col-1:first-child {
	margin: 0;
	max-width: none;
	width: 100%;
}

.homepage-banner .embedded-gallery .caption,
.video-banner-section .col-1:last-child {
	background: none;
	bottom: 100px;
	box-sizing: border-box;
	box-shadow: none;
	color: #fff;
	display: block!important;
	line-height: 140%;
	margin: 0!important;
	opacity: 0;
	height: auto!important;
	padding: 60px 75px 0!important;
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .75s ease .2s, transform .75s ease .2s;
	transition: opacity .75s ease .2s, transform .75s ease .2s;
	transform: translateY(15px);
	width: 100%;
	z-index: 10;
}

.homepage-banner .embedded-gallery .slide.current .caption,
.video-banner-section .col-1:last-child {
	opacity: 1;
	transform: translateY(0);
}

.homepage-banner .embedded-gallery .caption h1,	
.homepage-banner .embedded-gallery .caption h2,
.homepage-banner .embedded-gallery .caption h3,
.homepage-banner .embedded-gallery .caption h4,
.homepage-banner .embedded-gallery .caption h5,
.homepage-banner .embedded-gallery .caption h6,
.homepage-banner .embedded-gallery .caption p,
.video-banner-section .col-1:last-child h1,	
.video-banner-section .col-1:last-child h2,
.video-banner-section .col-1:last-child h3,
.video-banner-section .col-1:last-child h4,
.video-banner-section .col-1:last-child h5,
.video-banner-section .col-1:last-child h6,
.video-banner-section .col-1:last-child p {  	
	color: #fff;
	margin-bottom: 40px;
}
.homepage-banner .embedded-gallery .caption h2 {
	font-size: 74px;
	margin-bottom: 10px;
}
.homepage-banner .embedded-gallery .caption h3 {
	font: 400 48px 'HalRepostRegular';
}

@supports not (aspect-ratio) {
	.ss-editor-video-embed-container {
		height: 0;
		margin: 0;
		padding-top: 56.25%;
	}
	.ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
		top: 0;
	}
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container {
		transform: translate(-50%, -50%);
	}
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
	}
}

@media (min-aspect-ratio: 16/9) {
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container { 
		/* height = 100 * (9 / 16) = 56.25 */
		min-height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container { 
		/* width = 100 / (9 / 16) = 177.777777 */
		width: 177.78vh;
	}
}
.video-banner-section .col-1:first-child .ss-editor-video-embed-container {
	left: 50%;
	max-width: none;
	min-width: 100vw;
	height: 100vh;
	opacity: 1 !important;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -52.5%);
	width: 190vh !important;
}
.video-banner-section .col-1:first-child:after {
	background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}
@supports not (aspect-ratio) {
	.video-banner-section .col-1: last-child .ss-editor-video-embed-container {
		transform: translate(-50%, -50%);
	}
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
	}
}
@media (min-aspect-ratio: 16/9) {
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container {
		min-height: 56.25vw;
	}
}
@media (max-aspect-ratio: 16/9) {
	.video-banner-section .col-1:last-child .ss-editor-video-embed-container {
		width: 177.78vh;
	}
}

.homepage-banner .embedded-gallery .caption:last-child {
	margin-bottom: 0;
}


@keyframes dotPulse {
	0% {
	transform: scale(1);
	opacity: 1;
	}
	50% {
	transform: scale(1);
	opacity: 1;
	}
	100% {
	transform: scale(1.2);
	opacity: 1;
	}
}


@-webkit-keyframes dotPulse {
  0% {
  	transform: scale(1);
		opacity: 1;
  }
  50% {
  	transform: scale(1);
		opacity: 1;
	
  }
  100% {
  	transform: scale(1.2);
		opacity: 1;
  }
}


.homepage-banner .embedded-gallery-nav-wrapper {
	box-sizing: border-box;
	display: block;
	height: 400px;
	line-height: 400px;
	list-style: none;
	margin: 0;
	overflow: visible!important;
	padding: 0;
	position: absolute;
	right: 25px;
	text-align: center;
	top: calc(50% - 200px);
	width: auto;
	z-index: 21;
}

.homepage-banner .embedded-gallery-nav {
	display: inline-block;
	line-height: 100%;
	vertical-align: middle;
}

.homepage-banner .embedded-gallery-nav,
.homepage-banner .embedded-gallery-nav li a {
	height: auto;
}

.homepage-banner .embedded-gallery-nav {
	position: static;
}

.homepage-banner .embedded-gallery-nav-wrapper li {
	display: block;
	float: none;
	margin: 8px 0;
	left: auto !important;
	padding: 0;
	position: static;
}

.homepage-banner .embedded-gallery-nav-wrapper li a {
	background: rgba(255,255,255,.5);
	border-radius: 50%;
	display: block;
	float: none;
	height: 10px;
	-webkit-transition: all .4s ease .2s;
	transition: all .4s ease .2s;
	width: 10px;
}

.homepage-banner .embedded-gallery-nav-wrapper li:hover a,
.homepage-banner .embedded-gallery-nav-wrapper li.activeSlide a {
	background-color: #fff;
	animation: dotPulse 1.6s infinite ease-out;
	-webkit-animation: dotPulse 1.6s infinite ease-out;
	opacity: 1;
}	

.homepage-banner .embedded-gallery-nav-wrapper img {
	display: none;
}



.page-index .padding .ss-section-wrap-inner {
	margin: 0 auto;
	max-width: 800px;
}


/* Spinner ------------------------------------------------------------------------------------------------------------- */
#homepage-spinner {
	background: #000;
	bottom: 0;
	box-shadow: inset 0 3px 8px rgba(0,0,0,.16);
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
}

.spinner {
  font-size: 10px;
	height: 30px;
  left: calc(50% - 25px);
  opacity: .5;
  position: absolute;
  text-align: center;
	top: calc(50% - 15px);
  width: 50px;
  z-index: 99;
}

.spinner > div {
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
  background-color: #949CA0;
  display: inline-block;
  height: 100%;
  margin: 0 2px;
  width: 6px;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.scroll-button-wrap {
	bottom: 20px;
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 10;
}

#scroll-button {
	animation-name: bounce;
	animation-timing-function: ease;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	background: url(/newtheme/images/icons/scroll-arrow.svg) 50% 50% no-repeat;
	display: inline-block;
	height: 64px;
	position: relative;
	width: 24px;
	vertical-align: middle;
	z-index: 5;
}

@keyframes bounce {
	0%   { transform: scale(1,1)    translateY(0); }
	10%  { transform: scale(1.1,.9) translateY(0); }
	30%  { transform: scale(.9,1.1) translateY(-20px); }
	50%  { transform: scale(1,1)    translateY(0); }
	57%  { transform: scale(1,1)    translateY(-7px); }
	64%  { transform: scale(1,1)    translateY(0); }
	100% { transform: scale(1,1)    translateY(0); }
}



/* ---------------------------------------------------------------------------------------------------------- */
/* Content Box List Styling --------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.padding {
	padding: 60px 0;
}

.cb-intro {
	margin-bottom: 45px;
}

.cb-footer {
	margin-top: 45px;
}

.content-box-list {
	border-bottom: 1px solid #BFBFBF;
	border-top: 1px solid #BFBFBF;
	padding: 20px 0;
}

.content-box-list > li {
	border-bottom: 1px solid #c3c3c3;
	margin-bottom: 20px;
	min-height: 100px;
	padding-bottom: 20px;
}

.content-box-list > li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
} 

.content-box-list li a {
	background-color: inherit;
	color: inherit;
	padding: 5px;
	-webkit-transition: box-shadow .2s ease;
	transition: box-shadow .2s ease;
}

.content-box-list li:hover a {
	box-shadow: 0 3px 8px rgba(0,0,0,.16);
}

.content-box-list li a:after {
    content: '';
    display: table;
    clear: both;
}

.content-box-list li a .date {
	background-color: var(--primary-color);
	color: #fff;
	float: none;
	font-size: 14px;
	font-weight: 500;
	height: 50px;
	letter-spacing: .8px;
	line-height: 50px;
	margin: 0 0 10px;
	padding: 0;
	text-transform: uppercase;
	width: 100%;
}

.content-box-list li a .date strong {
	color: #fff;
    display: inline-block;
    font-weight: 500;
    line-height: 100%;
    padding-left: 3px;
}

.content-box-list li a .title {
	color: var(--primary-color);
	font-family: var(--default-font-size);
	font-weight: 700;
	margin-bottom: 10px;
	padding: 0;
}

.content-box-list li a .abstract {
	color: var(--default-font-color);
	display: inline-block;
	font-family: var(--default-font-family);
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	padding: 0;
}

.content-box-list li a .see-details {
	border: none;
	color: var(--primary-color);
	display: inline-block;
	font-family: var(--default-font-family);
	font-size: 13px;
	font-weight: 700;
	padding-left: 3px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}
.content-box-list li a .see-details:hover {
	border: none;
}
.content-box-list li a:hover .see-details {
	color: var(--default-font-color);
}

.quick-links-section {
	border: 1px solid var(--primary-color);
	box-shadow: 0px 20px 40px rgba(0,0,0,0.16);
	margin: 60px auto;
	max-width: 1300px;
	width: calc(100% - 60px);
}
.quick-links-section .ss-content-block:not(.col-1, :first-child) {
	position: relative;
}
.quick-links-section .ss-content-block:not(.col-1, :first-child):before {
	background: linear-gradient(0deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
	bottom: 0;
	content: '';
	display: block;
	left: -20px;
	position: absolute;
	top: 0;
	width: 1px;
}
.quick-links-section .ss-section-wrap-inner {
	justify-content: center;
	margin: 40px auto 0;
	text-align: center;
}
.quick-links-section .icon-link svg,
.quick-links-section .icon-link img {
	height: 32px !important;
}

@media screen and (min-width: 768px) {
	.col-1 .content-box-list li a > span,
	.col-4-5 .content-box-list li a > span,
	.col-2-3 .content-box-list li a > span {
		float: right;
		width: calc(100% - 210px);
	}

	.col-1 .content-box-list li a .date,
	.col-4-5 .content-box-list li a .date,
	.col-2-3 .content-box-list li a .date {
		float: left;
		height: 100px;
		line-height: 100px;
		margin-right: 30px;
		width: 180px;
	}

	.col-1 .content-box-list li a .see-details,
	.col-4-5 .content-box-list li a .see-details,
	.col-2-3 .content-box-list li a .see-details {
		display: block;
		padding-left: 0;
	}
}


/* --------------------------------------- */
/* Calendar  ----------------------------- */
/* --------------------------------------- */
.content-box-list.events {
	border: none;
	text-align: center;
}

.content-box-list.events li a span {
	float: none;
	line-height: 120%;
	padding: 0;
	text-align: center;
	width: 100%;
}

.content-box-list.events li a {
	padding: 20px;
}

.content-box-list.events li a .title {
	color: var(--default-font-color);
	font-family: var(--alt-font-family);
	font-family: var(--default-font-size);
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.content-box-list.events li a .title:before {
	background: url(/newtheme/images/icons/upcoming-event-icon.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	display: block;
	content: '';
	height: 24px;
	margin: 0 auto 15px;
	width: 22px;
}

.content-box-list.events li a .date {
	font-size: 12px;
	height: auto;
	line-height: normal;
	padding: 5px 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	width: 100%;
}

.content-box-list.events li a .date strong {
	display: inline-block;
	margin-left: 3px;
	float: none;
	font-weight: 500;
}

.content-box-list.events li a .abstract {
	color: #F26363;
	font-family: var(--default-font-family);
	font-size: 16px;
	font-weight: 700;
	line-height: 125%;
	margin-bottom: 10px;
}	

.content-box-list.events li a .see-details {
	color: #fff;
	display: inline-block;
	font-family: var(--alt-font-family);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .3px;
	margin-top: 5px;
	padding: 14.5px 28px;
	width: auto;
}


/* --------------------------------------- */
/* Job Board ----------------------------- */
/* --------------------------------------- */
.content-box-list.jobs li a {
	padding: 20px;
}
.content-box-list.jobs li a:hover .see-details {
	color: #fff;
}
.content-box-list.jobs li a .abstract {
	line-height: 22px;
}

.page-type-9 form .field-wrap input.phone {
	margin-right: 5px;
}

.page-type-9 form .field-wrap input.phone:last-of-type {
	margin-right: 0;
}
.content-box-list.jobs li a .see-details:hover {
	padding-bottom: 10px
}

.job-board-items .list-item .title {
	margin-top: 4px;
}



/* --------------------------------------- */
/* Testimonials -------------------------- */
/* --------------------------------------- */
.content-box-list.testimonials .author {
	border-top: 4px solid #EA5454;
	margin-top: 15px;
	padding-top: 15px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Default Banner ------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-index .middle-area .wrapper > h1 {
	display: none;
}

.page-index .ss-section-wrap.homepage-banner {
	background: none;
	overflow: hidden;
	z-index: 1;
}

.embedded-gallery .prev-arrow,
.embedded-gallery .next-arrow {
	background: rgba(255,255,255,0.5) url(/newtheme/images/icons/arrow-left-gallery.svg) 50% 50% no-repeat;
	background-size: 34px 18px;
	height: 60px;
	left: 0;
	margin: -30px 0 0;
	opacity: 1;
	filter: alpha(opacity=100);
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	-webkit-transition: 0.2s opacity ease;
	transition: 0.2s opacity ease;
	width: 60px;
	z-index: 50;
}

.embedded-gallery .next-arrow {
	background: rgba(255,255,255,0.5) url(/newtheme/images/icons/arrow-right-gallery.svg) 50% 50% no-repeat;
	background-size: 34px 18px;
	left: auto;
	right: 0;
}

.embedded-gallery .prev-arrow:hover,
.embedded-gallery .next-arrow:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.embedded-gallery .stage {
	border: none;
}

.homepage-banner {
	position: relative;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Community Directory Styles ------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-28 .intro-text-wrap.mt {
	margin-top: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Member Directory Page ------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.member-directory-items {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
}
.list-items.member-directory-items li {
	margin: 0;
	width: calc(100% / 3 - 10px);
}
.page-type-10 .main-content {
	width: 100%;
}
.page-type-10 .detail-page.member-directory .image-column {
	box-sizing: border-box;
	margin-top: 60px;
	padding-right: 20px;
	width: 100%;
}
.page-type-10 .detail-page.member-directory .info-column {
	width: calc(100% - 300px);
}
.page-type-10 .list-item.member-directory-item a {
	color: var(--primary-color);
	transition: all .2s ease;
}
.page-type-10 .list-item.member-directory-item a:hover {
	color: var(--default-font-color);
}
.page-type-10 .member-directory-items .member-directory-item .info h2.title {
	font-size: 20px;
	margin-bottom: 3px;
}
.page-type-10 .view-profile-link {
	margin-top: 0;
}
.page-type-10 .member-directory-items .member-directory-item .info {
	background-color: #fff;
	font-size: 14px;
	line-height: normal;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}
.page-type-10 .member-directory-items .member-directory-item .image {
	aspect-ratio: 1 / 1;
	height: auto;
	max-width: 100%;
	width: 100%;
}
.page-type-10 .list-items.member-directory-items li .image a {
	height: 100%;
}
.page-type-10 .member-directory-items .member-directory-item .image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	width: 100%;
}
.page-type-10 a.fr.small-action-button {
	margin: 0 0 15px;
}
.sosimple-underlay.member-directory {
	backdrop-filter: blur(30px);
	background-color: rgba(255,255,255,0.8);
	opacity: 1;
}
.sosimple-overlay.member-directory {
	bottom: 0;
	height: max-content;
	left: 0;
	margin: auto !important;
	max-height: calc(100dvh - 120px);
	max-width: calc(100% - 200px);
	padding: 0;
	position: fixed;
	right: 0;
	top: 0 !important;
	transform: translateX(75px);
	width: 1000px !important;
}
.sosimple-overlay.member-directory .sosimple-overlay-close {
	right: 0;
	top: -50px;
}
.sosimple-overlay.member-directory .detail-page.member-directory {
	border: none;
	display: flex;
	height: max-content;
	margin: 0;
	max-height: calc(100dvh - 120px);
	padding: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	flex: none;
	float: none;
	margin: auto 0 auto -150px;
	max-height: 300px;
	overflow: hidden;
	padding: 0;
	width: auto;
}
.detail-page.member-directory .image-column .image {
	height: 100%;
	margin: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .button {
	display: none;
}
.detail-page.member-directory .info-column h2.title {
	color: var(--heading-color);
	font: 600 28px var(--alt-font-family);
	margin: 0 0 10px;
}
.detail-page.member-directory .info-column .tr-job-title {
	color: var(--heading-color);
	font: 600 21px var(--alt-font-family);
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column {
	align-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	float: none;
	margin: 0 0 0 30px;
	max-height: 100%;
	overflow-x: hidden;
	padding: 30px 30px 30px 0;
	width: auto;
}
.detail-page.member-directory .info-column h3,
.detail-page.member-directory .info-column th {
	display: none;
}
.detail-page.member-directory .info-column td {
	padding: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Miscellaneous -------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.clear:after {
	content: '';
	clear: both;
	display: table;
}

.ss-content-block.callout-box .inner-content-block-wrap {
	padding: 20px 30px;
}

.ss-content-block.callout-box p:first-child {
	margin: -20px -30px 10px -30px;
}



/* ---------------------------------------------------------------------------------------------------------- */
/* News------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.list-items li .content {
  	max-width: 100%;
}

.list-items li .read-more-wrap {
	text-align: right;
  	width: 100%;
}

.list-items.news-items .small-action-button {
	margin-left: -20px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Buttons -------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.button,
.small-action-button,
.white-button,
.small-white-button,
.content-box-list li a .see-details {
	background-color: var(--primary-color);
	border-radius: 6px;
	color: #F7F5EC;
	display: inline-block;
	font-family: 'MDPrimerSemibold';
	font-size: 16px;
	font-weight: 500;
	height: auto;
	letter-spacing: 0.12em;
	margin: 0;
	padding: 16px 35px;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: background 0.2s ease, color .2s ease;
	transition: background 0.2s ease, color .2s ease;
}
.white-button, .small-white-button {
	background-color: #F7F5EC;
	color: var(--primary-color);
}
.white-button:hover, .small-white-button:hover {
	background-color: #fff;
}
.content-box-list li a .see-details {
	
	padding: 10px 20px;
}

.button:hover, 
.small-action-button:hover,
.pager:hover, 
.pager-prev:hover,
.pager-next:hover, 
.pager.on,
.content-box-list li a .see-details:hover {
	background: var(--default-font-color);
	color: #fff;
	opacity: 1;
}

form.category-and-window .text-search-wrap .submit:hover {
  	background-color: var(--default-font-color);
}

.search-page-form-wrap .text-search-wrap .submit {
	background-color: var(--primary-color);
	border-radius: 0;
	color: #fff;
	height: 28px;
	line-height: 18px;
  	transition: all .2s ease;
  	-webkit-transition: all .2s ease;
}

.search-page-form-wrap .text-search-wrap .submit:hover {
  	background-color: var(--default-font-color);
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Custom Styles -------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.ul-2 {
	background: #F4F4F4;
	border-left: 4px solid #EA5454;
	box-sizing: border-box;
	padding: 30px 30px 20px;
}

.col-1 .ul-2 {
	padding: 30px 45px 20px;
}

.ul-2 > li {
	margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Forms ---------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
input, select, textarea {
	box-sizing: border-box;
	max-width: 100%;
	outline: none;
}

form .field-wrap input[type=text], 
form .field-wrap select, 
form .field-wrap textarea {
	max-width: 719px;
	width: 100%;
}

form .field-wrap input.phone {
	width: auto;
}

form .field-wrap.field-address .dib.smr {
	display: block;
	margin: 7px 0 0;
}

table.cms-table .button {
	margin: 15px 0;
}

div#dd-print-button {
	margin-bottom: 35px;
}

.map-canvas.driving-directions > div > div img {
    width: 100%!important;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Form Builder Page ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.right-side.full-width .feedback-form-wrap, 
.submission-form-wrap.has-driving-directions {
	width: 31%;
}

.driving-directions-wrap {
	float: right;
	width: 63%;
}

.ss-content-block .driving-directions-wrap,
.ss-content-block .submission-form-wrap.has-driving-directions {
	float: none;
	width: auto;
}

.ss-content-block .driving-directions-wrap {
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding-top: 30px;
}

.ss-content-block .driving-directions-wrap .print-button {
	display: none;
}

.driving-directions-input-fields {
	margin: 15px 0;
}

.field-wrap input[type=text] {
	width: 100%;
}

.driving-directions-wrap > br {
	display: none;
}

.map-content-wrap {
	display: inline-block;
	margin-top: 80px;
	width: 29%;
}

.map-wrap {
	float: right;
	width: 61%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Driving Directions Page ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.map-content-wrap {
	width: 34%;
}

.map-content-wrap input {
	max-width: none;
	width: 100%;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Form Builder Page----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.map-content-wrap {
	display: inline-block;
	margin-top: 80px;
	width: 29%;
}

.map-wrap {
	float: right;
	width: 61%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* News ----------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */



/* ---------------------------------------------------------------------------------------------------------- */
/* Blog ----------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

.ss-content-block.col-1 .content-box-list.blog {
	border: none;
	padding: 0;
}
.ss-content-block.col-1 .content-box-list.blog li {
	border: none;
	margin: 0 0 10px;
	width: 100%;
}
.ss-content-block.col-1 .content-box-list.blog li a {
	background-color: #fff;
	min-height: 200px;
	padding: 20px 20px 15px 220px;
	position: relative;
}
.ss-content-block.col-1 .content-box-list.blog li a .thumbnail {
	bottom: 0;
	height: auto;
	left: 0;
	margin: 0;
	position: absolute;
	top: 0;
	width: 200px;
}
.ss-content-block.col-1 .content-box-list.blog li a .thumbnail img {
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
}
.col-1 .content-box-list li a > span, .col-4-5 .content-box-list li a > span, .col-2-3 .content-box-list li a > span {
	text-align: left;
	width: auto;
}
.ss-content-block.col-1 .content-box-list.blog > li a span.date {
	background-color:  transparent;
	order: 2;
	float: none;
	height: min-content;
	line-height: normal;
	margin: 0;
	order: 2;
	padding: 0;
}
.ss-content-block.col-1 .content-box-list.blog > li a span.title {
	color: var(--default-font-color);
	font-size: 23px;
	line-height: normal;
	margin: 0 0 10px;
	order: 1;
}
.ss-content-block.col-1 .content-box-list.blog > li a span.abstract {
	margin: 10px 0;
	order: 3;
}
.ss-content-block.col-1 .content-box-list.blog > li a .cb {
	display: none;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Testimonials ------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.lower-pager {
  	margin-bottom: 45px;
}

.list-item.testimonial-item {
	background: #f4f4f4;
	border-left: 4px solid #EA5454;
	padding: 40px;
}

.list-items.testimonial-items > li {
	padding: 18px 0;
}

.list-item.testimonial-item h3.author {
	margin-bottom: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Events --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.event-links-bar h3 {
	line-height: 37px;
}

.event-links-bar .button {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 0;
	padding-bottom: 0;
}

form.category-and-window {
	height: 70px;
}

form.category-and-window ul.time-window-options li.selected a, 
form.category-and-window ul.time-window-options li:hover a {
	background: var(--default-font-color);
}

form.category-and-window ul.display-options {
	margin-top: 0;
}

@media screen and (max-width: 770px) {
	form.category-and-window {
		height: auto;
		text-align: center;
	}
	
	form.category-and-window select {
		float: none;
		width: auto;
	}
	
	form.category-and-window ul.display-options {
		float: none;
		margin: 10px 0;
	}
	
	form.category-and-window ul.time-window-options {
		float: none;
		margin-bottom: 10px;
	}
	
	form.category-and-window ul.display-options li, 
	form.category-and-window ul.time-window-options li {
		display: inline-block;
		float: none;
	}
}

@media screen and (max-width: 550px) {
	.event-links-bar h3 {
		font-size: 15px;
	}
	
	.event-links-bar .button {
		padding: 0 19px;
	}
  
  	.event-links-bar .button:hover {
 		background-color: var(--default-font-color);
    }
	
	.event-links-bar .button .long {
		display: none;
	}
}
 

/* ---------------------------------------------------------------------------------------------------------- */
/* Location Finder Page--------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-22 .middle-area-inner > .wrapper {
	position: relative;
}

.map-locations-categories-heading-area .button.selected, 
.map-locations-categories-heading-area .button:hover, 
.map-locations-map-container-heading-area .button.selected, 
.map-locations-map-container-heading-area .button:hover {
  	background-color: #fff;
  	color: var(--default-font-color);
}

.map-locations-categories-heading-area .button, .map-locations-map-container-heading-area .button {
  	background-color: var(--primary-color);
	color: #fff;
  	font-size: 15px;
  	line-height: 24px;
	margin-right: 5px;
	padding: 2px 20px;
}

.map-locations-categories-heading-area .button, .map-locations-map-container-heading-area .button:last-of-type {
	margin-right: 0;
}

.map-locations-categories-heading-area .button, .map-locations-map-container-heading-area .button:hover {
	color: var(--primary-color);
}

.map-locations-map-container {
  	float: right;
  	width: 66%;
}

.map-locations-search-wrap {
  	background-image: url(/newtheme/images/icons/search-icon.svg);
  	background-size: 20px 50%;
}

.map-locations-categories {
	left: 0;
	width: 30%;
}

.map-locations-zip-radius-wrap {
  	margin: 10px 5px;
}


* ---------------------------------------------------------------------------------------------------------- */
/* Login Page Form / Profile Page / Logout Links ------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.login-page-form,
.additional-login-page-content,
.logout-link-wrap,
#frontend-edit-crm-member-profile-form {
	margin: 45px auto;
	max-width: 1300px;
	padding: 0 25px;
}

.login-page-form input[type=text],
.login-page-form input[type=email],
.login-page-form input[type=password] {
	margin: 0 5px 10px 0;
	padding: 12px 10px;
}

.login-page-form input.button {
	border-radius: 0;
	padding: 5px 25px;
}

.logout-link-wrap {
    margin: 45px auto 0;
	text-align: right;
}

.logout-link-wrap .button {
	margin-left: 5px;
}

#frontend-edit-crm-member-profile-form {
	margin-top: 0;
	padding: 0 30px;
}

#frontend-edit-crm-member-profile-form .button {
	margin-right: 5px;
}

@media (max-width: 600px) {
	.login-page-form input[type=text],
	.login-page-form input[type=email],
	.login-page-form input[type=password],
	.login-page-form input.button,
	#frontend-edit-crm-member-profile-form .button {
		display: block;
		margin: 0 0 10px 0;
		width: 100%;
	}

	#frontend-edit-crm-member-profile-form tr td {
		box-sizing: border-box;
		display: block;
		width: 100%;
	}

	#frontend-edit-crm-member-profile-form tr td:first-child {
	    border: 0;
	    padding-bottom: 0;
	}

	#frontend-edit-crm-member-profile-form select {
		width: 100%;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Interactive Map Page ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  	z-index: 1;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Embedded Mosaic Caption Styles --------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.inspiration-gallery-items.quad .row .col a .image img {
	margin: 0 auto; 
}

.embedded-mosaic-gallery .slide .caption {
  bottom: 0;
  font-size: 13px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Blog ----------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.blog-left-column {
	width: 75%;
}

.page-type-5 .now-viewing {
	display: none;
}

.list-items.blog-items > li {
	border-color: #DEDEDE;
	margin-bottom: 45px;
	padding: 0;
}

.blog-left-column .list-item .thumbnail img {
	display: block;
	width: 100%!important;
}

.blog-items .blog-item .content {
	padding-bottom: 10px;
	width: 100%;
}

.blog-items .blog-item h2.title {
	color: var(--primary-color);
	font-family: var(--default-font-family);
	font-family: var(--default-font-size);
	font-weight: 700;
	margin-bottom: 10px;
}

.blog-items .blog-item h2.title a {
	color: var(--primary-color);
	font-family: var(--default-font-family);
	font-size: 25px;
	font-weight: 700;
}

.blog-items .blog-item h3.date {
	background: #BFBFBF;
	color: #fff;
	font-size: 14px;
    font-weight: 500;
	letter-spacing: .8px;
	margin-bottom: 20px;
	padding: 10px;
	text-transform: uppercase;
}

.blog-items .blog-item > p {
	line-height: 175%;
}

.blog-items .blog-item a.read-more:before {
    color: #1a1a1a;
    content: '...';
    margin-right: 5px;
}

.blog-right-column {
	width: 20%;
}

.blog-right-column h3 {
    background: #F4F4F4;
	border-bottom: none;
	clear: both;
	font-family: var(--default-font-family);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 10px;
    text-transform: uppercase;
}

.blog-right-column ul {
	margin: 10px;
}

.blog-right-column ul li {
	padding: 0;
}

.blog-right-column ul li a {
	color: var(--primary-color);
	font-family: var(--alt-font-family);
	font-weight: 400;
	font-size: 14px;
}

.blog-right-column ul li:hover a {
	color: var(--default-font-color);
}

.blog-right-column p {
	font-family: var(--alt-font-family);
	font-size: 14px;
    line-height: 120%;
    margin: 18px 0 18px 10px;
}

.page-type-5 .rss-link-wrap {
	display: none;
}

.detail-page.blog .hr {
	margin: 25px 0;
}

.page-type-5 .detail-page h2.title {
	font-size: 24px;
}

.page-type-5 .detail-page-button {
	box-sizing: border-box;
	display: block;
	line-height: 130%;
	margin: 0 0 20px;
	padding: 13px 0;
	width: calc(20% + 20px);
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Calendar / Events ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.event-links-bar h3 {
	line-height: 37px;
}

.event-links-bar .button {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 0;
	padding-bottom: 0;
}

form.category-and-window {
	height: 70px;
}

form.category-and-window ul.time-window-options li.selected a, 
form.category-and-window ul.time-window-options li:hover a {
	background: #1a1a1a;
}

form.category-and-window ul.display-options {
	margin-top: 0;
}

@media screen and (max-width: 770px) {
	form.category-and-window {
		height: auto;
		text-align: center;
	}
	
	form.category-and-window select {
		float: none;
		width: auto;
	}
	
	form.category-and-window ul.display-options {
		float: none;
		margin: 10px 0;
	}
	
	form.category-and-window ul.time-window-options {
		float: none;
		margin-bottom: 10px;
	}
	
	form.category-and-window ul.display-options li, 
	form.category-and-window ul.time-window-options li {
		display: inline-block;
		float: none;
	}
}

@media screen and (max-width: 550px) {
	.event-links-bar h3 {
		font-size: 15px;
	}
	
	.event-links-bar .button {
		padding: 0 19px;
	}
  
  	.event-links-bar .button:hover {
 		background-color: #1a1a1a;
    }
	
	.event-links-bar .button .long {
		display: none;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Driving Directions Page ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-13 .map-content-wrap {
	width: 34%;
}

.page-type-13 .map-content-wrap .cms-table {
	margin: 15px 0;
	width: 100%;
}

.page-type-13 .map-content-wrap input:not(.button) {
	max-width: none;
	width: 100%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Form Builders / Forms ------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
form .form-section:after {
	display: table;
	clear: both;
	content: '';
}

input, select, textarea {
	box-sizing: border-box;
	max-width: 100%;
	outline: none;
}

form .field-wrap input[type=text], 
form .field-wrap select, 
form .field-wrap textarea {
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #C4C4C4;
    border-radius: 0;
    color: #77787C;
    box-shadow: none;
	font-family: 'Montserrat', sans-serif;
    font-size: 12px;
	max-width: 719px;
    padding: 14px;
    width: 100%;
}

form .field-wrap input.phone {
	width: auto;
}

form .field-wrap select {
	background: url(/newtheme/images/icons/filter-arrow.svg) 97% 50% no-repeat;
	background-size: 10px auto;
	padding-right: 20px;
}

form .field-wrap.field-address .dib.smr {
	display: block;
	margin: 7px 0 0;
}

table.cms-table .button {
	margin: 15px 0;
}

div#dd-print-button {
	margin-bottom: 35px;
}

form .field-wrap span.checkbox-wrap input, 
form .field-wrap span.radio-wrap input {
	opacity: 0;
    position: absolute;
    z-index: -9999;
}

.map-canvas.driving-directions > div > div img {
    width: 100%!important;
}

.right-side.full-width .feedback-form-wrap, 
.submission-form-wrap.has-driving-directions {
	width: 31%;
}

.driving-directions-wrap {
	float: right;
	width: 63%;
}

.ss-content-block .driving-directions-wrap,
.ss-content-block .submission-form-wrap.has-driving-directions {
	float: none;
	width: auto;
}

.ss-content-block .driving-directions-wrap {
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding-top: 30px;
}

.ss-content-block .driving-directions-wrap .print-button {
	display: none;
}

.driving-directions-input-fields {
	margin: 15px 0;
}

.field-wrap input[type=text] {
	width: 100%;
}

.driving-directions-wrap > br {
	display: none;
}

.map-content-wrap {
	display: inline-block;
	margin-top: 80px;
	width: 29%;
}

.map-wrap {
	float: right;
	width: 61%;
}

.right-side.full-width .feedback-form-wrap, 
.submission-form-wrap.has-driving-directions {
	width: 31%;
}

.driving-directions-wrap {
	float: right;
	width: 63%;
}

.page-type-8 .map-content-wrap {
	display: inline-block;
	margin-top: 80px;
	width: 29%;
}

.page-type-8 .map-wrap {
	float: right;
	width: 61%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* All Search Inputs / Buttons ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
form.category-and-window .text-search-wrap {
	position: relative;
}

form.category-and-window .text-search-wrap .text-search {
	border-radius: 5px;
	border-right: 29px solid transparent;
	min-width: 200px;
	width: 100%;
}

form.category-and-window .text-search-wrap .submit {
	background-color: var(--primary-color);
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	bottom: 0;
	color: #fff;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}
.driving-directions-input-fields label {
	color: var(--default-font-color);
	text-transform: none;
}
.job-board-filter-wrap.col-1 .filter-wrap, 
.job-board-filter-wrap.col-2 .filter-wrap, 
.job-board-filter-wrap.col-3 .filter-wrap {
	float: right;
	position: relative;
	width: auto;
}

.job-board-filter-wrap .filter-wrap.text-search-wrap .text-search {
	border-right: 30px solid transparent;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
    float: left;
    height: 25px;
    padding: 0 6px;
	min-width: 200px;
    width: 100%!important;
}

.job-board-filter-wrap .filter-wrap.text-search-wrap .button {
	background: #E92A30;
	border: none;
    border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	bottom: 0;
	color: #fff;
    float: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 400;
    height: 25px;
	letter-spacing: 1.6px;
    line-height: 25px;
    margin: 0;
	position: absolute;
	right: 0;
    text-align: center;
	top: 0;
	width: 30px;
}

.job-board-filter-wrap .filter-wrap.text-search-wrap .button:hover,
form.category-and-window .text-search-wrap .submit:hover {
  	background-color: #1a1a1a;
}

.search-page-form-wrap .text-search-wrap {
	position: relative;
}

.search-page-form-wrap .text-search-wrap .text-search {
	min-width: 200px;
	border-right: 29px solid transparent;
	width: 100%;
}

.search-page-form-wrap .text-search-wrap .submit {
	background-color: #E92A30;
	border-radius: 0;
	bottom: 0;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1.6px;
	height: 28px;
	line-height: 18px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
  	transition: all .2s ease;
  	-webkit-transition: all .2s ease;
	width: 30px;
}

.search-page-form-wrap .text-search-wrap .submit:hover {
  	background-color: #1a1a1a;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Interactive Map Page ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-31 .leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  	z-index: 1;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Job Board ------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-9 .job-board-items .list-item {
	border-radius: 4px;
}

.page-type-9 .job-board-items .list-item a {
	min-height: auto;
	padding: 15px 120px 15px 15px!important;
}

.page-type-9 form .field-wrap input.phone {
	margin-right: 5px;
}

.page-type-9 form .field-wrap input.phone:last-of-type {
	margin-right: 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Image Link Grid ------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.image-grid-link-items {
	margin: 0 -12.5px;
}

.image-grid-link-items .grid-sizer {
	width: 50%;
}

.image-grid-link-items .gutter-sizer {
	width: 0;
}

.element-item.all {
    box-sizing: border-box;
    padding: 0 12.5px;
	margin-bottom: 25px;
    width: 100%;
}

.image-grid-link-items .list-item.image-link-grid-item {
	display: block;
	overflow: hidden;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.image-grid-link-items .list-item.image-link-grid-item .image-wrap {
	background: 50% 50% no-repeat;
	background-size: cover;
	height: 0;
	margin-bottom: 10px;
	overflow: hidden;
	padding-top: 60%;	
	position: relative;
}

.image-grid-link-items a.list-item.image-link-grid-item:hover {
	opacity: .9;
}

.image-grid-link-items .list-item.image-link-grid-item .image-wrap img {
	display: none;
}

.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap {
	background: none;
}

.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap * {
	margin-bottom: 5px;
}

.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap *:last-child {
	margin-bottom: 0;
}

.image-grid-link-items .list-item.image-link-grid-item .title {
	color: var(--default-font-color);
    display: inline-block;
    font-family: var(--alt-font-family);
    font-family: var(--default-font-size);
    font-weight: 700;
    height: auto;
    line-height: 110%;
    padding: 0;
    vertical-align: middle;
	text-align: left;
    width: auto;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap {
	color: var(--default-font-color);
	display: block;
	font-size: 16px;
	font-weight: 400;
}

.image-grid-link-items a.list-item.image-link-grid-item .link.button {
	position: static;
}


@media screen and (min-width: 550px) {
	.element-item.all {
		width: 50%;
	}
}


@media screen and (min-width: 1024px) {
	.image-grid-link-items .grid-sizer {
		width: calc(100% * 1/3);
	}

	.element-item.all {
		width: calc(100% * 1/3);
	}

	.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap * {
		margin-bottom: 10px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Porfolio Page--------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-type-16 .masonry-grid {
    margin: 20px -12.5px 0;
}

.page-type-16 .masonry-grid .grid-sizer {
    width: calc(100% * 1/3);
}

.page-type-16 .masonry-item a {
	border: none;
}
.page-type-16 .inspiration-gallery-items .col a {
	display: flex;
	flex-direction: column;
}
.page-type-16 .masonry-grid .masonry-item {
	box-sizing: border-box;
	margin: 0 0 25px;
	padding: 0 12.5px;
	text-align: left;
    width: calc(100% * 1/3);
}

.page-type-16 .masonry-item a {
	display: block;
	position: relative;
}

.page-type-16 .masonry-item a:before {
	background: rgba(0,0,0,.8);
	background-size: cover;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	z-index: 1;
}

.page-type-16 .masonry-item a:hover:before {
	opacity: 1;
}

.page-type-16 .masonry-item a .image,
.page-type-16 .inspiration-gallery-items .col .image {
    aspect-ratio: 16 / 9;
    background: 50% 50% no-repeat;
    background-size: cover;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    overflow: hidden;
}

.page-type-16 .masonry-item a .image img {
    display: none;
}

.page-type-16 .masonry-item .caption {
	display: inline-block;
	line-height: 100%;
	opacity: 0;
	transform: translateY(10px);
	-webkit-transition: transform .3s ease, opacity .3s ease;
	transition: transform .3s ease, opacity .3s ease;
	vertical-align: middle;
}

.page-type-16 .masonry-item a:hover .caption {
	opacity: 1;
	transform: translateY(0);
}

.page-type-16 .masonry-item a .title {
	color: #fff;
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1.6px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.page-type-16 .inspiration-gallery-items .col {
	width: calc(50% - 15px);
}
.page-type-16 .inspiration-gallery-items .col.col-last {
	float: left;
}

.page-type-16 .inspiration-gallery-items {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 0 auto;
	position: relative;
	width: 100%;
}

.page-type-16 .detail-page.inspiration-gallery .small-action-button.negmt {
  	margin-top: 7px;
}

.page-type-16 .detail-page.inspiration-gallery .social-share-links .houzz iframe {
  	margin: 0;
  	top: 0;
}

.detail-page.inspiration-gallery .small-action-button.negmt {
  	margin-top: 7px;
}

.detail-page.inspiration-gallery .social-share-links .houzz iframe {
  	margin: 0;
  	top: 0;
}

.inspiration-gallery-items .col.col-last {
	float: left;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Social Media Mashup -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) { 
	.social-stream.isotope-grid {
		margin: 0 -10px;
	}

	.social-stream.isotope-grid .grid-sizer {
		width: calc(100% * 1/3);
	}

	.social-stream.isotope-grid .gutter-sizer {
		width: 0;
	}

	.social-stream.isotope-grid .element-item {
		margin: 0 10px 20px;
		width: calc(100% * 1/3 - 20px);
	}
}

.social-stream .element-item .item-content {
	padding: 30px 15px 15px;
}

.filter-button-group .filter-button {
	margin-right: 10px;
}

.filter-button-group .filter-button:not(.all).selected {
	color: #000;
}

.filter-button-group .filter-button.all.selected {
	background-color: #000;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Resources ------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.list-items .list-item.resource-item h2.title {
	font-size: 38px;
}

.list-items .list-item.resource-item h3.date {
	display: none;
}

.list-items>li {
	border-bottom: none;
}

.list-items .list-item.resource-item .file-wrap {
    min-height: 0;
    background: none !important;
    padding: 0;
}
.list-items .list-item.resource-item .file-wrap:after {
    clear: both;
    content: '';
    display: table;
}

.list-items.resource-items li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.list-items .list-item.resource-item .content {
    padding: 0;
}

.list-items.resource-items .resource-item > .hr {
    display: none;
}

.resource-item > .button.fr {
    line-height: 100%;
    padding: 7px 15px;
    min-width: 90px; 
}

.list-items .list-item.resource-item h2.title {
    font-size: 25px;
}

.resource-item p {
    margin: 0;
}

.list-items.accordion-mode-faqs > li h2.title.question {
	text-transform: none;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Testimonials --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

.lower-pager {
  	margin-bottom: 45px;
}

.list-item.testimonial-item {
	background: #f5f5f5;
	border-left: 4px solid 4px solid #E92A30;
	padding: 30px;
}

.list-items.testimonial-items > li {
	padding: 18px 0;
}

.list-item.testimonial-item h3.author {
	margin: 10px 0 0;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Login Page Form ------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.login-page-form {
	padding: 0 25px;
	max-width: 1300px;
	margin: 45px auto;
}

.login-page-form input[type=text],
.login-page-form input[type=password] {
	margin-right: 9px;
	padding: 12px 10px;
}

.login-page-form input.button {
	border-radius: 0;
	padding: 5px 25px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* SelectBox Filter Styles ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.select-filter-label {
	margin-left: 0;
}

a.selectBox {
	display: none !important;
}

.grid-filters-wrap,
#inspiration-gallery-filters {
	background: none;
	margin: 0;
	padding: 25px 0 0;
	text-align: center;
	width: 100%;
}

.inspiration-gallery-filters .select-filter-wrap {
	display: inline-block;
	float: none;
	margin: 0 0 10px;
	vertical-align: middle;
}

.select-filter-label {
	display: inline-block;
	float: none;
	font-family: var(--alt-font-family);
	font-size: 14px;
	font-weight: 500;
	margin: 0 15px 10px 0;
	vertical-align: middle;
}

.select-filter-wrap select {
    -webkit-appearance: none;
	background: #fff url(/newtheme/images/icons/filter-arrow.svg) 95% 50% no-repeat;
	background-size: 10px auto; 
    border: 1px solid #d0d0d0;
    box-shadow: none;
	box-sizing: border-box;
	font-family: var(--alt-font-family);
	font-size: 14px;
	font-weight: 400;
	height: 32px; 
	letter-spacing: .2px;
	line-height: 32px;
	margin-right: 15px;
	min-width: 180px;
	padding: 0 0 0 15px;
    vertical-align: middle;
}


@media screen and (min-width: 1024px) {
	select#grid_category_id { 
		display: none; 
	}

	.inspiration-gallery-list {
		text-align: center;
	}

	.inspiration-gallery-filters {
		display: inline-block;
		opacity: 0;
		-webkit-transition: opacity .5s ease .5s;
		transition: opacity .5s ease .5s;
		vertical-align: middle;
	}

	.loaded .inspiration-gallery-filters {
		opacity: 1;
		transform: translateY(0);
	}

	
	.select-filter-label { 
		margin: -15px 15px 0 0;
	}

	a.selectBox {
		display: inline-block !important;
	}

	.selectBox-label {
		color: #000;
		border-radius: 4px;
		box-sizing: border-box;
		display: block;
		float: left;
		font-family: var(--alt-font-family);
		font-size: 14px;
		font-weight: 400;
		height: 32px;
		line-height: 32px;
		padding-left: 15px;
		text-align: left;
		width: calc(100% - 35px);
	}

	.selectBox-arrow {
		background: url(/newtheme/images/icons/filter-arrow.svg) 50% 50% no-repeat;
		background-size: 10px auto;
		float: right;
		height: 32px;
		vertical-align: middle;
		width: 35px;
	}

	.inspiration-gallery-filters .select-filter-wrap {
		display: inline-block;
		float: none;
		margin: 0 25px 5px 0;
		vertical-align: middle;
	}

	.inspiration-gallery-filters .select-filter-wrap:last-of-type {
		margin-right: 0;
	}

	/* Dropdown control */
	.inspiration-gallery-filters input, 
	.inspiration-gallery-filters textarea {
		background-color: #fff;
		border: none;
		border-radius: 4px;
		color: #000;
		cursor: pointer;
		font-size: 14px;
		font-weight: 400;
		height: 32px;
		letter-spacing: .2px;
	}

	.inspiration-gallery-filters select {
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	.inspiration-gallery-filters select,
	select#grid_category_id {
		background: url(/newtheme/images/icons/filter-arrow.svg) 95% 50% no-repeat;
		background-color: #fff;
		background-size: 8px auto;
		-webkit-appearance: none;
		border: 1px solid #D0D0D0;
		border-radius: 4px;
		box-shadow: none;
		color: #2B3439;
		cursor: pointer;
		display: none;
		font-size: 16px;
		font-weight: 400;
		float: none;
		height: 42px;
		margin: 0;
		min-width: 220px;
		outline: none;
		overflow: hidden;
		padding-left: 10px;
		position: relative;
		text-decoration: none;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		vertical-align: middle;
	}

	.inspiration-gallery-filters select.selected,
	.inspiration-gallery-filters select:hover {
		background: none;
	}

	.selectBox-dropdown {
		border: 1px solid #D0D0D0;
		background: #fff;
		border-radius: 4px;
		cursor: pointer;
		display: inline-block;
		float: none;
		height: 32px;
		margin: 0;
		min-width: 220px;
		outline: none;
		overflow: hidden;
		position: relative;
		text-decoration: none;
		-webkit-transition: background .3s ease;
		transition: background .3s ease;
		vertical-align: middle;
		z-index: 5;
	}

	.selectBox-dropdown.selectBox-menuShowing {
		background: #fff;
		border: 1px solid #D0D0D0;
		border-bottom: none;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}

	/* Dropdown menu */
	.selectBox-dropdown-menu {
		background: #fff;
		border: 1px solid #D0D0D0;
		border-top: none;
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px;
		box-sizing: border-box;
		cursor: pointer;
		font-family: var(--alt-font-family);
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .2px;
		max-height: 350px;
		min-width: 222px;
		overflow: auto;
		padding: 10px 0;
		position: absolute;
		text-transform: none;
		-webkit-transition: all .4s ease;
		transition: all .4s ease;
		z-index: 5;
	}

	/* Inline control */
	.selectBox-inline {
		background: #fff;
		border-radius: 4px;
		display: inline-block;
		outline: none;
		overflow: auto;
		width: 250px;
	}

	.selectBox-inline:focus {
		border-color: #fff;
	}


	/* Options */
	.selectBox-options {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	.selectBox-options li,
	.selectBox-options li a {
		box-sizing: border-box;
		color: #000;
		font-weight: normal;
		display: block;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.selectBox-options li a {
		font-family: var(--alt-font-family);
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .2px;
		line-height: 42px;
		overflow: hidden;
		padding: 0 0 0 15px;
		text-decoration: none;
		white-space: nowrap;
	}

	.selectBox-options li:last-of-type a {
		border-bottom: none;
	}

	.selectBox-options li.selectBox-hover a {
		background: #EAEAEA;
	}

	.selectBox-options li.selectBox-disabled a {
		color: #888;
		background-color: transparent;
	}

	.selectBox-options li.selectBox-selected a {
		background: #EAEAEA;
	}

	.selectBox-options .selectBox-optgroup {
		color: #000;
		background: #EAEAEA;
		line-height: 1.5;
		padding: .3em;
		white-space: nowrap;
	}


	/* Disabled state */
	.selectBox.selectBox-disabled {
		color: #888 !important;
	}

	.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
		opacity: .5;
		filter: alpha(opacity=50);
		border-color: #666;
	}

	.selectBox-inline.selectBox-disabled {
		color: #888 !important;
	}

	.selectBox-inline.selectBox-disabled .selectBox-options a {
		background-color: transparent !important;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Toggle More ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.toggle-more-link {
	margin-bottom: 1px;
}

.toggle-more-link:last-child {
	margin-bottom: 20px;
}

.toggle-more-link a {
	background: #333;
	box-sizing: border-box;
	color: #fff;
	display: block;
	font-weight: 700;
	opacity: 0.75;
	padding: 14px 30px 14px 20px;
	position: relative;
	text-transform: uppercase;
	transition: opacity 0.25s ease;
}

.toggle-more-link:hover a,
.toggle-more-link.selected a {
	opacity: 1;
}

.toggle-more-link a:after {
	color: #fff;
	content: '+';
	float: right;
	font-size: 20px;
	opacity: 0.5;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.toggle-more-link.selected a:after {
	content: '-';
}

.toggle-more-content {
	display: none;
	padding: 20px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Forum Page Type Styles ----------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.forum-topic-search-form input[type=text] {
	padding: 10px;
	margin-right: 5px;
}

.breadcrumbs-wrap a {
	margin-left: 5px;
}

.breadcrumbs-wrap a:first-child {
	margin-left: 0;
}

.page-type-33 .submit-wrap input {
	margin-right: 5px;
}

.edit-thread-button.small-action-button,
.delete-thread-button.small-action-button,
.small-action-button.like-this-button,
.small-action-button.quote-this-button {
	font-size: 12px;
    padding: 2px 12px;
}

.small-action-button.quote-this-button {
	margin-left: 5px;
}

.like-this-button .counter {
	line-height: 100%;
}

.topic-title {
	font-weight: bold;
}

.topic-author,
.topic-date {
	font-size: 80%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Responsive Styles ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 1360px) {
	.middle-area .wrapper {
		margin: 0 30px;
	}
}


@media screen and (max-width: 1300px) {
	body {
		font-size: 16px;
		line-height: 26px;
	}

	.middle-area {
		min-height: calc(100vh - 806px);
	}

	.main-content {
		padding: 45px 0;
	}
	
	.primary-nav-wrap ul a {
		font-size: 14px;
	}
	
	.header .wrapper {
		margin: 0 25px;
	}
	
	.header-quick-links .left-side {
		margin-left: 25px;
	}

	.padding {
		padding: 45px 0;
	}

	.quick-links-box-wrap {
		padding: 25px 25px 25px 0;
	}

	.inspiration-gallery-items .row .col a .image img {
		height: auto;
		max-width: 100%;
	}

	.inspiration-gallery-items.quad .row .col a .image img {
		max-width: 100%;
	}
}


@media screen and (max-width: 1055px) {
	.inspiration-gallery-items.dual .row .col.col-last {
		float: left;
		padding: 0;
	}

	.inspiration-gallery-items.dual {
		margin: 0 auto;
		width: 50%;
	}
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 16px;
		padding-top: 60px;
		line-height: 26px;
	}

	h2 {
		font-size: 32px;
	}

    .header {
		height: 60px;
		left: 0;
		padding-top: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 101;
	}

	.header .logo {
		height: 60px;
		margin-top: 0;
		width: 160px;
	}
	.header .logo:before {
		background-position: 50%;
		background-size: contain;
		height: 100px;
	}
	

	.nav-toggle {
		position: absolute;
		right: 0;
		top: 0;
	}

	.page-index.at-top .header .logo {
		float: none;
		margin: 15px auto 0;
		width: 180px;
	}

	.header-quick-links > .quick-links,
	.header-quick-links > .search-form {
		display: none;
	}

	.button {
		padding: 4px 22px;
	}

	.header-quick-links {
		margin-top: 0;
	}

	.primary-nav-wrap {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;	
		padding: 25px 0 0;
	}

	.primary-nav-wrap > ul:before {
		width: calc(100% - 255px);
	}

	body.single-level-nav .primary-nav-wrap .search-form {
		margin-right: 60px;
	}

	.primary-nav-wrap .search-form {
		margin-left: 25px;
	}

	.primary-nav-wrap > ul {
		padding: 15px 10px 0 10px;
	}

	body.single-level-nav .primary-nav-wrap > ul {
		margin-top: 0;
	}

	.primary-nav-wrap > ul > li > ul {
		padding-left: 15px;
	}

	.ss-section-wrap-inner {
		margin: 0 25px;
		max-width: none;
		padding-bottom: 25px;
	}

	.wrapper {
    	margin: 0 25px;
	}

	.wrapper .main-content {
		margin: 0 auto;
		padding: 25px 0;
	}
	
	.page-banner {
		height: 180px;
		line-height: 180px;
	}

	.footer-logo {
		max-width: 240px;
	}

	.padding {
		padding: 25px 0;
	}

	.cb-intro {
		margin-bottom: 25px;
	}

	.cb-footer {
		margin-top: 25px;
	}

	.list-item.testimonial-item {
		padding: 25px;
	}

	h1 {
		font-size: 46px;
	}

	.homepage-banner .embedded-gallery .caption h1, 
	.homepage-banner .embedded-gallery .caption h2, 
	.homepage-banner .embedded-gallery .caption h3, 
	.homepage-banner .embedded-gallery .caption h4, 
	.homepage-banner .embedded-gallery .caption h5, 
	.homepage-banner .embedded-gallery .caption h6, 
	.homepage-banner .embedded-gallery .caption p {
		margin-bottom: 20px;
	}

	.upper-footer {
		padding: 25px 0;
	}

	.footer-right-side ul {
		column-gap: 40px;
	}

	.homepage-banner .embedded-gallery .caption {
		bottom: 340px;
	}

	.page-index .ss-section-wrap:nth-child(2) .ss-section-wrap-inner {
		padding-top: 25px;
	}

	.page-index .ss-section-wrap:last-of-type .ss-section-wrap-inner {
		padding-bottom: 25px;
	}

	.map-locations-categories-heading-area .button, 
	.map-locations-map-container-heading-area .button {
		font-size: 12px;
		line-height: 24px;
		padding: 2px 10px;
	}

	.map-locations-map-container {
		float: none;
		margin-top: 25px;
		padding: 0;
		width: auto;
	}

	.map-locations-categories {
		float: none;
		position: static;
		width: auto;
	}

	.map-locations-zip-radius-wrap {
		margin: 10px 5px;
	}

	.map-locations-categories-heading-area h3,
	.map-locations-map-container-heading-area h3,
	.map-locations-zip-radius-wrap h3 {
		font-family: var(--default-font-size);
		text-align: left;
	}

	.inspiration-gallery-items.quad .row .col {
		width: auto;
	}

	.inspiration-gallery-items.quad .row .col.col-last {
		float: left;
	}

	.map-wrap {
		float: none;
		width: 100%;
	}

	.page-type-13 .map-content-wrap {
		margin-top: 0;
		width: 100%;
	}

	.member-directory-filter-wrap form.category-and-window select {
		display: block;
		float: none;
		margin: 0 0 15px;
	}

	form.category-and-window .text-search-wrap {
		float: none;
		margin: 20px 0 25px;  
	}

	form.category-and-window .text-search-wrap .submit {
		border-radius: 0 5px 5px 0;
	}

	.driving-directions-wrap {
		width: 100%
	}

	.driving-directions-input-fields .submit-wrap {
		text-align: left;
	}

	.print-button.fr {
		float: left;
	}

	.print-button {
		display: none;
	}

	.submission-form-wrap.has-driving-directions {
		border-bottom: 1px solid #ccc;
		margin-bottom: 50px;
		padding-bottom: 50px;
		width: 100%;
	}

	.inspiration-gallery-items.dual {
		width: 75%;
	}

	.blog-left-column,
	.blog-right-column {
		float: none;
		width: auto;
	}

	.detail-page.member-directory .image-column {
		width: 35%;
	}

	.detail-page.member-directory .info-column {
		width: 65%;
	}
	
	.footer .upper-footer > p {
		margin-bottom: 15px;
	}

	.footer .upper-footer,
	.footer .upper-footer a {
		font-size: 16px;
	}

	.image-link-section .ss-image-block {
		margin: 0 auto;
		width: calc(100% / 3 - 40px);
	}
	.chosen-container {
		max-width: 100%
	}
}


@media screen and (max-width: 900px) {
	.middle-area {
		min-height: calc(100vh - 612px);
	}
}


@media screen and (max-width: 851px) {
	.page-index .padding .ss-section-wrap-inner {
		margin-left: 25px;
		margin-right: 25px;
		max-width: none;
	}

	.equal-heights.image-is-first .vertical-align-wrap {
		margin-left: 0;
	}

	.equal-heights .ss-section-wrap-inner {
		margin: 0 0 20px;
	}

	.equal-heights .ss-content-block.col-3.text-block {
		margin: 0 20px;
	}

	.equal-heights .vertical-align-wrap {
		margin-bottom: -60px;
		padding: 45px;
		width: 100%;
	}

	.ss-content-block.col-2-3.image-block {
		height: auto;
		padding-top: 0;
	}
}


@media screen and (max-width: 768px) {
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	.page-index.at-top .header .logo {
		width: 125px;
	}

	.header .logo:before {
		height: 100px;
		width: 125px;
	}

	.col-1 .ul-2 {
		padding: 25px 25px 0 45px;
	}

	.two-column {
		columns: 1;
	}

	.middle-area {
		min-height: calc(100vh - 579px);
	}

	.ss-content-block {
		margin-bottom: 25px;
	}

    .search-form {
        margin-top: 10px;
    }

    .primary-nav-wrap {
        min-width: auto;
        width: 100%;
    }

	.primary-nav-wrap > ul:before {
		width: calc(100% - 240px);
	}

	.primary-nav-wrap > ul > li > a {
		font-size: 21px;
		width: 215px;
	}

	.primary-nav-wrap > ul > li > ul {
		padding-left: 25px;
		width: calc(100% - 235px);
	}

	.page-banner {
		height: 150px;
		line-height: 150px;
	}

	.footer-logo {
		margin: 0 auto 15px;
	}

	.footer-left-side {
		float: none;
		margin-bottom: 15px;
		text-align: center;
	}

	.footer-right-side {
		display: none;
	}

	.ss-section-wrap-inner,
	.page-index .ss-section-wrap-inner {
		padding-bottom: 0;
	}

	.homepage-banner .embedded-gallery, 
	.homepage-banner .embedded-gallery .slide {
		min-height: 400px;
	}

	.homepage-banner .embedded-gallery .caption {
		display: inline-block!important;
		position: static;
		vertical-align: middle;
	}

	.homepage-banner .embedded-gallery .caption h1,
	.homepage-banner .embedded-gallery .caption h2 {
		font-size: 36px;
	}

	.equal-heights .inner-content-block-wrap {
		padding: 20px;
	}
	.callout-section .ss-section-wrap-inner {
		flex-direction: column-reverse;
	}
	.callout-section .ss-editor-video-embed-container {
		aspect-ratio: 16 / 9;
	}
	.callout-section .ss-image-block {
		order: 1;
	}

	.primary-nav-wrap .quick-links {
		display: block;
		margin: 15px 0 0 25px;
		height: auto;
	}

	.quick-links ul {
		display: inline-block;
		vertical-align: middle;
	}

	.page-type-10 a.fr.small-action-button {
		float: none;
	}

	.page-type-10 .detail-page.member-directory .image-column {
		float: none;
		margin-top: 0;
		max-width: 450px;
		padding-right: 0;
		width: 100%;
	}

	.page-type-10 .detail-page.member-directory .info-column {
		float: none;
		width: 100%;
	}

	.sosimple-overlay.member-directory {
		margin: 180px 30px 60px !IMPORTANT;
		max-width: 100%;
		transform: none;
		width: auto !important;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory {
		flex-direction: column;
		height: max-content;
		max-height: calc(100dvh - 100px);
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .image-column {
		margin: -150px auto 0;
		width: auto;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .info-column {
		display: block;
		max-height: calc(100dvh - 430px);
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .info-column h2.title,
	.sosimple-overlay.member-directory .detail-page.member-directory .info-column .tr-job-title,
	.sosimple-overlay.member-directory .detail-page.member-directory .info-column .tr-email {
		text-align: center;
	}
	.sosimple-overlay.member-directory .sosimple-overlay-close {
		top: -150px;
	}

	.list-items.member-directory-items li {
		width: calc(50% - 8px)
	}

	form.job-form .field-wrap,
	form.job-form .field-wrap:nth-child(2n+1) {
		float: none;
		width: 100%;
	}

	.job-board-filter-wrap.col-1 .filter-wrap, 
	.job-board-filter-wrap.col-2 .filter-wrap, 
	.job-board-filter-wrap.col-3 .filter-wrap {
		width: 100%;
	}

	.search-page-form-wrap .text-search-wrap {
		width: 100%;
	}
	.image-link-section .ss-image-block {
		margin-bottom: 30px;
		width: calc(100% - 60px);
	}
	.image-link-section .ss-image-block img {
		max-width: 100%;
		width: 100% !important;
	}
	.ss-content-block.col-1 .content-box-list.blog li a {
		padding: 15px 15px 15px;
	}
	.ss-content-block.col-1 .content-box-list.blog li a .thumbnail {
		aspect-ratio: 1 / 1 !important;
		height: auto;
		margin: -15px -15px 15px;
		max-width: none;
		position: relative;
		width: calc(100% + 30px);
	}
}


@media screen and (max-width: 680px) {
	.calendar td .inner, .calendar-detail-page .calendar td .inner {
		text-align: center;
	}
	
	.list-item.resource-item .button.fr {
		float: none;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.list-items .list-item.resource-item .file-wrap {
		background-size: 28px auto !important;
	}
	
	.list-items .list-item.resource-item h2.title {
		font-size: 20px;
		margin-bottom: 0;
	}
}

@media (max-width: 500px) {
	.resource-page-upper-filter-form .section-filter-wrap, .resource-page-upper-filter-form .submit-wrap, .resource-page-upper-filter-form .text-search-wrap {
		margin-right: 0;
	}

	.resource-page-upper-filter-form .section-filter-wrap select, .resource-page-upper-filter-form .text-search-wrap input {
		min-width: 100%;
	}

	input.button {
		width: 100%;
	}
}

#mobile-check-element {
	display: none;
}

@media screen and (max-width: 550px) { 
	#mobile-check-element {
		display: block;
		opacity: 1;
		position: absolute;
		visibility: hidden;
		z-index: -999;
	}

	.primary-nav-wrap > ul:before {
		display: none;
	}

    .primary-nav-wrap > ul > li > a {
        display: block;
        padding: 15px;
        width: 100%;
    }

	.primary-nav-wrap > ul > li.sub > a:before {
		content: none;
	}

	.primary-nav-wrap > ul > li.sub > a:after {
		background: url(/newtheme/images/icons/plus.svg) 50% 50% no-repeat;
		background-size: 100% auto;
		content: '';
		display: block;
		float: right;
		height: 11px;
		margin-right: 8px;
		margin-top: 5px;
		position: static;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
		width: 11px;
	}

	.primary-nav-wrap > ul > li.sub > a.clicked-once:after {
		background-image: url(/newtheme/images/icons/minus.svg);
	}

    .primary-nav-wrap > ul > li > ul {
		border-left: none;
		opacity: 1;
		visibility: visible;
        display: none;
        padding: 5px 0 0;
        position: relative;
        width: 100%;
    }

    .primary-nav-wrap > ul > li > ul li, 
    .primary-nav-wrap > ul > li > ul li {
		margin-bottom: 1px;
        opacity: 1;
        transform: translateY(0);
        -webkit-transition: none;
        transition: none;
	}

	.primary-nav-wrap > ul > li > ul > li > a {
		padding: 8px 8px 8px 25px;
	}

	.primary-nav-wrap > ul > li > ul > li.sub > ul {
		padding: 5px 0 0;
	}

	.primary-nav-wrap ul.level-2 > li > a {
		padding: 5px 5px 5px 35px;
	}

	.alternate-header .primary-nav-wrap > ul li.sub.selected > ul {
		display: block;
	}
	.alternate-header .primary-nav-wrap > ul > li.sub.selected > a:after {
		background-image: url(/newtheme/images/icons/minus.svg);
	}
    
	.inner-content-block-wrap {
		padding: 25px;
	}

	.ss-section-wrap-inner .wrapper {
		margin: 0 auto;
		max-width: none;
	}

	.wrapper .main-content {
		margin: 0 auto;
		max-width: none;
	}

	.middle-area {
		min-height: calc(100vh - 760px);
	}
	
	.embedded-gallery .prev-arrow, 
	.embedded-gallery .next-arrow, 
	.homepage-banner .arrow-wrap .prev-arrow, 
	.homepage-banner .arrow-wrap .next-arrow {
		height: 40px;
		margin-top: -20px;
		width: 40px;
	}
	
	.homepage-banner .embedded-gallery-nav-wrapper {
		bottom: 13px;
	}

	.page-index .ss-section-wrap.welcome-section,
	.welcome-section {
		padding-bottom: 220px;
	}
	
	.negative-margin-top-section .ss-section-wrap-inner {
		margin-bottom: -190px;
	}

	.equal-heights .vertical-align-wrap {
		margin-bottom: -25px;
		padding: 25px;
	}

	.member-directory-items .member-directory-item {
		width: 47%;
	}

	.footer-logo {
		max-width: 160px;
	}

	.content-box-list li a .date {
		float: none;
		height: 60px;
		line-height: 60px;
		margin-right: 0;
		width: 100%;
	}

	.content-box-list li a .title {
		padding-top: 15px;
	}

	.content-box-list li a > span {
		float: none;
		width: 100%;
	}

	.list-items.news-items .small-action-button {
		display: block;
		margin-left: 0;
	}

	a.news-detail-page-back-button.fr.small-action-button {
		display: block;
		float: none;
	}

	.page-type-6 .list-item.resource-item .button {
		display: block;
		float: none;
		margin: 15px 0;
	}
	
	.footer .copyright,
	.footer .social {
		float: none;
		text-align: center;
	}

	.footer .social {
		margin-top: 20px;
	}

	.detail-page.member-directory .image-column,
	.detail-page.member-directory .info-column {
		float: none;
		padding: 0;
		width: auto;
	}

	.page-type-10 .info-table td, 
	.page-type-10 .info-table th { 
		padding: 6px 0; 
	}

	.page-type-22 .map-locations-map-container-heading-area .button-wrap {
		float: none;
    	position: static;
	}

	.map-locations-categories-heading-area h3, 
	.map-locations-map-container-heading-area h3, 
	.map-locations-zip-radius-wrap h3 {
		float: none;
		margin-bottom: 5px;
	}

	.map-locations-categories-heading-area .button, 
	.map-locations-map-container-heading-area .button {
		display: block;
		margin: 0 0 5px;
	}
}


@media screen and (max-width: 400px) { 
	.list-items.member-directory-items li {
		width: 100%
	}
	.footer .copyright .powered-by-logo {
		display: block;
		margin: 0 auto 15px;
		padding-right: 0;
		width: 120px;
	}
	.footer .copyright {
		display: flex;
		flex-direction: column;
	}
	.footer .copyright .nav-mode-changer-link {
		margin-left: 0;
	}
}

@media (max-width: 365px) {
	.search-active .search-form input[type="text"], .nav-active .primary-nav-wrap .search-form input[type="text"] {
		width: 210px;
	}

	.primary-nav-wrap {
		padding: 15px 0 0 0;
	}
}

@media (max-width: 340px) {
	.resource-page-upper-filter-form .section-filter-wrap select, .resource-page-upper-filter-form .text-search-wrap input {
		min-width: 260px;
	}
}