/*
Theme Name: Genesis Sample
Theme URI: https://demo.studiopress.com/
Description: This is the sample theme created for the Genesis Framework.
Author: StudioPress
Author URI: https://www.studiopress.com/

Version: 3.3.1

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

/* 5/10/21 */

/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

[hidden],
template {
	display: none
}

/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

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

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fff;
	color: #333;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	overflow-x: hidden;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: #0073e5;
	text-decoration: none;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
	outline: none;
}

p {
	margin: 0 0 16px;
	padding: 0;
}

p:last-child {
	margin: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Crimson Pro', serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 27px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

figure.wp-caption {
	width: 100% !important;
	text-align: center;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 2px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 2px solid #d6aa6d;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: #173657;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 20px 30px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
	line-height: 1;
	transition: 0.5s ease all;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
a.button:focus,
a.button:hover {
	background-color: #d6aa6d;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.site-container .gform_wrapper.gravity-theme .gfield input,
.site-container .gform_wrapper.gravity-theme .gfield select,
.site-container .gform_wrapper.gravity-theme .gfield textarea {
	padding: 16px;
	margin: 0;
	line-height: 1;
}

.site-container .sidebar .gform_wrapper.gravity-theme .gfield input,
.site-container .sidebar .gform_wrapper.gravity-theme .gfield select,
.site-container .sidebar .gform_wrapper.gravity-theme .gfield textarea {
	padding: 10px
}

.site-container .sidebar .gform_wrapper.gravity-theme .gfield_html {
	font-size: 12px;
	line-height: 1.25;
}

.site-container .gform_wrapper.gravity-theme .gform_footer,
.site-container .gform_wrapper.gravity-theme .gform_page_footer {
	padding-bottom: 0;
}

.site-container .gform_wrapper.gravity-theme .gfield_checkbox label,
.site-container .gform_wrapper.gravity-theme .gfield_radio label {
	font-size: 18px;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
	background-color: #f7f7f7;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.attorney-referral .content-sidebar-wrap,
.site-inner {
	clear: both;
	padding: 30px 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title,
.post-type-archive-team .site-inner .category-section h1.category-name {
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #183657;
	border-left: 4px solid #d6aa6d;
	padding-left: 15px;
}

.post-type-archive-client_reviews .archive-description>img,
.flexible-layout-testimonial-section .section-content>img,
.page-template-successes .site-inner .archive-content>img {
	border-radius: 10px;
	background-color: white;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	position: relative;
	padding: 10px;
	margin: 0 15px 0 0;
	border-top: 5px solid #183657;
	display: inline-block;
	vertical-align: middle;
}

.archive-description .rbl-shortcode.rbl-tagline {
	margin-top: 10px;
	display: block;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 10px;
	font-weight: 400;
	margin-top: 5px;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

pre {
	display: block;
	white-space: initial;
	font-family: 'Lato', sans-serif;
	font-size: 10px;
	text-align: center;
	margin: 10px 0 0 0;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget p:last-child,
.widget ul>li:last-of-type {
	margin-bottom: 0;
}

.widget ul>li {
	margin-bottom: 10px;
}

.widget ul>li:last-of-type {
	padding-bottom: 0;
}

.widget ol>li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

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

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form+p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons;
	/* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 42px;
	padding-top: 42px;
}

.wp-custom-logo .title-area {
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
	max-width: 115px;
}

.title-area a.custom-logo-link {
	display: inline-block;
	vertical-align: middle;
}

.site-title {
	font-size: 32px;
	font-weight: 600;
	line-height: 0.9;
	margin-bottom: 0;
	display: inline-block;
	vertical-align: middle;
	color: #183657;
	font-family: 'Crimson Pro', serif;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #183657;
	text-decoration: none;
}

.wp-custom-logo .site-container .site-header .title-area {
	padding: 10px 0;
	display: flex;
	align-items: center;
	max-width: none;
}

.site-header .title-area a:first-of-type {
	order: 2;
}

.site-description {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.site-header .header-widget-area .widget.widget_media_image {
	flex: 1;
	float: left;
}

.widget_media_image .widget-wrap {
	width: fit-content;
	position: relative;
	padding: 0 10px;
}

.widget_media_image .widget-wrap:before {
	content: '';
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #183657;
	z-index: 0;
	height: calc(100% + 40px);
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.site-header .header-widget-area .widget.widget_media_image img {
	position: relative;
}

/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: #333;
	display: block;
	font-size: 16px;
	font-weight: 700;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item>a,
.genesis-nav-menu .sub-menu .current-menu-item>a:focus,
.genesis-nav-menu .sub-menu .current-menu-item>a:hover {
	color: #0073e5;
	text-decoration: none;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover>.sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item>a:focus+ul.sub-menu,
.menu .menu-item.sfHover>ul.sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-responsive-menu {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover>.sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	outline: none;
}

.menu-toggle:focus,
.menu-toggle:hover {
	background-color: #183657;
	border-width: 0;
	color: #fff;
}

.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	color: #333;
}

.menu-toggle {
	padding: 15px 5%;
	position: relative;
	z-index: 1000;
	background-color: #183657;
	display: block;
	width: 100%;
	border-radius: 0;
	color: white;
	text-align: right;
}

.menu-toggle.activated::before {
	content: "\f00d";
	color: white;
}

.menu-toggle::before {
	font-family: "font awesome 6 pro" !important;
	font-weight: 300;
	content: "\f0c9";
	font-size: 20px;
	width: 20px;
	height: 20px;
	--fa-secondary-opacity: 0.50;
	color: white;
	transition: 0.5s ease all;
}

.sub-menu-toggle {
	float: right;
	padding: 15px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
	background-color: transparent;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
	content: '\f107';
	font-family: "font awesome 6 pro" !important;
	background-color: transparent;
	font-weight: 500;
	font-size: 22px;
	color: #333;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
	line-height: 1;
	height: auto;
}

.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link i::before {
	color: #d6aa6d;
	font-size: 16px;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.site-container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
	content: '\f107';
	font-family: "font awesome 6 pro" !important;
	font-weight: 300;
	font-size: 24px;
	transition: 0.25s ease all;
}

.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-tabbed>ul.mega-sub-menu>li.mega-menu-item.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
	content: '\f105';
}

.site-container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns>ul.mega-sub-menu>li.mega-menu-item {
	width: 100%;
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 30px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 30px;
}

.entry-content ol>li {
	list-style-type: decimal;
}

.entry-content ul>li {
	list-style-type: disc;
}

.entry-content ol ul>li,
.entry-content ul ul>li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
	margin-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

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

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 30px;
}

.comment-list li {
	padding: 30px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul>li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar .widget:not(:last-of-type) {
	margin-bottom: 30px;
}

.sidebar p {
	margin-bottom: 20px;
}

.sidebar .flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.sidebar .flexcol {
	flex: 1;
}

.sidebar .widget.recent-blogs li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.sidebar .widget.recent-blogs:not(.team-members) li:not(:last-of-type) {
	margin-bottom: 20px;
}

.sidebar .widget.recent-blogs .post-image {
	padding-right: 15px;
}

.sidebar .widget.recent-blogs .post-image img {
	border-radius: 10px;
}

.sidebar .widget.recent-blogs .post-title {
	flex: 3;
	font-family: 'Crimson Pro', serif;
	font-size: 20px;
	line-height: 1.2;
}

.sidebar .widget.recent-blogs .post-title i {
	font-size: 18px;
	width: 18px;
	margin-right: 5px;
}

.sidebar .widget.recent-blogs .post-title a {
	color: #333;
}

.sidebar .widget.recent-blogs span.team-role {
	font-size: 16px;
	display: block;
	font-family: 'Lato', sans-serif;
}

.sidebar .widget {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
}

.sidebar .widget-title {
	font-weight: 400;
	margin-bottom: 10px;
	color: #183657;
	border-left: 4px solid #d6aa6d;
	padding-left: 15px;
}

.sidebar .widget .textwidget .rbl-shortcode.rbl-tagline:not(:last-child) {
	margin-bottom: 2rem;
	display: block;
}

.sidebar .widget .textwidget>.rbl-shortcode.rbl-tagline:not(:last-child) {
	font-size: 10px;
}

.single-team .accordion .disclaimer .rbl-shortcode.rbl-tagline {
	margin-bottom: 30px;
	display: block;
}

/* Page Loader
---------------------------------------------------------------------------------------------------- */
/*.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	height: 100vh;
	width: 100vw;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	opacity: 1;
	transition: 1.5s ease all;
}

.page-loader.loaded {
	opacity: 0;
	z-index: -1;
}

.lds-ring {
	position: relative;
	width: 120px;
	height: 120px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 80px;
	height: 80px;
	margin: 0;
	border: 5px solid #183657;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #183657 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.25s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.2s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}*/

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #151515;
	color: #ccc;
	clear: both;
	padding: 60px 0;
	font-size: 15px;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets .widget-title {
	color: white;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-widgets .rbl-shortcode a {
	color: #ccc;
}

.footer-widgets ul.sub-menu {
	display: none;
}

.footer-widgets ul.menu {
	column-count: 2;
}

.footer-widgets ul.menu>li {
	margin-bottom: 5px;
}

.footer-widgets a {
	color: #ccc;
}

.footer-widgets a:hover {
	color: #fff;
}

.footer-disclaimer {
	background-color: #151515;
	color: #999;
	font-size: 12px;
	padding: 10px 0 40px;
}

.footer-disclaimer a {
	color: #fff;
	text-decoration: underline;
}

.footer-disclaimer a:hover {
	text-decoration: none;
	color: #999;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #151515;
	color: #999;
	font-size: 12px;
	line-height: 1;
	padding: 15px 0 0;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer .wrap .nav-secondary a {
	color: #999;
	text-transform: uppercase;
	font-size: 12px;
	margin: 0;
	padding: 0 10px;
}

.site-footer .wrap .nav-secondary a:hover {
	color: white;
}

.site-footer .wrap .nav-secondary li:not(:last-of-type) a {
	border-right: 1px solid #999;
}

/* Floating CTA
---------------------------------------------------------------------------- */
.floating-cta {
	position: fixed;
	bottom: -40px;
	right: 40px;
	z-index: 99;
	opacity: 0;
	transition: 0.5s ease all;
}

.floating-cta.appear {
	bottom: 40px;
	opacity: 1;
}

.floating-cta a.button {
	background-color: #d6aa6d;
	border-radius: 30px;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
}

.floating-cta a.button:hover {
	background-color: #cb9345
}

.floating-cta a.button i {
	margin-right: 5px;
}

/* Site Footer
---------------------------------------------------------------------------- */
.office-locations-section {
	/*background-image: url('/wp-content/uploads/2021/06/office-location-image.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;*/
	background-color: #183657;
	color: white;
}

.office-locations-section .image-section {
	/*background: radial-gradient(rgba(24, 54, 87, 0.5), rgba(24, 54, 87, 0.75));*/
	padding: 40px 0;
}

.office-locations-section .section-title {
	flex-basis: 100%;
}

.office-locations-section .office-title {
	text-transform: uppercase;
	font-size: 36px;
	width: fit-content;
	background-color: #183657;
	margin: 0 auto 20px;
	padding: 0 30px;
	position: relative;
	text-align: center;
}

/* Mobile Fix **/
.office-locations-section .rbl-shortcode {
	position: relative;
}

.office-locations-section a,
.office-locations-section .rbl-shortcode a {
	color: white;
	position: relative;
	z-index: 9;
}

.office-locations-section .content-wrap {
	position: relative;
	padding: 20px;
}

.office-locations-section .content-wrap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	width: 100%;
	height: 80%;
	border: 3px solid white;
	border-radius: 10px;
}

/* JSMT Page Header
---------------------------------------------------------------------------- */
.jsmt-page-header {
	position: relative;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
}

.jsmt-page-header .image-section {
	position: relative;
	padding-bottom: 40%;
}

.page-id-1882 .jsmt-page-header .image-section {
	padding-bottom: 40%;
}

.page-id-1882 .jsmt-page-header .image-section img {
	object-position: bottom center;
}

.jsmt-page-header .image-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	overflow: hidden;
	margin: 0;
	right: 0;
	left: 0;
}

.jsmt-page-header .image-section img {
	position: relative;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.jsmt-page-header h1.page-title {
	margin: 0;
	line-height: 1;
	/*background: linear-gradient(45deg, #183657 60%, transparent);*/
	background-color: #183657;
	width: 100%;
	color: white;
	padding: 20px 5%;
	font-size: 26px;
	border-radius: 0;
}

/* Practice Area Archive
---------------------------------------------------------------------------- */
.post-type-archive .archive-description,
.blog .archive-description,
.archive .archive-description,
.single-team .team-news-articles .flexcol {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	margin-bottom: 15px;
}

.single-team .team-news-articles .flexcol {
	padding: 0;
}

.post-type-archive .flexcol .post-info,
.single-team .site-inner .blog-posts .item .post-info,
.post-type-archive-news_article .site-inner .flexcol .post-info,
.page-template-successes .reviews-section .flexcol .post-info,
.flexible-layout-press-section .press-faq-section .press-section .post-info,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .post-info,
.archive.tax-role .site-inner .flexcol .post-info,
.archive.category .site-inner .entry .post-info,
.single-team .team-news-articles .flexcol .post-info,
.single-team .team-client-reviews .flexcol .post-info {
	padding: 15px;
}

.blog .site-inner .entry .post-info {
	padding: 30px;
}

/* Practice Area Singles
---------------------------------------------------------------------------- */
.site-inner .entry {
	background-color: white;
	padding: 20px 5%;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	margin: 0;
}

.attorney-referral .entry .practice-area-faqs .section-title,
.single .entry .entry-footer .section-title {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ccc;
}

.single ul.practices-list>li,
.single-team .site-inner .sidebar .widget ul>li,
.tax-client_type .entry ul>li {
	position: relative;
	list-style-type: none;
	font-size: 16px;
	margin-bottom: 10px;
}

.single ul.practices-list>li::before,
.tax-client_type .entry ul>li::before {
	content: '\f105';
	font-family: "Font Awesome 6 Pro" !important;
	color: #173657;
	font-size: 15px;
	font-weight: 700;
	transition: 0.5s ease all;
	margin-right: 7px;
	display: inline-block;
}

.single ul.practices-list>li:hover::before,
.tax-client_type .entry ul>li:hover::before {
	color: #333;
}

.single ul.practices-list>li a {
	font-weight: 600;
}

.tax-client_type .entry ul>li {
	font-weight: 600;
	font-size: 20px;
}

.post-type-archive .site-inner .flexcol,
.blog .site-inner .entry,
.page-template-successes .verdicts-section .flexcol,
.page-template-successes .reviews-section .flexcol,
.flexible-layout-team-section .flexcol,
.flexible-layout-practice-areas-section .flexcol,
.flexible-layout-press-section .press-faq-section .press-section .flexbox,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol,
.archive.tax-role .site-inner .flexcol,
.archive.category .site-inner .entry,
.single-team .team-client-reviews .flexcol,
.single-team .team-past-verdicts .flexcol {
	margin: 20px 0;
	background-color: white;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	border-radius: 10px;
	position: relative;
}

/*
.post-type-archive .site-inner .flexcol.team-406:not(:first-of-type) {
    display: none;
}*/
.blog .site-inner .entry,
.archive.category .site-inner .entry {
	padding: 0;
	transition: 0.5s ease all;
}

.blog .site-inner .entry:hover {
	box-shadow: 0 0 30px rgb(51 51 51 / 35%);
}

/*.single-team .site-inner .blog-posts .item {
    box-shadow: 0 0 10px rgb(51 51 51 / 15%);
}*/
.single-team .site-inner .blog-posts .item .post-info {
	padding: 15px 0 0 0;
}

.accordion>ul>li.team-honors-and-awards h2:not(:first-child),
.accordion>ul>li.team-history h2:not(:first-child) {
	margin-top: 20px;
}

.archive-link a {
	display: block;
	margin-top: 20px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}

.post-type-archive .site-inner .flexcol a.post-link,
.single-team .site-inner .blog-posts .item a.post-link,
.blog .site-inner .entry a.post-link,
.news-slider .item .post-link,
.flexible-layout-practice-areas-section .flexcol .post-link,
.flexible-layout-press-section .press-faq-section .press-section .flexbox .post-link,
.flexible-layout-team-section .flexcol .post-link,
.rbl-shortcode.review .cat-link,
.archive.tax-role .site-inner .flexcol .post-link,
.archive.category .site-inner .entry .post-link,
.single-office_locations .entry .team-section .flexcol .post-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
}

.post-type-archive .site-inner .flexcol img,
.blog .site-inner .entry .flexcol img {
	border-radius: 10px 10px 0 0;
}

.single-team .site-inner .blog-posts .item img,
.post-type-archive-practice_areas .site-inner .flexcol img,
.post-type-archive .site-inner .flexcol .video-thumbnail img,
.post-type-archive-clients .site-inner .flexcol img,
.tax-client_type .site-inner .entry,
.flexible-layout-practice-areas-section .flexcol img,
.single-post .sidebar .video-thumbnail img,
.flexible-layout-video-section .flexcol .video-thumbnail img {
	border-radius: 10px;
}

.practice-area-image {
	min-height: 100%;
	position: relative;
	padding-bottom: 56.25%;
	z-index: 0;
}

.practice-area-image .image-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	overflow: hidden;
	margin: 0;
}

.practice-area-image .image-wrap img {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.post-type-archive-practice_areas .site-inner .flexcol .post-info,
.post-type-archive-clients .site-inner .flexcol .post-info,
.flexible-layout-practice-areas-section .flexcol .post-info {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: rgba(24, 54, 87, 0.75);
	border-radius: 10px;
	color: white;
	text-shadow: 0 0 10px rgb(51 51 51 / 50%);
	padding: 40px;
	transition: 0.5s ease all;
}

.post-type-archive-practice_areas .site-inner .flexcol:hover .post-info,
.post-type-archive-clients .site-inner .flexcol:hover .post-info,
.flexible-layout-practice-areas-section .flexcol:hover .post-info {
	background-color: rgba(24, 54, 87, 0.9);
}

.post-type-archive .site-inner .flexcol .pracitce-area-icon i::before,
.post-type-archive-clients .site-inner .flexcol .pracitce-area-icon i::before,
.flexible-layout-practice-areas-section .flexcol i::before {
	font-size: 30px;
	width: 30px;
	height: 30px;
	color: #d6aa6d;
	margin-bottom: 10px;
	display: block;
}

.post-type-archive .site-inner .flexcol h3.post-title,
.single-team .site-inner .blog-posts .item h3.post-title,
.blog .site-inner .entry h3.post-title,
.post-type-archive-news_article .site-inner .flexcol h3.post-title,
.flexible-layout-press-section .press-faq-section .press-section h3.post-title,
.archive.category .site-inner .entry h3.post-title,
.single-team .team-client-reviews .flexcol h3.post-title {
	font-size: 24px;
	margin: 0 0 10px 0;
}

.single-team .team-news-articles .flexcol h3.post-title {
	font-size: 20px;
}

.post-type-archive-practice_areas .site-inner .flexcol h3.post-title,
.post-type-archive-clients .site-inner .flexcol h3.post-title,
.flexible-layout-practice-areas-section .flexcol h3.post-title {
	margin: 0;
	text-align: center;
}

.single-team .team-news-articles .load-more-button {
	text-align: center;
	margin: 10px 0 0 0;
}



/* Team Pages
---------------------------------------------------------------------------- */
.single-team .site-inner .entry {
	border-radius: 10px;
}

.single-team .site-inner .entry:not(:last-of-type) {
	margin-bottom: 20px;
}

.single-team .site-inner .sidebar .team-headshot img {
	border-radius: 10px;
	width: 100%;
}

.single-team .site-inner .sidebar .social-links ul {
	margin: 10px 0 0 0;
	padding: 0;
}

.single-team .site-inner .sidebar .social-links ul>li {
	list-style-type: none;
	display: inline-block;
	margin-right: 8px;
}

.single-team .site-inner .sidebar .social-links ul>li img {
	border-radius: 5px;
}

.single-team .site-inner .team-badges {
	margin-top: 20px;
}

.single-team .team-honors-and-awards .gallery-section,
.single-team .site-inner .team-badges .flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}


.single-team .team-honors-and-awards .gallery-section .flexcol {
	flex-basis: 33.33%;
	max-width: 33.33%;
	padding: 10px;
	text-align: center;
}

.single-team .site-inner .team-badges .flexcol {
	flex-basis: 33.33%;
	max-width: 33.33%;
	padding: 10px;
}

.single-team .site-inner .team-badges .disclaimer {
	font-size: 14px;
	line-height: 1.4;
}

.single-team .site-inner .blog-posts .post-excerpt {
	font-size: 16px;
	line-height: 1.4;
}

/* Team Archive
---------------------------------------------------------------------------- */
.post-type-archive-team .site-inner .sidebar select {
	border-radius: 10px;
	margin-bottom: 15px;
}

.post-type-archive-team .site-inner .flexcol,
.flexible-layout-team-section .flexcol,
.archive.tax-role .site-inner .flexcol {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
	align-items: center;
	transition: 0.5s ease all;
}

.post-type-archive-team .site-inner .flexcol:hover,
.flexible-layout-team-section .flexcol:hover,
.archive.tax-role .site-inner .flexcol:hover {
	background-color: #f7f7f7;
}

.post-type-archive-team .site-inner .flexcol .headshot,
.post-type-archive-team .site-inner .flexcol .post-info,
.flexible-layout-team-section .flexcol .headshot,
.flexible-layout-team-section .flexcol .post-info,
.archive.tax-role .site-inner .flexcol .headshot,
.archive.tax-role .site-inner .flexcol .post-info {
	flex: 1;
}

.post-type-archive-team .site-inner .flexcol h3.name,
.flexible-layout-team-section .flexcol h3.name,
.archive.tax-role .site-inner .flexcol h3.name {
	margin-bottom: 5px;
	line-height: 1;
	text-align: center;
}

.post-type-archive-team .site-inner .flexcol .team-role,
.flexible-layout-team-section .flexcol .team-role,
.archive.tax-role .site-inner .flexcol .team-role {
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
}

.post-type-archive-team .site-inner .flexcol .headshot,
.blog .site-inner .entry .post-image,
.post-type-archive-news_article .site-inner .flexcol .post-image,
.flexible-layout-team-section .flexcol .headshot,
.flexible-layout-press-section .press-faq-section .press-section .post-image,
.archive.tax-role .site-inner .flexcol .headshot,
.archive.category .site-inner .entry .post-image {
	position: relative;
	height: 100%;
}

.single-team .team-news-articles .flexcol .post-image {
	position: relative;
}

.post-type-archive-team .site-inner .flexcol .headshot::after,
.blog .site-inner .entry .post-image::after,
.flexible-layout-team-section .flexcol .headshot::after,
.flexible-layout-press-section .press-faq-section .press-section .post-image::after,
.archive.tax-role .site-inner .flexcol .headshot::after,
.archive.category .site-inner .entry .post-image::after {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.archive.tax-role .archive-description .archive-title:last-child {
	margin: 0;
}

.single-team .team-news-articles .flexcol .post-image::after {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}

.post-type-archive-team .site-inner .flexcol .headshot img,
.blog .site-inner .entry .post-image img,
.flexible-layout-team-section .flexcol .headshot img,
.flexible-layout-press-section .press-faq-section .press-section .post-image img,
.archive.tax-role .site-inner .flexcol .headshot img,
.archive.category .site-inner .entry .post-image img,
.single-team .team-news-articles .flexcol .post-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 8px 0 0 8px;
	object-fit: cover;
	object-position: center center;
}

.blog .site-inner .entry .post-image img,
.post-type-archive-news_article .site-inner .flexcol .post-image img,
.flexible-layout-press-section .press-faq-section .press-section .post-image img,
.archive.category .site-inner .entry .post-image img,
.single-team .team-news-articles .flexcol .post-image img {
	border-radius: 10px 10px 0 0;
	width: 100%;
}

.post-type-archive-team .site-inner .team-section:not(:last-of-type) {
	margin-bottom: 10px;
}

.post-type-archive-team .site-inner .category-section {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	margin: 0 0 10px 0;
}

.post-type-archive-team .site-inner .team-section,
.page-template-successes .site-inner .page-section,
.post-type-archive-news_article .site-inner .news-section {
	padding: 40px 0;
}

.post-type-archive-team .site-inner .team-section:nth-of-type(even),
.page-template-successes .site-inner .page-section:nth-of-type(even),
.post-type-archive-news_article .site-inner .news-section:nth-of-type(even) {
	background-color: white;
}

.post-type-archive-news_article .site-inner .item .source,
.post-type-archive-news_article .site-inner .news-articles .flexcol .source,
.single-team .team-news-articles .flexcol .source,
.blog .site-inner .entry .post-category {
	font-size: 14px;
}

.post-type-archive-news_article .site-inner .news-articles .flexcol h3.post-title,
.post-type-archive-news_article .site-inner .item h3.post-title,
.single-team .team-news-articles .flexcol h3.post-title {
	margin: 0;
}

.post-type-archive-news_article .site-inner .news-articles .flexcol h3.post-title a,
.post-type-archive-news_article .site-inner .item h3.post-title a,
.single-team .team-news-articles .flexcol h3.post-title a {
	color: #333;
}

.post-type-archive-news_article .site-inner .item .team-involved,
.post-type-archive-news_article .site-inner .news-articles .flexcol .team-involved,
.single-team .team-news-articles .flexcol .team-involved {
	font-size: 14px;
	margin: 5px 0;
}

.single-news_article .press-coverage ul>li {
	margin: 0 0 10px 30px;
	list-style-type: disc;
}

.video-section {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.video-section .video-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	background-color: rgb(24 54 87 / 25%);
	color: white;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	cursor: pointer;
}

.article-videos .flexcol {
	margin: 20px 0;
}

.article-videos .flexcol .video-section img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.article-videos .flexcol .video-section {
	aspect-ratio: 16/9;
}

.single-team .team-videos .flexcol,
.single-post .sidebar .video,
.flexible-layout-video-section .flexcol:first-of-type {
	text-align: center;
	margin: 0 0 20px 0;
}

.single-team .team-videos .flexcol .video-thumbnail,
.single-post .sidebar .video-thumbnail,
.flexible-layout-video-section .flexcol .video-thumbnail {
	position: relative;
}

.single-team .team-videos .flexcol .video-thumbnail .post-link,
.single-post .sidebar .video-thumbnail .post-link,
.flexible-layout-video-section .flexcol .post-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	opacity: 0;
	transition: 0.5s ease all;
}

.single-team .team-videos .flexcol:hover .post-link,
.single-post .sidebar .video-thumbnail:hover .post-link,
.flexible-layout-video-section .flexcol .video-thumbnail:hover .post-link {
	opacity: 1;
}

.single-team .team-videos .flexcol:hover .post-link i,
.single-post .sidebar .video-thumbnail .post-link i,
.flexible-layout-video-section .flexcol .post-link i {
	color: white;
	font-size: 36px;
	width: 36px;
	height: 36px;
}

.single-team .team-videos .flexcol .video-thumbnail img,
.single-post .sidebar .video-thumbnail img,
.flexible-layout-video-section .flexcol .video-thumbnail img {
	border-radius: 10px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
}

.single-team .team-videos .flexcol h3.video-title,
.single-post .sidebar h3.video-title {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin: 15px 0 0 0;
}

/* Reviews Archive
---------------------------------------------------------------------------- */

.single-team .site-inner .sidebar .item,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol,
.single-team .team-client-reviews .flexcol {
	position: relative;
}

.post-type-archive-client_reviews .site-inner .flexcol .review-source,
.archive.tax-source .site-inner .entry .review-source,
.single-team .site-inner .sidebar .item .review-source,
.page-template-successes .site-inner .reviews-section .flexcol .review-source,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review-source,
.single-team .team-client-reviews .flexcol .review-source {
	position: absolute;
	right: 20px;
	top: 20px;
	line-height: 1;
}

.post-type-archive-client_reviews .site-inner .flexcol h3.client-name,
.archive.tax-source .site-inner .entry h3.client-name,
.single-team .site-inner .sidebar .item h3.client-name,
.page-template-successes .site-inner .reviews-section .flexcol .client-name,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .client-name,
.single-team .team-client-reviews .flexcol .client-name {
	margin-bottom: 10px;
	line-height: 1;
}

.post-type-archive-client_reviews .site-inner .flexcol .review-rating,
.archive.tax-source .site-inner .entry .review-rating,
.single-team .site-inner .sidebar .item .review-rating,
.page-template-successes .site-inner .reviews-section .flexcol .review-rating,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review-rating,
.single-team .team-client-reviews .flexcol .review-rating {
	line-height: 1;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 16px;
	font-style: italic;
}

.post-type-archive-client_reviews .site-inner .flexcol .review,
.archive.tax-source .site-inner .entry .review,
.single-team .site-inner .sidebar .item .review,
.page-template-successes .site-inner .reviews-section .flexcol .review,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review,
.single-team .team-client-reviews .flexcol .review {
	max-height: 93px;
	overflow: auto;
	padding: 5px 5px 0px 0;
	font-size: 15px;
	line-height: 1.4;
	color: #777;
}

.single-team .site-inner .sidebar .item .review {
	max-height: 175px;
}

.post-type-archive-client_reviews .site-inner .flexcol .review::-webkit-scrollbar,
.archive.tax-source .site-inner .entry .review::-webkit-scrollbar,
.single-team .site-inner .sidebar .item .review::-webkit-scrollbar,
.page-template-successes .site-inner .reviews-section .flexcol .review::-webkit-scrollbar,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review::-webkit-scrollbar,
.single-team .team-client-reviews .flexcol .review::-webkit-scrollbar {
	width: 3px;
}

.post-type-archive-client_reviews .site-inner .flexcol .review::-webkit-scrollbar-track,
.archive.tax-source .site-inner .entry .review::-webkit-scrollbar-track,
.single-team .site-inner .sidebar .item .review::-webkit-scrollbar-track,
.page-template-successes .site-inner .reviews-section .flexcol .review::-webkit-scrollbar-track,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review::-webkit-scrollbar-track,
.single-team .team-client-reviews .flexcol .review::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.post-type-archive-client_reviews .site-inner .flexcol .review::-webkit-scrollbar-thumb,
.archive.tax-source .site-inner .entry .review::-webkit-scrollbar-thumb,
.single-team .site-inner .sidebar .item .review::-webkit-scrollbar-thumb,
.page-template-successes .site-inner .reviews-section .flexcol .review::-webkit-scrollbar-thumb,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review::-webkit-scrollbar-thumb,
.single-team .team-client-reviews .flexcol .review::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 30px;
}

.post-type-archive-client_reviews .site-inner .flexcol .review::-webkit-scrollbar-thumb:hover,
.archive.tax-source .site-inner .entry .review::-webkit-scrollbar-thumb:hover,
.single-team .site-inner .sidebar .item .review::-webkit-scrollbar-thumb:hover,
.page-template-successes .site-inner .reviews-section .flexcol .review::-webkit-scrollbar-thumb:hover,
.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review::-webkit-scrollbar-thumb:hover,
.single-team .team-client-reviews .flexcol .review::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Reviews Source Archive
---------------------------------------------------------------------------- */
.archive.tax-source .site-inner .content .entry {
	border-radius: 10px;
	padding: 20px;
}

.archive.tax-source .site-inner h1.archive-title::after {
	content: ' Reviews';
}

/* Shortcodes
---------------------------------------------------------------------------- */
.rbl-shortcode i::before {
	display: block;
	width: 20px;
	margin-right: 7px;
}

.sidebar .rbl-shortcode a {
	color: #333;
}

.entry .rbl-shortcode i {
	display: none;
}

.rbl-shortcode ul.social-links>li {
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 0;
}

.rbl-shortcode ul.social-links>li i {
	border: 2px solid white;
	padding: 8px;
	border-radius: 50%;
	background-color: transparent;
	transition: 0.5s ease all;
}

.rbl-shortcode ul.social-links>li:hover i {
	background-color: white;
	color: #222;
}

.rbl-shortcode ul.social-links>li i::before {
	font-size: 15px;
	width: 15px;
	height: 15px;
	display: block;
	text-align: center;
	margin: 0;
}

.rbl-shortcode.review {
	border-top: 5px solid #183657;
	background-color: white;
	border-radius: 10px;
	padding: 15px 20px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	align-items: center;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.4;
	margin-right: 15px;
	font-size: 16px;
}

.rbl-shortcode.review,
.post-type-archive-client_reviews .archive-description>img,
.flexible-layout-testimonial-section .section-content>img,
.page-template-successes .site-inner .archive-content>img {
	width: calc(50% - 12px);
}

.rbl-shortcode.review .content-wrap {
	display: flex;
	align-items: center;
	position: relative;
}

.rbl-shortcode.review .content-wrap .cat-image {
	margin-right: 20px;
}

.rbl-shortcode.review .review-rating {
	line-height: 1;
}

.flexible-layout-testimonial-section .section-content .rbl-shortcode.review,
.flexible-layout-testimonial-section .section-content>img {
	max-width: 300px;
	display: block;
	margin-bottom: 15px;
	width: auto;
}

/* Blog
---------------------------------------------------------------------------- */
.blog .site-inner .entry .post-info,
.post-type-archive-news_article .site-inner .flexcol .post-info,
.flexible-layout-press-section .press-faq-section .press-section .post-info,
.archive.category .site-inner .entry .post-info,
.single-team .team-news-articles .flexcol .post-info {
	font-size: 16px;
}

.blog .site-inner .entry-content .flexcol .post-title {
	margin: 0;
}

.blog .site-inner .entry-content .flexcol .post-date {
	font-size: 16px;
	line-height: 1;
	margin: 5px 0;
}

/* Video
---------------------------------------------------------------------------- */
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%;
	height: 100%;
}

/* FAQ Archive
---------------------------------------------------------------------------- */
.archive.tax-display .archive-description .archive-title::after,
.archive.tax-question_type .archive-description .archive-title::after {
	content: ' FAQs';
}

.post-type-archive-faq .archive-description .filter-section select,
.post-type-archive-verdicts .archive-description .filter-section select {
	outline: none;
	border-radius: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
}

.post-type-archive-faq .archive-description .filter-section select:focus,
.post-type-archive-verdicts .archive-description .filter-section select:focus {
	background-image: linear-gradient(45deg, #183657 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #183657 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	border-color: #183657;
	outline: 0;
}

.post-type-archive-faq .archive-description .filter-section button,
.post-type-archive-verdicts .archive-description .filter-section button {
	width: 100%;
	outline: none;
}

.accordion>ul>li .question {
	background: #fff;
	color: #333;
	border-radius: 10px;
	outline: none;
	transition: 0.5s ease-in-out;
	border: none;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	min-height: 125px;
	margin: 0;
}

.accordion>ul>li .question.ui-state-active .icon i,
.accordion>ul>li .question:hover .icon i,
.accordion>ul>li .question:hover,
.attorney-referral .accordion>ul>li .question,
.single-practice_areas .accordion>ul>li .question,
.single-faq .accordion>ul>li .question,
.single-post .accordion>ul>li .question,
.single-location_pages .accordion>ul>li .question {
	border-radius: 10px;
	background-color: #173657;
	color: white;
}

.flexible-layout-accordion-section .accordion>ul>li .question .icon i {
	transition: .5s ease-in-out;
	background-color: transparent;
}

.attorney-referral .accordion>ul>li .question:hover,
.single-practice_areas .accordion>ul>li .question:hover {
	background-color: #d6aa6d;
}

.accordion>ul>li .question.ui-state-active {
	border-radius: 10px 10px 0 0;
	background-color: #173657;
	color: white;
}

.accordion>ul>li .question .inner-wrapper {
	padding: 20px;
}

.accordion>ul>li .question h3 {
	font-size: 24px;
	margin: 0;
}

.single-team .accordion>ul>li {
	margin-top: 20px;
}

.single-team .accordion>ul>li .question h3::after {
	content: '\f107';
	position: absolute;
	top: calc(50% + 3px);
	right: 15px;
	transform: translateY(-50%);
	font-family: "font awesome 6 pro";
	font-weight: 600;
	font-size: 24px;
}

.single-team .accordion>ul>li .question.ui-state-active h3::after {
	content: '\f106';
}

.single-team .accordion>ul>li .question h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	position: relative;
}

.single-team .accordion>ul>li .question h3 i {
	font-weight: 300;
	color: #d6aa6d;
	display: inline-block;
	margin-right: 10px;
}

.single-team .accordion>ul>li .answer {
	padding: 30px;
}

.single-team .accordion>ul>li .question .inner-wrapper {
	padding: 30px 50px 30px 30px;
}

.single-team .ui-accordion .answer .disclaimer {
	text-align: center;
}

.accordion>ul>li .question span.category-name {
	font-size: 14px;
}

.accordion>ul>li .answer {
	background-color: white;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	padding: 20px;
	font-size: 16px;
	line-height: 1.4;
}

.single-team .accordion>ul>li .answer .section-button {
	text-align: center;
}

.single-team .accordion>ul>li .answer .section-button .button {
	margin-top: 20px;
}

.accordion>ul>li .answer ul {
	margin-left: 20px;
}

.accordion>ul>li .answer ul>li {
	list-style-type: disc;
	margin-bottom: 5px;
}

.accordion>ul>li.team-practice-areas .answer ul>li {
	list-style-type: none;
}

.accordion>ul>li .answer a.read-more.button {
	width: 100%;
	margin-top: 10px;
}

.attorney-referral .accordion>ul>li:not(:last-of-type),
.single-practice_areas .accordion>ul>li:not(:last-of-type),
.single-faq .accordion>ul>li:not(:last-of-type),
.single-post .accordion>ul>li:not(:last-of-type),
.single-location_pages .accordion>ul>li:not(:last-of-type) {
	margin-bottom: 15px;
}

.attorney-referral .accordion>ul>li .question,
.single-practice_areas .accordion>ul>li .question,
.single-faq .accordion>ul>li .question,
.single-team .accordion>ul>li .question,
.single-post .accordion>ul>li .question,
.single-location_pages .accordion>ul>li .question {
	min-height: auto;
}

.attorney-referral .accordion>ul>li .question h3,
.single-practice_areas .accordion>ul>li .question h3,
.single-faq .accordion>ul>li .question h3,
.single-post .accordion>ul>li .question h3,
.single-location_pages .accordion>ul>li .question h3 {
	font-size: 22px;
}

.attorney-referral .accordion>ul>li .answer a.read-more.button,
.single-practice_areas .accordion>ul>li .answer a.read-more.button,
.single-faq .accordion>ul>li .answer a.read-more.button,
.single-post .accordion>ul>li .answer a.read-more.button,
.single-location_pages .accordion>ul>li .answer a.read-more.button {
	width: auto;
}

.attorney-referral .entry .practice-area-faqs .section-title {
	padding-left: 0;
	border-left: none;
	font-size: 32px;
}

.attorney-referral .sidebar .widget ul>li {
	margin-bottom: 15px;
}

.attorney-referral .sidebar .widget ul>li .counter strong {
	display: block;
}

.attorney-referral .sidebar .widget#text-39 ul>li {
	margin-bottom: 20px;
}

.attorney-referral .sidebar .widget#text-39 .widget-title {
	padding: 0;
	text-align: center;
	border-left: none;
}

.attorney-referral .sidebar .widget#text-39 {
	text-align: center;
}

.attorney-referral .sidebar .widget#text-39 ul>li strong {
	display: block;
}

.attorney-referral .sidebar .widget#text-39 ul>li strong {
	font-size: 22px;
}

/* Fadeup Effect
---------------------------------------------------------------------------------------------------- */
.fadeup-effect {
	opacity: 0;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

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

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

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

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

/* Verdict Archive
---------------------------------------------------------------------------------------------------- */
.post-type-archive-faq div#response .flexbox,
.post-type-archive-verdicts div#response .accordion {
	display: none;
}

.post-type-archive.post-type-archive-verdicts .site-inner .flexcol,
.page-template-successes .verdicts-section .flexcol,
.single-team .team-past-verdicts .flexcol {
	padding: 30px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}

.single-team .team-past-verdicts .flexcol {
	padding: 20px;
}

.single-practice_areas .sidebar .widget.past-verdicts .verdict {
	padding: 10px 0;
	text-align: center;
}

.single-practice_areas .sidebar .widget.past-verdicts .verdict h4.case-tiitle {
	margin: 0;
}

.single-team .team-past-verdicts .flexcol h4.case-tiitle {
	font-size: 20px;
	margin: 10px 0;
	font-weight: 700;
	color: #183657;
}

.post-type-archive.post-type-archive-verdicts .site-inner .flexcol .verdict-amount,
.page-template-successes .verdicts-section .flexcol .verdict-amount,
.single-team .team-past-verdicts .flexcol .verdict-amount,
.single-practice_areas .sidebar .widget.past-verdicts .verdict .verdict-amount {
	font-size: 30px;
	font-weight: 600;
	color: #183657;
}

.post-type-archive.post-type-archive-verdicts .site-inner .flexcol .verdict-description,
.page-template-successes .verdicts-section .flexcol .verdict-description,
.single-team .team-past-verdicts .flexcol .verdict-description,
.single-practice_areas .sidebar .widget.past-verdicts .verdict .verdict-description {
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.2;
}

.post-type-archive.post-type-archive-verdicts .site-inner .flexcol h3.post-name,
.page-template-successes .verdicts-section .flexcol h3.post-name,
.single-team .team-past-verdicts .flexcol h3.post-name,
.single-practice_areas .sidebar .widget.past-verdicts .verdict h3.post-name {
	margin: 10px 0 0;
}

.post-type-archive.post-type-archive-verdicts .site-inner .flexcol h4.case-tiitle {
	margin: 0;
}

.single-office_locations .entry .team-section .flexcol {
	text-align: center;
	position: relative;
	margin: 20px 0;
}

.single-office_locations .entry .team-section .flexcol .headshot img {
	border-radius: 10px;
}

.single-office_locations .entry .team-section .flexcol h3.name {
	font-size: 22px;
	margin: 5px 0 0 0;
	font-weight: 700;
}

.single-office_locations .entry .team-section#staff .flexcol h3.name {
	font-size: 16px;
}

.single-office_locations .entry .team-section#staff .flexcol .team-role {
	font-size: 10px;
}

.single-office_locations .entry .team-section .flexcol .team-role {
	text-transform: uppercase;
	font-size: 13px;
}

.single-office_locations .entry .gallery-section ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.single-office_locations .entry .gallery-section ul>li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	flex-basis: 50%;
	max-width: 50%;
	padding: 3px;
}

.single-office_locations .sidebar .rbl-shortcode,
.sidebar .widget ul>li .rbl-shortcode {
	margin: 0 0 10px 0;
}

.ui-accordion-header.ui-state-active .tabs-plus,
.ui-accordion-header:not(.ui-state-active) .tabs-minus {
	display: none;
}

.ui-accordion-header:not(.ui-state-active) .tabs-plus,
.ui-accordion-header.ui-state-active .tabs-minus {
	display: block;
}

/* Success Page Template
---------------------------------------------------------------------------------------------------- */
.page-template-successes .site-inner .page-section {
	margin-bottom: 20px;
}

.page-template-successes .site-inner .section-button {
	margin-top: 15px;
}

.page-template-successes .site-inner .archive-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.page-template-successes .site-inner .archive-title .section-link {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
}

/* Announcement Banner
---------------------------------------------------------------------------------------------------- */
.announcement {
	background: #333;
	color: white;
	text-align: center;
	font-size: 16px;
	position: relative;
	line-height: 1.2;
	padding: 10px 0;
	font-weight: 700;
}

.announcement .wrap {
	max-width: 1280px;
	padding: 0 5%;
	margin: 0 auto;
}

.announcement p {
	margin: 0;
}

.announcement a {
	color: white;
	font-weight: 700;
	text-transform: uppercase;
}

.announcement a:hover {
	color: white;
	text-decoration: none;
}

.announcement div#close {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.announcement div#close:hover {
	opacity: 1;
}

.announcement div#close span {
	font-size: 25px;
	width: 25px;
	height: 25px;
}



@media only screen and (max-width: 660px) {
	.announcement div#close {
		top: 10px;
		right: 0;
	}
}





.single-team .team-honors-and-awards .gallery-section .flexcol {
	flex-basis: 50%;
	max-width: 50%;
}

.page-template-review-links .site-inner .entry .flexcol {
	margin: 10px 0;
}

.page-template-review-links .site-inner .entry .flexcol a.button {
	display: block;
	width: 100%;
	text-align: center;
}

/* Platform Archive
---------------------------------------------------------------------------- */
.archive.tax-platform .site-inner {
	max-width: 960px;
	padding: 60px 0;
}

.archive.tax-platform .site-inner .platform-header .profile-picture img {
	border-radius: 50%;
	box-shadow: 0 0 10px 5px rgb(0 0 0 / 5%);
}

.archive.tax-platform .site-inner .platform-header .flexcol h2.profile-title {
	margin: 0;
}

.archive.tax-platform .site-inner .platform-header .flexcol h3.username {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	color: #888;
	margin: 0;
}

.archive.tax-platform .site-inner .platform-header .flexcol:last-of-type a.button,
.archive.tax-platform .site-inner .social-feed-section a#loadMore {
	background-color: #0095f6;
	padding: 12px 20px;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 600;
	min-width: 175px;
}

.archive.tax-platform .site-inner .platform-header .flexcol:last-of-type a.button:hover,
.archive.tax-platform .site-inner .social-feed-section a#loadMore:hover {
	background-color: #0286dc;
}

.archive.tax-platform .site-inner .flexcol {
	margin: 20px 0;
	position: relative;
}

.archive.tax-platform .site-inner .flexcol a.feed-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}

.archive.tax-platform .site-inner .flexcol h3.feed-title {
	position: absolute;
	bottom: 0;
	margin: 0;
	width: 100%;
	padding: 20px 15px;
	background: linear-gradient(0deg, black, transparent);
	color: white;
	text-align: center;
	transition: 0.5s ease all;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 600;
}

.archive.tax-platform .site-inner .flexcol:hover h3.feed-title {
	padding: 40px 15px;
}

.archive.tax-platform .site-inner .social-feed-section a#loadMore {
	display: block;
	width: fit-content;
	margin: 20px auto 0;
}

.review-links-page .site-inner .entry .section-title {
	text-align: center;
	font-size: 36px;
}

.page-template-review-links .attorney-review-section>.flexbox>.flexcol {
	padding: 20px;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	border-radius: 10px;
	text-align: center;
}

.page-template-review-links .attorney-review-section>.flexbox>.flexcol .image-wrap {
	margin-bottom: 10px;
}



.page-template-review-links .link-section ul>li .image-wrap {
	position: relative;
}

.page-template-review-links .link-section ul>li .image-wrap>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.page-template-review-links .link-section ul>li {
	list-style-type: none;
	display: inline-block;
}

.page-template-review-links .link-section ul {
	margin: 0;
	padding-left: 0;
}

.single-team .review-button {
	margin-bottom: 15px;
}

.single-team .content-sidebar-wrap .widget.contact-form {
	order: 3;
	box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	padding: 20px;
	background-color: white;
	border-radius: 10px;
	margin-top: 20px;
}

/* Single Comprehensive Guides
----------------------------------------------------------- */
.single-guides .entry-title {
	text-align: center;
}

.single-guides .guide-accordion .section-title {
	outline: none;
	cursor: initial;
}

.single-guides .question-wrap:not(:last-of-type) {
	margin-bottom: 40px;
}

.single-guides .comprehensive-guide-section~.content-wrap {
	margin-top: 40px;
}

.table-of-contents {
	background-color: #f7f7f7;
	padding: 40px;
	border-radius: 10px;
	margin: 40px 0;
}

.table-of-contents ol,
.table-of-contents ul {
	margin: 0;
	padding-left: 20px;
}

.table-of-contents ol>li a,
.table-of-contents ul>li a {
	outline: none;
}

/* Archive Comprehensive Guides
----------------------------------------------------------- */
.post-type-archive-guides .guide-section .flexcol {
	position: relative;
}

.post-type-archive-guides .guide-section .flexcol .image-wrap {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.post-type-archive-guides .guide-section .flexcol .content-wrap {
	padding: 20px;
}

.post-type-archive-guides .guide-section .flexcol>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}

.post-type-archive-guides .guide-title {
	color: #183657;
}

.post-type-archive-guides .flexcol img {
	width: 100%;
}

.post-type-archive-guides .guide-section .flexcol .content-wrap .guide-title {
	margin: 0;
	font-size: 24px;
	font-weight: 400;
}

/* 404 page
---------------------------------------------------------------------------- */
body.error404 .site-inner .page-content {
	padding: 80px 0;
	text-align: center
}

body.error404 .site-inner h1.page-title {
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	font-family: var(--bodyFont);
	margin-bottom: 10px;
	color: #183657;
}

body.error404 .site-inner .page-content h3 {
	font-size: 40px
}

body.error404 .site-inner .page-content p {
	font-size: 22px;
}

/* search
---------------------------------------------------------------------------- */

body.search .search-results-header {
	padding-top: 40px;
}

body.search .site-inner .flexcol {
	padding: 20px;
	background-color: white;
	border-radius: 7px;
	box-shadow: var(--boxShadow);
	margin: 20px 0;
	position: relative;
}

body.search .site-inner .flexcol>a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.search-no-results .site-inner {
	min-height: 600px;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.search-no-results .site-inner .entry {
	margin: 0;
}

.search-no-results .site-inner h1.page-title {
	font-size: 40px;
}

.search-no-results .site-inner p {
	font-size: 20px;
}

.search-results .post-type-name {
	padding: 10px 15px;
	color: white;
	font-size: 14px;
	border-radius: 7px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
	line-height: 1;
	background-color: var(--secondColor);
	display: inline-block;
}

#search-form {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	max-width: 660px;
	margin: 25px auto 0;
	box-shadow: var(--boxShadow);
	border-radius: 30px;
}

#search-form input {
	border-radius: 30px 0 0 30px;
	border-color: #fff;
	padding: 15px 25px
}

body.search .site-inner .flexcol .content-wrap .post-name:last-child {
	margin: 0;
}

.page-template-default .entry-content img.alignleft {
	margin-bottom: 0;
}

.timeline .site-inner .entry {
	display: none;
}

/* Media Queries
---------------------------------------------------------------------------- */

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

	table {
		table-layout: auto;
		word-break: normal;
	}

}

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

	.post-type-archive-guides .guide-section .flexbox,
	.single-office_locations .entry .team-section .flexbox,
	.post-type-archive:not(.post-type-archive-news_article) .site-inner .flexbox,
	.archive.tax-source .site-inner .content,
	.blog .site-inner .entry-content,
	.post-type-archive-news_article .site-inner .flexcol,
	.flexible-layout-team-section .flexbox,
	.flexible-layout-press-section .press-faq-section .press-section .flexbox,
	.archive.tax-role .site-inner .flexbox,
	.archive.category .site-inner .content,
	.archive.category .site-inner .entry-content,
	.single-team .team-news-articles .flexcol,
	.single-team .team-client-reviews .flexbox,
	.single-team .team-videos .flexbox,
	.blog .site-inner .entry-content .flexbox,
	.page-template-review-links .site-inner .entry .flexbox,
	.archive.tax-platform .site-inner .flexbox {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.post-type-archive-guides .guide-section .flexcol,
	.post-type-archive .site-inner .flexcol,
	.archive.tax-source .site-inner .entry,
	.flexible-layout-team-section .flexcol,
	.archive.tax-role .site-inner .flexcol,
	.single-team .team-client-reviews .flexcol,
	.single-team .team-videos .flexcol,
	.page-template-review-links .site-inner .entry .flexcol,
	.archive.tax-platform .site-inner .flexcol {
		flex-basis: calc(50% - 10px);
		max-width: calc(50% - 10px);
		margin: 10px;
	}

	.archive.tax-platform .site-inner .platform-header .flexcol {
		flex-basis: initial;
		max-width: none;
	}

	.single-team .site-inner .blog-posts .item {
		margin: 10px;
	}

	.blog .site-inner .entry .post-image,
	.post-type-archive-news_article .site-inner .flexcol .post-image,
	.flexible-layout-press-section .press-faq-section .press-section .flexcol:first-of-type,
	.archive.category .site-inner .entry .post-image,
	.single-team .team-news-articles .flexcol .post-image {
		flex: 1;
	}

	.post-type-archive-news_article .site-inner .flexcol .post-image .image-wrap {
		height: 100%;
	}

	.post-type-archive-news_article .site-inner .flexcol .post-image .image-wrap img {
		height: 100%;
		object-fit: cover;
	}

	.blog .site-inner .entry .post-info,
	.post-type-archive-news_article .site-inner .flexcol .post-info,
	.flexible-layout-press-section .press-faq-section .press-section .flexcol:last-of-type,
	.archive.category .site-inner .entry .post-info,
	.single-team .team-news-articles .flexcol .post-info {
		flex: 2;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.post-type-archive-news_article .site-inner .flexcol .post-info {
		flex: 1;
	}

	.blog .site-inner .entry .flexcol img,
	.post-type-archive-news_article .site-inner .flexcol .post-image img,
	.flexible-layout-press-section .press-faq-section .press-section .post-image img,
	.archive.category .site-inner .entry .post-image img {
		border-radius: 10px 0 0 10px;
	}

	.attorney-referral .content-sidebar-wrap .entry {
		border-radius: 10px;
	}

	.blog .site-inner .entry-content .flexbox {
		align-items: center;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type {
		flex: 1;
	}

	.blog .site-inner .entry-content .flexcol:last-of-type {
		flex: 2;
	}

	.blog .site-inner .entry-content .flexcol .post-title {
		font-size: 36px;
	}

	.blog .site-inner .entry .post-info {
		font-size: 18px;
	}

	.single-office_locations .entry .gallery-section ul>li {
		flex-basis: 33.3%;
		max-width: 33.3%;
	}

	.archive.tax-platform .site-inner .platform-header .flexbox {
		align-items: center;
	}

	.archive.tax-platform .site-inner .platform-header .flexcol {
		flex: 1;
	}

	.archive.tax-platform .site-inner .platform-header .flexcol:nth-of-type(2) {
		flex: 3;
	}

	.archive.tax-platform .site-inner .platform-header .flexcol:last-of-type {
		text-align: right;
	}

	.single-office_locations .entry .team-section .flexcol {
		flex-basis: calc(33.33% - 14px);
		max-width: calc(33.33% - 14px);
		margin: 10px;
	}
}

@media only screen and (min-width: 660px) and (max-width: 960px) {


	.post-type-archive-guides .guide-section .flexcol:nth-of-type(odd),
	.page-template-review-links .site-inner .entry .flexcol:nth-of-type(odd),
	.single-team .team-client-reviews .flexcol:nth-of-type(odd),
	.single-team .team-videos .flexcol:nth-of-type(odd),
	.archive.tax-role .site-inner .flexcol:nth-of-type(odd),
	.post-type-archive:not(.post-type-archive-news_article) .site-inner .flexcol:nth-of-type(odd),
	.flexible-layout-team-section .flexcol:nth-of-type(odd),
	.archive.tax-platform .site-inner .flexcol:nth-of-type(odd) {
		margin-left: 0;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type {
		position: relative;
		min-height: 404px;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type .image-wrap {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: 0;
		overflow: hidden;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type .image-wrap img {
		position: relative;
		z-index: 1;
		height: 100%;
		width: 100%;
		object-fit: cover;
		object-position: center;
	}


	.post-type-archive-guides .guide-section .flexcol:nth-of-type(even),
	.page-template-review-links .site-inner .entry .flexcol:nth-of-type(even),
	.single-team .team-client-reviews .flexcol:nth-of-type(even),
	.single-team .team-videos .flexcol:nth-of-type(even),
	.archive.tax-role .site-inner .flexcol:nth-of-type(even),
	.post-type-archive:not(.post-type-archive-news_article) .site-inner .flexcol:nth-of-type(even),
	.flexible-layout-team-section .flexcol:nth-of-type(even),
	.archive.tax-platform .site-inner .flexcol:nth-of-type(even) {
		margin-right: 0;
	}

	.site-header~.menu-toggle {
		position: absolute;
		right: 5%;
		top: 27px;
		width: 95px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.site-header~.mobile-icons {
		position: absolute;
		right: calc(5% + 95px);
		top: 27px;
	}

	.admin-bar .site-header~.mobile-icons,
	.admin-bar .site-header~.menu-toggle {
		top: 73px;
	}

	.widget_media_image .widget-wrap {
		padding: 20px 10px 0;
	}

	.post-type-archive.post-type-archive-news_article .site-inner .flexcol {
		max-width: 100%;
	}
}

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

	.post-type-archive:not(.post-type-archive-team):not(.post-type-archive-news_article) .site-inner .flexcol:nth-of-type(odd),
	.post-type-archive-client_reviews .site-inner .flexcol:nth-of-type(odd) {
		margin-left: 0
	}

	.post-type-archive:not(.post-type-archive-team):not(.post-type-archive-news_article) .site-inner .flexcol:nth-of-type(even),
	.post-type-archive-client_reviews .site-inner .flexcol:nth-of-type(even) {
		margin-right: 0
	}
}

@media only screen and (min-width: 660px) and (max-width: 1280px) {


	.single-office_locations .entry .team-section .flexcol:nth-of-type(3n + 1),
	.page-template-review-links .site-inner .entry .review-section>.flexbox .flexcol:nth-of-type(odd) {
		margin-left: 0;
	}

	.single-office_locations .entry .team-section .flexcol:nth-of-type(3n),
	.page-template-review-links .site-inner .entry .review-section>.flexbox .flexcol:nth-of-type(even) {
		margin-right: 0;
	}


}

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


	.post-type-archive.post-type-archive-news_article .site-inner .flexcol:nth-of-type(odd),
	.post-type-archive-team .site-inner .flexcol:nth-of-type(3n+1),
	.post-type-archive-faq .accordion>ul>li:nth-of-type(odd),
	.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(odd),
	.archive.tax-question_type .accordion>ul>li:nth-of-type(odd),
	.archive.tax-display .accordion>ul>li:nth-of-type(odd),
	.archive.tax-role .site-inner .flexcol:nth-of-type(3n+1),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(odd),
	.page-template-successes .reviews-section .flexcol:nth-of-type(odd),
	.flexible-layout-team-section .flexcol:nth-of-type(3n+1),
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol:nth-of-type(odd),
	.single-team .team-past-verdicts .flexcol:nth-last-of-type(odd),
	.single-team .team-client-reviews .flexcol:nth-last-of-type(odd),
	.single-team .team-news-articles .flexcol:nth-of-type(odd),
	.faq-layout-featured-faq-section .accordion>ul>li:nth-of-type(odd) {
		margin-left: 0;
	}

	.post-type-archive.post-type-archive-news_article .site-inner .flexcol:nth-of-type(even),
	.post-type-archive-team .site-inner .flexcol:nth-of-type(3n),
	.post-type-archive-faq .accordion>ul>li:nth-of-type(even),
	.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(even),
	.archive.tax-question_type .accordion>ul>li:nth-of-type(even),
	.archive.tax-display .accordion>ul>li:nth-of-type(even),
	.archive.tax-role .site-inner .flexcol:nth-of-type(3n),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(even),
	.page-template-successes .reviews-section .flexcol:nth-of-type(even),
	.flexible-layout-team-section .flexcol:nth-of-type(3n),
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol:nth-of-type(even),
	.single-team .team-past-verdicts .flexcol:nth-last-of-type(even),
	.single-team .team-news-articles .flexcol:nth-of-type(even),
	.single-team .team-client-reviews .flexcol:nth-last-of-type(even),
	.faq-layout-featured-faq-section .accordion>ul>li:nth-of-type(even) {
		margin-right: 0;
	}

	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol {
		flex-basis: calc(33.33% - 14px);
		max-width: calc(33.33% - 14px);
		margin: 10px;
	}

	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}

	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol:nth-of-type(3n + 1) {
		margin-left: 0
	}
}

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

	.flexbox,
	.office-locations-section .content-wrap,
	.site-footer .wrap,
	.post-type-archive-faq .accordion>ul,
	.archive.tax-question_type .accordion>ul,
	.archive.tax-display .accordion>ul,
	.post-type-archive-faq .archive-description,
	.post-type-archive-verdicts .archive-description,
	.faq-layout-featured-faq-section .accordion>ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: -moz-box;
		display: flex;
		flex-wrap: wrap;
	}

	.flexcol {
		flex: 1;
	}

	.site-footer .wrap p {
		flex: 1;
		text-align: left;
	}

	.site-footer .wrap .nav-secondary {
		flex: 1;
		text-align: right;
		margin: 0;
	}

	.site-title {
		padding-right: 10px;
	}

	.office-locations-section .widget {
		flex-basis: 33.33%;
		padding: 20px 40px 40px;
		position: relative;
	}

	.single:not(.single-practice_areas) ul.practices-list,
	.tax-client_type .entry ul {
		column-count: 2;
		margin: 0;
		padding: 0;
	}

	.post-type-archive:not(.post-type-archive-news_article) .site-inner .flexcol h3.post-title,
	.flexible-layout-practice-areas-section .flexcol h3.post-title,
	.single-team .team-client-reviews .flexcol h3.post-title {
		font-size: 24px;
	}

	.jsmt-page-header img {
		border-radius: 10px 10px 0 0;
		width: 100%;
	}

	.jsmt-page-header h1.page-title {
		padding: 20px 30px;
		font-size: 36px;
		border-radius: 10px 10px 0 0;
	}

	.header-widget-area .widget_text,
	.header-widget-area .widget_nav_menu {
		padding: 15px 0 0;
		display: inline-block;
	}

	.site-inner .entry {
		padding: 30px;
	}

	.single-team .site-inner .entry:first-of-type .entry-content>.flexbox>.flexcol:first-of-type {
		padding-right: 30px;
	}

	.single-team .site-inner .entry:first-of-type .flexcol:last-of-type {
		flex: 2.5;
	}

	.single-team.sidebar-content .content {
		min-height: 665px;
	}

	.single-team .accordion .disclaimer .rbl-shortcode.rbl-tagline {
		margin-bottom: 20px;
	}

	.single-team .content-sidebar-wrap .widget.contact-form {
		width: 30%;
		float: left;
		margin-top: 30px;
	}

	.single-guides .guide-list {
		height: 100% !important;
		display: block !important;
	}

	.table-of-contents ol>li:not(:last-of-type),
	.table-of-contents ul>li:not(:last-of-type) {
		margin: 0 0 20px 0;
	}

	.single-guides h1.entry-title {
		margin-bottom: 60px;
	}

	.table-of-contents ol:not(.col-1),
	.table-of-contents ul:not(.col-1),
	.single-guides .question-wrap .answer:not(.col-1) ul {
		column-count: 2;
		column-gap: 60px;
	}

	body.sidebar-content.single-team .site-inner .content-sidebar-wrap {
		display: block;
		flex-wrap: unset;
		justify-content: unset;
	}

	.post-type-archive-team .site-inner .flexcol h3.name,
	.flexible-layout-team-section .flexcol h3.name,
	.archive.tax-role .site-inner .flexcol h3.name {
		font-size: 24px;
	}

	.post-type-archive-team .site-inner .flexcol,
	.flexible-layout-team-section .flexcol,
	.archive.tax-role .site-inner .flexcol,
	.archive.tax-platform .site-inner .flexcol {
		flex-basis: calc(33.3% - 15px);
		max-width: calc(33.3% - 15px);
	}

	.post-type-archive-faq .accordion>ul>li,
	.archive.tax-question_type .accordion>ul>li,
	.archive.tax-display .accordion>ul>li,
	.faq-layout-featured-faq-section .accordion>ul>li,
	.post-type-archive.post-type-archive-news_article .site-inner .flexcol,
	.post-type-archive.post-type-archive-clients .site-inner .flexcol,
	.page-template-successes .verdicts-section .flexcol,
	.page-template-successes .reviews-section .flexcol,
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol,
	.archive.category .site-inner .entry,
	.single-team .team-news-articles .flexcol,
	.single-team .team-past-verdicts .flexcol {
		flex-basis: calc(50% - 10px);
		max-width: calc(50% - 10px);
		margin: 10px;
	}

	.post-type-archive.post-type-archive-news_article .site-inner .flexcol:nth-of-type(odd),
	.post-type-archive.post-type-archive-clients .site-inner .flexcol:nth-of-type(odd),
	.archive.category .site-inner .entry:nth-of-type(odd),
	.archive.tax-platform .site-inner .flexcol:nth-of-type(3n+1) {
		margin-left: 0;
	}

	.post-type-archive.post-type-archive-news_article .site-inner .flexcol:nth-of-type(even),
	.post-type-archive.post-type-archive-clients .site-inner .flexcol:nth-of-type(even),
	.archive.category .site-inner .entry:nth-of-type(even),
	.archive.tax-platform .site-inner .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}

	.post-type-archive-faq .archive-description,
	.post-type-archive-verdicts .archive-description {
		align-items: center;
	}

	.post-type-archive-faq .archive-description .archive-wrap {
		flex: 1;
	}

	.post-type-archive-verdicts .archive-description .archive-wrap {
		flex: 1.5;
	}

	.post-type-archive-faq .archive-description .filter-section,
	.post-type-archive-verdicts .archive-description .filter-section {
		flex: 1;
		text-align: right;
	}

	.post-type-archive-faq .archive-description .filter-section form *,
	.post-type-archive-verdicts .archive-description .filter-section form * {
		width: auto;
		margin: 0 0 0 15px;
	}

	.archive-description .entry-title,
	.archive-title,
	.author-box-title,
	.post-type-archive-team .site-inner .category-section h1.category-name {
		font-size: 45px;
	}

	.single-team .entry:first-of-type h2.entry-title {
		font-size: 40px;
	}

	.single-office_locations .entry .gallery-section ul>li {
		flex-basis: 25%;
		max-width: 25%;
	}

	.single-team .team-honors-and-awards .gallery-section {
		align-items: center;
	}

	.single-team .team-honors-and-awards .gallery-section .flexcol {
		flex-basis: 20%;
		max-width: 20%;
		padding: 10px;
		text-align: center;
	}

	/*.office-locations-section .office-title::before {
		content: '';
		position: absolute;
		left: -2px;
		top: calc(50% - 2px);
		width: 37%;
		height: 25px;
		border-top: 2px solid white;
		border-radius: 10px 0 0 0;
	}
	.office-locations-section .office-title::after {
		content: '';
		position: absolute;
		right: -2px;
		top: calc(50% - 2px);
		width: 37%;
		height: 25px;
		border-top: 2px solid white;
		border-radius: 0 10px 0 0;
	}*/

	.blog .site-inner .entry-content .flexcol:first-of-type {
		position: relative;
		min-height: 270px;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type .image-wrap {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: 0;
		overflow: hidden;
	}

	.blog .site-inner .entry-content .flexcol:first-of-type .image-wrap img {
		position: relative;
		z-index: 1;
		height: 100%;
		width: 100%;
		object-fit: cover;
		object-position: center;
	}

	.rbl-shortcode.review,
	.post-type-archive-client_reviews .archive-description>img,
	.page-template-successes .site-inner .archive-content>img {
		width: calc(25% - 18px);
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
		left: 20%;
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
		box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	}

	.single-team .team-page-header {
		margin-top: 30px;
	}

	.single-team .team-page-header img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top center;
		border-radius: 10px;
		box-shadow: 0 0 20px rgb(51 51 51 / 15%);
	}

	.mobile-icons {
		display: none;
	}

	.archive.tax-platform .site-inner .platform-header .flexcol h2.profile-title {
		font-size: 32px;
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
		display: inline-block;
		vertical-align: middle;
		line-height: 0;
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
		line-height: inherit;
	}

	.article-videos .flexbox {
		gap: 20px;
	}

	.article-videos .flexcol {
		flex-basis: calc(50% - 20px);
		max-width: calc(50% - 20px);
		margin: 0;
	}


	/* post type archive guides
	-------------------------------------------------------------- */

	.post-type-archive-guides .guide-section .flexcol {
		flex-basis: calc(33.3% - 20px);
		max-width: calc(33.3% - 20px);
	}

	.post-type-archive-guides .guide-section .flexcol:nth-of-type(3n+1) {
		margin-left: 0;
	}

	.post-type-archive-guides .guide-section .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}

	.post-type-archive-guides .guide-section .flexcol {
		box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
		border-radius: 10px;
		background-color: white;
	}




	/* search template
	-------------------------------------------------------------- */

	body.search .site-inner .flexcol {
		flex-basis: calc(50% - 15px);
		max-width: calc(50% - 15px);
		margin: 15px;
	}


	body.search .site-inner .flexcol:nth-of-type(odd) {
		margin-left: 0;
	}

	body.search .site-inner .flexcol:nth-of-type(even) {
		margin-right: 0;
	}

	.search-no-results .site-inner h1.page-title {
		font-size: 60px;
	}

	/* Site Header
	--------------------------------------------- */

	.nav-primary {
		position: sticky;
		width: 100%;
		text-align: center;
		z-index: 999;
		transition: 0.5s ease all;
		top: 0;
	}

	.admin-bar .nav-primary {
		top: 32px;
	}

	.nav-primary:not(.full-width)::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 50%;
		z-index: -1;
		background-color: #fff;
		box-shadow: 0 10px 20px rgb(0 0 0 / 4%);
	}

	.nav-primary .wrap {
		background-color: #183657;
		transition: 0.5s ease all;
		border-radius: 10px;
	}

	.nav-primary .wrap::before {
		content: '';
		width: 0;
		position: absolute;
		right: 50%;
		top: 0;
		height: 100%;
		transition: 0.5s ease all;
		background-color: #183657;
	}

	.nav-primary .wrap::after {
		content: '';
		width: 0;
		position: absolute;
		left: 50%;
		top: 0;
		height: 100%;
		transition: 0.5s ease all;
		background-color: #183657;
		z-index: -1;
	}

	.nav-primary.full-width .wrap::before,
	.nav-primary.full-width .wrap::after {
		width: 50%;
	}

	.site-header {
		box-shadow: none;
	}

	/*.site-header .wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}*/

	.wp-custom-logo .site-container .site-header .title-area,
	.site-header .wrap .title-area {
		flex: 1;
		max-width: none;
	}

	.site-header .wrap .widget-area {
		flex: 1;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: 10px 0 30px;
	}

	.site-header .wrap .widget-area ul>li {
		margin: 0;
		line-height: 1;
	}

	.site-header .wrap .widget-area .rbl-shortcode a,
	.site-header .wrap .widget-area ul>li a {
		font-weight: 700;
		font-size: 18px;
		padding: 15px;
	}

	.site-header .wrap .widget-area .rbl-shortcode a:hover {
		color: #d6aa6d;
	}

	.site-header .wrap .widget-area ul>li.menu-button a {
		background-color: #183657;
		color: white;
		border-radius: 10px;
		padding: 20px;
		transition: 0.5s ease all;
	}

	.site-header .wrap .widget-area ul>li.menu-button a:hover {
		background-color: #d6aa6d;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu>.menu-bold>a {
		font-weight: 700;
	}

	.genesis-nav-menu>.menu-highlight>a {
		background-color: #333;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu>.menu-highlight>a:focus,
	.genesis-nav-menu>.menu-highlight>a:hover {
		background-color: #0073e5;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 180px;
	}

	.genesis-nav-menu .sub-menu {
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
		text-align: left;
		color: #183657;
	}

	.nav-primary .genesis-nav-menu .sub-menu li:not(:last-of-type) a {
		border-bottom: 1px solid #eee;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.genesis-responsive-menu {
		display: block;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */
	.nav-primary .genesis-nav-menu a {
		padding: 25px 15px;
		display: block;
		color: white;
	}

	.nav-primary .genesis-nav-menu a:focus,
	.nav-primary .genesis-nav-menu a:hover,
	.nav-primary .genesis-nav-menu .current-menu-item>a,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:focus,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:hover {
		color: #d6aa6d;
	}

	/* Site-Inner
	--------------------------------------------- */

	.attorney-referral .content-sidebar-wrap,
	.site-inner,
	.wrap {
		max-width: 1440px;
		margin: 0 auto;
	}

	.post-type-archive-team .site-inner,
	.page-template-successes .site-inner,
	.post-type-archive-news_article .site-inner {
		max-width: none;
		padding: 0;
	}

	.post-type-archive-team .site-inner .team-section,
	.page-template-successes .site-inner .page-section,
	.post-type-archive-news_article .site-inner .news-section {
		padding: 60px 0;
	}

	/* Content
	--------------------------------------------- */
	body.content-sidebar .content-sidebar-wrap,
	body.sidebar-content .content-sidebar-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.content {
		width: calc(70% - 30px);
	}

	.sidebar-content .content {
		float: right;
		order: 2;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		width: 30%;
	}

	.sidebar-content .sidebar {
		float: left;
		order: 1;
	}

	.attorney-referral .sidebar .widget:last-of-type .widgettitle {
		padding-left: 20px;
		padding-right: 40px;
	}

	.attorney-referral .sidebar .widget .widget-title {
		font-size: 34px;
		margin-bottom: 20px;
	}

	/*.sticky-sidebar {
		position:-webkit-sticky;
		position: sticky;
		top: calc(100vh - 600px);
		z-index: 99;
		transition: 0.5s ease all;
	}
	.sticky-sidebar.top {
		top: 110px;
	}
	.admin-bar .sticky-sidebar.top {
		top: 142px;
	}*/

	.sidebar .widget:last-of-type {
		margin-bottom: 0
	}

	.hide-on-desktop {
		display: none;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry-comments,
	.entry-pings {
		margin-bottom: 60px;
		flex-basis: 100%;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1440px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.footer-widget-area {
		margin-bottom: 0;
		flex: 1;
	}

	.footer-widget-area:not(:last-of-type) {
		padding-right: 40px;
	}

}

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

	.post-type-archive:not(.post-type-archive-news_article):not(.post-type-archive-clients) .site-inner .flexcol,
	.archive.tax-source .site-inner .entry,
	.post-type-archive-faq .accordion>ul>li,
	.archive.tax-question_type .accordion>ul>li,
	.archive.tax-display .accordion>ul>li,
	.faq-layout-featured-faq-section .accordion>ul>li,
	.page-template-successes .verdicts-section .flexcol,
	.page-template-successes .reviews-section .flexcol,
	.flexible-layout-team-section .flexcol,
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol,
	.archive.tax-role .site-inner .flexcol,
	.single-team .team-client-reviews .flexcol,
	.single-team .team-videos .flexcol,
	.single-team .team-past-verdicts .flexcol,
	.single-office_locations .entry .team-section .flexcol,
	.page-template-review-links .site-inner .entry .review-section>.flexbox .flexcol,
	.single-team .team-news-articles .flexcol {
		flex-basis: calc(33.3% - 14px);
		max-width: calc(33.3% - 14px);
	}

	.post-type-archive:not(.post-type-archive-news_article):not(.post-type-archive-clients):not(.post-type-archive-verdicts) .site-inner .flexcol:nth-of-type(3n+1),
	.archive.tax-source .site-inner .entry:nth-of-type(3n+1),
	.post-type-archive-faq .accordion>ul>li:nth-of-type(3n+1),
	.archive.tax-question_type .accordion>ul>li:nth-of-type(3n+1),
	.archive.tax-display .accordion>ul>li:nth-of-type(3n+1),
	.faq-layout-featured-faq-section .accordion>ul>li:nth-of-type(3n+1),
	.page-template-successes .reviews-section .flexcol:nth-of-type(3n+1),
	.flexible-layout-team-section .flexcol:nth-of-type(3n+1),
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol:nth-of-type(3n+1),
	.archive.tax-role .site-inner .flexcol:nth-of-type(3n+1),
	.single-team .team-client-reviews .flexcol:nth-of-type(3n+1),
	.single-team .team-videos .flexcol:nth-of-type(3n+1),
	.single-team .team-past-verdicts .flexcol:nth-of-type(3n+1),
	.page-template-review-links .site-inner .entry .review-section>.flexbox .flexcol:nth-of-type(3n+1),
	.single-team .team-news-articles .flexcol:nth-of-type(3n+1) {
		margin-left: 0;
	}

	.post-type-archive:not(.post-type-archive-news_article):not(.post-type-archive-clients):not(.post-type-archive-verdicts) .site-inner .flexcol:nth-of-type(3n),
	.archive.tax-source .site-inner .entry:nth-of-type(3n),
	.post-type-archive-faq .accordion>ul>li:nth-of-type(3n),
	.archive.tax-question_type .accordion>ul>li:nth-of-type(3n),
	.archive.tax-display .accordion>ul>li:nth-of-type(3n),
	.faq-layout-featured-faq-section .accordion>ul>li:nth-of-type(3n),
	.page-template-successes .reviews-section .flexcol:nth-of-type(3n),
	.flexible-layout-team-section .flexcol:nth-of-type(3n),
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol:nth-of-type(3n),
	.archive.tax-role .site-inner .flexcol:nth-of-type(3n),
	.single-team .team-client-reviews .flexcol:nth-of-type(3n),
	.single-team .team-videos .flexcol:nth-of-type(3n),
	.single-team .team-past-verdicts .flexcol:nth-of-type(3n),
	.page-template-review-links .site-inner .entry .review-section>.flexbox .flexcol:nth-of-type(3n),
	.single-team .team-news-articles .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}

	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol:nth-of-type(5n+1) {
		margin-left: 0;
	}


	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol:nth-of-type(5n) {
		margin-right: 0;
	}

	.page-template-review-links .site-inner .entry .attorney-review-section .flexcol {
		flex-basis: calc(20% - 16px);
		max-width: calc(20% - 16px);
	}

	.table-of-contents ol.col-3,
	.table-of-contents ul.col-3,
	.single-guides .question-wrap .answer.col-3 ul,
	.single-guides .question-wrap .answer.col-4 ul {
		column-count: 3;
		column-gap: 40px;
	}

	.single-guides .question-wrap .answer.col-4 ul {
		column-count: 4;
	}
}

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

	.post-type-archive.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(3n+1),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(3n+1),
	.single-office_locations .entry .team-section .flexcol:nth-of-type(3n+1) {
		margin-left: 0;
	}

	.post-type-archive.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(3n),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(3n),
	.single-office_locations .entry .team-section .flexcol:nth-of-type(3n) {
		margin-right: 0;
	}
}

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

	.post-type-archive.post-type-archive.post-type-archive-verdicts .site-inner .flexcol,
	.page-template-successes .verdicts-section .flexcol,
	.single-office_locations .entry .team-section .flexcol {
		flex-basis: calc(25% - 15px);
		max-width: calc(25% - 15px);
	}

	.single-office_locations .entry .team-section#staff .flexcol {
		flex-basis: calc(16.667% - 10px);
		max-width: calc(16.667% - 10px);
		margin: 5px;
	}

	.post-type-archive.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(4n+1),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(4n+1),
	.single-office_locations .entry .team-section .flexcol:nth-of-type(4n+1),
	.single-office_locations .entry .team-section#staff .flexcol:nth-of-type(6n+1) {
		margin-left: 0;
	}

	.post-type-archive.post-type-archive.post-type-archive-verdicts .site-inner .flexcol:nth-of-type(4n),
	.page-template-successes .verdicts-section .flexcol:nth-of-type(4n),
	.single-office_locations .entry .team-section .flexcol:nth-of-type(4n),
	.single-office_locations .entry .team-section#staff .flexcol:nth-of-type(6n) {
		margin-right: 0;
	}
}

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

	.attorney-referral .content-sidebar-wrap,
	.site-inner {
		padding: 20px 5%;
	}

	.wrap {
		padding: 0 5%;
	}

	.nav-primary>.wrap {
		padding: 0;
	}

	.post-type-archive-news_article .site-inner {
		padding: 0;
	}
}

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


	.attorney-referral .content-sidebar-wrap,
	body:not(.post-type-archive):not(.blog).archive.tax-platform .site-inner {
		padding: 40px 5%;
	}

	.site-header .site-title {
		font-size: 26px;
	}
}

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

	.attorney-referral .content-sidebar-wrap,
	.single .site-inner {
		padding: 0;
	}

	.sidebar .widget .textwidget .rbl-shortcode.rbl-tagline:not(:last-child) {
		margin-bottom: 1rem;
	}

	.sidebar {
		padding: 30px;
	}

	.site-inner .entry {
		border-radius: 0;
	}

	.single-team .sidebar .desktop-widget {
		display: none;
	}

	.blog .site-inner .entry .post-image,
	.archive.category .site-inner .entry .post-image {
		height: 0;
		padding-bottom: 56.25%;
	}

	.site-header .widget-area .widget_text,
	.site-header .widget-area .widget_nav_menu {
		display: none;
	}

	.genesis-nav-menu a {
		font-weight: 400;
		font-size: 20px;
		padding: 15px 0;
	}

	.genesis-nav-menu .sub-menu a {
		background-color: transparent;
		font-size: 18px;
	}

	.table-of-contents {
		padding: 20px 5%;
		margin: 20px 0;
	}

	.table-of-contents .section-title {
		font-size: 20px;
		margin: 0;
	}

	.single-guides .guide-accordion .section-title::after {
		content: '+';
		float: right;
	}

	.single-guides .guide-accordion .section-title.ui-state-active::after {
		content: '-';
	}

	.table-of-contents ol,
	.table-of-contents ul {
		padding: 20px 0 0 20px;
	}

	.table-of-contents .guide-list {
		overflow: scroll;
	}

	.table-of-contents ol>li:not(:last-of-type),
	.table-of-contents ul>li:not(:last-of-type) {
		margin-bottom: 15px;
	}

	.table-of-contents ol>li,
	.table-of-contents ul>li {
		font-size: 15px;
	}

	.rbl-shortcode.review,
	.post-type-archive-client_reviews .archive-description>img,
	.flexible-layout-testimonial-section .section-content>img {
		padding: 15px;
	}

	.rbl-shortcode.review:nth-of-type(odd),
	.post-type-archive-client_reviews .archive-description>img:nth-of-type(odd),
	.flexible-layout-testimonial-section .section-content>img:nth-of-type(odd) {
		margin: 10px 10px 10px 0;
	}

	.rbl-shortcode.review:nth-of-type(even),
	.post-type-archive-client_reviews .archive-description>img:nth-of-type(even),
	.flexible-layout-testimonial-section .section-content>img:nth-of-type(even) {
		margin: 10px 0 10px 10px;
	}

	.rbl-shortcode.review .content-wrap .cat-image {
		margin-right: 5px;
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
		padding: 15px 25px;
		font-weight: 700;
		font-size: 18px;
		text-transform: uppercase;
		border-bottom: 1px solid #ccc;
	}

	.site-container ul.mega-sub-menu ul.mega-sub-menu,
	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link i {
		display: none !important;
	}

	.single-team .content-sidebar-wrap .widget.contact-form {
		margin: 20px;
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item>a.mega-menu-link {
		text-transform: capitalize;
		color: #333;
		font-weight: 400;
		margin-left: 30px;
		font-size: 16px;
		background-color: white;
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu {
		padding: 0;
		background: white;
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item {
		line-height: 1;
		padding: 5px;
		border-bottom: 1px solid #ccc;
	}

	.office-locations-section .content-wrap {
		padding: 0 5% 30px 5%;
	}

	.office-locations-section .content-wrap::before {
		height: calc(100% - 15px);
		top: 15px;
	}

	.office-locations-section .widget {
		text-align: center;
	}

	.office-locations-section .widget:not(:last-of-type) {
		margin-bottom: 30px;
	}

	.office-locations-section .office-title {
		font-size: 32px;
	}

	.office-locations-section .widget-title {
		font-size: 24px;
	}

	.floating-cta {
		right: 0;
		width: 100%;
	}

	.floating-cta.appear {
		bottom: 0;
	}

	.floating-cta a.button {
		border-radius: 0;
		display: block;
	}

	.single-team .accordion {
		margin: 20px;
	}

	.single-team .site-inner .content-sidebar-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.single-team .site-inner .content {
		order: 2;
		flex-basis: 100%;
		max-width: 100%;
	}

	.single-team .site-inner .sidebar {
		order: 1;
		flex-basis: 100%;
		max-width: 100%;
		padding: 0 5% 30px 5%;
	}

	.post-type-archive-faq .accordion>ul>li,
	.archive.tax-question_type .accordion>ul>li,
	.archive.tax-display .accordion>ul>li,
	.faq-layout-featured-faq-section .accordion>ul>li {
		margin-bottom: 15px;
	}

	.mobile-icons {
		display: inline-block;
		vertical-align: middle;
	}

	.mobile-icons .widget ul>li {
		display: inline-block;
		padding: 0;
		line-height: 1;
		margin: 0 5px 0 0;
	}

	.mobile-icons ul>li a {
		display: block;
		padding: 15px;
		border: 1px solid #ccc;
		width: 52px;
		height: 52px;
	}

	.mobile-icons .widget ul>li i::before {
		margin: 0;
	}

	.site-container {
		background-color: white;
	}

	.site-header {
		display: inline-block;
		vertical-align: middle;
		width: 100%;
		box-shadow: none;
	}

	.title-area {
		max-width: 125px;
		padding: 15px 0;
	}

	.site-title {
		font-size: 28px;
	}

	.mobile-menus {
		display: inline-block;
		width: 50%;
		text-align: right;
		padding-right: 5%;
	}

	.menu-toggle {
		background-color: white;
		display: inline-block;
		vertical-align: middle;
		color: #183657;
		text-align: right;
		border: 1px solid #ccc;
		width: auto;
	}

	.menu-toggle:focus,
	.menu-toggle:hover {
		color: #183657;
		background-color: white;
		border: 1px solid #ccc;
		border-width: 1px;
	}

	.menu-toggle::before,
	.menu-toggle.activated::before {
		color: #183657;
		background-color: white;
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-tabbed>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
		width: calc(100% - 30px);
	}

	.site-container #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-toggle-on>a.mega-menu-link>span.mega-indicator:after {
		content: '\f107';
		transform: rotate(180deg);
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu {
		display: block !important;
		margin-left: 60px;
		padding: 5px;
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-menu-tabbed li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu li.mega-menu-item-type-widget {
		display: none;
	}

	.nav-primary #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-tabbed>ul.mega-sub-menu>li.mega-menu-item.mega-menu-item-has-children.mega-toggle-on>a.mega-menu-link>span.mega-indicator:after {
		content: '\f105' !important;
		transform: rotate(90deg);
	}

	.flexible-layout-testimonial-section .section-content .rbl-shortcode.review {
		display: inline-block;
	}

	.page-id-4724 .content .flexible-layout.section-1.flexible-layout-text-section img.alignleft {
		float: none;
		display: block;
	}

	.site-inner .entry {
		box-shadow: unset;
	}

	.page-template-successes .site-inner .page-section>.wrap,
	.post-type-archive-team .site-inner .team-section>.wrap {
		padding: 0;
	}

	.entry-content .practice-area-section ul.practices-list,
	.accordion>ul>li .answer ul.practices-list {
		margin-left: 0;
		padding-left: 0;
	}

	.post-type-archive-faq .archive-description .filter-section select,
	.post-type-archive-verdicts .archive-description .filter-section select {
		margin-top: 10px;
	}

	.post-type-archive-news_article .site-inner .news-section:first-of-type {
		padding-bottom: 0;
	}

	.archive.tax-client_type .site-inner .archive-description {
		box-shadow: unset;
	}

	.mobile-icons {
		position: relative;
		right: -12%;
	}

	.menu-toggle {
		right: -12%
	}


	.attorney-referral .sidebar {
		padding: 20px 5%;
	}

	.hide-on-mobile {
		display: none;
	}

	.single-office_locations .entry .rbl-shortcode i {
		display: inline-block;
	}

	.single-office_locations .entry .widget .rbl-shortcode:not(:last-child) {
		margin-bottom: 10px;
	}

	.sidebar .widget .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
		width: 100%;
	}
}

@media only screen and (max-width: 660px) {
	body {
		line-height: 1.4;
		font-size: 16px;
	}


	.site-header~.menu-toggle {
		position: absolute;
		right: 5%;
		top: 19px;
		width: 52px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.site-header~.mobile-icons {
		position: absolute;
		right: calc(5% + 55px);
		top: 19px;
	}

	.site-header .header-widget-area .widget.widget_media_image {
		float: left;
		padding: 38px 0;
	}

	.site-header .widget_media_image .widget-wrap {
		width: 60%;
	}

	.admin-bar .site-header~.mobile-icons,
	.admin-bar .site-header~.menu-toggle {
		top: 65px;
	}

	.alignleft,
	.alignright {
		float: none;
	}

	body:not(.post-type-archive):not(.blog):not(.page-template-successes) .site-inner {
		padding: 0;
	}

	.site-inner .jsmt-page-header h1.page-title {
		position: relative;
	}

	.post-type-archive-team .site-inner .flexcol .post-info,
	.archive.tax-role .site-inner .flexcol .post-info {
		padding: 10px 5px;
	}

	.post-type-archive-team .site-inner .flexcol h3.name,
	.archive.tax-role .site-inner .flexcol h3.name,
	.flexible-layout-team-section .flexcol h3.name {
		font-size: 18px;
	}

	.post-type-archive-team .site-inner .flexcol .team-role,
	.archive.tax-role .site-inner .flexcol .team-role,
	.flexible-layout-team-section .flexcol .team-role {
		font-size: 12px;
	}

	.blog .site-inner .entry .post-image::after,
	.post-type-archive-news_article .site-inner .flexcol .post-image::after,
	.archive.category .site-inner .entry .post-image::after,
	.single-team .team-news-articles .flexcol .post-image::after {
		padding-bottom: 56.25%;
	}

	.wp-custom-logo .site-container .site-header .title-area {
		justify-content: center;
	}

	.site-title {
		font-size: 22px;
	}

	.wp-custom-logo .title-area img {
		max-width: 32px;
	}

	.post-type-archive-client_reviews .site-inner .flexcol .review,
	.archive.tax-source .site-inner .entry .review,
	.single-team .site-inner .sidebar .item .review,
	.page-template-successes .site-inner .reviews-section .flexcol .review,
	.flexible-layout-testimonial-section .flexbox.testimonial-section .flexcol .review,
	.single-team .team-client-reviews .flexcol .review {
		max-height: 155px;
	}

	.accordion>ul>li .question {
		font-size: 20px;
		min-height: auto;
	}

	.accordion>ul>li .question .inner-wrapper {
		padding: 15px;
	}

	.post-type-archive-client_reviews .archive-description .rbl-shortcode.review,
	.post-type-archive-client_reviews .archive-description>img,
	.flexible-layout-testimonial-section .section-content .rbl-shortcode.review,
	.flexible-layout-testimonial-section .section-content>img,
	.page-template-successes .site-inner .archive-content .rbl-shortcode.review,
	.page-template-successes .site-inner .archive-content>img {
		display: block;
		width: 100%;
		max-width: none;
		margin: 20px auto !important;
	}

	.page-template-successes .site-inner .archive-title .section-link {
		flex-basis: 100%;
		margin-top: 10px;
	}

	.single-team .site-inner .team-badges .flexcol {
		flex-basis: 33.3%;
		max-width: 33.3%;
	}

	.wp-custom-logo .title-area img {
		max-width: 75px;
	}

	.single-office_locations .entry-content .team-section .flexbox {
		display: flex;
		flex-wrap: wrap;
	}

	.single-office_locations .entry-content .team-section .flexcol {
		flex-basis: 33.33%;
		max-width: 33.33%;
	}

	.single-office_locations .entry .team-section .flexcol h3.name {
		font-size: 18px;
	}

	.single-office_locations .entry .team-section .flexcol .team-role {
		font-size: 12px;
	}

	.single-office_locations .team-section .flexcol .post-info {
		min-height: 60px;
		display: flex;
		flex-flow: column wrap;
		justify-content: center;
		align-items: center;
	}

}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title>a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

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

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title>a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.attorney-referral .content-sidebar-wrap,
	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}