.site-footer {
  padding-bottom: var(--from-to-30-15);
}
.site-footer__wrapper {
	background: var(--color-background);
  border-radius: var(--border-radius);
  padding: var(--from-to-30-15);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: var(--color-text-main);
}
/* .site-footer__right{
	display: flex;
	align-items: center;
	gap: 15px;
} */
.site-footer__menu{
	width: 100%;
	max-width: 700px;
}
.footer-menu__list{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.site-footer__copyright {
	flex-shrink: 0;
}
.site-footer__createdby {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
}
.site-footer a{
	color: inherit;
}
@media (max-width: 768px) {
	.site-footer__wrapper, .footer-menu__list{
		flex-direction: column;
	}

}