/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 16px;
	--body-text-color: #000;
	--primary-color: #004689;
	--secondary-color: #049ffd;
	--alternate-color: #002c57;
	--gredient-effect: linear-gradient(to bottom, #024589, #012b57);
	--headline-color: #004689;
	--light-gray-color: #f7f8fa;
	--body-font-family: 'Montserrat', serif;
	--heading-font-family: 'DM Serif Text', serif;
	--color-gray: #e3e3e3;
	--black: #000;
	--color-light-gray: #edf1f5;
	--white: #fff;
	--color-black: #000;
	--font-family-body: 'Montserrat', serif;
	--font-family-heading: 'DM Serif Text', serif;
	--gutter-size: 20px;
}

@media screen and (min-width: 768px) {
	/*TABLET*/
	:root {
		font-size: 16px;
	}
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-banner main {
	padding-top: 180px;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.76;
	color: var(--color-black);
	font-size: 16px;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #fff;
	font-weight: 400;
}

*:focus-visible {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.mega-menu .sub-menu,
.gfield--type-captcha,
.grecaptcha-badge {
	display: none !important;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	color: var(--primary-color);
	font-weight: normal;
	font-family: var(--font-family-heading);
	line-height: 1.6;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 25px;
}

h5 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 3.2px;
	color: var(--color-black);
	font-family: var(--font-family-body);
	font-weight: 600;
}

h6 {
	font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
	font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: var(--color-secondary);
	font-size: 50%;
}

p {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.76;
	letter-spacing: normal;
	text-align: left;
	color: var(--body-text-color);
	letter-spacing: 0px;
	font-family: var(--body-font-family);
}

ul {
	list-style: none;
}

/* CORE > Links and Buttons */

a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 600;
}

a:hover,
a:focus {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 600;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 18px 35px;
	border-radius: 0;
	text-align: center;
	display: inline-block;
	background-color: var(--primary-color);
	font-size: 12px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: 0px;
	color: var(--white);
	text-decoration: none !important;
	box-shadow: inset 0 0 0 0 var(--secondary-color);
	-webkit-transition: 0.7s ease-in-out;
	-moz-transition: 0.7s ease-in-out;
	transition: 0.7s ease-in-out;
}
button:active,
.button:active,
.wp-element-button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background-color: var(--secondary-color);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: 0px;
	box-shadow: inset 400px 0 0 0 var(--secondary-color);
}

button.alt-01,
.button.alt-01 {
	background-color: var(--color-primary);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
	background-color: var(--color-secondary);
	color: white;
}

button.alt-02,
.button.alt-02 {
	background-color: var(--color-primary);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
	background-color: var(--color-secondary);
	color: white;
}

button.outline,
.button.outline {
	background: none;
	border: 2px solid var(--color-primary);
	color: var(--color-white);
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
	background: var(--color-primary);
	color: white;
	border: 2px solid var(--color-primary);
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
	border-color: white;
	color: white;
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
	background: var(--color-near-white);
	color: var(--color-primary);
}

button.no-button,
.button.no-button {
	padding: 0;
	background: none;
	color: var(--color-secondary);
	text-transform: none;
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: var(--color-primary);
	text-decoration: none;
}

/* CORE > Page Structure */

.no-banner main {
	padding-top: 180px !important;
}

.content.full-width {
	float: none;
}

.content img {
	max-width: 100%;
	height: auto;
}

.content section:not(:last-of-type) {
	margin-bottom: 60px;
}

.columns,
.column {
	padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: 1024px;
}

.row-wide {
	max-width: 1599px;
}

.row::after {
	clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
	display: table;
	content: ' ';
	flex-basis: 0;
	order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
	display: none;
}

@media screen and (min-width: 768px) {
	main {
		padding: 60px 0;
	}

	.main-attorney-search {
		padding-top: 00px;
	}

	.page-template-template-careers #main {
		padding: 60px 0;
	}
	.main-inner {
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		display: flex;
	}

	.content {
		width: 65%;
		margin-bottom: 0;
		padding-right: 70px;
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--gutter-size);
	}

	.sidebar {
		width: 35%;
	}
}

/* CORE > Priority Utility Classes */
.no-float {
	float: none !important;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

img.responsive-img,
.responsive-img img {
	max-width: 100%;
	height: auto;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.position-absolute,
.absolute {
	position: absolute;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.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;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0.01;
}

.opacity1 {
	opacity: 1 !important;
}

.uppercase {
	text-transform: uppercase;
}

.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;
}

.font-extra-bold {
	font-weight: 800;
}

.font-black {
	font-weight: 900;
}

.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;
}

.mt80 {
	margin-top: 80px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.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;
}

.mb80 {
	margin-bottom: 80px;
}

.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;
}

.pt80 {
	padding-top: 80px;
}

.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;
}

.pb80 {
	padding-bottom: 80px;
}

@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;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: transparent;
	z-index: 2;
	border-bottom: 2px solid transparent;
	transition: border-color 200ms ease-out;
}

.home .header {
	top: 0;
	width: 100%;
	background-color: transparent;
}

.header-search {
	opacity: 0;
}

body.scrolled .header {
	background-color: var(--body-text-color);
	padding-bottom: 0px;
	z-index: 99;
}

.header > .row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	opacity: 0.5;
	background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
	top: 0;
	z-index: -1;
}

.home .header::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	opacity: 0;
	background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0));
	top: 0;
	z-index: -1;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 8px;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
	background: transparent;
	padding: 15px 15px 15px 15px !important;
}

.header-mobile-buttons {
	display: flex;
	margin-left: 0%;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	background: transparent;
	min-height: 60px;
}

.header-mobile-buttons a {
	display: flex;
	font-size: 19px !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 10px;
	flex: initial;
	margin-right: 14px !important;
	width: 45px !important;
	background: var(--light-teal) !important;
	height: 45px !important;
	color: var(--secondary-color);
	max-width: 45px !important;
	display: none !important;
}

.header-mobile-buttons a:hover,
.header-mobile-buttons a:focus {
	display: flex;
	font-size: 26px;
	align-items: center;
	justify-content: flex-end;
	padding: 0 10px;
	flex: 1;
	margin-right: 14px !important;
}

.header-mobile-buttons button {
	display: flex;
	font-size: 1.5rem !important;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 45px !important;
	width: 45px !important;
	height: 45px !important;
	background: transparent;
	border: 0px solid #fff;
}

.header-mobile-buttons button:hover,
.header-mobile-buttons button:focus {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 55px;
	width: 55px;
	height: 60px;
}

.spanish-text {
	font-size: 12px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 1.44px;
	text-align: center;
	text-transform: uppercase;
	max-width: 105px;
}

.header-mobile-inner .header-logo {
	justify-content: center;
	padding: 10px 0;
}

.mega-menu {
	display: none;
}

@media screen and (min-width: 500px) {
	/*	.header-mobile-buttons a,
	.header-mobile-buttons button {
		width: 60px;
		max-width: 60px;
		height: 60px;
		font-size: 1.6rem;
	}*/
}

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-logo {
		padding: 0;
	}
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.module-header-a-right-bottom .main-navigation-menu > li#menu-item-1655 .sub-menu {
	right: 0;
}
.module-header-a-right-bottom .main-navigation-menu > li#menu-item-1655 .sub-menu .sub-menu {
	left: -100%;
	padding: 0;
}

.main-navigation-menu > li {
	padding: 5px 0 0px 0;
	margin-right: 20px;
}

.main-navigation-menu li li.menu-item-has-children {
	padding-right: 35px;
}

.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
}

.module-header-a-right-bottom .main-navigation-menu > li.menu-item-1655 .sub-menu {
	right: 0;
}
.module-header-a-right-bottom .main-navigation-menu > li.menu-item-1655 .sub-menu .sub-menu {
	left: -100%;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 265px;
	margin: 0;
	background: var(--black);
	padding: 20px 0;
}
.main-navigation-menu > li.menu-item-1721 .sub-menu {
	width: 500px;
	left: -100%;
}

.main-navigation-menu > li.menu-item-1721 .sub-menu .menu-item {
	width: 48%;
	float: left;
}

.module-header-a-right-bottom .main-navigation-menu > li:last-of-type .sub-menu {
	right: 0;
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
	color: var(--secondary-color);
	text-decoration: none;
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	text-transform: uppercase;
	padding: 11px 0;
	font-size: 13px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.33px;
	text-align: left;
	color: var(--white);
}

.main-navigation-menu > li a::before {
	bottom: 0px;
	display: block !important;
	height: 3px;
	width: 0%;
	content: '';
	background-image: linear-gradient(to left, var(--secondary-color) 70%, var(--secondary-color));
	left: 0;
}

#desktop-navigation .sub-menu li a::before {
	opacity: 0;
	display: none;
}
.main-navigation-menu > li a:hover:before,
.main-navigation-menu > li a:focus:before {
	opacity: 1;
	width: 100%;
}

.main-navigation-menu > li a::before {
	position: absolute;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.module-header-a-right-bottom .main-navigation-menu > li {
	margin-right: 30px;
	padding-top: 0;
}

.module-header-a-right-bottom .main-navigation-menu > li > a {
	font-size: 16px !important;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0;
	position: relative;
	padding: 5px 0 8px 0;
	text-transform: capitalize;
}

.module-header-a-right-bottom .main-navigation-menu > li:last-of-type {
	margin: 0;
}

.module-header-a-right-bottom .main-navigation-menu > li > a::after {
	content: '';
	font-weight: normal;
	position: absolute;
	right: -12px;
	width: 1px;
	height: 14px;
	background: #d5d5d5;
	top: 9px;
	opacity: 0;
	width: 0px;
	height: 0px;
}

.module-header-a-right-bottom .main-navigation-menu > li:last-of-type a::after {
	opacity: 0;
	margin: 0;
	width: 0;
	height: 0;
	visibility: hidden;
}

/* MENUS > Main Nav Dropdowns (Level 2) */

#desktop-navigation .sub-menu li,
.mega-menu li {
	padding-left: 0;
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
}

#mega-menu li a,
#desktop-navigation .sub-menu li a {
	color: #fff;
	display: block;
	padding: 7px 10px;
	padding-left: 45px;
	text-decoration: none;
	letter-spacing: 0;
	font-weight: 500;
	background: var(--black);
	font-size: 15px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.3;
}

#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
	color: var(--secondary-color);
	/*	background: var(--primary-color); */
	background: transparent;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: #000000;
}
#desktop-navigation .menu-item-1720 .sub-menu .sub-menu {
	right: 0;
	left: -100%;
}
.mega-menu li::before,
#desktop-navigation .sub-menu li::before {
	content: '\f0da';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	left: 25px;
	top: 3px;
	/* color: var(--color-secondary); */
	pointer-events: none;
	transition: color 200ms ease-out;
	opacity: 1;
	color: #fff;
	font-weight: bold;
}

.mega-menu li.active::before,
#desktop-navigation .sub-menu li.active::before {
	color: var(--secondary-color);
}

/* #desktop-navigation .sub-menu .menu-item-has-children > a::after {
	content: '\f101';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	right: 10px;
	color: var(--color-secondary);
} */

#desktop-navigation .sub-menu .menu-item-has-children.active > a::after {
	color: white;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

#desktop-navigation .menu-item-1723 .sub-menu {
	left: auto;
	right: 0;
}

@media screen and (min-width: 1700px) {
	#desktop-navigation .menu-item-1720 .sub-menu .sub-menu {
		left: 100%;
	}

	#desktop-navigation .menu-item-1723 .sub-menu {
		left: 0;
		right: auto;
	}
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
	background: none;
}

/* HOME HERO AND/Video CSS Start */

.home-hero {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	background-color: #000;
	padding-bottom: 65px !important;
}

#main::after {
	/*	background-image: linear-gradient(to bottom, #000, #021334 99%);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 600px;
	width: 100%;
	z-index: 0;*/
}
#main {
	position: relative;
}
/*#main .row {
	position: relative;
	z-index: 1;
}*/

.home-slider {
	position: relative;
	/* top: 0; */
	/* left: 0; */
	/* opacity: 0; */
}

.home-slider,
.home-slider-single {
	height: 100vh;
	position: relative;
}

.home-slider-single {
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: 60%;
}
.home-slider-single-background {
	height: 100%;
	width: 100%;
	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;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
}

.home-slider-single-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slick-current .home-slider-single-background {
	animation: zoom-in-zoom-out 2s ease;
}

@keyframes zoom-in-zoom-out {
	0% {
		scale: 120%;
		opacity: 0;
	}

	100% {
		scale: 100%;
		opacity: 1;
	}
}

.video-bg {
	position: absolute;
	width: 100%;
	z-index: 0;
	top: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: 50%;
	height: 100% !important;
	background-color: RGB(13, 40, 92, 1);
	display: none;
}

.overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: contain;
	z-index: 1;
	background-image: url(../images/video-bg-medium.png);
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center right;
}

.video-bg video {
	z-index: 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.overlay::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	width: 40%;
	height: 100%;
}

#how-can-help {
	display: flex;
	position: relative;
	border: 1px solid #fff;
	align-items: center;
	max-width: 285px;
}
.slider-search-right img {
	max-width: 155px;
	height: auto;
}
.badge-main-text {
	position: absolute;
}

.badge-main-text img {
	max-width: 145px;
	animation-name: rotate;
	animation-duration: 25s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes rotate {
	0% {
		transform: rotate(-360deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.slide-bottom-main {
	/* display: flex; */
	/* align-items: center; */
	justify-content: space-between;
	/* width: 100%; */
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 0;
}

#how-can-help-input {
	color: #fff !important;
	padding-right: 58px;
	padding-left: 15px !important;
	font-family: var(--body-font-family);
	font-size: 18px;
	height: 45px !important;
	border: none !important;
	min-width: 285px !important;
}

#how-can-help label {
	position: absolute;
	left: 15px;
	font-size: 20px;
}
#how-can-help button {
	margin-left: 10px;
	height: 48px;
	width: 45px;
	font-size: 18px;
	padding: 0 12px;
	font-weight: 700;
	position: absolute;
	right: 0;
	line-height: 50px;
	display: flex;
	align-items: center;
	border-radius: 0 !important;
	border: none !important;
	color: #fff;
	background: transparent;
}
#how-can-help button:hover,
#how-can-help button:focus {
	background: transparent;
	color: #717b34;
}
.home-slider .slick-dots li button:before {
	color: #fff;
}

.home-hero-form-container {
	display: none;
}

.home-hero .slick-dots {
	z-index: 1;
	display: none !important;
}

@media screen and (min-width: 640px) {
	.home-hero {
		height: 500px;
	}
}

@media screen and (min-width: 1025px) {
	.home-slider {
		display: block;
	}

	.home-hero,
	.home-slider,
	.video-bg,
	.home-slider-single {
		height: 100vh;
		width: 100%;
	}

	.home-hero-form-container {
		width: 100%;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}

	.home-hero-form-container,
	.home-hero-form-inner,
	.home-hero-form-container .row,
	.home-hero-form-container .columns {
		height: 100%;
	}

	.home-hero-form-inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.home-hero-form .contact-form-heading {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: #e9f5f7;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

	.home-hero-form .contact-form-heading {
		display: none;
	}
}

.module-header-a-right {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-self: center;
}

.module-header-a-right-top {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0px;
	position: relative;
	z-index: 1;
}

.module-header-a-right-top span {
	font-weight: 600;
}

.module-header-a-phone {
	font-weight: bold;
	color: #fff;
	font-size: 18px;
	margin-left: 0;
	display: inline-block;
	background: var(--primary-color);
	padding: 5px 5px;
	min-width: 190px;
	position: relative;
	top: -8px;
	margin-left: 5px;
}

.module-header-a-phone:hover,
.module-header-a-phone:focus {
	font-weight: bold;
	color: var(--alternate-color);
	font-size: 18px;
	margin-left: 0;
	display: inline-block;
	padding: 5px 5px;
	min-width: 190px;
	position: relative;
	top: -8px;
	margin-left: 5px;
}
.module-header-a-phone i {
	font-size: 12px;
	margin-right: 7px;
	position: relative;
	top: -3px;
}

.header-top-right .social-links::after {
	content: '';
	position: absolute;
	background: #d5d5d5;
	width: 1px;
	height: 17px;
	right: -9px;
}

.header-top-right .social-links::before {
	content: '';
	position: absolute;
	background: #d5d5d5;
	width: 1px;
	height: 17px;
	left: -6px;
}

.header-top-right .social-links {
	position: relative;
}

.header-top-right {
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
	line-height: 1.5;
	color: #fff;
	margin-left: 20px;
	min-width: inherit;
	/* min-height: 60px; */
	font-size: 19px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	align-items: center;
	column-gap: 8px;
}

.header-top-right span {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: var(--light-teal);
}

.module-header-a-right-bottom {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-ms-align-items: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	justify-content: flex-end;
}

@media screen and (min-width: 1025px) {
	.module-header-a-right {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		padding-top: 20px;
		width: 65%;
	}

	.module-header-a-logo {
		flex: 1;
	}

	.module-header-a-inner {
		padding: 0 20px;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 100%;
		position: relative;
		padding-bottom: 20px;
	}

	.module-header-a-logo img {
		padding: 0;
		max-width: 400px;
		padding: 0;
		margin-top: 15px;
		width: 100%;
	}
}

.slick-autoplay-toggle-button {
	display: none;
}

.home-slider-tagline-inner {
	height: 100%;
	/* display: flex; */
	align-items: center;
	margin-top: 0;
	padding-bottom: 0;
	justify-content: flex-start;
	position: relative;
	padding-top: 0px;
	max-width: 100%;
	margin: 0 auto;
	align-content: center;
}

.home-slider-single::before {
	content: '';
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 1;
	height: 270px;
	width: 100%;
	z-index: 1;
	opacity: 1;
	background-image: linear-gradient(to top, #000, rgba(4, 5, 4, 0));
}

.home-slider-single::after {
	content: '';
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	height: 430px;
	width: 100%;
	z-index: 0;
	opacity: 0.55;
	background-image: linear-gradient(to bottom, #040504, rgba(4, 5, 4, 0));
}

.home-slider-single-background::after {
	content: '';
	width: 100%;
	/* height: 200px; */
	position: absolute;
	top: 0;
	left: 0;
	/* opacity: 1; */
	height: 100%;
	/* width: 100%; */
	z-index: 0;
	/* opacity: 1; */
	opacity: 0.9;
	background-image: linear-gradient(to bottom, #002c57, rgba(1, 43, 87, 0));
}

.slider-search-right {
	padding: 0;
	text-align: right;
}

.home-slider-single-tagline {
	width: 100%;
	max-width: 1280px;
	background: transparent;
	text-align: center;
	padding: 100px 0 40px 0;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	height: 100%;
	align-items: center;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}

.home-btn {
	position: relative;
	right: 0;
	bottom: 00px;
	width: 100%;
	display: inline-block;
	z-index: 10;
	margin-top: 10px;
}
.button.slide-btn {
	padding: 18px 40px !important;
}

@media screen and (min-width: 640px) {
	.home-hero {
		height: 500px;
	}
}

@media screen and (min-width: 1025px) {
	.home-slider {
		display: block;
	}

	.home-hero,
	.home-slider,
	.home-slider-single {
		height: 100vh;
		width: 100%;
		min-height: 800px;
		max-height: 800px;
	}

	.home-hero-form-container {
		width: 100%;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}

	.home-hero-form-container,
	.home-hero-form-inner,
	.home-hero-form-container .row,
	.home-hero-form-container .columns {
		height: 100%;
	}

	.home-hero-form-inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.home-hero-form .contact-form-heading {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: #e9f5f7;
	}
}

.home-hero-title-word {
	display: inline-block;
}

p.home-hero-title-word {
	display: block;
}

.home-hero-title {
	/* max-width: 600px; */
	text-align: center;
}

.home-hero-title-word-container {
	display: inline-block;
	overflow: hidden;
	width: 100%;
}

.first-tagline {
	text-transform: capitalize;
	font-size: 70px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 0.8;
	letter-spacing: 0px;
	text-align: center;
	color: #fff;
	margin-bottom: 0;
	height: 72px;
}

.second-tagline {
	font-size: 20px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
	font-family: var(--body-font-family);
	margin-top: 10px;
}

.home-slider-tagline-inner {
	position: relative;
	z-index: 9;
}
@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

	.home-hero-form .contact-form-heading {
		display: none;
	}
}

.module-results-a-inner.slider-container {
	width: 100%;
}

.home-hero-accolades {
	width: 100%;
}
#slider-results-a .slick-dots {
	display: none !important;
}

.module-results-a-buttons.slick-arrow-container button {
	font-size: 42px;
	font-weight: normal;
	color: #67778c;
}

.module-results-a-buttons.slick-arrow-container button i {
	font-weight: 200;
}

/*-----------home-hero-accolades-----------------*/

.home-btn.slide-bottom .slick-dots {
	display: none !important;
}
.home-hero-accolades {
	position: absolute;
	bottom: 60px;
	display: flex;
	padding: 0px 00px;
	background: transparent;
	opacity: 1;
	color: white;
	/* display: none; */
	max-width: 1280px;
	width: 100%;
}

.home-hero-accolades-single {
	text-transform: capitalize;
	border-left: 0px solid rgb(255, 255, 255, 0.25);
	padding-right: 10px;
	font-size: 11px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	text-align: center;
	display: flex !important;
	height: 100%;
	padding-left: 10px;
	flex-direction: column;
	justify-content: center;
}

#slider-results-a-home {
	max-width: 90%;
	padding-left: 20px;
}

.home-hero-accolades .module-results-a-buttons.slick-arrow-container button {
	font-size: 42px;
	font-weight: normal;
	color: #67778c;
}

.home-hero-accolades .module-results-a-buttons.slick-arrow-container button:hover,
.home-hero-accolades .module-results-a-buttons.slick-arrow-container button:focus {
	background-color: transparent;
	color: var(--primary-color);
}

.home-hero-accolades .module-results-a-buttons.slick-arrow-container {
	justify-content: space-between;
	bottom: 7px;
}

.home-hero-accolades .slick-slide.slick-current.slick-active .home-hero-accolades-single {
	border: none;
}

#slider-results-a-blog .slick-slide.slick-current.slick-active .home-hero-accolades-single {
	border: none;
}

.home-hero-accolades-single:not(:last-child) {
	padding-right: 30px;
	margin-right: 30px;
	position: relative;
	border-right: 1px solid rgb(255, 255, 255, 0.25);
}

.home-hero-accolades-number {
	padding-right: 0;
	font-size: 40px;
	font-weight: 800;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.8px;
	text-align: center;
	line-height: 1;
}

.home-hero-accolades-related-pa.home-hero-accolades-text {
	line-height: 1.3 !important;
	display: inline-block;
	min-height: 32px;
}

@media screen and (min-width: 1025px) {
	.home-hero-accolades {
		display: flex;
	}
}

/*-----------home-hero-accolades-----------------*/

@media screen and (min-width: 280px) and (max-width: 767px) {
	.module-header-a-logo img {
		padding: 0;
		max-width: 487px;
		padding: 0;
		margin-top: 25px;
	}

	.home-slider,
	.home-slider-single {
		width: 100%;
	}
	.home-slider-single-tagline {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 0;
		align-items: center;
	}

	.header-logo img {
		max-width: 285px;
		width: 100%;
		padding-top: 10px;
	}

	.home-slider {
		height: 540px;
	}

	.home-hero {
		margin-top: 0;
		height: 540px;
		background-color: transparent;
		padding-bottom: 0 !important;
	}

	.video-bg {
		height: 320px !important;
		overflow: hidden;
		position: relative;
	}

	.overlay {
		background-size: 100% 100%;
		z-index: 1;
		background-image: url(../images/video-bg-mobile.png);
		background-position: center;
		background-repeat: no-repeat;
		/* padding: 46px !important; */
	}
	.overlay::after {
		opacity: 0;
	}
	.home-slider-tagline-inner {
		padding-bottom: 0;
		height: 100%;
	}

	.home-hero .slick-dots {
		z-index: 1;
		display: none !important;
	}

	.home-hero-accolades {
		position: relative;
		display: flex;
		padding: 0px 00px;
		background: transparent;
		opacity: 1;
		color: white;
		max-width: 775px;
		bottom: 0;
		left: inherit;
		width: 100%;
	}

	.home-btn {
		right: 0;
		bottom: 0;
		padding: 0px 10px;
		position: relative;
		margin-top: 15px;
	}
	.home-slider,
	.home-slider-single {
		height: 540px;
		position: relative;
	}
	.home-hero-accolades-number {
		font-size: 44px;
	}
	.module-results-a-inner.slider-container {
		max-width: 80%;
	}
	.home-hero-accolades-text {
		font-size: 14px;
	}
	.home-hero-accolades .module-results-a-buttons.slick-arrow-container {
		justify-content: space-between;
		bottom: 7px;
		width: 100%;
		margin: 0 auto;
		left: inherit;
	}

	.home-hero-accolades-text {
		font-size: 20px;
	}
	.home-hero-accolades-single {
		border-right: 0px solid rgb(255, 255, 255, 0.25);
	}
	.module-results-a-buttons.slick-arrow-container {
		display: flex;
	}
	.header-mobile-top {
		display: flex;
		background: #002650;
		justify-content: space-between;
		column-gap: 15px;
		min-height: 55px;
		align-items: center;
	}
	.header-mobile-top-right .mobile {
		font-size: 20px;
		letter-spacing: 0;
	}

	.header-mobile-top-left {
		width: 40%;
		display: flex;
		align-items: center;
		padding-left: 12px;
	}
	.header-mobile-top-right {
		width: 60%;
		display: flex;
	}

	.header-mobile-top-right .button.alt-01 {
		padding: 12px 5px;
	}
	.header-mobile-top-left .social-links a {
		font-size: 15px;
		width: auto;
		margin: 0 10px 0 5px;
	}

	.header-mobile-top-left #header-search-open {
		margin-bottom: 0;
		font-size: 15px;
		line-height: 36px;
		height: auto !important;
		margin-left: 32px;
		position: relative;
	}

	.header-mobile-top-left #header-search-open::after {
		content: '';
		position: absolute;
		left: -19px;
		background: rgb(255, 255, 255, 0.26);
		height: 19px;
		width: 1px;
		top: 9px;
	}

	.header-mobile-top-right .button.alt-01 i {
		font-size: 14px;
		margin-right: 5px;
	}
	.header-mobile-top-right {
		background: #0062af;
		padding-left: 13px;
	}
	.header-search button span {
		display: none;
	}
	.header-search button .fas.fa-search.small-margin-left {
		margin: 0;
	}

	.first-tagline {
		font-size: 35px;
		line-height: 1.18;
		margin-bottom: 15px;
		display: inline;
	}

	.second-tagline {
		font-size: 16px;
		/* padding: 0 15px; */
		max-width: 100%;
		margin-top: 20px;
	}

	.home-hero-title-word-container {
		display: inline;
		overflow: hidden;
		width: 100%;
	}

	.header-mobile-inner {
		padding: 5px 15px 0px 15px !important;
	}
}

@media screen and (min-width: 600px) and (max-width: 767px) {
	.home-slider,
	.home-slider-single {
		width: 100%;
		height: 500px;
	}

	.header-mobile-top {
		display: none;
	}
	.home-hero {
		height: 500px;
	}
	.header-mobile-buttons .button.alt-01.hide-for-small-only {
		display: block !important;
		width: 215px !important;
		max-width: 215px !important;
		background-color: var(--primary-color) !important;
		color: #fff !important;
		display: flex !important;
		align-content: center;
		font-size: 18px !important;
	}

	#slider-results-a-home {
		max-width: 95%;
		padding-left: 70px;
	}
	.home-slider-single-tagline {
		padding-bottom: 65px;
		align-items: center;
	}

	.home-hero-accolades-related-pa.home-hero-accolades-text {
		line-height: 1.3 !important;
		display: inline-block;
		min-height: 32px;
		font-size: 13px;
	}

	.header-mobile-inner {
		padding: 5px 15px 0px 15px !important;
	}
	.second-tagline {
		max-width: 767px;
		width: 100%;
	}
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
	.header-mobile-top {
		display: none;
	}
	.header-mobile-buttons .button.alt-01.hide-for-small-only {
		display: block !important;
		width: 215px !important;
		max-width: 215px !important;
		background-color: var(--primary-color) !important;
		color: #fff !important;
		display: flex !important;
		align-content: center;
		font-size: 18px !important;
	}

	.header-logo img {
		max-width: 320px;
	}

	.home-slider,
	.home-slider-single {
		width: 100%;
		height: 600px;
	}

	.header-mobile-top {
		display: none;
	}
	.home-hero {
		height: 600px;
	}
	.header-mobile-buttons .button.alt-01.hide-for-small-only {
		display: block !important;
		width: 215px !important;
		max-width: 215px !important;
		background-color: var(--primary-color) !important;
		color: #fff !important;
		display: flex !important;
		align-content: center;
		font-size: 18px !important;
	}
	.first-tagline {
		font-size: 60px;
		line-height: 1.18;
		margin-bottom: 15px;
	}
	.second-tagline {
		max-width: 550px;
	}

	#slider-results-a-home {
		max-width: 95%;
		padding-left: 70px;
	}
	.home-slider-single-tagline {
		padding-bottom: 65px;
		align-items: center;
	}

	.second-tagline {
		font-size: 30px;
	}

	#slider-results-a-home {
		max-width: 95%;
		padding-left: 40px;
	}

	.header-mobile-inner .header-logo {
		padding: 10px 0 0px 0;
	}

	.first-tagline {
		font-size: 40px;
		line-height: 1.18;
		margin-bottom: 15px;
		height: 40px;
	}
	.second-tagline {
		font-size: 18px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.first-tagline {
		font-size: 75px;
		line-height: 1.18;
		margin-bottom: 15px;
	}
	.module-header-a-logo img {
		max-width: 270px;
	}

	.module-header-a-right-bottom .main-navigation-menu > li > a {
		font-size: 13px !important;
	}
	.module-header-a-right-bottom .main-navigation-menu > li {
		margin-right: 15px;
	}
	.main-navigation-menu > li {
		padding: 5px 0 0px 0;
		margin-right: 10px;
	}

	.module-header-a-phone {
		font-size: 15px;
		padding: 5px 5px;
		min-width: 159px;
	}
	#header-search-open {
		font-size: 1.1rem;
		display: inline-block;
		line-height: 28px;
		width: auto;
		height: auto;
		padding: 0;
		text-align: center;
		margin: 0 0 5px 10px;
		background-color: transparent;
		border-radius: 0;
		font-size: 13px;
	}

	.header-top-right .social-links a {
		font-size: 16px;
		width: 25px;
		line-height: 30px;
		height: 30px;
	}

	.main-navigation-menu > li > a {
		position: relative;
		display: block;
		height: 100%;
		text-transform: capitalize;
		padding: 11px 0;
		font-size: 13px;
		font-weight: 500;
		font-stretch: normal;
		font-style: normal;
		line-height: normal;
		letter-spacing: 0;
		text-align: left;
		color: var(--white);
	}
	.module-header-a-right-bottom .main-navigation-menu > li > a::after {
		content: '';
		font-weight: normal;
		position: absolute;
		right: -9px;
		width: 1px;
		height: 14px;
		background: #d5d5d5;
		top: 7px;
	}

	.first-tagline {
		font-size: 55px;
		line-height: 0.8;
		margin-bottom: 0;
		height: 58px;
	}

	.home-hero,
	.home-slider,
	.home-slider-single {
		min-height: 600px;
		max-height: 800px;
	}

	.main-navigation-menu > li.menu-item-1721 .sub-menu {
		width: 445px;
		left: -150%;
	}

	.main-navigation-menu > li.menu-item-1721 .sub-menu a {
		font-size: 13px !important;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1024px) {
}

@media screen and (min-width: 1279px) and (max-width: 1800px) {
	.overlay::after {
		width: 33%;
	}
}

@media screen and (min-width: 1920px) and (max-width: 12000px) {
	.module-header-a-logo img {
		padding: 0;
		max-width: 400px;
		padding: 0;
		margin-top: 25px;
		width: auto;
	}

	.header-desktop .module-header-a .row {
		max-width: 1400px;
	}

	/*.main-navigation-menu > li > a {
	font-size: 15px;
}*/

	.module-header-a-right {
		align-self: center;
	}

	.home-btn .row {
		max-width: 1422px;
	}

	.slide-bottom-main {
		max-width: 1480px;
		margin-left: 50px;
	}

	.home-hero,
	.home-slider,
	.home-slider-single {
		height: 100vh;
		width: 100%;
		min-height: 800px;
		max-height: 800px;
	}

	.header-top-right span {
		text-transform: uppercase;
		font-size: 15px;
	}
	.home-btn {
		bottom: 15px;
	}

	.module-header-a-right-bottom .main-navigation-menu > li > a::after {
		right: -12px;
		width: 1px;
		height: 16px;
		top: 11px;
	}

	#mega-menu li a,
	#desktop-navigation .sub-menu li a {
		font-size: 17px !important;
	}

	.main-navigation-menu .sub-menu {
		width: 310px;
	}
	.home-slider-tagline-inner {
		max-width: 1280px;
		margin: 0 auto;
		align-content: center;
	}

	#slider-results-a-home {
		max-width: 90%;
		padding-left: 75px;
	}

	.home-hero-accolades .module-results-a-buttons.slick-arrow-container {
		padding-left: 65px;
	}
}

@media screen and (min-width: 2560px) and (max-width: 12000px) {
}

@media screen and (min-width: 3840px) and (max-width: 12000px) {
	.home-hero,
	.home-slider,
	.home-slider-single {
		height: 100vh;
		width: 100%;
		min-height: 1080px;
		max-height: 1480px;
	}
}

@media screen and (min-width: 3840px) and (max-width: 12000px) {
}
