.bi-site-footer,
.bi-site-footer * {
	box-sizing: border-box;
}

.bi-site-footer {
	--bi-footer-green: #10ae7a;
	--bi-footer-dark: #070908;
	--bi-footer-panel: #101411;
	--bi-footer-line: #252d28;
	--bi-footer-muted: #9da7a1;
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: var(--bi-footer-dark);
	color: #fff;
	font-family: inherit;
}

.bi-site-footer a {
	text-decoration: none !important;
}

.bi-site-footer__inner {
	width: min(1200px, calc(100% - 42px));
	margin: 0 auto;
}

.bi-site-footer__main {
	display: grid;
	grid-template-columns: minmax(235px, .72fr) minmax(0, 1.78fr);
	gap: clamp(42px, 5.5vw, 72px);
	padding: 68px 0 58px;
}

.bi-site-footer__brand {
	min-width: 0;
}

.bi-site-footer__logo {
	display: inline-flex;
	align-items: center;
	width: 184px;
	margin-bottom: 24px;
}

.bi-site-footer__logo img {
	display: block;
	width: 184px;
	max-width: 100%;
	height: auto;
}

.bi-site-footer__brand > p {
	max-width: 390px;
	margin: 0 0 21px;
	color: var(--bi-footer-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.65;
}

.bi-site-footer__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin-bottom: 24px;
}

.bi-site-footer__contact a {
	color: #fff !important;
	font-size: 13px;
	font-weight: 750;
}

.bi-site-footer__contact a:hover,
.bi-site-footer__contact a:focus-visible {
	color: var(--bi-footer-green) !important;
}

.bi-site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bi-site-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 8px 14px;
	background: #151a17;
	border: 1px solid #2a332e;
	border-radius: 8px;
	color: #fff !important;
	font-size: 11px;
	font-weight: 800;
	transition: background .18s ease, border-color .18s ease;
}

.bi-site-footer__socials a:hover,
.bi-site-footer__socials a:focus-visible {
	background: #0c6f50;
	border-color: var(--bi-footer-green);
}

.bi-site-footer__socials strong {
	font: 900 17px/1 Arial, sans-serif;
}

.bi-site-footer__socials svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.bi-site-footer__socials svg circle:last-child {
	fill: currentColor;
	stroke: none;
}

.bi-site-footer-menu,
.bi-site-footer-menu .sub-menu {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.bi-site-footer-menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 27px;
}

.bi-site-footer-menu > li {
	min-width: 0;
}

.bi-site-footer-menu > li > a,
.bi-site-footer-menu > li > span {
	display: block;
	margin-bottom: 19px;
	padding-bottom: 13px;
	border-bottom: 1px solid var(--bi-footer-line);
	color: #fff !important;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .035em;
	line-height: 1.3;
	text-transform: uppercase;
}

.bi-site-footer-menu > li > a::after,
.bi-site-footer-menu > li > span::after {
	display: block;
	width: 32px;
	height: 2px;
	margin-top: 12px;
	background: var(--bi-footer-green);
	content: "";
}

.bi-site-footer-menu .sub-menu li {
	margin: 0 0 10px !important;
}

.bi-site-footer-menu .sub-menu a {
	display: inline-block;
	color: var(--bi-footer-muted) !important;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.bi-site-footer-menu .sub-menu a:hover,
.bi-site-footer-menu .sub-menu a:focus-visible {
	color: var(--bi-footer-green) !important;
}

.bi-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	min-height: 70px;
	padding: 18px 0;
	border-top: 1px solid var(--bi-footer-line);
}

.bi-site-footer__bottom p {
	margin: 0;
	color: #707b75;
	font-size: 11px;
	font-weight: 600;
}

.bi-site-footer__bottom > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bi-site-footer__bottom a,
.bi-site-footer__bottom span {
	color: #8f9993 !important;
	font-size: 11px;
	font-weight: 700;
}

.bi-site-footer__bottom a:hover,
.bi-site-footer__bottom a:focus-visible {
	color: #fff !important;
}

@media (max-width: 900px) {
	.bi-site-footer__main {
		grid-template-columns: 1fr;
		gap: 44px;
		padding-top: 54px;
	}

	.bi-site-footer__brand {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 30px;
	}

	.bi-site-footer__logo,
	.bi-site-footer__brand > p {
		grid-column: 1;
	}

	.bi-site-footer__contact,
	.bi-site-footer__socials {
		grid-column: 2;
	}

	.bi-site-footer__contact {
		align-content: end;
		flex-direction: column;
		margin: 0 0 14px;
	}

	.bi-site-footer-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.bi-site-footer__inner {
		width: calc(100% - 32px);
	}

	.bi-site-footer__main {
		gap: 38px;
		padding: 46px 0 38px;
	}

	.bi-site-footer__brand {
		display: block;
	}

	.bi-site-footer__logo {
		width: 168px;
		margin-bottom: 20px;
	}

	.bi-site-footer__logo img {
		width: 168px;
	}

	.bi-site-footer__brand > p {
		font-size: 13px;
	}

	.bi-site-footer__contact {
		flex-direction: row;
		margin-bottom: 21px;
	}

	.bi-site-footer-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 31px 22px;
	}

	.bi-site-footer-menu > li > a,
	.bi-site-footer-menu > li > span {
		margin-bottom: 15px;
		font-size: 11px;
	}

	.bi-site-footer-menu .sub-menu a {
		font-size: 12px;
	}

	.bi-site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		min-height: 0;
		padding: 21px 0 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bi-site-footer * {
		transition: none !important;
	}
}
