:root {
	--sf-ink: #12211e;
	--sf-deep: #061815;
	--sf-green: #15b798;
	--sf-green-dark: #0b806e;
	--sf-lime: #d7f36b;
	--sf-gold: #ffbc42;
	--sf-soft: #f3faf7;
	--sf-muted: #64736f;
	--sf-line: rgba(18, 33, 30, .12);
}

body {
	color: var(--sf-ink);
}

.loader-wrapper {
	display: none;
}

.solar-topbar-section {
	background: var(--sf-deep);
}

.solar-header-section {
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 12px 38px rgba(18, 33, 30, .08);
}

.solar-menu ul li a {
	color: var(--sf-ink);
	font-weight: 700;
}

.solar-menu ul li a:hover {
	color: var(--sf-green);
}

.solar-btn a,
.solar-btn button {
	background: var(--sf-green);
	border-radius: 6px;
}

.solar-search-button .solar-btn a {
	background: var(--sf-green);
	color: #fff;
}

.sf-site {
	background: #fff;
	color: var(--sf-ink);
	overflow: hidden;
}

.sf-wrap {
	width: min(1180px, calc(100% - 34px));
	margin: 0 auto;
}

.sf-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	padding: 96px 0 86px;
	background:
		linear-gradient(115deg, rgba(6, 24, 21, .98), rgba(10, 75, 62, .82) 52%, rgba(6, 24, 21, .62)),
		url('../images/slider/slider-bg.jpg') center/cover no-repeat;
}

.sf-hero:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}

.sf-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
	gap: 62px;
	align-items: center;
}

.sf-eyebrow,
.sf-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sf-green);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.sf-eyebrow {
	color: var(--sf-lime);
}

.sf-hero h1,
.sf-section h2,
.sf-showcase h2,
.sf-contact h2 {
	font-weight: 900;
	letter-spacing: 0;
}

.sf-hero h1 {
	color: #fff;
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1.02;
	margin: 0 0 24px;
	max-width: 860px;
}

.sf-hero p {
	color: rgba(255,255,255,.82);
	font-size: 18px;
	line-height: 1.75;
	max-width: 690px;
	margin-bottom: 34px;
}

.sf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.sf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 24px;
	border: 0;
	border-radius: 6px;
	font-weight: 900;
	text-decoration: none;
	transition: .22s ease;
}

.sf-btn-primary {
	background: var(--sf-green);
	color: #fff;
}

.sf-btn-primary:hover {
	background: var(--sf-green-dark);
	color: #fff;
	transform: translateY(-2px);
}

.sf-btn-light {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.3);
	color: #fff;
}

.sf-btn-light:hover {
	background: #fff;
	color: var(--sf-ink);
}

.sf-hero-visual {
	position: relative;
	min-height: 560px;
}

.sf-main-photo {
	width: 86%;
	height: 520px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(0,0,0,.36);
}

.sf-output-card,
.sf-proof-card {
	position: absolute;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 20px 55px rgba(0,0,0,.24);
}

.sf-output-card {
	right: 0;
	top: 46px;
	width: 190px;
	padding: 24px;
}

.sf-output-card strong {
	display: block;
	color: var(--sf-green);
	font-size: 40px;
	line-height: 1;
	margin-bottom: 8px;
}

.sf-output-card span,
.sf-proof-card span {
	color: var(--sf-muted);
	line-height: 1.45;
}

.sf-proof-card {
	left: 42px;
	bottom: 24px;
	display: flex;
	gap: 14px;
	align-items: center;
	width: min(350px, calc(100% - 50px));
	padding: 18px;
}

.sf-proof-card i {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--sf-soft);
	color: var(--sf-green);
	font-size: 28px;
}

.sf-proof-card strong {
	display: block;
	font-size: 18px;
	margin-bottom: 2px;
}

.sf-strip {
	position: relative;
	z-index: 2;
	margin-top: -34px;
	padding-bottom: 40px;
}

.sf-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: #fff;
	border: 1px solid var(--sf-line);
	border-radius: 8px;
	box-shadow: 0 22px 55px rgba(18, 33, 30, .1);
	overflow: hidden;
}

.sf-strip-grid div {
	padding: 25px;
	border-right: 1px solid var(--sf-line);
}

.sf-strip-grid div:last-child {
	border-right: 0;
}

.sf-strip-grid strong {
	display: block;
	color: var(--sf-green);
	font-size: 34px;
	line-height: 1;
	margin-bottom: 8px;
}

.sf-strip-grid span {
	color: var(--sf-muted);
}

.sf-section,
.sf-showcase,
.sf-contact {
	padding: 98px 0;
}

.sf-soft {
	background: var(--sf-soft);
}

.sf-split,
.sf-showcase-grid,
.sf-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 58px;
	align-items: center;
}

.sf-image-collage {
	position: relative;
	min-height: 560px;
}

.sf-image-collage img {
	position: absolute;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(18, 33, 30, .17);
}

.sf-image-collage img:first-child {
	left: 0;
	top: 0;
	width: 78%;
	height: 420px;
}

.sf-image-collage img:last-child {
	right: 0;
	bottom: 0;
	width: 56%;
	height: 260px;
	border: 10px solid #fff;
}

.sf-section h2,
.sf-showcase h2,
.sf-contact h2 {
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.14;
	margin-bottom: 18px;
}

.sf-section p,
.sf-showcase p,
.sf-contact p {
	color: var(--sf-muted);
	font-size: 17px;
	line-height: 1.72;
}

.sf-check-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.sf-check-list li {
	display: flex;
	gap: 12px;
	color: var(--sf-muted);
	line-height: 1.6;
}

.sf-check-list i {
	color: var(--sf-green);
	font-size: 20px;
	margin-top: 2px;
}

.sf-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.sf-heading-left {
	margin-left: 0;
	text-align: left;
}

.sf-heading p {
	margin-bottom: 0;
}

.sf-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.sf-product-card {
	background: #fff;
	border: 1px solid var(--sf-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(18, 33, 30, .08);
	transition: .22s ease;
}

.sf-product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 55px rgba(18, 33, 30, .14);
}

.sf-product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.sf-product-card div {
	padding: 26px;
}

.sf-product-card span {
	color: var(--sf-green);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 12px;
}

.sf-product-card h3 {
	font-size: 23px;
	margin: 8px 0 10px;
}

.sf-product-card p {
	font-size: 15px;
	margin: 0;
}

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

.sf-process-step {
	min-height: 290px;
	padding: 30px 24px;
	border: 1px solid var(--sf-line);
	border-radius: 8px;
	background: #fff;
}

.sf-process-step span {
	display: block;
	color: var(--sf-gold);
	font-size: 38px;
	font-weight: 900;
	margin-bottom: 18px;
}

.sf-process-step h3 {
	font-size: 21px;
	margin-bottom: 10px;
}

.sf-process-step p {
	font-size: 15px;
	margin: 0;
}

.sf-showcase {
	background: var(--sf-deep);
	color: #fff;
}

.sf-showcase h2,
.sf-showcase p {
	color: #fff;
}

.sf-showcase p {
	opacity: .78;
}

.sf-showcase img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 8px;
}

.sf-meters {
	margin-top: 28px;
}

.sf-meters label {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	color: #fff;
	font-weight: 800;
	margin: 18px 0 10px;
}

.sf-meters div {
	height: 10px;
	background: rgba(255,255,255,.14);
	border-radius: 99px;
	overflow: hidden;
}

.sf-meters div span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--sf-green), var(--sf-lime));
	border-radius: inherit;
}

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

.sf-gallery figure {
	position: relative;
	min-height: 330px;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: var(--sf-deep);
}

.sf-gallery img {
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
	transition: .35s ease;
}

.sf-gallery figure:hover img {
	transform: scale(1.06);
}

.sf-gallery figcaption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 15px;
	border-radius: 6px;
	background: rgba(6, 24, 21, .82);
	color: #fff;
	font-weight: 800;
}

.sf-contact {
	background:
		linear-gradient(120deg, rgba(6, 24, 21, .96), rgba(21, 183, 152, .78)),
		url('../images/resource/call-back-bg.jpg') center/cover no-repeat;
	color: #fff;
}

.sf-contact h2,
.sf-contact p {
	color: #fff;
}

.sf-contact p {
	opacity: .82;
}

.sf-contact-cards {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.sf-contact-cards a,
.sf-contact-cards span {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-weight: 800;
}

.sf-contact-cards i {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: rgba(255,255,255,.14);
	color: var(--sf-lime);
}

.sf-form {
	background: #fff;
	padding: 34px;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.sf-form input,
.sf-form textarea {
	width: 100%;
	min-height: 54px;
	margin-bottom: 14px;
	padding: 0 16px;
	border: 1px solid var(--sf-line);
	border-radius: 6px;
	color: var(--sf-ink);
	outline: none;
}

.sf-form textarea {
	min-height: 126px;
	padding-top: 15px;
	resize: vertical;
}

.sf-form button {
	width: 100%;
}

.footer-section {
	background: var(--sf-deep);
}

.footer-wiget-text p,
.footer-wiget-contact-menu ul li,
.footer-wiget-menu ul li a,
.copyright-text p {
	color: rgba(255,255,255,.76);
}

@media (max-width: 991px) {
	.sf-hero {
		min-height: auto;
	}

	.sf-hero-grid,
	.sf-split,
	.sf-showcase-grid,
	.sf-contact-grid {
		grid-template-columns: 1fr;
	}

	.sf-strip-grid,
	.sf-process-grid,
	.sf-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sf-product-grid {
		grid-template-columns: 1fr;
	}

	.sf-hero-visual {
		min-height: 520px;
	}
}

@media (max-width: 767px) {
	.sf-section,
	.sf-showcase,
	.sf-contact {
		padding: 68px 0;
	}

	.sf-hero {
		padding: 72px 0 60px;
	}

	.sf-actions,
	.sf-actions .sf-btn {
		width: 100%;
	}

	.sf-strip-grid,
	.sf-process-grid,
	.sf-gallery {
		grid-template-columns: 1fr;
	}

	.sf-strip-grid div {
		border-right: 0;
		border-bottom: 1px solid var(--sf-line);
	}

	.sf-main-photo {
		width: 100%;
		height: 420px;
	}

	.sf-output-card {
		right: 12px;
		top: 20px;
	}

	.sf-proof-card {
		left: 12px;
	}

	.sf-image-collage {
		min-height: auto;
		display: grid;
		gap: 16px;
	}

	.sf-image-collage img,
	.sf-image-collage img:first-child,
	.sf-image-collage img:last-child {
		position: static;
		width: 100%;
		height: 300px;
		border: 0;
	}
}
