@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.footer-global,
.footer-global * {
	box-sizing: border-box;
}

.footer-global {
	background: linear-gradient(180deg, #0f1115, #141821);
	color: rgba(255, 255, 255, 0.86);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: auto;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	max-width: 100%;
	overflow-x: clip;
}

.footer-global__inner {
	max-width: none;
	width: 100%;
	margin: 0;
	max-width: 100%;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.footer-global__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.footer-global__title {
	font-weight: 800;
	letter-spacing: 0.06em;
	font-size: 13px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.footer-global__meta {
	margin-top: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	min-width: 0;
}

.footer-global__chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color .12s ease;
	font-weight: 600;
}

.footer-global__chip i {
	color: rgba(0, 253, 220, 0.85);
}

.footer-global__chip:hover {
	color: #ffffff;
}

.footer-global__contact-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	justify-content: flex-end;
	min-width: 0;
}

.footer-global__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
	font-weight: 600;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.footer-global__contact-item i {
	color: rgba(0, 253, 220, 0.85);
}

.footer-global__contact-item--plain {
	text-decoration: none;
}

.footer-global__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.18);
}

.footer-global__bottom-inner {
	max-width: none;
	width: 100%;
	margin: 0;
	max-width: 100%;
	padding: 6px 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: center;
	justify-content: space-between;
}

.footer-global__copyright {
	color: rgba(255, 255, 255, 0.70);
	font-size: 11px;
}

.footer-global__dev {
	color: rgba(255, 255, 255, 0.80);
	font-weight: 700;
	font-size: 11px;
}

@media (max-width: 900px) {
	.footer-global__inner {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 10px;
	}

	.footer-global__brand {
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer-global__contact-items {
		justify-content: center;
	}
}
