/*******************************************/
/* 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;
}

.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: -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;
}

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

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

.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: white;
}

/* GENERAL > HTML and Structure */
strong {
	font-weight: 700;
}

.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-child {
	margin: 0;
}

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

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

ul.has-before li,
.content li {
	font-size: 1rem;
	color: var(--color-body-text);
	padding: 0 0 0 20px;
	position: relative;
	font-weight: 300;
}

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

.content ul li::before,
ul.has-before li::before {
	position: absolute;
	left: 0;
	content: "";
	background-color: var(--color-primary);
	width: 5px;
	height: 5px;
	top: 9px;
}

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

hr,
.hr-after::after,
.content-contact-button-border {
	display: block;
	border: none;
	margin: 50px 0;
	content: "";
	height: 2px;
	width: 100%;
	background-color: #d5d5d5;
	width: 100%;
}

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;
}

section.sidebar-block.add-color {
	background: var(--color-gray);
	padding: 30px;
}

section.sidebar-block.add-color-dark {
	background: var(--color-body-text);
}

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

.sidebar section ul li {
	padding: 6px 0 6px 18px;
	position: relative;
	border-bottom: 1px solid #efefef;
}

.sidebar section ul li::before {
	position: absolute;
	background-color: var(--color-primary);
	content: "";
	width: 5px;
	height: 5px;
	top: 17px;
	left: 0;
}

.sidebar section ul li {
}

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

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

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

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

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

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

.sidebar-block > h2 {
	font-size: var(--font-size-h3);
}

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

select {
	border-bottom: none;
}

input,
select,
textarea,
label {
	height: 45px;
	line-height: 45px;
}

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

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

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

input::placeholder,
textarea::placeholder {
	color: white;
}

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

legend,
label {
	color: white;
}

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

label {
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 10px;
	pointer-events: none;
	transition: all 200ms ease-out;
}

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

.form-input-group label i {
	color: var(--color-secondary);
}

.gfield,
.form-input-group {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 25px;
	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: "Font Awesome 6 Pro";
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 45px;
	line-height: 45px;
	color: var(--color-white);
	pointer-events: none;
	transition: all 200ms ease-out;
}

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

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

.contact-form-heading.h4-style {
	color: white;
	text-align: center;
	font-size: 1.3rem;
}

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

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

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

/* GENERAL > Gravity Forms Customizations */
.gform_fields input:focus:not([type="checkbox"]) ~ label,
.gform_fields textarea:focus ~ label,
.gform_fields input.active ~ label,
.gform_fields input.active ~ label,
.gform_fields textarea.active ~ label,
.gform_fields select.active ~ label {
	top: -30px;
}

.gform_wrapper label {
	line-height: 1;
	display: flex;
	align-items: center;
}

.gform_footer .gform_button {
	padding: 0;
	font-weight: 800;
	letter-spacing: 2px;
	background-color: var(--color-primary);
	color: #092852;
}

.gform_footer .gform_button:focus,
.gform_footer .gform_button:hover {
	background-color: #fff;
}

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

.form-container-dark .gform_footer .gform_button {
	color: white;
}

.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;
}

.gform_submission_error,
h2.gform_submission_error,
.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;
	width: calc(100% + 60px);
	top: calc(50% - 22px);
}

.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: 44px !important;
	margin-top: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: "Font Awesome 6 Pro" !important;
	font-weight: 300;
	content: "\f105" !important;
	color: var(--color-primary);
	-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-next:after,
.swiper-button-container .swiper-button-prev:after,
.swiper-larger-navigation-buttons .swiper-button-next:after,
.swiper-larger-navigation-buttons .swiper-button-prev:after {
	font-size: 3.5rem !important;
}

.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-secondary) !important;
}

.swiper-pagination-light .swiper-pagination-bullet {
	background-color: var(--color-white);
}

.swiper-pagination-light .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}

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

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

.swiper-outer.swiper-arrows-large-only {
	max-width: 100%;
}

.swiper-outer.swiper-arrows-large-only .swiper-button-container {
	display: none;
}

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

@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-outer.swiper-arrows-large-only {
		max-width: calc(100% - 200px);
	}

	.swiper-outer.swiper-arrows-large-only .swiper-button-container {
		display: flex;
	}

	.swiper-button-container {
		left: -100px;
		width: calc(100% + 200px);
	}

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

/* GENERAL > Skip To Content */
#skiptocontent {
	z-index: 10;
	position: fixed;
	padding: 8px;
	display: block !important;
	transform: translateY(-40px);
	opacity: 0;
	background-color: var(--color-secondary);
	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-image: url("images/background_blue_mobile.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: auto;
}

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

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

/* Cloned header top buttons inside mobile navigation */
.mobile-nav-header-top {
	position: sticky;
	top: 0;
	z-index: 101;
	width: 100%;
	margin-bottom: 8px;
}

.mobile-navigation-top-inner {
	align-items: center;
	justify-content: flex-end;
	padding: 0 8px 8px;
	background: transparent;
	display: none;
	position: relative;
	z-index: 101;
}

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

.mobile-search-form input {
	padding-left: 8px;
	padding-right: 45px;
}

#mobile-navigation li a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	font-size: 1.2rem;
	color: white;
	padding: 8px 8px;
}

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

.mobile-navigation-search-container,
#mobile-navigation ul {
	padding: 0 calc(var(--gutter-size) * 1.5);
}

#mobile-navigation ul {
	margin: 0;
}

.mobile-navigation-search-container {
	position: relative;
	bottom: -40px;
}

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

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

.mobile-menu-accordion #mobile-navigation .sub-menu a {
	padding-left: calc(var(--gutter-size));
	font-size: 1.125rem;
}

.mobile-menu-accordion #mobile-navigation .sub-menu .sub-menu a {
	padding-left: 60px;
	color: #6bc4ff;
}

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

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

#mobile-navigation .sub-menu {
	margin: 0;
	background-color: transparent;
	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;
	padding: 0;
}

#mobile-navigation .menu-item-has-children > a::after {
	content: "\f0d7";
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
}

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

.mobile-navigation-close {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: none;
	border: 2px solid white;
	color: white;
	font-size: 1.4rem;
	transition: all 200ms ease-out;
	cursor: pointer;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	background: white !important;
	color: var(--color-primary);
}

/* Mobile Navigation Search Form */

.mobile-navigation-search-container .form-container {
	margin: 0;
}

.mobile-search-form button {
	background: none !important;
	position: absolute;
	right: 0px;
	color: var(--color-primary);
}

.mobile-search-form button:hover {
	color: white;
}

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

@media screen and (max-height: 450px) {
	.mobile-navigation-search-container {
		display: none;
	}
}

@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 li 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;
}

/*******************************************************************************************
FOOTER - Page bottom
*******************************************************************************************/
.footer {
	padding: 80px 0;
	text-align: center;
}

.footer-upper h2 {
	margin-bottom: 40px;
}

.footer-upper p {
	margin: 0;
}

.footer-upper-buttons,
.footer-upper-social {
	margin: 40px 0;
}

.footer-upper-social .social-links a {
	font-size: 1.6rem;
}

.footer-upper-social .social-links {
	margin: 0 auto;
}

.footer-lower span {
	position: relative;
	font-size: 0.7rem;
	text-transform: uppercase;
}

.footer-lower span::after {
	content: "|";
	margin: 0 8px;
}

.footer-lower span:last-of-type::after {
	display: none;
}

.footer-lower-disclaimer {
	line-height: 1;
	margin: 0 auto 40px;
}

/* FOOTER > Custom Three-Tier Footer */
.custom-footer {
	padding: 0;
	text-align: left;
	background-image: url("images/footer_bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.custom-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(20, 23, 47, 0.8);
	pointer-events: none;
}

.custom-footer > * {
	position: relative;
	z-index: 1;
}

/* Tier 1: CTA Section */
.footer-cta-section {
	background: transparent;
	padding: 60px 0 30px;
	text-align: center;
}

.footer-cta-inner {
	display: flex;
	flex-direction: column;
}

.footer-cta-inner h2 {
	color: white;
	font-size: 2.2rem;
	margin-bottom: 30px;
	font-family: var(--font-family-heading);
}

.footer-cta-description {
	color: white;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	order: 3;
}

.footer-cta-phone-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	order: 2;
}

.footer-cta-label,
.footer-cta-tagline {
	color: var(--color-primary);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 1px;
}

.footer-cta-phone {
	color: var(--color-primary);
	font-size: var(--font-size-32);
	font-weight: 700;
	text-decoration: none;
	border: 2px solid var(--color-primary);
	padding: 15px 30px;
	transition: all 200ms ease-out;
	display: inline-block;
}

.footer-cta-phone:hover,
.footer-cta-phone:focus {
	background: var(--color-primary);
	color: white;
	text-decoration: none;
}

/* Desktop-only phone link - smaller, with icon, no border/padding */
.footer-cta-phone-desktop {
	color: var(--color-primary);
	font-size: var(--font-size-32);
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 200ms ease-out;
}

.footer-cta-phone-desktop:hover,
.footer-cta-phone-desktop:focus {
	color: white;
	text-decoration: none;
}

.footer-cta-phone-desktop i {
	font-size: 70%;
	margin-top: 2px;
}

/* Tier 2: Form Section */
.footer-form-section {
	background: transparent;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(186, 186, 186, 0.2);
}

.footer-form-inner {
	display: flex;
	flex-direction: column;
}

.footer-form-cta-text {
	color: var(--color-primary);
}

.footer-form-left h3,
.footer-form-right h3 {
	color: white;
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-form-left {
	padding: 40px;
	border: 2px solid var(--color-secondary);
	position: relative;
	margin-bottom: 70px;
}

.footer-form-left::after {
	content: "";
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 40px;
	background-color: var(--color-secondary);
}

#footer-form label {
	padding-left: 0;
}

#footer-form .gform_fields input:focus:not([type="checkbox"]) ~ label,
#footer-form .gform_fields textarea:focus ~ label,
#footer-form .gform_fields input.active ~ label,
#footer-form .gform_fields input.active ~ label,
#footer-form .gform_fields textarea.active ~ label,
#footer-form .gform_fields select.active ~ label {
	opacity: 0.8;
}

#footer-form .gfield {
	margin-bottom: 18px;
}

#footer-form input,
#footer-form select,
#footer-form textarea {
	padding-left: 3px;
}

.footer-steps {
	color: white;
}

.footer-step {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	align-items: flex-start;
}

.footer-step:last-of-type {
	margin-bottom: 0;
}

.footer-step-number {
	background: none;
	color: var(--color-primary);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 2.8rem;
	font-family: var(--font-family-body);
	flex-shrink: 0;
	position: relative;
	bottom: 3px;
}

.footer-step-content p {
	margin: 0;
	color: white;
	line-height: 1.5;
}

.footer-step-content strong {
	color: var(--color-primary);
	font-style: italic;
}

/* Tier 3: Lower Footer */
.footer-lower-section {
	background: transparent;
	padding: 60px 0 60px;
}

.footer-lower-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-lower-row:last-child {
	margin-bottom: 0;
}

/* Logo Row */
.footer-logo-row {
	justify-content: flex-start;
	margin-bottom: 45px;
}

.footer-logo-link {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

.footer-logo-link:hover,
.footer-logo-link:focus {
	opacity: 0.82;
}

/* Contact Row */
.footer-contact-row {
	flex-direction: column;
}

.footer-contact-left,
.footer-contact-right {
	flex: none;
}

.footer-contact-left {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
}

.footer-contact-item i {
	color: var(--color-primary);
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.footer-contact-item a {
	color: white;
	text-decoration: none;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus {
	color: var(--color-secondary);
	text-decoration: underline;
}

.footer-contact-right address {
	color: white;
	font-style: normal;
	line-height: 1.4;
}

.footer-contact-right address p {
	margin: 0;
	color: white;
}

.footer-address-wrapper {
	flex: 1;
}

.footer-address-wrapper address {
	color: white;
	font-style: normal;
	line-height: 1.4;
}

.footer-address-wrapper address p {
	margin: 0;
	color: white;
}

.footer-contact-item a,
.footer-address-wrapper address p,
.footer-contact-item {
	font-size: 1.07rem;
	font-weight: 300;
}

.footer-contact-item a:focus,
.footer-contact-item a:hover {
	color: var(--color-primary);
}

@media screen and (min-width: 768px) {
	.footer-contact-row {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.footer-contact-right {
		flex: none;
		margin-left: auto;
	}
}

/* Bottom Row */
.footer-bottom-left,
.footer-bottom-right {
	flex: 1;
}

.footer-social-mobile {
	position: relative;
	padding: 20px 0;
	margin: 30px 0;
	overflow: hidden;
}

.footer-social-mobile::before,
.footer-social-mobile::after {
	content: "";
	position: absolute;
	left: calc(-1 * var(--gutter-size));
	width: 100vw;
	height: 1px;
	border-top: 1px solid rgba(186, 186, 186, 0.2);
}

.footer-social-mobile .social-links {
	justify-content: center;
	max-width: 100%;
	gap: 32px;
}

.footer-social-mobile .social-links a {
	font-size: 1.2rem;
}

.footer-social-mobile::before {
	top: 0;
}

.footer-social-mobile::after {
	bottom: 0;
}

.footer-bottom-left {
	text-align: center;
}

.footer-bottom-left span {
	color: white;
	font-size: 0.8rem;
	position: relative;
}

.footer-bottom-left span a,
.footer-bottom-left span {
	font-weight: 300;
}

.footer-bottom-left span::after {
	content: "|";
	margin: 0 8px;
	color: white;
}

.footer-bottom-left span:last-of-type::after {
	display: none;
}

.footer-bottom-left span a {
	color: white;
	text-decoration: none;
}

.footer-bottom-left span a:hover,
.footer-bottom-left span a:focus {
	color: var(--color-primary);
	text-decoration: underline;
}

.footer-bottom-right {
	display: flex;
	justify-content: flex-end;
}

.footer-form-right .h4-style {
	line-height: 1.4;
}

.footer-form-left .footer-bottom-right .social-links {
	justify-content: flex-end;
}

.footer-lower-section .social-links a {
	color: white;
	border-radius: 12px;
	border: 2px solid white;
}

.footer-lower-section .social-links a:hover,
.footer-lower-section .social-links a:focus {
	color: var(--color-primary);
	background: #fff;
}

.footer-form-left h2 {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.footer-cta-description {
		order: 2;
	}

	.footer-cta-phone-row {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		order: 3;
		justify-content: center;
	}

	.footer-form-cta {
		display: none;
	}

	.footer-form-inner {
		flex-direction: row;
		gap: 50px;
	}

	.footer-form-left,
	.footer-form-right {
		flex: 1;
		margin-bottom: 0;
	}

	.footer-form-left::after {
		top: 60px;
		left: 100%;
		bottom: auto;
		transform: none;
		width: 40px;
		height: 2px;
	}

	.footer-form-left h3,
	.footer-form-right h3 {
		text-align: left;
	}

	.footer-form-right {
		padding-top: 50px;
	}
}

@media screen and (min-width: 1025px) {
	.footer-upper-buttons {
		display: flex;
		justify-content: center;
		gap: 15px;
	}

	.footer-contact-item.footer-address {
		align-items: flex-start;
	}

	.footer-contact-item.footer-address i {
		position: relative;
		top: 4px;
	}

	.footer-form-left {
		max-width: 510px;
	}

	.footer-cta-inner > h2 {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.footer-cta-section {
		padding: 80px 0 50px;
	}

	.footer-cta-phone-row {
		margin-bottom: 0;
	}

	.footer-bottom-right {
		flex-grow: 0;
	}

	.footer-bottom-right .social-links {
		max-width: 250px;
	}

	.footer-lower-section .social-links a:not(:last-of-type) {
		margin-right: 10px;
	}

	.footer-lower-row {
		gap: 40px;
		align-items: center;
	}

	.footer-bottom-left {
		text-align: left;
	}

	.footer-form-section {
		border: none;
		padding-bottom: 30px;
	}

	.footer-contact-row,
	.footer-logo-row {
		border-bottom: 1px solid rgba(186, 186, 186, 0.2);
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-upper-buttons a {
		margin-bottom: 0;
	}

	.footer-lower-disclaimer {
		width: 60%;
	}

	.footer-cta-inner h2 {
		font-size: var(--font-size-banner-title);
	}

	.footer-cta-phone {
		font-size: 3rem;
		padding: 20px 40px;
	}

	.footer-contact-left {
		display: flex;
		flex-direction: row;
		gap: 30px;
		margin-bottom: 0;
		flex: 1;
	}

	.footer-form-left h2 {
		text-align: left;
	}
}

@media screen and (min-width: 1220px) {
	.footer-form-right {
		max-width: 525px;
	}

	.footer-form-inner {
		gap: 140px;
	}

	.footer-form-left::after {
		width: 120px;
	}
}

/*******************************************************************************************
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 {
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.breadcrumbs-single {
	position: relative;
	text-decoration: none;
	padding-right: 12px;
	margin-right: 12px;
	font-weight: 400;
}

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

.breadcrumbs-single::after {
	position: absolute;
	right: -4px;
	top: 0;
	font-size: 0.75rem;
	content: "\f105";
	font-family: "Font Awesome 6 Pro";
}

.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;
	}

	.breadcrumbs-single {
		padding-right: 20px;
		margin-right: 20px;
	}
}

/* FEATURES > Accordion */
.accordion-item {
	border-bottom: 1px solid #02244d;
}

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

.accordion-item-title {
	padding: 20px;
	font-size: 1rem;
	width: 100%;
	margin: 0;
	position: relative;
	cursor: pointer;
	font-weight: 600;
	color: var(--color-body-text);
	line-height: 30px;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	text-align: center;
	transition: background 200ms ease-out;
}

.accordion-item-title > span > span {
	color: var(--color-primary);
	font-style: italic;
}

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

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

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

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

.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-content p {
	font-size: 1.125rem;
	padding: 0 20px;
}

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

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

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

.form-steps-container .accordion-item-title {
	padding: 0;
	color: white;
	position: relative;
	-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;
}

.form-steps-container .accordion-item-title span {
	flex: 1;
	text-transform: none;
	font-size: 0.95rem;
	text-align: center;
	text-decoration: underline;
	margin-bottom: 8px;
}

.form-steps-container .accordion-item-title:hover span,
.form-steps-container .accordion-item-title:focus span {
	text-decoration: none;
}

.form-steps-container .accordion-item-title:focus,
.form-steps-container .accordion-item-title:hover {
	background: none;
	color: var(--color-primary);
}

.form-steps-container .accordion-item-title::after {
	color: var(--color-primary);
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
	transition: transform 200ms ease-out;
}

.form-steps-container .accordion-item-title:hover::after,
.form-steps-container .accordion-item-title:focus::after {
	transform: translateX(-50%) translateY(3px);
}

.form-steps-container .accordion-item {
	border-bottom: none;
}

/* FEATURES > Form Steps */
.form-steps-container {
	margin-top: 30px;
}

.form-steps {
	padding: 20px 0;
	margin-bottom: 0 !important;
}

.form-step {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.form-step:last-of-type {
	margin-bottom: 0;
}

.form-step-number {
	background: none;
	color: var(--color-primary);
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.8rem;
	font-family: var(--font-family-body);
	flex-shrink: 0;
}

.form-step-content p {
	margin: 0;
	line-height: 1.5;
	font-size: 0.95rem;
	color: white;
}

.form-step-content strong {
	color: var(--color-primary);
	font-style: italic;
}

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

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

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

/* 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.125rem;
}

.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: white;
	font-size: 1.125rem;
	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: "Font Awesome 6 Pro";
	font-size: var(--font-size-50);
	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.1);
	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: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	max-width: 160px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	width: 35px;
	min-width: 35px;
	line-height: 35px;
	height: 35px;
	text-decoration: none;
}

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

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

/* FEATURES > Case Results */
.slider-results-single {
	border: 1px solid var(--color-secondary);
	padding: 30px;
}

.slider-results-single:last-of-type {
	margin: 0;
}

.slider-results-single h3 {
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 25px;
}

/*******************************************************************************************
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;
}

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

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

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

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

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

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

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

.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;
}

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

.scaleUp {
	-webkit-animation-name: scaleUp;
	animation-name: scaleUp;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

#hero-giant {
	display: inline-block;
}

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

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

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

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

@-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);
	}
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@-webkit-keyframes scaleUp {
	from {
		opacity: 0;
		transform: scale(0.5);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes scaleUp {
	from {
		opacity: 0;
		transform: scale(0.5);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Viewport entry animations */
.image-active-swipe-right {
	will-change: clip-path, transform;
}

.image-active-swipe-right.active {
	-webkit-animation: image-reveal-right 1200ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
	animation: image-reveal-right 1200ms cubic-bezier(0.72, 0.24, 0.19, 0.82) forwards;
}

@-webkit-keyframes image-reveal-right {
	0% {
		clip-path: inset(0 100% 0 0);
		-webkit-clip-path: inset(0 100% 0 0);
	}

	100% {
		clip-path: inset(0 0 0 0);
		-webkit-clip-path: inset(0 0 0 0);
	}
}

@keyframes image-reveal-right {
	0% {
		clip-path: inset(0 100% 0 0);
		-webkit-clip-path: inset(0 100% 0 0);
	}

	100% {
		clip-path: inset(0 0 0 0);
		-webkit-clip-path: inset(0 0 0 0);
	}
}

.border-scale-y {
	will-change: transform;
}

.border-scale-y.active::before {
	-webkit-animation: scale-y-border 1000ms ease-out forwards;
	animation: scale-y-border 1000ms ease-out forwards;
}

@-webkit-keyframes scale-y-border {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	100% {
		transform: scaleY(1);
		transform-origin: top;
	}
}

@keyframes scale-y-border {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	100% {
		transform: scaleY(1);
		transform-origin: top;
	}
}

/* Promises subtitle line animations */
#promises-subtitle-lines.active::before {
	-webkit-animation: scale-x-line-right-to-left 800ms ease-out forwards;
	animation: scale-x-line-right-to-left 800ms ease-out forwards;
}

#promises-subtitle-lines.active::after {
	-webkit-animation: scale-x-line-left-to-right 800ms ease-out forwards;
	animation: scale-x-line-left-to-right 800ms ease-out forwards;
}

@-webkit-keyframes scale-x-line-right-to-left {
	0% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: right center;
	}

	100% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: right center;
	}
}

@keyframes scale-x-line-right-to-left {
	0% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: right center;
	}

	100% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: right center;
	}
}

@-webkit-keyframes scale-x-line-left-to-right {
	0% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: left center;
	}

	100% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: left center;
	}
}

@keyframes scale-x-line-left-to-right {
	0% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: left center;
	}

	100% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: left center;
	}
}

/* Letter border extend down animation */
#letter-border-extend.active::before,
#real-border-extend.active::before {
	-webkit-animation: extend-border-down 1000ms ease-out forwards;
	animation: extend-border-down 1000ms ease-out forwards;
}

@-webkit-keyframes extend-border-down {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	100% {
		transform: scaleY(1);
		transform-origin: top;
	}
}

@keyframes extend-border-down {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	100% {
		transform: scaleY(1);
		transform-origin: top;
	}
}

/* Title fade in up animation */
#small-title-fadein.active {
	-webkit-animation: title-fade-in-up 800ms ease-out forwards;
	animation: title-fade-in-up 800ms ease-out forwards;
}

@-webkit-keyframes title-fade-in-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes title-fade-in-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(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;
	}
}

/*******************************************************************************************
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 {
	content: "\f073";
	font-family: "Font Awesome 6 Pro";
	width: 50px;
	line-height: 50px;
	font-size: 2rem;
	font-weight: 700;
	display: block;
	text-align: center;
	color: var(--color-primary);
	margin: 0 auto;
}

.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;
	}
}

/*******************************************************************************************
COMMON SECTIONS - Subpages and homepage
*******************************************************************************************/

.standard-section {
	padding: 70px 0;
}

@media screen and (min-width: 1025px) {
	.standard-section {
		padding: 90px 0;
	}
}

/* BADGES SECTION - Marquee scrolling badges */
.badges-section {
	padding: 60px 0;
	background-color: var(--color-white);
	overflow: hidden;
}

.badges-marquee-container {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.badges-marquee-track {
	display: flex;
	gap: 60px;
	align-items: center;
	will-change: transform;
}

.badge-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 200ms ease-out, opacity 200ms ease-out;
}

.badge-item:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.badge-item img {
	max-width: 120px;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.badge-item.badge-item-svg img {
	min-width: 100px;
}

/* Keyframe animation for marquee - now handled by JavaScript */

@media screen and (min-width: 760px) {
	.badges-marquee-track {
		gap: 80px;
	}

	.badge-item img {
		max-width: 140px;
		max-height: 140px;
	}
}

@media screen and (min-width: 1025px) {
	.badges-section {
		padding: 80px 0;
	}

	.badges-marquee-track {
		gap: 100px;
	}

	.badge-item img {
		max-width: 160px;
		max-height: 160px;
	}
}

/* Promises Section Styling */

.section-promises {
	background-image: url(images/background_slight_waves.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: 100%;
	position: relative;
}

@media (min-width: 1025px) {
	body:not(.home) .section-promises::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 80%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
		pointer-events: none;
	}
}

.section-promises-inner {
	position: relative;
}

.section-promises-header {
	margin-bottom: 60px;
}

.section-promises-title {
	margin-bottom: 20px;
}

.section-promises-title:has(+ .section-promises-subtitle) {
	margin-bottom: 0;
}

.section-promises-text {
	max-width: 600px;
	margin: 0 auto;
}

.section-promises-title-highlight {
}

.section-promises-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

.promise-item {
	align-items: flex-start;
	gap: 24px;
}

.promise-icon {
	flex-shrink: 0;
}

.promise-icon img {
	width: 60px;
	height: 60px;
	margin: 0 auto 12px;
}

.promise-content {
	flex: 1;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.promise-title {
	margin-bottom: 5px;
	font-weight: 700;
	letter-spacing: 0;
	font-size: 1.2rem;
}

.promise-description {
	margin: 0;
}

/* Mobile-only lines for section-promises-subtitle */
.section-promises-subtitle {
	position: relative;
	display: inline-block;
	margin: 20px 0;
	font-weight: 700;
}

.section-promises-subtitle::before,
.section-promises-subtitle::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	background: var(--color-body-text);
	width: 200px;
}

.section-promises-subtitle::before {
	left: -220px;
}

.section-promises-subtitle::after {
	right: -220px;
}

@media screen and (min-width: 641px) {
	.promise-item {
		display: flex;
		max-width: 500px;
	}

	.promise-content {
		text-align: left;
	}
}

@media screen and (min-width: 760px) {
	.section-promises-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 1000px;
		margin: 0 auto 60px;
	}

	/* Hide the lines on desktop */
	.section-promises-subtitle::before,
	.section-promises-subtitle::after {
		width: 100px;
	}

	.section-promises-subtitle::before {
		left: -120px;
	}

	.section-promises-subtitle::after {
		right: -120px;
	}
}

/*******************************************************************************************
TESTIMONIALS DARK VARIANT - Dark background testimonials slider
*******************************************************************************************/

.section-testimonials-slider-dark {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.section-testimonials-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("images/background_blue.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

.section-testimonials-slider-dark .section-testimonials-slider-inner {
	position: relative;
	z-index: 1;
}

.section-testimonials-slider-dark .section-testimonials-slider-header {
	text-align: center;
}

.section-testimonials-slider-dark .light-text {
	font-size: 1.2rem;
	margin-bottom: 50px;
}

/* Dark variant uses white background cards with equal heights */
.section-testimonials-slider-dark .swiper-slide {
	height: auto;
	display: flex;
}

.section-testimonials-slider-dark .google-reviews-single {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.section-testimonials-slider-dark .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background-color: var(--color-white);
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
	.section-testimonials-slider-dark {
		padding: 100px 0;
	}

	.section-testimonials-slider-dark .section-testimonials-slider-header {
	}
}

/*******************************************************************************************
SECTION: RESULTS - Legal results section
*******************************************************************************************/

.section-results-row {
	flex: 0 0 auto;
	background-color: var(--color-body-text);
	color: var(--color-white);
	padding: 50px 0 70px;
}

.page-template-template-home .section-results-row {
	padding: 25px 0;
}

.section-results-inner {
	text-align: center;
}

.section-results-intro {
	margin-bottom: 30px;
}

.section-results-title {
	font-size: var(--font-size-50);
	margin-bottom: 15px;
}

.section-results-description {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 0;
}

.section-results-header {
	margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
	.section-results-header span {
		display: block;
	}
}

@media screen and (min-width: 1025px) {
	.section-results-header span {
		display: inline-block;
		margin-right: 5px;
	}
}

.results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

/* When in slider mode, disable grid */
.results-grid.swiper {
	display: block;
}

.results-item {
	text-align: center;
	position: relative;
	padding: 0;
	transition: transform 200ms ease-out;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.results-item:hover {
	transform: translateY(-3px);
}

.results-amount {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 3px;
	color: var(--color-white);
	line-height: 1.2;
}

.results-practice {
	color: var(--color-primary);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 3px;
	font-size: 0.9rem;
	letter-spacing: 1px;
	line-height: 1.33;
}

.results-insurance {
	font-size: 0.85rem;
	color: var(--color-white);
	margin-bottom: 20px;
	opacity: 0.9;
}

.results-button {
	margin-top: 20px;
}

.results-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	padding: 12px 24px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 200ms ease-out;
}

.results-link:hover,
.results-link:focus {
	background-color: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	transform: scale(1.05);
}

/* Mobile dividers between items */
.results-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
}

/* Tablet layout - only apply grid styles when NOT in slider mode */
@media screen and (min-width: 768px) {
	.section-results {
		padding: 0;
	}

	.results-button {
		margin-top: auto;
	}

	.section-results-row {
		padding: 60px 0;
	}

	.results-grid:not(.swiper) {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px;
	}

	.results-grid:not(.swiper) .results-item {
		padding: 50px 30px;
	}

	.results-grid:not(.swiper) .results-amount {
		font-size: 2.3rem;
	}

	/* Remove mobile dividers and add vertical dividers - only for grid mode */
	.results-grid:not(.swiper) .results-item::after {
		display: none;
	}

	/* Add vertical dividers for 2-column layout - only for grid mode */
	.results-grid:not(.swiper) .results-item:nth-child(odd)::after {
		content: "";
		position: absolute;
		top: 0;
		right: -30px;
		bottom: 0;
		width: 2px;
		background-color: rgba(255, 255, 255, 0.2);
		display: block;
	}
}

/* Ensure equal heights for slider slides */
.results-grid.swiper .swiper-slide {
	height: auto;
	display: flex;
}

.results-grid.swiper .swiper-wrapper {
	align-items: stretch;
}

/* Force equal heights for all slides in the results slider */
#slider-results-section .swiper-slide {
	height: auto;
	display: flex;
	justify-content: center;
}

#slider-results-section .swiper-wrapper {
	align-items: stretch;
}

/* Mobile slider navigation - positioned on sides */
.results-grid + .swiper-navigation {
	position: relative;
	height: 0;
}

.results-grid + .swiper-navigation .swiper-button-prev,
.results-grid + .swiper-navigation .swiper-button-next {
	position: absolute;
	top: -120px;
	width: 50px;
	height: 50px;
	border: none;
	color: var(--color-primary);
	font-size: 2.2rem;
}

.results-grid + .swiper-navigation .swiper-button-prev {
	left: -25px;
}

.results-grid + .swiper-navigation .swiper-button-next {
	right: -25px;
}

.results-grid + .swiper-navigation .swiper-button-prev::after,
.results-grid + .swiper-navigation .swiper-button-next::after {
	display: none;
}

@media screen and (min-width: 1025px) {
	/* Hide slider navigation on desktop */
	.results-grid + .swiper-navigation {
		display: none;
	}

	.section-results-header p {
		margin-bottom: 14px;
	}

	.section-results-row {
		padding: 70px 0;
	}

	.page-template-template-home .section-results-row {
		padding: 18px 0;
	}

	/* Desktop grid styling - only when in desktop mode */
	.results-grid-desktop,
	.results-grid:not(.swiper) {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}

	.results-grid-desktop .results-item,
	.results-grid:not(.swiper) .results-item {
		padding: 0;
	}

	/* Reset 2-column dividers and add 4-column dividers - desktop only */
	.results-grid-desktop .results-item:nth-child(odd)::after,
	.results-grid:not(.swiper) .results-item:nth-child(odd)::after {
		display: none;
	}

	/* Add vertical dividers for 4-column layout - desktop only */
	.results-grid-desktop .results-item:not(:nth-child(4n))::after,
	.results-grid:not(.swiper) .results-item:not(:nth-child(4n))::after {
		content: "";
		position: absolute;
		top: 0;
		right: -20px;
		bottom: 0;
		width: 2px;
		background-color: rgba(255, 255, 255, 0.2);
		display: block;
		height: 100%;
		left: auto;
	}
}

/*******************************************************************************************
SECTION: PRACTICE AREAS - Slider with practice area cards
*******************************************************************************************/

.section-practice-areas {
	padding: 80px 0;
	background-color: #f7f9fc;
	background-size: cover;
	background-repeat: no-repeat;
}

.section-practice-areas-header {
	margin-bottom: 35px;
}

.section-practice-areas .section-title {
	color: var(--color-body-text);
	font-family: var(--font-family-heading);
	font-size: var(--font-size-h1);
	font-weight: 400;
	margin-bottom: 0;
	line-height: 1.2;
}

.section-practice-areas-slider {
	position: relative;
	overflow: hidden; /* Ensure partial slides are visible but contained */
}

.section-practice-areas-slider .swiper {
	overflow: visible; /* Allow slides to extend beyond container */
}

.section-practice-areas-slider .swiper-wrapper {
	align-items: stretch; /* Ensure slides have equal height */
}

/* Mobile-only: Allow slider to extend beyond right gutter */
.section-practice-areas .column {
	padding-right: 0; /* Remove right padding to let slides extend off screen */
}

.section-practice-areas-slider .swiper-slide {
	width: 80%; /* Make each slide 80% of the viewport width */
	max-width: 400px; /* Set a reasonable maximum width for larger screens */
	flex-shrink: 0; /* Prevent slides from shrinking */
}

/* Breakout layout - extend slider to right edge while maintaining left alignment */
@media screen and (min-width: 768px) {
	/* Restore normal gutter padding for tablet and desktop */
	.section-practice-areas .column {
		padding-right: var(--gutter-size);
	}

	.section-practice-areas-slider {
		margin-left: calc(var(--gutter-size) * -1);
		margin-right: calc((100vw - 100%) / -2);
		padding-left: var(--gutter-size);
	}

	/* Reset to auto width for tablet and desktop - let Swiper handle the layout */
	.section-practice-areas-slider .swiper-slide {
		width: auto;
		max-width: none;
	}
}

.practice-area-card {
	display: block;
	background-color: var(--color-body-text);
	color: var(--color-white);
	text-decoration: none;
	padding: 40px 30px;
	height: 100%;
	min-height: 280px;
	position: relative;
	transition: all 300ms ease-out;
}

.practice-area-card:hover,
.practice-area-card:focus {
	background-color: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.practice-area-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.practice-area-title {
	color: var(--color-white);
	font-family: var(--font-family-body);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
}

.practice-area-excerpt {
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: auto;
	flex-grow: 1;
}

.practice-area-arrow {
	position: absolute;
	bottom: 25px;
	left: 25px;
	font-size: 1.2rem;
	opacity: 0.7;
	color: var(--color-primary);
	transition: all 200ms ease-out;
}

.practice-area-card:hover .practice-area-arrow,
.practice-area-card:focus .practice-area-arrow {
	opacity: 1;
	transform: translateX(3px);
	color: var(--color-white);
}

/* Custom navigation arrows for practice areas slider */
.section-practice-areas .swiper-navigation {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 10px;
}

.section-practice-areas .swiper-button-prev,
.section-practice-areas .swiper-button-next {
	position: static;
	width: 50px;
	height: 50px;
	margin: 0;
	background-color: var(--color-white);
	border: 1px solid #000;
	border-radius: 0;
	color: #000;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 100ms ease-out;
}

.section-practice-areas .swiper-outer {
	max-width: 100%;
}

.section-practice-areas .swiper-button-prev:hover,
.section-practice-areas .swiper-button-next:hover,
.section-practice-areas .swiper-button-prev:focus,
.section-practice-areas .swiper-button-next:focus {
	background-color: var(--color-secondary);
	color: var(--color-white);
	transform: scale(1.1);
}

.section-practice-areas .swiper-button-prev::after,
.section-practice-areas .swiper-button-next::after {
	content: none;
	color: #000;
	font-size: 24px;
}

.section-practice-areas .swiper-button-prev i,
.section-practice-areas .swiper-button-next i {
	font-size: 1.2rem;
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
	.section-practice-areas {
		padding: 100px 0;
	}

	.section-practice-areas-header {
		margin-bottom: 60px;
	}

	.practice-area-card {
		padding: 30px;
	}

	.section-practice-areas .swiper-navigation {
		justify-content: flex-start;
	}
}

/*******************************************************************************************
SECTION: THIN CTA - Banner with phone and messaging
*******************************************************************************************/

.section-thin-cta {
	position: relative;
	padding: 25px 0;
	overflow: hidden;
}

.section-thin-cta-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("images/thin_blue_bg.webp");
	background-size: cover;
	background-position-x: right;
	background-repeat: no-repeat;
	z-index: 0;
}

.section-thin-cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.section-thin-cta-text span,
.section-thin-cta-tagline span {
	color: var(--color-white);
	font-size: 1rem;
}

.section-thin-cta-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-primary);
	text-decoration: none;
	font-size: var(--font-size-32);
	font-weight: 700;
	transition: color 200ms ease-out, transform 200ms ease-out;
}

.section-thin-cta-phone-link:hover,
.section-thin-cta-phone-link:focus {
	color: var(--color-white);
	text-decoration: none;
	transform: scale(1.05);
}

.section-thin-cta-phone-link i {
	font-size: 1.2rem;
}

.section-thin-cta-text a {
	text-decoration: none;
}

.section-thin-cta-text a span {
	transition: color 200ms ease-out;
}

.section-thin-cta-text a:focus span,
.section-thin-cta-text a:hover span {
	color: var(--color-primary);
	text-decoration: underline;
}

/* Desktop layout - horizontal row */
@media screen and (min-width: 950px) {
	.section-thin-cta {
		padding: 20px 0;
	}

	.section-thin-cta-inner {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}

	.section-thin-cta-text,
	.section-thin-cta-phone,
	.section-thin-cta-tagline {
		text-align: left;
		flex: 1;
	}

	.section-thin-cta-text span,
	.section-thin-cta-tagline span {
		font-size: 1rem;
	}

	.section-thin-cta-phone-link {
	}
}

@media screen and (min-width: 1280px) {
	.section-thin-cta {
		padding: 25px 0;
	}

	.section-thin-cta-inner {
		gap: 35px;
	}

	.section-thin-cta-text span,
	.section-thin-cta-tagline span {
		font-size: 1.125rem;
		white-space: pre;
	}

	.section-thin-cta-phone-link {
	}

	.section-thin-cta-text,
	.section-thin-cta-phone,
	.section-thin-cta-tagline {
		text-align: center;
	}
}

/* TEMPLATES > Videos Section */

.section-videos-upper {
	text-align: center;
}

.section-videos-intro {
	max-width: 740px;
	margin: 0 auto 35px;
}

.section-videos-intro .section-title {
	font-size: 3rem;
	margin-bottom: 20px;
}

.section-videos-intro .section-intro {
	margin: 0 auto;
}

.section-videos-slider {
	margin-bottom: 60px;
}

.section-videos-slider .swiper-slide {
	width: 80%; /* Make each slide 80% of the viewport width on mobile */
	max-width: 400px;
	flex-shrink: 0;
}

.video-slide {
	position: relative;
}

.video-thumbnail {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 200ms ease-out;
}

.video-play-link {
	text-decoration: none;
}

.video-play-link:hover .video-thumbnail img,
.video-play-link:focus .video-thumbnail img {
	transform: scale(1.05);
}

.video-play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 300ms ease-out;
}

.video-play-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(4, 118, 191, 0.7);
	opacity: 0;
	transition: opacity 300ms ease-out;
}

.video-play-link:hover .video-play-overlay::before,
.video-play-link:focus .video-play-overlay::before {
	opacity: 1;
}

.video-play-button {
	width: 60px;
	height: 60px;
	background: var(--color-body-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms ease-out;
	position: relative;
	z-index: 1;
}

.video-play-button i {
	color: var(--color-primary);
	font-size: 2rem;
	margin-left: 4px;
}

.video-play-link:hover .video-play-button,
.video-play-link:focus .video-play-button {
	transform: scale(1.1);
	background: white;
}

.video-title-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	background: linear-gradient(transparent, rgb(9 16 43));
	padding: 100px 20px 25px;
	display: none;
}

.video-title-overlay h3 {
	color: #fff;
	font-size: 1.125rem;
	font-family: var(--font-family-body);
	margin: 0;
	font-weight: 600;
	line-height: 1.3;
}

.section-videos-lower {
	text-align: center;
}

.section-videos-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.section-videos-footer-text {
	font-weight: 700;
	font-style: italic;
	margin: 0;
}

#slider-videos-pagination {
	text-align: center;
	margin-top: 40px;
}

#slider-videos-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--color-body-text);
	opacity: 1;
	margin: 0 6px;
	transition: all 200ms ease-out;
}

#slider-videos-pagination .swiper-pagination-bullet-active {
	background: var(--color-primary);
	transform: scale(1.2);
}

.section-case-stories-footer-inner .button,
.section-videos-footer-inner .button {
	z-index: 10;
}

@media screen and (max-width: 1024px) {
	.section-videos-footer-inner .button {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (min-width: 768px) {
	/* Restore normal gutter padding for tablet and desktop */
	.section-videos .column {
		padding-right: var(--gutter-size);
	}

	/* Reset to auto width for tablet and desktop - let Swiper handle the layout */
	.section-videos-slider .swiper-slide {
		width: auto;
		max-width: none;
	}

	.section-videos-intro .section-title {
		font-size: var(--font-size-50);
	}

	.video-title-overlay h3 {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1025px) {
	.section-videos-intro {
		margin-bottom: 50px;
	}
	#slider-videos-pagination {
		left: auto;
		right: -38vw;
		margin-top: 0;
		bottom: -80px;
	}
	.section-videos-upper {
	}

	.section-videos-slider {
		margin-bottom: 45px;
	}

	.section-videos-footer-inner {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.section-videos-footer-text {
		/* font-size: 1.5rem; */
	}
}

/*******************************************************************************************
SECTION: REAL CONVERSATIONS - Star section with communication messaging
*******************************************************************************************/

.section-real {
	background-color: #f5f8fa;
	position: relative;
}

.section-real-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.section-real-content {
	position: relative;
	order: 2;
}

.section-real-text {
	max-width: 640px;
}

.section-real-eyebrow {
	margin-bottom: 5px;
}

.section-real-title {
	margin-bottom: 25px;
}

.section-real-description {
	margin-bottom: 50px;
}

.section-real-description p {
	margin: 0;
}

.section-real-cta {
}

.section-real-image {
	text-align: center;
	order: 1;
	position: relative;
	left: -10px;
}

.section-real-image img {
	max-width: 100%;
	height: auto;
}

body:not(.home) .section-real-image {
	order: 3;
}

@media screen and (min-width: 590px) {
	.section-real-image img {
		max-width: 400px;
	}
}

@media screen and (min-width: 768px) {
	.section-real-inner {
		gap: 60px;
	}
}

@media screen and (min-width: 1025px) {
	.section-real {
		overflow: hidden;
	}

	.section-real-inner {
		flex-direction: row;
		align-items: center;
		gap: 80px;
	}

	.section-real-content {
		flex: 1;
		max-width: 700px;
		padding-left: 60px;
		order: 1;
	}

	.section-real-content::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 4px;
		background-color: var(--color-body-text);
	}

	.section-real-image {
		position: absolute;
		right: 0;
		margin-right: 10px;
		top: 50%;
		transform: translateY(-50%);
		width: 50%;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		order: 2;
		left: auto;
	}

	.section-real-image img {
		max-width: none;
		width: auto;
		height: 300px;
		object-fit: cover;
	}
}

@media screen and (min-width: 1100px) {
	.section-real-image img {
		height: 360px;
	}
}

@media screen and (min-width: 1170px) {
	.section-real-image {
		margin-right: 50px;
	}
}

@media screen and (min-width: 1280px) {
	.section-real-image img {
		height: 530px;
	}
}

@media screen and (min-width: 1580px) {
	.section-real-image {
		justify-content: center;
	}
}

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

.enhanced-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.enhanced-link:hover,
.enhanced-link:focus {
	color: var(--color-secondary);
}

.enhanced-link i {
	font-size: 0.9rem;
	transition: transform 200ms ease-out;
}

.enhanced-link:hover i,
.enhanced-link:focus i {
	transform: translateX(4px);
}

#sidebar-jump-links button {
	text-align: left;
}
