/**
 * ***************************************
 *
 * @format
 */

/* Theme Name: PaperStreet                 */
/* Theme URI: http://www.wordpressbase.com */
/* Author: PaperStreet                     */
/* Author URI: https://www.paperstreet.com */
/* Description: For PaperStreet            */
/* Text Domain: paperstreet                */
/* Version: 3.2505                         */
/*******************************************/

/*
GENERAL
MENUS
HEADER
FOOTER
FEATURES
ANIMATIONS
MODULES
PRINT
MISC
*/

/*******************************************************************************************
GENERAL - Layout and general features
*******************************************************************************************/

/* GENERAL > Utility Classes */

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

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

.hr-after {
	position: relative;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

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

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

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

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

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

.overflow-hidden {
	overflow: hidden;
}

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

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

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

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

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

.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-repeat: no-repeat;
	background-size: cover;
}

.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: var(--color-white);
}

/* GENERAL > HTML and Structure */
.content {
	margin-bottom: 60px;
}

.content .wp-block-image {
	margin-bottom: 30px;
}

img.alignright,
.content .wp-block-image .alignright,
.content .wp-block-image.alignright {
	float: right;
	margin: 0 0 var(--gutter-size) var(--gutter-size);
}

img.alignleft,
.content .wp-block-image .alignleft,
.content .wp-block-image.alignleft {
	float: left;
	margin: 0 var(--gutter-size) var(--gutter-size) 0;
}

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

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

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

.content-print {
	display: flex;
	float: right;
	width: 38px;
	height: 38px;
	align-items: center;
	margin: 0 0 20px 20px;
	justify-content: center;
	background-color: var(--color-gray-light);
}

.content-more {
	display: none;
}

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

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

ul.has-before li,
.content li {
	padding: 0;
	position: relative;
}

ul.has-before li + li,
.content li + li,
.qualifications li + li,
.community li + li,
.recollection li + li {
	margin-top: 6px;
}

.content ol li {
	padding-left: 4px;
}

ul.has-before li::before {
	position: absolute;
	left: 0;
	content: "\f105";
	color: var(--color-secondary);
}

ul.has-before li:before {
	font-family: var(--font-family-icon);
}

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

.content .search-results-container {
	margin-bottom: 80px;
}

hr,
.hr-after::after {
	background: var(--color-gray-alt);
	width: 100%;
	height: 1px;
	display: block;
	border: none;
	margin: 40px 0;
	content: "";
}

figure {
	margin: 0;
}

.italic {
	font-style: italic;
}

.non-italic,
address {
	font-style: normal;
}

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

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

.sidebar section:not(:last-child) {
	margin-bottom: 50px;
}

.sidebar-block ul li {
	padding: 0 0 5px 0;
	position: relative;
	border-bottom: 1px solid var(--color-gray-alt);
}

.sidebar-block ul li:not(:last-child) {
	margin-bottom: 5px;
}

.sidebar-block ul li,
.sidebar-block ul li a {
	display: block;
}

.sidebar-block button.no-button,
.sidebar-block ul li a {
	font-weight: 600;
	text-decoration: none;
	color: var(--color-primary);
}

.sidebar-block button.no-button:hover,
.sidebar-block button.no-button:focus,
.sidebar-block ul li a:hover,
.sidebar-block ul li a:focus {
	text-decoration: none;
	color: var(--color-secondary);
}

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

.sidebar-block ul:last-of-type {
	margin: 0;
}

@media screen and (min-width: 768px) {
	.content {
		margin-bottom: 0;
	}
}

/* GENERAL > Form and Inputs */
input,
select,
textarea {
	color: var(--color-white);
	background: none;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 0.938rem;
	line-height: 1.2;
	font-family: var(--font-family-body);
	box-shadow: none;
	margin: 0;
	width: 100%;
	display: block;
	border-radius: 0;
	padding: 24px 0;
}

#select-category {
	color: var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
}

select {
	border-bottom: none;
}

input.dark-input,
select.dark-input,
textarea.dark-input {
	color: var(--color-primary);
}

textarea {
	resize: none;
	height: 120px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--color-white);
}

input::placeholder,
textarea::placeholder {
	color: var(--color-white);
}

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

legend,
label {
	color: var(--color-white);
}

fieldset {
	padding: 0;
	border: none;
	margin: 0;
}

label {
	transition: all 200ms ease-out;
}

input ~ label,
textarea ~ label,
select ~ label {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	line-height: 1.2;
	pointer-events: none;
	padding: 24px 0;
}

input ~ label i,
textarea ~ label i,
select ~ label i {
	font-size: 0.813rem;
	margin-right: 10px;
}

input:focus:not([type="checkbox"]) ~ label,
textarea:focus ~ label,
input.active ~ label,
textarea.active ~ label,
select.active ~ label {
	padding: 8px 0;
	font-size: 0.7rem;
}

.gfield,
.form-input-group {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 0;
	text-align: left;
}

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

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

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

.select-wrapper::after {
	content: "\f0d7";
	font-weight: 900;
	font-family: var(--font-family-icon);
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 50px;
	line-height: 50px;
	color: var(--color-primary);
	pointer-events: none;
	transition: all 200ms ease-out;
}

.select-wrapper.active::after {
	color: var(--color-primary);
}

.select-wrapper select {
	height: 50px;
	padding: 10px 50px 10px 18px;
}

.form-container {
	padding: 30px;
	background: var(--color-primary);
}

.form-container h2 {
	color: var(--color-white);
	text-align: center;
}

.background-input input:focus:not([type="checkbox"]) ~ label,
.background-input textarea:focus ~ label,
.background-input input.active ~ label,
.background-input textarea.active ~ label,
.background-input select.active ~ label {
	color: var(--color-primary);
}

.background-input input,
.background-input textarea,
.background-input select {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary);
	border: 2px solid var(--color-gray-alt);
	background-color: var(--color-white);
}

.background-input.select-wrapper::after,
.background-input .select-wrapper::after {
	color: var(--color-secondary);
}

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

.gform_submission_error,
.gfield_validation_message,
p.error-text {
	color: red;
}

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

/* GENERAL > Gravity Forms Customizations */
.gform_footer {
	padding-top: 20px;
}

.gform_footer .gform_button:hover,
.gform_footer .gform_button:focus {
	color: var(--color-primary);
	background-color: var(--color-white);
}

.gform_submission_error {
	font-size: 1rem;
}

.gform_validation_errors ol,
.gform_submission_error .gform_heading,
.ginput_counter,
span.gfield_required {
	display: none;
}

.gfield_contains_required label.gfield_label:after {
	content: " *";
	color: red;
	margin-left: 5px;
}

.gfield_validation_message,
p.error-text {
	color: red;
	font-weight: 700;
	margin: 0;
	font-size: 0.7rem;
	-webkit-animation: fadeIn 125ms both;
	animation: fadeIn 125ms both;
}

/* GENERAL > Swiper Customizations */
.swiper.swiper-initialized {
	visibility: visible;
}

.swiper-button-container {
	position: absolute;
	display: flex;
	justify-content: space-between;
	left: -30px;
	right: 0;
	font-size: 1.875rem;
	width: calc(100% + 60px);
	top: calc(50% - 15px);
}

.image-aligned-arrows .swiper-button-container {
	top: calc(50% - 110px);
}

.image-aligned-arrows .js-leaders-slider + .swiper-button-container {
	top: calc(50% - 50px);
}

.swiper-button-container.buttons-bottom {
	left: 0;
	top: 100%;
	width: 100%;
}

.swiper-button-container .swiper-button-next,
.swiper-button-container .swiper-button-prev {
	position: relative !important;
	height: auto !important;
	min-width: 26px !important;
	margin-top: 0 !important;
	border: none !important;
	padding: 0 !important;
}

.swiper-button-container .swiper-button-next:after,
.swiper-button-container .swiper-button-prev:after {
	font-family: "Font Awesome 6 Pro" !important;
	content: "\f105" !important;
	color: var(--color-secondary);
	font-weight: 300;
	font-size: 2rem;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

.swiper-button-container .swiper-button-prev:after {
	content: "\f104" !important;
}

.swiper-button-next:hover:after,
.swiper-button-next:focus:after,
.swiper-button-prev:hover:after,
.swiper-button-prev:focus:after {
	color: var(--color-primary) !important;
}

.bg-primary .swiper-button-next:after,
.bg-primary .swiper-button-prev:after {
	color: var(--color-secondary);
}

.bg-primary .swiper-button-next:hover:after,
.bg-primary .swiper-button-next:focus:after,
.bg-primary .swiper-button-prev:hover:after,
.bg-primary .swiper-button-prev:focus:after {
	color: var(--color-white) !important;
}

.swiper-outer {
	max-width: 85%;
	position: relative;
	margin: 0 auto;
}

.swiper-outer.full-width {
	max-width: none !important;
}

.swiper-autoplay-toggle {
	position: absolute;
	z-index: 1;
	bottom: 20px;
	right: 20px;
}

.swiper-pagination {
	display: flex;
	margin-top: 28px;
	position: static;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 768px) {
	.sidebar .swiper-outer {
		max-width: 100%;
	}
}

@media screen and (min-width: 1025px) {
	.swiper-outer {
		max-width: calc(100% - 200px);
	}

	.swiper-button-container {
		left: -75px;
		font-size: 2.5rem;
		top: calc(50% - 40px) !important;
		width: calc(100% + 150px);
	}

	.swiper-outer.full-width .swiper-button-container {
		left: 0;
		width: 100%;
	}

	.swiper-pagination {
		margin-top: 48px;
	}

	.testimonial .section-slider .swiper-button-container {
		display: none;
	}

	.testimonial .section-slider {
		max-width: 66%;
		padding-left: 30px;
	}
}

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

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

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

/*******************************************************************************************
MENUS - Non-critical menu styling
*******************************************************************************************/

/* MENUS > Mobile Menu */
#mobile-navigation {
	z-index: 100;
	position: fixed;
	top: 0;
	background-color: var(--color-white);
	overflow: auto;
}

#mobile-navigation.active {
	-webkit-animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
	animation: fadeInRight 400ms cubic-bezier(0.87, 0, 0.13, 1);
	display: block;
}

#mobile-navigation {
	width: 100%;
	height: 100vh;
}

.mobile-navigation-top-inner {
	height: var(--height-header);
	align-items: center;
	padding: 8px var(--gutter-size);
	display: none;
}

.mobile-navigation-top-inner img {
	max-width: 70%;
	height: auto;
}

#mobile-navigation.active .mobile-navigation-top-inner {
	display: flex !important;
}

#mobile-navigation a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-primary);
	padding: 15px calc(var(--gutter-size) * 2);
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: var(--color-alternate);
	background: var(--color-white);
}

#mobile-navigation ul {
	margin: 0;
}

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

.mobile-menu-accordion #mobile-navigation .sub-menu {
	padding-bottom: 10px;
}

.mobile-menu-accordion #mobile-navigation .sub-menu li {
	border-bottom: none;
}

.mobile-menu-accordion #mobile-navigation .sub-menu a {
	padding-top: 8px;
	padding-bottom: 8px;
	font-weight: normal;
	font-size: 1rem;
}

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

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

#mobile-navigation .sub-menu {
	margin: 0;
	background-color: var(--color-alternate);
	z-index: 1;
	overflow: auto;
	display: none;
	width: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

#mobile-navigation ul li.sub-menu-open > .sub-menu {
	display: block;
}

#mobile-navigation .menu-item-has-children > a::after {
	content: "\f0d7";
	font-family: var(--font-family-icon);
	font-weight: 700;
}

#mobile-navigation .sub-menu-open.menu-item-has-children > a::after {
	content: "\f0d8";
}

.mobile-navigation-close {
	margin-left: auto;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	color: var(--color-secondary);
}

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

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

	.mobile-navigation-top-inner {
		display: none;
	}
}

/* MENUS > Mobile Menu Paged */
.mobile-menu-paged #mobile-navigation .sub-menu {
	height: 100vh;
}

.mobile-menu-paged #mobile-navigation .menu-item-has-children > a::after {
	content: "\f105";
}

.mobile-menu-paged #mobile-navigation a {
	padding-left: var(--gutter-size);
}

.mobile-menu-paged #mobile-navigation ul li.sub-menu-open > .sub-menu {
	-webkit-animation: fadeInRight 300ms ease-out;
	animation: fadeInRight 300ms ease-out;
}

.mobile-menu-paged #mobile-navigation .sub-menu {
	position: fixed;
	top: 0;
}

/*******************************************************************************************
HEADER - Non-critical header styling
*******************************************************************************************/

/* HEADER > Header Search Bar */
.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: var(--color-primary);
	padding: 18px 0;
	width: 100%;
	z-index: 12;
	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 var(--gutter-size);
	background: var(--color-primary);
	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: var(--color-white);
}

.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;
	padding: 0 0 0 10px;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: var(--color-white);
	border-bottom: 1px solid var(--color-white);
	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 {
	display: flex;
	line-height: 20px;
	width: 20px;
	height: 20px;
	padding: 0;
	font-size: 1.25rem;
	text-align: center;
	margin: 0 0 0 20px;
	border-radius: 0;
	color: var(--color-secondary);
	background-color: transparent;
}

#header-search-open:hover,
#header-search-open:focus {
	color: var(--color-primary);
}

@media screen and (min-width: 1100px) {
	#header-search-open {
		margin-left: 30px;
	}
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
.footer {
	padding: 35px 0;
	text-align: center;
	font-size: 0.813rem;
	color: var(--color-white);
	background: var(--color-primary);
	border-top: 1px solid var(--color-white);
}

.footer a {
	color: inherit;
}

.footer a:hover,
.footer a:focus {
	color: var(--color-secondary);
}

.footer-logo {
	width: 205px;
	display: block;
	margin: 0 auto 10px;
}

.footer-logo img {
	width: 100%;
	display: block;
}

.footer-copyright {
	margin-bottom: 10px;
}

.footer .social-links {
	justify-content: center;
}

.footer .social-links a {
	border-color: var(--color-white);
}

.footer .social-links a:hover {
	color: var(--color-white);
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	.footer {
		font-size: 0.75rem;
	}

	.footer-inner {
		display: flex;
	}

	.footer-left {
		flex: 1;
	}

	.footer-logo {
		margin: 0 0 10px;
	}

	.footer-copyright {
		display: flex;
		margin-bottom: 0;
	}

	.footer-copyright li:after {
		content: "|";
		margin: 0 6px;
	}

	.footer-copyright li:last-child:after {
		display: none;
	}

	.footer .social-links {
		margin-bottom: 0;
	}
}

/*******************************************************************************************
FEATURES - Pre-built small sections
*******************************************************************************************/

/* FEATURES > Content Tables */
table.has-fixed-layout {
	width: 100%;
	table-layout: fixed;
}

.content table {
	border-collapse: collapse;
}

table th,
table td {
	border: 1px solid var(--color-light-gray);
	padding: 5px;
	text-align: left;
}

/* FEATURES > Breadcrumbs */
.breadcrumbs-container {
	display: none;
	flex-wrap: wrap;
	margin-bottom: 35px;
}

.breadcrumbs-single {
	position: relative;
	text-decoration: none;
	padding-right: 20px;
	margin-right: 20px;
}

.breadcrumbs-single:focus,
.breadcrumbs-single:hover {
	text-decoration: underline;
}

.breadcrumbs-single::after {
	position: absolute;
	right: -4px;
	content: "\f105";
	font-family: var(--font-family-icon);
}

.breadcrumbs-single:last-of-type {
	padding-right: 0;
	margin-right: 0;
}

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

@media screen and (min-width: 1025px) {
	.breadcrumbs-container {
		display: flex;
	}
}

/* FEATURES > Accordion */
.accordion-item {
	border-bottom: 1px solid var(--color-gray);
}

.accordion-item > h3 {
	margin-bottom: 0;
}

.accordion-item-title {
	margin: 0;
	padding: 20px;
	position: relative;
	display: flex;
	grid-gap: 15px;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
	line-height: 30px;
	text-align: center;
	color: var(--color-primary);
	transition: background 200ms ease-out;
	cursor: pointer;
}

.accordion-item-title:after {
	width: 30px;
	height: 30px;
	font-family: var(--font-family-icon);
	font-size: 1.2rem;
	line-height: 30px;
	text-align: center;
	color: var(--color-secondary);
	content: "\f107";
}

.accordion-item-title span {
	flex: 1;
	text-align: left;
}

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

.accordion-item-title:hover,
.accordion-item-title:focus {
	color: var(--color-primary);
	background: var(--color-light-gray);
}

.accordion-item-title:focus:not(:focus-visible) {
	outline: none;
}

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

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

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

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

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

/* FEATURES > Quotes */
blockquote,
.quote-single {
	margin: 0 0 40px;
	padding-top: 20px;
	padding-left: 80px;
	position: relative;
	font-style: italic;
	border-left: 5px solid var(--color-primary);
}

blockquote p,
.quote-single p {
	margin: 0;
}

blockquote:before,
.quote-single:before {
	position: absolute;
	top: 1%;
	left: 3%;
	opacity: 1;
	font-family: var(--font-family-icon);
	font-size: 2.7rem;
	font-style: normal;
	color: var(--color-primary);
	content: "\f10d";
}

/* FEATURES > CTA Block */
.cta-single {
	padding: 40px;
	background: var(--color-light-gray);
	border: 1px solid var(--color-primary);
	text-align: center;
	margin-bottom: 40px;
}

.cta-single span {
	display: block;
	text-transform: uppercase;
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: 12px;
}

.cta-single a {
	font-size: 2rem;
	line-height: 1.2;
}

/* FEATURES > Slideout at Page Bottom */
.bottom-slideout {
	display: block !important;
	position: fixed;
	background: var(--color-white);
	box-shadow: 0 0 20px var(--color-black);
	padding: 30px;
	right: 0;
	bottom: 0;
	max-width: 400px;
	opacity: 0;
	z-index: 1;
	transform: translateX(100%);
	transition: all 200ms ease-out;
}

.bottom-slideout.active {
	transform: translateX(0);
	opacity: 1;
}

/* FEATURES > Reviews */
.reviews-container {
	background: var(--color-light-gray);
	padding: 50px 0;
}

.reviews-star-icon {
	color: var(--color-alternate);
	font-size: 1.1rem;
}

.reviews-single-source::before {
	content: "\2014";
	margin-right: 2px;
}

.reviews-star-icon i {
	margin: 0 2px;
}

.reviews-single {
	float: none;
	text-align: center;
}

.reviews-single em {
	font-style: italic;
	margin: 10px 0;
	display: block;
}

/* FEATURES > Video Gallery */
.videos-single {
	position: relative;
	width: 100%;
	min-height: 225px;
	margin-bottom: 120px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	-ms-background-position-x: 100%;
	background-position-x: 100%;
	text-decoration: none;
}

.videos-single:hover::before,
.videos-single:focus::before {
	opacity: 0.6;
}

.videos-single::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--color-black);
	opacity: 0;
	transition: opacity 200ms ease-out;
}

.videos-single h2 {
	position: absolute;
	top: 100%;
	width: 100%;
	min-height: 75px;
	max-height: 75px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--color-secondary);
	color: var(--color-white);
	font-size: 1.1rem;
	padding: 10px 20px;
	margin: 0;
	transition: background-color 200ms ease-out;
}

.videos-single:hover h2,
.videos-single:focus h2 {
	background-color: var(--color-primary);
}

@media screen and (min-width: 640px) {
	.videos-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 100px;
		grid-column-gap: 20px;
	}

	.videos-single {
		margin: 0;
	}
}

@media screen and (min-width: 1025px) {
	.videos-container {
		grid-template-columns: repeat(3, 1fr);
		margin-bottom: 50px;
	}
}

/* FEATURES > YouTube Player */
.youtube-player {
	position: relative;
	padding-bottom: 56.23%;
	/* Use 75% for 4:3 videos */
	height: 0;
	max-width: 100%;
	background: var(--color-black);
	margin: 20px 0 50px;
}

.youtube-player-inner {
	width: 100%;
	height: 100%;
	content: "";
	overflow: hidden;
	position: absolute;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.youtube-player-inner::after,
.videos-single::after {
	content: "\f144";
	font-family: var(--font-family-icon);
	font-size: 3.5rem;
	opacity: 0.8;
	display: inline-block;
	margin: 0 auto;
	transition: all 150ms ease-out;
	color: var(--color-alternate);
	pointer-events: none;
	z-index: 1;
}

.youtube-player-inner:hover::after,
.youtube-player-inner:focus::after,
.videos-single:hover::after,
.videos-single:focus::after {
	transform: scale(1.02);
	color: var(--color-white);
	opacity: 1;
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

.youtube-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	transition: all 200ms ease-out;
}

/* FEATURES > Social Link Lists */
.social-links {
	display: flex;
	align-items: center;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	line-height: 40px;
	text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid transparent;
}

.social-links a i {
	line-height: 0;
}

.social-links a + a {
	margin-left: 10px;
}

.social-links a img {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}

.social-links a:hover,
.social-links a:focus {
	color: var(--color-alternate);
}

/* Featured News Mobile/Desktop Toggle */
.featured-news-desktop {
	display: none;
}

.featured-news-mobile {
	display: block;
}

.featured-news-mobile .card-news {
	margin-bottom: 3rem;
}

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

	.featured-news-mobile {
		display: none;
	}
}

/* News Card */
.card-news {
	width: 100%;
	display: block;
	position: relative;
	padding-bottom: 3rem;
	text-decoration: none;
	color: var(--color-primary);
}

.card-news:after,
.card-news:before {
	bottom: 0;
	content: "";
	position: absolute;
}

.card-news:after {
	left: 0;
	width: calc(100% - 3.5rem);
	height: 6px;
	background: var(--color-secondary);
}

.card-news:before {
	content: "\f061";
	font-weight: 700;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-family: var(--font-family-icon), sans-serif;
	color: var(--color-primary);
	border-radius: 50%;
	transition: all 0.2s ease-out;
	background: linear-gradient(to right, rgba(37, 169, 216, 1) 0%, rgba(11, 240, 225, 1) 100%);
}

.card-news-image {
	width: 100%;
	aspect-ratio: 768 / 350;
	position: relative;
	overflow: hidden;
	margin-bottom: 1.6rem;
}

.card-news-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--card-bg-image);
	background-size: cover;
	background-position: center;
	filter: blur(6px);
	transform: scale(1.1);
	z-index: 0;
	opacity: 0.1;
}

.card-news-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	position: relative;
	z-index: 1;
	transition: all 0.2s ease-out;
}

.card-news:hover .card-news-title,
.card-news:focus .card-news-title {
	text-decoration: underline;
}

.card-news-date {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.625rem;
	margin-bottom: 0.5rem;
}

.card-news-title {
	font-weight: 600;
	line-height: 1.35;
	font-size: 1.125rem;
}

@media screen and (min-width: 1025px) {
	.card-news-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
		min-height: 50px;
	}
}

.card-news:hover:before,
.card-news:focus:before {
	text-indent: 5px;
}

.card-news:hover .card-news-image img {
	transform: scale(1.02);
}

@media screen and (min-width: 1025px) {
	.card-news {
		padding-bottom: 5rem;
	}
}

/* Attorney Boxes */
.attorney-single-box {
	margin-bottom: 30px;
	padding: 0;
	position: relative;
	text-decoration: none;
	color: var(--color-primary);
}

.team-section-subtitle p {
	margin-bottom: 0;
}

.team-section-subtitle p:not(:last-child) {
	margin-bottom: 10px;
}

.attorney-result-image-container {
	display: flex;
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
	align-items: flex-end;
	justify-content: center;
	background-image: url("images/_attorney-bg.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.attorney-result-image-container img {
	width: 76%;
	display: block;
	/* padding-top: 20px; */
	height: auto;
	transition: all 200ms ease-out;
}

.attorney-result-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 100%;
	height: 100%;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-white);
	background: rgba(22, 41, 67, 0.7);
	transition: all 200ms ease-out;
}

.attorney-single-box:hover .attorney-result-image-container img,
.attorney-single-box:focus .attorney-result-image-container img {
	/* transform: scale(1.01); */
}

.attorney-single-box:hover .attorney-result-overlay,
.attorney-single-box:focus .attorney-result-overlay {
	opacity: 1;
}

.attorney-single-box .attorney-single-box-info {
	text-align: center;
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	margin: 0;
	color: inherit;
}

.attorney-single-box h2 {
	font-weight: bold;
	margin-bottom: 2px;
	font-size: 1.188rem;
}

.attorney-search-outer {
	padding-top: 20px;
	padding-bottom: 20px;
}

.attorney-single-box-info p {
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.attorney-single-box {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1025px) {
	.attorney-results {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* USPS */
.usps {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	padding-top: 3rem;
	padding-bottom: 3rem;
	flex-wrap: wrap;
	align-items: flex-end;
	align-content: flex-end;
	color: var(--color-white);
}

.usps h2 {
	font-size: 2.25rem;
	color: var(--color-white);
}

.usps-inner {
	width: 100%;
	position: relative;
}

.usps-title {
	width: 100%;
}

.usps-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.usps-image:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(22, 41, 67, 0.5) 35%, rgba(22, 41, 67, 1) 100%);
}

.usps-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.usps-content {
	margin-bottom: 45px;
}

.usps-col {
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	width: 100%;
	animation-delay: 200ms;
}

.usps-col p {
	margin-bottom: 0;
}

.usps-col h3 {
	color: var(--color-white);
	margin-bottom: 0.7rem;
}

.usps-col:nth-child(2) {
	border-top: 0;
	border-left: 0;
	padding-left: 0;
	animation-delay: 400ms;
}

.usps-col:nth-child(3) {
	animation-delay: 600ms;
}

.usps-col:nth-child(4) {
	animation-delay: 800ms;
}

.usps.is-alt {
	display: block;
	color: var(--color-primary);
	min-height: 10px;
	padding-top: 4rem;
	padding-bottom: 4rem;
	margin-bottom: 0;
	background: linear-gradient(45deg, rgba(0, 156, 203, 0.25) 0%, rgba(255, 255, 255, 0.25) 70%);
}

.usps.is-alt h2,
.usps.is-alt h3 {
	color: var(--color-primary);
}

.usps.is-alt .usps-col {
	border-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.usps {
		min-height: 560px;
	}

	.usps h2 {
		font-size: 2.5rem;
		margin: 0;
	}

	.usps-row {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.usps-col {
		width: 33.333%;
		padding-right: 1.5rem;
		padding-left: 1.5rem;
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.5);
	}

	.usps-image:after {
		opacity: 1;
		background: linear-gradient(to bottom, rgba(22, 41, 67, 0) 35%, rgba(22, 41, 67, 1) 100%);
	}
}

@media screen and (min-width: 1025px) {
	.usps-title {
		width: 20%;
	}

	.usps-content {
		margin-bottom: 65px;
	}

	.usps-col {
		width: 30%;
		padding-left: 3rem;
	}

	.usps-col:nth-child(4) {
		width: 23%;
	}

	.usps-col:nth-child(2) {
		padding-left: 0;
		border-left: 0;
		width: 20%;
	}
}

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animate {
	opacity: 0;
}

.animated {
	opacity: 1;
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

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

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

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

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

.animated.fadeInUpSlight {
	animation-name: fadeInUpSlight;
}

.animated.fadeInUpSubtle {
	animation-name: fadeInUpSubtle;
}

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

.animated.fadeInRightSlight {
	animation-name: fadeInRightSlight;
}

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

.animated.fadeInDownSlight {
	animation-name: fadeInDownSlight;
}

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

.animated.fadeInLeftSlight {
	animation-name: fadeInLeftSlight;
}

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

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

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

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

.image-reveal {
	position: relative;
	overflow: hidden;
}

.image-reveal img {
	display: block;
	width: 100%;
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.animated img {
	clip-path: inset(0 0 0 0);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes fadeInUpSlight {
	from {
		opacity: 0;
		transform: translate3d(0, 10%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUpSubtle {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 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);
	}
}

@keyframes fadeInRightSlight {
	from {
		opacity: 0;
		transform: translate3d(10%, 0, 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);
	}
}

@keyframes fadeInDownSlight {
	from {
		opacity: 0;
		transform: translate3d(0, -10%, 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);
	}
}

@keyframes fadeInLeftSlight {
	from {
		opacity: 0;
		transform: translate3d(-10%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

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

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

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

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

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

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

/*******************************************************************************************
MODULES - General styling for repeatable blocks
*******************************************************************************************/
.module {
	padding: 80px 0;
}

main .column .module .column {
	padding-left: 0;
	padding-right: 0;
}

.module-dark {
	background: var(--color-primary);
}

h2.module-title {
	margin-bottom: 60px;
}

.modules-showcase .module-title {
	display: block;
}

.box-icon {
	margin: 0;
}

.box-icon:before {
	margin: 0 auto;
	display: block;
	width: 50px;
	font-family: var(--font-family-icon);
	font-size: 2rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	color: var(--color-primary);
	content: "\f073";
}

.content-selector {
	cursor: pointer;
	transition: background 200ms ease-out;
}

.content-selector:hover,
.content-selector:focus {
	background: var(--color-gray);
}

.modules-skip {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 10px;
}

.modules-skip button {
	margin: 0 5px 5px 0;
	padding: 10px;
}

/*******************************************************************************************
PRINT - Specific styles for when pages are printed
*******************************************************************************************/
@media print {
	.header {
		top: 0;
		border: none;
		height: auto;
		position: static;
	}

	.header-mobile-buttons {
		display: none;
	}
}

/*******************************************************************************************
MISC - Miscellaneous and new code
*******************************************************************************************/

#theme-switcha {
	border: 1px solid var(--color-secondary);
	margin-bottom: 30px;
	color: var(--color-primary);
}

@media screen and (min-width: 1025px) {
	.make-sticky {
		position: sticky;
		top: var(--header-height);
		z-index: 1;
	}
}

.section.bg-primary .button.no-button:hover,
.section.bg-primary .button.no-button:focus {
	color: var(--color-white);
}
