html, body {
	margin: 0;
	padding: 0;
}
figure, figcaption, nav, article, main, section, header, footer {
	display: block;
	margin: 0;
	padding: 0;
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	font-family: Arial, Tahoma, Verdana, sans-serif;
	color: #484e51;
}
p {
	margin: 0 0 10px 0;
}
.container {
	width: 1070px;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

/*header*/
.top {
    width: 96%;
    margin: 0 auto;
    height: 45px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-image: url(../images/bg_top.gif);
}
header img {
	margin-top: 12px;
}
header h1 {
	font-size: 16px;
	margin: 10px 0 0 0;
	color: #fff;
}
header p {
	display: block;
	margin: 25px 0;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
header span {
	display: block;
	width: 94%;
    margin: 0 auto;
	font-size: 18px;
	padding: 7px 0;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	background-color: #f3f3f3;
	text-align: center;
}

/*nav*/
.menu {
	width: 96%;
	margin: 0 auto;
    background: url('../images/main-bg.png') repeat-x;
    margin-top: 2px;
    margin-bottom: 10px;
}
.menu.fixed {
	position: fixed;
	top: -3px;
	left: 0;
	width: 100%;
	margin-top: 0;
	z-index: 10;
}
.menu.fixed nav {
	text-align: center;
}
.menu.fixed nav li:last-child a {
	background: none;
}
.menu.fixed img {
    margin-top: 12px;
}
.menu span {
	font-size: 16px;
	display: block;
    margin: 9px 0 0 0;
    color: #fff;
}
.menu .col-md-3 {
	display: none;
}
.menu.fixed .col-md-3 {
	display: block;
}
nav {
	width: 1064px;
	margin: 0 auto;
}
nav::after {
	content: "";
	display: block;
	clear: both;
}
nav li {
	margin-left: -5px;
	list-style: none;
	display: inline-block;
}
nav li:first-child {
	margin-left: 0;
}
nav li a {
	display: block;
	padding: 12px 12px;
	font-size: 12px;
	color: #e5e5e5;
    background: url(../images/main-delimiter.png) 100% 5px no-repeat;
}
nav li a:hover,
nav li a:focus,
nav li a:active {
	text-decoration: none;
	color: #fff;
}
nav li:hover,
nav li:focus {
	background-color: rgba(255,255,255,.05);
}
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


.fadeInDown {
  animation-name: fadeInDown;
}
section {
	padding: 40px 0 20px;
}
.name-block {
	width: 94%;
    margin: 0 auto;
    padding: 12px 0;
    margin-bottom: 30px;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	background-color: #f3f3f3;
}
.name-block>h2,
.name-block>h3 {
	font-size: 18px;
	line-height: 20px;
	width: 1010px;
	margin: 0 auto;
}

form {
	width: 270px;
	float: right;
	padding: 25px;
	position: relative;
	border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	background-color: #e8e89c;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
}
.arrow-chat {
	content: "";
	display: block;
    height: 80px;
    width: 65px;
    position: fixed;
    bottom: 40px;
    right: 30px;
	background: url("../images/arrow.png")no-repeat;
}
.arrow-chat {
	-webkit-animation: anum .7s linear alternate infinite;
	animation: anum .7s linear alternate infinite;
}
@-webkit-keyframes anum {
  100% {
    -webkit-transform: translateY(-25px);
  }
}
@keyframes anum {
  100% {
    transform: translateY(-25px);
  }
}
input.control-form {
	width: 100%;
}
label {
	font-size: 12px;
	font-weight: 600;
	vertical-align: middle;
}
label input {
	vertical-align: middle;
	margin-right: 5px;
}
button {
	width: 100%;
	color: #fff;
    background-color: #57bfff;
    border: 1px solid #3da4ec;
    font-size: 15px;
    height: 31px;
    font-weight: bold;
    cursor: pointer;
}
form p {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.form-group {
	margin-bottom: 10px;
}
.security-info {
	font-size: 12px;
	padding: 5px 0 0 42px;
	margin-top: 5px;
	line-height: 14px;
	position: relative;
	color: rgba(0,0,0,.5);
}
.security-info::before {
	content: "";
	display: block;
	width: 31px;
	height: 37px;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/seccurity.png')no-repeat;
	opacity: .4;
}
.info-alert {
    display: inline-block;
    background-color: #ffeaea;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin: 20px 0 0 -15px;
}
#conditions {
	padding-top: 0;
	margin-top: 30px;
}
#conditions figure {
	margin-bottom: 30px;
}
figure img {
	float: left;
	margin-right: 20px;
}
.case-block span {
	font-size: 16px;
	font-weight: 600;
	color: #484e51;
}
.case-block img {
	margin-top: 14px;
}
.case-block p {
	margin-top: 10px;
}
#settings p {
	font-weight: 600;
}
#settings span {
	font-family: "Lucida Console";
}
#settings img {
	width: 100%;
	margin-top: 65px;
}
.size-install {
	padding-top: 40px;
}
.size-install p {
	margin-top: 20px;
}
.size-install img {
	margin-right: 15px;
}
.copyright {
	margin-top: 30px;
	padding-top: 20px;
	font-size: 12px;
	border-top: 1px solid #f3f3f3;
	text-align: center;
}

@media only screen and (max-width: 1024px) {
	.container, nav {
		width: 100%;
	}
	.name-block>h2,
	.name-block>h3 {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.arrow-chat {
		content: "";
		display: block;
		height: 42px;
		width: 35px;
		bottom: 40px;
		right: 15px;
		background-size: cover;
	}
}
@media only screen and (max-width: 736px) {
	.menu.fixed .col-md-3 {
		display: none;
	}
	.top, .menu {
		width: 100%;
	}
	.menu nav li:last-child a {
		background: none;
	}
	nav {
		padding: 0!important;
		text-align: center;
	}
	header h1 {
		font-size: 14px;
		margin-top: 11px;
	}
	header img {
		width: 133px;
		float: right;
	}
	.name-block>h2,
	.name-block>h3 {
		text-align: center;
	}
	figure {
		text-align: center;
	}
	figure img {
		margin-bottom: 20px;
		float: none;
	}
	header p {
		margin: 18px 0;
		font-size: 18px;
		line-height: 18px;
	}
	header span {
		font-size: 14px;
	}
	form {
		width: 280px;
		margin: 20px auto;
		float: none;
	}
}
@media only screen and (max-width: 360px) {
	header img {
		margin-top: 14px;
	}
}


