/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/ubuntu-v21-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ubuntu-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Open Sans */
@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2');
}

:root {
	--font-body: 'Open Sans', Arial, sans-serif;
	--font-heading: 'Ubuntu', Arial, sans-serif;

	--primary-clr: #013854;
	--secondary-clr: #1A83A0;
	--accent-clr: #c9ff00;

	--text-clr: #111111;
	--text-muted: #696969;
	--white-clr: #ffffff;
	--border-clr: #ececec;

	--footer-bg: #ffffff;
	--footer-text: #013854;

	--radius-sm: 12px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--body-fs: 15px;
	--body-lh: 1.7;

	--heading-xl: clamp(33px, 4vw, 60px);
	--heading-lg: clamp(26px, 3vw, 48px);
	--heading-md: clamp(26px, 2.4vw, 38px);
	--heading-sm: clamp(19px, 2vw, 30px);
	--heading-xs: clamp(17px, 1.6vw, 24px);
	--heading-xxs: clamp(15px, 1.4vw, 21px);

	--btn-padding-y: 8px;
	--btn-padding-x: 18px;
	--btn-radius: 0px;
	--btn-fs: 15px;
	--btn-mobile-fs: 14px;
	--btn-weight: 700;

	--btn-primary-bg: var(--secondary-clr);
	--btn-primary-text: var(--white-clr);
	--btn-primary-border: var(--secondary-clr);
	--btn-primary-bg-hover: var(--accent-clr);
	--btn-primary-border-hover: var(--accent-clr);

	--lp-navbar-height: 96px;


}

/* Base
--------------------------------------------- */
body.is-landing-page {
	font-family: var(--font-body);
	font-size: var(--body-fs);
	line-height: var(--body-lh);
	color: var(--text-clr);
}

body.is-landing-page p,
body.is-landing-page li,
body.is-landing-page a,
body.is-landing-page span,
body.is-landing-page div {
	font-family: var(--font-body);
}

body.is-landing-page h1,
body.is-landing-page h2,
body.is-landing-page h3,
body.is-landing-page h4,
body.is-landing-page .lp-heading,
body.is-landing-page .lp-section-header__title,
body.is-landing-page .lp-hero-card__title,
body.is-landing-page .lp-section-header__eyebrow,
body.is-landing-page .lp-hero-card__kicker  {
	font-family: var(--font-heading);
}

/* Utilities: Headings
--------------------------------------------- */
.heading-xl {
	font-size: var(--heading-xl);
	line-height: 1.05;
}

.heading-lg {
	font-size: var(--heading-lg);
	line-height: 1.1;
}

.heading-md {
	font-size: var(--heading-md);
	line-height: 1.15;
}

.heading-sm {
	font-size: var(--heading-sm);
	line-height: 1.2;
}

.heading-xs {
	font-size: var(--heading-xs);
	line-height: 1.25;
}

.heading-xxs {
	font-size: var(--heading-xxs);
	line-height: 1.25;
}

/* Utilities: Font helpers
--------------------------------------------- */
.font-heading {
	font-family: var(--font-heading);
}

.font-body {
	font-family: var(--font-body);
}

.font-italic {
	font-style: italic;
}

.fw-regular {
	font-weight: 400;
}

.fw-bold {
	font-weight: 700;
}

.text-primary {
	color: var(--primary-clr);
}

.text-white {
	color: #ffffff;
}

.text-center {
	text-align: center;
}

/* Section defaults
--------------------------------------------- */
.lp-section {
	padding: 60px 0;
}

/* Section header
--------------------------------------------- */
.lp-section-header__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text-clr);
}

.lp-section-header__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary-clr);
}

.lp-section-header__text {
	margin-top: 16px;
	color: var(--text-clr);
}

.lp-section-header {
	max-width: 1080px;
}
/* Buttons
--------------------------------------------- */
.d-btn {
	display: inline-block;
	padding: var(--btn-padding-y) var(--btn-padding-x);
	border-radius: var(--btn-radius);
	font-size: var(--btn-fs);
	font-weight: var(--btn-weight);
	text-decoration: none;
	border: 2px solid transparent;
	transition: 0.2s ease;
}

.d-btn--primary {
	background: var(--btn-primary-bg);
	border-color: var(--btn-primary-border);
	color: var(--btn-primary-text);
}

.d-btn--primary:hover,
.d-btn--primary:focus {
	background: var(--btn-primary-bg-hover);
	border-color: var(--btn-primary-border-hover);
	color: var(--primary-clr);
}

/* Navbar
--------------------------------------------- */
.is-landing-page .lp-navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: var(--white-clr);
}

.is-landing-page.admin-bar .lp-navbar {
	top: 32px;
}

.is-landing-page .lp-navbar.is-sticky {
	background: var(--white-clr);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.is-landing-page .lp-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: 100%;
	padding: 22px clamp(20px, 3vw, 40px);
}

.is-landing-page .lp-navbar__brand {
	flex: 0 0 auto;
	max-width: 220px;
}

.is-landing-page .lp-navbar .brand-wrapper,
.is-landing-page .lp-navbar .brand-link,
.is-landing-page .lp-navbar .brand-link .logo {
	display: block;
	width: 100%;
}

.is-landing-page .lp-navbar .brand-link {
	text-decoration: none;
}

.is-landing-page .lp-navbar .brand-link .logo,
.is-landing-page .lp-footer .footer-logo,
.is-landing-page .lp-footer .footer-slogan {
	max-width: 100%;
	height: auto;
}

.is-landing-page .lp-navbar .main-logo {
	display: block;
}

.is-landing-page .lp-navbar .sticky-logo,
.is-landing-page .lp-navbar .mobile-logo {
	display: none;
}

.is-landing-page .lp-navbar.is-sticky .brand-wrapper.has-sticky-logo .main-logo {
	display: none;
}

.is-landing-page .lp-navbar.is-sticky .brand-wrapper.has-sticky-logo .sticky-logo {
	display: block;
}

.is-landing-page .lp-navbar__panel {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2vw, 32px);
	margin-left: auto;
}

.is-landing-page .lp-navbar__menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.is-landing-page .lp-navbar__item {
	margin: 0;
}

.is-landing-page .lp-navbar__link {
	color: var(--text-clr);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.2s ease;
}

.is-landing-page .lp-navbar__link:hover,
.is-landing-page .lp-navbar__link.is-active {
	color: var(--primary-clr);
	opacity: 0.8;
}

.is-landing-page .lp-navbar__cta .d-btn {
	white-space: nowrap;
}

.is-landing-page .lp-navbar__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--primary-clr);
	box-shadow: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.is-landing-page .lp-navbar__toggle:hover {
	transform: translateY(-1px);
}

.is-landing-page .lp-navbar__toggle-line {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: var(--white-clr);
	transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.is-landing-page .lp-navbar.is-open .lp-navbar__toggle-line:nth-child(1) {
	transform: translateY(6px) rotate(-45deg);
}

.is-landing-page .lp-navbar.is-open .lp-navbar__toggle-line:nth-child(2) {
	transform: translateY(-1px) rotate(45deg);
}

.is-landing-page .lp-navbar.is-open .lp-navbar__toggle-line:nth-child(3) {
	opacity: 0;
}

/* Footer
--------------------------------------------- */

.is-landing-page .lp-footer {
	padding: 110px 0 36px;
	background: var(--footer-bg);
	color: var(--footer-text);
	border-top: 2px solid #c9ff00;
}

.is-landing-page .lp-footer__top {
	padding-bottom: 120px;
}

.is-landing-page .lp-footer__brand-wrap {
	max-width: 400px;
}

.is-landing-page .lp-footer__brand,
.is-landing-page .lp-footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.is-landing-page .lp-footer__contact {
	text-align: left;
}

.is-landing-page .lp-footer__kicker {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-style: italic;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	text-transform: none;
	color: #ffffff;
}

.is-landing-page .lp-footer__contact-item {
	margin-bottom: 10px;
}

.is-landing-page .lp-footer__contact-item a {
	text-decoration: none;
}

.is-landing-page .lp-footer__contact-item--phone a,
.is-landing-page .lp-footer__contact-item--email a {
	font-family: var(--font-body);
	font-size: clamp(1.3rem, 1.9vw, 1.9rem);
	font-weight: 700;
	line-height: 1.15;
}

.is-landing-page .lp-footer__bottom {
	padding-top: 20px;
	border-top: 0;
}

.is-landing-page .lp-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.is-landing-page .lp-footer__copyright {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-clr);
}

.is-landing-page .lp-footer__legal {
	display: flex;
	align-items: center;
	gap: 34px;
}

.is-landing-page .lp-footer__legal a {
	color: var(--text-clr);
	font-size: 0.95rem;
	text-decoration: none;
}

.is-landing-page .lp-footer__legal a:hover {
	color: var(--accent-clr);
}

@media (max-width: 991.98px) {
	.is-landing-page .lp-footer {
		padding: 80px 0 28px;
	}

	.is-landing-page .lp-footer__top {
		padding-bottom: 70px;
	}

	.is-landing-page .lp-footer__brand-wrap {
		margin-bottom: 40px;
		max-width: 320px;
	}

	.is-landing-page .lp-footer__contact-item--phone a,
	.is-landing-page .lp-footer__contact-item--email a {
		font-size: clamp(1.3rem, 4vw, 2rem);
	}

	.is-landing-page .lp-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767.98px) {
	.is-landing-page .lp-footer {
		padding: 60px 0 24px;
	}

	.is-landing-page .lp-footer__top {
		padding-bottom: 50px;
	}

	.is-landing-page .lp-footer__legal {
		flex-wrap: wrap;
		gap: 18px 24px;
	}
}

/* Responsive
--------------------------------------------- */
@media (max-width: 1399.98px) {
	.is-landing-page .lp-navbar {
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	}

	.is-landing-page .lp-navbar__inner {
		padding: 16px 20px;
	}

	.is-landing-page .lp-navbar__brand {
		width: 160px;
		max-width: 160px;
	}

	.is-landing-page .lp-navbar .brand-wrapper.has-mobile-logo .main-logo,
	.is-landing-page .lp-navbar .brand-wrapper.has-mobile-logo .sticky-logo {
		display: none !important;
	}

	.is-landing-page .lp-navbar .brand-wrapper.has-mobile-logo .mobile-logo {
		display: block !important;
	}

	.is-landing-page .lp-navbar__toggle {
		display: inline-flex;
		flex-shrink: 0;
	}

	.is-landing-page .lp-navbar__panel {
		position: fixed;
		top: calc(var(--lp-navbar-height, 88px) + 12px);
		right: 16px;
		left: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		max-width: 760px;
		margin-left: auto;
		padding: 28px;
		border-radius: 34px;
		background: var(--primary-clr);
		box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
	}

	.is-landing-page .lp-navbar.is-open .lp-navbar__panel {
		display: flex;
	}

	.is-landing-page .lp-navbar__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.is-landing-page .lp-navbar__link {
		color: var(--white-clr) !important;
		font-size: clamp(16px, 2.3333vw, 19px);
	}

	.is-landing-page .lp-navbar__cta .d-btn {
		width: 100%;
		justify-content: center;
	}

	.is-landing-page .lp-footer__top {
		padding: 72px 0 48px;
	}

	.is-landing-page .lp-footer__bottom-inner,
	.is-landing-page .lp-footer__legal {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767.98px) {
	.is-landing-page.admin-bar .lp-navbar {
		top: 46px;
	}

	.is-landing-page .lp-navbar__inner {
		padding: 14px 20px;
	}

	.is-landing-page .lp-navbar__brand {
		width: 132px;
		max-width: 132px;
	}

	.is-landing-page .lp-navbar__toggle {
		width: 52px;
		height: 52px;
	}

	.is-landing-page .lp-navbar__toggle-line {
		width: 22px;
		height: 2px;
	}

	.is-landing-page .lp-navbar__panel {
		top: calc(var(--lp-navbar-height, 80px) + 10px);
		padding: 26px;
		border-radius: 28px;
	}
	.d-btn {
		font-size: var(--btn-mobile-fs);
		width: 100%;
	}
}

/* Section header alignment
--------------------------------------------- */
.lp-section-header--center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.lp-hero {
	padding: 0;
	background: #050811;
}

.lp-hero__media {
	position: relative;
	height: 775px;
	min-height: 775px;
	overflow: hidden;
	background: #050811;
}

.lp-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.lp-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(5, 8, 17, 0.58) 0%,
			rgba(5, 8, 17, 0.34) 48%,
			rgba(5, 8, 17, 0.10) 100%
		);
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-hero__overlay .container-xl {
	width: 100%;
}

.lp-hero .row {
	align-items: center;
	justify-content: flex-start;
}

.lp-hero .col-xl-7,
.lp-hero .col-lg-8 {
	width: auto;
	max-width: 58.333333%;
	flex: 0 0 58.333333%;
}

/* Claim wrapper */

.lp-hero-card {
	position: relative;
	left: auto;
	display: block;
	max-width: 720px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	color: var(--white-clr);
	transform: none;
}

.lp-hero-card__claim {
	width: auto;
	max-width: 680px;
	text-align: left;
	text-transform: none;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.45;
}

.lp-hero-card__kicker {
	display: inline-block;
	margin: 0 0 18px;
	padding: 8px 16px;
	background: #c9ff00;
	color: #06111f;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	text-shadow: none;
}

.lp-hero-card__title {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 0 14px;
	padding: 0;
	background: transparent;
	color: var(--white-clr);
	font-family: var(--font-heading);
	font-size: clamp(42px, 4vw, 68px);
	font-weight: 900;
	line-height: 1;
	text-transform: none;
	letter-spacing: -0.03em;
	white-space: normal;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.lp-hero-card__text {
	max-width: 620px;
	margin: 0 0 22px;
	color: var(--white-clr);
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
}

.lp-hero-card__text p {
	margin: 0;
	color: inherit;
}

.lp-hero-card__list {
	display: grid;
	gap: 8px;
	max-width: 560px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.lp-hero-card__list-item {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 12px;
	align-items: start;
	color: var(--white-clr);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.lp-hero-card__list-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--white-clr);
	background: transparent;
}

.lp-hero-card__list-icon svg {
	display: block;
	width: 15px;
	height: auto;
}

.lp-hero-card__list-text {
	display: block;
	min-width: 0;
}

.lp-hero-card .d-btn {
	width: auto;
	margin-top: 0;
	padding: 13px 28px;
	border-radius: 0;
	background: #1f8fac;
	border-color: #1f8fac;
	color: var(--white-clr);
	font-size: 15px;
	font-weight: 600;
	box-shadow: none;
}

.lp-hero-card .d-btn:hover,
.lp-hero-card .d-btn:focus {
	background: #c9ff00;
	border-color: #c9ff00;
	color: #06111f;
}

/* Alte Pool-Subtitle-Optik deaktivieren */

.lp-hero-card__subtitle,
.lp-hero-card__subtitle-highlight,
.lp-hero-card__accent {
	display: none;
}

/* Badge */

.lp-hero-card__badge {
	display: none;
}

.lp-hero__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 390px;
	margin: 0 auto;
}

.lp-hero__badge-image {
	display: block;
	width: 100%;
	max-width: 390px;
	height: auto;
	filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.28));
	transform: none;
}

/* --------------------------------------------------------------------------
   Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {
	.lp-hero__media {
		height: 775px;
		min-height: 775px;
	}

	.lp-hero-card {
		transform: none;
	}

	.lp-hero-card__title {
		font-size: 68px;
	}

	.lp-hero__badge {
		max-width: 390px;
	}

	.lp-hero__badge-image {
		max-width: 390px;
	}
}

/* --------------------------------------------------------------------------
   Large Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 1600px) {
	.lp-hero__media {
		height: 720px;
		min-height: 720px;
	}

	.lp-hero-card {
		transform: none;
	}

	.lp-hero-card__title {
		font-size: 72px;
	}

	.lp-hero__badge {
		max-width: 410px;
	}

	.lp-hero__badge-image {
		max-width: 410px;
	}
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199.98px) {
	.lp-hero__media {
		height: 620px;
		min-height: 620px;
		max-height: none;
	}

	.lp-hero-card {
		gap: 0;
		transform: none;
	}

	.lp-hero .col-xl-7,
	.lp-hero .col-lg-8 {
		max-width: 62%;
		flex: 0 0 62%;
	}

	.lp-hero-card__kicker {
		font-size: 12px;
		letter-spacing: 0.16em;
	}

	.lp-hero-card__title {
		font-size: clamp(42px, 6vw, 58px);
	}

	.lp-hero-card__text {
		font-size: 16px;
	}

	.lp-hero-card__list-item {
		font-size: 14px;
	}

	.lp-hero__badge {
		max-width: 300px;
	}

	.lp-hero__badge-image {
		max-width: 300px;
	}
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767.98px) {
	.lp-hero__media {
		height: auto;
		min-height: 680px;
	}

	.lp-hero__image {
		position: absolute;
		height: 100%;
		object-position: center center;
	}

	.lp-hero__media::after {
		background: rgba(5, 8, 17, 0.74);
	}

	.lp-hero__overlay {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 56px 16px;
	}

	.lp-hero .col-xl-7,
	.lp-hero .col-lg-8 {
		max-width: 100%;
		flex: 0 0 100%;
	}

	.lp-hero-card {
		width: 100%;
		display: block;
		padding: 0;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.lp-hero-card__claim {
		width: 100%;
		max-width: 100%;
		text-align: left;
	}

	.lp-hero-card__kicker {
		margin-bottom: 14px;
		padding: 7px 12px;
		font-size: 11px;
		letter-spacing: 0.14em;
	}

	.lp-hero-card__title {
		width: auto;
		max-width: 100%;
		margin: 0 0 14px;
		padding: 0;
		font-size: clamp(36px, 11vw, 52px);
		line-height: 1.02;
		white-space: normal;
	}

	.lp-hero-card__text {
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 1.55;
	}

	.lp-hero-card__list {
		gap: 8px;
		margin-bottom: 22px;
	}

	.lp-hero-card__list-item {
		grid-template-columns: 18px 1fr;
		gap: 10px;
		font-size: 14px;
	}

	.lp-hero-card__badge {
		display: block;
		width: 140px;
		height: auto;
		margin-top: 28px;
		border: 0;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.lp-hero-card__badge-image {
		display: none;
		width: 100%;
		height: auto;
	}

	.lp-hero__badge {
		display: none;
	}

	.lp-hero-card .d-btn {
		width: auto;
		padding: 12px 22px;
		font-size: 14px;
	}
}

.lp-service-box__item {
	display: grid;
	grid-template-columns: 22px 1fr;
	column-gap: 12px;
	align-items: start;
}

.lp-service-box__icon {
	width: 22px;
	height: 22px;
	line-height: 1;
	margin-top: 2px;
}

.lp-service-box__item-text {
	display: block;
	min-width: 0;
}

.lp-footer__contact-item--email a {
	display: inline-block;
	transition: transform 0.2s ease, color 0.2s ease;
}

.lp-footer__contact-item--phone a {
	display: inline-block;
	transition: transform 0.2s ease, color 0.2s ease;
}

.lp-footer__contact-item--email a:hover {
	transform: scale(1.05);
	color: var(--primary-clr);
}

.lp-footer__contact-item--phone a:hover {
	transform: scale(1.05);
	color: var(--primary-clr);
}


/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */

.lp-benefits {
	background: #F4F4F4;
}

#form {
		background: #F4F4F4;
}
#lp-benefits {
	margin-bottom: 0px !important;
	padding-bottom: 80px;
}

#lp-zack{
	margin-top: 0px !important;
	padding-top: 0px !important;
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
}

.lp-benefits .lp-section-header {
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.lp-benefits .lp-section-header__eyebrow {
	opacity: 0.9;
	letter-spacing: 0.22em;
}

.lp-benefits .lp-section-header__title {
	margin-bottom: 18px;
}

.lp-benefits .lp-section-header__text {
	max-width: 860px;
	margin-inline: auto;
}

.lp-benefits .row:last-child {
	justify-content: center;
	margin-top: 56px;
}

/* Cards */

.lp-benefit-card {
	height: 100%;
	padding: 54px 38px 42px;
	margin: 0 auto;
	border-radius: 42px;
	background: var(--secondary-clr);
	box-shadow: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.lp-benefit-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 34px;
	border-radius: 16px;
	background: #c9ff00;
	overflow: hidden;
}

.lp-benefit-card__icon svg,
.lp-benefit-card__icon .lp-icon__img,
.lp-benefit-card__icon-image {
	display: block;
	width: 52px;
	height: auto;
	object-fit: contain;
}

.lp-benefit-card__title {
	margin: 0 0 18px;
	color: white;
}

.lp-benefit-card__text {
	margin: 0;
	color: white;
	font-size: 1.02rem;
	line-height: 1.75;
	max-width: 290px;
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1199.98px) {
	.lp-benefit-card {
		min-height: auto;
	}
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767.98px) {
	.lp-benefits .row:last-child {
		margin-top: 36px;
	}

	.lp-benefit-card {
		padding: 38px 24px 32px;
		border-radius: 28px;
	}

	.lp-benefit-card__icon {
		margin-bottom: 24px;
	}

	.lp-benefit-card__icon svg,
	.lp-benefit-card__icon .lp-icon__img,
	.lp-benefit-card__icon-image {
		width: 52px;
	}
	.lp-benefit-card__text {
		font-size: 14px;
		line-height: 1.6;
	}
}


/* Animation when site is loadet*/

.lp-animate {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

.lp-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lp-hero-card__kicker,
.lp-hero-card__title,
.lp-hero-card__text,
.lp-hero-card__list,
.lp-hero-card .d-btn,
.lp-hero__badge {
	opacity: 0;
	transform: translateY(30px);
	animation: heroReveal 0.8s ease forwards;
}

.lp-hero-card__title {
	animation-delay: 0.12s;
}

.lp-hero-card__text {
	animation-delay: 0.24s;
}

.lp-hero-card__list {
	animation-delay: 0.36s;
}

.lp-hero-card .d-btn {
	animation-delay: 0.48s;
}

.lp-hero__badge {
	animation-delay: 0.6s;
}

@keyframes heroReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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


section#form {
    padding: 120px 0;
}

section#form,
.lp-form {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}