@import url(https://fonts.bunny.net/css?family=inter:,300,400,600,800|space-grotesk:300,400,600);

:root {
	--blue: #5178a1;
	--blue-dark: #365b7f;
	--blue-soft: #edf4fa;
	--red: #5178a1;
	--red-soft: #edf4fa;
	--ink: #17212c;
	--muted: #66727f;
	--line: #e6edf3;
	--soft: #f7fafc;
	--white: #ffffff;
	--shadow: 0 22px 55px rgba(81, 120, 161, .12);
}

:root :where(.wp-element-button, .wp-block-button__link) {
	background-color: var(--blue);
	border-radius: 8px;
	font-weight: 600;
}
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

p,
h1,
h2,
h3 {
	margin: 0;
}

main {
	flex: 1;
}


.site {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
	background: var(--white);
	overflow: visible;
}

.logo-section {
	display: flex;
	flex-direction: column;
}

.site-description {
	font-size: 14px;
	font-weight: 400;
}

.container {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 18px max(24px, calc((100vw - 1280px) / 2 + 24px));
	font-size: 1rem;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, padding .22s ease;
}

.nav.is-scrolled {
	padding-top: 12px;
	padding-bottom: 12px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(14px);
	border-bottom-color: rgba(230, 237, 243, .95);
	box-shadow: 0 14px 34px rgba(15, 35, 52, .06);
	font-size: 1rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	font-weight: 600;
	letter-spacing: -.02em;
	font-size: 18px;
	margin: 0 0.5em;
}

.logo img {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 28px;
	align-items: center;
	color: #41505f;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(81, 120, 161, .22);
	background: #fff;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	z-index: 20;
	margin: 0 0.5em;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--blue-dark);
	position: relative;
	transition: background .2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	background: var(--blue-dark);
	transition: transform .22s ease, top .22s ease;
}

.menu-toggle span::before {
	top: -7px;
}

.menu-toggle span::after {
	top: 7px;
}

.menu-toggle.is-open span {
	background: transparent;
}

.menu-toggle.is-open span::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
	top: 0;
	transform: rotate(-45deg);
}

.nav-links a {
	position: relative;
	padding-bottom: 4px;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--blue);
	transition: width .22s ease;
}

.nav-links a:hover {
	color: var(--blue);
}

.nav-links a:hover::after {
	width: 100%;
}

.outline-btn {
	border-radius: 3px;
	padding: 12px 19px;
	border: 1px solid rgba(81, 120, 161, .28);
	background: var(--blue);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
}

.hero h1 {
	font-size: clamp(44px, 6vw, 76px);
	line-height: 1.04;
	letter-spacing: -2.8px;
	max-width: 710px;
	margin-bottom: 26px;
}

.hero h1 span {
	color: var(--blue);
}

.hero p {
	max-width: 610px;
	color: #526171;
	font-size: 16.5px;
	margin-bottom: 34px;
}

.hero-actions {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.btn {
	letter-spacing: .01em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 13px 24px;
	border: 0;
	border-radius: 3px;
	background: var(--blue);
	color: #fff;
	font-weight: 820;
	font-size: 1rem;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(81, 120, 161, .36);
	background: var(--blue-dark);
}

.btn.light {
	background: #fff;
	color: var(--blue-dark);
	border: 1px solid rgba(81, 120, 161, .22);
	box-shadow: none;
}

.hero-link {
	display: none;
}

.hero-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--blue-dark);
	font-weight: 800;
	font-size: 14px;
	padding: 12px 0;
}

.hero-contact strong {
	color: var(--blue);
	font-size: 17px;
}

.hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 22%, rgba(81, 120, 161, .12), transparent 34%),
		linear-gradient(90deg, #f8fbfd 0%, #ffffff 48%, #f3f8fc 100%);
	border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
	display: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	min-height: 720px;
	padding: 100px 0 72px;
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	align-items: center;
	gap: 42px;
}

.hero-content {
	max-width: 650px;
}

.hero-kicker {
	color: var(--blue);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.hero h1 {
	font-size: clamp(44px, 5.8vw, 72px);
	line-height: 1.02;
	letter-spacing: -2.8px;
	color: #173554;
	margin-bottom: 24px;
}

.hero h1 span {
	color: var(--blue);
}

.hero p {
	max-width: 570px;
	color: #526171;
	font-size: 16px;
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	gap: 22px;
	align-items: center;
	flex-wrap: wrap;
}

.hero-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #173554;
	font-size: 14px;
	font-weight: 800;
}

.hero-phone span {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	color: var(--blue);
	border: 1px solid rgba(81, 120, 161, .18);
}

.hero-phone strong {
	font-size: 17px;
	color: #173554;
}

.hero-features {
	margin-top: 42px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 760px;
}

.hero-features div {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 10px;
	align-items: start;
	color: #526171;
	font-size: 0.8rem;
	font-weight: 600;
}

.hero-features strong {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--blue-soft);
	color: var(--blue);
	font-size: 1rem;
}

.hero-visual {
	position: relative;
	min-height: 560px;
	align-self: stretch;
	display: flex;
	align-items: center;
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 -140px;
	width: 280px;
	z-index: 2;
	/* background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .72) 45%, transparent 100%); */
	pointer-events: none;
}

.hero-visual img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	object-position: center;
	border-radius: 0 0 0 90px;
	display: block;
}

.hero-card {
	position: absolute;
	right: 36px;
	bottom: 72px;
	max-width: 260px;
	padding: 22px 24px;
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(230, 237, 243, .95);
	box-shadow: 0 18px 45px rgba(15, 35, 52, .13);
}

.hero-card strong {
	display: block;
	color: #173554;
	font-size: 14px;
	margin-bottom: 6px;
}

.hero-card span {
	display: block;
	color: var(--muted);
	font-size: 1rem;
}


.image-placeholder {
	width: 100%;
	min-height: 100%;
	border: 1px solid rgba(81, 120, 161, .18);
	background: linear-gradient(135deg, rgba(81, 120, 161, .06), rgba(255, 255, 255, .85)), #f3f7fa;
	display: grid;
	place-items: center;
	color: rgba(54, 91, 127, .72);
	text-align: center;
	/* padding: 30px; */
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: 32px;
}

.image-placeholder img {
	width: 100%;
	height: 100%;
	display: block;

	object-fit: cover;
	object-position: center;
}

.hero-main-image {
	width: 100%;
	min-height: 100%;
	border-radius: 32px;
}

.hero-main-image::before,
.hero-main-image::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.image-placeholder::before,
.image-placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.image-placeholder::before {
	background: linear-gradient(to bottom right, transparent calc(50% - .5px), rgba(81, 120, 161, .18), transparent calc(50% + .5px));
}

.image-placeholder::after {
	background: linear-gradient(to top right, transparent calc(50% - .5px), rgba(81, 120, 161, .16), transparent calc(50% + .5px));
}

section {
	padding: 104px 0;
}

.two-col {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 72px;
	align-items: center;
}

.image-collage {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	grid-template-rows: 180px 180px;
	gap: 18px;
}

.image-collage .image-placeholder {
	min-height: auto;
}

.image-collage .tall {
	grid-row: span 2;
}

.kicker {
	color: var(--blue);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-bottom: 17px;
}

h2 {
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.1;
	letter-spacing: -1.7px;
	margin-bottom: 20px;
}

.section-text {
	color: var(--muted);
	max-width: 560px;
	font-size: 15.5px;
	margin-bottom: 28px;
}

.center {
	text-align: center;
}

.center .section-text {
	margin-left: auto;
	margin-right: auto;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 48px;
}

.card {
	text-align: center;
	position: relative;
	padding: 36px;
	border: 1px solid #edf2f6;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 35, 52, .05);
	min-height: 232px;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
	transform: translateY(-4px);
	border-color: rgba(81, 120, 161, .26);
	box-shadow: 0 22px 46px rgba(15, 35, 52, .08);
}

.icon-box {
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
	margin: 0 auto 22px;
	font-weight: 900;
	box-shadow: none;
}

.num.red {
	background: #fff;
}

.card h3 {
	font-size: 19px;
	margin-bottom: 12px;
	letter-spacing: -.35px;
}

.card p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 18px;
}

.learn {
	display: none;
}

.goal-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #123653 0%, #31577b 100%);
}

.goal-box {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	align-items: stretch;
	color: #fff;
	min-height: 540px;
}

.goal-content {
	padding: 72px 0;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 560px;
}

.goal-content h2 {
	color: #fff;
}

.goal-content p {
	color: rgba(255, 255, 255, .78);
}

.goal-content .kicker {
	color: rgba(255, 255, 255, .78);
}

.feature-list {
	display: grid;
	gap: 22px;
	margin-top: 34px;
}

.feature {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 18px;
	align-items: start;
}

.feature strong {
	display: block;
	margin-bottom: 5px;
}

.feature span {
	color: rgba(255, 255, 255, .68);
	font-size: 14px;
}

.goal-image .image-placeholder {
	min-height: 100%;
	background: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .78);
	border-color: rgba(255, 255, 255, .24);
}

.goal-image .image-placeholder::before,
.goal-image .image-placeholder::after {
	background-color: transparent;
}

.faq-section .two-col {
	align-items: center;
}

.stacked-images {
	position: relative;
	min-height: 410px;
}

.stacked-images .image-placeholder {
	position: absolute;
	min-height: 170px;
	width: 275px;
}

.stacked-images .one {
	left: 0;
	top: 0;
}

.stacked-images .two {
	left: 130px;
	top: 112px;
}

.stacked-images .three {
	left: 260px;
	top: 244px;
}

.faq {
	border-top: 1px solid var(--line);
}

.faq-item {
	border-bottom: 1px solid var(--line);
	transition: background .2s ease;
}

.faq-item:hover {
	background: rgba(81, 120, 161, .025);
}

.faq-q {
	width: 100%;
	padding: 21px 0;
	border: 0;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font: inherit;
	font-weight: 830;
	text-align: left;
	cursor: pointer;
	color: var(--ink);
}

.faq-q span {
	color: var(--blue);
	font-size: 20px;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
}

.faq-a p {
	color: var(--muted);
	padding: 0 0 21px;
	font-size: 14px;
}

.amenities {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 78px;
	align-items: stretch;
}

.amenities>.reveal:first-child {
	align-self: center;
}

.bars {
	display: grid;
	gap: 20px;
	margin: 34px 0;
}

.bar-top {
	display: flex;
	justify-content: space-between;
	font-weight: 830;
	font-size: 1rem;
	margin-bottom: 8px;
}

.track {
	height: 5px;
	background: #dce6ee;
}

.fill {
	height: 5px;
	background: var(--blue);
	width: var(--value);
}

.video-box {
	min-height: 100%;
	position: relative;
}

.video-box .image-placeholder {
	min-height: 100%;
}

.play-large {
	display: none;
}

.quick-check {
	padding: 56px 0;
	background: #f7fafc;
}

.check-box {
	display: grid;
	grid-template-columns: 1fr 1.15fr auto;
	gap: 34px;
	align-items: center;
	padding: 38px;
	background: #fff;
	border: 1px solid #edf2f6;
	box-shadow: 0 12px 30px rgba(15, 35, 52, .04);
}

.check-box h2 {
	font-size: clamp(26px, 3vw, 38px);
	margin-bottom: 12px;
}

.check-box .section-text {
	margin-bottom: 0;
}

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

.check-list div {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	align-items: start;
	color: #334454;
	font-weight: 720;
}

.check-list span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--blue-soft);
	color: var(--blue);
	font-weight: 900;
}


.pricing-section {
	background: #fcfdff;
}

.pricing-layout {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 34px;
	align-items: start;
	margin-top: 44px;
}

.price-panel {
	padding: 36px;
	border: 1px solid #edf2f6;
	background: #fff;
	box-shadow: none;
}

.price-panel.highlight {
	background: #10324d;
	color: #fff;
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.price-panel.highlight .kicker,
.price-panel.highlight p,
.price-panel.highlight .price-note {
	color: rgba(255, 255, 255, .78);
	margin: 0;
}

.price-panel h3 {
	font-size: 26px;
	letter-spacing: -.8px;
	margin-bottom: 18px;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 8px;
}

.price-card {
	padding: 24px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .20);
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.price-card strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	letter-spacing: -1.2px;
	margin-bottom: 10px;
}

.price-card span {
	display: block;
	color: rgba(255, 255, 255, .78);
	font-size: 1rem;
}

.price-note {
	margin-top: 20px;
	font-size: 1rem;
}

.price-extra {
	margin-top: 4px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	display: grid;
	gap: 12px;
}

.price-extra div {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	align-items: start;
	color: rgba(255, 255, 255, .82);
	font-size: 1rem;
}

.price-extra span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-weight: 900;
	font-size: 1rem;
}

.price-extra p {
	margin: 0;
	color: rgba(255, 255, 255, .82);
}

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

.price-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.price-row:last-child {
	border-bottom: 0;
}

.price-row span:first-child {
	color: #344250;
	font-weight: 720;
}

.price-row span:last-child {
	color: var(--blue-dark);
	font-weight: 900;
	text-align: right;
	white-space: nowrap;
}

.pricing-footnotes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 28px;
}

.notice {
	padding: 22px;
	background: var(--blue-soft);
	border-left: 4px solid var(--blue);
	color: #455564;
	font-size: 14px;
}

.notice.red {
	background: var(--blue-soft);
	border-left-color: var(--blue-dark);
}

.price-hint {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	color: var(--blue);
	font-weight: 800;

}


.contact-steps {
	background:
		radial-gradient(circle at 12% 12%, rgba(81, 120, 161, .10), transparent 28%),
		linear-gradient(180deg, #f6f9fc, #ffffff);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 54px;
	align-items: start;
	padding: 48px;
	background: #fff;
	border: 1px solid #e9f0f5;
	box-shadow: 0 24px 60px rgba(15, 35, 52, .07);
}

.form-card {
	background: #f7fafc;
	border: 1px solid #e3ebf2;
	color: var(--ink);
	padding: 34px;
	border-radius: 8px;
	width: 100%;
	box-shadow: none;
	position: sticky;
	top: 24px;
}

.form-card h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.form-card p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 22px;
}

.form-card input,
.form-card textarea {
	width: 100%;
	display: block;
	border: 1px solid #dbe5ee;
	margin-bottom: 12px;
	padding: 14px 15px;
	font: inherit;
	font-size: 1rem;
	outline: none;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.form-card input:focus,
.form-card textarea:focus {
	border-color: rgba(81, 120, 161, .55);
	box-shadow: 0 0 0 4px rgba(81, 120, 161, .10);
}

.form-card textarea {
	min-height: 108px;
	resize: vertical;
}

.form-card .btn {
	width: 100%;
	margin-top: 8px;
	box-shadow: none;
}

.form-card .btn:hover {
	background: var(--blue-dark);
}

.request-panel {
	padding: 0;
	max-width: 760px;
}

.request-panel .section-text {
	margin-bottom: 24px;
}

.step-list {
	display: grid;
	gap: 18px;
	margin-top: 34px;
	position: relative;
}

.step-list::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 12px;
	bottom: 12px;
	width: 1px;
	background: #d8e3ec;
}

.step {
	position: relative;
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 18px;
	align-items: start;
	padding-left: 0;
}

.num {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 2px solid var(--blue);
	color: var(--blue);
	display: grid;
	place-items: center;
	font-weight: 900;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.step strong {
	display: block;
	margin-bottom: 5px;
}

.step p {
	color: var(--muted);
	font-size: 14px;
}

.request-callout {
	margin-top: 32px;
	padding: 20px 22px;
	background: #f7fafc;
	border: 1px solid #e3ebf2;
	color: #455564;
	font-size: 14px;
}

.request-callout strong {
	color: var(--blue-dark);
}

.contact-section {
	background: #f7f7f7;
	padding-bottom: 112px;
}

.contact-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 42px;
}

.contact-head .section-text {
	margin-bottom: 0;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 28px;
}

.contact-card {
	display: block;
	padding: 32px;
	background: #fff;
	border: 1px solid #edf2f6;
	box-shadow: 0 14px 34px rgba(15, 35, 52, .05);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
	transform: translateY(-4px);
	border-color: rgba(81, 120, 161, .26);
	box-shadow: 0 22px 46px rgba(15, 35, 52, .08);
}

.contact-card span {
	display: block;
	color: var(--blue);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.contact-card strong {
	display: block;
	font-size: 24px;
	line-height: 1.18;
	letter-spacing: -.6px;
	margin-bottom: 10px;
}

.contact-card small {
	display: block;
	color: var(--muted);
	font-size: 1rem;
}

.partners-section {
	background: #f7fafc;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.partners-head {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 42px;
}

.partners-head .section-text {
	margin-left: auto;
	margin-right: auto;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.partner-card {
	min-height: 132px;
	padding: 26px;
	background: #fff;
	border: 1px solid #edf2f6;
	display: grid;
	place-items: center;
	box-shadow: 0 14px 34px rgba(15, 35, 52, .04);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.partner-card:hover {
	transform: translateY(-3px);
	border-color: rgba(81, 120, 161, .26);
	box-shadow: 0 22px 46px rgba(15, 35, 52, .07);
}

.partner-card img {
	max-width: 100%;
	max-height: 64px;
	object-fit: contain;
	/* filter: grayscale(1); */
	opacity: .78;
	transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.partner-card:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.03);
}

@media (max-width: 580px) {
	.site-description {
		display: none;
	}
	.partners-grid {
		grid-template-columns: 1fr;
	}

	.partner-card {
		min-height: 110px;
		padding: 22px;
	}
}


footer {
	background: #123653;
	color: #fff;
	padding: 78px 0 34px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr repeat(3, .7fr);
	gap: 38px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}

footer h3,
footer h4 {
	margin: 0 0 16px;
}

footer p,
footer a {
	color: rgba(255, 255, 255, .72);
	font-size: 1rem;
}

footer a {
	display: block;
	margin-bottom: 9px;
}

.subscribe {
	display: flex;
	margin-top: 14px;
}

.subscribe input {
	min-width: 0;
	flex: 1;
	border: 0;
	padding: 12px;
	font-size: 1rem;
}

.subscribe button {
	border: 0;
	background: #fff;
	color: var(--blue-dark);
	font-weight: 900;
	padding: 0 14px;
	cursor: pointer;
}

.copyright {
	text-align: center;
	color: rgba(255, 255, 255, .58);
	font-size: 1rem;
	padding-top: 28px;
}

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

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reverse-mobile {
	grid-template-areas: "images content";
}

.reverse-mobile .image-collage {
	grid-area: images;
}

.reverse-mobile .reveal:last-child {
	grid-area: content;
}

@media (max-width: 980px) {

	.reverse-mobile {
		grid-template-areas:
			"content"
			"images";
	}

}

@media (max-width: 980px) {

	.contact-head {
		display: block;
	}

	.contact-head .btn {
		margin-top: 24px;
	}

	.contact-cards {
		grid-template-columns: 1fr;
	}

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

	.form-card {
		max-width: 100%;
		position: static;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 34px;
	}

	.step-list::before {
		display: none;
	}

	.nav {
		padding: 16px 0;
	}

	.logo {
		font-size: 15px;
		max-width: calc(100% - 58px);
	}

	.logo span {
		line-height: 1.2;
	}

	.menu-toggle {
		display: inline-flex;
		flex: 0 0 auto;
	}

	.nav .outline-btn {
		display: none;
	}

	.nav-links {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100%);
		display: grid;
		gap: 0;
		padding: 8px;
		background: rgba(255, 255, 255, 1);
		border: 1px solid var(--line);
		box-shadow: 0 22px 50px rgba(15, 35, 52, .12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	}

	.nav-links.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.nav-links a {
		padding: 14px 12px;
		border-bottom: 1px solid var(--line);
	}

	.nav-links a:last-child {
		border-bottom: 0;
	}

	.nav-links a::after {
		display: none;
	}

	.hero-grid,
	.two-col,
	.check-box,
	.goal-box,
	.pricing-layout,
	.pricing-footnotes,
	.amenities,
	.contact-grid,
	.footer-grid,
	.quote-card {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 116px 0 64px;
	}

	.hero-visual {
		min-height: auto;
	}

	.hero-visual::before {
		display: none;
	}

	.hero-visual img {
		height: 360px;
		border-radius: 32px;
	}

	.hero-features {
		grid-template-columns: 1fr;
	}

	.hero-card {
		right: 18px;
		bottom: 18px;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-head {
		display: block;
	}

	.news-head .btn {
		margin-top: 24px;
	}

	.price-grid {
		grid-template-columns: 1fr;
	}

	.check-box {
		gap: 24px;
	}

	.price-panel.highlight {
		position: static;
	}

	.goal-content {
		padding: 64px 28px;
		max-width: none;
	}

	.goal-image .image-placeholder {
		min-height: 360px;
	}

	.stacked-images {
		min-height: auto;
		display: grid;
		gap: 14px;
	}

	.stacked-images .image-placeholder {
		position: static;
		width: 100%;
	}

	.footer-grid {
		gap: 24px;
	}
}

@media (max-width: 580px) {
	
	.hero-grid {
		padding: 25px 0;
	}
	
	.site-description {
	   font-size: 1rem;
	   font-weight: 400;
    }


	.contact-section {
		padding-bottom: 74px;
	}

	.contact-card {
		padding: 24px;
	}

	.contact-card strong {
		font-size: 20px;
		word-break: break-word;
	}

	.container {
		width: min(100% - 32px, 1180px);
	}

	section {
		padding: 74px 0;
	}

	.logo img {
		width: 54px;
		height: 54px;
	}

	.logo span {
		font-size: 1.1rem;
	}

	.hero h1 {
		font-size: 42px;
		letter-spacing: -1.6px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.image-collage {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.image-collage .image-placeholder {
		min-height: 180px;
	}

	.image-collage .tall {
		grid-row: auto;
	}

	.goal-content {
		padding: 0px 0px 50px 0px;
	}

	.contact-grid {
		gap: 24px;
		padding: 24px;
	}

	.request-panel {
		padding: 0;
	}

	.price-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.price-row span:last-child {
		text-align: left;
	}

	.quote-section {
		padding-bottom: 74px;
	}

	.transport-grid {
		grid-template-columns: 1fr;
	}

	.transport-panel {
		padding: 24px;
	}

	.transport-head {
		display: block;
	}
}