.site-footer {
	background: var(--background-footer);
  padding: var(--section-indent) 0;
	color: var(--color-footer);
}
.site-footer__wrapper{
	display: flex;
	flex-direction: column;
	gap: var(--section-indent);
}
.site-footer__top {
	display: flex;
	justify-content: space-between;
	align-self: stretch;
	flex-wrap: wrap;
	gap: var(--section-indent);
}
.site-footer__top-left, .site-footer__top-right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.site-footer__top-field{
	font-size: var(--font-size-medium);
  display: block;
  letter-spacing: .02em;
}
.site-footer__top-field div{
  color: #848484;
  font-size: var(--font-size-small);
  margin-bottom: 5px;
  letter-spacing: initial;
}
.site-footer__top-link{
	display: flex;
  align-items: flex-end;
	gap: 16px;
	color: var(--color-footer);
  font-size: var(--fontSize-footer-top-link);
  font-weight: 500;
  letter-spacing: .02em;
	line-height: 1.2;
	height: clamp(32px, 2.8vw, 35px);
}
.site-footer__top-link-icon {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	color: var(--color-icons);
	display: flex;
  align-items: flex-end;
}
.site-footer__top-link-src{

}
.site-footer__separator{
	height: 1px;
	background: var(--background-footer-separator);
}
.site-footer__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.site-footer__bottom-left {
	margin-right: auto;
	flex: 0 0 33.3%;
}
.site-footer__bottom-middle {
	height: auto;
	flex: 0 0 33.3%;
	text-align: center;
}
.site-footer__bottom-right {
	margin-left: auto;
	flex: 0 0 33.3%;
	text-align: right;
}
.site-footer__menu {
}
.footer-menu__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-menu__item{

}
.footer-menu__link {
	color: var(--color-footer-menu-link);
}
.footer-menu__link:hover{
	color: var(--color-footer-menu-link-hover);
}
.footer-menu__item .menu__span{
	color: var(--color-footer-menu-span);
}
.site-footer__copyright {
}
.site-footer__createdby{
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: right;
	color: #fff;
	font-size: 12px;
}
.site-footer__createdby a{
	color: #fff;
}
@media (max-width: 768px) {
	.site-footer__bottom{
		flex-wrap: wrap;
		gap:var(--section-indent) 0;
		font-size: 14px;
	}
	.site-footer__bottom-middle {
		flex: 1 1 100%;
		width: 100%;
		order: 1;
	}
	.site-footer__bottom-left{
		margin: 0;
		flex: 1 1 auto;
	}
	.site-footer__bottom-right {
		margin: 0;
		flex: 0 0 115px;
	}
}