/* zain-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: 'Zain';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/zain-v4-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zain-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: 'Zain';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/zain-v4-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zain-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: 'Zain';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/zain-v4-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* zain-800 - 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: 'Zain';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/zain-v4-latin-800.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: 'Zain', Arial, sans-serif;

	--primary-clr: #004967;
	--secondary-clr: #0F1115;
	--accent-clr: #0DAEEF;

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

	--footer-bg: #f5f1ee;
	--footer-text: #85766b;

	--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: 999px;
	--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(--btn-primary-text);
}

/* 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(--secondary-clr);
	color: white;
}

.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 {
	color: #ffffff;
	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;
}

.lp-hero__media {
	position: relative;
	height: calc(100vh - var(--lp-navbar-height, 96px));
	min-height: 720px;
	overflow: hidden;
}

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

.lp-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.05) 0%,
			rgba(0, 0, 0, 0.18) 45%,
			rgba(0, 0, 0, 0.48) 100%
		),
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.32) 0%,
			rgba(0, 0, 0, 0.18) 35%,
			rgba(0, 0, 0, 0.04) 70%
		);
}

.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 {
	justify-content: center;
}

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

/* Claim wrapper */

.lp-hero-card {
	position: relative;
	left: auto;
	max-width: none;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 30px;
	transform: rotate(-4deg) translate(80px, 72px);
}

.lp-hero-card__claim {
	width: max-content;
	max-width: none;
	text-align: center;
	text-transform: uppercase;
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1;
}

.lp-hero-card__kicker {
	display: block;
	margin: 0 0 4px;
	padding: 0;
	background: transparent;
	color: var(--white-clr);
	font-family: var(--font-heading);
	font-size: clamp(2.6rem, 4vw, 5rem);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.035em;
	text-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
}

.lp-hero-card__title {
	display: block;
	width: max-content;
	max-width: none;
	margin: 0;
	padding: 22px 38px 8px;
	background: var(--white-clr);
	color: #063e5c;
	font-family: var(--font-heading);
	font-size: clamp(2.8rem, 4.35vw, 5.25rem);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	white-space: nowrap;
	text-shadow: none;
}

.lp-hero-card__subtitle {
	display: inline-block;
	margin-top: -8px;
	padding: 10px 34px 11px;
	background: #08090c;
	color: var(--white-clr);
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3.7rem);
	font-weight: 900;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	text-shadow: none;
}

.lp-hero-card__subtitle-highlight {
	font-size: 1.35em;
	line-height: 1;
}

.lp-hero-card__accent {
	color: var(--accent-clr);
}

/* Badge */

.lp-hero-card__badge {
	flex: 0 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 999px;
	border: 7px solid var(--white-clr);
	background: var(--accent-clr);
	color: var(--white-clr);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-style: italic;
	font-weight: 900;
	line-height: 1.12;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
	transform: translate(-8px, 34px);
}

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

@media (min-width: 1200px) {
	.lp-hero__media {
		height: calc(100vh - var(--lp-navbar-height, 96px));
		min-height: 720px;
	}

	.lp-hero-card {
		transform: rotate(-4deg) translate(90px, 80px);
	}

	.lp-hero-card__kicker {
		font-size: 4.3rem;
	}

	.lp-hero-card__title {
		font-size: 4.75rem;
		padding-inline: 42px;
	}

	.lp-hero-card__subtitle {
		font-size: 3.15rem;
	}

	.lp-hero-card__badge {
		width: 142px;
		height: 142px;
		font-size: 1.05rem;
		transform: translate(-6px, 36px);
	}
}

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

@media (min-width: 1600px) {
	.lp-hero-card {
		transform: rotate(-4deg) translate(110px, 88px);
	}

	.lp-hero-card__kicker {
		font-size: 4.8rem;
	}

	.lp-hero-card__title {
		font-size: 5.25rem;
	}

	.lp-hero-card__subtitle {
		font-size: 3.5rem;
	}

	.lp-hero-card__badge {
		width: 154px;
		height: 154px;
		font-size: 1.12rem;
	}
}

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

@media (min-width: 768px) and (max-width: 1199.98px) {
	.lp-hero__media {
		height: calc(100vh - var(--lp-navbar-height, 88px));
		min-height: 620px;
		max-height: 820px;
	}

	.lp-hero-card {
		gap: 24px;
		transform: rotate(-4deg) translate(30px, 50px);
	}

	.lp-hero-card__kicker {
		font-size: clamp(2.7rem, 6vw, 4.2rem);
	}

	.lp-hero-card__title {
		font-size: clamp(2.8rem, 6.4vw, 4.4rem);
		padding: 10px 30px;
	}

	.lp-hero-card__subtitle {
		font-size: clamp(2rem, 4.6vw, 3rem);
		padding: 9px 28px;
	}

	.lp-hero-card__badge {
		width: 122px;
		height: 122px;
		font-size: 0.92rem;
		border-width: 6px;
		transform: translate(-4px, 28px);
	}
}

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

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

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

	.lp-hero__media::after {
		background: rgba(0, 0, 0, 0.34);
	}

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

	.lp-hero-card {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 0;
		background: transparent;
		box-shadow: none;
		transform: rotate(-3deg) translateY(22px);
	}

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

	.lp-hero-card__kicker {
		font-size: clamp(2.25rem, 12vw, 4rem);
	}

	.lp-hero-card__title {
		width: fit-content;
		max-width: 100%;
		margin-inline: auto;
		padding: 8px 16px;
		font-size: clamp(2.25rem, 11vw, 3.7rem);
		white-space: normal;
	}

	.lp-hero-card__subtitle {
		padding: 8px 16px;
		font-size: clamp(1.75rem, 8.5vw, 2.8rem);
	}

	.lp-hero-card__badge {
		width: 112px;
		height: 112px;
		border-width: 6px;
		font-size: 0.86rem;
		transform: none;
	}
}

.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: #050811;
	color: var(--white-clr);
}

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

.lp-benefits .lp-section-header__eyebrow {
	color: var(--white-clr);
	opacity: 0.9;
	letter-spacing: 0.22em;
}

.lp-benefits .lp-section-header__title {
	color: var(--white-clr);
	margin-bottom: 18px;
}

.lp-benefits .lp-section-header__text {
	max-width: 860px;
	margin-inline: auto;
	color: rgba(255,255,255,.82);
}

.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(--white-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: auto;
	height: auto;
	margin: 0 auto 34px;
	border-radius: 0;
}

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

.lp-benefit-card__title {
	margin: 0 0 18px;
	color: var(--primary-clr);
}

.lp-benefit-card__text {
	margin: 0;
	color: #6d6d6d;
	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: 72px;
	}
	.lp-benefit-card__text {
		font-size: 14px;
		line-height: 1.6;
	}
}

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

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

.lp-hero-card__kicker,
.lp-hero-card__title,
.lp-hero-card__subtitle,
.lp-hero-card__badge {
	opacity: 0;
	transform: translateY(30px);
	animation: heroReveal .8s ease forwards;
}

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

.lp-hero-card__subtitle {
	animation-delay: .3s;
}

.lp-hero-card__badge {
	animation-delay: .45s;
}

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

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

.lp-pool-card {
	overflow: hidden;
}

.lp-pool-card__media img {
	transition: transform .7s ease;
}

.lp-pool-card:hover .lp-pool-card__media img {
	transform: scale(1.05);
}


/* ==========================================================================
   Pool Cards
   ========================================================================== */

.lp-pool-types {
	background: var(--white-clr);
}

.lp-pool-types .row.justify-content-center {
	margin-top: 48px;
}

.lp-pool-card {
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: var(--white-clr);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.lp-pool-card__media {
	overflow: hidden;
}

.lp-pool-card__media .lp-media {
	margin: 0;
}

.lp-pool-card__media .lp-media__image {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.lp-pool-card__content {
	padding: 28px 28px 30px;
}

.lp-pool-card__title {
	margin: 0 0 12px;
	color: #005676;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
}

.lp-pool-card__text {
	margin: 0;
	color: #1d1d1d;
	font-size: 0.92rem;
	line-height: 1.6;
}

/* Tablet */

@media (max-width: 1199.98px) {
	.lp-pool-card__media .lp-media__image {
		height: 230px;
	}
}

/* Mobile */

@media (max-width: 767.98px) {
	.lp-pool-card {
		border-radius: 14px;
	}

	.lp-pool-card__media .lp-media__image {
		height: 220px;
	}

	.lp-pool-card__content {
		padding: 24px 22px 26px;
	}

	.lp-pool-card__title {
		font-size: 1.2rem;
	}
}

section#form {
    padding: 120px 0;
}

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