/* FONTS
----------------------------------------------- */
@font-face {
	font-family: 'icomoon';
	src: url('../fonts/icomoon.eot?h3lmq7');
	src: url('../fonts/icomoon.eot?h3lmq7#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?h3lmq7') format('truetype'), url('../fonts/icomoon.woff?h3lmq7') format('woff'), url('../fonts/icomoon.svg?h3lmq7#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-search {
	display: inline-block;
	transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
}

/* GENERAL STYLES
----------------------------------------------- */

html, body {
	font-size: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

body {
	background-color: rgba(41, 65, 44, 1.0);
	background-repeat: repeat-x;
	color: rgba(42, 51, 44, 1.0);
	font-style: normal;
	font-weight: 300;
	font-size: 1em;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
	position: relative;
	letter-spacing: 0.25px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3em;
	font-weight: 700;
}

b, strong {
	font-weight: 700;
}

samp {
	display: none;
}

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

img {
	-webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
	animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
	background: transparent;
	border: 0 solid rgba(0, 0, 0, 0.12);
	border-radius: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(181, 159, 121, 1.0);
	margin-top: 2em;
	margin-bottom: 0;
	padding: 0;
}

p {
	color: #423723;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	line-height: 1.6em;
}

div[role='main'] {
	min-height: 700px;
}

/* Button styles - rounded, large, outline */
a.button, button {
	background-color: rgba(0, 132, 62, 1.0);
	border: 2px solid rgba(0, 132, 62, 1.0);
	border-radius: 5px;
	color: rgba(255, 255, 255, 1.0);
	display: inline-block;
	font-size: 15px;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 700;
	padding: 0.7em 3em 0.7em 3em;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.25em;
	transition: all 0.3s ease 0s;
	font-style: normal;
}

	a.button:hover, button:hover {
		border: 2px solid rgba(7, 43, 11, 1.0);
		background-color: rgba(7, 43, 11, 1.0);
	}

	a.button::after {
		content: ' \00bb';
	}

	a.button.large, button.large {
		font-size: 1.2em;
	}

	a.button.outline, button.outline {
		background-color: transparent;
		border: 2px solid rgba(66, 55, 35, 1.0);
		color: rgba(66, 55, 35, 1.0);
		transition: all 0.3s ease 0s;
	}

		a.button.outline:hover, button.outline:hover {
			border: 2px solid rgba(66, 55, 35, 1.0);
			background-color: rgba(66, 55, 35, 1.0);
			color: rgba(255, 255, 255, 1.0);
		}

/* More links - white */
a.more-link:link, a.more-link:visited {
	color: rgba(255, 255, 255, 1.0);
	text-transform: uppercase;
	font-weight: 700;
	transition: all 0.3s ease 0s;
}

a.more-link:hover, a.more-link:active, a.more-link:focus {
	color: rgba(216, 193, 152, 1.0);
}

a.more-link::after {
	content: ' \00bb';
}

a.green-link:link, a.green-link:visited {
	font-family: 'Open Sans', sans-serif;
	color: rgba(0, 132, 62, 1.0);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s ease 0s;
	font-style: normal;
	text-decoration: none;
}

a.green-link:hover, a.green-link:active, a.green-link:focus {
	color: rgba(41, 65, 44, 1.0);
}

a.green-link::after {
	content: ' \00bb';
}

span.lightbrown {
	color: #786440;
}

span.darkbrown {
	color: #423723;
}

span.white {
	color: #FFFFFF;
}

span.strong {
	font-weight: 700;
}

span.white > p {
	color: #FFFFFF;
	margin: 0 auto;
}


/* SEARCH BOX
----------------------------------------------- */
section.search-box {
	background-color: rgba(41, 65, 44, .95);
	position: fixed;
	z-index: 150;
	width: 100%;
	height: 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.3s linear 0s;
	-webkit-transition: opacity 0.3s linear 0s;
}

	section.search-box.open {
		display: block;
	}

.search-box form {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	border-bottom: 1px solid rgb(133, 133, 133);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
}

.search-box input {
	width: calc(100% - 50px);
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: rgb(248, 246, 242);
	font-size: 28px;
	line-height: 1;
	background: transparent;
	border: 0;
}

.search-box button {
	background-color: transparent;
	color: rgb(248, 246, 242);
	padding: 0;
	font-size: 40px;
	border: 0;
	line-height: 0;
}

.search-box form input[type='submit'] {
	color: rgb(248, 246, 242);
}

.search-box form input[type='button'] {
	color: rgb(255, 255, 255);
}

.search-box .close {
	position: absolute;
	top: 1.5em;
	left: 1.5em;
	color: rgb(255,255,255);
	font-size: 36px;
}

.search-box ::-webkit-input-placeholder {
	color: rgb(248, 246, 242);
	opacity: 1;
}

.search-box :-moz-placeholder {
	color: rgb(248, 246, 242);
	opacity: 1;
}

.search-box ::-moz-placeholder {
	color: rgb(248, 246, 242);
	opacity: 1;
}

.search-box :-ms-input-placeholder {
	color: rgb(248, 246, 242);
	opacity: 1;
}

.ezsearch-summary p {
	font-family: 'Alegreya', serif;
	font-weight: 400;
	font-size: 28px;
	margin-left: 15px;
}

.ezsearch-result a {
	color: rgba(0, 132, 62, 1.0);
}

	.ezsearch-result a:hover {
		color: rgba(41, 65, 44, 1.0);
	}

.ezsearch-result:not(:first-child) {
	margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid rgb(181, 159, 121);
}


/* BREADCRUMB
----------------------------------------------- */
.breadcrumb {
	background-color: rgba(255,255,255,1.0);
}

.partner .breadcrumb {
	background-color: #F8F4ED;
}

.breadcrumb a:link, .breadcrumb a:visited, .breadcrumb a:focus {
	color: rgba(66, 55, 35, 1.0);
}

.breadcrumb ol {
	padding: 0 0 0 0;
	text-align: left;
}

.breadcrumb li {
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding-right: 3px;
	margin-left: 0;
}

	.breadcrumb li:not(:first-child)::before {
		content: "/";
		padding-right: 5px;
	}

	.breadcrumb li:last-child a {
		color: rgba( 0, 132, 62, 1.0);
	}

/* HEADER & DESKTOP NAVIGATION MENU
----------------------------------------------- */
.navigation-top {
	background-color: rgba(66, 55, 35, 1.0);
}

.top-banner img {
	text-align: left;
	display: inline-block;
	margin: 1.3em auto;
	max-width: 95%;
}

.nav-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #423723;
}

.nav-menu li {
	float: left;
}

	.nav-menu li a {
		display: block;
		color: #FFFFFF;
		font-family: 'Open Sans', sans-serif;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 15px;
		letter-spacing: .05em;
		text-align: center;
		padding: 10px 20px 10px 20px;
		text-decoration: none;
		border-top: 5px solid rgba(66, 55, 35, 1.0);
		border-bottom: 5px solid transparent;
	}

.nav-menu a.desktop-speak {
	color: rgba(188, 178, 160, 1.0);
	margin-left: 6em;
	border-top: 5px solid rgba(118, 99, 63, 1.0);
}

	.nav-menu a.desktop-speak:link, .nav-menu a.desktop-speak:visited {
		background-color: rgba(118, 99, 63, 1.0);
		padding-left: 20px;
		padding-right: 20px;
		font-family: 'Alegreya', serif;
		font-style: italic;
		font-weight: 700;
		color: rgba(188, 178, 160, 1.0);
		font-weight: 400;
		font-size: 16px;
		text-transform: none;
	}

	.nav-menu a.desktop-speak:hover, .nav-menu a.desktop-speak:focus, .nav-menu a.desktop-speak:active {
		background-color: rgba(118, 99, 63, 1.0);
		border-top: 5px solid transparent;
	}

	.nav-menu a.desktop-speak.open {
		background-color: rgba(118, 99, 63, 1.0);
	}

.nav-menu ul a:link, .nav-menu ul a:visited {
	background-color: rgba(66, 55, 35, 1.0);
	color: rgba(255, 255, 255, 1.0);
}

.nav-menu ul a:hover, .nav-menu ul a:focus, .nav-menu ul a:active {
	background-color: rgba(43, 36, 23, 1.0);
	border-top: 5px solid transparent;
}

.nav-menu ul a:focus, .nav-menu ul a:active, .nav-menu ul a.active {
	background-color: rgba(43, 36, 23, 1.0);
	border-top: 5px solid rgba(0, 132, 62, 1.0);
}

.nav-menu .search-desktop a:link, .nav-menu .search-desktop a:visited {
	padding: 8px 20px 7px 20px;
}

.nav-menu-sitemap {
	padding: 20px 0 40px 0;
}

	.nav-menu-sitemap nav > ul, .nav-menu-sitemap nav > ol {
		padding-left: 0;
	}
	/* .nav-menu-sitemap li::before { content:"\2022"; } */
	.nav-menu-sitemap a:link, .nav-menu-sitemap a:visited {
		font-family: 'Alegreya', serif;
		font-style: italic;
		font-weight: 700;
		color: rgba(0, 132, 62, 1.0);
		font-weight: 400;
		font-size: 16px;
		text-transform: none;
		font-size: 20px;
	}

	.nav-menu-sitemap a:hover, .nav-menu-sitemap a:focus, .nav-menu-sitemap a:active {
		color: rgba(41, 65, 44, 1.0);
	}

.search-desktop {
	background-color: rgba(66, 55, 35, 1.0);
	z-index: 100;
}

	.search-desktop div {
		float: left;
		border: 1px solid rgba(233, 233, 233, 1.0);
		margin: 0;
		opacity: 0;
		width: 0;
	}

	.search-desktop label, .search-error-page label {
		display: none;
	}

	.search-desktop input[type="text"] {
		padding: 0;
		width: 0;
		float: left;
		border: none;
	}

	.search-desktop input[type="submit"], .search-error-page button, .search-error-page input[type="submit"] {
		background-color: rgba(66, 55, 35, 1.0);
		border: 0;
		padding: 1em;
		text-transform: uppercase;
		outline: 0;
		position: relative;
		z-index: 100;
	}

	.search-desktop:hover {
		background-color: rgba(43, 36, 23, 1.0);
	}

	.search-desktop input[type="submit"]:hover, .search-error-page input[type="submit"]:hover {
		background-color: rgba(43, 36, 23, 1.0);
	}

	.search-desktop .search {
		font-size: 24px;
		margin-top: 4px;
	}

	.search-desktop.open div {
		opacity: 1;
		width: 250px;
	}

	.search-desktop.open input[type="text"] {
		width: 100%;
	}

.icon-search:before {
	content: "\e8b6";
}

.mobile-menu, .mobile-search {
	display: none;
}


/* FOOTER
----------------------------------------------- */

section.footer {
	background-color: rgba(41, 65, 44, 1.0);
	color: rgba(255, 255, 255, 1.0);
	display: block;
	padding-top: 1em;
	padding-bottom: 1em;
}

.nav-footer ul {
	padding-left: 0;
	list-style: none;
	text-align: center;
	padding: 0 0 0 0;
}

.nav-footer li {
	display: inline-block;
	margin: 0 0.75em;
	font-family: 'Alegreya', serif;
	font-weight: 400;
	font-size: 16px;
}

	.nav-footer li:not(:last-child) {
		border-right: 1px solid rgba(255, 255, 255, 1.00);
		line-height: 1;
	}

	.nav-footer li a {
		padding-right: 1.6em;
	}

.nav-footer ul a:link, .nav-footer ul a:visited {
	background-color: rgba(41, 65, 44, 1.0);
	color: rgba(255, 255, 255, 1.0);
}

.nav-footer ul a:hover, .nav-footer ul a:focus, .nav-footer ul a:active {
	background-color: rgba(41, 65, 44, 1.0);
	color: rgba(216, 193, 152, 1.0);
}

.footer p {
	font-family: 'Alegreya', serif;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: rgba(255, 255, 255, 1.0);
}

img.social {
	font-size: 1.5em;
	color: rgba(255, 255, 255, 1.0);
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 30px;
	height: 30px;
}

ul.social {
	margin: 0
}

/* Pagination
----------------------------------------------- */

ul.page-numbers {
	text-align: center;
	list-style-type: none;
}

.page-numbers li {
	display: inline-block;
}

	.page-numbers li + li {
		margin-left: 20px;
	}

.page-numbers a {
	color: white;
	font-size: 18px;
}

	.page-numbers a.current {
		text-decoration: underline;
	}


/* HOMEPAGE CONTENT
----------------------------------------------- */
.top-banner-wrapper {
	position: relative;
}

	.top-banner-wrapper .top-banner-scroll {
		background-color: #2a200f;
		padding: 1em 0;
		position: static;
		top: 372px;
		height: 78px;
		width: 100%;
		z-index: 95;
	}

	.top-banner-wrapper .top-banner.hidden {
		opacity: 0;
		z-index: 90;
	}

	.top-banner-wrapper.fixed {
		padding-top: 48px;
	}

		.top-banner-wrapper.fixed .top-banner-scroll {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			z-index: 95;
		}

		.top-banner-wrapper.fixed .navigation-top {
			position: fixed;
			top: 78px;
			left: 0;
			width: 100%;
			z-index: 95;
		}

section.top-banner {
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 450px;
	position: relative;
	z-index: 100;
	transition: opacity 0.3s linear 0s;
	-webkit-transition: opacity 0.3s linear 0s;
}

.top-banner h1 {
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-weight: 400;
	color: #ffffff;
	font-size: 55px;
	line-height: 1.2em;
	margin-top: .5em;
}

.top-banner + .top-banner-scroll {
	position: absolute;
}

.special {
	padding-top: 1em;
	padding-bottom: 3em;
	text-align: center;
	background-image: url(../images/leaf-pattern.png);
	background-position: center;
	background-repeat: repeat-x;
	background-size: cover;
	min-height: 200px;
	position: relative;
	background-color: #ffffff;
}

	.special h2, .special p {
		font-family: 'Alegreya', serif;
		font-style: italic;
		color: rgba(66, 55, 35, 1.0);
		font-weight: 400;
		font-size: 30px;
		line-height: 1.2em;
		margin-top: 1em;
		text-align: center;
	}

	.special h4 {
		font-family: 'Alegreya', serif;
		font-style: italic;
		color: rgba(66, 55, 35, 1.0);
		font-weight: 400;
		font-size: 18px;
		line-height: 1.2em;
		margin-top: -.5em;
		text-align: center;
	}

	.special p {
		color: #786440;
	}


.double-box-text .container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.double-box-text .column.first {
	padding: 20px 40px;
	text-align: center;
	position: relative;
	max-width: 50%;
	color: rgba(239, 230, 215, 1.0);
	background-color: rgba(239, 230, 215, 1.0);
}

.double-box-text .column.second {
	padding: 20px 40px;
	text-align: center;
	position: relative;
	max-width: 50%;
	color: rgba(233, 222, 204, 1.0);
	background-color: rgba(233, 222, 204, 1.0);
}

.double-box-text a:link, .double-box-text a:visited {
	max-width: 350px;
}

.double-box-text a:hover, .double-box-text a:focus, .double-box-text a:active {
	color: rgba(255, 255, 255, 1.0);
}

.double-box-text h3 {
	font-family: 'Alegreya', serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	margin: 0;
	padding-top: 2em;
	color: rgba(42, 32, 15, 1.0);
	font-size: 22px;
}

.double-box-text h4 {
	font-family: 'Alegreya', serif;
	font-style: italic;
	margin-top: 0.25em;
	font-weight: 400;
	color: rgba(42, 32, 15, 1.0);
	font-size: 20px;
}

.double-box-text p {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6em;
	padding-bottom: 1em;
	color: rgba(66, 55, 35, 1.0);
	padding-left: 2em;
	padding-right: 2em;
	padding-left: 5%;
	padding-right: 5%;
}

.column.first a {
	margin-top: 1.6em;
}


section.photo-quote > .container {
	padding-left: 0;
	padding-right: 0;
}

.photo-quote {
	background-color: rgba(41, 65, 44, 1.0);
}

	.photo-quote .container {
		max-width: none;
	}

	.photo-quote .column.third {
		background-image: url(../images/photo-quote.jpg);
		background-repeat: no-repeat;
		min-height: 200px;
	}

	.photo-quote .column.two-thirds {
		text-align: left;
		background-image: url(../images/leaf-pattern-tr.png);
		background-position: center;
		background-repeat: repeat-x;
		background-size: cover;
		min-height: 200px;
		position: relative;
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-size: 18px;
		text-transform: none;
		margin: 0;
		padding: 1.4em 2em 0 2em;
		color: rgba(255, 255, 255, 1.0);
	}

	.photo-quote h3 {
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-style: normal;
		color: rgba(255, 255, 255, 1.0);
		font-size: 24px;
	}

	.photo-quote p {
		font-weight: 400;
		font-size: 13px;
		color: rgba(255, 255, 255, 1.0);
		line-height: 0.5em;
	}


.recent-news-heading {
	background-color: rgba(66, 55, 35, 1.0);
	padding-top: 1em;
	margin-top: 0.15em;
}

	.recent-news-heading h3 {
		display: inline-block;
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-size: 40px;
		color: rgba(255, 255, 255, 1.0);
		margin-bottom: 0.2em;
	}

	.recent-news-heading .more-link {
		display: inline-block;
		margin-left: 1.5em;
	}

.recent-news {
	background-color: rgba(66, 55, 35, 1.0);
	padding-bottom: 3em;
}

	.recent-news h3 {
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-size: 16px;
		font-style: italic;
		color: rgba(216, 193, 152, 1.0);
		margin-bottom: 10px;
	}

	.recent-news h4 {
		font-family: 'Alegreya SC', serif;
		font-weight: 400;
		font-size: 22px;
		color: rgba(255, 255, 255, 1.0);
		margin: 0 0;
	}

	.recent-news p {
		color: rgba(216, 193, 152, 1.0);
		font-size: .9em;
		font-weight: 400;
		margin: 0.8em 0 0 0;
	}

	.recent-news .column.third {
		padding-right: 3em;
		padding-bottom: 2em;
	}

.full-promo-area {
}

	.full-promo-area.desktop {
		display: block;
	}

	.full-promo-area.mobile {
		display: none;
	}

	.full-promo-area img {
		width: 100%;
	}


.stay-updated {
	background-color: rgba(239, 230, 215, 1.0);
	background-image: url(../images/leaf-pattern-lt.png);
	background-position: center;
	background-repeat: repeat-x;
	background-size: cover;
	min-height: 40px;
}

	.stay-updated h3 {
		font-family: 'Alegreya SC', serif;
		font-weight: 400;
		font-size: 22px;
		margin-bottom: 0;
	}

	.stay-updated h4 {
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-size: 16px;
		font-style: italic;
		margin-top: 0;
	}


/* SECONDARY PAGES
----------------------------------------------- */

/* General */

header.sub {
	position: fixed;
	width: 100%;
	z-index: 999;
}

	header.sub + [role="main"] {
		padding-top: 136px;
	}

.top-banner-sub {
	background-size: cover;
	background-position: 50% 25%;
	background-color: rgba(41, 65, 44, 1.0);
}

	.top-banner-sub.alt {
		background-color: rgba(41, 65, 44, 1.0);
	}

	.top-banner-sub h1 {
		font-family: 'Alegreya', serif;
		font-style: italic;
		font-weight: 400;
		color: #ffffff;
		font-size: 55px;
		line-height: 1em;
		margin-top: 1.2em;
		text-shadow: 0 0 0.7em #000000;
		text-align: center;
		min-height: 100px;
	}

	.top-banner-sub.alt h1 {
		line-height: 1.2em;
		margin-bottom: 0;
		text-shadow: 0 0 0 #000000;
	}

.detail-page .body .column.full {
	padding-bottom: 40px;
}

.detail-page h1 {
	font-family: 'Alegreya', serif;
	color: rgba( 0, 132, 62, 1.0);
	font-weight: 400;
	font-size: 38px;
	font-style: italic;
	margin-top: 0;
	margin-bottom: 0;
}

.detail-page h2 {
	line-height: 1.4em;
}

.detail-page h1.dark {
	color: rgba(42, 51, 44, 1.0);
	text-align: center;
}

.detail-page p {
	line-height: 1.6em;
}

.detail-page .body .column.half {
	padding-top: 20px;
	padding-bottom: 0;
}

	.detail-page .body .column.half.link {
		padding-top: 0;
		padding-bottom: 40px;
		margin-top: -10px;
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}

.special.dark {
	padding-top: 1em;
	padding-bottom: 3em;
	text-align: center;
	background-image: url(../images/leaf-pattern-td.png);
	background-color: rgba(41, 65, 44, 1.0);
}

	.special.dark.noimg h2 {
		margin-top: -20px;
	}

.special a.button {
	margin-top: 1em;
}

.detail-page ul {
	list-style: none;
}

	.detail-page ul li::before {
		content: "\2022";
		color: #00843e;
		padding-right: 3px;
	}

.detail-page li {
	font-size: 16px;
	font-weight: 400;
}

.listing-page h4 {
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0;
}

.listing-page h2 {
	margin-top: 5px;
	margin-bottom: 0;
}

.listing-page p {
	font-size: 18px;
	line-height: 1.6em;
}

.listing-page .ezsearch-form {
	display: none;
}

.ezsearch-pager {
	text-align: center;
	padding-bottom: 1em;
	font-weight: 700;
}

	.ezsearch-pager span {
		font-weight: 700;
	}

	.ezsearch-pager a:link, .ezsearch-pager a:visited {
		color: rgba( 181, 159, 121, 1.0);
		padding-left: 3px;
		font-weight: 700;
	}

	.ezsearch-pager a:hover, .ezsearch-pager a:focus, .ezsearch-pager a:active {
		color: rgba( 0, 110, 52, 1.0);
	}

.full-bg {
	background-color: rgba( 248, 244, 237, 1.0);
}

	.full-bg h1 {
		font-family: 'Alegreya', serif;
		font-weight: 400;
		font-size: 28px;
		margin-left: 15px;
	}

.detail-page {
	background-color: rgba(255,255,255,1.0);
}

.testimonials {
	background-color: rgba(255,255,255,1.0);
}

.listing-page {
	background-color: rgba(255,255,255,1.0);
}

.ezsearch-pager {
	background-color: rgba(255,255,255,1.0);
}

.contact {
	background-color: rgba(255,255,255,1.0);
}

.nav-menu-sitemap {
	background-color: rgba(255,255,255,1.0);
}

/* Attorney */
.attorneys {
	background-color: rgba(255,255,255,1.0);
	padding-bottom: 40px;
}

	.attorneys .body .column.third {
		padding-top: 0;
		margin-bottom: 4em;
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}

		.attorneys .body .column.third p {
			margin: .5em 0 0;
		}

		.attorneys .body .column.third em {
			line-height: 1.2;
			display: block;
		}

/* Attorney Detail */

.detail-page .partner .column.third {
	text-align: left;
	position: relative;
	max-width: 33%;
	margin-top: 3em;
	margin-bottom: 3em;
}

.detail-page .partner .column.three-fourths {
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 380px;
	position: relative;
	max-width: 66%;
}

.detail-page .partner.banner {
	background-color: #F8F4ED;
	background-image: url('../images/attorney-hero-background.jpg');
	background-size: cover;
}

	.detail-page .partner.banner .column span {
		position: relative;
		display: block;
		height: 427px;
		background-position: center;
		background-repeat: no-repeat;
	}

.detail-page .partner h2 {
	margin-top: 0;
	margin-bottom: 15px;
}

.detail-page .partner p {
	line-height: 10px;
	margin-top: 0;
}

.detail-page .bio .column.full {
	padding-top: 25px;
	padding-bottom: 25px;
}

.detail-page .qualifications .column.full.last {
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 20px;
	padding-right: 20px;
	border-top: 1px solid #dcceb6; /*background-color: rgba( 248, 244, 237, 1.0);*/
}

.detail-page .qualifications { /*background-color: rgba( 248, 244, 237, 1.0);*/
}

	.detail-page .qualifications h2 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.detail-page .qualifications ul {
		list-style: none;
	}

	.detail-page .qualifications li::before {
		content: "\2022";
		color: #00843e;
		padding-right: 3px;
	}

	.detail-page .qualifications li {
		font-size: 16px;
		font-weight: 400;
	}

	.detail-page .qualifications p {
		font-size: 14px;
		font-weight: 400;
		line-height: 0.5em;
		padding-left: 20px;
	}

.detail-page .partner .column.full.link {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

	.detail-page .partner .column.full.link p {
		line-height: normal;
		margin-top: 1em;
	}

/* About Us */

.news-story hr {
	padding-top: .8em;
}

/* Testimonials */


/* QUOTE WITHOUT A READ MORE LINK */
/*
.testimonials h4.quote {
	font-size: 17px;
	padding-bottom: 0;
	margin-bottom: -15px;
	margin-top: 0;
}

.testimonials .client-quote-basic {
	line-height: 1.3em;
}

	.testimonials .client-quote-basic p {
		color: rgba(120, 100, 64, 1.0)
	}

		.testimonials .client-quote-basic p strong {
			color: rgba(66, 55, 35, 1.0)
		}

		.testimonials .client-quote-basic p.quote-credit {
			display: block;
			font-family: 'Open Sans', sans-serif;
			color: rgba(41, 32, 15, 1.0);
			font-style: normal;
			font-size: 12px;
		}
		*/
/* FORMS
----------------------------------------------- */

.sign-up {
	font-weight: 400;
	margin: 1.4em 2em 0.4em 2em;
	display: block;
	cursor: pointer;
}

	.sign-up input[type='submit'] {
		background-color: rgba(0, 132, 62, 1.0);
		border: 1px solid rgba(0, 132, 62, 1.0);
		border-radius: 5px;
		color: rgba(255, 255, 255, 1.0);
		display: inline-block;
		font-size: 14px;
		font-family: "Open Sans", Helvetica, Arial, sans-serif;
		font-weight: 700;
		padding: 1em 2em 1em 2em;
		text-transform: uppercase;
		letter-spacing: 1px;
		line-height: 1.25em;
		margin-left: 0.5em;
		transition: all 0.3s ease 0s;
	}

		.sign-up input[type='submit']:hover {
			border: 1px solid rgba(41, 65, 44, 1.0);
			background-color: rgba(41, 65, 44, 1.0);
		}

	.sign-up input[type='text'], .sign-up input[type='email'] {
		padding: 1em 2em 1em 1em;
		border: 1px solid rgba(99, 99, 99, 1.0);
		border-radius: 5px;
		margin-left: 0.5em;
		margin-bottom: 1em;
		width: 200px;
		font-size: 14px;
		font-family: "Open Sans", Helvetica, Arial, sans-serif;
		font-weight: 400;
		line-height: 1.25em;
	}

	.sign-up select {
		border: 1px solid rgba(99, 99, 99, 1.0);
		width: 200px;
	}

	.sign-up label {
		display: none;
	}

	.sign-up .mc-field-group, .sign-up .clear {
		display: inline-block;
	}

	.sign-up input.input-validation-error {
		border: 1px solid rgba(255,204,204,1);
	}

	.sign-up span.field-validation-error {
		color: rgb(255, 0, 0);
		display: inline-block;
		font-weight: 700;
		margin-left: 0.5em;
		position: absolute;
		top: -4px;
	}

.contact {
	text-align: center;
}

.contact h1 {
	text-align: center;
	font-family: 'Alegreya', serif;
	font-size: 40px;
	font-weight: 400;
	color: rgba(0, 132, 62, 1.0);
}

.contour {
	font-weight: 400;
	margin: 1.4em 2em 0.4em 2em;
	display: block;
	cursor: pointer;
	padding: 0 0 60px 0;
	text-align: center;
}

	.contour input[type='submit'] {
		background-color: rgba(0, 132, 62, 1.0);
		border: 1px solid rgba(0, 132, 62, 1.0);
		border-radius: 5px;
		color: rgba(255, 255, 255, 1.0);
		display: inline-block;
		font-size: 14px;
		font-family: "Open Sans", Helvetica, Arial, sans-serif;
		font-weight: 700;
		padding: 1em 2em 1em 2em;
		text-transform: uppercase;
		letter-spacing: 1px;
		line-height: 1.25em;
		margin-left: 0.5em;
		transition: all 0.3s ease 0s;
		width: 70%;
	}

		.contour input[type='submit']:hover {
			border: 1px solid rgba(41, 65, 44, 1.0);
			background-color: rgba(41, 65, 44, 1.0);
		}

	.contour input[type='text'] {
		padding: 1em 2em 1em 1em;
		border: 1px solid rgba(99, 99, 99, 1.0);
		border-radius: 5px;
		margin-left: 0.5em;
		margin-bottom: 1em;
		font-size: 14px;
		font-family: "Open Sans", Helvetica, Arial, sans-serif;
		font-weight: 400;
		line-height: 1.25em;
		width: 70%;
	}

	.contour textarea {
		padding: 1em 2em 1em 1em;
		border: 1px solid rgba(99, 99, 99, 1.0);
		border-radius: 5px;
		margin-left: 0.5em;
		margin-bottom: 1em;
		width: 70%;
		height: 100px;
		font-size: 14px;
		font-family: "Open Sans", Helvetica, Arial, sans-serif;
	}

	.contour select {
		border: 1px solid rgba(99, 99, 99, 1.0);
		width: 200px;
	}

	.contour label {
		display: none;
	}

	.contour .field-validation-error {
		display: block;
		color: rgb(255, 0, 0);
		margin: 0 0 1em 0;
	}



/* TESTIMONIALS
----------------------------------------------- */

.testimonials-container {
	background-color: white;
	width: 100%;
}

.testimonials {
	display: grid;
	place-items: stretch;
	gap: 2em;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em;
}

.testimonial-block {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.testimonial-block img {
	width: 100%;
	max-height: 300px;
	aspect-ratio: 1;
	object-fit: cover;
}

.testimonial-info .title {
	font-size: 17px;
	padding: 0;
	margin: 0 !important;
}

.testimonial-info .subtitle {
	font-size: 12px;
	font-weight: normal;
	margin: 0.25em 0 0 0;
}

.testimonial-info .subtitle a {
	color: #2a332c;
}

.testimonial-info .client-quote p {
	display: inline;
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 18px;
	color: rgba(120, 100, 64, 1.0);
	line-height: 1.3;
	margin-top: 1em;
}

.testimonial-block .inset-quote {
	position: relative;
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 35px;
	line-height: 1.2;
	padding: 1.5em;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	place-items: center;
	place-content: center;
}

.testimonial-block .inset-quote::before,
.testimonial-block .inset-quote::after {
	position: absolute;
	font-size: 280px;
	font-weight: bold;
	line-height: 0.5;
	color: black;
	opacity: 0.1;
}

.testimonial-block .inset-quote::before {
	content: open-quote;
	top: 0.5ch;
	left: -0.1ch;
}

.testimonial-block .inset-quote::after {
	content: close-quote;
	bottom: 0;
	right: 0.1ch;
}

.testimonial-block .inset-quote.dark {
	background-color: rgba(41, 65, 44, 1.0);
}

.testimonial-block .inset-quote.light {
	background-color: rgba(239, 230, 215, 1.0);
}

.testimonial-block .inset-quote > * {
	z-index: 300;
}

.testimonials .client-quote .quote-credit {
	display: block;
	font-family: 'Open Sans', sans-serif;
	color: rgba(41, 32, 15, 1.0);
	font-style: normal;
	font-size: 12px;
}

.testimonials .client-quote .more-hidden {
	height: 0;
	width: 0;
	overflow: hidden;
}

.testimonials .client-quote.open .more-hidden {
	display: contents;
	height: auto;
	width: auto;
}

.testimonials .quote-appendage {
	display: inline;
}

.testimonials .client-quote > p:first-of-type::before {
	content: "\0022";
}

.testimonials .client-quote > p:first-of-type::after {
	content: "\2026\0022";
}

.testimonials .client-quote.open > p:first-of-type::after {
	content: "";
}


.testimonials .quote-appendage > p:last-of-type::after {
	content: "\0022";
}

.testimonial-link {
	font-family: 'Open Sans', sans-serif;
	color: rgba(0, 0, 0, 1.0);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 12px;
	transition: all 0.3s ease 0s;
	font-style: normal;
}

.testimonial-link:hover,
.testimonial-link:active,
.testimonial-link:focus {
	color: rgba(120, 100, 64, 1.0);
}

.testimonial-link::after {
	content: ' \00bb';
}

@media screen and (min-width: 768px) {
	.testimonials {
		grid-template-columns: repeat(3, 1fr);
		place-items: stretch;
	}

	.testimonial-block {
		grid-template-rows: 2fr 1fr;
	}

	.testimonial-block:nth-child(4n) {
		grid-column: span 3;
		gap: 2em;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		aspect-ratio: auto;
		flex-direction: row;
	}

		.testimonial-block:nth-child(4n) img {
			aspect-ratio: auto;
			max-height: 350px;
			flex: 1 0 66%;
		}

	.testimonial-block .inset-quote {
		font-size: 24px;
		min-height: 300px;
	}

	.testimonial-block:nth-child(4n) .inset-quote {
		min-height: 250px;
	}
}

/* CAREERS
----------------------------------------------- */

/*.detail-page a {color: #423723; font-family: 'Open Sans', sans-serif; font-weight: 400; line-height: 1.3em; }*/
.detail-page a {
	color: rgba(0, 132, 62, 1.0);
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	line-height: 1.3em;
	text-decoration: underline;
}


/* 404
----------------------------------------------- */

/* SITEMAP
----------------------------------------------- */

/* LANDING PAGE
----------------------------------------------- */

.landing-page + .landing-page {
    margin-top: 2em;
}

.landing-page .button {
	color: #ffffff;
	font-weight: 800;
	margin: 20px auto;
	max-width: 500px;
}

.landing-page .callout {
	display: flex;
	flex-direction: column;
	font-family: 'Alegreya', serif;
	font-size: 2.5em;
	font-style: italic;
	justify-content: space-between;
	line-height: 1.2em;
	margin-left: 15px;
	text-align: center;
	width: 50%;
}

.landing-page .click-to-call {
	color: rgba(0, 132, 62, 1.0);
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-weight: 800;
	margin-bottom: 0;
}

.landing-page .click-to-call.large {
	font-size: 2em;
	text-decoration: none;
}

.landing-page .green-link {
	margin-top: 10px;
}

.landing-page h2, .landing-page h2 a {
	color: rgba(0, 132, 62, 1.0);
	font-family: 'Alegreya', serif;
	font-style: italic;
	margin-bottom: 0;
}

.landing-page h2 a {
	font-weight: 700;
	text-decoration: underline;
}

.landing-page .half-image-caption {
	display: flex;
	flex-direction: column;
}

.landing-page .horizontal {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.landing-page .horizontal-reverse {
	flex-direction: row-reverse;
}

.landing-page .horizontal .list-header {
	max-width: 50%;
}

.landing-page .horizontal ul {
	margin: 0;
	padding: 0;
}

.landing-page hr {
	margin: 0;
}

.landing-page .list-header {
	font-family: 'Alegreya', serif;
	font-size: 2em;
	font-style: italic;
	margin-bottom: 10px;
	line-height: 1.2em;
}

.landing-page section {
	padding: 50px 0;
}

.landing-page .intro {
	align-items: flex-start;
}

.landing-page .body-three {
	margin-left: -15px;
}

.landing-page .column.third {
	padding: 1em;
}

.landing-page.second {
	padding-bottom: 2em;
	padding-top: 1em;
}

.landing-page.second .text {
	margin-left: 2em;
}

.landing-page.last {
	padding-bottom: 2em;
}

.landing-page .photo {
	background-repeat: no-repeat;
	min-height: 250px;
	background-size: cover;
	position: relative;
}

.landing-page .large-photo {
	background-repeat: no-repeat;
	min-height: 280px;
	background-size: cover;
	position: relative;
	background-position: center;
	aspect-ratio: 16/9;
}

.landing-page .quote {
	background-repeat: no-repeat;
	background-size: cover;
}

.landing-page .inset-quote.light {
	background-color: rgba(239, 230, 215, 1.0);
	min-height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.landing-page .inset-quote.dark {
	background-color: rgba(41, 65, 44, 1.0);
	min-height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.landing-page .inset-quote {
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 35px;
	line-height: 1.2em;
	padding: 1.5em;
}

.landing-page h4 {
	font-size: 17px;
	padding-bottom: 0;
	margin-bottom: -15px;
}

.landing-page h4.no-gap {
	margin-top: 0;
}

.landing-page h5 {
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 15px;
}

.landing-page .text p {
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 18px;
}

.landing-page .text a:not(.green-link) {
	color: inherit;
}

a.testimonial-link:link, a.testimonial-link:visited {
	font-family: 'Open Sans', sans-serif;
	color: rgba(0, 0, 0, 1.0);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 12px;
	transition: all 0.3s ease 0s;
	font-style: normal;
}

a.testimonial-link:hover, a.testimonial-link:active, a.testimonial-link:focus {
	color: rgba(120, 100, 64, 1.0);
}

a.testimonial-link::after {
	content: ' \00bb';
}

.landing-page .client-quote {
	line-height: 1.3em;
}

.landing-page .client-quote p {
	display: inline;
	color: rgba(120, 100, 64, 1.0)
}

.landing-page .client-quote p strong {
	color: rgba(66, 55, 35, 1.0)
}

.landing-page .client-quote > p:first-of-type::before {
	content: "\0022";
}

.landing-page .client-quote > p:first-of-type::after {
	content: "\2026\0022";
}

.landing-page .client-quote .more-hidden {
	display: inline-block;
	height: 0;
	width: 0;
	overflow: hidden;
}

.landing-page .client-quote p.quote-credit {
	display: block;
	font-family: 'Open Sans', sans-serif;
	color: rgba(41, 32, 15, 1.0);
	font-style: normal;
	font-size: 12px;
}

.landing-page .client-quote.open > p:first-of-type::after {
	content: "";
}

.landing-page .client-quote.open .more-hidden {
	display: inline;
	height: auto;
	width: auto;
}

.landing-page .client-quote.open .more-hidden > p:nth-last-of-type(2)::after {
	content: "\0022";
}



/* MEDIA QUERIES - DESKTOP WIDE SCREENS
----------------------------------------------- */
@media (min-width:1601px) {

	.double-box-text .column.first p {
		padding-left: 40%;
		padding-right: 5%;
	}

	.double-box-text .column.first h3 {
		padding-left: 40%;
		padding-right: 5%;
	}

	.double-box-text .column.first h4 {
		padding-left: 40%;
		padding-right: 5%;
	}

	.double-box-text .column.second p {
		padding-left: 5%;
		padding-right: 40%;
	}

	.double-box-text .column.second h3 {
		padding-left: 5%;
		padding-right: 40%;
	}

	.double-box-text .column.second h4 {
		padding-left: 5%;
		padding-right: 40%;
	}

	section.photo-quote > .container {
		padding-left: 0;
		padding-right: 0;
	}

	.photo-quote h3 {
		margin-top: 1em;
	}

	.detail-page .body .column.half.second {
		margin-left: -5%;
	}

	.landing-page .photo { min-height: 350px; }
    .landing-page .quote.light { min-height: 350px; }
    .landing-page .quote.dark { min-height: 350px; }
}

@media (min-width:1201px) and (max-width:1600px) {
	.nav-menu a.desktop-speak {
		margin-left: 6em;
	}

	.double-box-text p {
		padding-left: 10%;
		padding-right: 10%;
	}

	section.photo-quote > .container {
		padding-left: 0;
		padding-right: 0;
	}

	.photo-quote h3 {
		margin-top: .4em;
	}
}

/* MEDIA QUERIES - LARGE TABLET
----------------------------------------------- */
@media (min-width:1001px) and (max-width:1200px) {

	.nav-menu a.desktop-speak {
		margin-left: 1em;
	}

	.nav-menu li a {
		padding: 10px 15px;
		letter-spacing: 0.025em;
	}

	.nav-menu a.desktop-speak:link, .nav-menu a.desktop-speak:visited {
		padding-left: 15px;
		padding-right: 15px;
	}

	.nav-menu .search-desktop a:link, .nav-menu .search-desktop a:visited {
		padding-left: 15px;
		padding-right: 15px;
	}

	.special h2 {
		font-size: 25px;
		line-height: 1.2em;
	}

	.special.dark.noimg h2 {
		margin-top: -5px;
	}

	.recent-news .column.third {
		padding-right: 0;
	}

	.photo-quote h3 {
		padding: 0.5em 0 0 0;
		margin: 0;
	}

	.sign-up {
		margin: 1.4em 0 0 0;
	}

	.testimonials .inset-quote {
		font-size: 28px;
	}

	.testimonials .photo {
		min-height: 275px;
	}

	.testimonials .inset-quote.light {
		min-height: 275px;
	}

	.testimonials .inset-quote.dark {
		min-height: 275px;
	}

	.landing-page .quote { font-size: 28px; }
    .landing-page .photo { min-height: 275px; }
    .landing-page .quote.light { min-height: 275px; }
    .landing-page .quote.dark { min-height: 275px; }
}

@media (min-width:768px) and (max-width:1000px) {

	.navigation-top > .container {
		padding-left: 0;
		padding-right: 0;
	}

	.nav-menu a.desktop-speak {
		margin-left: 1em;
	}

		.nav-menu a.desktop-speak span {
			display: none;
		}

		.nav-menu a.desktop-speak:link, .nav-menu a.desktop-speak:visited {
			padding-left: 10px;
			padding-right: 10px;
		}

	.nav-menu .search-desktop a:link, .nav-menu .search-desktop a:visited {
		padding-left: 10px;
		padding-right: 10px;
	}

	.nav-menu li a {
		padding: 10px 9px;
		letter-spacing: 0.025em;
	}

	.special h2 {
		font-size: 25px;
		line-height: 1.2em;
	}

	.recent-news .column.third {
		margin: 0em 2em 0em 2em;
	}

	.photo-quote h3 {
		padding: 0 0 0 0;
		margin: 0;
	}

	.detail-page .body .column.half {
		padding-right: 30px;
		margin: 20px 0 40px 0;
	}

		.detail-page .body .column.half.second {
			margin-left: 0;
		}

	/* Forms */

	.sign-up {
		margin: 1.4em 1em 2em 1em;
	}

		.sign-up input[type='submit'] {
			display: block;
			width: 100%;
		}

		.sign-up input[type='text'] {
			display: block;
			width: 100%;
		}

	/* Subpages */

	.special.dark {
		padding-bottom: 3em;
	}

		.special.dark.noimg h2 {
			margin-top: 0
		}

	.detail-page .partner .column.third {
		text-align: left;
		position: relative;
		max-width: 40%;
		margin-top: 3em;
		margin-bottom: 3em;
	}

	.detail-page .partner .column.three-fourths {
		background-image: url(../images/attorney_imanaka.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 380px;
		position: relative;
		max-width: 60%;
		margin-top: -60px;
		margin-left: 45px;
	}

	.detail-page .partner p {
		line-height: 30px;
		margin: 0;
	}

	.detail-page .partner .column.full.link p {
		line-height: normal;
		margin-top: 0;
	}

	.landing-page .inset-quote {
		font-size: 24px;
	}

	.landing-page.second {
		padding-top: 0;
		padding-bottom: 0;
	}
}

/* MEDIA QUERIES - MOBILE / SMALL TABLET
----------------------------------------------- */
@media (max-width: 767px) {
	/* General Styles */


	/* Header */
	.nav-menu a.desktop-speak {
		margin-left: 1em;
	}

	section.top-banner {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 350px;
		position: relative;
	}

	.top-banner h1 {
		font-size: 40px;
	}

	.top-banner {
		display: none;
	}

		.top-banner + .top-banner-scroll {
			position: fixed;
		}

	.top-banner-wrapper .top-banner-scroll {
		top: 0;
		position: fixed;
	}

	.top-banner-wrapper.fixed {
		padding-top: 78px;
	}

	.top-banner-wrapper.sub, .top-banner-wrapper.sub {
		padding-top: 0;
	}

	header[role="banner"] .navigation-top.hide-on-desktop {
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 95;
	}

	header.sub + [role="main"], header + [role="main"] {
		padding-top: 78px;
	}

	section.top-banner-sub {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100px;
		position: relative;
	}

	.top-banner-sub h1 {
		font-size: 40px;
		margin-top: .5em;
		min-height: 0;
	}

	.ezsearch-pager a:link, .ezsearch-pager a:visited {
		padding-left: 10px;
		font-size: 20px;
	}


	/* Mobile Menu */
	.nav-menu-mobile {
		background-color: rgba(66, 55, 35, .95);
		position: fixed;
		z-index: 90;
		width: 100%;
		height: 100%;
		padding-left: 0;
		padding-right: 0;
		top: -100%;
		text-align: center;
		transition: top 0.3s ease 0s;
		-webkit-transition: top 0.3s ease 0s;
	}

		.nav-menu-mobile ul {
			position: absolute;
			top: 50%;
			width: 100%;
			padding-left: 0;
			transform: translateY(-50%);
		}

		.nav-menu-mobile li a {
			color: rgba(255, 255, 255, 1.0);
			font-weight: 700;
			font-size: 26px;
			line-height: 2.4em;
			text-align: center;
			text-transform: uppercase;
		}

		.nav-menu-mobile .search-desktop {
			display: none;
		}

		.nav-menu-mobile .desktop-speak {
			background-color: transparent;
			font-family: 'Alegreya', serif;
			font-weight: 400;
			font-style: italic;
			line-height: 1.4em;
			text-transform: none;
		}

	.nav-menu.primary, .nav-menu.secondary {
		display: none;
	}

	.mobile-menu {
		background-color: transparent;
		display: block;
		height: 60px;
		position: fixed;
		top: 0;
		right: 0.75em;
	}

		.mobile-menu > a {
			position: absolute;
			right: 4em;
			top: 0.9em;
			z-index: 200;
		}

	.mobile-button-wrapper {
		display: block;
		position: relative;
		top: 5px;
		right: 0;
	}

		.mobile-button-wrapper::after {
			color: white;
			content: 'Menu';
			font-size: 0.75em;
			font-family: 'Open Sans', sans-serif;
			font-weight: 700;
			line-height: 1em;
			text-transform: uppercase;
			opacity: 1;
			-webkit-transition: opacity 0.3s ease 0s;
			transition: opacity 0.3s ease 0s;
			position: absolute;
			left: 6px;
			top: 45px;
			display: block;
			height: 20px;
			width: 100%;
			z-index: 210;
			letter-spacing: 0.5px;
		}

		.mobile-button-wrapper.open {
			position: absolute;
			top: 6px;
			z-index: 210;
		}

			.mobile-button-wrapper.open:after {
				opacity: 0;
			}

	.menu-toggle {
		display: block;
		position: relative;
		overflow: visible;
		margin: 0;
		padding: 0;
		width: 50px;
		height: 50px;
		font-size: 0;
		text-indent: -9999px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		box-shadow: none;
		border-radius: none;
		border: none;
		cursor: pointer;
		-webkit-transition: background 0.3s;
		transition: background 0.3s;
		z-index: 206;
	}

		.menu-toggle:hover {
			background-color: transparent;
			border: 0;
		}

		.menu-toggle:focus {
			outline: none;
		}

		.menu-toggle span {
			display: block;
			position: absolute;
			top: 23px;
			left: 5px;
			right: 5px;
			height: 4px;
			background: white;
		}

			.menu-toggle span::before, .menu-toggle span::after {
				position: absolute;
				display: block;
				right: 0;
				width: 100%;
				height: 4px;
				background-color: white;
				content: "";
			}

			.menu-toggle span::before {
				top: -11px;
			}

			.menu-toggle span::after {
				bottom: -11px;
			}

	.menu-toggle-tox {
		background-color: transparent;
	}

		.menu-toggle-tox span {
			-webkit-transition: background 0s 0.3s;
			transition: background 0s 0.3s;
		}

			.menu-toggle-tox span::before, .menu-toggle-tox span::after {
				-webkit-transition-duration: 0.3s, 0.3s;
				transition-duration: 0.3s, 0.3s;
				-webkit-transition-delay: 0.3s, 0s;
				transition-delay: 0.3s, 0s;
			}

			.menu-toggle-tox span::before {
				-webkit-transition-property: top, -webkit-transform;
				transition-property: top, transform;
			}

			.menu-toggle-tox span::after {
				-webkit-transition-property: bottom, -webkit-transform;
				transition-property: bottom, transform;
			}

		.menu-toggle-tox.active {
			background-color: transparent;
		}

			.menu-toggle-tox.active span {
				background: none;
			}

				.menu-toggle-tox.active span::before {
					top: 0;
					-webkit-transform: rotate(45deg);
					-ms-transform: rotate(45deg);
					transform: rotate(45deg);
				}

				.menu-toggle-tox.active span::after {
					bottom: 0;
					-webkit-transform: rotate(-45deg);
					-ms-transform: rotate(-45deg);
					transform: rotate(-45deg);
				}

				.menu-toggle-tox.active span::before, .menu-toggle-tox.active span::after {
					-webkit-transition-delay: 0s, 0.3s;
					transition-delay: 0s, 0.3s;
				}

	.mobile-search {
		background-color: rgba(0, 0, 0, 0);
		display: block;
		height: 60px;
		position: fixed;
		right: 4em;
		top: 0.5em;
	}

		.mobile-search a {
			color: #ffffff;
			font-size: 45px;
		}


	/* Homepage Content */

	.special {
		margin-bottom: 0;
	}

		.special h2 {
			font-size: 20px;
			line-height: 1.4em;
		}

		.special h4 {
			font-size: 14px;
			line-height: 1.2em;
		}

	.double-box-text .column.first {
		max-width: 100%;
	}

	.double-box-text .column.second {
		max-width: 100%;
	}

	.double-box-text {
		padding: 0;
	}

		.double-box-text a:link, .triple-image-cta a:visited {
			margin-bottom: 1em;
			display: inline-block;
		}

		.double-box-text p {
			margin: 0;
			padding-left: 0;
			padding-right: 0;
		}

	.photo-quote {
		padding: 0 0 0 0;
		text-align: center;
	}

		.photo-quote .column.two-thirds {
			text-align: center;
			padding: 2em 0 2em 0;
			min-height: 100px;
		}

		.photo-quote h3 {
			margin-top: 0;
			padding: 0 0.8em 0 0.8em;
		}

		.photo-quote p {
			line-height: 1.5em;
		}

	.recent-news .column.third {
		padding-right: 0;
	}

	.recent-news-heading h3 {
		display: block;
	}

	.recent-news-heading .more-link {
		margin-bottom: 2em;
		margin-left: 0;
	}

	.stay-updated h3 {
		text-align: center;
	}

	.stay-updated h4 {
		text-align: center;
	}

	/* Forms */
	.sign-up {
		margin: 1.4em 1em 2em .4em;
		text-align: center;
	}

		.sign-up input[type='submit'] {
			display: block;
			width: 100%;
		}

		.sign-up input[type='text'] {
			display: block;
			width: 100%;
		}

	.contact-us input[type='submit'] {
		width: 100%;
	}

	.contact-us input[type='text'] {
		width: 100%;
	}

	/* Subpages */

	.breadcrumb ol {
		padding: 0 0 0 0;
		text-align: center;
	}

	.special.dark {
		margin-top: 0;
		margin-bottom: 0;
		padding-bottom: 1.5em;
	}

		.special.dark.noimg h2 {
			margin-top: 0
		}

	.attorneys .body .column.third {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: -15px;
		text-align: left;
		margin-left: 0;
		margin-right: 0;
	}

		.attorneys .body .column.third.link.second {
			padding-top: 0;
			padding-bottom: 0;
		}

		.attorneys .body .column.third.link.last {
			padding-top: 0;
			padding-bottom: 30px;
		}

	.detail-page .body .column.half.second {
		margin-top: -25px;
	}

	.detail-page .body .column.half.link {
		padding-bottom: 15px;
	}

	.detail-page .partner.banner {
		background-color: transparent;
		background-image: none;
	}

	.detail-page .partner p {
		line-height: 30px;
		margin: 0;
	}

	.detail-page .partner .column.third {
		text-align: center;
		position: relative;
		max-width: 100%;
		margin-top: 0;
		margin-bottom: 1em;
		padding-top: 0;
		padding-bottom: 10px;
	}

	.detail-page .partner .column.three-fourths {
		text-align: center;
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		max-width: 100%;
		max-height: 100%;
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.detail-page .bio .column.full {
		padding-top: 0;
		padding-bottom: 25px;
	}

	.detail-page .partner .column.full.link p {
		margin-top: 0;
	}


	.landing-page .container {
		padding-right: 0;
	}

	.landing-page .photo {
		padding-left: 1em;
	}

	.landing-page.second {
		padding-top: 0;
		padding-bottom: 1em;
	}

		.landing-page.second .text {
			margin: 0 0 0 0;
		}

	.landing-page .column.half {
		padding-top: 1em;
	}

	.landing-page .column.half {
		padding-top: 1em;
	}

	.landing-page .photo {
		min-height: 250px;
	}

	.landing-page .inset-quote.light {
		min-height: 250px
	}

	.landing-page .inset-quote.dark {
		min-height: 300px
	}

	.landing-page .inset-quote {
		font-size: 36px;
	}

	.partner .breadcrumb {
		background-color: #ffffff;
	}

	/* LANDING PAGE */
	.landing-page .horizontal {
		display: flex;
		flex-direction: column;
	}

		.landing-page .horizontal .list-header {
			max-width: 100%;
		}

		.landing-page .horizontal ul {
			width: 100%;
		}

	.landing-page .callout {
		margin-left: 0px;
		width: 100%;
	}
}

/* MEDIA QUERIES - MOBILE ONLY
----------------------------------------------- */
@media (max-width:480px) {
	.top-banner-scroll img {
		width: 220px;
		padding: 7px 0;
	}

	.nav-menu a.desktop-speak {
		margin-left: 0;
	}

	/* Homepage Content */
	.special {
		margin-bottom: 0;
	}

		.special h2 {
			font-size: 20px;
			line-height: 1.4em;
		}

	.recent-news .column.third {
		padding-right: 0;
	}

	.sign-up {
		text-align: center;
	}

	.nav-footer li {
		border-right: 0 solid rgba(255, 255, 255, 1.00);
		line-height: 1;
		display: block;
	}

		.nav-footer li a {
			padding-right: 0;
		}

		.nav-footer li:not(:last-child) {
			border-right: 1px solid transparent;
			line-height: 2;
		}

		.nav-footer li a {
			padding-right: 0;
		}

	.detail-page ul {
		list-style: none;
		margin-left: -30px
	}

	.detail-page .qualifications ul {
		list-style: none;
		margin-left: -30px
	}
}

@media (max-width: 320px) {
	.top-banner-scroll img {
		width: 190px;
	}
}
