/* Site Footer */
.site-footer {
	background-color: var(--body-text, #151515);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: -0.3px;
	padding: 78px 0 0;
}

.site-footer .footer-widgets {
	padding-bottom: 62px;
}

.site-footer .footer-widgets-container {
	
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 44px;
}

.site-footer .footer-widgets .widget {
	margin-bottom: 0;
}

.site-footer .footer-widgets .widget-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: -1.1px;
	color: #fff;
	margin-bottom: 24px;
}

.site-footer a {
	color: #fff;
}

.site-footer a:not(:hover, :focus) {
	text-decoration: none;
}

.site-footer .footer-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
}

.site-footer .footer-bar .inside-site-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.site-footer .footer-bar .copyright-bar {
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: -0.28px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bar .copyright-bar p {
	margin: 0;
}

.site-footer .footer-bar .footer-bar-links {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}

.site-footer .footer-bar .footer-bar-links a {
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	letter-spacing: -0.28px;
	padding: 0 12px;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer .footer-bar .footer-bar-links a:last-child {
	border-right: 0;
	padding-right: 0;
}

.site-footer ul {
	margin: 0;
	list-style: none;
}

.site-footer ul li:not(:last-child) {
	margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
	.site-footer {
		padding: 42px 0 0;
	}

	.site-footer .footer-widgets {
		padding-bottom: 42px;
	}

	.site-footer .footer-widgets-container {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 42px 22px;
	}
}

@media screen and (max-width: 575px) {
	.site-footer .footer-widgets-container {
		grid-template-columns: 1fr;
	}

	.site-footer .footer-bar .inside-site-info {
		flex-direction: column;
		text-align: center;
	}

	.site-footer .footer-bar .copyright-bar {
		margin-bottom: 16px;
		order: 2;
	}

	.site-footer .footer-bar .footer-bar-links {
		order: 1;
		margin-bottom: 16px;
	}
}