/**
 * Project-wide CSS that cannot be represented by Divi 5 Design Variables,
 * Element Presets or Option Group Presets.
 *
 * Keep this file intentionally small. Page-specific styling belongs in the
 * corresponding native Divi 5 layout or preset.
 */

@font-face {
	font-family: "Manrope Local";
	src: url("../fonts/manrope/Manrope-VariableFont_wght.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

/* One shared vertical grid for every structural site container. */
:root {
	--tnp-container-max: 1240px;
	--tnp-container-width: min(var(--tnp-container-max), calc(100% - 32px));
	--tnp-container-inset: max(16px, calc((100% - var(--tnp-container-max)) / 2));
}

#page-container
	#et-boc
	:is(.et-l--post, .et-l--body)
	> .et_builder_inner_content
	> .et_pb_section:not(#raschet) {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

#page-container
	#et-boc
	:is(.et-l--post, .et-l--body)
	> .et_builder_inner_content
	> .et_pb_section:not(#raschet)
	> .et_pb_row,
#main-content > .container {
	box-sizing: border-box;
	width: var(--tnp-container-width) !important;
	max-width: var(--tnp-container-max) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

/* Site-wide request dialog. */
body.tnp-request-modal-is-open {
	overflow: hidden;
}

.tnp-legacy-form-hidden {
	display: none !important;
}

.tnp-request-modal[hidden] {
	display: none !important;
}

.tnp-request-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 24px;
	font-family: "Manrope Local", Manrope, sans-serif;
}

.tnp-request-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(23 26 31 / 72%);
	backdrop-filter: blur(7px);
	opacity: 0;
	transition: opacity 180ms ease;
}

.tnp-request-modal__dialog {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
	width: min(820px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	overflow: auto;
	background: #ffffff;
	border: 1px solid #e1e6ea;
	border-radius: 28px;
	box-shadow: 0 28px 90px rgb(23 26 31 / 28%);
	opacity: 0;
	transform: translateY(18px) scale(0.985);
	transition: opacity 180ms ease, transform 180ms ease;
}

.tnp-request-modal--visible .tnp-request-modal__backdrop,
.tnp-request-modal--visible .tnp-request-modal__dialog {
	opacity: 1;
}

.tnp-request-modal--visible .tnp-request-modal__dialog {
	transform: translateY(0) scale(1);
}

.tnp-request-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #171a1f;
	background: rgb(255 255 255 / 94%);
	border: 1px solid rgb(23 26 31 / 14%);
	border-radius: 50%;
	cursor: pointer;
}

.tnp-request-modal__close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.tnp-request-modal__aside {
	position: relative;
	padding: 42px 34px 34px;
	color: #fff;
	background: linear-gradient(145deg, #171a1f 0%, #343a42 100%);
	border-radius: 27px 0 0 27px;
	overflow: hidden;
}

.tnp-request-modal__aside::after {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -110px;
	width: 260px;
	height: 260px;
	border: 48px solid rgb(246 201 69 / 15%);
	border-radius: 50%;
}

.tnp-request-modal__eyebrow {
	margin: 0 0 16px;
	color: #f6c945;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tnp-request-modal__aside h2 {
	margin: 0 0 16px;
	padding: 0;
	color: #fff;
	font-size: clamp(30px, 3.2vw, 43px);
	font-weight: 700;
	line-height: 1.08;
}

.tnp-request-modal__aside > p:not(.tnp-request-modal__eyebrow) {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.65;
}

.tnp-request-modal__aside ul {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 13px;
	margin: 0 0 36px;
	padding: 0 !important;
	list-style: none !important;
}

.tnp-url-stub__details li::marker {
	content: '';
}

.tnp-request-modal__aside li {
	position: relative;
	padding-left: 27px;
	font-size: 14px;
	line-height: 1.45;
}

.tnp-request-modal__aside li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #f6c945;
	font-weight: 800;
}

.tnp-request-modal__phone {
	position: relative;
	z-index: 1;
	display: inline-flex;
	flex-direction: column;
	color: #fff;
	text-decoration: none;
}

.tnp-request-modal__phone span {
	margin-bottom: 2px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
}

.tnp-request-modal__phone strong {
	font-size: 19px;
	font-weight: 700;
}

.tnp-request-modal__form-wrap {
	display: grid;
	align-items: center;
	padding: 36px 40px 30px;
}

.tnp-request-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 14px;
}

.tnp-request-form__field {
	display: grid;
	gap: 7px;
	margin: 0;
}

.tnp-request-form__consent,
.tnp-request-form__submit,
.tnp-request-form__status {
	grid-column: 1 / -1;
}

.tnp-request-form__field > span {
	color: #343a42;
	font-size: 12px;
	font-weight: 700;
}

.tnp-request-form__field b {
	color: #c84635;
}

.tnp-request-form input,
.tnp-request-form select,
.tnp-request-form textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	color: #171a1f;
	background: #fff;
	border: 1px solid #e1e6ea;
	border-radius: 12px;
	font: inherit;
	font-size: 14px;
	outline: none;
	transition: border-color 140ms ease, box-shadow 140ms ease;
}

.tnp-request-form textarea {
	min-height: 78px;
	resize: vertical;
}

.tnp-request-form input:focus,
.tnp-request-form select:focus,
.tnp-request-form textarea:focus {
	border-color: #d9a900;
	box-shadow: 0 0 0 3px rgb(246 201 69 / 24%);
}

.tnp-request-form__consent {
	display: grid;
	grid-template-columns: 19px 1fr;
	gap: 10px;
	align-items: start;
	margin: 1px 0 0;
	color: #69727d;
	font-size: 11px;
	line-height: 1.45;
}

.tnp-request-form__consent input {
	width: 18px;
	height: 18px;
	min-height: 0;
	margin: 1px 0 0;
	padding: 0;
	accent-color: #f6c945;
}

.tnp-request-form__consent a {
	color: #343a42;
	text-decoration: underline;
	text-decoration-color: #d9a900;
	text-underline-offset: 2px;
}

.tnp-request-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 13px 20px;
	color: #171a1f;
	background: #f6c945;
	border: 0;
	border-radius: 13px;
	box-shadow: 0 10px 24px rgb(23 26 31 / 16%);
	font: inherit;
	font-weight: 750;
	cursor: pointer;
	transition: background-color 150ms ease, transform 150ms ease;
}

.tnp-request-form__submit:hover,
.tnp-request-form__submit:focus-visible {
	background: #d9a900;
	transform: translateY(-1px);
}

.tnp-request-form__submit:disabled {
	opacity: 0.65;
	cursor: wait;
	transform: none;
}

.tnp-request-form__submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tnp-request-form__status {
	min-height: 16px;
	margin: -8px 0 0;
	color: #c84635;
	font-size: 12px;
	text-align: center;
}

.tnp-request-form__trap {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.tnp-request-form__success {
	padding: 30px 10px;
	text-align: center;
	outline: none;
}

.tnp-request-form__success > span {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	color: #fff;
	background: #2f7a55;
	border-radius: 50%;
	font-size: 28px;
}

.tnp-request-form__success h3 {
	margin: 0 0 10px;
	color: #171a1f;
	font-size: 28px;
}

.tnp-request-form__success p {
	margin: 0 0 22px;
	color: #69727d;
	line-height: 1.6;
}

.tnp-request-form__success button {
	padding: 11px 24px;
	color: #fff;
	background: #2f7a55;
	border: 0;
	border-radius: 10px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

@media (max-width: 760px) {
	.tnp-request-modal {
		align-items: end;
		padding: 12px 12px 0;
	}

	.tnp-request-modal__dialog {
		grid-template-columns: 1fr;
		max-height: calc(100vh - 12px);
		border-radius: 24px 24px 0 0;
	}

	.tnp-request-modal__aside {
		padding: 26px 58px 20px 22px;
		border-radius: 23px 23px 0 0;
	}

	.tnp-request-modal__aside h2 {
		font-size: 28px;
	}

	.tnp-request-modal__aside > p:not(.tnp-request-modal__eyebrow) {
		margin-bottom: 0;
	}

	.tnp-request-modal__aside ul,
	.tnp-request-modal__phone {
		display: none;
	}

	.tnp-request-modal__form-wrap {
		padding: 22px 20px 24px;
	}

	.tnp-request-form {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tnp-request-form__field,
	.tnp-request-form__consent,
	.tnp-request-form__submit,
	.tnp-request-form__status {
		grid-column: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tnp-request-modal__backdrop,
	.tnp-request-modal__dialog,
	.tnp-request-form__submit {
		transition: none;
	}
}

/* Native Divi 5 first-pass layouts for migrated production URL entities. */
.tnp-url-stub {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: clamp(32px, 6vw, 72px);
	border: 1px solid #e1e6ea;
	border-radius: 28px;
	background:
		radial-gradient(circle at 100% 0, rgb(246 201 69 / 22%), transparent 36%),
		#fff;
	box-shadow: 0 22px 70px rgb(23 26 31 / 9%);
	color: #343a42;
}

.tnp-url-stub__eyebrow {
	margin: 0 0 12px;
	color: #171a1f;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tnp-url-stub h1 {
	max-width: 820px;
	margin: 0;
	color: #171a1f;
	font-size: clamp(34px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.04;
}

.tnp-url-stub__lead {
	max-width: 720px;
	margin: 24px 0 0;
	font-size: clamp(18px, 2.4vw, 22px);
	line-height: 1.55;
}

.tnp-url-stub__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 32px 0 0;
	padding: 0 !important;
	list-style: none !important;
}

.tnp-url-stub__details li {
	padding: 18px 20px;
	border: 1px solid #e1e6ea;
	border-radius: 16px;
	background: rgb(246 247 249 / 86%);
	line-height: 1.45;
}

.tnp-url-stub__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.tnp-url-stub__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 2px solid #f6c945;
	border-radius: 999px;
	background: #f6c945;
	color: #171a1f !important;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.tnp-url-stub__action:hover,
.tnp-url-stub__action:focus-visible {
	background: #d9a900;
	border-color: #d9a900;
}

.tnp-url-stub__action--secondary {
	border-color: #171a1f;
	background: transparent;
	color: #171a1f !important;
}

.tnp-url-stub__action--secondary:hover,
.tnp-url-stub__action--secondary:focus-visible {
	border-color: #d9a900;
	background: #fff8dd;
	color: #171a1f !important;
}

.tnp-url-stub__note {
	margin: 26px 0 0;
	padding-left: 16px;
	border-left: 3px solid #f6c945;
	color: #69727d;
	font-size: 15px;
}

.tnp-archive-heading {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 36px 0 42px;
	padding: clamp(26px, 5vw, 52px);
	border: 1px solid #e1e6ea;
	border-radius: 24px;
	background: linear-gradient(135deg, #fff8dd 0%, #fff 70%);
}

.tnp-archive-heading__eyebrow {
	margin: 0 0 10px;
	color: #171a1f;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tnp-archive-heading h1 {
	margin: 0;
	color: #171a1f;
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.05;
}

.tnp-archive-heading__lead {
	max-width: 720px;
	margin: 18px 0 0;
	color: #69727d;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.55;
}

@media (max-width: 640px) {
	.tnp-url-stub {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.tnp-url-stub__details {
		grid-template-columns: 1fr;
	}

	.tnp-url-stub__action {
		width: 100%;
	}

	.tnp-archive-heading {
		width: 100%;
		margin-block: 24px 32px;
		padding: 26px 20px;
		border-radius: 18px;
	}
}

/* Keep keyboard navigation visible on both light and dark surfaces. */
:where(
		a,
		button,
		input,
		select,
		textarea,
		summary,
		[tabindex]:not([tabindex="-1"])
	):focus-visible {
	outline: 3px solid #171a1f;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #f6c945;
}

.tnp-skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100000;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background: #171a1f;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-200%);
}

.tnp-skip-link:focus-visible {
	transform: translateY(0);
}

:where(.et_pb_text_inner, .et_pb_blurb_description, .entry-content)
	:where(p, li)
	a:not(.et_pb_button) {
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

#raschet,
#zamer {
	scroll-margin-top: 6rem;
}

::selection {
	background: #f6c945;
	color: #171a1f;
}

/* Homepage hero: one responsive background scene with a focused conversion path. */
#tnp-home-hero {
	--tnp-hero-row-width: var(--tnp-container-width);
	display: flex !important;
	position: relative;
	isolation: isolate;
	flex-direction: column;
	justify-content: space-between;
	min-height: clamp(660px, calc(100svh - 78px), 820px);
	padding: 0 !important;
	overflow: hidden;
	background-color: #dedad3 !important;
	background-image:
		linear-gradient(
			90deg,
			rgb(247 245 241 / 34%) 0%,
			rgb(247 245 241 / 22%) 36%,
			rgb(247 245 241 / 0%) 61%
		),
		url("../images/hero-installation-team.webp") !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
	color: #171a1f;
}

#tnp-home-hero > .et_pb_row {
	position: relative;
	z-index: 1;
	width: var(--tnp-hero-row-width) !important;
	max-width: var(--tnp-container-max) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

#tnp-home-hero__content {
	display: flex !important;
	flex: 1 1 auto;
	align-items: center;
	min-height: 0;
	padding: clamp(76px, 8vw, 118px) 0 44px !important;
}

#tnp-home-hero__panel {
	flex: 0 1 660px !important;
	width: min(660px, 58%) !important;
	max-width: 660px !important;
	margin: 0 !important;
	row-gap: 0 !important;
}

#tnp-home-hero__panel > .et_pb_module {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

#tnp-home-hero .tnp-home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin: 0 0 20px;
	padding: 7px 13px;
	border: 1px solid rgb(23 26 31 / 15%);
	border-radius: 999px;
	background: rgb(255 255 255 / 62%);
	box-shadow: 0 7px 24px rgb(23 26 31 / 6%);
	color: #343a42;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

#tnp-home-hero h1 {
	max-width: 660px;
	margin: 0;
	padding: 0;
	color: #171a1f;
	font-size: clamp(2.75rem, 4.45vw, 4.2rem);
	font-weight: 800;
	line-height: 1.035;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

#tnp-home-hero .tnp-home-hero__lead {
	max-width: 575px;
	margin: 22px 0 0;
	color: #343a42;
	font-size: clamp(1.05rem, 1.45vw, 1.22rem);
	font-weight: 520;
	line-height: 1.62;
}

#tnp-home-hero .tnp-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 30px;
}

#tnp-home-hero .tnp-home-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

#tnp-home-hero .tnp-home-hero__cta--primary {
	background: #f6c945;
	box-shadow: 0 12px 28px rgb(23 26 31 / 16%);
	color: #171a1f;
}

#tnp-home-hero .tnp-home-hero__cta--secondary {
	border-color: rgb(23 26 31 / 30%);
	background: rgb(255 255 255 / 68%);
	color: #171a1f;
	backdrop-filter: blur(8px);
}

#tnp-home-hero .tnp-home-hero__cta:hover,
#tnp-home-hero .tnp-home-hero__cta:focus-visible {
	transform: translateY(-2px);
}

#tnp-home-hero .tnp-home-hero__cta--primary:hover,
#tnp-home-hero .tnp-home-hero__cta--primary:focus-visible {
	background: #e9bb31;
	box-shadow: 0 16px 34px rgb(23 26 31 / 20%);
}

#tnp-home-hero .tnp-home-hero__cta--secondary:hover,
#tnp-home-hero .tnp-home-hero__cta--secondary:focus-visible {
	border-color: rgb(23 26 31 / 48%);
	background: rgb(255 255 255 / 86%);
}

#tnp-home-hero .tnp-home-hero__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	align-items: center;
	margin: 17px 0 0;
	color: #4f5761;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.45;
}

#tnp-home-hero .tnp-home-hero__contact a {
	color: #171a1f;
	font-size: 1rem;
	font-weight: 800;
	text-decoration-thickness: 0.07em;
}

#tnp-home-hero__proof {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-bottom: 24px !important;
	padding: 0 !important;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 72%);
	border-radius: 16px;
	background: rgb(255 255 255 / 84%) !important;
	box-shadow: 0 16px 42px rgb(23 26 31 / 13%);
	backdrop-filter: blur(12px);
}

#tnp-home-hero__proof > .et_pb_column {
	position: relative;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 15px 18px !important;
}

#tnp-home-hero__proof > .et_pb_column + .et_pb_column::before {
	position: absolute;
	top: 15px;
	bottom: 15px;
	left: 0;
	width: 1px;
	background: rgb(23 26 31 / 10%);
	content: "";
}

#tnp-home-hero__proof .et_pb_text,
#tnp-home-hero__proof .et_pb_text_inner,
#tnp-home-hero__proof p {
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

#tnp-home-hero__proof .tnp-home-hero__proof-label {
	display: block;
	margin-bottom: 2px;
	color: #69727d;
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.3;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

#tnp-home-hero__proof strong {
	display: block;
	color: #171a1f;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.35;
}

/* Desktop cover transition: following sections scroll over the pinned Hero. */
@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
	body.home.tnp-hero-cover-enabled #tnp-home-hero {
		position: sticky;
		top: 53px;
		z-index: 0;
	}

	body.home.admin-bar.tnp-hero-cover-enabled #tnp-home-hero {
		top: 85px;
	}

	body.home.tnp-hero-cover-enabled #tnp-home-hero ~ .et_pb_section {
		position: relative;
		z-index: 2;
	}

	body.home.tnp-hero-cover-enabled #raschet {
		border-top: 1px solid rgb(23 26 31 / 7%);
		background-color: #f6f7f9 !important;
		box-shadow: 0 -24px 54px rgb(23 26 31 / 14%);
	}
}

@media (max-width: 1180px) {
	#tnp-home-hero {
		background-image:
			linear-gradient(
				90deg,
				rgb(247 245 241 / 54%) 0%,
				rgb(247 245 241 / 36%) 46%,
				rgb(247 245 241 / 0%) 70%
			),
			url("../images/hero-installation-team.webp") !important;
	}

	#tnp-home-hero__panel {
		width: min(610px, 58%) !important;
		max-width: 610px !important;
	}
}

@media (max-width: 900px) {
	#tnp-home-hero {
		min-height: 0;
		background-color: #f1eee9 !important;
		background-image:
			linear-gradient(
				180deg,
				rgb(241 238 233 / 0%) 0,
				rgb(241 238 233 / 0%) 255px,
				rgb(241 238 233 / 92%) 325px,
				#f1eee9 385px,
				#f1eee9 100%
			),
			url("../images/hero-installation-team.webp") !important;
		background-position: 0 0, right top !important;
		background-size: 100% 100%, auto 385px !important;
	}

	#tnp-home-hero__content {
		padding: 330px 0 30px !important;
	}

	#tnp-home-hero__panel {
		flex-basis: auto !important;
		width: 100% !important;
		max-width: 680px !important;
	}

	#tnp-home-hero h1 {
		max-width: 680px;
		font-size: clamp(2.45rem, 8vw, 3.65rem);
	}

	#tnp-home-hero .tnp-home-hero__lead {
		max-width: 620px;
	}

	#tnp-home-hero__proof {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 16px !important;
	}

	#tnp-home-hero__proof > .et_pb_column:nth-child(3)::before {
		display: none;
	}

	#tnp-home-hero__proof > .et_pb_column:nth-child(n + 3)::after {
		position: absolute;
		top: 0;
		right: 18px;
		left: 18px;
		height: 1px;
		background: rgb(23 26 31 / 10%);
		content: "";
	}
}

@media (max-width: 540px) {
	#tnp-home-hero {
		background-position: 0 0, right top !important;
		background-size: 100% 100%, auto 330px !important;
	}

	#tnp-home-hero__content {
		padding-top: 284px !important;
		padding-bottom: 26px !important;
	}

	#tnp-home-hero .tnp-home-hero__eyebrow {
		min-height: 30px;
		margin-bottom: 16px;
		padding: 6px 10px;
		font-size: 0.72rem;
	}

	#tnp-home-hero h1 {
		font-size: clamp(2.15rem, 10.7vw, 2.85rem);
		line-height: 1.04;
	}

	#tnp-home-hero .tnp-home-hero__lead {
		margin-top: 17px;
		font-size: 1rem;
		line-height: 1.55;
	}

	#tnp-home-hero .tnp-home-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
		margin-top: 24px;
	}

	#tnp-home-hero .tnp-home-hero__cta {
		width: 100%;
		min-height: 54px;
		padding-right: 16px;
		padding-left: 16px;
	}

	#tnp-home-hero__proof > .et_pb_column {
		padding: 13px 12px !important;
	}

	#tnp-home-hero__proof > .et_pb_column + .et_pb_column::before {
		top: 13px;
		bottom: 13px;
	}

	#tnp-home-hero__proof > .et_pb_column:nth-child(n + 3)::after {
		right: 12px;
		left: 12px;
	}

	#tnp-home-hero__proof .tnp-home-hero__proof-label {
		font-size: 0.65rem;
	}

	#tnp-home-hero__proof strong {
		font-size: 0.84rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	#tnp-home-hero .tnp-home-hero__cta {
		transition: none;
	}
}

/* Homepage material catalogue: texture-first cards in one responsive grid. */
#tnp-home-catalog-grid {
	--tnp-catalog-gap: clamp(14px, 1.6vw, 22px);

	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: var(--tnp-catalog-gap);
}

#tnp-home-catalog-grid > .et_pb_column {
	width: auto !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
}

#tnp-home-catalog-grid .et_pb_blurb {
	height: 100%;
	padding: 0 !important;
	overflow: hidden;
	background: #ffffff;
}

#tnp-home-catalog-grid .et_pb_blurb_content {
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: none;
}

#tnp-home-catalog-grid .et_pb_main_blurb_image,
#tnp-home-catalog-grid .et_pb_main_blurb_image > a,
#tnp-home-catalog-grid .et_pb_main_blurb_image .et_pb_image_wrap {
	display: block;
	width: 100%;
}

#tnp-home-catalog-grid .et_pb_main_blurb_image {
	margin: 0 !important;
}

#tnp-home-catalog-grid .et_pb_main_blurb_image .et_pb_image_wrap {
	aspect-ratio: 1;
	overflow: hidden;
	background: #f0f1f2;
}

#tnp-home-catalog-grid .et_pb_main_blurb_image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

#tnp-home-catalog-grid .et_pb_blurb_container {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(20px, 2.1vw, 28px);
}

#tnp-home-catalog-grid .et_pb_module_header {
	margin-bottom: 8px;
}

@media (max-width: 980px) {
	#tnp-home-catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 22px;
	}
}

@media (max-width: 767px) {
	#tnp-home-catalog-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Reusable archive-page content patterns that native module presets cannot express. */
.tnp-seo-breadcrumb-shell {
	width: min(1180px, calc(100% - 32px));
	margin: clamp(18px, 2.5vw, 30px) auto 0;
}

.tnp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.55rem;
	align-items: center;
	color: #5d6671;
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.5;
}

.tnp-breadcrumb a {
	color: #3f4750;
}

.tnp-comparison-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #e1e5e9;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgb(23 26 31 / 7%);
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-inline: contain;
}

.tnp-table-scroll-hint {
	display: none;
	margin: 0 0 10px;
	color: #525b65;
	font-size: 0.86rem;
	font-weight: 700;
}

.tnp-comparison-table {
	width: 100%;
	min-width: 760px;
	margin: 0 !important;
	border: 0;
	border-collapse: collapse;
	color: #171a1f;
	font-size: 0.95rem;
	line-height: 1.55;
}

.tnp-comparison-table th,
.tnp-comparison-table td {
	padding: 15px 16px;
	border: 0;
	border-bottom: 1px solid #e6e9ed;
	vertical-align: top;
	text-align: left;
}

.tnp-comparison-table th {
	background: #fff8dd;
	font-weight: 800;
}

.tnp-comparison-table tbody tr:last-child td {
	border-bottom: 0;
}

.tnp-comparison-table tbody tr:nth-child(even) td {
	background: #f8f9fa;
}

.tnp-catalog-note {
	margin-top: 16px;
	color: #525b65;
	font-size: 0.93rem;
}

.tnp-faq-list {
	display: grid;
	gap: 12px;
}

.tnp-faq-list details {
	padding: 0 18px;
	border: 1px solid #e1e5e9;
	border-radius: 14px;
	background: #ffffff;
}

.tnp-faq-list summary {
	display: list-item;
	min-height: 48px;
	padding: 14px 4px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1.45;
}

.tnp-faq-list details > :not(summary) {
	margin: 0 0 16px;
}

/* Keep the three matte portfolio cards aligned despite mixed source ratios. */
body.category-matovye .et-l--body .et_pb_blurb .et_pb_main_blurb_image,
body.category-matovye .et-l--body .et_pb_blurb .et_pb_main_blurb_image > a,
body.category-matovye .et-l--body .et_pb_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
	display: block;
	width: 100%;
}

body.category-matovye .et-l--body .et_pb_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

body.category-matovye .et-l--body .et_pb_blurb .et_pb_main_blurb_image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

@media (max-width: 767px) {
	#raschet,
	#zamer {
		scroll-margin-top: 5rem;
	}

	.tnp-comparison-table {
		min-width: 680px;
		font-size: 0.9rem;
	}

	.tnp-comparison-table th,
	.tnp-comparison-table td {
		padding: 13px 14px;
	}
}

@media (max-width: 980px) {
	.tnp-table-scroll-hint {
		display: block;
	}
}

/* Global Divi 5 header, enhanced without replacing the native Menu module. */
.et-l--header {
	position: sticky;
	top: 0;
	z-index: 9998;
	isolation: isolate;
	font-family: "Manrope Local", Arial, sans-serif;
}

.admin-bar .et-l--header {
	top: 32px;
}

.et-l--header .et_pb_section {
	padding: 0 !important;
	border-bottom: 1px solid #e1e6ea;
	background: rgb(255 255 255 / 96%) !important;
	box-shadow: 0 10px 30px rgb(23 26 31 / 7%);
	backdrop-filter: blur(14px);
	transition: box-shadow 200ms ease;
}

.et-l--header.tnp-header--compact .et_pb_section {
	box-shadow: 0 8px 24px rgb(23 26 31 / 11%);
}

.et-l--header .et_pb_row {
	width: var(--tnp-container-width) !important;
	max-width: var(--tnp-container-max) !important;
	padding: 4px 0 !important;
	transition: padding 200ms ease;
}

.et-l--header.tnp-header--compact .et_pb_row {
	padding: 1px 0 !important;
}

.et-l--header .et_pb_column,
.et-l--header .et_pb_menu,
.et-l--header .et_pb_menu__wrap {
	min-width: 0;
}

.et-l--header .et_pb_menu {
	position: relative;
	background: transparent !important;
}

.et-l--header .et_pb_menu_inner_container {
	min-height: 58px;
	align-items: center;
	flex-wrap: nowrap !important;
	gap: 0 !important;
	transition: min-height 200ms ease;
}

.et-l--header.tnp-header--compact .et_pb_menu_inner_container {
	min-height: 50px;
}

.et-l--header .et_pb_menu__logo-wrap {
	width: 188px;
	max-width: 188px;
	margin-right: 14px;
	flex: 0 0 188px;
	text-decoration: none;
	transition: width 200ms ease, max-width 200ms ease, flex-basis 200ms ease;
}

.et-l--header .et_pb_menu__logo {
	margin-right: 0 !important;
	flex: 0 0 100%;
}

.et-l--header .et_pb_menu__logo,
.et-l--header .et_pb_menu__logo img {
	display: block;
	width: 100% !important;
	max-width: 188px !important;
	height: auto !important;
	transition: max-width 200ms ease;
}

.et-l--header .tnp-header-quick-call {
	display: none;
}

.et-l--header .et_pb_menu__wrap {
	flex: 1 1 0 !important;
	justify-content: center;
}

.et-l--header .et-menu-nav > ul {
	align-items: center !important;
	gap: 4px;
	margin: 0 !important;
}

@media (min-width: 1181px) {
	.et-l--header .et_pb_menu__wrap,
	.et-l--header.tnp-header--compact .et_pb_menu__wrap {
		padding-right: 0 !important;
		justify-content: flex-end !important;
	}

	.et-l--header .et-menu-nav > ul {
		flex-wrap: nowrap !important;
	}
}

.et-l--header .et-menu-nav > ul > li {
	align-items: center;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.et-l--header .et-menu-nav > ul > li:not(.tnp-header-contact-item) > a {
	box-sizing: border-box;
	display: inline-flex;
	min-height: 38px;
	padding: 0 9px !important;
	align-items: center;
	border-radius: 10px;
	color: #171a1f !important;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 13.5px;
	font-weight: 650;
	letter-spacing: -0.01em;
	line-height: 1.15;
	white-space: nowrap;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.et-l--header .et-menu-nav > ul > li.menu-item-has-children > a {
	padding-right: 23px !important;
}

/* Replace Divi's textual icon-glyph ("3") with a CSS-only chevron. */
.et-l--header .et-menu-nav > ul > li.menu-item-has-children > a::after {
	content: "" !important;
	top: 50% !important;
	right: 8px !important;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	border: solid currentcolor;
	border-width: 0 2px 2px 0;
	font-family: inherit !important;
	transform: rotate(45deg);
	transition: transform 160ms ease;
}

.et-l--header .et-menu-nav > ul > li.menu-item-has-children:hover > a::after,
.et-l--header .et-menu-nav > ul > li.menu-item-has-children:focus-within > a::after {
	margin-top: -2px;
	transform: rotate(225deg);
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced {
	border-radius: 10px;
	transition: background-color 160ms ease, box-shadow 160ms ease;
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced > a {
	min-height: 38px;
	padding: 0 4px 0 9px !important;
	background: transparent !important;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-enhanced > a::after {
	content: none !important;
	display: none !important;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle {
	display: inline-flex;
	width: 32px;
	height: 38px;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #171a1f;
	cursor: pointer;
	transition: background-color 160ms ease;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle span {
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border: solid currentcolor;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: margin 160ms ease, transform 160ms ease;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle:hover,
.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle[aria-expanded="true"] {
	background: transparent;
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced > a:focus,
.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle:focus {
	outline: 0 !important;
	box-shadow: none !important;
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced:focus-within {
	box-shadow: inset 0 0 0 2px rgb(217 169 0 / 58%);
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-toggle[aria-expanded="true"] span {
	margin-top: 4px;
	transform: rotate(225deg);
}

.et-l--header .et-menu-nav > ul > li > a:hover,
.et-l--header .et-menu-nav > ul > li.current-menu-item > a,
.et-l--header .et-menu-nav > ul > li.current-menu-ancestor > a {
	background: #fff8dd;
	color: #171a1f !important;
	opacity: 1;
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced:hover,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced:focus-within,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-is-open,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced.current-menu-item,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced.current-menu-ancestor {
	background: #fff8dd;
}

.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced > a:hover,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced.current-menu-item > a,
.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced.current-menu-ancestor > a {
	background: transparent;
}

.et-l--header .et-menu-nav > ul > li.tnp-header-contact-item {
	box-sizing: border-box;
	display: flex !important;
	min-width: 159px;
	min-height: 38px;
	margin: 0 5px 0 7px !important;
	padding: 0 0 0 12px !important;
	align-items: flex-start !important;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid #e1e6ea;
	line-height: 1.15;
}

.et-l--header .et-menu-nav > ul > li.tnp-header-contact-item > .tnp-header-phone {
	display: inline-flex;
	min-height: 0;
	padding: 2px 0 !important;
	align-items: center;
	border-radius: 0;
	background: transparent !important;
	color: #171a1f !important;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.015em;
}

.et-l--header .tnp-header-phone__label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.et-l--header .tnp-header-phone:hover .tnp-header-phone__number {
	text-decoration: underline;
	text-decoration-color: #d9a900;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.et-l--header .tnp-header-hours {
	display: flex;
	max-height: 18px;
	margin-top: 3px;
	align-items: center;
	gap: 6px;
	color: #69727d;
	font-size: 12px;
	font-weight: 650;
	white-space: nowrap;
	transition: max-height 160ms ease, margin 160ms ease, opacity 160ms ease;
}

.et-l--header .tnp-header-hours__status {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f6c945;
	box-shadow: 0 0 0 3px rgb(246 201 69 / 18%);
	transition: background-color 160ms ease, box-shadow 160ms ease;
}

.et-l--header .tnp-header-hours__status--open {
	background: #2fa866;
	box-shadow: 0 0 0 3px rgb(47 168 102 / 20%);
}

@keyframes tnp-business-hours-open-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgb(47 168 102 / 20%);
	}

	50% {
		box-shadow: 0 0 0 5px rgb(47 168 102 / 8%);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.et-l--header .tnp-header-hours__status--open {
		animation: tnp-business-hours-open-pulse 2.8s ease-in-out infinite;
	}
}

.et-l--header.tnp-header--compact .et-menu-nav > ul > li.tnp-header-contact-item {
	min-height: 36px;
}

.et-l--header.tnp-header--compact .et-menu-nav > ul > li.tnp-header-contact-item > .tnp-header-phone {
	padding: 0 !important;
}

.et-l--header.tnp-header--compact .tnp-header-hours {
	max-height: 0;
	margin-top: 0;
	overflow: hidden;
	opacity: 0;
}

.et-l--header .et-menu-nav > ul > li > a[href$="#zamer"] {
	margin-left: 1px;
	min-height: 38px;
	padding: 0 14px !important;
	background: #f6c945;
	box-shadow: 0 7px 18px rgb(23 26 31 / 11%);
	font-weight: 800 !important;
}

.et-l--header .et-menu-nav > ul > li > a[href$="#zamer"]:hover,
.et-l--header .et-menu-nav > ul > li.current-menu-item > a[href$="#zamer"] {
	background: #d9a900;
	transform: none;
}

/* Compact desktop state changes height only, so the sticky header cannot jump sideways. */
.et-l--header.tnp-header--compact .et-menu-nav > ul > li:not(.tnp-header-contact-item) > a {
	min-height: 36px;
}

.et-l--header.tnp-header--compact .et-menu-nav > ul > li > a[href$="#zamer"] {
	min-height: 36px;
}

.et-l--header.tnp-header--compact .et_pb_menu__menu .tnp-desktop-submenu-toggle {
	height: 36px;
}

.et-l--header .et-menu-nav .sub-menu {
	width: 250px;
	margin-top: 9px;
	padding: 8px;
	border: 1px solid #e1e6ea;
	border-top: 3px solid #f6c945;
	border-radius: 0 0 14px 14px;
	background: #ffffff;
	box-shadow: 0 20px 48px rgb(23 26 31 / 16%);
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-enhanced > .sub-menu {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-is-open > .sub-menu {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	animation: tnp-desktop-submenu-in 160ms ease both;
}

.et-l--header .et_pb_menu__menu .tnp-desktop-submenu-enhanced > .sub-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	background: transparent;
	pointer-events: auto;
}

.et-l--header .et-menu-nav .sub-menu li,
.et-l--header .et-menu-nav .sub-menu a {
	width: 100%;
}

.et-l--header .et-menu-nav .sub-menu > li {
	box-sizing: border-box;
	margin: 0;
	padding: 0 !important;
}

.et-l--header .et-menu-nav .sub-menu a {
	box-sizing: border-box;
	display: flex;
	padding: 10px 11px;
	align-items: flex-start;
	gap: 8px;
	border-radius: 9px;
	color: #171a1f !important;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.3;
}

.et-l--header .et-menu-nav .sub-menu a::before {
	content: "";
	display: block;
	flex: 0 0 5px;
	width: 5px;
	height: 5px;
	margin: 6px 0 0;
	border-radius: 50%;
	background: #f6c945;
}

.et-l--header .et-menu-nav .sub-menu a:hover,
.et-l--header .et-menu-nav .sub-menu a:focus-visible {
	background: #fff8dd;
	opacity: 1;
}

@media (max-width: 1320px) and (min-width: 1181px) {
	.et-l--header .et-menu-nav > ul {
		gap: 3px;
	}

	.et-l--header .et_pb_menu__logo-wrap {
		width: 180px;
		max-width: 180px;
		margin-right: 10px;
		flex-basis: 180px;
	}

	.et-l--header .et_pb_menu__logo,
	.et-l--header .et_pb_menu__logo img {
		max-width: 180px !important;
	}

	.et-l--header .et-menu-nav > ul > li {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.et-l--header .et-menu-nav > ul > li:not(.tnp-header-contact-item) > a {
		padding-right: 7px !important;
		padding-left: 7px !important;
		font-size: 13px;
	}

	.et-l--header .et-menu-nav > ul > li.tnp-desktop-submenu-enhanced > a {
		padding: 0 4px 0 7px !important;
	}

	.et-l--header .et-menu-nav > ul > li:not(.tnp-header-contact-item) > a[href$="#zamer"] {
		padding-right: 12px !important;
		padding-left: 12px !important;
	}

	.et-l--header .et-menu-nav > ul > li.tnp-header-contact-item {
		min-width: 150px;
		margin-right: 3px !important;
		margin-left: 4px !important;
		padding-left: 9px !important;
	}

	.et-l--header .tnp-header-contact-item > .tnp-header-phone {
		font-size: 14px;
	}

	.et-l--header .tnp-header-hours {
		font-size: 12px;
	}
}

@media (max-width: 1180px) {
	body.tnp-mobile-menu-is-open {
		overflow: hidden;
	}

	body.tnp-mobile-menu-is-open::after {
		content: "";
		position: fixed;
		z-index: 9990;
		inset: 0;
		background: rgb(23 26 31 / 48%);
		backdrop-filter: blur(2px);
	}

	.et-l--header .et_pb_row {
		padding: 3px 0 !important;
	}

	.et-l--header.tnp-header--compact .et_pb_row {
		padding: 1px 0 !important;
	}

	.et-l--header .et_pb_menu_inner_container {
		min-height: 54px;
	}

	.et-l--header .et_pb_menu__logo-wrap,
	.et-l--header.tnp-header--compact .et_pb_menu__logo-wrap {
		width: 184px;
		max-width: 184px;
		margin-right: auto;
		flex-basis: 184px;
	}

	.et-l--header.tnp-header--compact .et_pb_menu__logo-wrap {
		width: 172px;
		max-width: 172px;
		flex-basis: 172px;
	}

	.et-l--header .et_pb_menu__logo,
	.et-l--header .et_pb_menu__logo img {
		max-width: 184px !important;
	}

	.et-l--header.tnp-header--compact .et_pb_menu__logo,
	.et-l--header.tnp-header--compact .et_pb_menu__logo img {
		max-width: 172px !important;
	}

	.et-l--header .tnp-header-quick-call {
		display: inline-flex;
		min-height: 48px;
		margin-left: auto;
		padding: 6px 12px;
		align-items: center;
		gap: 9px;
		border-radius: 12px;
		background: #fff8dd;
		color: #171a1f !important;
		text-decoration: none;
	}

	.et-l--header .tnp-header-quick-call__icon {
		display: block;
		width: 20px;
		height: 20px;
		flex: 0 0 20px;
	}

	.et-l--header .tnp-header-quick-call__icon svg {
		display: block;
		width: 100%;
		height: 100%;
		fill: currentcolor;
	}

	.et-l--header .tnp-header-quick-call__copy {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		line-height: 1.15;
	}

	.et-l--header .tnp-header-quick-call__number {
		font-size: 13.5px;
		font-weight: 800;
		white-space: nowrap;
	}

	.et-l--header .tnp-header-quick-call__hours {
		margin-top: 3px;
		color: #69727d;
		font-size: 12px;
		font-weight: 650;
		white-space: nowrap;
	}

	.et-l--header .et_pb_menu__wrap {
		position: relative;
		flex: 0 0 auto;
		margin-left: 8px;
	}

	.et-l--header .et_pb_menu__menu {
		display: none !important;
	}

	.et-l--header .et_mobile_nav_menu {
		position: static !important;
		display: flex !important;
		float: none;
		align-items: center;
		margin: 0 !important;
	}

	.et-l--header .mobile_nav {
		position: static !important;
	}

	.et-l--header .mobile_menu_bar {
		display: inline-flex;
		width: 48px;
		height: 48px;
		padding: 0;
		align-items: center;
		justify-content: center;
		border: 1px solid #e1e6ea;
		border-radius: 12px;
		background: #f6f7f9;
		color: #171a1f;
		cursor: pointer;
		appearance: none;
		transition: background-color 160ms ease, border-color 160ms ease;
	}

	.et-l--header .mobile_nav.opened .mobile_menu_bar {
		border-color: #f6c945;
		background: #fff8dd;
	}

	/* CSS-only fallback stays visible if PHP or JavaScript enhancement fails. */
	.et-l--header .mobile_menu_bar:not(.tnp-mobile-menu-control--enhanced)::before {
		content: "" !important;
		position: static !important;
		display: block !important;
		width: 22px;
		height: 16px;
		margin: 0 !important;
		background:
			linear-gradient(currentcolor, currentcolor) top / 100% 2px no-repeat,
			linear-gradient(currentcolor, currentcolor) center / 100% 2px no-repeat,
			linear-gradient(currentcolor, currentcolor) bottom / 100% 2px no-repeat;
		font-family: inherit !important;
		line-height: 1 !important;
		transform: none !important;
	}

	.et-l--header .mobile_menu_bar.tnp-mobile-menu-control--enhanced::before {
		content: none !important;
		display: none !important;
	}

	.et-l--header .tnp-mobile-menu-icon {
		position: relative;
		display: block;
		width: 22px;
		height: 16px;
		background: linear-gradient(
			to bottom,
			transparent 7px,
			currentcolor 7px,
			currentcolor 9px,
			transparent 9px
		);
	}

	.et-l--header .tnp-mobile-menu-icon::before,
	.et-l--header .tnp-mobile-menu-icon::after {
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 999px;
		background: currentcolor;
		transition: top 160ms ease, bottom 160ms ease, transform 160ms ease;
	}

	.et-l--header .tnp-mobile-menu-icon::before {
		top: 0;
	}

	.et-l--header .tnp-mobile-menu-icon::after {
		bottom: 0;
	}

	.et-l--header .mobile_nav.opened .tnp-mobile-menu-icon {
		background: transparent;
	}

	.et-l--header .mobile_nav.opened .tnp-mobile-menu-icon::before {
		top: 7px;
		transform: rotate(45deg);
	}

	.et-l--header .mobile_nav.opened .tnp-mobile-menu-icon::after {
		bottom: 7px;
		transform: rotate(-45deg);
	}

	.et-l--header .et_mobile_menu {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: auto;
		z-index: 20;
		width: min(430px, calc(100vw - 24px));
		max-height: min(76vh, 680px);
		height: auto !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		padding: 12px !important;
		border: 1px solid #e1e6ea;
		border-top: 4px solid #f6c945;
		border-radius: 16px;
		background: #ffffff;
		box-shadow: 0 24px 60px rgb(23 26 31 / 24%);
		animation: tnp-mobile-menu-in 180ms ease both;
		overscroll-behavior: contain;
	}

	.et-l--header .mobile_nav.closed .et_mobile_menu {
		display: none !important;
	}

	.et-l--header .mobile_nav.opened .et_mobile_menu {
		display: block !important;
	}

	.et-l--header .et_mobile_menu > li {
		position: relative;
	}

	.et-l--header .et_mobile_menu li a {
		min-height: 50px;
		padding: 14px 14px;
		border-bottom: 0;
		border-radius: 10px;
		color: #171a1f !important;
		font-family: "Manrope Local", Arial, sans-serif;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.35;
	}

	.et-l--header .et_mobile_menu li a:hover,
	.et-l--header .et_mobile_menu li a:focus-visible,
	.et-l--header .et_mobile_menu li.current-menu-item > a {
		background: #fff8dd;
		opacity: 1;
	}

	.et-l--header .et_mobile_menu > li.menu-item-has-children > a {
		padding-right: 62px;
		background: transparent;
		font-weight: 800;
	}

	.et-l--header .et_mobile_menu > li.menu-item-has-children > a::after {
		content: none !important;
	}

	.et-l--header .tnp-mobile-submenu-toggle {
		position: absolute;
		top: 1px;
		right: 1px;
		display: inline-flex;
		width: 48px;
		height: 48px;
		padding: 0;
		align-items: center;
		justify-content: center;
		border: 1px solid #e1e6ea;
		border-radius: 10px;
		background: #f6f7f9;
		color: #171a1f;
		cursor: pointer;
	}

	.et-l--header .tnp-mobile-submenu-toggle span {
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border: solid currentcolor;
		border-width: 0 2px 2px 0;
		transform: rotate(45deg);
		transition: margin 160ms ease, transform 160ms ease;
	}

	.et-l--header .tnp-mobile-submenu-toggle[aria-expanded="true"] {
		border-color: #f6c945;
		background: #fff8dd;
	}

	.et-l--header .tnp-mobile-submenu-toggle[aria-expanded="true"] span {
		margin-top: 4px;
		transform: rotate(225deg);
	}

	.et-l--header .et_mobile_menu .sub-menu {
		margin: 0 4px 8px;
		padding: 6px !important;
		border: 0;
		border-radius: 11px;
		background: #f6f7f9;
	}

	.et-l--header .et_mobile_menu .sub-menu[hidden] {
		display: none !important;
	}

	.et-l--header .et_mobile_menu .sub-menu a {
		min-height: 48px;
		padding: 13px 12px;
		font-size: 14px;
		font-weight: 650;
	}

	.et-l--header .et_mobile_menu .tnp-header-contact-item {
		display: flex !important;
		min-width: 0;
		margin: 8px 0;
		padding: 14px 15px;
		align-items: baseline !important;
		flex-wrap: wrap;
		column-gap: 12px;
		row-gap: 6px;
		justify-content: space-between;
		border: 0;
		border-radius: 12px;
		background: #171a1f;
	}

	.et-l--header .et_mobile_menu .tnp-header-contact-item > .tnp-header-phone {
		min-height: 0;
		padding: 0 !important;
		background: transparent !important;
		color: #ffffff !important;
		font-size: 18px;
	}

	.et-l--header .et_mobile_menu .tnp-header-phone__label {
		position: static;
		display: block;
		width: auto;
		height: auto;
		margin: 0 0 4px;
		overflow: visible;
		clip: auto;
		color: #aeb5bd;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.et-l--header .et_mobile_menu .tnp-header-hours,
	.et-l--header.tnp-header--compact .et_mobile_menu .tnp-header-hours {
		flex: 0 0 auto;
		display: flex;
		max-height: none;
		margin-top: 0;
		overflow: visible;
		color: #cbd0d6;
		font-size: 12.5px;
		opacity: 1;
	}

	.et-l--header .et_mobile_menu > li > a[href$="#zamer"] {
		min-height: 52px;
		margin-top: 5px;
		padding: 15px 18px;
		background: #f6c945;
		box-shadow: 0 8px 20px rgb(23 26 31 / 12%);
		font-weight: 800;
		text-align: center;
	}

	.et-l--header .et_mobile_menu > li > a[href$="#zamer"]:hover,
	.et-l--header .et_mobile_menu > li > a[href$="#zamer"]:focus-visible {
		background: #d9a900;
	}
}

@media (max-width: 782px) {
	.admin-bar .et-l--header {
		top: 46px;
	}
}

@media (max-width: 767px) {
	.et-l--header .et_pb_row,
	.et-l--header.tnp-header--compact .et_pb_row {
		padding: 0 !important;
	}

	.et-l--header .et_pb_menu_inner_container {
		display: grid !important;
		min-height: 52px;
		grid-template-columns: auto minmax(0, 1fr) auto auto;
		grid-template-rows: 52px;
		transition: min-height 200ms ease, grid-template-rows 200ms ease;
	}

	.et-l--header .tnp-header-quick-call {
		box-sizing: border-box;
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
		margin: 0 8px 0 0;
		padding: 0;
		justify-content: center;
		grid-column: 3;
		grid-row: 1;
		border: 1px solid #e1e6ea;
		border-radius: 12px;
		background: #fff8dd;
	}

	.et-l--header .tnp-header-quick-call__icon {
		width: 20px;
		height: 20px;
		flex-basis: 20px;
	}

	.et-l--header .tnp-header-quick-call__copy {
		display: none;
	}

	.et-l--header .et_pb_menu__logo-wrap,
	.et-l--header.tnp-header--compact .et_pb_menu__logo-wrap {
		width: 176px;
		max-width: 176px;
		margin: 0;
		grid-column: 1;
		grid-row: 1;
		flex-basis: auto;
	}

	.et-l--header .et_pb_menu__logo,
	.et-l--header .et_pb_menu__logo img,
	.et-l--header.tnp-header--compact .et_pb_menu__logo,
	.et-l--header.tnp-header--compact .et_pb_menu__logo img {
		max-width: 176px !important;
	}

	.et-l--header .et_pb_menu__wrap {
		width: 48px;
		margin: 0;
		grid-column: 4;
		grid-row: 1;
	}
}

@media (max-width: 400px) {
	.et-l--header .et_pb_menu__logo-wrap {
		width: 174px;
		max-width: 174px;
	}

	.et-l--header .et_pb_menu__logo,
	.et-l--header .et_pb_menu__logo img {
		max-width: 174px !important;
	}

	.et-l--header.tnp-header--compact .et_pb_menu__logo-wrap {
		width: 174px;
		max-width: 174px;
	}

	.et-l--header.tnp-header--compact .et_pb_menu__logo,
	.et-l--header.tnp-header--compact .et_pb_menu__logo img {
		max-width: 174px !important;
	}

}

@media (min-width: 560px) and (max-width: 767px) {
	.et-l--header .tnp-header-quick-call {
		width: 218px;
		min-width: 218px;
		padding: 6px 12px;
		justify-content: flex-start;
	}

	.et-l--header .tnp-header-quick-call__copy {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}
}

@keyframes tnp-mobile-call-attention {
	0%,
	9%,
	21%,
	100% {
		box-shadow: 0 4px 14px rgb(23 26 31 / 7%);
		transform: scale(1);
	}

	13% {
		box-shadow: 0 0 0 7px rgb(246 201 69 / 20%), 0 7px 20px rgb(23 26 31 / 12%);
		transform: scale(1);
	}

	17% {
		box-shadow: 0 0 0 3px rgb(246 201 69 / 12%), 0 5px 16px rgb(23 26 31 / 9%);
		transform: scale(1);
	}
}

@keyframes tnp-mobile-call-icon-ring {
	0%,
	9%,
	21%,
	100% {
		transform: rotate(0deg);
	}

	11% {
		transform: rotate(-12deg);
	}

	13% {
		transform: rotate(10deg);
	}

	15% {
		transform: rotate(-7deg);
	}

	17% {
		transform: rotate(5deg);
	}

	19% {
		transform: rotate(0deg);
	}
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
	.et-l--header .tnp-header-quick-call {
		animation: tnp-mobile-call-attention 6.4s ease-in-out 1s infinite;
		transform-origin: center;
	}

	.et-l--header .tnp-header-quick-call__icon {
		animation: tnp-mobile-call-icon-ring 6.4s ease-in-out 1s infinite;
		transform-origin: center;
	}

	body.tnp-mobile-menu-is-open .et-l--header .tnp-header-quick-call,
	.et-l--header .tnp-header-quick-call:hover,
	.et-l--header .tnp-header-quick-call:focus-visible,
	body.tnp-mobile-menu-is-open .et-l--header .tnp-header-quick-call__icon,
	.et-l--header .tnp-header-quick-call:hover .tnp-header-quick-call__icon,
	.et-l--header .tnp-header-quick-call:focus-visible .tnp-header-quick-call__icon {
		animation: none;
		transform: none;
	}
}

@keyframes tnp-desktop-submenu-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tnp-mobile-menu-in {
	from {
		opacity: 0;
		transform: translateY(-8px) scale(0.98);
	}

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

/* Personal-data form disclosure and analytics-safe field presentation. */
.et_pb_contact_form .tnp-form-legal-note {
	margin: 2px 0 0;
	color: #5d6671;
	font-size: 0.82rem;
	line-height: 1.55;
}

.et_pb_contact_form .tnp-form-legal-note a {
	color: #171a1f;
	font-weight: 750;
}

.et_pb_contact_form .et_pb_contact_field[data-id="consent"] {
	margin-top: 2px;
}

.et_pb_contact_form .et_pb_contact_field[data-id="consent"]
	.et_pb_contact_field_options_title {
	font-size: 0.9rem;
	font-weight: 750;
}

.et_pb_contact_form .et_pb_contact_field[data-id="consent"]
	.et_pb_contact_field_checkbox label {
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Focused reading template shared by the policy and consent pages. */
.tnp-legal-main {
	padding: clamp(34px, 6vw, 78px) 16px;
	background:
		radial-gradient(circle at 8% 4%, rgb(246 201 69 / 23%), transparent 28rem),
		#f5f6f8;
	color: #171a1f;
	font-family: "Manrope Local", Arial, sans-serif;
}

.tnp-legal-shell {
	width: min(100%, 960px);
	margin: 0 auto;
}

.tnp-legal-document {
	overflow: hidden;
	border: 1px solid #e0e4e8;
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgb(23 26 31 / 10%);
}

.tnp-legal-document__header {
	position: relative;
	overflow: hidden;
	padding: clamp(30px, 6vw, 60px) clamp(22px, 6vw, 64px);
	background: #171a1f;
}

.tnp-legal-document__header::after {
	content: "";
	position: absolute;
	top: -104px;
	right: -86px;
	width: 250px;
	height: 250px;
	border: 44px solid rgb(246 201 69 / 18%);
	border-radius: 50%;
	pointer-events: none;
}

.tnp-legal-document__eyebrow {
	position: relative;
	z-index: 1;
	display: flex;
	margin: 0 0 13px;
	align-items: center;
	gap: 9px;
	color: #f6c945;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tnp-legal-document__eyebrow::before {
	content: "";
	width: 23px;
	height: 2px;
	border-radius: 999px;
	background: currentcolor;
}

.tnp-legal-document__header h1 {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin: 0;
	padding: 0;
	color: #ffffff;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: clamp(32px, 5.7vw, 58px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.045em;
	overflow-wrap: anywhere;
}

.tnp-legal-document__content {
	padding: clamp(26px, 6vw, 64px);
}

.tnp-legal-document__content > :first-child {
	margin-top: 0;
}

.tnp-legal-document__content > :last-child {
	margin-bottom: 0;
}

.tnp-legal-document__content p,
.tnp-legal-document__content li,
.tnp-legal-document__content dd,
.tnp-legal-document__content dt {
	color: #4f5964;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
}

.tnp-legal-document__content p {
	margin: 0 0 1rem;
	padding: 0;
}

.tnp-legal-document__content h2 {
	margin: clamp(34px, 5vw, 50px) 0 15px;
	padding: 0;
	color: #171a1f;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: clamp(23px, 3.2vw, 32px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
	scroll-margin-top: 7rem;
}

.tnp-legal-document__content h3 {
	margin: 27px 0 11px;
	padding: 0;
	color: #242a31;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.35;
}

.tnp-legal-document__content ul,
.tnp-legal-document__content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.45rem;
}

.tnp-legal-document__content li {
	margin: 0 0 0.52rem;
	padding-left: 0.22rem;
}

.tnp-legal-document__content strong {
	color: #262c33;
	font-weight: 800;
}

.tnp-legal-document__content a {
	color: #343a42;
	font-weight: 750;
	text-decoration-color: #d9a900;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.18em;
}

.tnp-legal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin: 0 0 22px !important;
	color: #68727d !important;
	font-size: 0.88rem !important;
}

.tnp-legal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}

.tnp-legal-actions a {
	display: inline-flex;
	min-height: 46px;
	padding: 10px 17px;
	align-items: center;
	justify-content: center;
	border: 1px solid #171a1f;
	border-radius: 12px;
	background: #171a1f;
	color: #ffffff !important;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none !important;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tnp-legal-actions a:hover,
.tnp-legal-actions a:focus-visible {
	border-color: #343a42;
	background: #343a42;
	transform: translateY(-1px);
}

.tnp-legal-actions a.tnp-legal-actions__secondary {
	border-color: #d8dde2;
	background: #ffffff;
	color: #262c33 !important;
}

.tnp-legal-actions a.tnp-legal-actions__secondary:hover,
.tnp-legal-actions a.tnp-legal-actions__secondary:focus-visible {
	border-color: #d9a900;
	background: #fff8dd;
}

.tnp-legal-callout,
.tnp-legal-toc,
.tnp-legal-details {
	margin: 0 0 26px;
	border: 1px solid #e0e4e8;
	border-radius: 18px;
	background: #f7f8f9;
}

.tnp-legal-callout {
	padding: 20px 22px;
	border-left: 5px solid #f6c945;
}

.tnp-legal-callout p:last-child {
	margin-bottom: 0;
}

.tnp-legal-toc {
	padding: 22px 24px 18px;
}

.tnp-legal-toc h2 {
	margin: 0 0 13px;
	font-size: 1.05rem;
	letter-spacing: 0;
}

.tnp-legal-toc ol {
	display: grid;
	margin: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 30px;
}

.tnp-legal-toc li {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.tnp-legal-details {
	overflow: hidden;
}

.tnp-legal-details dl {
	display: grid;
	margin: 0;
	grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
}

.tnp-legal-details dt,
.tnp-legal-details dd {
	margin: 0;
	padding: 12px 18px;
	border-bottom: 1px solid #e2e6ea;
}

.tnp-legal-details dt {
	color: #68727d;
	font-size: 0.9rem;
	font-weight: 700;
}

.tnp-legal-details dd {
	color: #262c33;
	font-weight: 700;
}

.tnp-legal-details dt:last-of-type,
.tnp-legal-details dd:last-of-type {
	border-bottom: 0;
}

@media (max-width: 680px) {
	.tnp-legal-main {
		padding-right: 8px;
		padding-left: 8px;
	}

	.tnp-legal-document {
		border-radius: 20px;
	}

	.tnp-legal-document__content {
		padding-right: 20px;
		padding-left: 20px;
	}

	.tnp-legal-document__content p,
	.tnp-legal-document__content li,
	.tnp-legal-document__content dd,
	.tnp-legal-document__content dt {
		font-size: 0.96rem;
	}

	.tnp-legal-toc ol {
		grid-template-columns: minmax(0, 1fr);
	}

	.tnp-legal-details dl {
		grid-template-columns: minmax(0, 1fr);
	}

	.tnp-legal-details dt {
		padding-bottom: 2px;
		border-bottom: 0;
	}

	.tnp-legal-details dd {
		padding-top: 2px;
	}

	.tnp-legal-actions a {
		width: 100%;
	}
}

/* Global Divi 5 footer. */
body.et-db #page-container #et-boc .et-l.et-l--footer,
.et-l--footer {
	position: relative;
	isolation: isolate;
	background: #14181d !important;
	color: #cbd0d6;
}

.et-l--footer::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	border-top: 1px solid rgb(255 255 255 / 8%);
	pointer-events: none;
}

.et-l--footer .et_pb_section {
	padding: 42px 0 24px !important;
	background: transparent !important;
}

.et-l--footer .et_pb_row {
	box-sizing: border-box;
	width: var(--tnp-container-width) !important;
	max-width: var(--tnp-container-max) !important;
	padding: 0 !important;
}

.et-l--footer .et_pb_row:first-of-type {
	display: grid !important;
	grid-template-columns: minmax(250px, 1.2fr) minmax(145px, 0.68fr) minmax(145px, 0.68fr) minmax(260px, 1.12fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: start;
}

.et-l--footer .et_pb_row:last-of-type {
	display: grid !important;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	gap: 24px 40px;
	align-items: end;
	margin-top: 32px !important;
	padding-top: 22px !important;
	border-top: 1px solid rgb(255 255 255 / 13%);
}

.et-l--footer .et_pb_column {
	position: relative;
	z-index: 1;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	flex-basis: auto !important;
}

.et-l--footer .et_pb_row:first-of-type > .et_pb_column:first-of-type,
.et-l--footer .et_pb_row:first-of-type > .et_pb_column:first-of-type > .et_pb_text,
.et-l--footer .et_pb_row:first-of-type > .et_pb_column:first-of-type > .et_pb_text > .et_pb_text_inner,
.et-l--footer .et_pb_row:first-of-type > .et_pb_column:first-of-type > .et_pb_text > .et_pb_text_inner > div:not([class]) {
	display: contents !important;
}

.et-l--footer .et_pb_text {
	margin: 0 !important;
}

.et-l--footer,
.et-l--footer p,
.et-l--footer li,
.et-l--footer address {
	color: #cbd0d6 !important;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
}

.et-l--footer h2 {
	margin: 0 0 16px;
	padding: 0;
	color: #ffffff !important;
	font-family: "Manrope Local", Arial, sans-serif;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.et-l--footer ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.et-l--footer li {
	margin: 0;
	padding: 0;
}

.et-l--footer address {
	font-style: normal;
}

.et-l--footer .tnp-footer-tagline,
.et-l--footer .tnp-footer-legal {
	margin: 0;
	padding: 0;
}

.et-l--footer a {
	color: #ffffff !important;
	text-decoration-color: rgb(255 219 77 / 72%);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, text-decoration-color 160ms ease;
}

.et-l--footer a:hover,
.et-l--footer a:focus-visible {
	color: #ffdb4d !important;
	text-decoration-color: #ffdb4d;
}

.et-l--footer a:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}

.et-l--footer .tnp-footer-cta {
	position: relative;
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
	overflow: hidden;
	padding: clamp(28px, 3vw, 38px) clamp(26px, 4vw, 52px);
	border-radius: 24px;
	background: #ffdb4d;
	box-shadow: 0 22px 54px rgb(0 0 0 / 20%);
}

.et-l--footer .tnp-footer-cta::after {
	content: "";
	position: absolute;
	right: -88px;
	top: -112px;
	width: 260px;
	height: 260px;
	border: 48px solid rgb(255 255 255 / 18%);
	border-radius: 50%;
	pointer-events: none;
}

.et-l--footer .tnp-footer-cta-intro,
.et-l--footer .tnp-footer-cta-actions,
.et-l--footer .tnp-footer-brand-block {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.et-l--footer .tnp-footer-eyebrow,
.et-l--footer .tnp-footer-cta-title,
.et-l--footer .tnp-footer-cta-copy {
	margin: 0;
	padding: 0;
	color: #171a1f !important;
}

.et-l--footer .tnp-footer-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.et-l--footer .tnp-footer-eyebrow::before {
	content: "";
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: #171a1f;
}

.et-l--footer .tnp-footer-cta-title {
	max-width: 650px;
	margin-bottom: 10px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.et-l--footer .tnp-footer-cta-copy {
	max-width: 670px;
	font-size: 16px;
	line-height: 1.55;
}

.et-l--footer .tnp-footer-cta-actions {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	gap: 12px;
}

.et-l--footer .tnp-footer-phone,
.et-l--footer .tnp-footer-button {
	display: inline-flex;
	min-height: 56px;
	border-radius: 14px;
	text-decoration: none;
}

.et-l--footer .tnp-footer-phone {
	flex-direction: column;
	justify-content: center;
	min-width: 190px;
	padding: 9px 15px;
	border: 1px solid rgb(23 26 31 / 22%);
	background: rgb(255 255 255 / 28%);
	color: #171a1f !important;
}

.et-l--footer .tnp-footer-phone span {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.et-l--footer .tnp-footer-phone strong {
	margin-top: 3px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	white-space: nowrap;
}

.et-l--footer .tnp-footer-phone:hover,
.et-l--footer .tnp-footer-phone:focus-visible {
	border-color: rgb(23 26 31 / 42%);
	background: rgb(255 255 255 / 48%);
	color: #171a1f !important;
}

.et-l--footer .tnp-footer-phone:focus-visible {
	outline-color: #171a1f;
}

.et-l--footer .tnp-footer-button {
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 20px;
	background: #171a1f;
	box-shadow: 0 10px 24px rgb(23 26 31 / 22%);
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.et-l--footer .tnp-footer-button:hover,
.et-l--footer .tnp-footer-button:focus-visible {
	background: #343a42;
	color: #ffffff !important;
	transform: translateY(-2px);
}

.et-l--footer .tnp-footer-button:focus-visible {
	outline-color: #171a1f;
}

.et-l--footer .tnp-footer-button svg {
	flex: 0 0 auto;
}

.et-l--footer .tnp-footer-brand {
	display: inline-block;
}

.et-l--footer .tnp-footer-brand img {
	display: block;
	width: 236px;
	max-width: 100%;
	height: auto;
}

.et-l--footer .tnp-footer-tagline {
	max-width: 310px;
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.6;
}

.et-l--footer .tnp-footer-points {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-top: 16px !important;
}

.et-l--footer .tnp-footer-points li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #aeb5bd !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.et-l--footer .tnp-footer-points li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #ffdb4d;
}

.et-l--footer .tnp-footer-payments {
	margin-top: 20px;
	padding-top: 17px;
	border-top: 1px solid rgb(255 255 255 / 12%);
}

.et-l--footer .tnp-footer-payments-title {
	margin: 0 0 10px !important;
	color: #cbd0d6 !important;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.et-l--footer .tnp-footer-payment-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.et-l--footer .tnp-footer-payment-badge {
	display: inline-flex;
	box-sizing: border-box;
	height: 38px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.et-l--footer .tnp-footer-payment-logo {
	position: relative;
	display: block;
	overflow: hidden;
	flex: 0 0 auto;
}

.et-l--footer .tnp-footer-payment-logo img {
	position: absolute;
	display: block;
	max-width: none !important;
	margin: 0 !important;
	filter: grayscale(1) brightness(0) invert(1);
	opacity: 0.72;
}

.et-l--footer .tnp-footer-payment-logo--mir {
	width: 88px;
	height: 30px;
}

.et-l--footer .tnp-footer-payment-logo--mir img {
	top: -45px;
	left: -16px;
	width: 120px !important;
	height: 120px !important;
}

.et-l--footer .tnp-footer-payment-logo--sbp {
	width: 64px;
	height: 36px;
}

.et-l--footer .tnp-footer-payment-logo--sbp img {
	top: -5.5px;
	left: -16px;
	width: 96px !important;
	height: auto !important;
}

.et-l--footer .tnp-footer-links {
	display: grid;
	gap: 2px;
}

.et-l--footer .tnp-footer-links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	text-decoration: none;
}

.et-l--footer .tnp-footer-links a::after {
	content: "→";
	margin-left: 7px;
	color: #ffdb4d;
	font-size: 13px;
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.et-l--footer .tnp-footer-links a:hover::after,
.et-l--footer .tnp-footer-links a:focus-visible::after {
	opacity: 1;
	transform: translateX(0);
}

.et-l--footer .tnp-footer-contact-card {
	padding: 22px;
	border: 1px solid rgb(255 255 255 / 11%);
	border-radius: 18px;
	background: rgb(255 255 255 / 5%);
}

.et-l--footer .tnp-footer-contact-card h2 {
	margin-bottom: 14px;
}

.et-l--footer .tnp-footer-contacts {
	display: grid;
	gap: 7px;
}

.et-l--footer .tnp-footer-contacts > a {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 11px;
	align-items: center;
	min-height: 48px;
	padding: 4px;
	border-radius: 11px;
	text-decoration: none;
}

.et-l--footer .tnp-footer-contacts > a:hover,
.et-l--footer .tnp-footer-contacts > a:focus-visible {
	background: rgb(255 255 255 / 6%);
}

.et-l--footer .tnp-footer-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #ffdb4d;
	color: #171a1f;
}

.et-l--footer .tnp-footer-contacts small,
.et-l--footer .tnp-footer-contacts strong {
	display: block;
}

.et-l--footer .tnp-footer-contacts small {
	margin-bottom: 1px;
	color: #9fa7b1;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.et-l--footer .tnp-footer-contacts strong {
	overflow-wrap: anywhere;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.et-l--footer .tnp-footer-legal,
.et-l--footer .tnp-footer-utility {
	color: #9fa7b1 !important;
	font-size: 13px;
	line-height: 1.6;
}

.et-l--footer .tnp-footer-legal span {
	color: #7f8892;
}

.et-l--footer .et_pb_row:last-of-type > .et_pb_column:last-child,
.et-l--footer .et_pb_row:last-of-type > .et_pb_column:last-child > .et_pb_text,
.et-l--footer .et_pb_row:last-of-type > .et_pb_column:last-child > .et_pb_text > .et_pb_text_inner,
.et-l--footer .et_pb_row:last-of-type > .et_pb_column:last-child > .et_pb_text > .et_pb_text_inner > div:not([class]) {
	display: contents !important;
}

.et-l--footer .tnp-footer-utility {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
}

.et-l--footer .tnp-footer-disclaimer {
	box-sizing: border-box;
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 0 !important;
	padding-top: 14px;
	border-top: 1px solid rgb(255 255 255 / 8%);
	color: #87919c !important;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.55;
}

body:has(#seopress-beacon-universal-metabox) .et-l--footer .tnp-footer-disclaimer {
	padding-left: 80px;
}

@media (max-width: 620px) {
	.et-l--footer .tnp-footer-utility {
		grid-column: 1;
		grid-row: 2;
	}

	.et-l--footer .tnp-footer-disclaimer {
		grid-column: 1;
		grid-row: 3;
	}
}

.et-l--footer .tnp-footer-utility {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 22px;
}

.et-l--footer .tnp-footer-utility a {
	color: #cbd0d6 !important;
}

@media (max-width: 980px) {
	.et-l--footer .et_pb_section {
		padding: 34px 0 22px !important;
	}

	.et-l--footer .et_pb_row:first-of-type {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 34px;
	}

	.et-l--footer .tnp-footer-cta {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.et-l--footer .tnp-footer-cta-actions {
		justify-content: flex-start;
	}

	.et-l--footer .et_pb_row:last-of-type {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (max-width: 620px) {
	.et-l--footer .tnp-footer-cta {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.et-l--footer .tnp-footer-cta::after {
		right: -118px;
		top: -136px;
	}

	.et-l--footer .tnp-footer-cta-title {
		font-size: clamp(25px, 8vw, 31px);
	}

	.et-l--footer .tnp-footer-cta-copy {
		font-size: 15px;
	}

	.et-l--footer .tnp-footer-cta-actions {
		flex-direction: column;
	}

	.et-l--footer .tnp-footer-phone,
	.et-l--footer .tnp-footer-button {
		width: 100%;
	}

	.et-l--footer .tnp-footer-button {
		min-height: 54px;
	}

	.et-l--footer .et_pb_row:first-of-type {
		gap: 28px 20px;
	}

	.et-l--footer .tnp-footer-brand-block,
	.et-l--footer .et_pb_row:first-of-type > .et_pb_column:nth-child(4) {
		grid-column: 1 / -1;
	}

	.et-l--footer .tnp-footer-links a {
		min-height: 40px;
	}

	.et-l--footer .et_pb_row:last-of-type {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		margin-top: 28px !important;
	}

	.et-l--footer .tnp-footer-utility {
		justify-content: flex-start;
	}
}

@media (max-width: 360px) {
	.et-l--footer .et_pb_row:first-of-type {
		grid-template-columns: minmax(0, 1fr);
	}

	.et-l--footer .tnp-footer-brand-block,
	.et-l--footer .et_pb_row:first-of-type > .et_pb_column {
		grid-column: 1;
	}

	.et-l--footer .tnp-footer-contact-card {
		padding: 18px;
	}
}

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

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