.spf-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	box-sizing: border-box;
	width: 100%;
	padding: 50px 100px 0;
	background: #1f1f1f;
}

.spf-logo {
	display: block;
	flex: 0 0 270px;
	line-height: 0;
}

.spf-logo img {
	display: block;
	width: 270px;
	height: 100px;
	object-fit: contain;
}

.spf-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: 388px;
	margin-top: 0;
	padding: 11px 11px 11px 13px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.spf-nav a {
	padding: 12px 10px;
	color: #a3a3a3;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.spf-nav a:hover,
.spf-nav a:focus {
	color: #ffffff;
}

.spf-nav-rule {
	flex: 0 0 1px;
	width: 1px;
	height: 16px;
	background: #a3a3a3;
}

@media (max-width: 767px) {
	.spf-header {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		padding: 24px 20px;
	}

	.spf-logo,
	.spf-logo img {
		width: 220px;
		height: auto;
	}

	.spf-nav {
		width: 100%;
	}
}
