/*
Theme Name: X-press Energy PA
Description: Warm Thoughts Theme
Version: 2.0
Template Author: Josh Hong
Site Author: Kevin Bell
Author: https://www.warmthoughts.com
*/


/* Root
====================================*/
:root {
	--default: #000000; /*Font*/
	--primo: #f37521; 
	--secondo: ;
	--terzo: ;
	--quarto: ;
	--ffamily: "Poppins", sans-serif;
}


/* Global Styles
====================================*/

html, body {
	overflow-x: hidden;
}

body {
	color: var(--default);
	font-family: var(--ffamily);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin-bottom: 1rem;
}
h1, .h1 {
	color: var(--primo);
	font-size: 44px;
	line-height: 54px;
	font-weight: 700;
}
h2, .h2 {
	color: var(--secondo);
	font-size: 36px;
	line-height: 46px;
	font-weight: 700;
}
h3, .h3 {
	color: var(--primo);
	font-size: 28px;
	line-height: 38px;
	font-weight: 700;
}
h4, .h4 {
	color: var(--secondo);
	font-size: 24px;
	font-weight: 700;
}
h5, .h5 {
	color: var(--primo);
	font-size: 22px;
	font-weight: 700;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
hr {
	border-top: 2px solid var(--primo);
	margin-top: 0;
}
mark {
	padding: 0;
}
ul li,
ol li {
	padding: 0.5rem 0;
}

blockquote {
	border-left: 5px solid var(--secondo);
	margin: 1rem 0;
	padding: 2rem 2rem 1rem 2rem;
	position: relative;
}
blockquote p {
	font-size: 18px;
	line-height: 26px;
	font-style: italic;
}
blockquote p:before {
	content: '\f10d';
	font-family: "FontAwesome";
	color: var(--primo);
	font-size: 7em;
	opacity: .2;
	position: absolute;
	margin-left: -20px;
}

.alignleft {
	float: left;
	margin: 0 2rem 2rem 0;
}
.alignright {
	float: right;
	margin: 0 0 2rem 2rem;
}
.aligncenter {
	display: block;
	margin: auto;
}

.small-text {
	font-size: 12px;
}
.med-text {
	font-size: 24px;
	line-height: 34px;
}
.large-text {
	font-size: 32px;
	line-height: 42px;
}
.super-large-text {
	font-size: 40px;
	line-height: 50px;
}
.bomb-large-text {
	font-size: 50px;
	line-height: 60px;
}
.extra-large-text {
	font-size: 60px;
	line-height: 70px;
}

.text-shadow {
	text-shadow: 1px 1px 3px #333;
}

.color-default { color: var(--default); }
.color-primo { color: var(--primo); }
.color-secondo { color: var(--secondo); }
.color-terzo { color: var(--terzo); }
.color-quarto { color: var(--quarto); }
.black { color: #333; }
.white, .white a { color: #fff !important;}

.bg-default { background-color: var(--default); }
.bg-primo { background-color: var(--primo); }
.bg-secondo { background-color: var(--secondo); }
.bg-terzo { background-color: var(--terzo); }
.bg-quarto { background-color: var(--quarto); }
.bg-gray { background-color: #f0f0f0; }
.bg-white { background-color: #fff; }

.bg-inner-banner {
	height: 350px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-child-banner {
	height: 7px; 
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Image Overlay
==================*/

.img-overlay {
	position: relative;
}
[class^="img-overlay-"] {
	position: absolute;
}
.img-overlay-full {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.img-overlay-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.img-overlay-center-left {
	top: 50%;
	left: 10%;
	transform: translate(0%, -50%);
}
.img-overlay-center-right {
	top: 50%;
	right: 10%;
	transform: translate(0%, -50%);
}
.img-overlay-top-center {
	top: 0;
	left: 0;
	right: 0;
}
.img-overlay-top-left {
	top: 0;
	left: 10%;
}
.img-overlay-top-right {
	top: 0;
	right: 10%;
}
.img-overlay-bottom-center {
	bottom: 5%;
	left: 0;
	right: 0;
}
.img-overlay-bottom-left {
	bottom: 5%;
	left: 10%;
}
.img-overlay-bottom-right {
	bottom: 5%;
	right: 10%;
}

/* Buttons
==================*/

.btn {
	border: none;
	border-radius: 0;
	font-weight: 700;
	padding: 8px 20px 8px 20px;
	text-shadow: none;
	text-transform: uppercase;
	transition: 0.4s;
}
.btn-primo {
	background-color: #f3f3f3;
	border: 2px solid #8f8f8f;
	color: #1a1a1a !important;
}
.btn-primo:hover, .btn-primo:active, .btn-primo:focus {
	background-color: var(--primo);
	border-color: var(--primo);
	color: #fff !important;
}
.btn-secondo {
	background-color: var(--secondo);
	color: #fff !important;
}
.btn-secondo:hover, .btn-secondo:active, .btn-secondo:focus {
	background-color: var(--secondo);
	color: #fff !important;
}
.btn-terzo {
	background-color: var(--terzo);
	color: #fff !important;
}
.btn-terzo:hover, .btn-terzo:active, .btn-terzo:focus {
	background-color: var(--terzo);
	color: #fff !important;
}
.btn-quarto {
	background-color: var(--quarto);
	color: #fff !important;
}
.btn-quarto:hover, .btn-quarto:active, .btn-quarto:focus {
	background-color: var(--quarto);
	color: #fff !important;
}


/* Zip Input
==================*/

.zipinput {
	border: 1px solid #585858;
	box-shadow: none;
	color: #585858;
	max-width: 180px;
	padding: 6px 10px;
	outline: none;
	text-align: center;
}
.zipinput::placeholder {
	color: #585858;
}


/* Breadcrumbs
====================================*/

.breadcrumbs a {
	color: #999999 !important;
	text-decoration: none;
}
.breadcrumbs {
	color: #999;
}


/* Header
====================================*/

header a {
	text-decoration: none;
}
header .logo {
	display: block;
	margin: 0;
}

.xpp-header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
}

.xpp-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	justify-content: flex-end;
}

.xpp-main-menu-row {
	width: 100%;
	margin-top: .45rem;
}

header #mega-menu-wrap-max_mega_menu_2 {
	
	text-align: right;
}

header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 {
	display: inline-flex;
	justify-content: flex-end;
	float: none;
	width: auto;
}

header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 .mega-menu-item-has-children > .mega-menu-link .mega-indicator::after {
	color: #f37521 !important;
	border-top-color: #f37521 !important;
}

header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item-has-children:last-child > ul.mega-sub-menu,
header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item-has-children:nth-last-child(2) > ul.mega-sub-menu {
	left: auto !important;
	right: 0 !important;
}

.xpp-quick-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: #000;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: 0.8rem 1rem;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.xpp-quick-link i {
	color: #f37521;
	font-size: 0.95rem;
}

.xpp-quick-link.is-accent {
	background: #f37521;
}

.xpp-quick-link.is-accent i {
	color: #fff;
}

.xpp-quick-link:hover,
.xpp-quick-link:focus-visible {
	background: #1b1b1b;
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

.xpp-quick-link.is-accent:hover,
.xpp-quick-link.is-accent:focus-visible {
	background: #d86417;
}


/* Content
====================================*/

.content a {
	color: #0033ff;
}
.content ul li {
	padding-left: 0.5rem;
}
.content ul li::marker {
	content: "\f7e4";
	color: var(--primo);
	font: var(--fa-font-solid);
}

.content.app-feature.xpp-parent-child-watermark {
	position: relative;
	/* overflow: hidden; */
}

.content.app-feature.xpp-parent-child-watermark::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -520px;
	transform: translateY(-50%);
	width: 920px;
	height: 920px;
	background-image: url('images/background-logo-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

.content.app-feature.xpp-parent-child-watermark > * {
	position: relative;
	z-index: 1;
}

body.xpp-no-watermark .content.app-feature.xpp-parent-child-watermark::after,
body.xpp-no-watermark .xpp-feature::after {
	content: none;
}


/* Footer
====================================*/

footer a {
	text-decoration: none;
}

.xpp-site-footer {
	
	color: #111;
	font-size: 1.1rem;
	line-height: 1.5;
}

.xpp-footer-landscape {
	margin-top: -80px;
}

.xpp-footer-landscape img {
	display: block;
	width: 100%;
	height: auto;
}

.xpp-footer-cta-bar {
	background: #f37521;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
	padding: 1.4rem 0;
}

.xpp-footer-cta-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.xpp-footer-cta-links a {
	color: #fff;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 28px;
	line-height: 1;
	transition: color 0.2s ease;
}

.xpp-footer-cta-icon {
	color: currentColor;
	transition: inherit;
}

.xpp-footer-cta-links a:hover,
.xpp-footer-cta-links a:focus-visible {
	color: #000 !important;
}

.xpp-footer-company {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.xpp-site-footer p i {
	margin-right: 0.35rem;
	color: #111;
	width: 1.1rem;
	text-align: center;
}

.xpp-footer-social {
	display: flex;
	justify-content: center;
	gap: 1.35rem;
	margin-top: 0.5rem;
	font-size: 2.3rem;
	line-height: 1;
}

.xpp-footer-social a {
	color: #000;
	transition: transform 0.2s ease, color 0.2s ease;
}

.xpp-footer-social a:hover,
.xpp-footer-social a:focus-visible {
	color: #f37521;
	transform: translateY(-1px);
	outline: none;
}

.xpp-footer-divider {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #bababa;
}



.xpp-site-footer a:hover,
.xpp-site-footer a:focus-visible {
	color: var(--primo);
}

.xpp-site-footer .xpp-footer-social a:hover,
.xpp-site-footer .xpp-footer-social a:focus-visible {
	color: #f37521;
}


/* Pagination
====================================*/

.pagination {
	margin: 3rem 0;
}
.page-numbers {
	border: 1px solid var(--secondo);
	padding: 5px 10px;
	text-decoration: none;
}


/* Post
====================================*/

.post {
	padding-bottom: 3rem;
}
.post h3 {
	margin: 1rem 0;
}
.post img {
	display: inline-block;
}


/* Responsive CSS
====================================*/

@media (width < 576px) {
	h1, .h1 {
		font-size: 32px;
		line-height: 42px;
	}
	h2, .h2 {
		font-size: 26px;
		line-height: 36px;
	}
	h3, .h3 {
		font-size: 22px;
		line-height: 30px;
	}
	.super-large-text {
		font-size: 36px;
		line-height: 46px;
	}
	.bomb-large-text {
		font-size: 40px;
		line-height: 50px;
	}
	.extra-large-text {
		font-size: 40px;
		line-height: 50px;
	}

	.xpp-header-right {
		align-items: stretch;
	}

	.xpp-quick-links {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.xpp-quick-link {
		justify-content: center;
		width: 100%;
		font-size: 0.95rem;
	}

	.xpp-footer-cta-links {
		gap: 1rem;
		justify-content: flex-start;
	}

	.xpp-footer-cta-links a {
		font-size: 1.35rem;
	}

	.xpp-footer-main {
		text-align: left;
	}

	.xpp-footer-social {
		justify-content: flex-start;
	}

	header #mega-menu-wrap-max_mega_menu_2 .mega-menu-toggle + #mega-menu-max_mega_menu_2 {
		top: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
		height: auto !important;
	}

	header #mega-menu-wrap-max_mega_menu_2 {
		top: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item:first-child {
		margin-top: 0 !important;
	}

	header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 > li.mega-menu-item:first-child > a.mega-menu-link {
		margin-top: 0 !important;
		padding-top: 0.25rem !important;
	}

	header #mega-menu-wrap-max_mega_menu_2 {
		text-align: left;
	}

	header #mega-menu-wrap-max_mega_menu_2 #mega-menu-max_mega_menu_2 {
		display: block;
		top: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
		width: 100%;
	}
}

@media (max-width: 278px) {
	.xpp-badges {
		display: none;
	}
}

@media (min-width: 576px) {
	.post img {
		float: right;
		margin-left: 1rem;
	}
}

@media (min-width: 768px) {
	.li-cols-2,
	.li-cols-3 {
		columns: 2;
		column-gap: 40px;
	}
}

@media (width < 992px) {
	.alignright, .alignleft {
		display: block;
		float: none;
		margin: 0 auto 1rem auto;
	}
}

@media (min-width: 1200px) {
	.li-cols-3 {
		columns: 3;
		column-gap: 40px;
	}
}

.xpp-backtotop {
	--scroll-progress: 0;
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 82px;
	height: 82px;
	border: none;
	border-radius: 999px;
	padding: 0;
	display: grid;
	place-items: center;
	background: transparent;
	opacity: 0;
	transform: translateY(18px) scale(0.92);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
	z-index: 1200;
	filter: drop-shadow(0 10px 20px rgba(7, 19, 38, 0.35));
}

.xpp-backtotop.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.xpp-backtotop::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: conic-gradient(
		from -90deg,
		#ff8f2a calc(var(--scroll-progress) * 1%),
		rgba(255, 255, 255, 0.2) 0
	);
	animation: xpp-backtotop-spin 8s linear infinite;
}

.xpp-backtotop::after {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: inherit;
	background: radial-gradient(circle at 30% 30%, #1b4179 0%, #112748 55%, #0a172c 100%);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.xpp-backtotop__icon {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 999px;
	color: #ffffff;
	font-size: 1.95rem;
	font-weight: 900;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(0, 0, 0, 0.7);
	background: radial-gradient(circle at 30% 30%, #1e3358 0%, #101d33 72%, #0a172c 100%);
	box-shadow: 0 0 0 3px rgba(243, 117, 33, 0.95), 0 0 0 6px rgba(255, 255, 255, 0.38), inset 0 0 12px rgba(0, 0, 0, 0.35);
	animation: xpp-backtotop-float 2.1s ease-in-out infinite;
}

.xpp-backtotop__icon i {
	animation: xpp-backtotop-arrowpulse 1.8s ease-in-out infinite;
}

.xpp-backtotop__brand {
	position: absolute;
	z-index: 1;
	left: 20px;
	top: 17px;
	font-size: 2.1rem;
	line-height: 1;
	font-weight: 900;
	font-style: italic;
	color: #f37521;
	text-shadow: -1px -1px 0 #111, 1px -1px 0 #111, -1px 1px 0 #111, 1px 1px 0 #111;
	opacity: 0.42;
	pointer-events: none;
	transform: rotate(-8deg);
}

.xpp-backtotop:hover,
.xpp-backtotop:focus-visible {
	transform: translateY(-2px) scale(1.03);
	filter: drop-shadow(0 14px 26px rgba(7, 19, 38, 0.45));
	outline: none;
}

.xpp-backtotop:hover .xpp-backtotop__icon,
.xpp-backtotop:focus-visible .xpp-backtotop__icon {
	background: linear-gradient(160deg, rgba(255, 165, 66, 0.55), rgba(255, 165, 66, 0.2));
}

@keyframes xpp-backtotop-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes xpp-backtotop-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-4px);
	}
}

@keyframes xpp-backtotop-arrowpulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.12);
	}
}

@media (prefers-reduced-motion: reduce) {
	.xpp-backtotop::before,
	.xpp-backtotop__icon {
		animation: none;
	}
}

@media (width < 768px) {
	.xpp-backtotop {
		width: 70px;
		height: 70px;
		right: 12px;
		bottom: 12px;
	}

	.xpp-backtotop::after {
		inset: 5px;
	}

	.xpp-backtotop__icon {
		width: 52px;
		height: 52px;
		font-size: 1.55rem;
	}

	.xpp-backtotop__brand {
		left: 16px;
		top: 13px;
		font-size: 1.75rem;
	}
}


/* Custom Styles
====================================*/

.xpp-home {
	background: #fff;
	color: #111;
}

.xpp-hero img {
	display: block;
	max-height: 640px;
	object-fit: cover;
}

.xpp-headline {
	background: #ffffff;
}

.xpp-headline h1 {
	color: #111;
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.12;
}

.xpp-badges {
	background: linear-gradient(90deg, #f57b20 0%, #8d3f07 58%, #3a1404 100%);
}

.xpp-badge {
	position: relative;
	width: min(100%, 170px);
	aspect-ratio: 1 / 0.87;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	font-size: clamp(1.18rem, 1.55vw, 1.65rem);
	line-height: 1.03;
	padding: 0.85rem 1.15rem;
	background-image: url('images/hexagon.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
	transform: translateY(0) scale(1);
	filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.xpp-badge:hover,
.xpp-badge:focus-visible {
	transform: translateY(-6px) scale(1.03);
	filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.xpp-badge > * {
	position: relative;
	z-index: 1;
}

.xpp-badge small {
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.12;
	display: inline-block;
	margin-top: 0.2rem;
}

.xpp-badge--long {
	font-size: clamp(1.05rem, 1.28vw, 1.4rem);
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.xpp-badge--long small {
	font-size: 0.84rem;
	line-height: 1.08;
}

.xpp-service-area .xpp-service-copy {
	background: #e3e3e3;
}

.xpp-service-map-parallax {
	/* min-height: 490px; */
	height: 100%;
	background-image: url('images/map.jpg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto;
	background-color: #e3e3e3;
}

.xpp-service-image-parallax {
	height: 100%;
	background-image: url('images/valley-forge.jpg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto;
	background-color: #e3e3e3;
	background-attachment: local;
}

.xpp-service-area h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	line-height: 1.1;
	color: #111;
}

.xpp-service-area p {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.xpp-feature {
	background: #fff;
	position: relative;
	overflow: visible;
}

.xpp-feature::after {
	content: "";
	position: absolute;
	top: 72%;
	right: -160px;
	transform: translateY(-30%);
	width: 980px;
	height: 980px;
	background-image: url('images/background-logo-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

.xpp-feature .container {
	position: relative;
	z-index: 1;
}

.xpp-feature h2 {
	color: #111;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	line-height: 1.1;
}

.xpp-feature-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid #d3d3d3;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.xpp-services {
	background: transparent;
	position: relative;
	z-index: 1;
}

.xpp-services h3 {
	color: #111;
	font-size: 1.55rem;
}

.xpp-service-icon {
	width: min(180px, 100%);
	height: auto;
}

.xpp-testimonials {
	background: #fff;
}

.xpp-testimonials-card {
	position: relative;
	background: #fff;
	opacity: 1;
	transform: translateY(46px);
	margin-bottom: -86px;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.xpp-testimonials-title {
	background: #000;
	padding: 1.15rem 1rem;
}

.xpp-testimonials-title h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
}

.xpp-quote-mark {
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 0.8rem;
}

.xpp-testimonials p {
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

.xpp-child-page {
	color: #333;
}

.xpp-child-block {
	position: relative;
	background: #f3f3f3;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.xpp-bg-x-transparent::after {
	content: "";
	position: absolute;
	right: -40px;
	top: 26%;
	width: 320px;
	height: 320px;
	background-image: url('images/logo.png');
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.08;
	pointer-events: none;
}

.xpp-child-title {
	font-size: clamp(1.8rem, 3vw, 2.35rem);
	line-height: 1.15;
	color: #f37521;
}

.xpp-image-placeholder {
	min-height: 220px;
	background: linear-gradient(135deg, #d9d9d9 0%, #c7c7c7 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #979797;
	color: #5c5c5c;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.xpp-image-placeholder--tall {
	min-height: 270px;
}

.xpp-accent-heading {
	color: #f37521;
	font-weight: 700;
}

.xpp-feature-list {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.xpp-feature-list li {
	position: relative;
	padding: 0.38rem 0 0.38rem 1.3rem;
}

.xpp-feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.93rem;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #f37521;
}

.xpp-cta-shortcode {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	background: #000;
	color: #fff;
	padding: 0;
	
	position: relative;
	z-index: 1;
	overflow: visible;
	min-height: 68px;
    margin-top: 75px;
    margin-bottom: 60px;
}

.xpp-cta-shortcode__inner {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.18rem 1.35rem 1.18rem clamp(8.3rem, 11.2vw, 11.3rem);
	background: #000;
}

.xpp-cta-shortcode__x {
	position: absolute;
	left: clamp(3rem, 8.2vw, 8.8rem);
	top: 50%;
	transform: translateY(-52%) rotate(-8deg);
	display: block;
	width: clamp(82px, 11vw, 142px);
	height: auto;
	pointer-events: auto;
	will-change: transform, filter;
}

.xpp-cta-shortcode__x:hover {
	animation: xpp-cta-x-jiggle 0.48s ease-in-out infinite;
}

@keyframes xpp-cta-x-jiggle {
	0%,
	100% {
		transform: translateY(-52%) rotate(-8deg);
	}
	25% {
		transform: translateY(-52%) rotate(-12deg) translateX(-2px);
	}
	50% {
		transform: translateY(-52%) rotate(-4deg) translateX(2px);
	}
	75% {
		transform: translateY(-52%) rotate(-10deg) translateX(-1px);
	}
}

.xpp-cta-shortcode__text {
	font-size: clamp(0.85rem, 1.05vw, 1.15rem);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0;
}

.xpp-cta-shortcode__btn {
	background: #f37521;
	color: #fff !important;
	padding: 0 1.65rem;
	min-width: clamp(190px, 22vw, 305px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	text-transform: none;
	font-size: clamp(0.95rem, 1.2vw, 1.5rem);
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
}

.xpp-cta-shortcode__btn:hover,
.xpp-cta-shortcode__btn:focus-visible {
	background: #d86417;
	color: #fff;
	outline: none;
}

.xpp-child-content > :last-child {
	margin-bottom: 0;
}

.xpp-diff-card {
	width: 100%;
	max-width: none;
	
	background: #fff;
	border: 1px solid #d8d8d8;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.xpp-diff-card__header {
	background: linear-gradient(90deg, #6b2d00 0%, #f37521 100%);
	padding: 0.78rem 1.2rem;
	text-align: center;
}

.xpp-diff-card__header h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
}

.xpp-diff-card__body {
	display: grid;
	grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
	gap: 1.3rem;
	align-items: center;
	padding: 1.7rem 1.9rem 1.9rem;
	background: #fff;
}

.xpp-diff-card__media img {
	display: block;
	width: 100%;
	/* max-width: 360px; */
	height: auto;
	border-radius: 16px;
	border: 1px solid #d4d4d4;
	object-fit: cover;
}

.xpp-diff-card__content {
	padding-right: 0.4rem;
}

.xpp-diff-card__list {
	list-style: disc;
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.xpp-diff-card__list li {
	padding: 0.25rem 0 0.58rem;
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.35;
	color: #1c1c1c;
}

.xpp-diff-card__list strong {
	font-weight: 700;
	color: #111;
}

.xpp-diff-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.92rem 1.35rem;
	background: #fff;
	border: 2px solid #aaaaaa;
	color: #000 !important;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.xpp-diff-card__arrow {
	color: #f37521;
	font-weight: 900;
	font-size: 1.24em;
	line-height: 1;
	-webkit-text-stroke: 0.3px currentColor;
}

.xpp-diff-card__btn:hover,
.xpp-diff-card__btn:focus-visible {
	background: var(--primo);
	border-color: var(--primo);
	color: #fff !important;
	outline: none;
}

.xpp-diff-card__btn:hover .xpp-diff-card__arrow,
.xpp-diff-card__btn:focus-visible .xpp-diff-card__arrow {
	color: #fff !important;
}


#oilTankServiceAccordion {
	border: none;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

#oilTankServiceAccordion .accordion-item {
	background-color: #fff;
	border: none;
	border-bottom: 1px solid #e0e0e0;
}

#oilTankServiceAccordion .accordion-item:first-child {
	border-top: 3px solid #f37521;
}

#oilTankServiceAccordion .accordion-item:last-child {
	border-bottom: none;
}

#oilTankServiceAccordion .accordion-button {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	background-color: #1a1a1a;
	color: #fff;
	padding: 1.1rem 1.4rem;
	border-radius: 0 !important;
	box-shadow: none;
}

#oilTankServiceAccordion .accordion-button::after {
	filter: invert(1);
}

#oilTankServiceAccordion .accordion-button:not(.collapsed) {
	background-color: #f37521;
	color: #fff;
	box-shadow: none;
}

#oilTankServiceAccordion .accordion-button:not(.collapsed)::after {
	filter: invert(1);
}

#oilTankServiceAccordion .accordion-body {
	background-color: #fff;
	padding: 1.4rem 1.6rem;
	font-size: 1rem;
}


.xpp-benefits-card {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	margin: 2.5rem 0 2.5rem;
}

.xpp-benefits-card__header {
	background: #fff;
	color: #1e1e1e;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1.25rem 1.5rem 1rem;
	margin: 0;
	letter-spacing: 0;
	border-bottom: 3px solid #f37521;
}

.xpp-benefits-card__header i {
	color: #f37521;
	margin-right: 0.5rem;
	filter: none;
}

.xpp-benefits-card__body {
	background: #fff;
	padding: 1.4rem 1.5rem 1rem;
	border-left: none;
	border-top: none;
}

.xpp-benefits-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.xpp-benefits-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.xpp-benefits-list li:last-child {
	border-bottom: none;
}

.xpp-step-card {
	height: 100%;
	background: #fff;
	border-top: 3px solid #f37521;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}

.xpp-step-card__num {
	width: 2.8rem;
	height: 2.8rem;
	background: #f37521;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.xpp-step-card:hover .xpp-step-card__num {
	transform: scale(1.35);
}

.xpp-step-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #1a1a1a;
}


/* Custom Styles Responsive CSS
====================================*/

/*These styles will overwrite any CSS above. 
For normal use, there is no need to specify a Media Query for less then 576px as the CSS above will cover that.
There should not be much need of Media queries past these default bootstrap breakpoints unless the theme requires something unique.*/
@media (width > 576px) {}
@media (width > 768px) {}
@media (width > 992px) {}
@media (width > 1200px) {}
@media (width > 1400px) {}

@media (width < 1200px) {
	.xpp-badge {
		width: min(100%, 155px);
		font-size: 1.2rem;
		padding: 0.72rem 0.95rem;
	}

	.xpp-badge small {
		font-size: 0.84rem;
	}

	.xpp-badge--long {
		font-size: 1.02rem;
	}

	.xpp-badge--long small {
		font-size: 0.74rem;
	}
}

@media (width < 992px) {
	.xpp-feature::after {
		top: auto;
		opacity: 0.05;
		right: -160px;
		bottom: -120px;
		transform: none;
		width: 560px;
		height: 560px;
	}

	.xpp-diff-card__body {
		grid-template-columns: 1fr;
	}

	.xpp-diff-card__media img {
		max-width: 100%;
	}

	.xpp-service-map-parallax,
	.xpp-service-image-parallax {
		min-height: 340px;
		background-attachment: scroll;
	}

	.xpp-service-area form {
		align-items: center;
	}

	.xpp-service-area .zipinput {
		width: min(100%, 260px);
		max-width: 260px;
	}

	.xpp-service-area .btn.btn-primo {
		width: min(100%, 260px);
		max-width: 260px;
	}
}

@media (width < 768px) {
	.xpp-testimonials-card {
		transform: translateY(28px);
		margin-bottom: -28px;
	}

	.xpp-service-area {
		padding-top: 1.75rem;
		padding-bottom: 1.75rem;
	}

	.xpp-hero img {
		max-height: none;
	}

	.xpp-badge {
		width: min(100%, 142px);
		font-size: 1.05rem;
		padding: 0.62rem 0.82rem;
	}

	.xpp-badge small {
		font-size: 0.76rem;
		line-height: 1.08;
	}

	.xpp-badge--long {
		font-size: 0.92rem;
	}

	.xpp-badge--long small {
		font-size: 0.69rem;
	}

	.xpp-bg-x-transparent::after {
		width: 220px;
		height: 220px;
		right: -35px;
		top: 34%;
		opacity: 0.06;
	}

	.xpp-cta-shortcode {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
	}

	.xpp-cta-shortcode__inner {
		padding: 1.15rem 1rem 1.15rem 6rem;
		min-height: 86px;
	}

	.xpp-cta-shortcode__x {
		width: 102px;
		left: 1.9rem;
	}

	.xpp-cta-shortcode__btn {
		text-align: center;
		min-height: 58px;
		min-width: 100%;
	}

	.xpp-diff-card {
		margin: 2rem auto;
	}

	.xpp-diff-card__header {
		padding: 0.65rem 0.95rem;
	}

	.xpp-diff-card__body {
		padding: 1rem;
		gap: 1rem;
	}

	.xpp-diff-card__list li {
		font-size: 0.98rem;
	}
}
