/*бегущая строка*/
/*@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0)
	}
}
 
@-moz-keyframes scroll {
	0% {
		-moz-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-moz-transform: translate(-100%, 0);
		transform: translate(-100%, 0)
	}
}
 
@keyframes scroll {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0)
	}
}
.marquee {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	
	background: #b7b5b5;
    margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.marquee span {
	display: inline-block;
	padding-left: 100%;
	-webkit-animation: scroll 100s infinite linear;
	-moz-animation: scroll 100s infinite linear;
	animation: scroll 100s infinite linear;
	font-size: 22px;
	color: #ffffff;
	font-family: "MyriadProBold";
}.*/
.back-marquee {
	background: #b7b5b5;
	margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.back-marquee marquee{
	font-size: 22px;
	color: #ffffff;
	font-family: "MyriadProBold";
}
/*бегущая строка*/

@media screen and (max-width:790px) {
	.block-form .title {
		top:0!important;
	}
	.back-marquee {
		margin-top: 0;
		padding-top: 10px;
	}
}