/* Subpage styling goes here. Excluded on homepage */

/*
SUBPAGE STRUCTURE
BLOG
TEMPLATES
*/

/*******************************************************************************************
SUBPAGE STRUCTURE - Banner and top-sidebar elements
*******************************************************************************************/
.banner {
	height: 300px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.banner,
.banner-xl {
	margin-top: 100px;
}

.banner:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.single-attorneys .banner {
	height: auto;
	padding: 40px 0;
	background: #1A1818;
}

.single-attorneys .banner:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #1A1818;
	pointer-events: none;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner>.row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;
	float: none;
}

.banner-title {
	font-size: 1.72rem;
	line-height: 2.2rem;
	color: #fff;
	margin-bottom: 0;
	font-family: var(--heading-font-family);
	text-transform: uppercase;
	letter-spacing: 5px;
	text-align: center;
}

.banner-title .underline {
	position: relative;
}

.banner-title .underline:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 6px;
	background: #489AA8;
}

.banner .lines {
	position: absolute;
	left: -175px;
    bottom: -115%;
    width: 260px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1;
}

.banner .lines img {
	width: 100%;
	height: auto;
}

.single-attorneys .banner .lines {
	left: -165px;
    bottom: 10%;
}

@media screen and (min-width: 500px) {
	.banner,
	.banner-xl {
		margin-top: 110px;
	}
}

@media screen and (min-width: 768px) {
	.banner-title {
		font-size: 2.22rem;
		line-height: 3rem;
	}
}

@media screen and (min-width: 900px) {
	.single-attorneys .banner .lines {
		bottom: -100%;
	}
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 400px;
	}

	.banner,
	.banner-xl {
		margin-top: 0px;
	}

	.banner-title {
		margin-top: 75px;
	}

	.banner .lines {
		left: -240px;
		bottom: -110%;
		width: 400px;
	}

	.single-attorneys .banner .lines {
		bottom: -90%;
		left: -240px;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.banner {
		height: 250px;
	}
}

@media screen and (min-width: 1280px) {
	.banner .lines {
		left: -280px;
		bottom: -145%;
		width: 480px;
	}

	.single-attorneys .banner .lines {
		left: -300px;
	}
}

@media screen and (min-width: 1500px) {
	.banner {
		height: 470px;
		width:100%;
	}

	.banner-title {
		font-size: 2.67rem;
	}

	.banner .lines {
		left: -380px;
		bottom: -155%;
		width: 600px;
	}
	
	.single-attorneys .banner .lines {
		left: -370px;
		bottom: -125%;
	}
}

@media screen and (min-width: 1920px) {
	body:not(.page-template-template-practices) .banner .lines {
		bottom: -170%;
		width: auto;
	}

	.single-attorneys .banner .lines {
		bottom: -160%;
	}
}

.search-form {
	display: flex;
	position: relative;
}

.search-form input {
	border: 2px solid #E0E0E0;
	color: #343434;
}

.search-form input:focus {
	outline: #E0E0E0;
}

.search-form label {
	color: #343434;
}

.search-form button {
	height: 45px;
	width: 45px;
	font-size: 1.1rem;
	padding: 0 12px;
	border-radius: 0;
}

/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/
body.category .content > h2 {
	font-size: 1.9rem;
}

.post {
	margin-bottom: 44px;
    padding-bottom: 19px;
	border-bottom: 1px solid #CECECE;
}

.post:last-child {
	border: none;
	padding-bottom: 0;
}

.post-head h1,
.post-head h2 {
	padding: 0;
	border: 0;
}

.post-top {
	margin-bottom: 15px;
}

.post-body {
	margin-bottom: 30px;
}

.post-body {
	display: block;
}

.single-post .post-body {
	display: block;
}

.post-head-info {
	line-height: 1.3;
	background: #3A3838;
	display: inline-block;
	padding: 6px 15px 10px 15px;
	border-radius: 4px;
}

.post-head-info span,
.post-head-info a {
	font-size: 0.72rem;
	font-weight: 700;
	font-family: 'DIN Alternate';
	text-transform: uppercase;
	margin-bottom: 0;
	color: #FFF;
}

.post-head-info i {
	margin: 0 5px;
}

.post-head-info a:hover,
.post-head-info a:focus {
	color: #489AA8;
}

.post-head-info span {
	margin-bottom: 0;
}

.post-head-info span:not(:last-of-type):after {
	width: 1px;
	height: 12px;
	background: #489AA8;
	content: '';
	display: inline-block;
	margin: 0 6px 0 12px;
	position: relative;
	top: 2px;
}

.post-top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: initial;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}

.post-body-excerpt h2 {
	margin-bottom: 20px;
}

.post-body-excerpt .post-bottom-more {
	display: inline-block;
	margin-top: 20px;
}

.post-body-excerpt .post-bottom-more:hover,
.post-body-excerpt .post-bottom-more:focus {
	text-decoration: none;
}

.post-body-image img {
	max-width: 100%;
}

.post-body-image {
	margin-bottom: 8px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	width: 100%;
}

.post-body-excerpt p:last-of-type {
	margin-bottom: 0;
}

.post-bottom {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.post-bottom-share {
	color: #489AA8;
	font-weight: 600;
}

.post-bottom-more {
	position: relative;
	font-size: 0.89rem;
	font-family: 'DIN Alternate';
	text-transform: uppercase;
}

.post-bottom-more:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #489AA8;
	width: 0;
	height: 4px;
	transition: width 200ms ease-out;
}

.post-bottom-more:hover:after,
.post-bottom-more:focus:after {
	width: 100%;
}

@media screen and (min-width: 1280px) {
	.post-body {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}

	.single .post-body-image {
		margin: 0 0 30px;
	}

	.post-body-excerpt {
		flex: 1;
	}

	.post-body-excerpt ~ .post-body-image {
		margin-left: 40px;
		width: 300px;
	}
}

/* BLOG > Page Navigation */
.wp-pagenavi {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
	text-decoration: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0;
	display: block;
	color: #343434;
	margin-right: 10px;
}

.wp-pagenavi span.current {
	color: #fff;
	background-color: #489AA8;
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	background: #C0C3D3;
	color: #343434;
}

.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	display: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: auto;
	background: none;
	padding: 0 15px;
	border-radius: 0;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus,
.wp-pagenavi .first:hover,
.wp-pagenavi .first:focus,
.wp-pagenavi .last:hover,
.wp-pagenavi .last:focus {
	background: none;
	color: #489AA8;
}

/*******************************************************************************************
TEMPLATES - Pre-built subpages
*******************************************************************************************/

/* TEMPLATES > Attorney Banner */
.attorney-banner-name h1 {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 10px;
}

.attorney-banner-left {
	margin: 0 auto 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	height: auto;
}

.attorney-banner-left img {
	max-width: 300px;
}

.attorney-banner-right {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

.attorney-banner-phone-fax {
	margin-bottom: 30px;
}

.attorney-banner-info p {
	margin-bottom: 15px;
}

.attorney-banner-info p,
.attorney-banner-info a {
	color: #fff;
	line-height: 1.0;
	font-size: 1.1rem;
}

.attorney-banner-info>p:last-child {
	margin: 0;
}

.attorney-banner-info .divider-span {
	display: none;
}

.attorney-banner-position {
	text-transform: uppercase;
	color: #fff;
	font-size: 0.78rem;
	letter-spacing: 2px;
}

/* TEMPLATES > Attorney Banner Template A */
.single-attorneys .banner-inner.columns {
	padding: 0 35px;
}
.single-attorneys-template-a .attorney-banner-right {
	position: relative;
	margin-top: 30px;
}

.single-attorneys-template-a .attorney-banner-left {
	-ms-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-bottom: 0;
}

.single-attorneys-template-a .attorney-banner-name,
.single-attorneys-template-a .attorney-banner-info {
	padding: 0 0 15px;
	width: 300px;
	text-align: left;
	margin: 0 auto;
}

/* .single-attorneys-template-a .attorney-banner-info {
	padding: 0 45px 30px;
} */

.single-attorneys-template-a .attorney-banner-name h1 {
	font-size: 2.94rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.single-attorneys-template-a .attorney-banner-info i {
	color: #489AA8;
	width: 20px;
	text-align: center;
}

.single-attorneys-template-a .attorney-banner-info a:hover i,
.single-attorneys-template-a .attorney-banner-info a:focus i {
	color: #FFF;
}

@media screen and (min-width: 900px) {
	.single-attorneys-template-a .attorney-banner-name,
	.single-attorneys-template-a .attorney-banner-info {
		width: auto;
	}
}

@media screen and (min-width: 1025px) {
	.single-attorneys-template-a .attorney-banner-left {
		display: none;
	}

	.single-attorneys-template-a .attorney-banner-right {
		width: auto;
		margin-left: 200px;
		margin-top: 130px;
	}

	.single-attorneys-template-a .attorney-banner-name,
	.single-attorneys-template-a .attorney-banner-info {
		margin: 0;
		margin-right: auto;
	}

	.single-attorneys-template-a .content.columns {
		padding-left: 120px;
	}
}

@media screen and (min-width: 1280px) {
	.single-attorneys-template-a .content.columns {
		padding-left: 0;
	}
}

/* TEMPLATES > Attorney Banner Template B */
.single-attorneys-template-b .attorney-banner-name {
	border-bottom: 1px solid #fff;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.single-attorneys-template-b .attorney-banner-left {
	background: white;
	background: linear-gradient(30deg, white 0%, #C0C3D3 100%);
	border: 2px solid #489AA8;
}

.single-attorneys-template-b .attorney-banner-info p,
.single-attorneys-template-b .attorney-banner-info a {
	font-size: 1.3rem;
}

.single-attorneys-template-b .vcard a {
	text-transform: uppercase;
	font-size: 0.9rem;
}

.single-attorneys-template-b .attorney-banner-info {
	margin-bottom: 30px;
}

.single-attorneys-template-b .attorney-banner-letter,
.single-attorneys-template-b .vcard i {
	display: inline-block;
	color: #489AA8;
}

.single-attorneys-template-b .vcard i {
	font-size: 75%;
}

.single-attorneys-template-b .attorney-banner-info span {
	display: none;
}

.attorney-banner-flex-row {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.attorney-banner-flex-row p {
	margin: 0 24px 0 0;
}

@media screen and (min-width: 900px) {
	.attorney-banner-name h1 {
		font-size: 2.94rem;
	}

	.attorney-banner-left img {
		max-width: none;
		width: auto;
	}

	.attorney-banner-right {
		min-width: 50%;
		margin-left: 40px;
		text-align: left;
	}

	.single-attorneys .banner {
		height: auto;
		padding: 25px 0 0;
	}

	.single-attorneys .banner-inner {
		-webkit-flex-wrap: nowrap;
		-moz-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		-o-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.single-attorneys-template-b .attorney-banner-phone-fax p:first-of-type {
		margin-right: 15px;
	}
}

@media screen and (min-width: 1025px) {
	.single-attorneys .banner {
		height: 540px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position-x: right;
	}

	.single-attorneys .banner:before {
		display: none;
	}
}

@media screen and (min-width: 1500px) {
	.single-attorneys .banner {
		height: 790px;
	}
}

/* TEMPLATES > Attorney Template C */
.attorney-template-c-tabs {
	display: none;
}

.attorney-template-c-container {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
}

.single-attorneys-template-c main {
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0 0;
	background-image: var(--wpr-bg-6c1073b2-3ba2-4b85-a2fa-921623ac9b2c);
}

.attorney-template-c-contact h1 {
	margin-bottom: 10px;
}

.attorney-template-c-contact h2 {
	font-size: 1.2rem;
}

.mCSB_draggerRail,
.mCSB_scrollTools {
	background-color: #343434 !important;
	width: 3px !important;
}

.mCSB_dragger,
.mCSB_dragger_bar {
	background-color: #489AA8 !important;
	width: 4px !important;
}

.mCSB_scrollTools_vertical,
.mCSB_dragger {
	border-radius: 4px !important;
}

.attorney-template-c-content {
	background: #fff;
	order: 1;
	padding: 30px 15px;
	width: 100%;
}

.attorney-template-c-photo {
	order: 0;
	display: flex;
	align-items: flex-end;
	text-align: center;
	width: 100%;
	justify-content: center;
}

.attorney-template-c-photo img {
	max-width: 100%;
	width: auto;
	height: 400px;
}

@media screen and (min-width: 1025px) {
	.attorney-template-c-content-inner {
		max-height: 700px;
	}

	.single-attorneys-template-c main {
		padding-top: 180px;
	}

	.attorney-template-c-tabs {
		display: block;
		background: #489AA8;
	}

	.attorney-template-c-photo img {
		height: auto;
	}

	.attorney-template-c-container {
		flex-wrap: nowrap;
		justify-content: center;
	}

	.attorney-template-c-content.content {
		order: 0;
		max-width: 525px;
		align-self: flex-start;
		padding: 0;
	}

	.attorney-template-c-content-inner {
		padding: 35px 10px 35px 35px;
	}

	.attorney-template-c-photo {
		order: 1;
		width: auto;
		margin-left: 50px;
	}

	.attorney-template-c-content-inner .content-tab {
		padding: 0;
		margin: 0;
	}
}

/* TEMPLATES > Attorney Banner Template D */
.attorney-banner-large-left {
	order: 2;
}

.attorney-banner-large-right {
	order: 1;
	margin-bottom: 20px;
	width: 300px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	background: #E9F5F7;
}

.attorney-banner-large-name,
.attorney-banner-large-buttons,
.attorney-banner-large-info {
	margin-bottom: 35px;
}

.attorney-banner-large-info a,
.attorney-banner-large-info p {
	color: #fff;
}

.attorney-banner-large-info p {
	margin-bottom: 4px;
	font-size: 1.1rem;
}

.attorney-banner-large-right img {
	height: 300px;
	width: auto;
	max-width: 100%;
}

.attorney-bio-main-d {
	position: relative;
}

.attorney-banner-large-quote {
	position: relative;
	padding-left: 70px;
}

.attorney-banner-large-quote em {
	color: #fff;
	font-size: 1.1rem;
}

.attorney-banner-large-quote:before {
	position: absolute;
	left: 0;
	top: 6px;
	content: '';
	width: 45px;
	height: 39px;
	background-image: var(--wpr-bg-d136270f-438b-4b26-8094-66a8022fdefd);
	background-repeat: no-repeat;
}

.attorney-banner-large-buttons {
	display: flex;
	flex-wrap: wrap;
}

.attorney-banner-large-buttons a {
	padding: 0;
	width: 40px;
	height: 40px;
	margin-right: 12px;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-tabs-anchor-links .content-tabs-row {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin: 0;
	z-index: 1;
	background: rgba(15, 133, 119, 0.8)
}

.content-tabs-anchor-links .content-tabs-row button {
	background: none;
	color: #fff;
	min-height: 60px;
	margin: 0;
	position: relative;
	flex: 1;
}

.content-tabs-anchor-links .content-tabs-row button:hover,
.content-tabs-anchor-links .content-tabs-row button:focus {
	background: #343434;
}

.content-tabs-anchor-links .content-tabs-row button:after {
	position: absolute;
	content: '';
	height: 14px;
	background: #fff;
	right: 0;
	top: calc(50% - 7px);
	width: 1px;
}

.content-tabs-anchor-links .content-tabs-row button i {
	display: none;
}

.content-tabs-anchor-links .content-tabs-row button.active {
	background: #fff;
	color: #489AA8;
}

.content-tabs-anchor-links .content-tabs-row button:hover:after,
.content-tabs-anchor-links .content-tabs-row button:focus:after,
.content-tabs-anchor-links .content-tabs-row button.active:after {
	display: none;
}

.single-attorneys-template-d .banner:before {
	display: none;
}

@media screen and (min-width: 900px) {
	.attorney-banner-large-left {
		order: 0;
		flex: 1;
		margin-right: 8%;
		align-self: center;
	}

	.attorney-banner-large-right {
		flex: 1;
		background: none;
		width: auto;
		margin: 0;
		align-self: flex-end;
	}

	.attorney-banner-large-right img {
		height: auto;
	}
}

/* TEMPLATES > Attorneys Landing */
.page-template-template-attorneys main {
	padding-top: 100px;
}

.attorney-results {
	display: block;
	outline: none;
}

.attorney-result-single {
	padding: 0;
	background: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	max-width: 475px;
}

.attorney-results .attorney-result-single {
	width: 100%;
}

.attorney-result-single img {
	width: 100%;
	/* min-height: 300px; */
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.attorney-result-single:hover img,
.attorney-result-single:focus img {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.attorney-result-single .attorney-result-info {
	padding: 12px;
	background-color: #FFF;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	-webkit-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
	border-bottom: 4px solid #489AA8;
}

.attorney-result-info h2,
.attorney-result-info p {
	color: #1A1818;
	margin: 0;
}

.attorney-result-single:hover .attorney-result-info,
.attorney-result-single:focus .attorney-result-info {
	background: #489AA8;
}

.attorney-result-single h2 {
	font-size: 1.3rem;
}

.attorney-result-info p {
	font-size: 0.9rem;
}

@media screen and (min-width: 550px) {
	.attorney-results {
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.attorney-results .attorney-result-single {
		width: 48%;
	}

	.attorney-results .attorney-result-single:nth-child(2n + 1) {
		margin-right: 3%;
	}
}

/* @media screen and (min-width: 900px) {
	.attorney-results .attorney-result-single {
		width: 32.3%;
		margin-right: 1%;
	}

	.attorney-results .attorney-result-single:nth-child(2n + 1) {
		margin-right: 1%;
	}

	.attorney-results .attorney-result-single:nth-child(3n + 3) {
		margin-right: 0;
	}
}

@media screen and (min-width: 1100px) {
	.attorney-results .attorney-result-single,
	.attorney-results .attorney-result-single:nth-child(2n + 1),
	.attorney-results .attorney-result-single:nth-child(3n + 3) {
		width: 23%;
		margin: 0 1% 0 1%;
	}
} */

/* TEMPLATES > Attorney Search */
.attorney-search-results-bar {
	text-align: center;
	padding: 12px 0;
	margin-bottom: 40px;
	border-top: 1px solid #E9F5F7;
	border-bottom: 1px solid #E9F5F7;
}

.attorney-search-inner {
	padding: 80px 0;
}

.attorney-search-letters {
	margin-bottom: 40px;
}

.attorney-search-letters-single {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
}

span.attorney-search-letters-single {
	color: #C0C3D3;
}

@media screen and (min-width: 700px) {
	.attorney-search-form .form-input-row {
		display: flex;
	}

	.form-input-group:first-of-type {
		margin-right: 15px;
	}
}

@media screen and (min-width: 1025px) {
	.attorney-search-letters {
		display: flex;
		justify-content: space-between;
	}
}


/* TEMPLATES > Practices Landing */

.page-template-template-practices h1 {
  color: #fff;
}

.page-template-template-practices h1:after {
  display: none;
}

.practice-box-list {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.practice-box {
	width: 100%;
	height: 90px;
	padding: 0 16px 0 20px;
	background: #343434;
  border: none;
	color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	text-decoration: none;
  justify-content: center;
	-webkit-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
  position: relative;
  z-index: 1;
}

.practice-box:hover span:after,
.practice-box:focus span:after {
  color: #fff
}

.practice-box-list .column-left,
.practice-box-list .column-right {
  width: 100%;
}

.practice-box-outer {
  margin: 0 0 20px;
  overflow: hidden;
}

.practice-box span {
	margin: 0;
  font-size: 1.1rem;
  font-family: 'DIN Alternate';
	-ms-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
	width: 100%;
  text-align: left;
  font-weight: 400;
  line-height: 1.3rem;
}

.practice-box.has-children span:after {
  content: "\f067";
  font-family: 'Font Awesome 5 Pro';
  line-height: 30px;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  display: block;
}

.practice-box span:after {
  display: none;
}

.practice-box-outer.active .practice-box span:after {
  content: "\f068";
}

.practice-children {
  background-color: #f2f2f2;
  padding: 0 0 40px;
  margin-bottom: 0;
}

.practice-children li,
.practice-children li a {
  color: #021A2C;
  text-decoration: none;
}

.practice-children li {
  position: relative;
}

.practice-children li:before {
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  color: #021A2C;
  content: "\f0da";
  font-weight: 700;
  top: 10px;
  left: 30px;
}

.practice-children li a {
  display: block;
  padding: 10px 30px 10px 45px;
}

.practice-children li a:hover,
.practice-children li a:focus {
  background-color: #489AA8;
  color: #fff;
}

.practice-children li:hover:before,
.practice-children li:focus:before {
  color: #fff;
}

.practice-children li.active:before {
  color: #fff;
}

.practice-box-outer.active .practice-children {
  display: block;
}

@media screen and (min-width: 1025px) {
  .practice-landing .columns {
	padding: 0 15px;
  }

  .practice-box-list .column-left,
  .practice-box-list .column-right {
    width: 50%;
    padding-right: 20px;
  }

  .practice-box-list .column-right {
    padding-left: 20px;
    padding-right: 0;
  }
}

/* TEMPLATES > Contact A */
.page-template-template-contact-a main {
	background-image: var(--wpr-bg-918183d4-351d-4700-af2c-e1b0e2c210a2);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 160px 0 80px;
	position: relative;
}

.contact-full-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.contact-full-inner {
	width: 100%;
	background: #fff;
	padding: 40px 0;
}

@media screen and (min-width: 1025px) {
	.page-template-template-contact-a main {
		height: 100vh;
		padding: 0;
	}

	.contact-full-inner {
		padding: 40px;
	}

	.contact-full-content {
		padding-right: 15%;
	}

	.contact-full-container {
		align-items: center;
		height: 100vh;
		padding-top: 100px;
	}
}

@media screen and (max-height: 750px) and (min-width: 1025px) {

	.page-template-template-contact-a main,
	.contact-full-container {
		height: 100%;
	}

	.contact-full-container {
		padding: 0;
	}

	.page-template-template-contact-a main {
		padding: 160px 0 100px;
	}
}

/* TEMPLATES > Contact B */
.office-block {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #343434;
}

.office-block:last-child {
	border: none;
}

.office-block-image {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
}

.office-block-info {
	position: relative;
}

.office-block-info p {
	margin: 0;
}

.office-contact {
	margin-top: 30px;
}

.office-contact p {
	font-weight: 700;
}

.office-block-info-inner {
	width: 100%;
}

.office-contact-map {
	position: absolute;
	right: 0;
	bottom: 0;
}

.office-map {
	margin-bottom: 30px;
}

.call {
	display: inline-block;
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
	.office-block {
		display: flex;
	}

	.office-block-image {
		display: flex;
		width: 250px;
		flex-basis: 250px;
		height: 250px;
	}

	.office-block-info {
		flex: 1;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
}

/* TEMPLATES > Attorney Bios */
.content-tabs-row {
	display: none;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.content-tabs-row-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	flex-wrap: wrap;
}

.content-tab-activate {
	position: relative;
	color: #343434;
	background: none;
	padding: 0;
	margin: 0 0 50px 50px;
	text-transform: capitalize;
	font-size: 0.9rem;
	border-radius: 0;
	border: none;
	border-bottom: 4px solid transparent;
}

.content-tab-activate:hover,
.content-tab-activate:focus {
	background: none;
	color: #343434;
}

.content-tab-activate:before {
	content: url(../../../../../../../themes/paperstreet/images/overview.png);
	width: 26px;
	height: 31px;
	position: absolute;
	left: -40px;
	top: 70%;
	transform: translateY(-50%);
}

.content-tab-activate[data-content-tab*="overview"]:before,
#content-tabs .accordion-item-title[data-content-tab*="overview"]:before {
	content: url(../../../../../../../themes/paperstreet/images/lightbulb-dark.svg);
}

.content-tab-activate[data-content-tab*="news"]:before,
#content-tabs .accordion-item-title[data-content-tab*="news"]:before {
	content: url(../../../../../../../themes/paperstreet/images/news.svg);
	width: 31px;
	height: 26px;
}

.content-tab-activate[data-content-tab*="represent"]:before,
#content-tabs .accordion-item-title[data-content-tab*="represent"]:before {
	content: url(../../../../../../../themes/paperstreet/images/represent.svg);
	width: 21px;
	height: 32px;
}

.content-tab-activate[data-content-tab*="practice"]:before,
#content-tabs .accordion-item-title[data-content-tab*="practice"]:before {
	content: url(../../../../../../../themes/paperstreet/images/practices.svg);
	width: 31px;
	height: 29px;
}

.content-tab-activate:after {
    position: absolute;
    left: -55px;
    top: 70%;
    content: "";
    width: 48px;
    height: 48px;
	transform: skew(
	-20deg) translateY(-50%);
	background: #489AA8;
	opacity: 0.08;
}

.content-tab-activate:last-of-type {
	margin-right: 0;
}

.content-tab-activate.active {
	pointer-events: none;
}

.content-tab {
	display: none;
	margin-bottom: 50px;
}

.content-tab.active {
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.content-tab.active,
.content-tabs-anchor-links .content-tab {
	display: block;
}

.content-tabs-anchor-links .mobile-tab {
	display: none;
}

.content-tabs-select {
	margin: 0 auto 30px;
	display: none;
}

.content-tabs-anchor-links .content-tabs-select {
	display: block;
}

.mobile-tab {
	display: block;
	text-align: left;
	padding: 0;
	margin-bottom: 40px;
	position: relative;
}

.mobile-tab:after {
	content: '\f0d7';
	font-family: 'Font Awesome 5 Pro';
	right: 15px;
	position: absolute;
}

.mobile-tab:hover,
.mobile-tab:focus {
	background: none;
	color: #343434;
	/* border-bottom: 2px solid #489AA8; */
}

#content-tabs .accordion-item-title {
	border: 1px solid #3C3C3C;
	color: #3C3C3C;
	font-family: 'DIN Alternate';
	font-size: 1.06rem;
	padding-left: 55px;
	padding-right: 25px;
	position: relative;
	align-items: start;
}

#content-tabs .accordion-item-title::before {
	content: url(../../../../../../../themes/paperstreet/images/overview.png);
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	height: 31px;
}

#content-tabs .accordion-item-title::after {
	content: '\f0d7';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (min-width: 1025px) {
	.content-tabs-row {
		display: block;
	}

	.mobile-tab,
	.content-tabs-anchor-links .content-tabs-select {
		display: none;
	}

	.content-tab-activate.active {
		border-bottom: 4px solid #489AA8;
	}

	.content-tabs-row .content-tab-activate {
		margin-right: 18px;
	}

	.content-tab-activate {
		border-bottom: 4px solid transparent;
	}
}

@media screen and (min-width: 1280px) {
	.content-tabs-row .content-tab-activate {
		width: 17%;
		max-width: -moz-fit-content;
		max-width: fit-content;
	}
}

/* TEMPLATES > Long-Form */
.banner-xl {
	background: rgb(20, 23, 47);
	background: linear-gradient(180deg, rgba(20, 23, 47, 1) 46%, rgba(36, 42, 88, 1) 100%);
	padding: 40px 0;
}

.banner-xl-content p:last-child {
	margin: 0;
}

.banner-xl-image {
	text-align: center;
}

.banner-xl-title {
	font-size: 3.5rem;
	line-height: 1.4;
}

.banner-xl-image img {
	max-width: 70%;
	margin: 0 auto;
}

@media screen and (min-width: 1100px) {
	.banner-xl-inner {
		display: flex;
		align-items: center;
	}

	.banner-xl-image img {
		max-width: 100%;
	}

	.banner-xl-content {
		padding-left: 60px;
		flex: 1;
	}
}

.top-table-contents {
	padding: 50px 0;
	background: #e5e8f6;
}

.top-table-contents-button {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	text-decoration: none !important;
	margin: 0 auto;
}

.top-table-contents-button {
	font-size: 1.2rem;
}

.top-table-contents-icon-container {
	margin-bottom: 15px;
}

.top-table-contents-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 20px;
	grid-column-gap: 20px;
}

.top-table-contents-button-icon {
	background: #489AA8;
	border-radius: 50%;
	width: 90px;
	height: 90px;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.top-table-contents-button i {
	font-size: 3rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-table-contents-button-icon:hover,
.top-table-contents-button-icon:focus {
	transform: scale(1.03);
	background: #489AA8;
}

.is-sticky .top-table-contents {
	padding: 20px 0;
}

.is-sticky .top-table-contents-button-icon {
	width: 30px;
	height: 30px;
}

.is-sticky .top-table-contents-button i {
	font-size: 1rem;
}

.is-sticky .top-table-contents-icon-container {
	margin: 0 12px 0 0;
}

.is-sticky .top-table-contents-title {
	display: none;
}

.is-sticky .top-table-contents-button {
	flex-direction: row;
	margin: 0 auto 0 0;
}

.single-chapter-banner-title h2 {
	font-size: 2.4rem;
	margin: 0;
}

.single-chapter-banner-image {
	margin-bottom: 20px;
}

.single-chapter:nth-child(2n) {
	background: #E9F5F7;
}

.banner-xl {
	padding: 50px 0;
}

.single-chapter-banner {
	background: #343434;
}

.single-chapter-content,
.single-chapter-banner {

	padding: 30px 0;
}

@media screen and (min-width: 900px) {
	.single-chapter-banner-inner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
	}

	.single-chapter-banner-image {
		margin-bottom: 0;
		padding-left: 5vw;
	}

	.single-chapter-banner-title h2 {
		margin: 0;
		font-size: 3.2rem;
	}

}

@media screen and (min-width: 1025px) {
	.top-table-contents-inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* TEMPLATES > Confirmation */
.confirm-contact {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 10px;
}

.confirm-contact a:not(:last-child) {
	margin-right: 20px;
}

.confirm-social {
	margin-bottom: 60px;
}

/* TEMPLATES > WHAT WE DO */
.top-content-container .top-content,
.top-content-container .top-sidebar {
	float: none;
}

.top-content-container .links {
	max-width: max-content;
}

.top-content-container .top-sidebar section {
	padding: 0;
}

.top-content-container .top-sidebar a.button {
	color: #FFF;
	width: 100%;
	text-align: left;
	font-size: 0.83rem;
}

.top-content-container .top-sidebar a.button:hover,
.top-content-container .top-sidebar a.button:focus {
	text-decoration: none;
}

.top-content-container .top-sidebar li {
	border-bottom: none;
	margin-bottom: 20px;
}

.top-content-container .top-sidebar .underline {
	position: relative;
}

.top-content-container .top-sidebar .underline:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #489AA8;
}

.middle-content {
	margin-bottom: 50px;
}

.bottom-accordions-container {
	margin-bottom: 30px;
}

.bottom-accordions-container .accordion-item-content {
	padding-left: calc(15% + 10px);
}

@media screen and (min-width: 768px) {
	.top-content-container {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-ms-align-items: start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.top-content {
		flex: 1;
	}

	.top-sidebar {
		width: auto;
		padding-left: 0;
	}

	.top-sidebar .links {
		margin-left: auto;
	}
}

@media screen and (min-width: 1025px) {
	.top-content {
		padding-right: 140px;
	}

	.bottom-accordions-container .columns {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-ms-align-items: start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: initial;
		-ms-flex-pack: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.bottom-accordions-container .accordion-item {
		width: 45%;
	}
}

/* TESTIMONIALS PAGE */
.single-testimonial {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #818386;
}

.single-testimonial p {
	margin-bottom: 15px;
	font-style: italic;
}

/* .single-testimonial p:before,
.single-testimonial p:after {
	content: '"';
} */

.single-testimonial .name {
	font-size: 1.3rem;
    font-weight: 500;
}

/* SCHOLARSHIP PAGE */
@media screen and (min-width: 1025px) {
	#gform_wrapper_1 {
		margin-bottom: 70px;
	}
}

#disclaimer-pop{
	display: none;
	position: fixed;
	bottom: 2.5%;
	padding: 20px 40px;
	background-color: #343434;
	z-index: 1;
	width: 95%;
	left: 50%;
	transform: translateX(-50%);
}

#disclaimer-pop.active{
	display: block;
}

#disclaimer-pop p{
	color: #fff;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 16px;
}

#disclaimer-pop button{
	display: block;
	margin-left: auto;
}

@media screen and (min-width:1025px){
	#disclaimer-pop p{
		line-height: 1.6;
		font-size: 18px;
	}
}


@media screen and (min-width: 280px) and (max-width: 767px) {


.banner {
	height: 200px !important;
	min-height: 200px !important;
 
}
main {
	padding: 30px 0 0!important;
	height: auto  !important;
	min-height: 250px !important;
}

.single-practices .columns {
 
	padding: 0 20px!important;
}
.breadcrumbs-container {
	margin-bottom: 15px!important;
}

.content h1 {
	font-size: 1.5rem!important;
	margin-bottom: 25px!important;
}
.banner-title {
	font-size: 1.3rem!important;
	line-height: 2rem!important;
	letter-spacing: 2px!important;
	text-align: center;
}




}
