html {
	min-height: 100%;
	position: relative;
}

body {
	margin-bottom: 0 !important;
}

.footer-distributed {
	position: static !important;
	bottom: auto !important;
	width: 100%;
	margin-top: 36px;
	padding: 30px 0;
	background: rgba(7, 12, 13, 0.98);
	border-top: 1px solid rgba(77, 163, 255, 0.26);
	box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.24);
	color: var(--cs-muted);
	font: 14px var(--cs-font);
	box-sizing: border-box;
}

.footer-grid {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
}

.footer-left,
.footer-right {
	width: auto !important;
	float: none !important;
	display: block !important;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--cs-text) !important;
	font-family: var(--cs-display);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.footer-brand i {
	color: var(--cs-green);
}

.footer-brand img {
	width: 42px;
	height: 42px;
	object-fit: cover;
	object-position: left center;
	display: block;
	max-width: none;
	border-radius: 8px;
}

.footer-brand .cs-logo-crest {
	width: 34px;
	height: 34px;
	border-radius: 9px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 14px 0 0;
	padding: 0;
	color: var(--cs-muted);
}

.footer-links a {
	color: var(--cs-muted) !important;
	font-weight: 700;
}

.footer-links a:hover {
	color: var(--cs-green) !important;
}

.footer-company-about {
	max-width: 360px;
	margin: 0;
	color: var(--cs-muted);
	line-height: 1.55;
}

.footer-company-about span {
	display: block;
	margin-bottom: 8px;
	color: var(--cs-text);
	font-family: var(--cs-display);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.footer-icons {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 14px;
}

.footer-icons a {
	width: 38px;
	height: 38px;
	display: inline-grid;
	place-items: center;
	color: var(--cs-text) !important;
	background: rgba(77, 163, 255, 0.1);
	border: 1px solid rgba(77, 163, 255, 0.22);
	border-radius: 8px;
	font-size: 18px;
}

.footer-icons a:hover {
	color: #06110d !important;
	background: var(--cs-green);
}

@media (max-width: 760px) {
	.footer-grid {
		flex-direction: column;
	}

	.footer-icons {
		justify-content: flex-start;
	}
}
		