:root {
	--eg-black: #08090b;
	--eg-black-soft: #0f1115;
	--eg-graphite: #171a20;
	--eg-graphite-light: #232832;
	--eg-orange: #ff5a1f;
	--eg-orange-light: #ff7a33;
	--eg-white: #ffffff;
	--eg-text: #e7e9ee;
	--eg-muted: #a9afba;
	--eg-line: rgba(255, 255, 255, 0.1);
	--eg-success: #2bd576;
	--eg-radius-sm: 10px;
	--eg-radius: 18px;
	--eg-radius-lg: 28px;
	--eg-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
	--eg-container: 1180px;
	--eg-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--eg-display: "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.eg-site {
	margin: 0;
	background: var(--eg-black);
	color: var(--eg-text);
	font-family: var(--eg-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.eg-menu-open {
	overflow: hidden;
}

body.admin-bar .eg-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(255, 122, 51, 0.78);
	outline-offset: 3px;
}

img,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--eg-white);
	font-family: var(--eg-display);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.75rem, 7vw, 5.5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
	font-size: 1.45rem;
}

.screen-reader-text,
.eg-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.eg-skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: var(--eg-orange);
	color: var(--eg-white);
}

.eg-container {
	width: min(calc(100% - 40px), var(--eg-container));
	margin-inline: auto;
}

.eg-topbar {
	position: relative;
	z-index: 51;
	border-bottom: 1px solid var(--eg-line);
	background: #050607;
	color: var(--eg-muted);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.eg-topbar-inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 8px;
}

.eg-topbar a {
	color: var(--eg-orange-light);
}

.eg-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--eg-line);
	background: rgba(8, 9, 11, 0.92);
	backdrop-filter: blur(18px);
}

.eg-header-inner {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 28px;
}

.eg-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	color: var(--eg-white);
}

.eg-brand-logo {
	display: block;
	width: clamp(168px, 14vw, 218px);
	height: auto;
	border-radius: 4px;
	mix-blend-mode: screen;
}

.eg-nav {
	margin-left: auto;
}

.eg-nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eg-nav-list li {
	position: relative;
}

.eg-nav-list a {
	display: block;
	padding: 12px 10px;
	color: var(--eg-text);
	font-size: 0.83rem;
	font-weight: 700;
	transition: color 0.2s ease;
}

.eg-nav-list a:hover,
.eg-nav-list .current-menu-item > a,
.eg-nav-list .current-menu-ancestor > a {
	color: var(--eg-orange-light);
}

.eg-nav-list .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	display: grid;
	min-width: 260px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius-sm);
	background: var(--eg-graphite);
	box-shadow: var(--eg-shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: 0.2s ease;
}

.eg-nav-list > li:nth-last-child(-n + 3) > .sub-menu {
	right: 0;
	left: auto;
}

.eg-nav-list li:hover > .sub-menu,
.eg-nav-list li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.eg-nav-list .sub-menu a {
	padding: 9px 12px;
	border-radius: 7px;
}

.eg-nav-list .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.05);
}

.eg-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 10px;
	border: 1px solid var(--eg-line);
	border-radius: 10px;
	background: transparent;
}

.eg-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--eg-white);
}

.eg-main {
	min-height: 60vh;
}

.eg-page {
	overflow: hidden;
}

.eg-hero {
	position: relative;
	overflow: hidden;
	min-height: 760px;
	padding: 112px 0 86px;
	border-bottom: 1px solid var(--eg-line);
	background-color: #08090b;
	background-image:
		linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.8) 38%, rgba(8, 9, 11, 0.2) 68%, rgba(8, 9, 11, 0.08) 100%),
		url("../images/hero-tech-orange-desktop.jpg");
	background-image:
		linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.8) 38%, rgba(8, 9, 11, 0.2) 68%, rgba(8, 9, 11, 0.08) 100%),
		image-set(
			url("../images/hero-tech-orange-desktop.webp") type("image/webp"),
			url("../images/hero-tech-orange-desktop.jpg") type("image/jpeg")
		);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.eg-hero::before,
.eg-page-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 46px 46px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent);
	pointer-events: none;
}

.eg-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
	align-items: center;
	gap: 82px;
}

.eg-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 22px;
	color: var(--eg-orange-light);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eg-kicker::before {
	width: 28px;
	height: 2px;
	background: var(--eg-orange);
	content: "";
}

.eg-hero h1 {
	max-width: 790px;
	margin-bottom: 28px;
}

.eg-hero h1 strong,
.eg-page-hero h1 strong,
.eg-section-heading h2 strong {
	color: var(--eg-orange);
	font-weight: inherit;
}

.eg-lead {
	max-width: 720px;
	color: var(--eg-muted);
	font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.eg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 34px;
}

.eg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 22px;
	border: 1px solid var(--eg-orange);
	border-radius: 11px;
	background: linear-gradient(145deg, var(--eg-orange-light), var(--eg-orange));
	box-shadow: 0 12px 30px rgba(255, 90, 31, 0.2);
	color: var(--eg-white);
	font-size: 0.88rem;
	font-weight: 800;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.eg-button:hover,
.eg-button:focus-visible {
	box-shadow: 0 16px 38px rgba(255, 90, 31, 0.32);
	transform: translateY(-2px);
}

.eg-button-ghost {
	border-color: var(--eg-line);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
}

.eg-button-ghost:hover {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.eg-button-small {
	min-height: 42px;
	padding: 10px 15px;
	font-size: 0.76rem;
}

.eg-proof-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.eg-proof-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid var(--eg-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--eg-muted);
	font-size: 0.76rem;
	font-weight: 700;
}

.eg-proof-list li::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--eg-success);
	box-shadow: 0 0 0 4px rgba(43, 213, 118, 0.1);
	content: "";
}

.eg-tech-panel {
	position: relative;
	min-height: 0;
	visibility: hidden;
}

.eg-tech-orbit {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 90, 31, 0.24);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 58%);
	box-shadow: inset 0 0 70px rgba(255, 90, 31, 0.08);
}

.eg-tech-orbit::before,
.eg-tech-orbit::after {
	position: absolute;
	border: 1px dashed rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	content: "";
}

.eg-tech-orbit::before {
	inset: 52px;
}

.eg-tech-orbit::after {
	inset: 110px;
}

.eg-tech-core {
	position: relative;
	z-index: 1;
	display: grid;
	width: 165px;
	height: 165px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 42px;
	background: linear-gradient(145deg, #252a34, #111318);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
	transform: rotate(8deg);
}

.eg-tech-core svg {
	width: 85px;
	fill: var(--eg-orange);
	filter: drop-shadow(0 0 16px rgba(255, 90, 31, 0.5));
	transform: rotate(-8deg);
}

.eg-float-card {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border: 1px solid var(--eg-line);
	border-radius: 13px;
	background: rgba(23, 26, 32, 0.9);
	box-shadow: var(--eg-shadow);
	backdrop-filter: blur(14px);
}

.eg-float-card strong {
	display: block;
	color: var(--eg-white);
	font-family: var(--eg-display);
	font-size: 1rem;
}

.eg-float-card small {
	color: var(--eg-muted);
	font-size: 0.7rem;
}

.eg-float-card span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 9px;
	background: rgba(255, 90, 31, 0.14);
	color: var(--eg-orange-light);
	font-size: 0.7rem;
	font-weight: 800;
}

.eg-float-card-one {
	top: 45px;
	left: -25px;
}

.eg-float-card-two {
	right: -18px;
	bottom: 82px;
}

.eg-float-card-three {
	bottom: 8px;
	left: 8px;
}

.eg-strip {
	border-bottom: 1px solid var(--eg-line);
	background: var(--eg-black-soft);
}

.eg-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.eg-strip-item {
	padding: 23px 25px;
	border-right: 1px solid var(--eg-line);
}

.eg-strip-item:last-child {
	border-right: 0;
}

.eg-strip-item strong {
	display: block;
	color: var(--eg-white);
	font-family: var(--eg-display);
	font-size: 1.18rem;
}

.eg-strip-item span {
	color: var(--eg-muted);
	font-size: 0.76rem;
}

.eg-section {
	position: relative;
	padding: 104px 0;
}

.eg-section-alt {
	border-block: 1px solid var(--eg-line);
	background: var(--eg-black-soft);
}

.eg-section-orange {
	background:
		radial-gradient(circle at 100% 0%, rgba(255, 122, 51, 0.18), transparent 34%),
		linear-gradient(145deg, #24120c, #111318 56%);
}

.eg-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 46px;
}

.eg-section-heading > div:first-child {
	max-width: 760px;
}

.eg-section-heading h2 {
	margin-bottom: 0;
}

.eg-section-heading p {
	max-width: 470px;
	margin-bottom: 5px;
	color: var(--eg-muted);
}

.eg-grid {
	display: grid;
	gap: 20px;
}

.eg-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eg-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eg-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eg-card {
	position: relative;
	overflow: hidden;
	padding: 30px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: linear-gradient(145deg, rgba(35, 40, 50, 0.78), rgba(15, 17, 21, 0.82));
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.eg-card::after {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: rgba(255, 90, 31, 0.08);
	content: "";
	filter: blur(5px);
}

.eg-card:hover {
	border-color: rgba(255, 90, 31, 0.34);
	transform: translateY(-4px);
}

.eg-card h3 {
	margin-bottom: 12px;
}

.eg-card p {
	margin-bottom: 0;
	color: var(--eg-muted);
	font-size: 0.91rem;
}

.eg-card-icon {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 23px;
	place-items: center;
	border: 1px solid rgba(255, 90, 31, 0.22);
	border-radius: 13px;
	background: rgba(255, 90, 31, 0.1);
	color: var(--eg-orange-light);
	font-family: var(--eg-display);
	font-size: 0.78rem;
	font-weight: 800;
}

.eg-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	color: var(--eg-orange-light);
	font-size: 0.8rem;
	font-weight: 800;
}

.eg-card-link::after {
	content: ">";
	transition: transform 0.2s ease;
}

.eg-card-link:hover::after {
	transform: translateX(4px);
}

.eg-process-card {
	counter-increment: eg-step;
}

.eg-process {
	counter-reset: eg-step;
}

.eg-process-card::before {
	display: block;
	margin-bottom: 20px;
	color: var(--eg-orange);
	font-family: var(--eg-display);
	font-size: 2.3rem;
	font-weight: 700;
	content: "0" counter(eg-step);
}

.eg-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 78px;
}

.eg-feature-panel {
	padding: 42px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius-lg);
	background:
		linear-gradient(145deg, rgba(255, 90, 31, 0.13), transparent 42%),
		var(--eg-graphite);
	box-shadow: var(--eg-shadow);
}

.eg-feature-panel h2 {
	margin-bottom: 20px;
}

.eg-feature-panel p {
	color: var(--eg-muted);
}

.eg-check-list {
	display: grid;
	gap: 13px;
	margin: 27px 0 0;
	padding: 0;
	list-style: none;
}

.eg-check-list li {
	position: relative;
	padding-left: 29px;
	color: var(--eg-text);
	font-size: 0.92rem;
}

.eg-check-list li::before {
	position: absolute;
	top: 0.38em;
	left: 0;
	display: grid;
	width: 17px;
	height: 17px;
	place-items: center;
	border-radius: 50%;
	background: rgba(43, 213, 118, 0.15);
	color: var(--eg-success);
	content: "\2713";
	font-size: 0.65rem;
	font-weight: 800;
}

.eg-stat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.eg-stat {
	min-height: 145px;
	padding: 25px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: var(--eg-black-soft);
}

.eg-stat strong {
	display: block;
	margin-bottom: 6px;
	color: var(--eg-orange-light);
	font-family: var(--eg-display);
	font-size: 2rem;
}

.eg-stat span {
	color: var(--eg-muted);
	font-size: 0.8rem;
}

.eg-page-hero {
	position: relative;
	overflow: hidden;
	padding: 105px 0 82px;
	border-bottom: 1px solid var(--eg-line);
	background:
		radial-gradient(circle at 86% 10%, rgba(255, 90, 31, 0.2), transparent 28%),
		linear-gradient(145deg, #08090b, #171a20);
}

.eg-page-hero > .eg-container {
	position: relative;
	z-index: 1;
}

.eg-page-hero h1 {
	max-width: 930px;
	margin-bottom: 22px;
	font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.eg-page-hero p {
	max-width: 750px;
	margin-bottom: 0;
	color: var(--eg-muted);
	font-size: 1.12rem;
}

.eg-page-hero-compact {
	padding: 80px 0 64px;
}

.eg-content {
	max-width: 820px;
}

.eg-content h2 {
	margin-top: 48px;
}

.eg-content h3 {
	margin-top: 32px;
}

.eg-content p,
.eg-content li {
	color: var(--eg-muted);
}

.eg-service-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
}

.eg-service-intro > div:last-child {
	padding: 34px;
	border-left: 2px solid var(--eg-orange);
	background: linear-gradient(90deg, rgba(255, 90, 31, 0.08), transparent);
}

.eg-service-intro p {
	color: var(--eg-muted);
}

.eg-symptom-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eg-symptom-list li {
	position: relative;
	padding: 16px 17px 16px 42px;
	border: 1px solid var(--eg-line);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.025);
	color: var(--eg-text);
	font-size: 0.87rem;
}

.eg-symptom-list li::before {
	position: absolute;
	top: 18px;
	left: 17px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--eg-orange);
	border-radius: 50%;
	content: "";
}

.eg-faq {
	display: grid;
	gap: 12px;
	max-width: 900px;
}

.eg-faq-item {
	border: 1px solid var(--eg-line);
	border-radius: 13px;
	background: var(--eg-graphite);
}

.eg-faq-item button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 21px 23px;
	border: 0;
	background: transparent;
	color: var(--eg-white);
	font-family: var(--eg-font);
	font-size: 0.97rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.eg-faq-item button::after {
	color: var(--eg-orange);
	content: "+";
	font-family: var(--eg-display);
	font-size: 1.7rem;
}

.eg-faq-item.is-open button::after {
	content: "-";
}

.eg-faq-answer {
	display: none;
	padding: 0 23px 22px;
	color: var(--eg-muted);
	font-size: 0.9rem;
}

.eg-faq-answer p:last-child {
	margin-bottom: 0;
}

.eg-faq-item.is-open .eg-faq-answer {
	display: block;
}

.eg-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 50px;
	padding: 48px;
	border: 1px solid rgba(255, 90, 31, 0.28);
	border-radius: var(--eg-radius-lg);
	background:
		radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.2), transparent 35%),
		var(--eg-graphite);
	box-shadow: var(--eg-shadow);
}

.eg-cta h2 {
	margin-bottom: 12px;
}

.eg-cta p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--eg-muted);
}

.eg-form-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 38px;
}

.eg-form {
	padding: 36px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: var(--eg-graphite);
}

.eg-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.eg-field {
	display: grid;
	gap: 7px;
}

.eg-field-full {
	grid-column: 1 / -1;
}

.eg-field label {
	color: var(--eg-text);
	font-size: 0.78rem;
	font-weight: 800;
}

.eg-field input,
.eg-field select,
.eg-field textarea {
	width: 100%;
	border: 1px solid var(--eg-line);
	border-radius: 10px;
	outline: 0;
	background: var(--eg-black-soft);
	color: var(--eg-white);
}

.eg-field input,
.eg-field select {
	height: 50px;
	padding: 0 14px;
}

.eg-field textarea {
	min-height: 145px;
	padding: 13px 14px;
	resize: vertical;
}

.eg-field input:focus,
.eg-field select:focus,
.eg-field textarea:focus {
	border-color: var(--eg-orange);
	box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.eg-check-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--eg-muted);
	font-size: 0.76rem;
}

.eg-check-field input {
	flex: 0 0 auto;
	margin-top: 4px;
}

.eg-check-field a {
	color: var(--eg-orange-light);
	text-decoration: underline;
}

.eg-honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.eg-form-notice {
	margin-bottom: 20px;
	padding: 15px 17px;
	border: 1px solid rgba(43, 213, 118, 0.3);
	border-radius: 10px;
	background: rgba(43, 213, 118, 0.1);
	color: #bff7d6;
	font-size: 0.87rem;
}

.eg-form-notice.is-error {
	border-color: rgba(255, 98, 98, 0.38);
	background: rgba(255, 73, 73, 0.12);
	color: #ffd1d1;
}

.eg-form-notice.is-warning {
	border-color: rgba(255, 191, 72, 0.38);
	background: rgba(255, 166, 32, 0.12);
	color: #ffe2a7;
}

.eg-form.is-submitting {
	opacity: 0.78;
	pointer-events: none;
}

.eg-form button[disabled] {
	cursor: wait;
}

.eg-contact-panel {
	display: grid;
	align-content: start;
	gap: 15px;
}

.eg-contact-card {
	padding: 25px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: var(--eg-black-soft);
}

.eg-contact-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--eg-white);
	font-family: var(--eg-display);
	font-size: 1.2rem;
}

.eg-contact-card p {
	margin-bottom: 0;
	color: var(--eg-muted);
	font-size: 0.84rem;
}

.eg-contact-card a {
	color: var(--eg-orange-light);
	font-weight: 800;
}

.eg-map-card {
	overflow: hidden;
	min-height: 360px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background:
		linear-gradient(rgba(8, 9, 11, 0.18), rgba(8, 9, 11, 0.88)),
		repeating-linear-gradient(45deg, #252a34 0, #252a34 1px, #171a20 1px, #171a20 22px);
}

.eg-map-card-inner {
	display: flex;
	min-height: 360px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
}

.eg-map-pin {
	display: grid;
	width: 65px;
	height: 65px;
	margin-bottom: 20px;
	place-items: center;
	border-radius: 50% 50% 50% 0;
	background: var(--eg-orange);
	color: var(--eg-white);
	font-family: var(--eg-display);
	font-weight: 800;
	transform: rotate(-45deg);
}

.eg-map-pin span {
	transform: rotate(45deg);
}

.eg-map-card p {
	max-width: 420px;
	color: var(--eg-muted);
}

.eg-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.eg-post-card {
	overflow: hidden;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: var(--eg-graphite);
}

.eg-post-card-content {
	padding: 28px;
}

.eg-post-card time {
	color: var(--eg-orange-light);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.eg-post-card h2 {
	margin: 12px 0;
	font-size: 1.65rem;
}

.eg-post-card p {
	color: var(--eg-muted);
	font-size: 0.88rem;
}

.eg-text-link {
	color: var(--eg-orange-light);
	font-size: 0.8rem;
	font-weight: 800;
}

.eg-empty-state {
	grid-column: 1 / -1;
	max-width: 760px;
	padding: 45px;
	border: 1px solid var(--eg-line);
	border-radius: var(--eg-radius);
	background: var(--eg-graphite);
}

.eg-article-content {
	max-width: 850px;
	padding-block: 75px 110px;
}

.eg-article-content p,
.eg-article-content li {
	color: var(--eg-muted);
}

.eg-footer {
	padding: 72px 0 24px;
	border-top: 1px solid var(--eg-line);
	background: #050607;
}

.eg-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 0.8fr 1.15fr;
	gap: 48px;
}

.eg-brand-footer {
	margin-bottom: 21px;
}

.eg-footer-about p,
.eg-footer-contact p {
	color: var(--eg-muted);
	font-size: 0.84rem;
}

.eg-footer h2 {
	margin-bottom: 19px;
	font-size: 1.15rem;
}

.eg-footer-links {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eg-footer-links a,
.eg-footer-contact a {
	display: block;
	color: var(--eg-muted);
	font-size: 0.82rem;
	transition: color 0.2s ease;
}

.eg-footer-links a:hover,
.eg-footer-contact a:hover {
	color: var(--eg-orange-light);
}

.eg-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 55px;
	padding-top: 22px;
	border-top: 1px solid var(--eg-line);
	color: #737986;
	font-size: 0.72rem;
}

.eg-footer-bottom p {
	margin-bottom: 0;
}

.eg-footer-credit strong {
	color: var(--eg-orange);
	font-weight: 800;
}

.eg-floating-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 45;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 14px 9px 9px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: #1fa855;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 0.76rem;
}

.eg-floating-whatsapp span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.64rem;
	font-weight: 800;
}

@supports (content-visibility: auto) {
	.eg-section {
		content-visibility: auto;
		contain-intrinsic-size: auto 760px;
	}
}

@media (max-width: 1100px) {
	.eg-header-cta {
		display: none;
	}

	.eg-nav-list a {
		padding-inline: 8px;
		font-size: 0.78rem;
	}

	.eg-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eg-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.admin-bar .eg-header {
		top: 46px;
	}

	.eg-header {
		backdrop-filter: none;
	}

	.eg-header-inner {
		min-height: 72px;
	}

	.eg-menu-toggle {
		display: block;
	}

	.eg-nav {
		position: fixed;
		top: 113px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 22px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #08090b;
	}

	body.admin-bar .eg-nav {
		top: 159px;
	}

	.eg-nav.is-open {
		display: block;
	}

	.eg-nav-list {
		display: grid;
		align-items: stretch;
		gap: 3px;
	}

	.eg-nav-list a {
		padding: 13px 10px;
		border-bottom: 1px solid var(--eg-line);
		font-size: 0.95rem;
	}

	.eg-nav-list .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 0 14px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.eg-hero {
		min-height: 0;
		padding-top: 80px;
		background-image:
			linear-gradient(180deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.76) 52%, rgba(8, 9, 11, 0.4) 100%),
			url("../images/hero-tech-orange-mobile.jpg");
		background-image:
			linear-gradient(180deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.76) 52%, rgba(8, 9, 11, 0.4) 100%),
			image-set(
				url("../images/hero-tech-orange-mobile.webp") type("image/webp"),
				url("../images/hero-tech-orange-mobile.jpg") type("image/jpeg")
			);
		background-position: center;
	}

	.eg-hero-grid,
	.eg-split,
	.eg-form-wrap {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.eg-tech-panel {
		min-height: 0;
	}

	.eg-strip-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.eg-strip-item:nth-child(2) {
		border-right: 0;
	}

	.eg-strip-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--eg-line);
	}

	.eg-grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eg-section-heading {
		display: block;
	}

	.eg-section-heading p {
		margin-top: 20px;
	}

	.eg-service-intro {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.eg-cta {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.eg-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.eg-container {
		width: min(calc(100% - 28px), var(--eg-container));
	}

	.eg-topbar-inner {
		justify-content: center;
	}

	.eg-topbar-inner span {
		display: none;
	}

	.eg-brand-logo {
		width: 164px;
	}

	.eg-section {
		padding: 76px 0;
	}

	.eg-page-hero {
		padding: 75px 0 58px;
	}

	.eg-actions {
		display: grid;
	}

	.eg-button {
		width: 100%;
	}

	.eg-proof-list {
		display: grid;
	}

	.eg-tech-panel {
		min-height: 0;
	}

	.eg-tech-core {
		width: 130px;
		height: 130px;
	}

	.eg-float-card {
		padding: 10px 12px;
	}

	.eg-float-card-one {
		top: 22px;
		left: -4px;
	}

	.eg-float-card-two {
		right: -5px;
		bottom: 62px;
	}

	.eg-float-card-three {
		display: none;
	}

	.eg-strip-item {
		padding: 19px 13px;
	}

	.eg-grid-2,
	.eg-grid-3,
	.eg-grid-4,
	.eg-stat-grid,
	.eg-post-grid,
	.eg-form-grid {
		grid-template-columns: 1fr;
	}

	.eg-card,
	.eg-feature-panel,
	.eg-form,
	.eg-empty-state {
		padding: 25px;
	}

	.eg-symptom-list {
		grid-template-columns: 1fr;
	}

	.eg-cta {
		padding: 28px;
	}

	.eg-field-full {
		grid-column: auto;
	}

	.eg-footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.eg-footer-bottom {
		display: grid;
	}

	.eg-floating-whatsapp {
		right: 13px;
		bottom: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Service imagery introduced in theme 1.2.5. */
body.page-id-10 .eg-page-hero,
body.page-id-11 .eg-page-hero,
body.page-id-12 .eg-page-hero,
body.page-id-13 .eg-page-hero,
body.page-id-14 .eg-page-hero,
body.page-id-15 .eg-page-hero,
body.page-id-16 .eg-page-hero,
body.page-id-17 .eg-page-hero {
	display: flex;
	min-height: 560px;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

body.page-id-10 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.86) 43%, rgba(8, 9, 11, 0.28) 75%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/playstation-hero.webp");
}

body.page-id-11 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.86) 43%, rgba(8, 9, 11, 0.28) 75%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/xbox-hero.webp");
}

body.page-id-12 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.85) 43%, rgba(8, 9, 11, 0.24) 75%, rgba(8, 9, 11, 0.1) 100%), url("../images/services/nintendo-hero.webp");
}

body.page-id-13 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.85) 43%, rgba(8, 9, 11, 0.24) 75%, rgba(8, 9, 11, 0.1) 100%), url("../images/services/tv-hero.webp");
}

body.page-id-14 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.87) 43%, rgba(8, 9, 11, 0.3) 75%, rgba(8, 9, 11, 0.15) 100%), url("../images/services/notebook-hero.webp");
}

body.page-id-15 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.86) 43%, rgba(8, 9, 11, 0.24) 75%, rgba(8, 9, 11, 0.1) 100%), url("../images/services/computador-hero.webp");
}

body.page-id-16 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.87) 45%, rgba(8, 9, 11, 0.35) 78%, rgba(8, 9, 11, 0.18) 100%), url("../images/services/ti-empresarial.webp");
}

body.page-id-17 .eg-page-hero {
	background-image: linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.87) 45%, rgba(8, 9, 11, 0.35) 78%, rgba(8, 9, 11, 0.18) 100%), url("../images/services/ti-residencial.webp");
}

body.home .eg-strip + .eg-section .eg-grid-4 > .eg-card,
body.page-id-9 .eg-page-hero + .eg-section .eg-grid-3 > .eg-card,
body.page-id-10 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-11 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-12 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-13 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-14 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-15 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-16 .eg-section-alt .eg-grid-3 > .eg-card,
body.page-id-17 .eg-section-alt .eg-grid-3 > .eg-card {
	padding-top: 208px;
}

body.home .eg-strip + .eg-section .eg-grid-4 > .eg-card::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-grid-3 > .eg-card::before,
body.page-id-10 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-11 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-12 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-13 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-14 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-15 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-16 .eg-section-alt .eg-grid-3 > .eg-card::before,
body.page-id-17 .eg-section-alt .eg-grid-3 > .eg-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 170px;
	border-bottom: 1px solid rgba(255, 106, 0, 0.34);
	background-color: #0b0d10;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
}

body.home .eg-strip + .eg-section .eg-grid-4 > .eg-card > *,
body.page-id-9 .eg-page-hero + .eg-section .eg-grid-3 > .eg-card > *,
body.page-id-10 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-11 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-12 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-13 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-14 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-15 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-16 .eg-section-alt .eg-grid-3 > .eg-card > *,
body.page-id-17 .eg-section-alt .eg-grid-3 > .eg-card > * {
	position: relative;
	z-index: 2;
}

body.home .eg-strip + .eg-section .eg-card:nth-child(1)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(1)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/playstation-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(2)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(2)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/xbox-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(3)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(3)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/nintendo-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(4)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(4)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/tv-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(5)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(5)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/notebook-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(6)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(6)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/computador-hero.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(7)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(9)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/ti-empresarial.webp");
}

body.home .eg-strip + .eg-section .eg-card:nth-child(8)::before,
body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(10)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/ti-residencial.webp");
}

body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(7)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/playstation-controle.webp");
}

body.page-id-9 .eg-page-hero + .eg-section .eg-card:nth-child(8)::before {
	background-image: linear-gradient(180deg, transparent 55%, rgba(8, 9, 11, 0.75)), url("../images/services/notebook-hero.webp");
}

body.page-id-10 .eg-section-alt .eg-card:nth-child(1)::before {
	background-image: url("../images/services/playstation-hero.webp");
}

body.page-id-10 .eg-section-alt .eg-card:nth-child(2)::before {
	background-image: url("../images/services/playstation-console.webp");
}

body.page-id-10 .eg-section-alt .eg-card:nth-child(3)::before {
	background-image: url("../images/services/playstation-controle.webp");
}

body.page-id-11 .eg-section-alt .eg-card::before {
	background-image: url("../images/services/xbox-hero.webp");
}

body.page-id-12 .eg-section-alt .eg-card:nth-child(1)::before {
	background-image: url("../images/services/nintendo-tela.webp");
}

body.page-id-12 .eg-section-alt .eg-card:nth-child(2)::before {
	background-image: url("../images/services/nintendo-joycon.webp");
}

body.page-id-12 .eg-section-alt .eg-card:nth-child(3)::before {
	background-image: url("../images/services/nintendo-hero.webp");
}

body.page-id-13 .eg-section-alt .eg-card:nth-child(1)::before {
	background-image: url("../images/services/tv-iluminacao.webp");
}

body.page-id-13 .eg-section-alt .eg-card:nth-child(2)::before {
	background-image: url("../images/services/tv-placa.webp");
}

body.page-id-13 .eg-section-alt .eg-card:nth-child(3)::before {
	background-image: url("../images/services/tv-hero.webp");
}

body.page-id-14 .eg-section-alt .eg-card:nth-child(1)::before {
	background-image: url("../images/services/notebook-hero.webp");
}

body.page-id-14 .eg-section-alt .eg-card:nth-child(2)::before {
	background-image: url("../images/services/notebook-manutencao.webp");
}

body.page-id-14 .eg-section-alt .eg-card:nth-child(3)::before {
	background-image: url("../images/services/notebook-tela.webp");
}

body.page-id-15 .eg-section-alt .eg-card::before {
	background-image: url("../images/services/computador-hero.webp");
}

body.page-id-16 .eg-section-alt .eg-card::before {
	background-image: url("../images/services/ti-empresarial.webp");
}

body.page-id-17 .eg-section-alt .eg-card::before {
	background-image: url("../images/services/ti-residencial.webp");
}

@media (max-width: 900px) {
	body.page-id-10 .eg-page-hero {
		background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 52%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/playstation-mobile.webp");
	}

	body.page-id-11 .eg-page-hero {
		background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 52%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/xbox-mobile.webp");
	}

	body.page-id-12 .eg-page-hero {
		background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 52%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/nintendo-mobile.webp");
	}

	body.page-id-14 .eg-page-hero {
		background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 52%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/notebook-mobile.webp");
	}

	body.page-id-15 .eg-page-hero {
		background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 52%, rgba(8, 9, 11, 0.14) 100%), url("../images/services/computador-mobile.webp");
	}
}

@media (max-width: 620px) {
	body.page-id-10 .eg-page-hero,
	body.page-id-11 .eg-page-hero,
	body.page-id-12 .eg-page-hero,
	body.page-id-13 .eg-page-hero,
	body.page-id-14 .eg-page-hero,
	body.page-id-15 .eg-page-hero,
	body.page-id-16 .eg-page-hero,
	body.page-id-17 .eg-page-hero {
		min-height: 760px;
		align-items: flex-start;
		padding-bottom: 230px;
		background-position: center bottom;
	}

	body.home .eg-strip + .eg-section .eg-grid-4 > .eg-card,
	body.page-id-9 .eg-page-hero + .eg-section .eg-grid-3 > .eg-card,
	body.page-id-10 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-11 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-12 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-13 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-14 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-15 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-16 .eg-section-alt .eg-grid-3 > .eg-card,
	body.page-id-17 .eg-section-alt .eg-grid-3 > .eg-card {
		padding-top: 192px;
	}

	body.home .eg-strip + .eg-section .eg-grid-4 > .eg-card::before,
	body.page-id-9 .eg-page-hero + .eg-section .eg-grid-3 > .eg-card::before,
	body.page-id-10 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-11 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-12 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-13 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-14 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-15 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-16 .eg-section-alt .eg-grid-3 > .eg-card::before,
	body.page-id-17 .eg-section-alt .eg-grid-3 > .eg-card::before {
		height: 154px;
	}
}
