/* --------------------------------------------------------------

 typography.css
 * Sets up some sensible default typography.

 -------------------------------------------------------------- */

/* Default font settings.
 The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html {
	font-size: 100.01%;
}
body {
	font-size: 75%;
	color: #222;
	background: #fff;
	font-family: 'Segoe UI';
}

/* Headings
 -------------------------------------------------------------- */

h1, h2, h3, h4 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	color: #333;
	clear: both;
}

h1 {
	font-size: 1.7em;
	line-height: 1;
	margin-bottom: 0.7em;
}
h2 {
	font-size: 1.4em;
	margin-bottom: 0.5em;
}
h3 {
	font-size: 1.2em;
	line-height: 1;
	margin-bottom: 1em;
}
h4 {
	font-size: 1em;
	line-height: 1.25;
	margin-bottom: 1.25em;
}

h1 img, h2 img, h3 img, h4 img {
	margin: 0;
}

/* Text elements
 -------------------------------------------------------------- */

p {
	margin: 0 0 1.5em;
	text-align: justify;
}

p.warning {
	background: url(../images/warning_icon.png) 0 1px no-repeat;
	font-size: smaller;
	text-indent: 20px;
}

.left {
	float: left !important;
}
p .left {
	margin: 1.5em 1.5em 1.5em 0;
	padding: 0;
}
.right {
	float: right !important;
}
p .right {
	margin: 1.5em 0 1.5em 1.5em;
	padding: 0;
}

a:focus, a:hover {
	color: orange;
}
a {
	color: #74a922;
	text-decoration: underline;
}

blockquote {
	margin: 1.5em;
	color: #666;
	font-style: italic;
}
strong, dfn {
	font-family: 'Ubuntu', sans-serif;
	color: #333;
}
em, dfn {
	font-style: italic;
}
sup, sub {
	line-height: 0;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
}
address {
	margin: 0 0 1.5em;
	font-style: italic;
}
del {
	color: #666;
}

pre {
	margin: 1.5em 0;
	white-space: pre;
}
pre, code, tt {
	font: 1em 'andale mono', 'lucida console', monospace;
	line-height: 1.5;
}

/* Lists
 -------------------------------------------------------------- */

li ul, li ol {
	margin: 0;
}
ul, ol {
	margin: 0 1.5em 1.5em 0;
	padding-left: 1.5em;
}

ul {
	list-style-type: disc;
}
ol {
	list-style-type: decimal;
}

dl {
	margin: 0 0 1.5em 0;
}
dl dt {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
}
dd {
	margin-left: 1.5em;
}

.intro .description a.orde1r {
    background: #7bb620;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    padding: 9px 25px 10px;
    font-size: 17px;
}
.intro .description a.orde1r:hover {
    background: #2A2B2B;
    color: orange;
}

/* Tables
 -------------------------------------------------------------- */

/*
 Because of the need for padding on TH and TD, the vertical rhythm
 on table cells has to be 27px, instead of the standard 18px or 36px
 of other elements.
 */
table {
	margin-bottom: 1.4em;
	width: 100%;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
tr td {
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
th {
	background: #f9f9f9;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	text-align: center;
}
th:first-child {
	text-align: left;
}
thead th {
	background: #c3d9ff;
}
th, td, caption {
	padding: 5px 15px 5px 10px;
}

table.price td:first-child {
	background: #FBFEF5;
	color: #74a922;
	width: auto;
	text-align: left;
	font-weight: normal;
}
table.price td {
	font-family: 'Ubuntu', sans-serif;
	color: white;
	background: #78B914;
	width: 20%;
	text-align: right;
	font-weight: 700
}
table.price td.sub {
	background-color: #E7E7E7;
}
table.price td a {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
}

table .hover td {
	background: orange !important;
	border-left-color: orange;
	cursor: pointer;
}
table .hover td:first-child {
	color: white;
}

table .hover td a {
	color: white;
	text-decoration: none;
}

table .hover td .goto {
	font-family: "Arial Black";
	margin-left: 10px;
	display: inline-block;
	height: 15px;
	width: 15px;
	text-align: center;
	line-height: .49;
	border-radius: 10px;
	font-size: 1.5em;
	color: orange;
	background: white;
}

/*
 You can zebra-stripe your tables in outdated browsers by adding
 the class "even" to every other table row.
 */

tfoot {
	font-style: italic;
}
caption {
	background: #eee;
}

/* Misc classes
 -------------------------------------------------------------- */

.small {
	font-size: .8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
}
.large {
	font-size: 1.2em;
	line-height: 2.5em;
	margin-bottom: 1.25em;
}
.hide {
	display: none;
}

.quiet {
	color: #666;
}
.loud {
	color: #000;
}
.highlight {
	background: #ff0;
}
.added {
	background: #060;
	color: #fff;
}
.removed {
	background: #900;
	color: #fff;
}

.first {
	margin-left: 0;
	padding-left: 0;
}
.last {
	margin-right: 0;
	padding-right: 0;
}
.top {
	margin-top: 0;
	padding-top: 0;
}
.bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Header base classes
 -------------------------------------------------------------- */

.header .base .slogan {
	text-transform: uppercase;
	font-size: 11px;
	line-height: 13px;
	color: #666;
}

.header .callback .submit {
	color: white;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	font-size: 24px;
}

.header .callback label {
	color: #434854;
	line-height: 30px;
	font-size: 13px;
}

.header .navigation a {
	color: #7fb824;
	text-decoration: none;
	text-transform: uppercase;
}

.header .navigation a:hover {
	color: orange;
}

.header .navigation ul li {
	font-size: 12px;
	line-height: 20px;
}

.header div.phone {
	font-family: 'Ubuntu', sans-serif;
	/* text-align: right; */
	color: black;
	font-weight: 500;
	font-size: 17px;
	margin-left: -104px;
	margin-top: -13px;
	margin-left: 26px;
}

.header .callback input.phone {
	font-size: 13px;
	text-align: left;
	color: #666;
}

.header .city {
	font-size: 10px;
	text-transform: uppercase;
}

.header .city a {
	text-decoration: none;
	color: #666;
}

.header .city a:hover {
	color: orange
}

/* Header menu classes
 -------------------------------------------------------------- */

.header .menu ul li {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	font-size: 1.3em;
	color: white;
	text-transform: uppercase;
}
.header .menu4 ul li {
    line-height: 2.1em;
    font-size: 1em;
}
.header .menu ul li.install {
	line-height: 11px;
	font-size: 10px;
}

.header .menu ul li a {
	color: white;
	text-decoration: none;
}

.header .menu ul li a:hover {
	color: orange
}

.header .menu ul li a.active:hover {
	color: white;
}

.header .menu ul li a.active {
	color: #fff;
}

.header .menu ul li.home a {
	text-indent: -9999px;
}

/* Intro classes
 -------------------------------------------------------------- */

.intro .breadcrumbs ul li {
	color: #999;
	list-style-type: none;
}

.intro .breadcrumbs ul li a {
	text-decoration: none;
	color: #999;
}
.intro .breadcrumbs ul li a:hover {
	text-decoration: none;
	color: orange;
}
.intro .breadcrumbs ul li:before {
	content: '/';
	color: #CCC;
	margin: 0 5px;
	font-size: 14px;
}

.intro .breadcrumbs ul li:first-child:before {
	content: none;
}

.intro .title {
	font-family: 'Ubuntu', sans-serif;
	color: #333;
	font-size: 35px;
	font-weight: 500;
	line-height: 1;
	padding-top: 10px;
	padding-bottom: 10px;
}

.intro .title-home {
	font-family: 'Ubuntu', sans-serif;
	color: #333;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	padding-top: 15px;
	padding-bottom: 15px;
}

.intro .description {
	font-size: 15px;
	color: #666;
}

.intro .description .price, .intro .description .home-comment {
	font-size: 16px;
	color: #74a922;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
}

/* Content classes
 -------------------------------------------------------------- */

.content .text {
	color: #666e79;
	font-size: 1.2em;
}

.scheme h2, .products h2 {
	text-align: center;
	font-size: 2em
}

.scheme h3 {
	font-size: 1.2em;
	line-height: 1;
	margin-bottom: 1em;
	color: #333;
}
.scheme ul li img {
	margin-top: 20px;
	margin-bottom: 20px
}
.scheme ul li {
	text-align: center;
	font-size: 1.2em;
	color: #878e98;
}

.scheme .order .description {
	color: #666e79;
	font-size: 1.2em;
	line-height: 1.8;
}

.products ul li span {
	color: white;
	text-transform: uppercase;
	font-size: 1.3em;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	line-height: 1.2
}

/* Hero advantages
 -------------------------------------------------------------- */

.hero-advantages li {
	font-size: 1.1em;
	list-style-type: none;
	color: #878e98;
}

.hero-advantages li span {
	color: #333;
	display: block;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	font-size: 1.3em;
	margin-top: 8px;
}

.hero-advantages li a {
	text-decoration: none;
	color: #74a922;
}
.hero-advantages li a:hover span {
	text-decoration: underline;
}

/* Sidebar classes
 -------------------------------------------------------------- */

.sidebar .title {
	font-size: 2em;
	line-height: 1;
	margin-bottom: 0.5em;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	color: #333;
	margin-top: 30px;
}

.sidebar .title:first-child {
	margin-top: 0;
}

.sidebar .advantages li {
	font-size: 1.1em;
	list-style-type: none;
	color: #fff;
}
.sidebar .advantages li span {
	display: block;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
	font-size: 1.3em;
	line-height: 1.3;
	margin-bottom: 6px;
}

.sidebar .advantages li a {
	display: block;
	color: white;
	text-decoration: none;
}

.sidebar .advantages li a:hover span {
	text-decoration: underline;
}

.review p {
	font-size: 1.2em;
	line-height: 1.3;
	color: #878e98;
}

.review p a {
	text-decoration: none;
	color: #7eb923;
	text-transform: uppercase;
}

.review p a:hover {
	color: orange;
}

.arrow_box .text {
	padding: 30px;
	font-size: 1.2em;
	color: #666e79;
}

.important {
	background: #EDF8DC;
	padding: 0 2px;
}

/* Footer classes
 -------------------------------------------------------------- */

.footer .navigation h2 {
	color: white;
}

.footer .about p {
	color: #9DA0A6;
	font-size: 1.2em;
}

.footer .navigation .links ul {
	padding-left: 0
}
.footer .navigation .links ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.footer .navigation .links ul li a {
	text-decoration: none;
	color: #9DA0A6;
	font-size: 1.2em;
}

.footer .navigation .links ul li a:hover, .footer .geo ul li a:hover {
	color: orange;
}

.footer .geo ul li {
	list-style-type: none;
	font-size: 1.2em;
	color: #9DA0A6;
}
.footer .geo ul li a {
	color: white;
	text-decoration: none;
}

.footer .geo ul li.point {
	background: url(../images/links_point_icon.png) 0 2px no-repeat;
}
.footer .geo ul li.phone {
	background: url(../images/links_phone_icon.png) 0 2px no-repeat;
	color: white;
}
.footer .geo ul li.mail {
	background: url(../images/links_mail_icon.png) 0 2px no-repeat;
}
.footer .geo ul li.site {
	background: url(../images/links_site_icon.png) 0 2px no-repeat;
}

.footer .bottom {
	font-size: 1.2em;
	color: #9DA0A6;
}

.footer .bottom .links ul li {
	list-style-type: none;
}

.footer .bottom .links ul li a {
	text-decoration: none;
}

/* #Font-Face
 ================================================== */
@font-face {
	font-family: 'Segoe UI';
	src: url('fonts/segoeui.eot');
	src: url('fonts/segoeui.eot?#iefix') format('embedded-opentype'), url('fonts/segoeui.woff') format('woff'), url('fonts/segoeui.ttf') format('truetype'), url('fonts/segoeui.svg#segoeui') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Segoe UI Light';
	src: url('fonts/segoeuil.eot');
	src: url('fonts/segoeuil.eot?#iefix') format('embedded-opentype'), url('fonts/segoeuil.woff') format('woff'), url('fonts/segoeuil.ttf') format('truetype'), url('fonts/segoeuil.svg#segoeuil') format('svg');
	font-weight: normal;
	font-style: normal;
}