.footer {
	width: 100%;
	background-color: #1e1e1e;;
}
.footer_conteiner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1300px;
	min-width: 200px;
	margin: 0 auto;
	padding: 15px 15px;

}
.foot_text, .copyright {
	color: #808080;
	font-size: 20px;
}
.foot_text p a {
    color: #e2c466;
}
.copyright{
	text-align: right;
}
.copyright a:link, .copyright a:visited {
	text-decoration: none;
	font-weight: bold;
	background: linear-gradient(90deg, #e2c466, #f7eed4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.copyright a:hover{
	color: #808080;
	background: linear-gradient(90deg, #f7eed4, #e2c466);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (min-width: 200px) and (max-width: 767px){
	.footer_conteiner{
		flex-direction: column;
		text-align: center;
	}
	.copyright{
		margin-top: 15px;
		text-align: center;
	}
}