:root {
	--pge-bg: #070b12;
	--pge-bg-soft: #101726;
	--pge-surface: #121b2a;
	--pge-surface-strong: #172236;
	--pge-border: rgba(208, 217, 231, 0.18);
	--pge-text: #e7edf6;
	--pge-muted: #a5afbe;
	--pge-accent: #b79963;
	--pge-accent-soft: rgba(183, 153, 99, 0.16);
	--pge-max-width: 1180px;
	--pge-shadow: 0 14px 48px rgba(2, 6, 12, 0.4);
	--pge-radius: 16px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Manrope', 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pge-text);
	background:
		radial-gradient(circle at 12% 12%, rgba(22, 34, 52, 0.8), transparent 40%),
		radial-gradient(circle at 84% 0%, rgba(183, 153, 99, 0.18), transparent 32%),
		var(--pge-bg);
}

a {
	color: var(--pge-text);
	text-decoration: none;
}

a:hover {
	color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--pge-accent);
	outline-offset: 3px;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.7em;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

h1 {
	font-size: clamp(2.3rem, 5vw, 4.25rem);
}

h2 {
	font-size: clamp(1.75rem, 3.3vw, 2.8rem);
}

h3 {
	font-size: clamp(1.3rem, 2.3vw, 1.7rem);
}

p {
	margin: 0 0 1rem;
	color: var(--pge-muted);
}

ul,
ol {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

li {
	margin-bottom: 0.45rem;
	color: var(--pge-muted);
}

strong {
	color: #fff;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background-color: #f0f3f8;
	clip: auto;
	clip-path: none;
	color: #0d1a2f;
	display: block;
	font-size: 0.95rem;
	height: auto;
	left: 12px;
	line-height: normal;
	padding: 0.7rem 0.9rem;
	text-decoration: none;
	top: 12px;
	width: auto;
	z-index: 9999;
}

.container {
	width: min(100% - 2.5rem, var(--pge-max-width));
	margin-inline: auto;
}

.site-main {
	display: block;
}

.section {
	padding: clamp(3.2rem, 8vw, 6rem) 0;
}

.section-kicker {
	margin: 0 0 0.7rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--pge-accent);
}

.section-intro {
	max-width: 760px;
	font-size: 1.08rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--pge-accent);
	font-weight: 600;
}

.text-link:hover {
	color: #e2c289;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--small {
	padding: 0.63rem 1rem;
	font-size: 0.8rem;
}

.btn--accent {
	background: var(--pge-accent);
	color: #1a1206;
	border: 1px solid var(--pge-accent);
}

.btn--accent:hover {
	background: #ccb07d;
	border-color: #ccb07d;
	color: #151008;
}

.btn--ghost {
	border: 1px solid var(--pge-border);
	background: rgba(255, 255, 255, 0.02);
	color: var(--pge-text);
}

.btn--ghost:hover {
	border-color: var(--pge-accent);
	color: #fff;
}

.btn--outline {
	border: 1px solid var(--pge-accent);
	color: var(--pge-accent);
	background: transparent;
}

.btn--outline:hover {
	background: var(--pge-accent-soft);
	color: #e8cf9f;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(7, 11, 18, 0.88);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(208, 217, 231, 0.12);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.1rem;
	min-height: 84px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo img,
.custom-logo {
	display: block;
	max-height: clamp(44px, 5.5vw, 58px);
	width: auto;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-title {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	max-width: 220px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.primary-nav {
	position: fixed;
	top: 84px;
	left: 0;
	right: 0;
	padding: 1.1rem 1.25rem 1.4rem;
	background: #0c1220;
	border-bottom: 1px solid rgba(208, 217, 231, 0.14);
	transform: translateY(-120%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.28s ease, opacity 0.2s ease;
}

body.nav-open .primary-nav {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.menu a {
	display: inline-flex;
	padding: 0.65rem 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--pge-text);
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current_page_item > a {
	color: #fff;
}

.nav-cta {
	margin-top: 0.85rem;
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.24rem;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 1px solid var(--pge-border);
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	padding: 0;
	cursor: pointer;
}

.nav-toggle__bar {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle__bar:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(3) {
	opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	padding-top: clamp(4rem, 10vw, 7rem);
}

.page-hero .container {
	padding: clamp(1.3rem, 2.8vw, 2rem);
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	background: linear-gradient(160deg, rgba(17, 27, 42, 0.86), rgba(11, 17, 29, 0.94));
}

.services-hero .container {
	padding: clamp(2rem, 4vw, 3.2rem);
	border: 1px solid rgba(183, 153, 99, 0.36);
	border-radius: 18px;
	background:
		radial-gradient(circle at 78% 14%, rgba(183, 153, 99, 0.14), transparent 35%),
		linear-gradient(160deg, rgba(17, 27, 42, 0.92), rgba(9, 14, 23, 0.96));
	box-shadow: var(--pge-shadow);
}

.services-hero__subtitle {
	max-width: 66ch;
	margin: 0;
	font-size: 1.06rem;
	color: #d5ddeb;
}

.services-overview h2 {
	margin-bottom: 1rem;
}

.service-overview-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.service-overview-card {
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	padding: 1.15rem;
	background: rgba(15, 23, 36, 0.82);
	transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.service-overview-card:hover {
	transform: translateY(-3px);
	border-color: rgba(183, 153, 99, 0.55);
	background: rgba(15, 23, 36, 0.95);
}

.service-overview-card h3 {
	margin-bottom: 0.45rem;
}

.service-overview-card p {
	margin-bottom: 0.65rem;
	color: #c8d2e3;
}

.service-overview-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 0.65rem;
	border-radius: 10px;
	background: var(--pge-accent-soft);
	color: var(--pge-accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.07em;
}

.services-process .container {
	padding: clamp(1.4rem, 2.8vw, 2rem);
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	background: rgba(12, 20, 32, 0.72);
}

.process-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	margin-top: 1rem;
}

.process-step {
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid var(--pge-border);
	background: rgba(9, 14, 23, 0.66);
}

.process-step__number {
	margin: 0 0 0.45rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--pge-accent);
}

.process-step h3 {
	margin-bottom: 0.35rem;
}

.process-step p {
	margin: 0;
	color: #c8d2e3;
}

.services-page-cta {
	padding-top: 0;
}

.services-page-cta__inner {
	border: 1px solid rgba(183, 153, 99, 0.38);
	border-radius: 16px;
	padding: clamp(1.4rem, 3vw, 2.1rem);
	background: linear-gradient(145deg, rgba(183, 153, 99, 0.08), rgba(15, 23, 36, 0.86));
	display: grid;
	gap: 0.9rem;
	align-items: center;
}

.hero__grid {
	display: grid;
	gap: 1.5rem;
	align-items: stretch;
}

.hero__content {
	padding: clamp(1.4rem, 2.8vw, 2.1rem);
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	background: linear-gradient(160deg, rgba(17, 27, 42, 0.86), rgba(11, 17, 29, 0.94));
	box-shadow: var(--pge-shadow);
}

.hero__content p {
	font-size: 1.02rem;
	max-width: 62ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: 1.2rem 0 1.35rem;
}

.hero-contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.45rem;
}

.hero-contact li {
	margin: 0;
	color: var(--pge-muted);
	font-size: 0.95rem;
}

.hero-contact a {
	color: #fff;
}

.hero__panel {
	padding: clamp(1.3rem, 2.8vw, 2rem);
	border: 1px solid rgba(183, 153, 99, 0.4);
	border-radius: var(--pge-radius);
	background: linear-gradient(150deg, rgba(183, 153, 99, 0.15), rgba(16, 23, 38, 0.88));
	display: grid;
	align-content: center;
	gap: 0.5rem;
}

.hero__panel p {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: #edd7ad;
	margin: 0;
}

.hero__panel h2 {
	margin: 0;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	max-width: 16ch;
}

.split-block {
	display: grid;
	gap: 1.3rem;
}

.split-block > div {
	padding: clamp(1.2rem, 2.4vw, 1.9rem);
	border-radius: var(--pge-radius);
	border: 1px solid var(--pge-border);
	background: rgba(14, 22, 35, 0.55);
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.stat-card {
	padding: 1rem 1.15rem;
	border: 1px solid var(--pge-border);
	border-radius: 14px;
	background: rgba(14, 22, 35, 0.72);
}

.stat-card__value {
	margin: 0;
	font-size: clamp(1.65rem, 3vw, 2.2rem);
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	color: var(--pge-accent);
	line-height: 1.05;
}

.stat-card__label {
	margin: 0.35rem 0 0;
	font-size: 0.86rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.vertical-grid {
	margin-top: 1.4rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.vertical-card {
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	padding: 1.15rem;
	background: rgba(16, 23, 38, 0.7);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.vertical-card:hover {
	transform: translateY(-3px);
	border-color: rgba(183, 153, 99, 0.6);
	background: rgba(16, 23, 38, 0.9);
}

.vertical-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--pge-accent);
	background: var(--pge-accent-soft);
}

.vertical-card__icon svg {
	width: 24px;
	height: 24px;
}

.vertical-card h3 {
	margin: 0;
}

.vertical-card p {
	margin: 0;
	font-size: 0.94rem;
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.2rem;
}

.values-grid article,
.leadership-card,
.vertical-detail,
.post-card,
.contact-card,
.contact-form-wrap,
.legal-content,
.entry-content {
	border: 1px solid var(--pge-border);
	border-radius: var(--pge-radius);
	background: rgba(16, 23, 38, 0.7);
}

.values-grid article,
.leadership-card,
.vertical-detail,
.contact-card {
	padding: 1.1rem;
}

.values-grid h2,
.values-grid h3,
.leadership-card h3,
.vertical-detail h3,
.contact-card h2,
.contact-form-wrap h2,
.legal-content h2 {
	margin-bottom: 0.45rem;
}

.leadership-grid,
.post-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.2rem;
}

.vertical-detail-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.3rem;
}

.vertical-detail ul {
	margin-top: 0.8rem;
}

.entry-content,
.legal-content,
.contact-form-wrap {
	padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.entry-content > *:first-child,
.legal-content > *:first-child {
	margin-top: 0;
}

.entry-content > * {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content .alignwide {
	max-width: 980px;
}

.entry-content .alignfull {
	max-width: none;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: #fff;
}

.entry-content a,
.legal-content a {
	color: var(--pge-accent);
}

.entry-content a:hover,
.legal-content a:hover {
	color: #e9c88f;
}

.cta-band {
	padding-top: 0;
}

.cta-band__inner {
	border: 1px solid rgba(183, 153, 99, 0.42);
	border-radius: 18px;
	background: linear-gradient(150deg, rgba(183, 153, 99, 0.1), rgba(16, 23, 38, 0.88));
	padding: clamp(1.4rem, 3vw, 2.3rem);
	display: grid;
	gap: 1rem;
	align-items: center;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.site-footer {
	margin-top: clamp(3rem, 6vw, 4.5rem);
	border-top: 1px solid rgba(208, 217, 231, 0.13);
	background: rgba(6, 9, 15, 0.93);
	padding: 2.3rem 0 1.6rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.3rem;
}

.footer-brand .site-logo {
	margin-bottom: 0.7rem;
}

.footer-company {
	margin: 0 0 0.4rem;
	font-weight: 700;
	color: #fff;
}

.footer-copy {
	max-width: 36ch;
	font-size: 0.92rem;
}

.footer-nav-wrap h2,
.footer-contact h2 {
	font-size: 1.2rem;
	margin-bottom: 0.45rem;
}

.footer-links,
.legal-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.45rem;
}

.footer-links li,
.legal-links li {
	margin: 0;
}

.footer-links a,
.footer-contact a,
.legal-links a {
	color: var(--pge-muted);
}

.footer-links a:hover,
.footer-contact a:hover,
.legal-links a:hover {
	color: #fff;
}

.footer-meta {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 1.6rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(208, 217, 231, 0.11);
}

.footer-meta p {
	margin: 0;
	font-size: 0.85rem;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.contact-card-stack {
	display: grid;
	gap: 0.85rem;
}

.contact-card p {
	margin: 0;
}

.contact-layout,
.contact-layout p,
.contact-layout li,
.contact-layout h2,
.contact-layout h3 {
	color: var(--pge-text);
}

.contact-layout .contact-card,
.contact-layout .contact-form-wrap {
	background: rgba(10, 17, 28, 0.86);
}

.contact-layout .contact-card p,
.contact-layout .contact-card a,
.contact-layout .text-link {
	color: #e7edf6;
}

.contact-layout .contact-card a:hover,
.contact-layout .text-link:hover {
	color: #fff;
}

body.page-template-template-contact-php .entry-content,
body.page-template-template-contact-php .entry-content p,
body.page-template-template-contact-php .entry-content li {
	color: #d7dfec;
}

.pge-contact-form {
	display: grid;
	gap: 0.85rem;
	margin-top: 1rem;
}

.form-field {
	display: grid;
	gap: 0.35rem;
}

.form-field label {
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #d2d9e5;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.72rem 0.84rem;
	border-radius: 10px;
	border: 1px solid var(--pge-border);
	background: rgba(4, 8, 16, 0.55);
	color: #f0f4fa;
	font-family: inherit;
	font-size: 0.95rem;
}

.form-field textarea {
	min-height: 170px;
	resize: vertical;
}

.form-notice {
	padding: 0.74rem 0.9rem;
	border-radius: 10px;
	margin: 0.7rem 0 1rem;
	border: 1px solid var(--pge-border);
}

.form-notice p {
	margin: 0;
	font-size: 0.92rem;
}

.form-notice--success {
	background: rgba(42, 129, 74, 0.2);
	border-color: rgba(88, 177, 120, 0.35);
}

.form-notice--error {
	background: rgba(155, 65, 65, 0.2);
	border-color: rgba(189, 90, 90, 0.35);
}

.pge-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.post-card {
	padding: 1.2rem;
}

.post-card h2 {
	font-size: 1.5rem;
	margin-bottom: 0.35rem;
}

.post-card p {
	font-size: 0.9rem;
}

.pagination-wrap {
	margin-top: 1.4rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.55rem;
	margin: 0 0.2rem 0.3rem 0;
	border-radius: 8px;
	border: 1px solid var(--pge-border);
	background: rgba(16, 23, 38, 0.65);
	font-size: 0.9rem;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--pge-accent);
	color: #fff;
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (min-width: 700px) {
	.hero__grid {
		grid-template-columns: 1.6fr 1fr;
	}

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

	.vertical-grid,
	.values-grid,
	.contact-card-stack,
	.service-overview-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.footer-meta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.legal-links {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}
}

@media (min-width: 960px) {
	.site-header__inner {
		min-height: 88px;
	}

	.nav-toggle {
		display: none;
	}

	.primary-nav {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		background: transparent;
		border: 0;
		padding: 0;
		display: flex;
		align-items: center;
		gap: 1.15rem;
	}

	.menu {
		flex-direction: row;
		align-items: center;
		gap: 1.1rem;
	}

	.menu a {
		padding: 0;
		font-size: 0.88rem;
		letter-spacing: 0.02em;
	}

	.nav-cta {
		margin-top: 0;
	}

	.split-block {
		grid-template-columns: 1fr 1.2fr;
	}

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

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

	.vertical-grid > :last-child:nth-child(5) {
		grid-column: span 2;
	}

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

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

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

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

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

	.contact-layout {
		grid-template-columns: 0.95fr 1.35fr;
		align-items: start;
	}

	.cta-band__inner {
		grid-template-columns: 1.4fr auto;
		gap: 1.5rem;
	}

	.services-page-cta__inner {
		grid-template-columns: 1.35fr auto;
		gap: 1.4rem;
	}

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

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

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

	.reveal {
		opacity: 1;
		transform: none;
	}
}
