:root {
	--white: #FFFFFF;
	--black: #000000;
	--gray: #494949;
	--blue: #283792;
	--light-blue: #7482D5;
	--green: #178737;
	--light-green: #5EBF7A;
	--yellow: #F5D05C;
	--light-yellow: #F8E5B4;
	--cream: #F0EEE7;
	--dark-cream: #E1DACC;
}

/* BASE CSS */
* {
	margin: 0px;
	padding: 0px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	background-color: var(--white);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Carlito", Arial, Helvetica, sans-serif;
	font-size: 19px;
	line-height: 2em;
	color: var(--gray);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.iframe {
	padding: 20px;
}

body.editor, body.short_editor {
	background-image: none;
	background-color: var(--white);
	min-height: 400px;
	transition: none;
	outline: none !important;
}

body.short_editor {
	min-height: 200px;
}

.tox-edit-area__iframe {
	padding: 0px 10px !important;
	background-color: transparent !important;
}

.table_container {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table {
	border-collapse:collapse;
	border-spacing: 0px;
	border: 0px;
	margin-bottom: 1em;
}

table.data_table {
	width: 100%;
}

table th {
	text-align: left;
}

table td {
	vertical-align: top;
}

table.data_table th, table.data_table td {
	text-align: center;
}

table.data_table th:first-child, table.data_table td:first-child {
	text-align: left;
}

.block table th, .block table td {
	line-height: 1.5em;
	padding: 2px 10px;
}

.block table th:first-child, .block table td:first-child {
	padding-left: 0px;
}

.block table th:last-child, .block table td:last-child {
	padding-right: 0px;
}


p, .block p {
	margin-bottom: 1em;
}

.block_content p, .block_content_photo p {
	text-align: justify;
}

.block p:last-child, #content .block ul:last-child {
	margin-bottom: 0px;
}

#content ul, #content ol, .editor ul, .editor ol, .short_editor ul, .short_editor ol {
	padding-left: 19px;
	margin-bottom: 1em;
}

#content li, #content_blocks li, .editor li, .short_editor li {
	line-height: 1.5em;
	margin-bottom: .5em;
}

h1, h2.title {
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: 55px;
	line-height: 1.2em;
	font-weight: bold;
	letter-spacing: .025em;
	color: var(--blue);
	text-align: center;
	margin-bottom: .5em;
}

h1 em, h2.title em {
	display: block;
	margin-top: .5em;
	font-family: "Carlito", Arial, Helvetica, sans-serif;
	font-size: .5em;
	line-height: 1em;
	color: var(--green);
}

@media only screen and (max-width: 1199px) {

	h1, h2.title {
		font-size: 45px;
		line-height: 1.2em;
	}

	h1 em, h2.title em {
		font-size: .6em;
		line-height: 1em;
	}

}

@media only screen and (max-width: 599px) {

	h1, h2.title {
		font-size: 35px;
		line-height: 1.2em;
	}

	h1 em, h2.title em {
		font-size: .6em;
		line-height: 1em;
	}

}

h2 {
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: bold;
	letter-spacing: .025em;
	color: var(--blue);
	margin-bottom: .5em;
}

h3 {
	font-size: 20px;
	line-height: 1em;
	font-weight: bold;
	margin-bottom: .25em;
}

hr {
	border: 0px;
	height: 1px;
	margin: 1em auto;
	color: var(--black);;
	background-color: var(--black);;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
}

#content img, .editor img {
}

a {
	text-decoration: none;
	cursor: pointer;
	color: var(--blue);
}

a:hover {
	color: var(--light-blue);
}

a.green {
	color: var(--green);
}

a.green:hover {
	color: var(--light-green);
}

a, a:after, .overlay:after, button, .button, input[type="button"], input[type="submit"], .fancy_button:after, .fancy_button2:after {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

:focus-visible {
	outline: 2px solid var(--black);;
}

blockquote {
	margin: 10px 0px 10px 15px;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.cb {
	clear: both;
}

.cf:before, .cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

.sr {
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px,1px,1px,1px);
	clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	overflow: hidden !important;
}

#content .embed_container, #content_blocks .embed_container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 20px;
}

#content_blocks .block_content_photo .embed_container, #content_blocks .block_video .embed_container {
	height: 100%;
	margin-bottom: 0px;
}

#content .embed_container iframe, #content .embed_container object, #content .embed_container embed,
#content_blocks .embed_container iframe, #content_blocks .embed_container object, #content_blocks .embed_container embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
}

.right_photo {
	float: right;
	margin: 5px 0px 20px 40px;
	display: block;
	max-width: 50%;
}

.left_photo {
	float: left;
	margin: 5px 40px 20px 0px;
	display: block;
	max-width: 50%;
}

.right_photo img, .left_photo img {
	display: block;
}

@media only screen and (max-width: 699px) {

	.right_photo, .left_photo {
		float: none;
		margin: 0px 0px 20px 0px !important;
		max-width: 100%;
	}

	.right_photo img, .left_photo img {
		width: 100%;
	}

}

.col2 {
	margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {

	.cols {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		justify-content: space-between;
	}

	.cols .col2 {
		width: calc(50% - 15px);
	}

	.cols .col3 {
		width: calc(33.3333333333% - 20px);
	}

}

.bgcolor1 {
	background: linear-gradient(to right, rgba(225,218,203,1) 0%, rgba(240,238,231,1) 100%);
}

.bgcolor1.left {
	background: linear-gradient(to left, rgba(225,218,203,1) 0%, rgba(240,238,231,1) 100%);
}

.bgcolor2 {
	background: linear-gradient(to right,  rgba(49,72,155,1) 0%,rgba(59,91,166,1) 8%,rgba(69,110,176,1) 15%,rgba(71,113,178,1) 15%,rgba(70,111,177,1) 15%,rgba(104,176,212,1) 36%,rgba(112,190,220,1) 42%,rgba(119,203,227,1) 50%,rgba(120,205,228,1) 100%);
}

.bgcolor2.right {
	background: linear-gradient(to left,  rgba(49,72,155,1) 0%,rgba(59,91,166,1) 8%,rgba(69,110,176,1) 15%,rgba(71,113,178,1) 15%,rgba(70,111,177,1) 15%,rgba(104,176,212,1) 36%,rgba(112,190,220,1) 42%,rgba(119,203,227,1) 50%,rgba(120,205,228,1) 100%);
}

p.link {
	text-align: center;
	margin-top: 1.5em;
}

/* FORM CSS */

fieldset {
	border: 0px;
}

label, .label, fieldset legend {
	display: inline-block;
	font-weight: bold;
	line-height: 1.5em;
}

fieldset label {
	font-weight: normal;
}

input, select, textarea, .extension {
	font-family: "Carlito", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 22px;
	padding: 6px 10px;
	background-color: var(--white);
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*
input:focus, select:focus, textarea:focus {
	outline: 1px solid var(--black);;
}
*/

input[type="checkbox"], input[type="radio"] {
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	padding: 0px;
	margin-right: 3px;
	vertical-align: text-top;
}

input[type="checkbox"] + label, input[type="radio"] +label {
	margin-right: 10px;
}

button, .button, input[type="button"], input[type="submit"], .layout_admin .ui-dialog-buttonset .ui-button {

	border: 0px;
	background-color: var(--black);;
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
	padding: 4px 10px;
	-webkit-appearance: none;
	cursor: pointer;
	vertical-align: top;

}

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .layout_admin .ui-dialog-buttonset .ui-button:hover {
	background-color: #333333;
}

button:disabled, button[disabled], input[type="button"]:disabled {
	background-color: #999999;
	cursor: default;
}

a.button {
	display: inline-block;
	padding: 1px 10px;
	margin-bottom: 5px;
}

.fancy_button, .fancy_button2 {
	display: inline-block;
	color: var(--white) !important;
	font-size: 21px;
	line-height: 50px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 0px 20px;
	position: relative;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: transparent !important;
}

@media only screen and (max-width: 767px) {

	.fancy_button, .fancy_button2 {
		font-size: 18px;
		line-hgith: 40px;
	}

}

.fancy_button.small, .fancy_button2.small {
	font-size: 16px;
	line-height: 40px;
}

.fancy_button2:before, .fancy_button2:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(78,134,186,1) 0%, rgba(40,55,146,1) 100%);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.fancy_button2.green:before {
	background: linear-gradient(to right, rgba(129,197,128,1) 0%, rgba(22,135,55,1) 100%);
}

.fancy_button2:after {
	background: linear-gradient(to right, rgba(128,171,216,1) 0%, rgba(72,88,183,1) 100%);
	opacity: 0;
}

.fancy_button2.green:after {
	background: linear-gradient(to right, rgba(157,217,166,1) 0%, rgba(42,174,80,1) 100%);
}


.fancy_button2:hover:after {
	opacity: 1;
}

.fancy_button2 span {
	position: relative;
	z-index: 5;
}

.fancy_button {
	border: 2px solid var(--white);
}

.bgcolor2 .fancy_button {
	border: 2px solid var(--yellow);
	color: var(--yellow) !important;
}

.bgcolor2 .fancy_button:hover {
	border: 2px solid var(--light-yellow);
	color: var(--light-yellow) !important;
}

.alert, .red, #card-errors {
	color: #EB0000;
}

#loading {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 10000;
	color: var(--white);
	text-align: center;
	justify-content: center;
	align-items: center;
}

.contact_form .form_fields {
	padding: 20px 20px 0px 20px;
}

.contact_form .form_fields + h2 {
	margin-top: 1em;
}

.contact_form div {
	width: 100%;
	margin-bottom: 20px;
	line-height: 1.5em;
}

.contact_form label {
	white-space: normal;
	display: inline-block;
	margin-bottom: 3px;
}

.contact_form input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']), .contact_form select, .contact_form textarea {
	width: 100%;
}

.contact_form div.other {
	display: none;
	margin-top: 5px;
	margin-bottom: 0px;
}

.contact_form select:has(> option[value="Other"]:checked) + div.other {
	display: inline-block;
}

.contact_form span.other input {
	width: 200px !important;
}

.contact_form textarea {
	width: 100%;
	height: 100px;
}

.contact_form input.button {
	width: auto;
}

.contact_form .option {
	white-space: nowrap;
}

.contact_form div.flow_columns {
	display: block;
	margin: 0px;
	-webkit-column-count: 3;
	-webkit-column-gap: 15px;
	-moz-column-count: 3;
	-moz-column-gap: 15px;
	column-count: 3;
	column-gap: 15px;
	line-height: 28px;
}

.contact_form div.flow_columns.two {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

.contact_form div.flow_columns div {
	margin: 0px;
}

.contact_form h2 {
	font-size: 24px;
	margin-bottom: 0px;
}

.StripeElement {
	background-color: var(--white);
	padding: 5px 10px;
	border: 1px solid #CCCCCC;
}

@media only screen and (min-width: 768px) {

	.contact_form .form_fields {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.contact_form div.half {
		width: calc(50% - 10px);
	}

}

/* CONTAINER CSS */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	position: relative;
}

.padding_left { padding-left: 100px; }
.padding_right { padding-right: 100px; }
.padding_top1 { padding-top: 100px; }
.padding_bottom1 { padding-bottom: 100px; }
.padding_top2 { padding-top: 50px; }
.padding_bottom2 { padding-bottom: 50px; }
.padding_top3 { padding-top: 25px; }
.padding_bottom3 { padding-bottom: 25px; }

@media only screen and (max-width: 1499px) {
	.container { max-width: 1150px; }
	.padding_left {	padding-left: 75px; }
	.padding_right { padding-right: 75px; }
	.padding_top1 { padding-top: 80px; }
	.padding_bottom1 { padding-bottom: 80px; }
	.padding_top2 { padding-top: 40px; }
	.padding_bottom2 { padding-bottom: 40px; }
	.padding_top3 { padding-top: 20px; }
	.padding_bottom3 { padding-bottom: 20px; }
}

@media only screen and (max-width: 1299px) {
	.container { max-width: 1100px; }
	.padding_left { padding-left: 50px; }
	.padding_right { padding-right: 50px; }
	.padding_top1 { padding-top: 60px; }
	.padding_bottom1 { padding-bottom: 60px; }
	.padding_top2 { padding-top: 30px; }
	.padding_bottom2 { padding-bottom: 30px; }
	.padding_top3 { padding-top: 15px; }
	.padding_bottom3 { padding-bottom: 15px; }
}

@media only screen and (max-width: 1199px) {
	.container { max-width: 1060px; }
	.padding_left { padding-left: 30px; }
	.padding_right { padding-right: 30px; }
	.padding_top1 { padding-top: 40px; }
	.padding_bottom1 { padding-bottom: 40px; }
	.padding_top2 { padding-top: 20px; }
	.padding_bottom2 { padding-bottom: 20px; }
	.padding_top3 { padding-top: 10px; }
	.padding_bottom3 { padding-bottom: 10px; }
}

@media only screen and (max-width: 599px) {
	.padding_left { padding-left: 15px; }
	.padding_right { padding-right: 15px; }
}

/* LAYOUT CSS */

header {
	position: relative;
	padding-top: 140px;
}

#skip_content {
	position: absolute;
	top: 0px;
	left: 10px;
	transform: translateY(-150%);
	background-color: var(--black);;
	color: var(--white);
	padding: 0px 10px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	outline: none;
	z-index: 500;
}

#skip_content:focus {
	transform: translateY(10px);
}

#header_inner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: none;
/*	height: 140px;*/
	z-index: 50;
}

#header_inner:before {
	display: block;
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	width: calc(100% - 371px);
	height: 140px;
	background-color: #76CBE2;
	background-repeat: no-repeat;
	background: linear-gradient(to right, #74c8e0 0%,#71c5dd 5%,#73c4df 6%,#70c4dc 6%,#72c3de 7%,#6ec2dc 9%,#70c1dc 10%,#6dc1db 10%,#6fc0db 12%,#6cc0da 12%,#6ebfda 13%,#6bbfd9 13%,#6cbdd8 16%,#68bcd6 16%,#6bbcd7 16%,#6abbd8 18%,#64b5d2 22%,#5fb0cd 25%,#61b0cf 25%,#61b0ce 25%,#5eadcc 26%,#5eadcb 27%,#57a6c5 31%,#57a6c7 32%,#52a1c2 34%,#4e9abe 39%,#4c9bbc 39%,#4d99bd 39%,#3f89b0 51%,#3e88af 52%,#367da7 59%,#347ba7 66%,#357aa4 68%,#3279a5 68%,#3474a4 73%,#3371a4 75%,#316da3 77%,#306ca0 78%,#3269a2 79%,#3067a0 81%,#2f5f9d 84%,#2f5f9f 84%,#2e5a9b 86%,#2f579c 88%,#2a4a97 92%,#2c4798 93%,#294495 94%,#2a4498 95%,#283792 100%);
}

/*
.webp #header_inner:before {
	background-image: url('../images/nav-bg.webp');
}

.no-webp #header_inner:before {
	background-image: url('../images/nav-bg.png');
}
*/

#header_inner:after {
	display: block;
	position: absolute;
	top: 0px;
	left: 371px;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 140px 55px 0 0;
	border-color: var(--white) transparent transparent transparent;
}

#header_inner .container {
	max-width: none;
}

#logo {
	position: absolute;
	top: 20px;
	left: 100px;
}

#logo img {
	width: 100%;
	max-width: 221px;
	display: block;
	position: relative;
	z-index: 50;
}

#logo #logo2 {
	display: none;
}

/*
#header_photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 44%); 
	z-index: 5;
}
*/

#header_photo img {
	display: block;
	width: 100%;
	max-width: none;
}

@media only screen and (max-width: 799px) {

	#header_photo {
		height: 200px;
		overflow: hidden;
	}

	#header_photo img {
		width: 800px;
	}

	#header_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	#header_photo.right img {
		float: right;
	}

	#header_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -200px;
	}

	#header_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -600px;
	}

}

.collapsed_temp #header_inner, .collapsed #header_inner {
	position: fixed;
	top: -70px;
	width: 100%;
	height: 70px;
	background-color: var(--white);
	z-index: 9999;
}

.collapsed #header_inner {
	top: 0px;
}

.scrollup .collapsed_temp #header_inner, .collapsed #header_inner {
	-webkit-transition: top 0.4s ease-in;
	transition: top 0.4s ease-in;
}

.collapsed_temp #header_inner:after, .collapsed #header_inner:after, .collapsed_temp #header_inner:before, .collapsed #header_inner:before {
	height: 70px;
}

.collapsed_temp #header_inner:after, .collapsed #header_inner:after {
	border-width: 70px 27.5px 0 0;
}

.collapsed_temp #logo, .collapsed #logo {
	top: 15px;
}

.collapsed_temp #logo #logo1, .collapsed #logo #logo1 {
	display: none;
}

.collapsed_temp #logo #logo2, .collapsed #logo #logo2 {
	display: block;
	width: 206px;
}

.collapsed_temp #top_nav, .collapsed #top_nav {
	display: none;
}

#content {
	position: relative;
}

footer .block_ctas, .contact_form .form_fields {
	background: linear-gradient(to right, rgba(225,218,203,1) 0%, rgba(240,238,231,1) 100%);
}

.block_ctas .container {
	max-width: 2000px;
}

.cta {
	position: relative;
}

.small .cta {
	height: 0px;
	padding-bottom: 51.724138%;
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: cover;
}

.small .cta1 {
	background-color: #5CA95D;
}

.webp .small .cta1 {
	background-image: url('../images/cta1-bg.webp');
}

.no-webp .small .cta1 {
	background-image: url('../images/cta1-bg.jpg');
}

.small .cta2 {
	background-color: #3F82AF;
}

.webp .small .cta2 {
	background-image: url('../images/cta2-bg.webp');
}

.no-webp .small .cta2 {
	background-image: url('../images/cta2-bg.jpg');
}

.small .cta2 {
	background-color: #3F82AF;
}

.webp .small .cta3 {
	background-image: url('../images/cta3-bg.webp');
}

.no-webp .small .cta3 {
	background-image: url('../images/cta3-bg.jpg');
}

.cta img {
	display: block;
	width: 100%;
	height: auto;
}

.cta a {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.large .cta a {
	background-color: rgba(0,0,0,.2);
}

.large .cta a:hover {
	background-color: transparent;
}

.large .cta a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom center;
}

.webp .large .cta1 a:before {
	background-image: url('../images/cta1-overlay.webp');
}

.no-webp .large .cta1 a:before {
	background-image: url('../images/cta1-overlay.png');
}

.webp .large .cta2 a:before {
	background-image: url('../images/cta2-overlay.webp');
}

.no-webp .large .cta2 a:before {
	background-image: url('../images/cta2-overlay.png');
}

.webp .large .cta3 a:before {
	background-image: url('../images/cta3-overlay.webp');
}

.no-webp .large .cta3 a:before {
	background-image: url('../images/cta3-overlay.png');
}

.small .cta:hover a {
	background-color: rgba(255,255,255,.2);
}

.cta a span.content {
	display: block;
	width: 100%;
	font-size: 19px;
	line-height: 23px;
	text-align: center;
	color: var(--white);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 5% 15%;
}

.large .cta a span.content {
	font-size: 21px;
	line-height: 25px;
	top: 80%;
	transform: translateY(-80%);
	top: auto;
	transform: none;
	bottom: 5%;
}

.cta a strong {
	display: block;
	margin-bottom: .5em;
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: clamp(20px, 3vw, 70px);
	font-weight: bold;
	letter-spacing: .025em;
}

.large .cta a strong {
	font-size: clamp(25px, 4vw, 90px);
}

.cta a .fancy_button {
	margin-top: 1em;
}

.large .cta a .fancy_button {
	margin-top: 3em;
}

@media only screen and (min-width: 1000px) {

	.block_ctas .container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-column-gap: 30px;
	}

}

@media only screen and (min-width: 1000px) and (max-width: 1499px) {

	.small .cta {
		padding-bottom: 60%;
	}

	.large .cta a .fancy_button {
		margin-top: 2em;
	}

}

@media only screen and (min-width: 1000px) and (max-width: 1399px) {

	.small .cta {
		padding-bottom: 65%;
	}

	.large .cta a span.content {
		font-size: 19px;
		line-height: 23px;
	}

}

@media only screen and (min-width: 1000px) and (max-width: 1249px) {

	.small .cta {
		padding-bottom: 70%;
	}

	.large .cta a .fancy_button {
		margin-top: 1em;
	}

}

@media only screen and (min-width: 1000px) and (max-width: 1099px) {

	.small .cta {
		padding-bottom: 75%;
	}

}

@media only screen and (max-width: 999px) {

	.block_ctas .container {
		max-width: 580px;
	}

	.cta {
		margin-top: 2px;
	}

	.cta:first-child {
		margin-top: 0px;
	}

	.cta a strong {
		font-size: clamp(35px, 8vw, 50px);
	}

	.large .cta a strong {
		font-size: clamp(25px, 12vw, 70px);
	}

}

@media only screen and (max-width: 449px) {

	.small .cta {
		padding-bottom: 65%;
	}

	.large .cta a span.content {
		font-size: 19px;
		line-height: 23px;
	}

	.large .cta a .fancy_button {
		margin-top: 2em;
	}

}

@media only screen and (max-width: 399px) {

	.small .cta {
		padding-bottom: 80%;
	}

	.large .cta a .fancy_button {
		margin-top: 1em;
	}

}

footer .container {
	font-size: 16px;
	text-align: center;
	padding-bottom: 20px;
}

#footer_logo {
	margin-bottom: 1em;
}

#copyright span, #copyright a {
	white-space: nowrap;
}

/* NAVIGATION CSS */

#nav ul {
	padding: 0px;
}

#main_nav li, #top_nav li, #footer_nav li {
	list-style: none;
	position: relative;
	white-space: nowrap;
	font-size: 21px;
	line-height: 1em;
	font-weight: bold;
	letter-spacing: .02em;
	text-transform: uppercase;
}

#main_nav li a, #main_nav li.active li a, #top_nav li a {
	color: var(--white);
}

#main_nav li a:hover, #main_nav li.active a {
}

#top_nav li {
	font-size: 18px;
	text-transform: none;
	font-style: italic;
}

#top_nav li a:hover, #top_nav li.active a {
	color: var(--yellow);
}

#footer_nav {
	margin-bottom: 2.5em;
}

#footer_nav li {
	font-size: 25px;
	text-transform: none;
	display: inline-block;
	margin: 0px 20px;
}

#footer_nav li a {
	color: var(--green);
}

#footer_nav li:first-child a {
	color: var(--blue);
}

#footer_nav li a:hover {
	color: var(--light-green);
}

#footer_nav li:first-child a:hover {
	color: var(--light-blue);
}

#subnav {
	background: linear-gradient(to right, rgba(225,218,203,1) 0%, rgba(240,238,231,1) 100%);
	text-align: center;
}

#content #subnav ul {
	padding: 0px;
	margin: 0px;
}

#subnav li {
	list-style: none;
	font-size: 19px;
	line-height: 1em;
	font-weight: bold;
	font-style: italic;
}

#subnav li a {
	color: var(--gray);
}

#subnav li a:hover, #subnav li.active a {
	color: var(--blue);
}

/* CONTENT BLOCK CSS */

.block {
	position: relative;
}

.block.bgcolor2 * {
	color: var(--white);
}

.block_photo {
	max-width: none;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_photo.parallax {
	min-height: 500px;
	background: transparent;
}

.block_photo img {
	width: 100%;
	display: block;
}

@media only screen and (max-width: 799px) {

	.block_photo {
		height: 400px;
		overflow: hidden;
	}

	.block_photo img {
		width: 800px;
		max-width: none;
	}

	.block_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	.block_photo.right img {
		float: right;
	}

	.block_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -200px;
	}

	.block_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -600px;
	}

}

#content .block_content_photo.overlap_top {
	margin-top: 100px;
}

.block_content_photo .container {
	max-width: 2000px;
}

#content .block_content_photo .photo img {
	width: 100%;
	display: block;
}

#content .block_content_photo.stretch .photo img {
	height: 100%;
	object-fit: cover;
}

#content .block_content_photo.overlap_top .photo {
	margin-top: -100px;
}

#content .block_content_photo .right_photo, #content .block_content_photo .left_photo {
	width: 50%;
}

#content .block_content_photo .right_photo {
	margin-left: 5%;
}

#content .block_content_photo .left_photo {
	margin-right: 5%;
}

.block_content_photo.small p {
	font-size: 21px;
	line-height: 25px;
	text-align: center;
}

@media only screen and (min-width: 1050px) {

	.block_content_photo.stretch .container {
		display: flex;
	}

	.block_content_photo.stretch.left .container, .block_content_map.stretch.right .container {
		flex-direction: row-reverse;
	}

	.block_content_map.stretch.left .container {
		flex-direction: row;
	}

	.block_content_photo.stretch .container .photo {
		flex: 1;
		margin-bottom: 0px;
	}

	.block_content_photo.stretch.large .container .photo {
		flex-basis: 55%;
		width: 55%;
	}

	.block_content_photo.stretch .content {
		display: flex;
		flex: 1;
		align-items: center;
	}

	.block_content_photo.stretch.large .content {
		flex-basis: 45%;
		width: 45%;
	}

	.block_content_photo.stretch .content_inner {
		width: 100%;
	}

	.block_content_photo.stretch.left .content_inner {

	}

}

@media only screen and (max-width: 1049px) {

	.block_content_photo.bgcolor1 {
		background: linear-gradient(to bottom, rgba(225,218,203,1) 0%, rgba(240,238,231,1) 100%) !important;
	}

	.block_content_photo.bgcolor2 {
		background: linear-gradient(to top,  rgba(49,72,155,1) 0%,rgba(59,91,166,1) 8%,rgba(69,110,176,1) 15%,rgba(71,113,178,1) 15%,rgba(70,111,177,1) 15%,rgba(104,176,212,1) 36%,rgba(112,190,220,1) 42%,rgba(119,203,227,1) 50%,rgba(120,205,228,1) 100%) !important;
	}

	.block_content_photo.large .content_inner, .block_content_photo.small .content_inner {
		padding: 30px 0px 0px 0px !important;
	}

	.block_content_map .content_inner {
		padding: 0px 0px 30px 0px !important;
	}

}

.block_photo_photo .container .photo + .photo {
	margin-top: 20px;
}

.block_photo_photo img {
	display: block;
}

@media only screen and (min-width: 768px) {

	.block_photo_photo .container {
		display: flex;
		justify-content: space-between;
	}

	.block_photo_photo .photo {
		width: calc(50% - 20px);
		margin: 0px !important;
	}

}

.block_box {
	position: relative;
	margin-bottom: 40px;
}

.block_box img {
	width: 100%;
}

@media only screen and (min-width: 768px) {

	.block_boxes .container_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.block_box {
		width: calc(50% - 20px);
	}
}

.block_slideshow {
	clear: both;
	width: 100%;
	position: relative;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_slideshow > ul {
	padding: 0px !important;
	margin: 0px !important;
	position: relative;
	width: 100%;
	height: 100%;
}

.block_slideshow .rslides li {
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	margin: 0px !important;
}

.block_slideshow .rslides li:first-child {
	display: block;
	float: left;
	opacity: 1;
}

.block_slideshow li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	float: left;
}

.block_slideshow .content {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
}

.block_slideshow .content_inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(30px, 4vw, 70px) !important;
	line-height: 1em;
	color: var(--white);
	padding: 0px 5%;
}

.block_slideshow .title {
	font-style: italic;
}

.block_slideshow .title2 {
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 1.14em;
	line-height: 1em;
	letter-spacing: .025em;
	margin-bottom: 25px;
}

.block_slideshow .rslides_tabs {
	padding: 0px;
	text-align: center;
	position: absolute;
	bottom: 1%;
	left: 0px;
	width: 100%;
	height: auto;
	z-index: 10;
}

.rslides_tabs li {
	list-style: none;
	display: inline-block;
	margin: 0px 3px;
	width: 14px;
	height: 14px;
	position: relative;
}

.rslides_tabs li a {
	display: block;
	width: 14px;
	height: 14px;
	overflow: hidden;
	text-indent: 105%;
	cursor: pointer;
}

.rslides_tabs li a:before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: "\f111";
	font-family: "Font Awesome 7 Pro";
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: var(--white);
	text-indent: 0px;
}

.rslides_tabs li.rslides_here a:before {
	font-weight: 900;
}

.rslides_nav {
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 10;
	font-size: 30px;
	line-height: 30px;
	color: var(--white);
}

.rslides_nav.next {
	left: auto;
	right: 20px;
}

/* HOME CSS */

#home_slideshow_wrapper {
	height: calc(100vh - 140px);
}

@media only screen and (max-width: 449px) {

	#home_slideshow_wrapper {
		height: calc(100vh - 120px);
	}

}

/* NEWS AND EVENTS CSS */

.block_news_events .container {
	max-width: none;
}

.block_news_events .item {
	text-align: center;
	position: relative;
}

@media only screen and (min-width: 600px) { 

	.block_news_events .container_inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 40px;
	}

}

@media only screen and (min-width: 1000px) { 

	.block_news_events .container_inner {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

@media only screen and (min-width: 1400px) { 

	.block_news_events .container_inner {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

}

/* GALLERY CSS */

.block_gallery .container {
	max-width: 2000px;
}

.gallery div {
	width: calc(25% - 7.5px);
	margin-bottom: 8px;
}

.gallery div img {
	width: 100%;
	display: block;
}

.gallery a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery a span {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.gallery a span:after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: " ";
}

.gallery a:hover span:after {
	background-color: rgba(0,0,0,.3);
}

.justified-gallery {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.justified-gallery > div {
	position: absolute;
	display: inline-block;
	overflow: hidden;
}

.justified-gallery > div > a > span > picture > img {
	position: absolute;
	top: 50%;
	left: 50%;
}

.justified-gallery.loaded div {
	transition: width .3s, height .3s, top .3s, left .3s;
	-moz-transition: width .3s, height .3s, top .3s, left .3s;
	-webkit-transition: width .3s, height .3s, top .3s, left .3s;
}

.justified-gallery.loaded img {
	transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
	-moz-transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
	-webkit-transition: width .3s, height .3s, margin-top .3s, margin-left .3s;
}

@media only screen and (max-width: 1099px) { 

	.gallery div {
		width: calc(33.333333333333333% - 6.666666666666px);
	}

}

@media only screen and (max-width: 649px) { 

	.gallery div {
		width: calc(50% - 5px);
	}

}

/* FAQ CSS */

.block_faqs .faq {
	position: relative;
}

.block_faqs div.question {
	cursor: pointer;
	padding: 5px 15px;
	margin-bottom: 10px;
	background-color: #DDDDDD;
	padding: 10px 15px 10px 15px;
}

.block_faqs div.question:before {
	float: left;
	margin-right: 10px;
	display: inline;
	content: '\f0d7';
	font-family: "Font Awesome 7 Pro";
	font-size: 20px;
	font-weight: 900;
	font-style: normal;
}

.block_faqs div.answer {
	display: none;
}

.block_faqs div.expand div.question:before {
	content: '\f0d8';
}

.block_faqs div.expand div.answer {
	display: block;
	margin-bottom: 20px;
}

/* TESTIMONIALS CSS */

.block_testimonials .testimonial {
	padding: 50px;
	background-color: #EEEEEE;
}

.block_testimonials .testimonial cite {
	display: block;
}

.block_testimonials .testimonial blockquote {
	margin: 0px;
	text-align: justify;
}

@media only screen and (min-width: 800px) {

	.block_testimonials .testimonials {
		margin-left: -50px;
	}

	.block_testimonials .testimonial {
		width: calc(50% - 50px);
		float: left;
		margin: 0px 0px 50px 50px;
	}

}

@media only screen and (min-width: 800px) and (max-width: 959px) {

	.block_testimonials .testimonials {
		margin-left: -30px;
	}

	.block_testimonials .testimonial {
		padding: 30px;
		width: calc(50% - 30px);
		margin: 0px 0px 30px 30px;
	}

}

@media only screen and (max-width: 799px) {

	.block_testimonials .testimonial {
		padding: 30px;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		margin-top: 30px;
	}

}

@media only screen and (max-width: 599px) {

	.block_testimonials .testimonial {
		padding: 15px;
		margin-top: 15px;
	}

}

.block_testimonial_carousel .testimonial {
	text-align: center;
}

/* POPUP CSS */

#popup {
	display: none;
	width: 90%;
	max-width: 650px;
	background-color: var(--white);
	padding: 50px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#popup p {
	line-height: 1.5em;
}

#popup p:last-of-type {
	margin-bottom: 0px;
}

#popup .close {
	border: 0px;
	background-color: transparent;
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
	font-size: 22px;
	line-height: 22px;
	color: var(--black);;
}

@media only screen and (max-width: 699px) {

	#popup {
		padding: 30px;
	}

}

/* AGENCIES CSS */

.block_agency_search {
	margin-bottom: 30px;
}

.block_agency_search .container {
	background-color: var(--cream);
	max-width: 1400px;
	text-align: center;
}

.block_agency_search .container_inner {
	display: flex;
	max-width: 860px;
	margin: 0px auto;
}

.block_agency_search p {
	max-width: 700px;
	margin: 0px auto 1em auto;
	line-height: 1.5em;
}

.block_agency_search .col {
	width: 37.5%;
	text-align: left;
}

.block_agency_search .col:nth-child(2) {
	width: 15%;
	font-size: 30px;
	font-weight: bold;
	padding-top: 40px;
	text-align: center;
	text-transform: uppercase;
}

.block_agency_search .select, .block_agency_search input[type='text'] {
	width: 100%;
	max-width: 350px;
	height: 50px;
	padding: 5px 20px;
	margin-bottom: 10px;
	border: 2px solid var(--gray);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	position: relative;
	background-color: var(--cream);
	font-size: 20px;
	text-align: left;
}

.block_agency_search .select {
	display: inline-block;
}

.block_agency_search .select:after {
	display: block;
	position: absolute;
	right: 20px;
	top: 5px;
	padding-left: 10px;
	content: '\f107';
	font-family: "Font Awesome 7 Pro";
	font-size: 21px;
	font-weight: 900;
	font-style: normal;
}

.block_agency_search select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0px;
	background-color: transparent;
	width: 100%;
	padding: 0px;
	font-size: 20px;
}

.block_agency_search .search_title, .block_agency_search label.title {
	display: block;
	height: 33px;
	position: relative;
	z-index: 5;
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.block_agency_search .select.expanded:after {
	content: '\f106';
}

.block_agency_search .select .options {
	position: absolute;
	top: 39px;
	left: -2px;
	width: calc(100% + 4px);
	max-width: 352px;
	max-height: 0px;
	overflow: hidden;
	padding: 0px 20px 0px 20px;
	border-left: 2px solid var(--gray);
	border-right: 2px solid var(--gray);
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background-color: var(--cream);
	z-index: 30;
	transition: all 0.4s cubic-bezier(0,1,0,1);
	line-height: 1em;
	text-align: left;
}

.block_agency_search .select.expanded .options {
	max-height: 380px;
	padding-bottom: 10px;
	transition: all 0.4s cubic-bezier(1,0,1,0);
	border-bottom: 2px solid var(--gray);
	overflow-y: scroll;
}

.block_agency_search .select label {
	font-weight: normal;
	line-height: 1.25em;
}

.block_agency_search .select input {
	margin-top: 4px;
}

.block_agency_search input::placeholder {
	color: var(--gray);
}

.block_agencies .container, .block_agencies_results .container {
	max-width: 1600px;
}

.block_agencies_results .container {
	text-align: center;
	margin-bottom: 20px;
}

.block_agencies .container {
	display: grid;
	grid-template-columns: 1fr;
	grid-column-gap: 25px;
	grid-row-gap: 25px;
}

.block_officers .container {
	max-width: 360px;
}

.agency {
	border: 2px solid var(--cream);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	position: relative;
}

.agency .logo {
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.agency .logo img, .agency .photo img {
	display: block;
	width: 100%;
}

.agency .logo.tall img {
	width: auto;
	max-width: none;
	max-height: 175px;
}

.agency .content {
	background-color: var(--cream);
	padding: 22px 30px;
	font-size: 19px;
	line-height: 23px;
}

.agency .title {
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	letter-spacing: .025em;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 8px;
	border-bottom: 2px solid var(--dark-cream);
}

/*
.agency .title:after {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0px;
	background-color: var(--dark-cream);
	width: 265px;
	height: 2px;
}
*/

.agency p {
	margin: 1em 0px 0px 0px;	
}

a.phone:before, a.website:before {
	padding-right: 6px;
	content: '\f0ac';
	font-family: "Font Awesome 7 Pro";
	font-size: 14px;
	font-weight: 900;
}

a.phone:before {
	content: '\f879';
}

@media only screen and (min-width: 700px) {

	.block_agencies .container {
		grid-template-columns: 1fr 1fr;
	}

	.block_agencies.block_officers .container {
		max-width: 700px;
	}

}

@media only screen and (min-width: 1100px) {

	.block_agencies .container {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.block_agencies.block_officers .container {
		max-width: 1060px;
	}

}

@media only screen and (min-width: 1200px) {

	.block_agencies.block_officers .container {
		max-width: 1100px;
	}

}

@media only screen and (min-width: 1300px) {

	.block_agencies.block_officers .container {
		max-width: 1150px;
	}

}

@media only screen and (min-width: 1500px) {

	.block_agencies.block_officers .container {
		max-width: 1600px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

}


.block_agency .container {
	max-width: 1600px;
}

/*
.agency_detail {
	display: flex;
	flex-direction: row-reverse;
}
*/

.agency_detail h1 {
	text-align: left;
}

.agency_detail .content {
	float: right;
	width: 65%;
	padding-left: 50px;
}

.agency_detail .sidebar {
	float: left;
	width: 35%;
	border: 2px solid var(--cream);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: var(--cream);
}

.agency_detail .logo {
	background-color: var(--white);
	padding: 30px 40px;
}

.agency_detail .logo img {
	display: block;
	margin: 0px auto;
}

.agency_detail .contact {
	padding: 30px 40px;
	font-size: 20px;
	line-height: 1.25em;
}

#content .agency_detail .social {
	padding: 0px;
	list-style: none;
	margin-left: -3px;
}

#content .agency_detail .social li {
	display: inline;
	margin-right: 5px;
	font-size: 24px;
}

#content .agency_detail .social a {
	color: var(--green);
}

#content .agency_detail .social a:hover {
	color: var(--light-green);
}

.agency_detail .contact strong {
	font-size: 22px;
}

.agency_detail .links span {
	font-size: 14px;
}

.agency_services {
	border-top: 2px solid var(--dark-cream);
	border-bottom: 2px solid var(--dark-cream);
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	font-style: italic;
	color: var(--green);
	padding: 10px 0px;
	margin-bottom: 20px;
}

.agency_services ul {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
	column-gap: 60px;
	float: left;
}

#content .agency_services li {
	margin: 0px;
}

.agency_detail h2 {
	font-size: 24px;
	color: var(--gray);
	margin-bottom: .25em;
}

/*
.agency_counties {
	line-height: 26px;
	border-bottom: 2px solid var(--dark-cream);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
*/

#content .agency_counties ul {
	list-style: none;
	padding: 0px;
}

#content .agency_counties li {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	margin: 0px;
}

.agency_counties li:after {
	content: "\00a0 / \00a0";
}

.agency_counties li:last-child:after {
	content: "";
}

.gray_box {
	border: 2px solid var(--gray);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 30px 40px;
}

.agency_offices {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 30px;
	line-height: 22px;
	margin-top: -10px;
}

.agency_offices div {
	margin-top: 30px;
}

@media only screen and (max-width: 1499px) {

	.agency_offices {
		grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (max-width: 999px) {

	.agency_detail .content, .agency_detail .sidebar {
		float: none;
		width: 100%;
		padding: 0px;
	}

	.agency_services {
		border-top: 0px;
	}

}

/* RESPONSIVE CSS */

@media only screen and (min-width: 1050px) {

	#nav_trigger {
		display: none;
	}

	#nav {
		position: absolute;
		top: 0px;
		right: 0px;
		width: 100%;
		height: auto;
	}

	#nav ul {
		position: absolute;
		top: 64px;
		right: 100px;
	}

	.collapsed_temp #nav ul, .collapsed #nav ul {
		top: 25px;
	}

	#main_nav > li {
		float: left;
		display: block;
		margin-left: 40px;
		padding-bottom: 25px;
	}

	.collapsed_temp #main_nav > li, .collapsed #main_nav > li {
		padding-bottom: 15px;
	}

	#main_nav > li a:after {
		content: " ";
		transition: all .2s;
		width: 50px;
		height: 2px;
		position: absolute;
		bottom: 0px;
		left: calc(50% - 25px);
	}

	#main_nav > li a:hover:after, #main_nav > li.active a:after {
		background-color: var(--yellow);
	}

	#main_nav li > ul {
		position: absolute;
		top: 40px;
		left: 50%;
		right: auto !important;
		transform: translateX(-50%);
		padding: 25px 40px;
		z-index: 20;
		visibility: hidden;
		opacity: 0;
		transition: .2s .2s;
		background-color: var(--white);
	}

	.collapsed_temp #main_nav li > ul, .collapsed #main_nav li > ul {
		top: 34px;
	}

	#main_nav li:hover > ul, #main_nav li.hover > ul {
		visibility: visible;
		transition-delay: 0s;
		opacity: 1;
	}

	#main_nav li > ul::after {
		content: '';
		display: block;
		position: absolute;
		left: calc(50% - 6px);
		bottom: 100%;
		width: 0px;
		height: 0px;
		border-bottom: 16px solid var(--white);
		border-top: 6px solid transparent;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
	}

	#main_nav li li {
		float: none;
		margin: 0px;
		padding: 5px 0px;
		font-size: 19px;
		font-style: italic;
		text-transform: none;
		text-align: center;
		border-top: 2px solid #D9F0E2;
	}

	#main_nav li li:first-child {
		border-top: 0px;
	}

	#main_nav li li a, #main_nav li.active li a {
		display: block;
		padding: 7px 0px;
		color: var(--blue);
	}

	#main_nav li li a:hover, #main_nav li.active li a:hover {
		color: var(--green);
	}

	#main_nav li li a:after {
		display: none;
	}

	#nav #top_nav {
		top: 12px;
	}

	#content #subnav ul {
		padding: 5px 0px;
	}

	#subnav li {
		display: inline;
		margin: 0px 15px;
		white-space: nowrap;
	}

	#section_title {
		display: none;
	}

}

@media only screen and (max-width: 1499px) { 

	#header_inner:before {
		width: calc(100% - 346px);
	}

	#header_inner:after {
		left: 346px;
	}

	#logo {
		left: 75px;
	}

	#nav ul {
		right: 75px;
	}

}

@media only screen and (max-width: 1349px) { 

	#main_nav > li {
		margin-left: 35px;
	}

}

@media only screen and (max-width: 1299px) { 

	#header_inner:before {
		width: calc(100% - 321px);
	}

	#header_inner:after {
		left: 321px;
	}

	#logo {
		left: 50px;
	}

	#nav ul {
		right: 50px;
	}

}

@media only screen and (max-width: 1249px) { 

	#main_nav > li {
		font-size: 20px;
		margin-left: 30px;
	}

}

@media only screen and (max-width: 1199px) { 

	#header_inner:before {
		width: calc(100% - 281px);
	}

	#header_inner:after {
		left: 281px;
	}

	#logo {
		left: 30px;
	}

	#nav ul {
		right: 30px;
	}

	#main_nav > li {
		font-size: 19px;
		margin-left: 25px;
	}

}

@media only screen and (max-width: 1049px) {

	.mobile_nav body {
		overflow: hidden;
	}

	.mobile_nav #header_inner {
		height: 100vh;
		overflow-y: scroll;
		position: fixed;
	}

	#nav_trigger {
		border: 0px;
		background-color: transparent;
		width: 30px;
		padding: 0px;
		position: absolute;
		top: 15px;
		right: 30px;
		z-index: 100;
		cursor: pointer;
	}

	#nav_trigger:after, #nav_trigger:before, #nav_trigger span {
		content: '';
		display: block;
		background-color: var(--white);
		border-radius: 2px;
		height: 5px;
		margin: 5px 0px;
		transition: all .2s ease-in-out;
	}

	.mobile_nav #nav_trigger:before {
		transform: translateY(10px) rotate(45deg);
	}

	.mobile_nav #nav_trigger:after {
		transform: translateY(-10px) rotate(-45deg);
	}

	.mobile_nav #nav_trigger span {
		display: block;
		transform: scale(0);
	}

	#nav {
		width: 0px;
		height: 100vh;
		position: absolute;
		right: 0px;
		top: 0px;
		background-color: #76CBE2;
		background: linear-gradient(to right, #74c8e0 0%,#71c5dd 5%,#73c4df 6%,#70c4dc 6%,#72c3de 7%,#6ec2dc 9%,#70c1dc 10%,#6dc1db 10%,#6fc0db 12%,#6cc0da 12%,#6ebfda 13%,#6bbfd9 13%,#6cbdd8 16%,#68bcd6 16%,#6bbcd7 16%,#6abbd8 18%,#64b5d2 22%,#5fb0cd 25%,#61b0cf 25%,#61b0ce 25%,#5eadcc 26%,#5eadcb 27%,#57a6c5 31%,#57a6c7 32%,#52a1c2 34%,#4e9abe 39%,#4c9bbc 39%,#4d99bd 39%,#3f89b0 51%,#3e88af 52%,#367da7 59%,#347ba7 66%,#357aa4 68%,#3279a5 68%,#3474a4 73%,#3371a4 75%,#316da3 77%,#306ca0 78%,#3269a2 79%,#3067a0 81%,#2f5f9d 84%,#2f5f9f 84%,#2e5a9b 86%,#2f579c 88%,#2a4a97 92%,#2c4798 93%,#294495 94%,#2a4498 95%,#283792 100%);
		padding-top: 40px;
		padding-bottom: 80px;
		z-index: 50;
		overflow-x: hidden;
		overflow-y: scroll;
		transition: width 0.4s ease;
	}

	.mobile_nav #nav {
		width: 100%;
	}

	#nav .container {
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100px 76px;
		padding-top: 100px;
	}

	.webp #nav .container {
		background-image: url('../images/california-association-of-adoption-agencies-icon-white.webp');
	}

	.no-webp #nav .container {
		background-image: url('../images/california-association-of-adoption-agencies-icon-white.png');
	}

	#main_nav li, #top_nav li{
		display: block;
		font-size: 24px;
		line-height: 1em;
		text-align: center;
		white-space: normal;
		margin: 0px;
	}

	#main_nav li a, #top_nav li a {
		display: block;
		padding: 10px 15px;
	}

	#main_nav li ul {
		padding: 0px;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#main_nav li.expanded > ul, #main_nav li.hover > ul {
		padding-bottom: 10px;
		max-height: 499px;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#main_nav li li {
		font-size: 16px;
	}

	#main_nav li li a {
		padding: 6px 30px;
	}

	#top_nav {
		margin-top: 1em;
	}

	#top_nav li {
		font-size: 20px;
	}

	#subnav {
		height: 42px;
		position: relative;
	}

	#section_title {
		padding: 0px 15px;
		font-size: 16px;
		line-height: 38px;
		font-weight: bold;
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	#section_title:after {
		padding-left: 10px;
		content: '\f0d7';
		font-family: "Font Awesome 7 Pro";
		font-size: 20px;
		font-weight: 900;
		font-style: normal;
	}

	#subnav.expanded #section_title:after {
		content: '\f0d8';
	}

	#content #subnav ul {
		position: absolute;
		top: 40px;
		left: 0px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		background-color: #DDDDDD;
		padding: 0px;
		z-index: 30;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#content #subnav.expanded ul {
		max-height: 499px;
		overflow: auto;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#subnav li {
		margin: 0px;
		display: block;
		line-height: 1.1em;
	}

	#subnav li:last-child {
		padding-bottom: 10px;
	}

	#subnav li a {
		display: block;
		padding: 10px 15px;
	}

}

@media only screen and (max-width: 599px) { 

	#header_inner:before {
		width: calc(100% - 266px);
	}

	#header_inner:after {
		left: 266px;
	}

	#logo {
		left: 15px;
	}

	#nav_trigger {
		right: 15px;
	}

}

@media only screen and (max-width: 449px) {

	header {
		padding-top: 120px;
	}

	#header_inner:before {
		width: calc(100% - 200px);
		height: 120px;
	}

	#header_inner:after {
		left: 200px;
		border-width: 120px 47px 0 0;
	}

	#logo #logo1 {
		width: auto;
		height: 80px;
	}

	.collapsed_temp #logo, .collapsed #logo {
		top: 20px;
	}

	.collapsed_temp #logo #logo2, .collapsed #logo #logo2 {
		width: auto;
		height: 30px;
	}

}

