.footer {
	display: flex;
	align-items: stretch;
	justify-content: center;
	background: #291F10;
	color: #FFFFFF;
	min-height: 70px;
	position: relative;
	margin-top: 15px;
}

.footer:before {
	content: '';
	position: absolute;
	height: 8px;
	width: 100%;
	bottom: calc(100% + 4px);
	left: 0;
	background-color: #EE3D3D;
}

.footer:after {
	content: '';
	position: absolute;
	height: 4px;
	width: 100%;
	bottom: 100%;
	left: 0;
	background-color: #69B41E;
}

.footer__inner {
	max-width: 1290px;
	padding: 0 15px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-text {
	font-family: 'Roboto-light', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
	margin-right: 15px;
}

.copyright {
	display: flex;
	align-items: center;
	font-family: 'Roboto-light', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;

	color: #FFFFFF;
}
.copyright-icon {
	margin-right: 7px;
}
.copyright a {
	font-family: 'Roboto-light', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;

	color: #FFFFFF;
}

@media (max-width: 576px) {
	.footer__inner {
		flex-wrap: wrap;
		padding: 15px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-text {
		width: 100%;
		max-width: 160px;
		font-size: 10px;
		line-height: 14px;
		margin: 0 0 20px;
	}

	.copyright {
		width: 100%;
		font-size: 10px;
		line-height: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}