/*******************************************/
/* Theme Name: PaperStreet                 */
/* Theme URI: http://www.wordpressbase.com */
/* Author: PaperStreet                     */
/* Author URI: https://www.paperstreet.com */
/* Description: For Ellis Winters              */
/* Text Domain: elliswinters.com           */
/* Version: 3.073019                       */
/** Copyright PaperStreet Web Design      **/
/*******************************************/

/*
Delete this comment and ALL modules you are not using before launch!

Styled with min-width (mobile first) pixel-based media queries

Sizes subject to change based on build:
SMALL ENDS: 767px
MEDIUM STARTS: 768px
MEDIUM ENDS: 1024px
LARGE STARTS: 1025px
XLARGE CONSIDERED: 1921px

SANS SERIF, main body text: font-family: 'Open Sans', sans-serif;
SERIF, heading text: font-family: 'Red Hat Display', sans-serif;
*/

/*******************************************************************************************
GENERAL - Top-level styling
*******************************************************************************************/
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.6;
	color: #000;
	font-size: 1.0rem;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

:root {
	font-size: 17px;
	--body-text-color: #000;
	--light-gray: #e1e7e8;
	--purple-main: #262731;
	--blue: #2c88ca;
	--orange: #f05a25;
}

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

	/*TABLET*/
	:root {
		font-size: 18px;
	}
}

/* GENERAL > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: #262731;
	font-weight: 400;
	font-family: 'Red Hat Display', sans-serif;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.alt-font {
	font-family: 'Red Hat Display', sans-serif;
}

.pseudo-h1,
h1 {
	font-size: 2.0rem;
}

h2 {
	font-size: 1.6rem;
}

h3 {
	font-size: 1.3rem;
}

.pseudo-h4,
.sidebar section h2,
h4 {
	font-size: 1.1rem;
}

h5,
h6 {
	font-size: 1.0rem;
}

p {
	margin: 0 0 30px;
	font-size: 1.0rem;
	color: #000;
}


/* GENERAL > Lists */
ol,
ul {
	margin: 0 0 35px 0;
	padding: 0;
}

ul {
	list-style: none;
}

ol {
	list-style-position: outside;
	padding-left: 20px;
}

.content li {
	font-size: 1.0rem;
	color: #000;
	padding: 0 0 0 20px;
	position: relative;
}

.content ol li {
	padding-left: 0;
}

.content ul li:before {
	position: absolute;
	left: 0;
	content: "\f0da";
	font-family: 'Font Awesome 5 Pro';
	color: #f05a25;
}

.content ul li:before,
.sidebar section ul li:before {
	font-family: 'Font Awesome 5 Pro';
}

.content ul ul {
	margin: 20px 0 20px 20px;
}

hr {
	background: #262731;
	width: 20%;
	height: 5px;
	display: block;
	border: none;
	margin: 40px 0;
}

table,
tbody,
tr,
td {
	height: auto !important;
}

.content-tab td {
	white-space: pre;
}

.content-tab td:first-child {
	padding-right: 30px;
}

figure {
	margin: 0;
}

address {
	font-style: normal;
}

/* GENERAL > Links and Buttons */
a {
	color: #f05a25;
	font-weight: 700;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #2c88ca;
	text-decoration: none;
}

a.no-underline {
	text-decoration: none;
}

a.no-link-style:focus,
a.no-link-style:hover,
a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a.no-link-style {
	text-decoration: none;
	font-weight: 400;
	color: #262731;
}

a.no-link-style:hover,
a.no-link-style:focus {
	color: #f05a25;
}

a,
button,
.button {
	-webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	-o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.0rem;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 400;
	border: none;
	margin: 0;
	border-radius: 0;
	padding: 10px 25px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #262731;
	text-decoration: none;
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #2c88ca;
	color: #fff;
}

button.alt-01,
.button.alt-01 {
	background-color: #2c88ca;
	color: #000;
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: #f05a25;
	color: #fff;
}

button.outline,
.button.outline {
	background: none;
	border: 3px solid #262731;
	color: #262731;
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: #262731;
	color: #fff;
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
	color: #262731;
	background-color: #fff;
	font-size: 0.9rem;
	line-height: 1.0;
	font-family: 'Open Sans', sans-serif;
	border: black 1px solid;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin: 0;
	width: 100%;
	border-radius: 0;
	padding: 0 15px;
	height: 50px;
}

.sidebar input,
.sidebar select {
	box-shadow: 0 0 25px #dadada;
}

textarea {
	resize: none;
	min-height: 90px;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 1.2;
}

form label,
form p {
	font-size: 0.9rem;
}

label {
	color: #2c88ca;
}

.form-input-group {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	text-align: left;
}

.form-input-group.button-container {
	margin-bottom: 0;
}

input.has-error {
	border: 1px solid #ff0000 !important;
	-webkit-box-shadow: 0 0 2px #ff0000 !important;
	box-shadow: 0 0 2px #ff0000 !important;
}

p.error-text {
	color: #ff0000;
	margin: 0;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
}

.grecaptcha-badge {
	display: none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
}

select::-ms-expand {
	display: none;
}

.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper:after {
	content: "\f0dc";
	font-weight: 900;
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 50px;
	line-height: 50px;
	color: #fff;
	background: #262731;
	pointer-events: none;
	-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;
}

.select-wrapper.active:after {
	background: #2c88ca;
	color: #fff;
}

/* GENERAL > Animations */
.animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.fast {
	-webkit-animation-duration: 600ms;
	animation-duration: 600ms;
}

.animated.slow {
	-webkit-animation-duration: 2000ms;
	animation-duration: 2000ms;
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes menuSlideRight {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0;
	}
}

@-webkit-keyframes menuSlideRight {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0;
	}
}

@keyframes menuSlideDown {
	from {
		opacity: 0;
		margin-top: -10px;
	}

	to {
		opacity: 1;
		margin-top: 0;
	}
}

@-webkit-keyframes menuSlideDown {
	from {
		opacity: 0;
		margin-top: -10px;
	}

	to {
		opacity: 1;
		margin-top: 0;
	}
}

/* GENERAL > Skip To Content */
#skiptocontent {
	padding: 6px;
	z-index: 10;
	position: fixed;
	-webkit-transform: translateY(-40px);
	-ms-transform: translateY(-40px);
	transform: translateY(-40px);
	opacity: 0;
	background-color: #262731;
	color: #fff;
	border-radius: 0 0 8px 0;
	-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;
}

#skiptocontent:focus {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@media only screen and (max-width: 640px) {
	#skiptocontent {
		display: none !important;
	}
}

/* GENERAL > Layout */

.columns,
.column {
	float: left;
	padding: 0 15px;
}

.full-width {
	width: 100%;
}

.sidebar {
	clear: both;
	float: none;
}

.small-12 {
	width: 100%;
}

.small-11 {
	width: 91.67%;
}

.small-10 {
	width: 83.34%;
}

.small-9 {
	width: 75%;
}

.small-8 {
	width: 66.67%;
}

.small-7 {
	width: 58.34%;
}

.small-6 {
	width: 50%;
}

.small-5 {
	width: 41.66%;
}

.small-4 {
	width: 33.33%;
}

.small-3 {
	width: 25%;
}

.small-2 {
	width: 16.66%;
}

.small-1 {
	width: 8.33%;
}

@media (min-width: 768px) {
	.medium-12 {
		width: 100%;
	}

	.medium-11 {
		width: 91.67%;
	}

	.medium-10 {
		width: 83.34%;
	}

	.medium-9 {
		width: 75%;
	}

	.medium-8 {
		width: 66.67%;
	}

	.medium-7 {
		width: 58.33%;
	}

	.medium-6 {
		width: 50%;
	}

	.medium-5 {
		width: 41.67%;
	}

	.medium-4 {
		width: 33.33%;
	}

	.medium-3 {
		width: 25%;
	}

	.medium-2 {
		width: 16.66%;
	}

	.medium-1 {
		width: 8.33%;
	}

	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.large-12 {
		width: 100%;
	}

	.large-11 {
		width: 91.67%;
	}

	.large-10 {
		width: 83.34%;
	}

	.large-9 {
		width: 75%;
	}

	.large-8 {
		width: 66.67%;
	}

	.large-7 {
		width: 58.33%;
	}

	.large-6 {
		width: 50%;
	}

	.large-5 {
		width: 41.67%;
	}

	.large-4 {
		width: 33.33%;
	}

	.large-3 {
		width: 25%;
	}

	.large-2 {
		width: 16.66%;
	}

	.large-1 {
		width: 8.33%;
	}

	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/* GENERAL > Slick Customizations */
.slick-dots {
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 2%;
	margin: 0;
}

.ps219sw17 {
	color: blue
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 8px;
	padding: 0;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	cursor: pointer;
	background: transparent;
	color: transparent;
	border: 0;
	outline: none;
	padding: 0;
}

.slick-dots li button:before {
	content: '';
	background: #e1e7e8;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 20px;
	border-radius: 50%;
	opacity: 1 !important;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.slick-dots li:focus button:before,
.slick-dots li:hover button:before {
	background: #2c88ca;
}

li.slick-active button:before {
	background: #f05a25;
}

.slick-arrow {
	font-size: 2.2rem;
	background: none;
	padding: 0;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #2c88ca;
}

.slick-arrow:hover,
.slick-arrow:focus {
	color: #f05a25;
	background: none;
}

.slick-slide {
	outline: none;
}

.slick-slider {
	visibility: hidden;
}

.slick-slider.slick-initialized {
	visibility: visible;
}

/* GENERAL > Utility Classes */
.row,
.row-narrow,
.row-wide {
	max-width: 1360px;
	margin-right: auto;
	margin-left: auto;
}

.row-wide {
	max-width: 1700px;
}

.row-narrow {
	max-width: 1030px;
}

.row:after {
	clear: both;
}

.row:after,
.row:before {
	display: table;
	content: ' ';
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-order: 1;
	order: 1;
}

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

}

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

}

.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0;
}

.no-min-height {
	min-height: 0;
}

.center,
.text-center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.buttons-container>* {
	margin-right: 1%;
}

.buttons-container>*:last-child {
	margin-right: 0;
}

.small-text {
	font-size: 0.9rem;
}

.add-margin-top {
	margin-top: 40px;
}

.small-margin-left {
	margin-left: 8px;
}

.small-margin-right {
	margin-right: 8px;
}

.no-decoration {
  text-decoration: none;
}

.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text h1,
.light-text h2,
.light-text h3,
.light-text h4,
.light-text p,
.light-text span,
.light-text li {
	color: #fff;
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
}

.header-mobile {
	background-color: transparent;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.scrolled .header-mobile {
	background-color: #262731;
}

.header>.row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.header-logo {
	display: flex;
	align-items: center;
}

.header-logo img {
	margin: 0 auto;
	display: block;
	width: 100%;
	height: 42px;
}

.scrolled .header-logo img {
	height: 26px;
}

.header-mobile-inner {
	display: flex;
	padding: 14px 8px;
	justify-content: space-between;
}

.header-mobile-right {
	display: flex;
	justify-content: flex-end;
	flex: 1;
	margin-left: 20px;
}


#header-mobile-right-search {
	color: #2c88ca;
}

#open-mobile-menu {
	color: #f05a25;
}

.header-mobile-right-button {
	width: 50px;
	height: 40px;
	background: none;
	padding: 0;
	font-size: 1.4rem;
}

.header-mobile-right-button:hover,
.header-mobile-right-button:focus {
	background: none !important;
	color: #fff !important;
}


@media screen and (min-width: 600px) {
	#header-mobile-right-search {
		margin-right: 20px;
	}

	.header-mobile-right-button {
		font-size: 1.5rem;
	}

}
@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-inner {
		display: flex;
		padding: 25px 15px;
		justify-content: space-between;
		align-items: center;
	}

	.header-desktop .header-logo-white {
		display: block;
		height: auto;
		width: 490px;
	}

	.header-desktop .header-logo-color {
		display: none;
	}

	body.scrolled .header-desktop .header-logo-white {
		display: none;
	}

	body.scrolled .header-desktop .header-logo-color {
		display: block;
	}

	body.scrolled .header-desktop {
		background: #fff;
		border-bottom: 1px solid #2c88ca;
	}

	body.scrolled .header-inner {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	body.scrolled .main-navigation-menu>li>a {
		color: #262731;
	}

	body.scrolled .main-navigation-menu>li>a:hover,
	body.scrolled .main-navigation-menu>li>a:focus {
		color: #2c88ca;
	}

	.header-right {
		display: flex;
		padding-left: 5%;
		align-items: flex-end;
	}

	#desktop-navigation {
		display: flex;
		align-items: center;
	}
}

/* HEADER > Header Search Bar */
.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: #2c88ca;
	padding: 12px 0;
	width: 100%;
	opacity: 0;
	z-index: 3;
	-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;
}

.ps219sw17 {
	color: blue
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-family: 'Red Hat Display', sans-serif;
	font-size: 1.1rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

#header-search-input::-webkit-input-placeholder {
	color: #e1e7e8;
}

#header-search-input:-ms-input-placeholder {
	color: #e1e7e8;
}

#header-search-input::-ms-input-placeholder {
	color: #e1e7e8;
}

#header-search-input::placeholder {
	color: #e1e7e8;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	font-size: 1.3rem;
	color: #000;
	white-space: pre;
	background: none;
}

.header-search button:hover,
.header-search button:focus {
	color: #fff;
}

.header-search-submit {
	margin: 0 1%;
}

.header-search-submit span {
	display: none;
}

#header-search-open {
	font-size: 1.2rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	background: none;
	color: #2c88ca;
}

#header-search-open:hover,
#header-search-open:focus {
	color: #f05a25;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #262731;
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: #fff;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
	font-weight: 400;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

body .searchwp-live-search-results-showing {
	padding: 15px;
	background: #e4e4e4;
	box-shadow: none;
	border-radius: 0;
}

body .searchwp-live-search-result p {
	padding: 0;
	border-bottom: none;
	margin-bottom: 6px;
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu>li {
	margin-right: 32px;
	padding-bottom: 14px;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 220px;
	margin: 0;
}

.main-navigation-menu .sub-menu:before {
	width: 20%;
	max-width: 100px;
	height: 4px;
	background-color: #e1e7e8;
	position: absolute;
	content: '';
	left: 0;
	bottom: 100%;
}

.main-navigation-menu>a:hover+.sub-menu,
.main-navigation-menu>a:focus+.sub-menu,
.main-navigation-menu>li.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}
.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover>a {
	color: #2c88ca;
}

.main-navigation-menu>li>a {
	display: block;
	font-weight: 400;
	text-transform: uppercase;
	height: 100%;
	font-family: 'Red Hat Display', sans-serif;
	letter-spacing: 1px;
	color: #fff;
	line-height: 1.0;
	font-size: 0.9rem;
}

@media screen and (min-width: 1366px) {
	.main-navigation-menu>li {
		margin-right: 45px;
	}
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
	background: #262731;
	padding: 0 15px;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#desktop-navigation .sub-menu li a {
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
	display: block;
	padding: 10px;
	padding-left: 0;
	line-height: 1.0;
	border-bottom: 1px solid #4d4f63;
}

#desktop-navigation .sub-menu li:last-child a {
	border-bottom: none;
}

#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
	color: #2c88ca;
}

#desktop-navigation .sub-menu li.active {
	color: #2c88ca;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	display: none;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu,
#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
}

#container:before {
	z-index: 99;
	content: "";
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

#container.active {
	cursor: pointer;
}

#container.active:before {
	opacity: 1;
}

#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color: #262731;
	opacity: 0;
}

#mobile-navigation,
#mobile-navigation .sub-menu {
	display: block;
	height: 100vh;
	top: 0;
	right: -100%;
	width: 70%;
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-moz-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-ms-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	-o-transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
	transition: all 300ms cubic-bezier(0, 0, 0, 0.96);
}

#mobile-navigation a,
#mobile-navigation .mobile-navigation-title {
	padding-left: 20px;
}

#mobile-navigation.active {
	right: 0;
	opacity: 1;
}

#mobile-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 1.0rem;
	font-weight: 400;
	font-family: 'Red Hat Display', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: #2c88ca;
}

#mobile-navigation ul {
	margin: 0;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid #fff;
}

#mobile-navigation ul li:last-of-type {
	border: none;
}

#mobile-navigation ul li:before {
	display: none;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
	right: 0;
}

#mobile-navigation .sub-menu {
	margin: 0;
	position: fixed;
	background-color: #000;
	z-index: 1;
	overflow: auto;
}

.mobile-navigation-title {
	background-color: #fff;
	margin: 0;
	padding-top: 8px;
	padding-bottom: 8px;
	text-transform: uppercase;
}

.mobile-navigation-next {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 20%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}

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

	#mobile-navigation,
	#mobile-navigation .sub-menu {
		width: 55%;
	}
}

/*******************************************************************************************
FOOTER - Footer styles shared between modules
*******************************************************************************************/

/* TEMPLATES > Footer */
.footer {
	padding: 20px 0;
	text-align: center;
	background: #000;
}

.footer-inner a,
.footer-inner p {
	color: #fff;
	font-weight: 400;
	text-decoration: none;
}

.ps219sw17 {
	color: blue
}

.footer-inner a:hover,
.footer-inner a:focus {
	text-decoration: underline;
	color: #2c88ca;
}

.footer-social a {
	margin-right: 14px;
}

.footer-social a:hover,
.footer-social a:focus {
	text-decoration: none;
	color: #2c88ca;
}

.footer-social a:last-of-type {
	margin-right: 0;
}

.footer-inner p {
	position: relative;
	display: inline-block;
	margin: 0 10px 0 0;
	padding-right: 16px;
	font-size: 0.9rem;
}

.footer-inner p:after {
	position: absolute;
	right: 0;
	top: 6px;
	height: 14px;
	width: 1px;
	background: #fff;
	content: '';
}

.footer-inner p:last-of-type {
	margin-right: 0;
	padding-right: 0;
}

.footer-inner p:last-of-type:after {
	display: none;
}


.home-footer .footer-inner {
	text-align: center;
}

.home-footer .row {
	max-width: none;
	width: 100%;
}


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

	.home-footer {
		background: none;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.home-footer .footer-inner {
		text-align: left;
	}
}

/*******************************************************************************************
CONTENT - Middle-of-page structure
*******************************************************************************************/

/* CONTENT > Banner */
.banner {
	height: 240px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	-ms-background-position-x: 50%;
	background-position-x: 50%;
}

.banner.banner-short {
	height: 90px;
	background-image: url(images/_banner_short.jpg);
}

.banner:after {
	content:"";
	position:absolute;
	width:100%;
	height:35%;
	top:0;
	left:0;
	background: rgb(15,18,45);
	background: linear-gradient(180deg, rgba(15,18,45,1) 13%, rgba(15,18,45,0) 100%);
	pointer-events: none;
}

.attorneys-staff-template .banner {
	height: auto;
	max-height: none;
	padding: 75px 0 0;
}

.attorneys-staff-template .banner:after {
	opacity: 0.75;
}

.banner img {
	position: relative;
	width: 100%;
}

.banner>.row {
	height: 100%;
}

.banner-inner {
	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: 2.5rem;
	color: #fff;
	z-index: 1;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 0;
	letter-spacing: 8px;
	text-align: center;
	font-family: 'Red Hat Display', sans-serif;
}



a > .banner-title {
  font-weight: 400;
}

#main .banner-title {
	margin-bottom: 50px;
	color: #262731;
}

@media screen and (min-width: 768px) {
	.banner-title {
		font-size: calc(3rem + 2vw);
	}
}

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

	.banner {
		height: 50vh;
		max-height: 450px;
		margin-top: 0;
		background-position-y: 50%;
	}

	.banner.banner-short {
		height: 130px;
		background-position-y: 50%;
	}
}

 .page-id-5023 .banner-title {
	font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
 .page-id-5023 .banner-title {
	font-size: calc(3rem + 2vw);
  }
}

}
@media screen and (max-height: 700px) and (min-width: 1025px) {
}


/* CONTENT > Main */
main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
}

main.content-background {
	background-image: url(images/_background_content.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 100%;
}

.single-practices main {
	padding: 0;
}


.page-template-template-practices main.content-background {
	background-image: url(images/_background_shapes.jpg);
}

.no-banner main {
	padding-top: 180px;
}

.content,
.sidebar {
	width: 100%;
}

.content {
	padding-right: 15px;
	margin-bottom: 60px;
}

.content img {
	max-width: 100%;
}

.content.full-width {
	float: none;
}

.content h1,
.title-border-bottom {
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: 2px solid #2c88ca;
}

.content p.indent {
	margin-left: 60px;
}

.content section {
	margin-bottom: 60px;
}

.content section:last-of-type {
	margin: 0;
}

/* CONTENT > Sidebar */
.sidebar section ul {
	margin-bottom: 45px;

}

section.no-underline ul {
	border: none;
}

section.no-underline ul:last-of-type {
	padding: 0;
}

.sidebar section {
	margin-bottom: 60px;
}

.sidebar section ul li {
	position: relative;
	padding-bottom: 8px;
	padding-top: 8px;
	padding-left: 0;
	font-family: 'Red Hat Display', sans-serif;
	border-bottom: 1px solid #aeaeae;
}

.sidebar section ul li:before {
	position: absolute;
	color: #f05a25;
	content: "\f0da";
	left: 0;
}


.sidebar li:first-child {
	border-top: 1px solid #aeaeae;
}

.sidebar li:before {
	display: none;
}

.sidebar li a {
	position: relative;
	font-weight: 500;
	padding-left: 20px;
	color: #262731;
	text-decoration: none;
}

.sidebar li a:before {
	content: '';
	width: 4px;
	height: 14px;
	background-color: #262731;
	top: 7px;
	position: absolute;
	left: 0;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.sidebar li a:hover,
.sidebar li a:focus {
	color: #f05a25;
}

.sidebar li a:hover:before,
.sidebar li a:focus:before {
	background-color: #f05a25;
}

.sidebar section ul li ul {
	padding-left: 20px;
	margin: 0;
}

.sidebar-form {
	position: relative;
}

.sidebar-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	font-size: 1.1rem;
	padding: 0 12px;
}

.sidebar input,
.sidebar select {
	border: 1px solid #2c88ca;
}

@media screen and (min-width: 768px) {
	main,
	.single-practices main {
		padding: 80px 0;
	}

	.single-attorneys main {
		padding-top: 40px;
	}

	.content {
		padding-right: 75px;
		width: 65%;
		margin-bottom: 0;
	}

	.content.full-width {
		width: 100%;
		padding-right: 15px;
	}

	.sidebar {
		width: 35%;
		float: right;
		clear: none;
		padding-left: 0;
	}

	#heading-anchors {
		display: block;
	}
}

/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/
.post {
	padding: 0;
	margin: 0 0 80px;
}

.post:last-child {
	border: none;
	padding-bottom: 0;
}

.post-head h2 a {
	color: #262731;
}

.post-head h2 a:hover,
.post-head h2 a:focus{
	color: #f05a25;
}

.post-head,
.post-body {
	margin-bottom: 30px;
}

.ps219sw17 {
	color: blue
}

.post-head .button {
	padding: 5px 10px;
	font-size: 0.7rem;
}

.post-body {
	display: block;
}

.single-post .post-body {
	display: block;
}

.post-head {
	border-bottom: 2px solid #2c88ca;
	padding-bottom: 30px;
	display: flex;
}

.post-head h1,
.post-head h2,
.post-head h2 a {
	font-weight: 400;
	text-transform: none;
	font-size: 1.8rem;
	margin-bottom: 0;
	padding: 0;
	border: 0;
	line-height: 1.2;
}

.post-body-related-attorney .attorney-result-pop {
	display: block;
}

.post-head-info {
	padding-bottom: 25px;
}

.post-head-info span,
.post-head-info a {
	font-size: 0.8rem;
	color: #262731;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 0;
}

.post-head-info i {
	margin: 0 5px;
}

.post-head-info a:hover,
.post-head-info a:focus {
	color: #000;
}

.post-head-info-upper-authors a:after {
	content: ",";
}

.post-head-info-upper-authors a:last-of-type:after {
	display: none;
}

.post-head-info-categories span a,
.post-head-info-upper span {
	margin-bottom: 0;
	position: relative;
	padding-right: 10px;
	margin-right: 6px;
}

.post-head-info-categories span a:last-of-type,
.post-head-info-upper span:last-of-type {
	margin-right: 0;
	padding-right: 0;
}

.post-head-info-upper-authors:before,
.post-head-info-categories span a:after,
.post-head-info-upper span:after {
	content: '';
	width: 1px;
	height: 12px;
	background: #262731;
	position: absolute;
	right: 0;
	top: 4px;
}

.post-head-info-upper-authors:before {
	right: calc(100% + 12px);
}

.post-head-info-upper-date:after {
	display: none !important;
}

.post-head-info-categories span a {
	position: relative;
}

.post-head-info-categories span a:last-of-type:after,
.post-head-info-upper span:last-of-type:after {
	display: none;
}

.post-body-image img {
	max-width: 100%;
}

.post-body-image {
	margin-bottom: 8px;
}

.post-body-excerpt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.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 a {
	font-weight: 400;
}

.content img.alignleft {
	float: left;
	margin: 0 30px 30px 0;
}

.content img.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

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


	.post-body-image {
		margin: 0 30px 0 0;
	}
}

/* BLOG > Page Navigation */
.wp-pagenavi {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
	font-weight: 600;
	text-decoration: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	color: #262731;
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus,
.wp-pagenavi span.current {
	color: #262731;
	background-color: #2c88ca;
}

.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	display: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: auto;
	padding: 0 15px;
	color: #f05a25;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.wp-pagenavi {
		justify-content: flex-start;
	}
}

/* CONTACT */
.contact-office {margin-bottom: 60px;}

.contact-office-contact {margin-bottom: 30px;}

.contact-office-mailing-address p {
	margin: 0;
}

.contact-office-mailing-address {
	margin-bottom: 30px;
}

.contact-office-mailing-address h3 {margin: 0 0 2px;}

.contact-office-contact span {
	display: block;
}

@media screen and (min-width: 900px) {
	.contact-offices {
		display: flex;
		justify-content: space-between;
	}

	.contact-office {
		max-width: 320px;
	}
}

/* PRACTICES */
.content-tab {
	display: none;
}

.content-tab.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.sub-navigation a,
.content-tab-activate {
	background: none !important;
	position: relative;
	color: #262731;
	line-height: 1.0;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0 0 20px;
	font-family: 'Red Hat Display', sans-serif;
	margin: 0 20px;
	text-decoration: none;
}

.sub-navigation a:hover,
.sub-navigation a:focus,
.content-tab-activate.active,
.content-tab-activate:hover,
.content-tab-activate:focus {
	color: #f05a25;
}

.content-tabs-desktop,
.sub-navigation {
	background: #e1e7e8;
	padding-top: 20px;
}

.sub-navigation {
	padding: 20px;
}

.sub-navigation a {
	float: left;
	padding: 0;
	line-height: 1.3;
}

.blog-sub-navigation-inner {
	display: flex;
	flex-wrap: wrap;
}

.content-tab-activate.active:before {
	height: 3px;
	background: #f05a25;
	width: 100%;
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.content-tabs-desktop {
	display: none;
}

.mobile-tab-activate {
	width: 100%;
	position: relative;
	padding: 20px 0;
	text-align: left;
	letter-spacing: 0.5px;
	color: #fff;
	background: #2c88ca;
	font-family: 'Red Hat Display', sans-serif;
	margin-bottom: 8px;
}

.mobile-tab-activate.active {
	color: #000;
	background: #e1e7e8;
}

.mobile-tab-activate:hover,
.mobile-tab-activate:focus {
	color: #000;
	background: #cdd5d6;
}

.mobile-tab-activate.active {
	margin-bottom: 20px;
}

.mobile-tab-activate:before {
	position: absolute;
	left: -15px;
	right: -15px;
	top: 0;
	content: '';
	background: #2c88ca;
	height: 100%;
	z-index: -1;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.mobile-tab-activate:after {
	position: absolute;
	right: 5px;
	top: calc(50% - 8px);
	font-size: 0.7rem;
	content: '\f067';
	font-family: 'Font Awesome 5 Pro';
}

.mobile-tab-activate.active:after {
	content: '\f068';
}

.mobile-tab-activate.active:before {
	color: #fff;
	background: #e1e7e8;
}

.mobile-tab-activate:hover:before,
.mobile-tab-activate:focus:before {
	background: #cdd5d6;
}

.attorney-updates-block {
	margin-bottom: 60px;
}

.attorney-updates-block:last-of-type {
	margin-bottom: 0;
}

.sub-navigation a:after,
.content-tab-activate:after {
	width: 1px;
	height: 13px;
	background: #000;
	position: absolute;
	right: -20px;
	top: 5px;
	content: '';
}

.sub-navigation a:first-child,
.content-tab-activate:first-child {
	margin-left: 0;
}

@media screen and (min-width: 768px) {
	.content-tabs-desktop {
		display: block;
	}

	.mobile-tab-activate {
		display: none;
	}
}

.breadcrumbs-container {
	margin-bottom: 20px;
}
.breadcrumbs-container a {
	text-transform: none;
	color: #262731;
	font-size: 0.8rem;
	font-family: 'Red Hat Display', sans-serif;
	text-decoration: none;
	margin-right: 12px;
}

.breadcrumbs-container a:hover,
.breadcrumbs-container a:focus {
	color: #f05a25;
}

.breadcrumbs-container a:after {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	margin-left: 6px;
}

.breadcrumbs-container a:last-of-type:after {
	display: none;
}

/* PRACTICES LANDING */
.practice-box-single {
	padding: 30px;
	margin-bottom: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.practice-box-single.active:before {
	transform: translateX(0);
}

.practice-box-single.active:after {
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: rgb(38,39,49);
	background: linear-gradient(0deg, rgba(38,39,49,1) 41%, rgba(38,39,49,0) 100%);
	pointer-events: none;
}

.practice-box-title {
	background: none !important;
	font-family: 'Red Hat Display', sans-serif;
	position: relative;
	padding: 0 0 32px;
	display: block;
	width: 100%;
	text-align: left;
	letter-spacing: 1px;
	font-size: 1.1rem;
	z-index: 1;
}

.practice-box-title:hover,
.practice-box-title:focus {
	color: #f05a25;
}

.practice-box-title:after {
	content: '\f067';
	font-family: 'Font Awesome 5 Pro';
	font-size: 1.3rem;
	color: #f05a25;
	position: absolute;
	bottom: 0;
	left: 0;
}

.practice-box-single.active .practice-box-title {
	color: #fff;

}

.practice-box-single.active {
	background-size: cover;
	background-position-x: 100%;
}

.practice-box-single.active:hover,
.practice-box-single.active:focus {

}

.practice-box-single.active .practice-box-title:after {
	content: '\f068';
}

.practice-box-children {
	display: none;
}

.practice-box-single.active .practice-box-children {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
	margin-top: 30px;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.practice-box-children a {
	color: #fff;
	text-align: left;
	font-size: 0.9rem;
	font-weight: 400;
	text-decoration: none;
	margin-left: 18px;
	display: block;
}

.practice-box-children li {
	position: relative;
	margin-bottom: 2px;
}

.practice-box-children li:before {
	content: '\f0da';
	font-family: 'Font Awesome 5 Pro';
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

.practice-box-children li:hover:before,
.practice-box-children li:focus:before,
.practice-box-children a:hover,
.practice-box-children a:focus {
	color: #f05a25;
}

@media screen and (min-width: 900px) {
	.practice-box-list {
		display: flex;
		flex-wrap: wrap;
	}

	.practice-box-single.active .practice-box-children {
		padding-left: 40px;
	}

	.practice-box-single {
		width: 48%;
		float: left;
		margin-right: 2%;
		padding: 40px 50px;
		background-position-y: 20%;
	}

	.practice-box-single:nth-child(-n+2) {
		min-height: 400px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media screen and (min-width: 1025px) {
	.practice-box-title {
		max-width: 250px;
	}
}

/* ATTORNEY LANDING */
.attorney-search-form-container h2 {
	display: flex;
	align-items: center;
}

.attorney-search-form-container h2 i {
	margin-right: 15px;
}
.attorney-search-form-input {
	position: relative;
	display: flex;
}

.attorney-search-form-input label,
.attorney-search-form-input input {
	color: #112a31;
}

.attorney-search-form-input label {
	position: absolute;
	left: 16px;
	top: 16px;
	pointer-events: none;
}

.attorney-search-form-input input {
	border: 1px solid #21383f;
	height: 55px;
	border-right: none;
	-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-search-form-input input:hover,
.attorney-search-form-input input:focus {
	background: #f1f1f1;
	border-color: #2a829c;
}

.attorney-search-form-input.active label {
	display: none;
}

.attorney-search-form-input button {

}

.attorney-search-form-container {
	margin-bottom: 60px;
}

.attorney-result a {
	text-decoration: none;
	font-weight: 400;
	color: #262731;
}

.attorney-result a:hover,
.attorney-result a:focus {
	text-decoration: underline;
	color: #f05a25;
}

.attorney-result-pop-contact i,
.attorney-result-cell i {
	color: #f05a25;
	margin-right: 14px;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

.attorney-result-name {
	margin-bottom: 15px;
}

.attorney-result {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e1e2e4;
}

.attorney-result-name {
	position: relative;
}

.attorney-result-cell p {
	margin: 0;
}

.attorney-result-name p,
.attorney-result-name a {
	font-weight: 600;
}

.attorney-result-pop {
	display: none;
	width: auto;
	background: #262731;
	padding: 30px;
}

.attorney-result-pop:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 14px 15px 0;
	border-color: transparent #262731 transparent transparent;
	content: '';
	right: calc(100% - 1px);
	top: calc(50% - 15px);
	position: absolute;
}

.attorney-result-pop-image {
	background: #fff;
	display: flex;
	align-items: center;
}

.attorney-result-pop-inner {
	display: flex;
	height: 100%;
	align-items: center;
}

.attorney-result-pop-info {
	padding-left: 45px;
	flex: 1;
}

.attorney-result-pop-inner p {
	margin: 0;
	font-size: 0.9rem;
}

.attorney-result-pop-info a {
	font-weight: 700;
	color: #fff;
}

.attorney-result-pop-blog a {
	font-weight: 400;
	color: #262731;
}

.attorney-result-pop-image a {
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

.attorney-result-pop-image a:focus,
.attorney-result-pop-image a:hover {
	opacity: 0.8;
}

.attorney-result-pop-assistant {
	margin-top: 20px;
	display: block;
}

.attorney-result-pop-assistant span {
	margin-right: 20px;
}

.attorney-result-pop-info h4 {
	margin-bottom: 10px;
	letter-spacing: 1.5px;
}

.attorney-search-results {
	max-width: 1270px;
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: auto;
}

.attorney-search-results:last-child {
	margin-bottom: 0;
}


.attorney-result-pop-blog {
	background: none;
	padding: 10px;
	margin-bottom: 0;

  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}

.attorney-result-pop-blog:last-of-type {
	margin-bottom: 30px;
}

.attorney-result-pop-blog .attorney-result-pop-image img {
	/* max-width: 90px; */
  max-width: 75px;
	border-radius: 50%;
	border: 2px solid #2c88ca;
}

.attorney-result-pop-blog .attorney-result-pop-info {
	/* padding-left: 30px; */
  padding-left: 16px;
}

.attorney-result-pop-blog .attorney-result-pop-info h4 {
	margin-bottom: 0;
  font-size: 0.8rem
}

@media screen and (min-width: 1025px) {
	.attorney-result-name p,
	.attorney-result-name a {
		font-weight: 400;
	}

	.attorney-result {
		display: flex;
		align-items: center;
	}

	.attorney-result-name {
		margin-bottom: 0;
	}

	.attorney-result-name-link {
		width: 100%;
		display: block;
	}

	.attorney-result-name.active .attorney-result-pop {
		display: block;
		-webkit-animation: fadeIn 200ms ease-out;
		animation: fadeIn 200ms ease-out;
		position: absolute;
		top: calc(50% - 115px);
		left: calc(100% - 60px);
		height: 230px;
		min-width: 600px;
	}

	.attorney-result-cell {
		flex: 1;
	}

	.attorney-result-vcard {
		width: 50px;
		flex-grow: 0;
	}

	.attorney-result-vcard a:hover i,
	.attorney-result-vcard a:focus i {
		color: #2c88ca;
	}

	.attorney-result-center {
		text-align: center;
	}

  .attorney-result-pop-blog {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ATTORNEY BIO */


.attorneys-staff-template .banner-inner {
	position: relative;
	z-index: 1;
	padding: 0;
}

.attorney-banner-left {
	display: flex;
	align-items: flex-end;
}

.ps219sw17 {
	color: blue
}

.attorney-banner-left,
.attorney-banner-right {
	width: 100%;
}

.attorney-banner-right {
	background: #262731;
	padding: 30px 15px;
}

.attorney-banner-name {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid #2c88ca;
}

.attorney-banner-name h1 {
	letter-spacing: 3px;
	margin: 0 0 4px;
}

.attorney-banner-position {
	margin: 0;
	font-size: 1.0rem;
	letter-spacing: 2px;
}

.attorney-banner-buttons {
	display: flex;
	margin-top: 30px;
}

.attorney-banner-buttons a {
	border: 1px solid #fff;
	width: 42px;
	height: 42px;
	text-align: center;
	line-height: 42px;
	color: #fff;
	margin-right: 10px;
}

.attorney-banner-buttons a:hover,
.attorney-banner-buttons a:focus {
	background: #2c88ca;
}

.attorney-banner-buttons a:last-of-type {
	margin-right: 0;
}

.attorney-banner-info p {
	margin-bottom: 0;

}

.attorney-banner-info p span:first-of-type {
	color: #f05a25;
	min-width: 70px;
	display: inline-block;
}

.attorney-banner-info p a {
	color: #fff;
	font-weight: 400;
}

.banner .attorney-bio-photo {
	width: auto;
	max-width: 100%;
	display: none;
	margin: 0 auto;
}

img.attorney-bio-photo-mobile {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.banner .attorney-bio-photo {
		display: block;
	}

	.attorney-bio-photo-mobile {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.attorneys-staff-template .banner {
		height: 650px;
	}

	.attorney-banner-left {
		align-self: flex-end;
	}

	.attorneys-staff-template .banner-inner {
		display: flex;
		flex-wrap: nowrap;
	}

	.banner .attorney-bio-photo {
		max-height: none;
	}

	.attorney-banner-right {
		padding: 50px 40px;
		max-width: 650px;
		background: rgba(38, 39, 49, 0.94);
	}

	.attorney-banner-info {
		position: relative;
	}

	.attorney-banner-buttons {
		position: absolute;
		right: 0;
		bottom: -25px;
		margin: 0;
	}
}

/* HOME */
.home-slider-single-background {
	height: 100%;
	width: 100%;
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
	background-position-x: 80%;
}

.home-slider-single-tagline-container {
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	align-items: flex-end;
}

.home-slider-single-tagline-container,
.home-slider-single-inner,
.home-slider,
.home-slider-single {
	min-height: 600px;
}

.home-slider .slick-dots {
	text-align: center;
	bottom: 15px;
}

.home-slider-single-inner {
	position: relative;
	z-index: 1;
}

.home-slider-single {
	position: relative;
	background: none !important;
}


.home-slider-single-tagline {
	margin: 0 auto 120px;
	text-align: center;
}

.home-slider-single-inner,
.home-slider-single-inner .columns,
.home-slider-single-inner .row {
	height: 100%;
}

.home-hero {
	background: #000;
}


.home-slider-single-tagline h2 {
	margin-bottom: 0;
}

.home-slider-single-tagline strong {
	color: #fff;
	display: block;
	font-size: 1.3rem;
	margin: 0;
	font-weight: 400;
	padding: 2px 0;
	letter-spacing: 1.5px;
	overflow: hidden;
}

.home-slider-single-tagline .tagline-large {
	line-height: 0.95;
}

.home-slider-single-tagline .tagline-large span {
	font-size: 150%;
	color: #fff;
	display: inline-block;
	opacity: 0;
}

.home-slider-single-tagline .tagline-large span:first-of-type {
	margin-left: -10px;
}

.home-slider-single-tagline-container {
	height: 100%;
	display: flex;
	align-items: flex-end;
}

.assoc-anchor {
	scroll-margin-top: 110px;
}

@media screen and (min-width: 600px) {
	.home-slider-single-tagline strong {
		font-size: 1.4rem;
	}

	.home-slider-single-tagline .tagline-large span {
		font-size: 325%;
	}
}


@media screen and (min-width: 1025px) {
	.home-header {
		opacity: 0;

	}

	.home-slider .slick-dots {
		text-align: right;
	}

	.home-slider-single-tagline {
		margin: 0;
		text-align: left;
	}

	.home-slider-single-tagline-container {
		align-items: center;
	}

	.home-slider-single-tagline strong {
		padding-left: 10px;
	}

	.home-slider-single-tagline .tagline-large span {
		font-size: 7.1rem;
	}

	.home-slider .slick-dots {
		text-align: right;
		bottom: 70px;
		right: 70px;
		z-index: 1;
		opacity: 0;
	}


	.tagline-large span {
		opacity: 0;
	}

	.home-hero,
	.home-slider,
	.home-slider-single {
		height: 100vh;
	}
}

/* PDF */

.pdf-only {
  display: none !important;
}

/* Updated Featured Image  */

.post-body-image img{
	max-width: 100%;
/* 	height: 200px; */
	margin-top: 20px;
	max-height: 500px;
}

/* FEATURES > Accordion */
.accordion-item {
	border-bottom: 1px solid #C0C3D3;
	margin-bottom: 35px;
}

.accordion-item-title {
	padding: 20px 15px;
	font-size: 1.0rem;
	margin: 0;
	position: relative;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 600;
	color: #000;
	line-height: 30px;
	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;
	justify-content: space-between;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
}

.accordion-item-title:after {
	content: "\f107";
	font-family: 'Font Awesome 5 Pro';
	line-height: 30px;
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
	text-align: center;
	color: #2c88ca;
}

.accordion-item.active:focus {
	outline: none;
}

.accordion-item-title:hover,
.accordion-item-title:focus {
	background: #e1e7e8;
}

.accordion-item.active .accordion-item-title:after {
	content: "\f106";
}

.accordion-item-content {
	display: none;
}

.accordion-item-content p {
	font-size: 0.9rem;
}

.accordion-item.active .accordion-item-content {
	display: block;
	-webkit-animation: fadeIn 200ms both;
	animation: fadeIn 200ms both;
}

.accordion-item-content>*:first-child {
	margin-top: 20px;
}

.accordion-item-content>*:last-child {
	margin-bottom: 35px;
}

/* FIXING BULLETED LIST SPACING ON POSTS  */
body.single-case .content .post-body ul li,
body.single-trade .content .post-body ul li,
body.single-post .content .post-body ul li{
	padding: 0 0 15px 20px;
}