/**
 * Table of Content
 * ==================================================
 *   #Font-Face
 *   #Site Styles
 *   #Media Queries
 *
 * @format
 */

/* #Font-Face
================================================== */
/* @import url('../fonts/dm-serif-display/stylesheet.css');
@import url('../fonts/plus-jakarta-sans/stylesheet.css');
@import url('../fonts/gotham/stylesheet.css'); */

/* #Site Styles
================================================== */

/* ### general ### */
:root {
	--page-bg: #fff;
	--width-base: 1430px;
	--width-base-lg: 1720px;
	--width-base-sm: 1036px;
	--gutter-base: 20px;
	--gutter-top: 0;
	--gutter-right: var(--gutter-base);
	--gutter-bottom: var(--gutter-base);
	--gutter-left: var(--gutter-base);
	--gutter-side: 20px;
	--gutter-side-tablet: 20px;
	--gutter-side-phone: 20px;
	--color-error: #d9534f;
	--color-success: #5cb85c;
	--color-info: #5bc0de;
	--primary-color: #363636;
	--secondary-color: #002453;
	--alternate-color: #56c4ba;
	--white-color: #fff;
	--shade-color: #f4f6fd;
	--black-color: #000;
	--orange-color: #d75e00;
	--gray-color: #8394ab;
	--blue-color: #001c41;
	--dark-blue-color: #00132e;
	--sky-blue-color: #56a7d1;
	--light-sky: #f3f7fd;
	--light-color: #e6e6e6;
	--light-gray-color: #dedede;
	--max-width: var(--width-base);
	--base-duration: 0.25s;
	--base-timing: ease-in-out;
	--text-color-base: #333;
	--link-color-base: #337ab7;
	--link-decoration-base: none;
	--link-hover-color-base: #337ab7;
	--link-hover-decoration-base: underline;
	--font-family-base: "Gotham", sans-serif;
	--font-family-dm-serif: "DM Serif Display", sans-serif;
	--font-family-plus-jakarta: "Plus Jakarta Sans", sans-serif;
	--font-family-icon: "Font Awesome 6 Pro", sans-serif;
	--font-size-base: 16px;
	--font-size-h1: 36px;
	--font-size-h2: 25px;
	--font-size-h3: 22px;
	--font-size-h4: 20px;
	--font-size-h5: 18px;
	--font-size-h6: 16px;
	--line-height-base: 1.86;
	--heading-margin: 0 0 20px 0;
	--heading-font-family: inherit;
	--heading-font-weight: 600;
	--heading-line-height: 1.1;
	--heading-color: inherit;
	--heading-letter-spacing: 2px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	display: block !important;
	line-height: 1.6;
	font-size: 1rem;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text-color-base);
}
body {
	background: var(--page-bg);
}
input,
select,
textarea {
	padding: 10px 20px;
	width: 100%;
	height: 60px;
	font-family: var(--font-family-base);
	font-size: 18px;
	color: var(--secondary-color);
	border: 0;
	border-radius: 0;
	background-color: var(--white-color);
}
select {
	padding-right: 45px;
	-webkit-appearance: none;
	-moz-appearance: none;
}
select::-ms-expand {
	display: none;
}
.select-wrapper {
	position: relative;
}
.select-wrapper::after {
	content: "\f0d7";
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	color: var(--sky-blue-color);
	font-size: 22px;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	pointer-events: none;
}
.sidebar-block .select-wrapper {
	border: 1px solid var(--secondary-color);
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0;
}
ul,
li {
	list-style: none;
}
a {
	display: inline-block;
	text-decoration: none;
	color: var(--orange-color);
}
a.active,
a:hover {
	color: var(--sky-blue-color);
	text-decoration: underline;
}

p a,
.leftBox li a {
	text-decoration: underline;
}
p a:hover,
p a:focus,
.leftBox li a:hover,
.leftBox li a:focus {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: var(--heading-margin);
	font-weight: normal;
	line-height: var(--heading-line-height);
	color: var(--secondary-color);
}
h1 {
	font-size: var(--font-size-h1);
}
h2 {
	font-size: var(--font-size-h2);
}
h3 {
	font-size: var(--font-size-h3);
	font-weight: 500;
}
h4 {
	font-size: var(--font-size-h4);
	font-weight: bold;
}
h5 {
	font-size: var(--font-size-h5);
}
h6 {
	font-size: var(--font-size-h6);
}
.h1 {
	font-size: 80px;
	font-weight: bold;
}
.h2 {
	font-size: 30px;
	font-weight: bold;
}
/* :focus {
  outline: none;
} */
p {
	margin: 0 0 30px;
}

/* ### global classes ### */
.clear {
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
}
.container-lg {
	padding-right: calc((100% - var(--width-base-lg)) / 2);
	padding-left: calc((100% - var(--width-base-lg)) / 2);
}
.container-sm {
	padding-right: calc((100% - var(--width-base-sm)) / 2);
	padding-left: calc((100% - var(--width-base-sm)) / 2);
}
.container {
	padding-right: calc((100% - var(--width-base)) / 2);
	padding-left: calc((100% - var(--width-base)) / 2);
}
.holder {
	display: flex;
	flex-wrap: wrap;
}
.banner-title {
	position: relative;
	font-size: var(--font-size-h1);
	line-height: 1;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 0;
}
body.single-cases .banner-title,
body.single-practices .banner-title {
	text-align: left;
	/* font-size: 26px; */
	font-size: 18px;
	padding-left: 10px;
}
.banner .banner-title.small {
	font-size: 30px;
	margin-bottom: 20px;
}
body.single-cases .banner-title.small,
body.single-practices .banner-title.small {
	font-size: 18px;
}
.banner .banner-title.large {
	padding-left: 0;
	font-weight: 700;
	margin-bottom: 0;
}
.banner .banner-title.large::before {
	display: none;
}
.banner-title:before {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 2px;
	height: 100%;
	background-color: var(--orange-color);
	content: "";
}
body.single-practices .banner-title:before,
body.single-cases .banner-title:before {
	display: block;
}

@media screen and (min-width: 768px) {
	.banner .banner-title.large {
		font-weight: 500;
	}
}

button,
.button {
	padding: 17px 35px 14px;
	position: relative;
	z-index: 2;
	display: inline-block;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	font-weight: bold;
	line-height: var(--heading-line-height);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--secondary-color);
	border: 2px solid var(--secondary-color);
	border-radius: 0;
	background-color: transparent;
	transition: all 0.5s;
	cursor: pointer;
}
.button:before {
	position: absolute;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 50%;
	z-index: -1;
	opacity: 0;
	background-color: var(--secondary-color);
	transition: all 0.5s;
	content: "";
}
.button:hover,
.button:focus {
	color: var(--white-color);
	text-decoration: none;
}
.button:hover:before,
.button:focus:before {
	right: 0;
	left: 0;
	opacity: 1;
}
button.no-button {
	padding: 0;
	background: none;
	border: none;
	color: var(--orange-color);
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
}
button.no-button:hover,
button.no-button:focus {
	color: var(--sky-blue-color);
	text-decoration: underline;
	cursor: pointer;
}
.button-primary {
	padding: 11px 20px;
	letter-spacing: 1px;
	color: var(--white-color);
	border: 2px solid var(--orange-color);
	background-color: var(--orange-color);
}
.button-primary:hover,
.button-primary:focus {
	border: 2px solid var(--secondary-color);
}
.button-primary:hover:before,
.button-primary:focus:before {
	right: 0;
	left: 0;
	opacity: 1;
}
.button-secondary {
	padding: 10px 20px;
	letter-spacing: 1px;
	color: var(--white-color);
	border: 2px solid var(--secondary-color);
	background-color: var(--secondary-color);
}
.button-secondary:hover,
.button-secondary:focus {
	border: 2px solid var(--orange-color);
}
.button-secondary:hover:before,
.button-secondary:focus:before {
	background-color: var(--orange-color);
}
.button-outline {
	color: var(--white-color);
	border: 2px solid var(--white-color);
}
.button-outline:hover,
.button-outline:focus {
	color: var(--secondary-color);
}

/* CORE > Utility Classes */
.no-float {
	float: none;
}

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

.no-margin-last > p:last-of-type {
	margin: 0 !important;
}

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

.no-transition {
	transition: none !important;
}

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

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.hr-after {
	position: relative;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

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

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

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--header-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.show-in-pdf,
.hide {
	display: none !important;
}

.overflow-hidden {
	overflow: hidden;
}

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

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

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

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

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

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

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mx-auto {
	margin: auto;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.border-t {
	border-top: solid 1px;
}

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

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

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

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

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

.background-transparent {
	background: transparent;
}

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

.partial-underline {
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}
.partial-underline.partial-underline--orange {
	border-color: var(--orange-color);
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

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

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

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

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

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

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

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

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

/* ### wrapper ### */
.wrapper {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

/* ### header ### */
.header {
	position: fixed;
	top: 34px;
	left: 0;
	z-index: 9;
	width: 100%;
	/* transform: translateY(34px); */
	transition: 100ms;
}
.header:after {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	background-color: var(--secondary-color);
	transition: var(--base-duration);
	content: "";
}
.header .d-phone {
	padding: 10px 15px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	background-color: var(--orange-color);
}
.header .tel {
	font-size: 13px;
	font-weight: 700;
	color: var(--white-color);
}
.header .top-bar {
	padding-top: 7px;
	padding-bottom: 6px;
	display: none;
	text-align: center;
	background-color: var(--secondary-color);
	transition: var(--base-duration);
}
.header .top-bar a {
	font-size: 13px;
	color: var(--white-color);
}
.header .top-bar p {
	font-size: 12px;
	color: var(--white-color);
}
.header .top-bar strong {
	color: var(--sky-blue-color);
}
.header .top-bar i {
	color: var(--orange-color);
}
.header .wrap {
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}
.header .header-logo {
	padding-top: 13px;
	position: relative;
	z-index: 3;
	width: 60%;
}
.header.active .header-logo {
	background: var(--secondary-color);
}
.header .header-logo img {
	max-width: 176px;
	object-fit: contain;
	transition: var(--base-duration);
}
.color-logo {
	display: none;
}
body.scrolled.single-attorneys .white-logo,
.single-attorneys .color-logo,
.single-attorneys .header.active .white-logo {
	display: block;
}
body.scrolled.single-attorneys .color-logo,
.single-attorneys .white-logo,
.single-attorneys .header.active .color-logo {
	display: none;
}

.header .button {
	padding: 12px 13px;
	position: relative;
	z-index: 3;
	font-size: 16px;
	width: 45px;
	height: 45px;
}
.header .button span {
	display: none;
}
.header-menu .search {
	display: none;
}
.header .icon-search {
	display: block;
	font-size: 22px;
	color: var(--sky-blue-color);
}
.header.active:after {
	opacity: 1;
	visibility: visible;
}
.header.active {
	transform: translateY(0);
}
.header.sticky {
	margin-top: 0;
	background-color: var(--secondary-color);
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
	/* transform: translateY(0); */
	top: 0;
}
.header.sticky .header-logo {
	padding-top: 13px;
}
.header.sticky .header-logo img {
	max-width: 176px;
}
/* .header.sticky .header-menu ul > li > a {
  font-size: 16px;
} */
.header.sticky .button {
	font-size: 16px;
}
.header.inner.sticky {
	transform: translateY(0);
}
.header.inner-1.sticky {
	transform: translateY(0);
}
.header.inner-1 .hamburger {
	background-color: #f3f7fd;
}
.header .d-sticky {
	display: none;
}
.header.active .d-sticky,
.header.sticky .d-sticky {
	display: block;
}
.header.active .d-desktop,
.header.sticky .d-desktop {
	display: none;
}
@media screen and (min-width: 375px) {
	.header .header-logo img {
		max-width: 230px;
	}
	.header.sticky .header-logo img {
		max-width: 230px;
	}
}
@media only screen and (min-width: 575px) {
	.header {
		padding-top: 20px;
		padding-bottom: 20px;
		background-color: transparent;
	}
	.header.active,
	.header.sticky {
		transform: translateY(0);
	}
	.header .d-phone {
		display: none;
	}
	.header .wrap {
		padding-top: 0;
		padding-bottom: 0;
	}
	.header .header-logo {
		padding-top: 12px;
		width: 40%;
	}
	.header.sticky .header-logo {
		padding-top: 12px;
	}
	.header.sticky .button {
		font-size: 10px;
	}
	.header.active .hamburger {
		top: 20px;
	}
}
@media screen and (min-width: 640px) {
	.header .button {
		padding: 15px 8px;
		font-size: 10px;
		width: auto;
	}
	.header .button span {
		display: inline-block;
	}
}
@media only screen and (min-width: 767px) {
	.header .header-logo {
		padding-top: 12px;
	}
	.header .header-logo img {
		max-width: 295px;
	}
	.header.sticky .header-logo img {
		max-width: 295px;
	}
	.header .button {
		padding: 14px 16px;
		font-size: 13px;
	}
	.header.sticky .button {
		font-size: 13px;
	}
}
@media only screen and (min-width: 1025px) {
	.header {
		padding-top: 0;
		padding-bottom: 0;
	}
	/* .header.sticky {
    transform: translateY(-43px);
  } */
	.header .top-bar {
		display: block;
	}
	.header .header-logo {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		padding-top: 49px;
		width: 30%;
	}
	.header .header-logo img {
		max-width: 305px;
	}
	.header.sticky .header-logo {
		padding-top: 30px;
	}
	.header.sticky .header-logo img {
		max-width: 305px;
	}
	.header .button {
		padding: 10px 16px;
		font-size: 14px;
		line-height: 1.3;
	}
	.header.sticky .button {
		font-size: 14px;
	}
	/* .header.sticky .header-menu .nav {
    padding-top: 5px;
  } */
	.header-menu .search {
		display: block;
	}
	.header.inner-1 .header-menu ul > li > a {
		color: var(--secondary-color);
	}
	.header.inner-1 .header-menu ul > li > a.active,
	.header.inner-1 .header-menu ul > li > a:hover,
	.header.inner-1 .header-menu ul > li > a:focus {
		color: var(--white-color);
		background-color: var(--sky-blue-color);
	}
	.header.inner-1.sticky .header-menu ul > li > a {
		color: var(--white-color);
	}
	.header.inner-1.sticky .header-menu ul > li > ul > li > a {
		color: var(--secondary-color);
	}
	.header.inner-1.sticky .header-menu ul > li > ul > li > a:hover,
	.header.inner-1.sticky .header-menu ul > li > ul > li > a:focus {
		color: var(--white-color);
	}
}
@media only screen and (min-width: 1400px) {
	.header .header-logo {
		width: 35%;
	}
	.header .header-logo img {
		max-width: 100%;
	}
	.header .button {
		padding: 9px 16px;
		font-size: 18px;
	}
	.header.sticky .button {
		font-size: 16px;
	}
}
@media only screen and (min-width: 1750px) {
	/* .header.sticky {
    transform: translateY(-49px);
  } */
	.header .top-bar {
		text-align: left;
	}
	.header .top-bar a {
		font-size: 18px;
	}
	.header .button {
		font-size: 22px;
	}
}

/* ### menu box ### */
.header-menu {
	/* padding-right: 52px; */
	width: 40%;
	text-align: right;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: end;
	justify-content: flex-end;
	grid-gap: 6px;
	gap: 6px;
}
.header-menu .nav,
.header-menu .sub-menu {
	padding: 125px 15px 50px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100vh;
	text-align: left;
	background-color: var(--secondary-color);
	/* transition: var(--base-duration); */
	/* overflow-y: scroll; */
}
.header-menu .nav.open {
	opacity: 1;
	visibility: visible;
}
.header-menu ul {
	display: block;
}
.header-menu ul > li {
	margin-bottom: 15px;
	/* position: relative; */
}
.header-menu ul > li:hover ul,
.header-menu ul > li.active ul {
	opacity: 1;
	visibility: visible;
}
.header-menu ul > li > a {
	padding: 7px 10px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white-color);
	transition: var(--base-duration);
	font-weight: 300;
}
.header-menu ul > li.active > a,
.header-menu ul > li > a:hover,
.header-menu ul > li > a:focus {
	background-color: var(--sky-blue-color);
}
.header-menu ul > li > a.active,
.header-menu ul > li > a:hover,
.header-menu ul > li > a:focus {
	text-decoration: none;
}
#mobile-navigation .menu-item-has-children > a:after {
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	right: 25px;
}
.header-menu ul > li > ul {
	display: none;
	text-align: left;
}
.header-menu .sub-menu {
	position: absolute;
	top: 0;
	background: var(--secondary-color);
	padding: 160px 15px 50px;
	z-index: 1;
}
.header-menu ul > li > ul > li {
	margin-right: 0;
	margin-bottom: 0;
}
.header-menu ul > li > ul > li > a {
	display: block;
	/* font-size: 15px; */
	font-weight: 500;
	text-transform: capitalize;
	transition: var(--base-duration);
}
.header-menu .mobile-navigation-previous {
	position: fixed;
	top: 110px;
}
@media only screen and (min-width: 575px) {
	.header-menu {
		width: 60%;
	}
}
@media only screen and (min-width: 1025px) {
	.header-menu {
		padding-right: 0;
		width: 70%;
		display: block;
	}
	.header-menu .nav {
		padding: 14px 0;
		position: unset;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		opacity: 1;
		visibility: visible;
		width: 100%;
		height: auto;
		text-align: right;
		background-color: transparent;
		overflow-y: unset;
	}
	.header-menu ul {
		/* margin-bottom: -10px; */
		display: flex;
		flex-wrap: wrap;
	}
	.header-menu ul > li {
		position: relative;
		margin-right: 10px;
		margin-bottom: 0;
	}
	.header-menu ul > li > a {
		font-size: 14px;
	}
	.header.sticky ul > li > a,
	.header-menu .sub-menu a {
		font-size: 14px;
	}
	.header-menu ul > li > ul > li > a:hover,
	.header-menu ul > li > ul > li > a:focus {
		color: var(--orange-color);
		background-color: var(--secondary-color);
	}
	.header-menu ul > li > a.active,
	.header-menu .main-navigation-menu > li.current_page_item > a {
		background-color: var(--sky-blue-color);
	}
	.single-attorneys .header-menu ul > li > a {
		color: var(--secondary-color);
	}
	body.scrolled.single-attorneys .menu-main-navigation-container > ul > li > a {
		color: #fff;
	}
	.single-attorneys .header-menu ul > li.active > a,
	.single-attorneys .header-menu ul > li.current_page_item > a,
	.single-attorneys .header-menu ul > li > a.active,
	.single-attorneys .header-menu ul > li > a:hover,
	.single-attorneys .header-menu ul > li > a:focus {
		color: var(--white-color);
	}
	.header-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		display: block;
		opacity: 0;
		visibility: hidden;
		width: 318px;
		height: auto !important;
		background-color: var(--white-color);
		transition: var(--base-duration);
		padding: 0;
	}
	.header-menu ul > li.menu-item-1819 > ul,
	.header-menu ul > li.menu-item-1817 > ul {
		left: auto;
		right: 0;
		/* display: grid;
		grid-template-columns: repeat(2, 1fr); */
		columns: 2;
		width: 560px;
	}
	.header-menu ul > li > ul > li > a {
		padding: 12px 22px;
		color: var(--secondary-color);
	}
}
@media screen and (max-height: 720px) {
	.header-menu ul > li.menu-item-1819 > ul,
	.header-menu ul > li.menu-item-1817 > ul {
		width: 640px;
		overflow: scroll;
	}
}
@media only screen and (max-width: 575px) {
	.header-menu ul > li.menu-item-1819 > ul,
	.header-menu ul > li.menu-item-1817 > ul {
		overflow: scroll;
	}
}
@media only screen and (min-width: 1400px) {
	.header-menu {
		width: 65%;
	}
	/* .header-menu ul {
    margin-bottom: -6px;
  } */
	.header-menu ul > li {
		margin-right: 18px;
	}
	.header-menu ul > li > a {
		padding: 9px 16px;
		font-size: 18px;
	}
	.header-menu ul > li.menu-item-1819 > ul,
	.header-menu ul > li.menu-item-1817 > ul {
		left: 0;
		right: auto;
	}
}
@media only screen and (min-width: 1750px) {
	.header-menu ul > li {
		margin-right: 22px;
	}
	.header-menu ul > li > a {
		padding: 9px 16px;
		font-size: 22px;
	}
}
@media screen and (max-height: 669px) and (min-width: 1025px) {
	.header-menu ul > li.menu-item-1819 > ul {
		grid-template-columns: repeat(3, 1fr);
	}
}
.hamburger {
	/* position: absolute;
  top: 50px;
  right: 15px; */
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #f3f7fd;
}
.hamburger span {
	margin: 4px auto;
	position: relative;
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 75px;
	background-color: var(--orange-color);
	transition: var(--base-duration);
}
.hamburger span:before,
.hamburger span:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 75px;
	background-color: var(--orange-color);
	transition: var(--base-duration);
	content: "";
}
.hamburger span:before {
	top: -6px;
}
.hamburger span:after {
	right: 0;
	bottom: -6px;
}
.hamburger.is_active span {
	background: none;
}
.hamburger.is_active span:before {
	top: 0;
	width: 100%;
	background-color: var(--orange-color);
	transform: rotate(135deg);
}
.hamburger.is_active span:after {
	bottom: 0;
	width: 100%;
	background-color: var(--orange-color);
	transform: rotate(-135deg);
}
@media only screen and (min-width: 575px) {
	.hamburger {
		top: 20px;
	}
}
@media only screen and (min-width: 1025px) {
	.hamburger {
		display: none;
	}
}

/* ### banner section ### */
.hero {
	position: relative;
	min-height: 410px;
	overflow: hidden;
}
.hero .home-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero .slick-autoplay-toggle-button {
	bottom: 10px;
	color: #fff;
}
.hero .js-slider {
	z-index: 2;
}
.hero .content {
	padding-bottom: 34px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	min-height: 410px;
}
.hero .text {
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	z-index: 2;
}
.hero h1 {
	margin: 0 auto 15px;
	width: 100%;
	max-width: 1035px;
	font-size: 28px;
	text-align: center;
	color: var(--white-color);
}
.hero .law {
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	color: var(--white-color);
}
.hero .slick-arrow {
	position: absolute;
	bottom: 75px;
	z-index: 2;
	font-size: 30px;
	color: rgba(255, 255, 255, 0.5);
	border: 0;
	background-color: transparent;
	cursor: pointer;
}
.hero .slick-next {
	right: 15px;
}
.hero .slick-prev {
	left: 15px;
}
.hero .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero .image:before,
.hero .image:after {
	position: absolute;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 50%;
	content: "";
}
.hero .image:before {
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero .image:after {
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.84) 100%);
}
.hero .home-hero-picture-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	height: 100%;
}
.hero .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.ml3,
.ml4 {
	opacity: 0;
}
@media only screen and (min-width: 767px) {
	.hero {
		height: 100vh;
	}
	.hero .content {
		height: 100vh;
	}
	.hero .text {
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media only screen and (min-width: 992px) {
	.hero h1 {
		font-size: 55px;
	}
	.hero .slick-arrow {
		bottom: 130px;
		font-size: 60px;
	}
}
@media only screen and (min-width: 1025px) {
	.hero .text {
		padding-right: 0;
		padding-left: 0;
	}
}
@media only screen and (min-width: 1400px) {
	.hero h1 {
		font-size: 80px;
	}
	.hero .law {
		font-size: 24px;
	}
}
@media only screen and (min-width: 1750px) {
	.hero .slick-arrow {
		bottom: 183px;
	}
	.hero .slick-next {
		margin-right: -760px;
		right: 50%;
	}
	.hero .slick-prev {
		margin-left: -760px;
		left: 50%;
	}
}

/* ### banner section ### */
.banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 290px;
}
body.single-practices .banner,
body.single-cases .banner {
	-webkit-box-align: end;
	align-items: flex-end;
}
.banner .content {
	padding-left: 0;
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: 30px;
}
body.single-practices .banner .content,
body.single-cases .banner .content {
	margin-top: 0;
	margin-bottom: 40px;
}
.banner .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.banner .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.banner .image:before,
.banner .image:after {
	position: absolute;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 65%;
	content: "";
}
.banner .image:before {
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner .image:after {
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.84) 100%);
}
body.single-cases .banner .image:after {
	background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 36, 83, 1) 100%);
	height: 100%;
	width: 64%;
}
.banner .sub-title {
	margin-bottom: 15px;
	padding-left: 22px;
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--white-color);
}
.banner .sub-title:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: var(--orange-color);
	content: "";
}
.banner.inner .image:before {
	height: 100%;
	background: linear-gradient(to right, rgba(0, 39, 81, 1) 0%, rgba(0, 39, 81, 0) 100%);
}
.banner.inner .image:after {
	display: none;
}
.banner.inner .banner-title {
	padding-left: 0;
	font-size: 26px;
	font-weight: bold;
	text-align: left;
	text-transform: capitalize;
}
.banner.inner .banner-title:before {
	display: none;
}
@media only screen and (min-width: 768px) {
	.banner {
		min-height: 510px;
	}
	.banner .sub-title {
		font-size: 25px;
	}
	.banner .banner-title {
		padding-left: 32px;
	}
	.banner.inner .banner-title {
		font-size: 50px;
		font-weight: normal;
		text-transform: uppercase;
	}
	body.single-practices .banner,
	body.single-cases .banner {
		-webkit-box-align: center;
		align-items: center;
	}
	body.single-practices .banner .content,
	body.single-cases .banner .content {
		margin-bottom: 0px;
	}
}
/* @media only screen and (min-width: 1025px) {
  .banner .content {
    padding-left: 125px;
  }
} */

/* ### protect section ### */
.protect {
	text-align: center;
	background-color: var(--secondary-color);
}
.protect .holder {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas:
		"item-1 item-1 item-2 item-2 item-3 item-3"
		"item-4 item-4 item-4 item-5 item-5 item-5";
	margin: 0 -40px;
}
.protect .item-1 {
	grid-area: item-1;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.protect .item-2 {
	grid-area: item-2;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.protect .item-3 {
	grid-area: item-3;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.protect .item-4 {
	grid-area: item-4;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.protect .item-5 {
	grid-area: item-5;
}
.protect .item {
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	display: block;
	/* width: 33.3%; */
	width: 100%;
}
.protect .item.w-50 {
	width: 50%;
	border-top: 1px solid var(--white-color);
}
/* .protect .item:hover .title {
  color: var(--white-color);
}
.protect .item:hover span {
  color: var(--sky-blue-color);
} */
.protect .item:nth-child(3) {
	border-right: 0;
}
.protect .item:last-child {
	border-right: 0;
}
.protect .title {
	margin-bottom: 6px;
	font-size: 30px;
	font-weight: 500;
	line-height: var(--heading-line-height);
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.protect span {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white-color);
	transition: var(--base-duration);
}
@media only screen and (min-width: 900px) {
	.protect {
		padding-top: 50px;
		padding-bottom: 45px;
	}
	.protect .holder {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		margin: 0 -10px;
	}
	.protect .item {
		padding-top: 0;
		padding-bottom: 0;
		width: 20%;
		border: none;
		border-right: 1px solid rgba(255, 255, 255, 0.25);
	}
	.protect .item:nth-child(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.25);
	}
	.protect .item.w-50 {
		width: 20%;
		border-top: 0;
		border-bottom: 0;
	}
	.protect .title {
		font-size: 46px;
	}
	.protect span {
		font-size: 14px;
	}
}
@media only screen and (min-width: 1400px) {
	.protect .title {
		font-size: 70px;
	}
	.protect span {
		font-size: 20px;
	}
}

/* ### intro section ### */
.intro {
	margin-bottom: 45px;
	padding-top: 40px;
	text-align: center;
}
.intro .content {
	margin: 0 auto;
	max-width: 1054px;
}
.intro p {
	margin-bottom: 50px;
	font-size: 20px;
	line-height: 1.6;
	color: var(--secondary-color);
}
.intro .button {
	min-width: auto;
}
@media only screen and (min-width: 768px) {
	.intro {
		margin-bottom: 104px;
		padding-top: 75px;
	}
	.intro p {
		font-size: 16px;
	}
}
@media only screen and (min-width: 1025px) {
	.intro .button {
		min-width: 373px;
	}
}
@media only screen and (min-width: 1400px) {
	.intro p {
		font-size: 24px;
	}
}

/* ### landmark section ### */
.landmark h2 {
	margin-bottom: 34px;
	font-size: 30px;
	text-align: center;
	text-transform: capitalize;
}
.landmark .item {
	position: relative;
	width: 100%;
}
.landmark .btn {
	padding-bottom: 35px;
	text-align: center;
	background-color: #0e2047;
}
.landmark .button {
	padding: 20px 20px 18px;
	font-size: 14px;
}
.landmark .button:hover:before,
.landmark .button:focus:before {
	background-color: var(--white-color);
}
@media only screen and (min-width: 768px) {
	.landmark .item {
		width: 50%;
	}
	.landmark h2 {
		margin-bottom: 50px;
		font-size: 36px;
	}
	.landmark .button {
		padding: 20px 35px 18px;
		font-size: 16px;
	}
	.landmark .btn {
		padding-bottom: 60px;
	}
}
@media only screen and (min-width: 1400px) {
	.landmark h2 {
		margin-bottom: 74px;
	}
}

/* ### card-land section ### */
.card-landmark {
	position: relative;
	display: block;
}
.card-landmark:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 5%, rgba(14, 32, 71, 1) 65%);
	content: "";
}
.card-landmark .image img {
	width: 100%;
	min-height: 530px;
	object-fit: cover;
	object-position: center center;
}
.landmark .item:nth-child(1) img,
.landmark .item:nth-child(2) img {
	object-position: center left;
}
.card-landmark .text {
	padding-right: 35px;
	padding-bottom: 35px;
	padding-left: 35px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	max-width: 650px;
}
.card-landmark .logo {
	margin-bottom: 15px;
}
.card-landmark .title {
	margin-bottom: 8px;
	font-size: 36px;
	font-weight: bold;
	line-height: var(--heading-line-height);
	color: var(--white-color);
}
.card-landmark strong {
	margin-bottom: 12px;
	display: block;
	font-size: 20px;
	line-height: 1;
	color: var(--sky-blue-color);
}
.card-landmark p {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.5;
	color: var(--white-color);
}
.card-landmark .icon {
	display: none;
}
.card-landmark .text .view-more {
	position: relative;
	z-index: 1;
	font-size: 24px;
	color: var(--color-info);
}
@media only screen and (min-width: 768px) {
	.card-landmark .image img {
		min-height: 415px;
	}
	.card-landmark .logo {
		position: absolute;
		top: 5px;
		left: 0;
	}
	.card-landmark .text {
		padding-right: 40px;
		padding-bottom: 60px;
		padding-left: 60px;
		left: 40px;
		max-width: 430px;
	}
	.card-landmark .title {
		font-size: 30px;
	}
	.card-landmark strong {
		font-size: 16px;
	}
	.card-landmark p {
		font-size: 13px;
	}
}
@media only screen and (min-width: 1025px) {
	.card-landmark .text {
		padding-right: 0;
	}
	.card-landmark p {
		margin-bottom: 0;
	}
	.card-landmark .text i {
		display: none;
	}
	.card-landmark .icon {
		position: absolute;
		right: 50px;
		bottom: 51px;
		z-index: 1;
		display: block;
		font-size: 34px;
		color: var(--color-info);
		transition: color 200ms ease-out, right 200ms ease-out;
	}
	.card-landmark:hover .icon,
	.card-landmark:focus .icon {
		color: var(--orange-color);
		right: 30px;
	}
	.card-landmark:after {
		background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 45%, rgba(14, 32, 71, 1) 78%);
	}
}
@media only screen and (min-width: 1400px) {
	.card-landmark .image img {
		min-height: 616px;
	}
	.card-landmark .text {
		max-width: 650px;
	}
	.card-landmark .title {
		font-size: 50px;
	}
	.card-landmark strong {
		font-size: 24px;
	}
	.card-landmark p {
		font-size: 20px;
	}
}
@media only screen and (min-width: 1750px) {
	.card-landmark .text {
		left: 55px;
	}
}

/* ### case section ### */
.case {
	margin-bottom: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--light-color);
}
.case h2 {
	margin-bottom: 30px;
	font-size: 30px;
	text-align: center;
}
.case .holder {
	margin: 0 -20px;
}
.case .item {
	margin-bottom: 0;
	padding: 0 20px;
	width: 100%;
}
.case .image {
	position: relative;
}
.case .image:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 0%, rgba(14, 32, 71, 1) 85%);
	content: "";
}
.case .image img {
	width: 100%;
	min-height: 260px;
	object-fit: cover;
	object-position: center center;
}
.case .text {
	padding: 30px 35px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.case .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.25;
	color: var(--white-color);
	margin-bottom: 0;
}
.case .box:hover .title,
.case .box:focus .title {
	text-decoration: underline;
}
.case .text span {
	display: block;
	font-family: var(--font-family-plus-jakarta);
	font-size: 18px;
	font-weight: 500;
	color: var(--sky-blue-color);
}
.case .content {
	padding: 35px;
	border-right: 1px solid var(--light-color);
	border-bottom: 1px solid var(--light-color);
	border-left: 1px solid var(--light-color);
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.case .item:last-child .content {
	border-bottom: none;
}
.case ul {
	margin-bottom: 17px;
	width: 100%;
}
.case li {
	padding-left: 15px;
	position: relative;
	font-family: var(--font-family-plus-jakarta);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--secondary-color);
}
.case li:before {
	position: absolute;
	top: 50%;
	left: 2px;
	width: 8px;
	height: 2px;
	background-color: var(--secondary-color);
	transform: translateY(-50%);
	content: "";
}
.case p {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.45;
	color: var(--secondary-color);
}
.case .item .button {
	font-size: 15px;
	align-self: flex-end;
}
.case .item .button i {
	display: inline-block;
	font-size: 10px;
	vertical-align: middle;
}
.case .btn {
	padding-top: 40px;
	padding-right: 35px;
	padding-left: 35px;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.case {
		padding-top: 80px;
		padding-bottom: 0;
		border-bottom: 0;
	}
	.case h2 {
		margin-bottom: 50px;
		font-size: 36px;
	}
	.case .item {
		margin-bottom: 40px;
		width: 50%;
	}
	.case p {
		font-size: 16px;
	}
	.case .btn {
		padding-top: 0;
	}
	.case .item:last-child .content {
		border-bottom: 1px solid var(--light-color);
	}
}
@media only screen and (min-width: 992px) {
	.case {
		margin-bottom: 30px;
	}
	.case .image img {
		min-height: auto;
		height: 240px;
	}
	.case .title {
		font-size: 20px;
	}
	.case .item {
		width: 33.3%;
	}
}
@media screen and (min-width: 1025px) {
	.case .image img {
		height: 270px;
	}
}
@media screen and (min-width: 1280px) {
	.case .image img {
		height: 320px;
	}
}
@media only screen and (min-width: 1400px) {
	.case .image img {
		height: 357px;
	}
	.case .text {
		padding: 30px 65px;
	}
	.case .title {
		font-size: 30px;
	}
	.case .content {
		padding: 46px 60px 70px;
	}
	.case li {
		font-size: 18px;
	}
	.case p {
		margin-bottom: 70px;
		font-size: 20px;
	}
	.case .button {
		font-size: 16px;
	}
}
@media screen and (min-width: 1800px) {
	.case .image img {
		height: 380px;
	}
}

/**-- Securities Specific --**/
.securities-content__header {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 36px;
	padding-top: 30px;
	letter-spacing: 3px;
}
.securities-content__table {
	width: 100%;
	padding-top: 30px;
	border-spacing: 0;
}
.securities-content__table tr td {
	padding: 14px;
	font-size: 20px;
	font-weight: 400;
}
.securities-content__table thead th {
	color: var(--sky-blue-color);
	text-transform: uppercase;
}
.securities-content__table .accent-column,
.securities-content__table .accent-column a,
.securities-content__link {
	color: var(--sky-blue-color);
	font-weight: 500;
	line-height: 1.2;
}
.securities-content__table .accent-column.accent-column--upper {
	text-transform: uppercase;
}
.securities-content__table tbody tr td:first-child,
.securities-content__table thead th:first-child {
	padding-left: 60px;
}
.securities-content__table tr:nth-child(2n),
.securities-content__table thead th {
	background: var(--shade-color);
	text-align: left;
	padding: 14px;
}
.securities-content__table.securities-content__table--reversed tr {
	background: var(--shade-color);
}
.securities-content__table.securities-content__table--reversed tr:nth-child(2n) {
	background: white;
}

.securities-content__link {
	text-transform: uppercase;
	font-size: 16px;
	display: flex;
	align-items: center;
}
.securities-content__link img {
	width: 10px;
	margin-left: 10px;
	margin-bottom: 2px;
}

.securities-content__form h2 {
	text-align: center;
	font-weight: 500;
	color: black;
	font-size: 36px;
}
.securities-content__form .gform_fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 15px;
}
.securities-content__form .gform_fields input,
.securities-content__form .gform_fields select {
	border-bottom: solid 1px var(--dark-blue-color);
	color: var(--dark-blue-color);
	font-size: 16px;
	font-weight: 300;
}
.securities-content__form .gform_fields input::placeholder {
	color: var(--dark-blue-color);
	font-size: 16px;
	font-weight: 300;
}
.securities-content__form .gform_fields .fullwidth {
	grid-column: span 2 / span 2;
}
.securities-content__form .gform_fields h3 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	max-width: 600px;
	margin: 30px auto 40px auto;
}
.securities-content__form .gfield--type-address .ginput_complex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 15px;
}
.securities-content__form .gform_fields .fileupload {
	max-width: 600px;
	margin: auto;
}
.securities-content__form .gform_fields .fileupload .gform_drop_area {
	font-size: 24px;
	color: var(--dark-blue-color);
	font-weight: bold;
	text-align: center;
	border: solid 2px var(--sky-blue-color);
	padding: 60px 30px;
}
.securities-content__form .gform_fields .fileupload .gform_drop_area button {
	text-decoration: underline;
	border: none;
	padding: 0;
	font-size: 24px;
	color: var(--dark-blue-color);
	font-weight: bold;
	text-transform: lowercase;
	letter-spacing: normal;
}
.securities-content__form .gform_fields .fileupload .gform_drop_area button:hover {
	color: white;
}
.securities-content__form .gform_fields .fileupload .gfield_description {
	font-size: 14px;
	color: #8b8b8b;
	font-weight: 400;
}
.securities-content__form .gform_fields .fileupload .gform_fileupload_rules {
	font-size: 18px;
	color: #8b8b8b;
	font-weight: 400;
	padding: 20px 0 0 0;
	display: block;
}
.securities-content__form .gform_fields .fileupload #gform_preview_5_20 {
	margin: 20px 0;
}
.securities-content__form .gform_fields .fileupload .ginput_preview {
	margin: 5px 0;
}
.securities-content__form .gform_fields .fileupload .ginput_preview .gform_delete_file {
	border: solid 1px var(--dark-blue-color);
	font-size: 16px;
	color: var(--dark-blue-color);
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	display: block;
	width: 100%;
	text-align: left;
}
.securities-content__form .gform_fields .fileupload .ginput_preview strong {
	display: none;
}
.securities-content__form .gform_fields .radiofield .gfield_label {
	position: static;
	height: auto;
	padding-left: 0;
	line-height: 1.3;
}
.securities-content__form .gform_fields .radiofield.emphasized .gfield_label {
	font-weight: bold;
}
.securities-content__form .gform_fields .radiofield .gfield_radio {
	display: flex;
	align-items: center;
}
.securities-content__form .gform_fields .radiofield .gfield_radio .gchoice {
	margin: 0 40px 0 0;
}
.securities-content__form .gform_fields .radiofield .ginput_container_radio {
	padding-top: 1rem;
}
.securities-content__form .gform_fields .radiofield .gfield_radio .gfield-choice-input {
	width: 20px;
	height: 20px;
}
.securities-content__form .gform_fields .radiofield.active label {
	line-height: 1.3;
	opacity: 1;
	padding: 0;
}
.securities-content__form .gform_fields .gfield--input-type-datedropdown {
	margin-top: 0;
}
.securities-content__form .gform_fields .gfield--input-type-datedropdown .ginput_complex {
	display: grid;
	grid-template-columns: repeat(3, 125px);
	grid-column-gap: 10px;
}
.securities-content__form .gform_fields .gfield_repeater {
	border: none;
}
.securities-content__form .gform_fields .gfield_repeater .gfield_repeater_item {
	display: grid;
	grid-template-columns: 220px 1fr 1fr 1fr;
	column-gap: 10px;
}
.securities-content__form
	.gform_fields
	.gfield_repeater
	.gfield_repeater_item
	.gfield_repeater_cell.inactive {
	display: none;
}
.securities-content__form .gform_fields .gfield_repeater .gfield_repeater_item:not(:first-child) {
	border-top: solid 2px var(--orange-color);
	padding-top: 40px;
	margin-top: 40px;
}

.securities-content__form
	.gform_fields
	.gfield_repeater
	.gfield_repeater_item
	.gfield_repeater_buttons {
	grid-column: span 4 / span 4;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}
.securities-content__form
	.gform_fields
	.gfield_repeater
	.gfield_repeater_item
	.gfield_repeater_buttons
	button {
	border: solid 2px var(--sky-blue-color);
	color: var(--sky-blue-color);
	width: 600px;
	margin: 10px auto;
}
.securities-content__form .gform_fields .gfield_repeater .gfield_repeater_item .gfield_label {
	display: none;
}

.securities-content__form .gform_fields .hidden_label label,
.securities-content__form .gform_fields .screen-reader-text,
.securities-content__form .gform_fields .ui-datepicker-trigger {
	display: none;
}

.securities-content__form .gform_footer input[type="submit"] {
	background: var(--sky-blue-color);
	color: white;
	border: none;
	max-width: 300px;
	margin: 50px auto;
	transition: background 0.5s;
}
.securities-content__form .gform_footer input[type="submit"]:hover {
	background: var(--dark-blue-color);
}

.ui-datepicker {
	background: white;
	z-index: 50 !important;
	border: solid 1px var(--dark-blue-color);
	padding: 15px;
}
.ui-datepicker .ui-datepicker-header {
	display: flex;
	align-items: center;
}
.ui-datepicker .ui-datepicker-prev {
	margin-right: 10px;
}
.ui-datepicker .ui-datepicker-month,
.ui-datepicker .ui-datepicker-year {
	padding: 5px;
	margin-left: 13px;
	width: auto;
	border: solid 1px var(--dark-blue-color);
	height: 30px;
}
.ui-datepicker .ui-datepicker-calendar {
	margin-top: 15px;
}

@media only screen and (max-width: 768px) {
	.securities-content__header {
		font-size: 26px;
	}
	.securities-content__table tr td {
		font-size: 18px;
	}
	.securities-content__table-wrapper {
		overflow: scroll;
		max-height: 450px;
	}
	.securities-content__table tbody tr td:first-child,
	.securities-content__table thead th:first-child {
		padding-left: 10px;
	}
	.securities-content__link img {
		display: none;
	}
	.securities-content__form .gform_fields .gfield {
		grid-column: span 2 / span 2;
	}
	.securities-content__form .gfield--type-address .ginput_complex {
		grid-template-columns: repeat(1, 1fr);
	}
	.securities-content__form .gform_fields h3 {
		font-size: 22px;
		font-weight: bold;
		margin: 30px auto 20px auto;
	}
	.securities-content__form .gform_fields .gfield_repeater {
		padding: 0;
	}
	.securities-content__form .gform_fields .gfield_repeater .gfield_repeater_item {
		display: block;
	}
	.securities-content__form
		.gform_fields
		.gfield_repeater
		.gfield_repeater_item
		.gfield_repeater_buttons
		button {
		width: 100%;
	}
	.securities-content__form .gform_footer input[type="submit"] {
		margin: 30px auto;
	}
	.securities-content__form .gform_fields .gfield--input-type-datedropdown .ginput_complex {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ### card-case section ### */
.card-case,
.case .box {
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
}
.card-case {
	border: 1px solid #e6e6e6;
	text-decoration: none !important;
}
.card-case .box {
	height: 100%;
	border: 1px solid #e6e6e6;
}
.card-case .image {
	position: relative;
}
.card-case .image:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 0%, rgba(14, 32, 71, 1) 85%);
	transition: background is ease-out;
	content: "";
}
.card-case .image img {
	width: 100%;
	height: 188px;
	object-fit: cover;
	object-position: center center;
}
.card-case .text {
	padding: 15px 35px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.card-case .title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.25;
	color: var(--white-color);
}
.card-case .image:hover .title,
.card-case .image:focus .title {
	text-decoration: underline;
}
.card-case .text span {
	display: block;
	font-family: var(--font-family-plus-jakarta);
	font-size: 12px;
	font-weight: 500;
	color: var(--sky-blue-color);
}
.card-case .content {
	padding: 23px 34px 40px;
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.card-case .content ul {
	margin-bottom: 12px;
}
.card-case .content li {
	padding-left: 10px;
	position: relative;
	font-family: var(--font-family-plus-jakarta);
	font-size: 12px;
	text-transform: capitalize;
	color: var(--primary-color);
	width: 100%;
}
.card-case .content li:before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 5px;
	height: 1px;
	background-color: #363636;
	content: "";
}
.card-case .content p {
	margin-bottom: 35px;
	line-height: 1.5;
	color: var(--primary-color);
}
.card-case .button {
	padding: 14px 20px 11px;
	font-size: 15px;
	align-self: end;
}
.card-case .button i {
	font-size: 13px;
}
@media only screen and (min-width: 768px) {
	.card-case .content {
		padding: 23px 15px 40px;
	}
}
@media only screen and (min-width: 992px) {
	.card-case .content {
		padding: 23px 34px 40px;
	}
}

/* ### judicial section ### */
.judicial {
	padding-top: 10px;
	padding-bottom: 50px;
	text-align: center;
}
.judicial h2 {
	margin-bottom: 30px;
}
.judicial .text p {
	margin: 0 auto 25px;
	max-width: 770px;
	font-size: 18px;
	line-height: 1.5;
	color: var(--secondary-color);
}
/* .judicial .text p::before {
  content: "“";
}
.judicial .text p::after {
  content: "”";
} */
.judicial p {
	font-size: 20px;
	letter-spacing: 0.5px;
	color: #5c5c5c;
}
.judicial .slider-nav {
	padding-top: 30px;
}
.judicial .slick-arrow {
	font-size: 30px;
	color: var(--secondary-color);
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
}
.judicial .slick-prev {
	padding-right: 52px;
}
.judicial .slick-next {
	padding-left: 52px;
}
.judicial .slick-autoplay-toggle-button {
	transform: translateX(-50%);
	left: calc(50% + -100px);
	bottom: -56px;
}
.judicial .news-counter {
	margin-top: -40px;
	font-size: 22px;
	font-weight: 500;
	color: var(--secondary-color);
}
.judicial.inner {
	padding-top: 65px;
	background-color: var(--light-sky);
}
.judicial.inner h2 {
	font-size: 30px;
}
.judicial.inner .text p {
	font-size: 24px;
	line-height: 1.5;
}
.judicial.inner p,
.judicial.inner-1 p {
	font-size: 16px;
}
.judicial.inner-1 {
	padding-top: 60px;
}
.judicial.inner-1 .text {
	font-size: 20px;
}
.judicial.inner-1 .slider-nav {
	padding-top: 15px;
}
.judicial.inner-1 .slick-autoplay-toggle-button {
	right: auto;
	left: 154px;
}
@media only screen and (min-width: 768px) {
	.judicial {
		padding-top: 20px;
		padding-bottom: 80px;
	}
	.judicial .text p {
		margin: 0 auto 42px;
		font-size: 24px;
	}
	.judicial p {
		font-size: 13px;
	}
	.judicial h2 {
		margin-bottom: 30px;
		font-size: 36px;
	}
	.judicial .slider-nav {
		padding-top: 53px;
	}
	.judicial .slick-arrow {
		font-size: 22px;
	}
	.judicial .slick-prev {
		padding-right: 30px;
	}
	.judicial .slick-next {
		padding-left: 30px;
	}
	.judicial .news-counter {
		margin-top: -30px;
		font-size: 14px;
	}
	.judicial.inner {
		padding-top: 85px;
	}
	.judicial.inner text {
		line-height: 1.85;
	}
	.judicial.inner-1 {
		text-align: left;
	}
	.judicial.inner-1 .news-counter {
		padding-left: 18px;
	}
	.judicial .slick-autoplay-toggle-button {
		bottom: -74px;
	}
}
@media only screen and (min-width: 1400px) {
	.judicial {
		padding-top: 62px;
		/* padding-bottom: 109px; */
		padding-bottom: 50px;
	}
	.judicial p {
		font-size: 20px;
	}
	.judicial .slick-arrow {
		font-size: 30px;
	}
	.judicial .slick-prev {
		padding-right: 52px;
	}
	.judicial .slick-next {
		padding-left: 52px;
	}
	.judicial .news-counter {
		margin-top: -40px;
		font-size: 22px;
	}
	.judicial.inner-1 .news-counter {
		padding-left: 30px;
	}
	.judicial .slick-autoplay-toggle-button {
		bottom: -79px;
	}
}

/* ### testimonial section ### */
.testimonial {
	padding-top: 60px;
	padding-bottom: 50px;
	text-align: center;
	background-color: var(--light-sky);
}
.testimonial .content {
	margin: 0 auto;
	max-width: 1335px;
}
.testimonial h2 {
	margin-bottom: 25px;
	font-size: 30px;
}
.testimonial h2 span {
	display: block;
}
.testimonial p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--secondary-color);
}
/* .testimonial-content::before {
  content: "“";
}
.testimonial-content::after {
  content: "”";
} */
.testimonial .source {
	display: block;
	margin-bottom: 20px;
}
.testimonial .google-icon {
	font-size: 19px;
	color: var(--secondary-color);
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-bottom: 10px;
}
.testimonial .google-icon img {
	max-width: 20px;
	height: auto;
}
.testimonial ul {
	margin-bottom: 10px;
}
.testimonial li {
	margin-right: 12px;
	display: inline-block;
	font-size: 19px;
	color: var(--orange-color);
}
.testimonial li:last-child {
	margin-right: 0;
}
.testimonial .slick-arrow {
	position: absolute;
	bottom: 0;
	z-index: 2;
	font-size: 22px;
	color: var(--secondary-color);
	border: 0;
	background-color: transparent;
	cursor: pointer;
}
.testimonial .slick-prev {
	left: 0;
}
.testimonial .slick-next {
	right: 0;
}
.testimonial .slick-dots li {
	margin-right: 6px;
}
.testimonial .slick-dots li:last-child {
	margin-right: 0;
}
.testimonial .slick-dots li button {
	width: 10px;
	height: 10px;
	font-size: 0;
	border: 0;
	border-radius: 50%;
	background-color: var(--secondary-color);
	cursor: pointer;
	padding: 0;
}
.testimonial .slick-dots li.slick-active button {
	background-color: var(--orange-color);
}
.testimonial.inner {
	background-color: transparent;
}
@media only screen and (min-width: 768px) {
	.testimonial {
		padding-top: 100px;
	}
	.testimonial .content {
		padding-right: 50px;
		padding-left: 50px;
		max-width: 890px;
	}
	.testimonial p {
		margin-bottom: 25px;
		font-size: 16px;
	}
	.testimonial .google-icon {
		margin-bottom: 10px;
	}
	.testimonial li {
		font-size: 20px;
	}
	.testimonial .slick-arrow {
		top: 20%;
		bottom: auto;
		font-size: 33px;
		color: var(--sky-blue-color);
	}
	.testimonial h2 {
		margin-bottom: 40px;
		font-size: 36px;
	}
	.testimonial h2 span {
		display: inline-block;
	}
}
@media only screen and (min-width: 1025px) {
	.testimonial .slick-prev {
		left: 0;
	}
	.testimonial .slick-next {
		right: 0;
	}
}
@media only screen and (min-width: 1400px) {
	.testimonial {
		padding-top: 90px;
	}
	.testimonial h2 {
		margin-bottom: 40px;
	}
	.testimonial p {
		margin-bottom: 35px;
	}
	.testimonial .slick-arrow {
		top: 35%;
		bottom: auto;
		font-size: 40px;
		transform: translateY(-100%);
	}
	.testimonial .slick-prev {
		left: 160px;
	}
	.testimonial .slick-next {
		right: 160px;
	}
}

/* ### highlight section ### */
.highlight {
	margin-bottom: 50px;
	padding-top: 50px;
}
.highlight .logo {
	margin-bottom: 31px;
	text-align: center;
}
.highlight img {
	margin: 0 auto;
	width: 60px;
}
.highlight h2 {
	margin-bottom: 40px;
	font-size: 30px;
	text-align: center;
	text-transform: capitalize;
}
.highlight .holder {
	margin: 0 -15px;
}
.highlight .item {
	margin-bottom: 70px;
	padding: 0 15px;
	width: 100%;
	line-height: 1.6;
}
.highlight .item p {
	margin-bottom: 0;
}
.highlight .item a {
	font-size: 19px;
	color: var(--secondary-color);
}
.highlight .item a:hover,
.highlight .item a:focus {
	color: var(--orange-color);
}
.highlight .btn {
	text-align: center;
}
.highlight .button {
	width: 100%;
	max-width: 300px;
}
@media only screen and (min-width: 768px) {
	.highlight {
		margin-bottom: 100px;
		padding-top: 100px;
	}
	.highlight h2 {
		margin-bottom: 70px;
		font-size: 36px;
	}
	.highlight .item {
		width: 33.3%;
	}
	.highlight .btn {
		padding-top: 25px;
	}
}
@media only screen and (min-width: 1400px) {
	.highlight img {
		width: auto;
	}
	.highlight .item a {
		font-size: 22px;
	}
}

/* ### client section ### */
.client {
	margin-bottom: 50px;
}
.client .slider {
	padding: 0 15px;
}
.client .slick-list {
	/* margin: 0 -100px; */
	overflow: visible;
}
.client img {
	margin: 0 auto 15px;
}
.client p {
	font-size: 18px;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 0;
}
.client .single-slider-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	flex-direction: column;
}
@media only screen and (min-width: 768px) {
	.client {
		margin-bottom: 95px;
	}
	/* .client .slick-list {
    margin: 0 -50px;
  } */
	.client p {
		font-size: 13px;
	}
}
@media only screen and (min-width: 1400px) {
	.client p {
		font-size: 18px;
	}
}

/* ### more section ### */
.more {
	padding-top: 35px;
	padding-bottom: 40px;
	background-color: var(--light-sky);
}
.more h4 {
	margin-bottom: 35px;
	font-weight: normal;
	letter-spacing: var(--heading-letter-spacing);
	text-align: center;
	text-transform: uppercase;
	color: var(--orange-color);
}
.more .holder {
	margin: 0 auto;
	max-width: 870px;
}
.more .item {
	margin-bottom: 10px;
	width: 100%;
}
.more .item:last-child {
	margin-bottom: 0;
}
.more .box {
	padding: 28px 60px 21px 30px;
	position: relative;
	display: flex;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: var(--secondary-color);
	background-color: var(--white-color);
	transition: var(--base-duration);
	text-decoration: none;
}
.more .box:hover,
.more .box:focus {
	color: var(--white-color);
	background-color: var(--orange-color);
}
.more .box:hover:before,
.more .box:focus:before {
	color: var(--white-color);
}
.more .box:before {
	position: absolute;
	top: 50%;
	right: 30px;
	font-family: var(--font-family-icon);
	font-size: 22px;
	color: var(--sky-blue-color);
	transform: translateY(-50%);
	transition: var(--base-duration);
	content: "\f061";
}
@media only screen and (min-width: 768px) {
	.more {
		padding-top: 87px;
		padding-bottom: 86px;
	}
	.more .item {
		margin-bottom: 0;
		padding: 0 10px;
		width: 50%;
	}
}

/* ### select-page section ### */
.select-page {
	position: relative;
	display: block;
}
.select-page .custom-select {
	padding: 21px 40px;
	position: relative;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: #fff;
	border: 0;
	border-radius: 0;
	background-color: var(--secondary-color);
	-webkit-appearance: none;
}
.select-page:after {
	position: absolute;
	top: 50%;
	right: 40px;
	font-family: var(--font-family-icon);
	font-weight: 700;
	color: var(--sky-blue-color);
	transform: translateY(-50%);
	content: "\f0d7";
}
@media only screen and (min-width: 992px) {
	.select-page {
		display: none;
	}
}

/* ### navigation section ### */
.navigation {
	padding-top: 17px;
	padding-bottom: 15px;
	display: none;
	background-color: var(--secondary-color);
}
.navigation ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
/* securities specific */
@media only screen and (max-width: 992px) {
	.navigation.securities-tabs {
		display: block;
		overflow: auto;
	}
	.navigation.securities-tabs > ul {
		flex-wrap: nowrap;
		white-space: nowrap;
	}
}

.navigation ul > li {
	margin-right: 20px;
}
.navigation ul > li:last-child {
	margin-right: 0;
}
.navigation ul > li > a,
.navigation ul > li > button {
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	transition: var(--base-duration);
	text-decoration: none;
}
.navigation ul > li > a:hover,
.navigation ul > li > a:focus,
.navigation ul > li > button:hover,
.navigation ul > li > button:focus {
	color: var(--sky-blue-color);
}
.navigation.inner {
	padding-top: 0;
	padding-bottom: 0;
}
.navigation.inner ul {
	justify-content: start;
}
.navigation.inner ul > li > a,
.navigation.inner ul > li > button {
	padding: 22px 0 15px;
	letter-spacing: 0;
	border-top: 2px solid transparent;
	border-bottom: 7px solid transparent;
	line-height: 1.1;
}

.navigation.inner ul > li > button.content-tab-activate.active {
	border-bottom: 7px solid var(--sky-blue-color);
	text-decoration: none;
}

.navigation.inner ul > li > a:hover,
.navigation.inner ul > li > a:focus,
.navigation.inner ul > li > button:hover,
.navigation.inner ul > li > button:focus {
	border-bottom: 7px solid var(--sky-blue-color);
	text-decoration: none;
}
@media only screen and (min-width: 992px) {
	.navigation {
		display: block;
	}
}
@media only screen and (min-width: 1025px) {
	.navigation ul > li {
		margin-right: 32px;
	}
	.navigation ul > li > a,
	.navigation ul > li > button {
		font-size: 15px;
	}
}

/* ### well section ### */
.well {
	padding-top: 30px;
	padding-bottom: 80px;
}
.well .head {
	margin-bottom: 25px;
	text-align: center;
}
.well .year {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 47px;
	font-weight: 500;
	line-height: 0.9;
	text-transform: uppercase;
	color: var(--secondary-color);
}
.well .year span {
	padding-top: 30px;
	padding-right: 8px;
	display: inline-block;
	font-size: 8px;
	font-weight: bold;
	transform: rotate(90deg);
}
.well .head img {
	margin: 0 auto 20px;
	padding-right: 25px;
	width: 90px;
}
.well p {
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.well {
		padding-top: 52px;
	}
	.well .head {
		margin-bottom: 38px;
	}
	.well .year {
		font-size: 74px;
	}
	.well .year span {
		padding-top: 40px;
		padding-right: 13px;
		font-size: 15px;
	}
	.well .head img {
		margin: 0 auto 49px;
		padding-right: 40px;
		width: auto;
	}
	.well p {
		text-align: left;
	}
}

/* ### know section ### */
.know {
	padding-top: 83px;
	padding-bottom: 79px;
	position: relative;
	background-color: var(--secondary-color);
}
.know:before {
	position: absolute;
	top: -57px;
	left: 50%;
	z-index: 1;
	width: 8px;
	height: 115px;
	background-color: var(--orange-color);
	transform: translateX(-50%);
	content: "";
	clip-path: polygon(1% 15%, 100% 0%, 100% 85%, 0% 100%);
}
.know .map {
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}
.know .map img {
	margin: 0 auto;
}
.know .content {
	position: relative;
	z-index: 1;
	text-align: center;
}
.know h2 {
	margin-bottom: 15px;
	font-size: 30px;
	text-align: center;
	color: var(--white-color);
}
.know p {
	color: var(--white-color);
}
.know .union {
	position: absolute;
	top: 0;
	right: -114px;
	display: none;
}
.know .union img {
	opacity: 0.3;
}
@media only screen and (min-width: 768px) {
	.know .map {
		margin-bottom: 68px;
	}
	.know .content {
		text-align: left;
	}
	.know h2 {
		margin-bottom: 32px;
		font-size: 36px;
	}
	.know .union {
		display: block;
	}
}

/* ### team section ### */
.team {
	padding-top: 40px;
}
.team .bdr {
	padding-bottom: 42px;
	border-bottom: 1px solid #afafaf;
}
.team .content {
	margin-bottom: 20px;
	text-align: center;
}
.team .sub {
	margin-bottom: 18px;
	font-size: 20px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--orange-color);
}
.team h2 {
	margin-bottom: 40px;
	font-size: 36px;
}
.team strong {
	margin: 0 auto;
	position: relative;
	z-index: 1;
	display: block;
	font-size: 20px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: var(--secondary-color);
	background-color: var(--white-color);
}
.team strong:before {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	width: 500px;
	height: 100%;
	background-color: var(--white-color);
	transform: translateX(-50%);
	content: "";
}
.team strong:after {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -2;
	width: 100%;
	height: 1px;
	background-color: #afafaf;
	transform: translateY(-50%);
	content: "";
}
.team .holder {
	margin-right: -10px;
	margin-left: -10px;
	justify-content: center;
}
.team .item {
	margin-bottom: 25px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}
.team .learn {
	padding-top: 15px;
	text-align: center;
}
.team .learn a {
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.team .learn a:hover,
.team .learn a:focus {
	color: var(--secondary-color);
}
@media only screen and (min-width: 768px) {
	.team {
		padding-top: 57px;
	}
	.team .bdr {
		padding-bottom: 70px;
	}
	.team .sub {
		font-size: 20px;
		letter-spacing: 4px;
	}
	.team h2 {
		margin-bottom: 58px;
	}
	.team .item {
		width: 20%;
	}
	#opportunity .item {
		width: 25%;
	}
}

/* ### award section ### */
.award {
	padding-top: 40px;
}
.award .bdr {
	padding-bottom: 42px;
	border-bottom: 1px solid #afafaf;
}
.award h2 {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
}
.award h2 span {
	display: block;
}
.award .holder {
	margin-right: -10px;
	margin-left: -10px;
}
.award .item {
	margin-bottom: 40px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
	text-align: center;
}
.award .item img {
	margin: 0 auto 18px;
}
.award p {
	font-size: 14px;
	line-height: var(--heading-line-height);
}
.award .learn {
	padding-top: 15px;
	text-align: center;
}
.award .learn a {
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.award .learn a:hover,
.award .learn a:focus {
	color: var(--secondary-color);
}
@media only screen and (min-width: 768px) {
	.award {
		padding-top: 70px;
	}
	.award .bdr {
		padding-bottom: 70px;
	}
	.award h2 {
		margin-bottom: 58px;
		font-size: 36px;
		font-weight: normal;
	}
	.award h2 span {
		display: inline-block;
	}
	.award .item {
		width: 50%;
	}
}
@media only screen and (min-width: 992px) {
	.award .item {
		width: 25%;
	}
}

/* ### community section ### */
.community {
	padding-top: 50px;
}
.community .bdr {
	padding-bottom: 45px;
	border-bottom: 1px solid #afafaf;
}
.community h2 {
	margin-bottom: 30px;
	text-align: center;
}
.community .slider {
	padding-top: 140px;
	padding-right: 40px;
	padding-bottom: 50px;
	padding-left: 40px;
	position: relative;
	text-decoration: none;
}
.community .slider:hover .arrow-right,
.community .slider:focus .arrow-right {
	color: var(--orange-color);
}
.community .content {
	position: relative;
	z-index: 2;
}
.community .logo {
	margin-bottom: 15px;
}
.community .title {
	margin-bottom: 14px;
	font-size: 36px;
	font-weight: bold;
	line-height: var(--heading-line-height);
	color: var(--white-color);
}
.community strong {
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
	line-height: var(--heading-line-height);
	color: var(--sky-blue-color);
}
.community .content p {
	margin-bottom: 15px;
	font-size: 18px;
	color: var(--white-color);
}
.community .read-more {
	font-size: 18px;
	font-weight: 500;
	color: var(--sky-blue-color);
}
.community .arrow-right {
	position: absolute;
	right: 0;
	bottom: 0;
	display: none;
	font-size: 36px;
	font-weight: 900;
	color: var(--sky-blue-color);
	transition: color 200ms ease-out;
}
.community .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.community .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.community .image:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 0%, rgba(14, 32, 71, 1) 85%);
	content: "";
}
.community .slick-dots {
	padding-top: 12px;
	padding-bottom: 25px;
	display: flex;
	justify-content: center;
}
.community .slick-dots li {
	margin-right: 6px;
}
.community .slick-dots li:last-child {
	margin-right: 0;
}
.community .slick-dots li button {
	width: 10px;
	height: 10px;
	font-size: 0;
	border: 0;
	border-radius: 50%;
	background-color: var(--secondary-color);
	cursor: pointer;
	padding: 0;
}
.community .slick-dots li.slick-active button {
	background-color: var(--orange-color);
}
.community .btn {
	text-align: center;
	margin-top: 45px;
}
@media only screen and (min-width: 768px) {
	.community {
		padding-top: 70px;
	}
	.community h2 {
		margin-bottom: 50px;
		font-size: 36px;
	}
	.community .slider {
		padding-top: 240px;
		padding-right: 50px;
	}
	.community .content {
		padding-right: 50px;
		padding-left: 63px;
	}
	.community .logo {
		margin-bottom: 0;
		position: absolute;
		top: 0;
		left: 0;
	}
	.community .title {
		font-size: 30px;
	}
	.community .content p {
		margin-bottom: 0;
	}
	.community .read-more {
		display: none;
	}
	.community .arrow-right {
		display: block;
	}
	.community .slick-dots {
		padding-top: 30px;
	}
}

/* ### history section ### */
.history {
	margin-bottom: 40px;
	padding-top: 40px;
}
.history h2 {
	margin-bottom: 70px;
	font-size: 30px;
	text-align: center;
}
.history .holder {
	margin: 0 -90px;
	padding-top: 40px;
	padding-bottom: 60px;
	position: relative;
}
.history .holder:before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 10px;
	height: 100%;
	background-color: var(--secondary-color);
	transform: translateX(-50%);
	content: "";
}
.history .holder:last-child {
	padding-bottom: 0;
}
.history .item {
	padding: 0 90px;
	position: relative;
	z-index: 1;
	width: 100%;
}
.history .image img {
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.history .content {
	padding-top: 15px;
	padding-bottom: 20px;
	text-align: center;
	background-color: var(--white-color);
}
.history .year {
	padding-top: 15px;
	padding-bottom: 10px;
	position: relative;
	display: none;
	font-size: 36px;
	font-weight: 500;
	line-height: var(--heading-line-height);
	letter-spacing: 1.5px;
	color: var(--secondary-color);
	background-color: var(--white-color);
}
.history .circle {
	position: absolute;
	top: -70px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 5px solid var(--secondary-color);
	border-radius: 50%;
	background-color: var(--white-color);
	transform: translateX(-50%);
}
.history .circle:before {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	content: "";
}
.history .circle.active:before {
	background-color: var(--orange-color);
}
.history p {
	line-height: 2;
}
.history .image .year {
	display: block;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.history {
		margin-bottom: 70px;
		padding-top: 75px;
	}
	.history .holder {
		margin: 0 -40px;
		padding-top: 0;
		padding-bottom: 47px;
	}
	.history .holder:before {
		width: 5px;
	}
	.history .holder.inner .item:nth-child(1) {
		order: 2;
	}
	.history .holder.inner .item:nth-child(2) {
		order: 1;
	}
	.history .item {
		padding: 0 40px;
		width: 50%;
	}
	.history h2 {
		margin-bottom: 70px;
		font-size: 36px;
	}
	.history .image img {
		min-height: 236px;
	}
	.history .content {
		padding-top: 11px;
		padding-bottom: 0;
		text-align: left;
	}
	.history .year {
		margin-bottom: 47px;
		padding-top: 0;
		padding-bottom: 0;
		display: block;
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 13px;
		color: var(--orange-color);
	}
	.history .circle {
		top: -12px;
		left: -62px;
		transform: translateX(0);
	}
	.history .holder.inner .circle {
		right: -62px;
		left: auto;
	}
	.history .image .year {
		display: none;
	}
}
@media only screen and (min-width: 992px) {
	.history .holder {
		margin: 0 -90px;
	}
	.history .item {
		padding: 0 90px;
	}
	.history .circle {
		left: -112px;
	}
	.history .holder.inner .circle {
		right: -112px;
	}
}

@media screen and (min-width: 1025px) {
	.history .holder:before {
		height: 0;
		transition: height 800ms ease-out;
	}

	.history .holder.active:before {
		height: 100%;
	}
}

/* ### practice section ### */
.practice {
	padding-top: 22px;
	padding-bottom: 15px;
	background-color: var(--secondary-color);
}
.practice--light {
	background-color: var(--shade-color);
}
.practice ul {
	padding-bottom: 12px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 29px;
}
.practice .attorney-letters {
	display: grid;
	grid-template-columns: repeat(7, 15px);
	justify-content: space-between;
}
.practice ul > li {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	width: 15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.practice ul > li:last-child {
	margin-right: 0;
}
.practice .attorney-letters li {
	margin-right: 0;
}
.practice .holder {
	margin-right: -10px;
	margin-left: -10px;
}
.practice .item {
	margin-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}
.practice .cases-search select {
	height: 50px;
	background: none;
	color: #fff;
	border: 1px solid var(--white-color);
}
.practice--light .cases-search select {
	border: 1px solid var(--dark-blue-color);
	color: var(--dark-blue-color);
}
.practice .cases-search option {
	color: #000;
}
.practice .cases-search input {
	height: 50px;
}
.practice .custom-select {
	cursor: pointer;
	background-image: url("../images/caret-down.png");
	background-repeat: no-repeat;
	background-position: center right 20px;
	-webkit-appearance: none;
}
.practice .button {
	padding: 19px 15px;
	width: 100%;
	letter-spacing: 4px;
	color: var(--white-color);
	border: 2px solid var(--sky-blue-color);
	background-color: var(--sky-blue-color);
}
.practice .button:hover,
.practice .button:focus {
	border: 2px solid var(--orange-color);
}
.practice .button:hover:before,
.practice .button:focus:before {
	background-color: var(--orange-color);
}
.practice .cases-search .button {
	padding: 14px 15px;
}
.practice .view-more {
	text-align: right;
}
.practice .view-more a {
	font-size: 14px;
	text-transform: capitalize;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.practice .view-more a:hover,
.practice .view-more a:focus {
	color: var(--orange-color);
}
.practice .view-more i {
	margin-left: 7px;
	display: inline-block;
}
.practice h4 {
	margin-bottom: 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--white-color);
}
.practice.inner .holder {
	align-items: center;
}
.practice.inner .custom-select,
.practice.inner .form-input {
	height: 50px;
	font-size: 16px;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	background-color: transparent;
}
.practice.inner .custom-select option {
	color: var(--black-color);
}
.practice.inner input::placeholder {
	color: var(--white-color);
}
.practice.inner .button {
	padding: 14px 12px;
}
.practice.inner-1 .form-input {
	color: var(--white-color);
	border: 1px solid var(--white-color);
	background-color: transparent;
}
.practice.inner-1 input::placeholder {
	color: var(--white-color);
}
.practice--light.inner-1 .form-input {
	border: 1px solid var(--dark-blue-color);
	color: var(--dark-blue-color);
}
.practice--light.inner-1 input::placeholder {
	color: var(--dark-blue-color);
}
@media screen and (min-width: 475px) {
	.practice .attorney-letters {
		grid-template-columns: repeat(9, 15px);
	}
}
@media screen and (min-width: 640px) {
	.practice .attorney-letters {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		column-gap: 0;
	}
}
@media only screen and (min-width: 768px) {
	.practice .item {
		width: 33.3%;
	}
	.cases-search .item {
		width: 50%;
	}
	.practice.inner .item {
		width: 32%;
	}
	.practice.inner .item:first-child {
		width: 33%;
	}
	.practice.inner .item:last-child {
		width: 18%;
	}
}
@media screen and (min-width: 1025px) {
	.cases-search .item {
		width: 25%;
	}
}

/* ### attorney section ### */
.attorney {
	margin-bottom: 30px;
	padding-top: 41px;
}
.attorney h2 {
	margin-bottom: 30px;
	font-size: 30px;
	text-align: center;
	text-transform: capitalize;
}
.attorney .holder {
	margin-right: -10px;
	margin-left: -10px;
}
.attorney .item {
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}
.attorney-letters a {
	color: #fff;
}
.attorney-letters a:hover,
.attorney-letters a:focus {
	color: var(--sky-blue-color);
}
@media only screen and (min-width: 768px) {
	.attorney h2 {
		margin-bottom: 34px;
		font-size: 36px;
		text-align: left;
	}
	.attorney .item {
		width: 25%;
	}
}

.card-team {
	text-align: center;
}
.card-team .image {
	position: relative;
	display: inline-block;
	background: rgb(188, 187, 186);
	background: white;
	overflow: hidden;
}
.card-team .view-hover {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	/* visibility: hidden; */
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: bold;
	color: var(--white-color);
	transition: var(--base-duration);
	background-color: rgba(86, 167, 209, 0.8);
}
/* .card-team .image:hover .view-hover {
  opacity: 1;
  visibility: visible;
  background-color: rgba(86, 167, 209, 0.8);
} */
.card-team .image img {
	margin: 0 auto;
}
.card-team .content {
	padding: 15px 5px;
}
.card-team .content ul {
	background: none;
	padding: 0;
	margin-bottom: 0;
	list-style: none;
}
.card-team .content ul li {
	padding: 0;
}
.card-team .content ul li:before {
	display: none;
}
.card-team .title {
	margin-bottom: 2px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	color: var(--secondary-color);
}
.card-team p {
	margin-bottom: 3px;
	line-height: 1.5;
}
.card-team li {
	line-height: 1.5;
}
.card-team li a {
	font-weight: 600;
	color: var(--secondary-color);
	transition: var(--base-duration);
	text-decoration: none;
}
.card-team li a:hover,
.card-team li a:focus {
	color: var(--sky-blue-color);
	text-decoration: underline;
}
.card-team li a i {
	font-size: 13px;
	color: var(--sky-blue-color);
}
@media only screen and (min-width: 768px) {
	.card-team .image img {
		width: 100%;
	}
	.card-team .title {
		font-size: 18px;
	}
	.card-team li a {
		font-size: 14px;
	}
	.card-team.card-team-1 {
		margin: 0 auto 30px;
		max-width: 245px;
	}
	.card-team.card-team-1:last-child {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 992px) {
	.card-team .title {
		font-size: 20px;
	}
	.card-team li a {
		font-size: 16px;
	}
}

/* ### overview section ### */
.overview {
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}
.overview .holder-1 {
	margin: 0 auto;
	max-width: 1150px;
}
.overview.inner {
	padding-top: 45px;
}
.overview.inner .leftBox {
	padding-top: 0;
}
.overview.inner .rightBox {
	margin-top: 0;
	padding-top: 0;
}
@media only screen and (min-width: 768px) {
	.overview.inner .rightBox {
		padding-top: 22px;
	}
	.overview .holder-1 .rightBox {
		padding-left: 40px;
	}
}
@media only screen and (min-width: 992px) {
	.overview .holder-1 .rightBox {
		padding-left: 100px;
	}
}

/* ### leftBox section ### */
.leftBox {
	padding-top: 38px;
	width: 100%;
}
.contact-landing .leftBox {
	order: 2;
}
@media only screen and (min-width: 768px) {
	.leftBox {
		/* width: 55%; */
		width: 59%;
	}
	.contact-landing .leftBox {
		order: 1;
	}
}

/* ### content-detail section ### */
.content-detail {
	letter-spacing: 0.3px;
}
.content-detail h1,
.content-detail > .section-title {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	text-transform: none;
	letter-spacing: normal;
}
.content-detail h2 {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	text-transform: capitalize;
	line-height: 34px;
}
.content-detail h2 span {
	font-size: 24px;
	font-weight: 500;
	color: var(--sky-blue-color);
}
.content-detail p {
	margin-bottom: 30px;
}
.content-detail p a {
	transition: var(--base-duration);
	display: initial;
}
@media only screen and (min-width: 768px) {
	.content-detail h1,
	.content-detail > .section-title {
		margin-bottom: 31px;
		font-size: 36px;
		font-weight: normal;
	}
	.content-detail h2 {
		margin-bottom: 31px;
		font-size: 25px;
		font-weight: normal;
		letter-spacing: 2px;
		text-transform: uppercase;
	}
	.content-detail h2 span {
		font-size: 25px;
		font-weight: normal;
		color: var(--black-color);
	}
}

/* ### breadcrumb section ### */
.breadcrumb {
	margin-bottom: 23px;
	background: none;
	list-style: none;
	padding: 0;
}
.breadcrumb a {
	display: initial;
	font-size: 12px;
}
.breadcrumb a:after {
	margin-left: 4px;
	display: inline-block;
	vertical-align: middle;
	content: ">";
}
.breadcrumb a:last-child:after {
	display: none;
}
.breadcrumb a {
	color: #363636;
	transition: var(--base-duration);
}
.breadcrumb a:hover,
.breadcrumb a:focus {
	color: var(--sky-blue-color);
}

/* ### evaluation section ### */
.evaluation {
	margin-bottom: 50px;
	padding: 40px 30px;
	position: relative;
	text-align: center;
}
.evaluation:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(243, 247, 253, 0.83) 0%, rgba(243, 247, 253, 1) 100%);
	content: "";
}
.evaluation .content {
	position: relative;
	z-index: 2;
}
.evaluation .content img {
	margin: 0 auto 10px;
}
.evaluation .title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3;
	color: var(--secondary-color);
}
.evaluation strong {
	margin-bottom: 15px;
	display: block;
	font-weight: 500;
	line-height: 1.5;
	color: var(--secondary-color);
}
.evaluation .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.evaluation .image img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}
.evaluation .button {
	border: 2px solid var(--sky-blue-color);
	background-color: var(--sky-blue-color);
}
.evaluation .button:hover,
.evaluation .button:focus {
	border: 2px solid var(--orange-color);
}
.evaluation .button:hover:before,
.evaluation .button:focus:before {
	background-color: var(--orange-color);
}

/* ### company-logo section ### */
.company-logo {
	margin-top: 50px;
	margin-bottom: 50px;
}
.company-logo .logo {
	margin-bottom: 25px;
}
.company-logo .logo:last-child {
	margin-bottom: 0;
}
.company-logo .logo img {
	margin: 0 auto;
}
@media only screen and (min-width: 768px) {
	.company-logo {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 992px) {
	.company-logo {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
	.company-logo .logo img {
		margin: 0;
	}
}

/* ### toll-free section ### */
.toll-free {
	margin-bottom: 30px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--secondary-color);
}
.toll-free a {
	transition: var(--base-duration);
}
.toll-free a:hover,
.toll-free a:focus {
	color: var(--secondary-color);
}

/* ### rightBox section ### */
.rightBox {
	padding-top: 38px;
	width: 100%;
}
.contact-landing .rightBox {
	order: 1;
}
.rightBox h4 {
	text-transform: uppercase;
}
.rightBox li a {
	padding-top: 16px;
	padding-bottom: 16px;
	position: relative;
	display: block;
	font-weight: 500;
	line-height: 1.2;
	color: var(--secondary-color);
	border-top: 1px solid #bcbbba;
	transition: var(--base-duration);
}
.rightBox li a:hover,
.rightBox li a:focus {
	color: var(--sky-blue-color);
	text-decoration: underline;
}

#banner-form {
	transition: opacity 200ms ease-in-out;
	margin-bottom: 0;
}

#banner-form.active {
	opacity: 1 !important;
}

.banner.with-form {
	padding-top: 150px;
}

.banner.with-form .banner-title {
	margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
	.rightBox {
		padding-left: 50px;
		/* width: 45%; */
		width: 41%;
	}
	.contact-landing .rightBox {
		order: 2;
	}

	#banner-form {
		margin-bottom: 30px;
	}
}
@media only screen and (min-width: 992px) {
	.rightBox {
		margin-top: -185px;
		padding-top: 0;
		padding-left: 70px;
	}

	.postid-7826 .rightBox {
		margin-top: 0;
		padding-top: 38px;
	}

	#banner-form .form-group-container {
		display: flex;
		gap: 20px;
	}

	#banner-form {
		max-width: 720px;
		margin-left: auto;
		margin-right: auto;
	}

	.banner.with-form .gform-footer .gform_button {
		width: 50%;
		margin: 20px auto 0;
	}
}

/* ### state section ### */
.sidebar-text h3 {
	font-weight: 700;
	text-transform: uppercase;
}
.sidebar-text .law {
	display: block;
	font-weight: 500;
	color: #363636;
}
.sidebar-text p {
	margin-bottom: 30px;
}

/* ### partners section ### */
.partners .logo {
	margin-bottom: 40px;
}
.partners .logo img {
	margin: 0 auto;
}

/* ### list section ### */
.leftBox ul {
	margin-bottom: 40px;
	padding: 35px 30px 50px;
	background-color: #f3f7fd;
	width: 100%;
}
.leftBox ul ul {
	padding: 0;
	margin: 0;
}
.leftBox ul h3 {
	margin-bottom: 30px;
	font-weight: 600;
}
.leftBox ul p {
	margin-bottom: 30px;
}
.leftBox ul li {
	padding-left: 25px;
	position: relative;
	color: #333;
}
.leftBox ul li:before {
	position: absolute;
	top: 13px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--sky-blue-color);
	content: "";
}
.leftBox ul li:last-child {
	margin-bottom: 0;
}
.leftBox ul .gap {
	padding-top: 15px;
	padding-left: 26px;
}
.leftBox ol {
	margin-bottom: 30px;
}
.leftBox ol > li {
	list-style: auto;
	padding-left: 15px;
	margin-left: 19px;
	margin-bottom: 15px;
	color: #002453;
}
@media only screen and (min-width: 768px) {
	.leftBox ul {
		padding: 44px 30px 55px 60px;
	}
	.leftBox ul .gap {
		padding-left: 50px;
	}
}

/* ### meet section ### */
.meet {
	margin-bottom: 30px;
}
.meet h2 {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	text-transform: capitalize;
}
.meet .holder {
	margin-right: -60px;
	margin-left: -60px;
}
.meet .item {
	margin-bottom: 18px;
	padding-right: 60px;
	padding-left: 60px;
	width: 100%;
}
.meet .item ul > li {
	line-height: 1.4;
}
.meet .item ul > li > a {
	font-weight: 500;
	color: var(--secondary-color);
	transition: var(--base-duration);
}
.meet .item ul > li > a i {
	font-size: 11px;
	color: var(--sky-blue-color);
}
.meet .item ul > li > a:hover,
.meet .item ul > li > a:focus {
	color: var(--sky-blue-color);
}
.meet.inner {
	margin-bottom: 0;
}
.meet.inner .item {
	margin-bottom: 30px;
	width: 100%;
}
.meet.practice-chair li a {
	border: none;
	padding: 0;
}
@media only screen and (min-width: 768px) {
	.meet {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 100px;
		row-gap: 40px;
	}
	.practice-chair {
		grid-template-columns: auto;
		gap: 0;
	}
	.meet h2 {
		margin-bottom: 31px;
		font-size: 36px;
		font-weight: normal;
		letter-spacing: 2px;
		text-align: left;
	}
	.meet .item {
		padding: 0;
		margin-bottom: 0;
	}
	.meet.inner .item {
		width: 100%;
	}
	.meet.inner .item img {
		width: auto;
	}
}

/* ### steps section ### */
.steps {
	margin-bottom: 40px;
	padding-top: 15px;
}
.steps .step {
	padding-bottom: 42px;
	padding-left: 45px;
	position: relative;
}
.steps .step:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: var(--sky-blue-color);
	content: "";
}
.steps .step:last-child {
	padding-bottom: 0;
}
.steps h4 {
	position: relative;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--orange-color);
}
.steps h4:before {
	position: absolute;
	top: 0;
	left: -50px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--sky-blue-color);
	content: "";
}
.steps p {
	margin-bottom: 0;
}

/* ### faqs section ### */
.faqs h2 {
	margin-bottom: 25px;
	font-weight: bold;
	text-transform: capitalize;
}
.faqs.inner .accordion-title {
	padding-left: 0;
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: 2.5px;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 0;
}
.faqs.inner .accordion-title:before {
	display: none;
}
.faqs.inner .accordion-title:after {
	top: 25px;
	font-size: 32px;
}
.faqs.inner .accordion-content {
	padding-top: 15px;
	padding-left: 0;
}
.faqs.inner-1 .accordion-title {
	padding-left: 0;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0;
}
.faqs.inner-1 .accordion-title:before {
	display: none;
}
.faqs.inner-1 .accordion-content {
	padding-left: 0;
}
.faqs.inner-1 .accordion-title:after {
	top: 23px;
	font-size: 26px;
}
.faqs.inner-1 .accordion-content li {
	margin-bottom: 0;
	padding-top: 18px;
	padding-bottom: 18px;
	font-weight: 500;
	color: #333;
	border-top: 1px solid #bcbbba;
}
.faqs.inner-1 .accordion-content li:before {
	top: 13px;
}
@media only screen and (min-width: 768px) {
	.faqs h2 {
		margin-bottom: 44px;
		font-size: 36px;
		font-weight: normal;
	}
	.faqs.inner .accordion-title {
		font-size: 25px;
	}
}

/* ### accordion section ### */
.accordion {
	border-bottom: 1px solid #d3d3d3;
}
.accordion:first-child {
	border-top: 1px solid #d3d3d3;
}
.accordion-title {
	padding-top: 29px;
	padding-right: 40px;
	padding-bottom: 22px;
	padding-left: 40px;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--secondary-color);
	cursor: pointer;
	margin-bottom: 0;
}
.accordion-title:after {
	position: absolute;
	top: 20px;
	right: 0;
	font-family: var(--font-family-icon);
	font-size: 24px;
	font-weight: 700;
	color: var(--sky-blue-color);
	content: "+";
}
.accordion.active .accordion-title:after {
	content: "-";
}
.accordion-title:before {
	position: absolute;
	top: 26px;
	left: 0;
	font-size: 20px;
	color: var(--sky-blue-color);
	content: "Q:";
}
.accordion.no-pseudo .accordion-title:before {
	display: none;
}
.accordion-content {
	padding-left: 40px;
	padding-right: 40px;
	display: none;
}
.accordion-content ul {
	background: none;
	list-style: none;
	padding: 0;
}
.accordion-content p {
	margin-bottom: 30px;
}
.accordion-content li {
	/* margin-bottom: 35px; */
	padding-left: 30px;
	position: relative;
}
.accordion-content li:before {
	position: absolute;
	top: -4px;
	left: 0;
	font-family: var(--font-family-icon);
	font-size: 19px;
	color: var(--sky-blue-color);
	content: "\f105";
	background: none;
}
.accordion.no-pseudo .accordion-content,
.accordion.no-pseudo .accordion-title {
	padding-left: 0;
}

/* ### sign-up section ### */
.sign-up {
	margin-bottom: 60px;
}
.sign-up .sub {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
}
.sign-up .sub span {
	color: var(--sky-blue-color);
}
.sign-up .form-field {
	position: relative;
}
.sign-up .form-input {
	height: 52px;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid var(--secondary-color);
}
.sign-up input::placeholder {
	color: #bcbbba;
}
.sign-up .button {
	padding: 18px 20px 15px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 15px;
	text-transform: capitalize;
	width: auto;
	height: auto;
	border: 1px solid var(--secondary-color);
}
.sign-up .button:hover,
.sign-up .button:focus {
	background: var(--orange-color);
	border-color: var(--orange-color);
}

/* ### related section ### */
.related {
	margin-bottom: 45px;
}
.related .view-more {
	font-family: var(--font-family-plus-jakarta);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--secondary-color);
	transition: var(--base-duration);
}
.related .view-more:hover,
.related .view-more:focus {
	color: var(--orange-color);
}
.related .view-more i {
	font-size: 11px;
}

/* ### card-related section ### */
.card-related {
	margin-bottom: 30px;
	position: relative;
	display: flex;
}
.card-related img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}
.card-related .text {
	padding-right: 30px;
	padding-left: 18px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
}
.card-related h5 {
	margin-bottom: 5px;
	font-size: 22px;
	font-weight: 500;
	color: var(--secondary-color);
	transition: var(--base-duration);
}
.card-related p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
	margin-bottom: 0;
}
.card-related strong span {
	display: block;
}
.card-related .text i {
	position: absolute;
	right: 0;
	bottom: 7px;
	font-size: 18px;
	color: var(--sky-blue-color);
}
.card-related:hover .text i,
.card-related:hover h5,
.card-related:hover strong,
.card-related:focus .text i,
.card-related:focus h5,
.card-related:focus strong {
	color: var(--orange-color);
}

/* ### sub-practice section ### */
.sub-practice {
	margin-bottom: 60px;
}
.sub-practice li > a {
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 20px;
	position: relative;
	display: block;
	font-weight: 500;
	line-height: 1.2;
	color: var(--secondary-color);
	border-top: 1px solid #bcbbba;
	transition: var(--base-duration);
}
.sub-practice li > a:hover,
.sub-practice li > a:focus {
	color: var(--sky-blue-color);
	text-decoration: underline;
}
.sub-practice li > a i {
	position: absolute;
	top: 50%;
	right: 0;
	color: var(--sky-blue-color);
	transform: translateY(-50%);
}
.sub-practice li:last-child a {
	border-bottom: 1px solid #bcbbba;
}

/* ### resources section ### */
.resources .box {
	padding: 47px 35px;
	background-color: #f3f7fd;
}
.resources .text {
	margin-bottom: 42px;
}
.resources .text:last-child {
	margin-bottom: 0;
}
.resources h6 {
	margin-bottom: 7px;
	font-size: 22px;
	font-weight: 500;
	color: var(--secondary-color);
}
.resources p {
	margin-bottom: 15px;
}
.resources .view-more {
	font-family: var(--font-family-plus-jakarta);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.resources .view-more:hover,
.resources .view-more:focus {
	color: var(--orange-color);
}
.resources .view-more i {
	font-size: 11px;
}

/* ### consultation section ### */
.consultation {
	margin-bottom: 50px;
	padding: 22px 30px 45px;
	border: 10px solid var(--sky-blue-color);
	background-color: var(--white-color);
}
.consultation img {
	margin: 0 auto 8px;
}
.consultation .title {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--sky-blue-color);
}
.consultation .title span {
	display: block;
	color: var(--secondary-color);
}
.consultation .gfield {
	position: relative;
	overflow: hidden;
}
.consultation .form-field {
	margin-top: 10px;
}
.consultation .form-field.submit {
	padding-top: 10px;
	padding-bottom: 10px;
}
.consultation .form-input,
.consultation .gfield input:not(.gform_button),
.consultation .gfield textarea {
	padding: 10px 25px;
	width: 100%;
	height: 55px;
	font-size: 13px;
	font-weight: 500;
	color: var(--secondary-color);
	border-bottom: 1px solid #bcbbba;
}
.consultation .form-input[name="email"] {
	text-transform: none;
}
.consultation textarea::placeholder,
.consultation input::placeholder {
	color: var(--secondary-color);
}
.consultation textarea.form-input {
	padding: 16px 25px;
	height: 98px;
}
.consultation .icon {
	position: absolute;
	top: 13px;
	left: 0;
	font-size: 13px;
	color: var(--secondary-color);
}
.consultation .custom-select {
	padding: 10px 25px;
	width: 100%;
	height: 55px;
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--secondary-color);
	border-bottom: 1px solid #bcbbba;
	background: #fff url("../images/select-arrow.png") no-repeat center right;
	cursor: pointer;
	-webkit-appearance: none;
}
.consultation strong {
	padding: 10px 25px 40px;
	display: block;
	font-size: 13px;
	line-height: 1.2;
	color: var(--secondary-color);
	border-bottom: 1px solid #bcbbba;
}
.consultation .button,
.consultation .gform_button {
	padding: 11px 20px;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	display: inline-block;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	font-weight: bold;
	letter-spacing: 1px;
	line-height: var(--heading-line-height);
	background-color: var(--secondary-color);
}
.consultation .gform_button:hover,
.consultation .gform_button:focus {
	border: 2px solid var(--orange-color);
	background: var(--orange-color);
}
.consultation p {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.consultation {
		padding: 22px 40px 45px;
	}
	.consultation .title {
		font-size: 18px;
	}
}
@media screen and (min-width: 1025px) {
	.consultation .title {
		font-size: 22px;
	}
}

/* ### quote section ### */
.quote {
	margin-top: 90px;
	margin-bottom: 35px;
	padding-bottom: 20px;
	padding-left: 65px;
	position: relative;
}
.quote:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background: var(--orange-color);
	content: "";
	clip-path: polygon(1% 10%, 100% 0%, 100% 90%, 0% 100%);
}
.quote h4 {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--secondary-color);
}
.quote span {
	display: block;
	font-weight: 500;
}
.quote .quote-icon {
	margin-bottom: 23px;
	color: var(--secondary-color);
}
@media only screen and (min-width: 768px) {
	.quote {
		margin-left: 50px;
	}
}

/* ### logo-year section ### */
.logo-year {
	margin-bottom: 72px;
}
.logo-year .year {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-dm-serif);
	font-size: 114px;
	font-weight: 500;
	line-height: 0.9;
	text-transform: capitalize;
	color: var(--secondary-color);
}
.logo-year .year span {
	padding-top: 30px;
	display: inline-block;
	font-size: 31px;
	font-weight: bold;
	transform: rotate(90deg);
}
.logo-year img {
	margin: 0 auto;
	padding-right: 25px;
}

/* ### feature section ### */
.feature {
	margin-bottom: 60px;
}
.feature h4 {
	text-transform: uppercase;
}
.feature .slide {
	margin: 0 1px;
	border: 1px solid #e6e6e6;
}
.feature .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	font-size: 27px;
	color: var(--sky-blue-color);
	border: 1px solid #e6e6e6;
	border-radius: 50%;
	background-color: var(--white-color);
	cursor: pointer;
	padding: 0;
}
.feature .slick-next {
	right: -28px;
}
.feature .slick-prev {
	left: -28px;
}
.feature .view-more {
	padding-top: 10px;
	position: relative;
	z-index: 1;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	text-transform: uppercase;
}
.feature .view-more a {
	transition: var(--base-duration);
}
.feature.inner {
	margin-bottom: 50px;
}

.card-feature .image {
	position: relative;
}
.card-feature .image:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 32, 71, 0.2) 0%, rgba(14, 32, 71, 1) 85%);
	content: "";
}
.card-feature img {
	width: 100%;
	min-height: 188px;
	object-fit: cover;
	object-position: center center;
}
.card-feature .text {
	padding: 30px 35px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.card-feature .title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.25;
	color: var(--white-color);
	transition: var(--base-duration);
}
.card-feature .text span {
	display: block;
	font-family: var(--font-family-plus-jakarta);
	font-size: 12px;
	font-weight: 500;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.card-feature .content {
	padding: 15px 35px 40px;
}
.card-feature .content ul {
	margin-bottom: 18px;
}
.card-feature .content li {
	padding-left: 10px;
	position: relative;
	font-family: var(--font-family-plus-jakarta);
	font-size: 12px;
	color: var(--secondary-color);
}
.card-feature .content li:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 1px;
	background-color: #363636;
	transform: translateY(-50%);
	content: "";
}
.card-feature .content p {
	margin-bottom: 15px;
	color: var(--text-color-base);
}
/* .card-feature:hover .text span,
.card-feature:hover .title {
  color: var(--orange-color);
} */

/* Related Posts */
.resources {
	margin-bottom: 60px;
}

/* ### executive section ### */
.executive {
	padding-top: 100px;
}
.executive .content {
	padding-top: 30px;
	padding-bottom: 40px;
	position: relative;
	order: 2;
	width: 100%;
}
.executive .content:before,
.executive .content:after {
	position: absolute;
	left: -35px;
	display: block;
	width: calc(100% + 70px);
	height: 1px;
	background-color: #d3d3d3;
	content: "";
}
.executive .content:before {
	top: 0;
}
.executive .content:after {
	bottom: 0;
}
.executive .image {
	order: 1;
	width: 100%;
}
.executive img {
	margin: 0 auto;
}
.executive h1 {
	margin-bottom: 9px;
	font-size: 34px;
	font-weight: normal;
}
.executive span {
	margin-bottom: 15px;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.executive .info {
	margin-bottom: 18px;
}
.executive .info li {
	margin-bottom: 3px;
	padding-left: 30px;
	position: relative;
	font-weight: 500;
	font-size: 18px;
}
.executive .info li a {
	display: inline-block;
	color: var(--secondary-color);
	transition: var(--base-duration);
}
.executive .info li a:hover,
.executive .info li a:focus {
	color: var(--sky-blue-color);
}
.executive .info li i {
	position: absolute;
	top: 6px;
	left: 0;
	color: var(--sky-blue-color);
}
.executive .social-media {
	display: flex;
}
.executive .social-media li {
	margin-right: 6px;
}
.executive .social-media li:last-child {
	margin-right: 0;
}
.executive .social-media li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	font-size: 20px;
	color: var(--sky-blue-color);
	background-color: #f3f7fd;
	transition: var(--base-duration);
}
.executive .social-media li a:hover,
.executive .social-media li a:focus {
	color: var(--white-color);
	background-color: var(--sky-blue-color);
}
@media only screen and (min-width: 768px) {
	.executive {
		padding-top: 140px;
	}
	.executive .holder {
		border-bottom: 1px solid #d3d3d3;
	}
	.executive .content {
		padding-top: 52px;
		padding-bottom: 0;
		order: 1;
		width: 50%;
	}
	.executive .content:before,
	.executive .content:after {
		display: none;
	}
	.executive .image {
		order: 2;
		width: 50%;
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		-webkit-box-align: end;
		align-items: flex-end;
	}
	.executive img {
		margin: 0 0 0 auto;
	}
	.executive h1 {
		font-size: 36px;
		font-weight: bold;
	}
}

@media screen and (min-width: 1025px) {
	.executive {
		padding-top: 200px;
	}
}

/* ### news section ### */
.news {
	margin-bottom: 35px;
	padding-top: 46px;
}
.news .news-box {
	margin: 0 auto;
	max-width: 1200px;
}
.news h1 {
	margin-bottom: 35px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	text-transform: capitalize;
	color: #002453;
}
.news .holder {
	margin-right: -9px;
	margin-left: -9px;
}
.news .item {
	margin-bottom: 20px;
	padding-right: 9px;
	padding-left: 9px;
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.blog-search-fields {
		-webkit-box-pack: end;
		justify-content: flex-end;
	}

	.blog-search-fields .item:first-child {
		margin-right: auto;
	}

	.practice h1 {
		font-size: 36px;
		font-weight: normal;
		text-transform: uppercase;
	}

	.news .item {
		width: 50%;
	}
}

@media screen and (min-width: 900px) {
	.news .item {
		margin-bottom: 0;
		width: 33.3%;
	}
}

/* ### card-news section ### */
.card-news {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #d0d0d0;
}
/* .card-news:after {
	position: absolute;
	right: 40px;
	bottom: 35px;
	font-family: var(--font-family-icon);
	font-size: 16px;
	font-weight: 900;
	color: var(--sky-blue-color);
	content: '\f1e0';
} */
.card-news .image {
	position: relative;
}
.card-news .image:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	content: "";
}
.card-news .image img {
	width: 100%;
	height: 217px;
	object-fit: cover;
	object-position: center center;
}
.card-news .content {
	padding: 35px 37px 40px;
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-direction: column;
}
.card-news .date {
	margin-bottom: 6px;
	display: block;
	color: var(--sky-blue-color);
}
.card-news .sub-title {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--secondary-color);
}
.card-news .button {
	margin-top: 25px;
}
.card-news:hover,
.card-news:focus {
	text-decoration: none;
}
.card-news:hover .sub-title,
.card-news:focus .sub-title {
	text-decoration: underline !important;
}
/* ### state section ### */
.state {
	padding: 65px 20px;
	margin-bottom: 50px;
	text-align: center;
	background-color: var(--secondary-color);
}
.state .item {
	margin-bottom: 32px;
	padding-bottom: 26px;
	position: relative;
}
.state .item:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 106px;
	height: 1px;
	background-color: var(--white-color);
	transform: translateX(-50%);
	content: "";
}
.state .item:last-child:after {
	display: none;
}
.state .title {
	margin-bottom: 8px;
	font-size: 46px;
	font-weight: 500;
	line-height: 1;
	color: var(--sky-blue-color);
}
.state span {
	margin: 0 auto;
	display: block;
	max-width: 180px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--white-color);
}

/* ### hashtag section ### */
.hashtag {
	margin-bottom: 45px;
	padding-bottom: 42px;
	border-bottom: 1px solid #bcbbba;
}
.hashtag h2 {
	font-size: 30px;
	font-weight: bold;
	text-transform: capitalize;
	color: #002453;
}
.hashtag h2 a {
	color: var(--secondary-color);
}
.hashtag p {
	margin-bottom: 30px;
}
.hashtag .tags-container {
	margin: 45px 0 30px;
}
.hashtag .tags-container a {
	display: inline-block;
	color: var(--sky-blue-color);
}
.hashtag .tags-container a:hover,
.hashtag .tags-container a:focus {
	color: var(--orange-color);
	text-decoration: underline;
}
.hashtag .share {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	-webkit-box-pack: justify;
	justify-content: space-between;
	grid-gap: 15px;
	gap: 15px;
}
.hashtag .read-more {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
body.single-post .hashtag .read-more {
	display: none;
}
.hashtag .read-more i {
	font-size: 10px;
}
.hashtag .read-more:hover,
.hashtag .read-more:focus {
	color: var(--orange-color);
}
.hashtag .icon {
	color: var(--sky-blue-color);
}
.hashtag .post-top {
	margin-bottom: 12px;
}
.hashtag .post-top span {
	display: inline-block;
	line-height: 1.4;
	color: #363636;
}
.hashtag .post-top span:after {
	margin-right: 5px;
	margin-left: 8px;
	display: inline-block;
	width: 1px;
	height: 17px;
	vertical-align: middle;
	background-color: #363636;
	content: "";
}
.hashtag .post-top span:last-child:after {
	display: none;
}
.hashtag .hashtag-img {
	margin-bottom: 20px;
}
.hashtag .hashtag-img img {
	width: 100%;
}
@media screen and (min-width: 350px) {
	.hashtag .share {
		flex-direction: row;
	}
}
@media only screen and (min-width: 768px) {
	.hashtag h2 {
		font-size: 36px;
		font-weight: normal;
	}
}

/* ### pagination section ### */
.pagination {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}
.pagination ul {
	display: flex;
	align-items: center;
}
.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-weight: 500;
	line-height: 1.2;
	color: #363636;
	transition: var(--base-duration);
}
.pagination li a.active,
.pagination li a:hover,
.pagination li a:focus {
	color: var(--white-color);
	background-color: var(--sky-blue-color);
}
.pagination .next {
	margin-left: 5px;
	font-size: 14px;
	color: var(--sky-blue-color);
}
@media only screen and (min-width: 768px) {
	.pagination {
		margin-bottom: 0;
	}
}

/* ### free section ### */
.free {
	padding-top: 88px;
	padding-bottom: 82px;
	text-align: center;
	background-color: #011c41;
}
.free .title {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	color: var(--white-color);
}
.free strong {
	margin-bottom: 25px;
	display: block;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white-color);
}
.free a {
	color: var(--sky-blue-color);
	transition: var(--base-duration);
}
.free a:hover,
.free a:focus {
	color: var(--orange-color);
}
.free p {
	margin-bottom: 0;
	color: var(--white-color);
}
@media only screen and (min-width: 768px) {
	.free .title {
		font-size: 36px;
		font-weight: normal;
	}
}

/* ### contact section ### */
.contact {
	padding-top: 65px;
	padding-bottom: 40px;
	background-color: var(--secondary-color);
}
.contact .title {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	color: var(--white-color);
}
.contact .holder {
	margin-right: -10px;
	margin-left: -10px;
}
.contact .form-field {
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
	width: 100%;
}
.contact .form-field.w-100 {
	width: 100%;
}
.contact .form-field.submit {
	padding-top: 35px;
	text-align: center;
}
.contact .custom-select,
.contact .form-input,
.contact .gfield input {
	height: 66px;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white-color);
	border-bottom: 1px solid #bcbbba;
	background-color: transparent;
	padding-left: 50px;
}
.contact .custom-select {
	background: url("../images/select-arrow1.png") no-repeat top 25px right;
	-webkit-appearance: none;
}
.contact .icon {
	position: absolute;
	top: 21px;
	/* left: 10px; */
	left: 0;
	font-size: 12px;
	color: var(--white-color);
}
.contact textarea::placeholder,
.contact input::placeholder {
	color: var(--white-color);
}
.contact textarea.form-input {
	padding: 21px 20px;
	height: 95px;
	line-height: 1.5;
}
/* .contact label {
	margin: 0 auto;
	padding-top: 15px;
	padding-left: 21px;
	position: relative;
	display: block;
	max-width: 375px;
} */
.contact span {
	display: block;
	font-size: 13px;
	line-height: 1.2;
	color: var(--white-color);
	cursor: pointer;
}
.contact input[type="checkbox"] {
	padding: 0;
	/* position: absolute;
	top: 19px;
	left: 0; */
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: var(--white-color);
	-webkit-appearance: none;
}
.contact input[type="checkbox"]:checked:before {
	font-family: var(--font-family-icon);
	font-size: 10px;
	color: var(--secondary-color);
	content: "\f00c";
}
.contact .button {
	padding: 17px 35px 14px;
	font-size: 14px;
	color: var(--white-color);
	border: 2px solid var(--white-color);
	width: 100%;
	height: auto;
	max-width: 305px;
}
.contact .button:hover,
.contact .button:focus {
	color: var(--secondary-color);
	background: var(--white-color);
}
.contact .button:hover:before,
.contact .button:focus:before {
	background-color: var(--white-color);
}
.contact.inner {
	display: block;
}
@media only screen and (min-width: 768px) {
	.contact.inner {
		display: none;
	}
	.contact .title {
		font-size: 36px;
		font-weight: normal;
	}
	.contact .form-field {
		width: 33.3%;
	}
	.contact input[type="checkbox"] {
		top: 15px;
	}
	.contact .button {
		max-width: 200px;
	}
}

/* ### copy section ### */
.finance {
	margin-bottom: 60px;
}
.finance.search {
	margin-top: 41px;
}
.finance .head {
	margin-bottom: 40px;
	padding-top: 25px;
}
.finance .bottom {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: 30px;
}
.finance h1,
.finance h2 {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
}
.finance h2 a {
	color: var(--secondary-color);
}
.finance h2 a:hover,
.finance h2 a:focus {
	color: var(--orange-color);
}
.finance .holder {
	margin-right: -10px;
	margin-left: -10px;
	row-gap: 18px;
}
.finance .item {
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}
.finance .btn {
	padding-top: 30px;
	text-align: center;
}
.finance.inner {
	margin-right: -40px;
	margin-left: -40px;
	padding-top: 60px;
	width: calc(100% + 80px);
}
.finance.inner h2 {
	margin-bottom: 30px;
	font-weight: normal;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.finance.inner {
		margin-right: 0;
		margin-left: 0;
		width: 100%;
	}
	.finance .head {
		padding-top: 65px;
	}
	.finance .item {
		margin-bottom: 0;
		width: 33.3%;
	}
	.finance h1,
	.finance h2 {
		font-size: 36px;
		font-weight: normal;
	}
	.finance .btn {
		padding-top: 60px;
	}
	.finance.inner {
		padding-top: 100px;
	}
	.finance.inner h2 {
		margin-bottom: 60px;
	}
}

/* ### footer container ### */
.footer {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	background-color: var(--blue-color);
	overflow: hidden;
}
.footer .left {
	order: 2;
	width: 100%;
	text-align: center;
}
.footer .right {
	padding-top: 25px;
	padding-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	order: 1;
	width: 100%;
}
.footer .left ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer .left ul > li {
	font-size: 15px;
	text-transform: uppercase;
	color: var(--white-color);
}
.footer .left ul > li:after {
	margin: 0 5px;
	display: inline-block;
	width: 2px;
	height: 2px;
	vertical-align: middle;
	background-color: var(--white-color);
	content: "";
}
.footer .left ul > li:last-child:after {
	display: none;
}
.footer .left ul > li > a {
	color: var(--white-color);
	transition: var(--base-duration);
	text-decoration: underline;
}
.footer .left ul > li > a:hover,
.footer .left ul > li > a:focus {
	color: var(--orange-color);
	text-decoration: none;
}
.footer p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--gray-color);
}
.footer .social-media {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.footer .social-media li {
	margin-right: 18px;
}
.footer .social-media li:last-child {
	margin-right: 0;
}
.footer .social-media li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	font-size: 20px;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	transition: var(--base-duration);
	content: "";
}
.footer .social-media li a:hover,
.footer .social-media li a:focus {
	color: var(--blue-color);
	background-color: var(--white-color);
	text-decoration: none;
}
.footer .heading {
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	font-size: 18px;
	text-align: left;
	text-transform: uppercase;
	color: var(--white-color);
}
.footer .heading strong {
	color: var(--sky-blue-color);
}
.footer .newsletter {
	margin: 0 -35px;
	padding-top: 30px;
	padding-right: 35px;
	padding-bottom: 50px;
	padding-left: 35px;
	position: relative;
	width: calc(100% + 70px);
	background-color: var(--dark-blue-color);
}
.footer .holder {
	padding-right: 126px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
}
.footer .mc-field-group {
	width: 100%;
}
.footer .form-input {
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	width: 100%;
	height: 48px;
	font-size: 19px;
	text-transform: unset;
	color: var(--white-color);
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid var(--white-color);
	border-left: 0;
	background-color: transparent;
}
.footer .button {
	padding: 16px 10px 12px;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 16px;
	color: var(--blue-color);
	border: 1px solid var(--sky-blue-color);
	background-color: var(--sky-blue-color);
	height: 100%;
	width: auto;
}
.footer .button:hover,
.footer .button:focus {
	color: var(--white-color);
	border: 1px solid var(--orange-color);
}
.footer .button:before {
	background-color: var(--orange-color);
}
@media only screen and (min-width: 768px) {
	.footer .newsletter {
		margin: 0 -15px;
		width: calc(100% + 30px);
	}
}
@media only screen and (min-width: 1025px) {
	.footer {
		padding-bottom: 0;
	}
	.footer .left {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 15px;
		order: 1;
		width: 50%;
		text-align: left;
	}
	.footer .right {
		padding-top: 0;
		padding-bottom: 0;
		order: 2;
		width: 50%;
		text-align: center;
	}
	.footer .left ul {
		justify-content: flex-start;
	}
	.footer .left ul > li {
		font-size: 10px;
	}
	.footer p {
		font-size: 13px;
	}
	.footer .social-media {
		justify-content: flex-start;
		width: 30%;
	}
	.footer .social-media li a {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.footer .newsletter {
		margin: 0;
		padding-right: 0;
		width: 70%;
	}
	.footer .newsletter:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100%;
		background-color: var(--dark-blue-color);
		content: "";
	}
	.footer .holder {
		padding-right: 0;
	}
	.footer .heading {
		font-size: 15px;
	}
	.footer .form-input {
		width: 60%;
		font-size: 13px;
	}
	.footer .mc-field-group {
		margin-right: 17px;
		width: 60%;
		font-size: 13px;
	}
	.footer .mc-field-group .form-input {
		width: 100%;
	}
	.footer .button {
		padding: 16px 20px 12px;
		position: relative;
		bottom: 0;
		left: 0;
		font-size: 13px;
	}
}

/* #Media Queries
================================================== */

@media only screen and (max-width: 1750px) {
	.container-lg {
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media only screen and (max-width: 1460px) {
	.container {
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media only screen and (max-width: 1199px) {
	.container-sm {
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media only screen and (max-width: 767px) {
	h1 {
		font-size: 30px;
	}
	.header .container-lg {
		padding-right: 15px;
		padding-left: 15px;
	}
	.container {
		padding-right: 35px;
		padding-left: 35px;
	}
	.container-lg {
		padding-right: 35px;
		padding-left: 35px;
	}
	.container-sm {
		padding-right: 35px;
		padding-left: 35px;
	}
}
@media only screen and (min-width: 768px) {
	.h2 {
		font-size: 36px;
		font-weight: normal;
	}
	.banner-title {
		padding-left: 0;
		text-align: left;
	}
	.banner-title:before {
		display: block;
	}
}
@media only screen and (min-width: 1025px) {
	h1 {
		font-size: var(--font-size-h1);
	}
	.banner-title,
	body.single-cases .banner-title,
	body.single-practices .banner-title {
		font-size: 44px;
		letter-spacing: 3px;
	}
	body.single-cases .banner-title.small,
	body.single-practices .banner-title.small {
		font-size: 30px;
	}
}
@media only screen and (min-width: 1400px) {
	.h2 {
		font-size: 50px;
	}
}

/* contact form */

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}
.contact-form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	grid-gap: 0 20px;
	gap: 0 20px;
	flex-direction: column;
}

.form-input-group {
	position: relative;
}

.checkbox-container {
	margin: 30px 0;
}

.form-input-group.checkbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	grid-gap: 0 10px;
	gap: 0 10px;
	align-items: start;
	flex-wrap: wrap;
}

.form-input-group.checkbox:first-child {
	margin-bottom: 15px;
}

.form-input-group.checkbox label,
.gchoice label {
	padding: 0;
	display: block;
	flex: 1;
	font-size: 15px;
	line-height: 1.3;
}

.form-input-group.checkbox input {
	position: static;
	line-height: 1;
	margin-top: 3px;
}

.contact-form label {
	color: var(--white-color);
	font-family: var(--font-family-base);
	font-size: 14px;
	width: 100%;
	padding-left: 50px;
}

.contact-form .gchoice label {
	padding-left: 0;
	flex: initial;
	width: auto;
}

.contact-form label a {
	text-decoration: underline;
}

.contact-form label a:hover,
.contact-form label a:focus {
	text-decoration: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	background: none;
	border-bottom: 1px solid var(--white-color);
	color: var(--white-color);
	font-size: 14px;
	height: 66px;
}

.contact-form select {
	padding-left: 50px;
}

.contact-form option {
	color: var(--black-color);
}

.gfield_validation_message {
	color: red;
}

.gform_submission_error {
	font-size: 1.2rem;
}

.gfield {
	position: relative;
	border: none;
	padding: 0;
	width: 100%;
}

.gchoice {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	grid-gap: 0 10px;
	gap: 0 10px;
	align-items: start;
	/* flex-wrap: wrap; */
}
.gchoice .gfield-choice-input {
	flex-shrink: 0;
}

fieldset.gfield {
	margin-top: 30px;
}

fieldset.gfield + fieldset.gfield {
	margin-top: 15px;
	margin-bottom: 30px;
}

label.fade,
.gfield_label {
	position: absolute;
	opacity: 1;
	top: 0;
	height: 66px; /* height of input */
	line-height: 66px; /* height of input */
	padding: 0;

	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	padding-left: 25px;
	pointer-events: none;
}

.gfield_label::before,
.gfield::before {
	position: absolute;
	/* top: 50%; */
	top: 13px;
	left: 0;
	/* transform: translateY(-50%); */
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	color: var(--secondary-color);
	margin-right: 10px;
}

.contact .gfield_label::before,
.contact .gfield::before {
	color: var(--white-color);
	left: 25px;
}

.gfield.name::before {
	content: "\f007";
}

.gfield.email::before {
	content: "\f0e0";
}

.gfield.phone::before {
	content: "\f095";
}

.gfield.city::before {
	content: "\f601";
}

.gfield.practiceSelect::before,
.gfield.state-select::before {
	content: "\f0f2";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.contact-form .gfield.practiceSelect::before,
.contact-form .gfield.state-select::before {
	left: 25px;
}

.gfield--type-textarea label::before {
	content: "\f036";
}

.gform_footer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.banner-form label.fade,
.banner-form .gfield label,
.rightBox label.fade,
.rightBox .gfield label {
	height: 55px;
	/* line-height: 55px; */
}

input:focus:not([type="checkbox"]) ~ label.fade span,
textarea:focus ~ label.fade span,
input.active ~ label.fade span,
textarea.active ~ label.fade span,
select.active ~ label.fade span,
.gfield.active:not(.gfield--type-checkbox) label {
	padding: 0 15px; /* padding of input */
	top: 0;
	opacity: 0;
	line-height: 66px; /* height of input */
}

input.has-error,
textarea.has-error,
select.has-error {
	border-bottom: 1px solid #ff0000 !important;
}

p.error-text {
	color: #ff0000;
	margin-top: 5px;
	margin-bottom: 10px;
	text-align: left;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
	width: 100%;
}

.banner-form .contact-form label,
.banner-form .contact-form select,
.rightBox .contact-form label,
.rightBox .contact-form select {
	color: var(--secondary-color);
	font-weight: 500;
}

.rightBox .form-input-group.checkbox input {
	align-self: flex-start;
	width: auto;
	height: auto;
	margin-top: 7px;
}

.banner-form .contact-form select,
.rightBox .contact-form select {
	border-bottom: 1px solid #bcbbba;
	padding-left: 25px;
}

.banner-form .contact-form .gfield.practiceSelect::before,
.banner-form .contact-form .gfield.state-select::before,
.rightBox .contact-form .gfield.practiceSelect::before,
.rightBox .contact-form .gfield.state-select::before {
	left: 0;
}

.banner-form .contact-form input:not(.gform_button),
.banner-form .contact-form select,
.rightBox .contact-form input:not(.gform_button),
.rightBox .contact-form select {
	height: 55px;
}

.banner-form .contact-form textarea,
.banner-form .gfield textarea,
.rightBox .contact-form textarea,
.rightBox .gfield textarea {
	height: 98px !important;
}

.contact-form label span,
.gfield label {
	line-height: 1.3;
}

.banner-form .contact-form label,
.banner-form .contact-form select,
.rightBox .contact-form label,
.rightBox .contact-form select {
	text-transform: none;
	padding-left: 25px;
}

@media screen and (min-width: 768px) {
	.rightBox .form-input-row:not(.no-grid) {
		display: block;
	}

	.form-input-row:not(.no-grid) {
		display: grid;
		grid-auto-columns: 1fr;
		grid-auto-flow: column;
		grid-gap: 1rem;
		gap: 1rem;
	}
}

@media screen and (min-width: 1025px) {
	.form-input-row.no-grid {
		margin: 30px 0 50px;
	}

	.form-input-group.checkbox {
		max-width: 440px;
		margin: 0 auto;
		-webkit-box-align: center;
		align-items: center;
	}

	.form-input-group.checkbox input {
		margin-top: 0;
	}

	.gchoice {
		max-width: 440px;
		margin: 0 auto;
	}

	.footer-form .gform_fields {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 15px;
	}

	.footer-form .gfield:nth-child(-n + 4) {
		width: 49%;
	}

	.footer-form .gfield:nth-child(n + 5):nth-child(-n + 7) {
		width: 32%;
	}
}

.slick-sr-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.slick-autoplay-toggle-button {
	position: absolute;
	left: auto;
	right: 0;
	bottom: -44px;
	opacity: 0.75;
	background: 0 0;
	border: 0;
	cursor: pointer;
	color: #000;
	padding: 0;
}

.slick-autoplay-toggle-button:focus,
.slick-autoplay-toggle-button:hover {
	opacity: 1;
}

.slick-autoplay-toggle-button:focus {
	color: #e80924;
}

/* .slick-autoplay-toggle-button .slick-pause-icon:before {
  content: "⏸";
  width: 20px;
  height: 20px;
  font-family: slick;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.slick-autoplay-toggle-button .slick-play-icon:before {
  content: "▶";
  width: 20px;
  height: 20px;
  font-family: slick;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
} */

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

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

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

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

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

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

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

@keyframes fadeInUpGentle {
	from {
		opacity: 0;
		transform: translate3d(0, 15%, 0);
	}

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeInDownGentle {
	from {
		opacity: 0;
		transform: translate3d(0, -15%, 0);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* HEADER > Header Search Bar */
.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: var(--secondary-color);
	padding: 18px 0;
	width: 100%;
	opacity: 0;
	z-index: 10;
	transition: all 200ms ease-out;
}

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

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

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

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

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

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

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

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

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

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

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	white-space: pre;
}

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

#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 5px 30px;
}

.header-search-toggle {
	border: none;
	padding: 0;
	display: block;
	font-size: 22px;
	color: var(--sky-blue-color);
	border: none;
}

.header-search-toggle:hover,
.header-search-toggle:focus {
	color: #fff;
	border: none;
}

#header-search-close {
	color: #fff;
}

footer input::placeholder {
	color: #fff;
}

/* DITTY NEWS TICKER */
.ditty {
	padding: 7px 0;
	padding-left: 15px;
	padding-right: 45px;
	background: var(--blue-color);
}

.ditty::after {
	content: "\f061";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: var(--orange-color);
	font-family: "Font Awesome 6 Pro";
}

.ditty__title__element {
	color: var(--sky-blue-color);
	padding-right: 15px !important;
	font-size: 18px;
	font-weight: 700;
}

.ditty-layout--1_default .ditty-item__elements a {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}

.ditty-layout--1_default .ditty-item__elements a:hover,
.ditty-layout--1_default .ditty-item__elements a:focus {
	text-decoration: underline;
}

.ditty-layout--1_default .ditty-item-heading {
	display: none !important;
	margin-bottom: 0 !important;
}

.ditty__contents {
	align-content: center !important;
}

@media screen and (min-width: 1750px) {
	.ditty {
		padding-right: calc(((100% - var(--width-base-lg)) / 2));
		padding-left: calc(((100% - var(--width-base-lg)) / 2));
	}

	.ditty::after {
		right: calc(((100% - var(--width-base-lg)) / 2));
	}

	.ditty-ticker__items {
		margin-right: 30px;
	}
}

.screen-reader-response,
.wpcf7-response-output {
	display: none;
}

/* CASE DETAILS */
.case-details {
	/* padding: 35px 30px 35px;
	background: #f3f7fd; */
	margin-bottom: 30px;
}

.case-details p {
	margin-bottom: 0;
	line-height: 1.6;
}

.case-details a:not(:last-child):after {
	content: ",";
}

.case-details .case-detail-title {
	font-weight: 700;
	text-transform: uppercase;
}

/* NEW FEATURED CASES ON CASES LANDING */
.featured-cases-holder {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #afafaf;
}

/* GENERAL > Skip To Content */
#skiptocontent {
	z-index: 10;
	position: fixed;
	padding: 8px;
	display: block !important;
	transform: translateY(-40px);
	opacity: 0;
	background-color: #00132e;
	color: #fff;
	transition: all 200ms ease-out;
}

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

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

.show-for-pdf {
	display: none;
}

.careers-lower-content {
	margin-top: 50px;
}

.careers-lower-content .accordion:last-of-type {
	margin-bottom: 40px;
}
