/*
Theme Name: Expert-kachestva
Theme URI: 
Author: 3s777
Author URI: 
Description: Эксперт качества
Version: 1.1.0
Text Domain: Expert-kachestva
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-top: 0;
	margin-bottom: 15px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #656565;
  color: #fff;
	font-size: 14px;
	line-height: 1;
	padding: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
background: #ff5847;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:hover,
a:focus,
a:active {
	color: #d61400;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	display: block;
}

.main-navigation ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	position: relative;
}


.main-navigation a, .main-navigation span {
	display: block;
	padding: 7px 25px 10px 40px;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	background-image: url(images/star.png);
	background-repeat: no-repeat;
	background-position: 10px 5px;
}

.main-navigation a:hover, .main-navigation span {
	background-color: #fff;
	color: #404040;
	-webkit-box-shadow: 0px 0px 7px #404040;
	-moz-box-shadow: 0px 0px 7px #404040;
	box-shadow: 0px 0px 7px #404040;
	position: relative;
}

.main-navigation a:hover:before, .main-navigation span:before {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #ff8f00;
}

.main-navigation ul ul {
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.entry-content h2, .entry-content h3 {
  padding-left: 50px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  background-image: url(images/hstar.png);
  background-repeat: no-repeat;
  background-position: 5px -3px;
  padding-bottom: 8px;
}

.entry-content h2 {
  background: none;
  padding-left: 0;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content p iframe, .entry-content iframe {
  display: block;
  margin: 0 auto;
}

.entry-content ul, .entry-content ol {
  margin-left: 0;
  padding-left: 10px;
}

.entry-content ol {
  counter-reset: list;
}

.entry-content li {
  position: relative;
  display: block;
}

.entry-content ul li {
   padding-left: 30px;
   margin-bottom: 7px;
   background-image: url("images/li.png");
   background-repeat: no-repeat;
 }

.entry-content .contents li {
  background-image: url("images/star.png");
}

.entry-content ol li {
  padding-left: 30px;
  margin-bottom: 7px;
  counter-increment: list;
  counter-reset: list1;
}

.entry-content ol li:before {
  content: counter(list) '';
}

.entry-content ol li:before {
  color: #222;
  position: absolute;
  top: -3px;
  left: 0px;
  margin-top: 3px;
  padding: 3px 7px;
  background-color: #dbdbdb;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.entry-content .alignnone {
  display: block;
  margin: 0 auto;
}

.entry-content blockquote {
  margin: 10px 0 0 0;
  min-height: 130px;
  background: #fff;
  padding: 10px 10px 10px 100px;
  background-image: url("images/bq.png");
  background-repeat: no-repeat;
background-position: 10px 0;
}


.kc__wrap {
  padding: 10px;
  background-color: #dbdbdb;
}

.entry-content .kc__wrap li {
  margin-bottom: 3px;
}

.kc-title {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.entry-content .kc__wrap li.sub {
  padding-left: 10px;
  background: none;
}

.cat-block li.post {
  display: block;
  padding: 0 10px;
}

.cat-block-related h3 {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.soc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.soc strong {
  margin-right: 10px;
}

.ya-share2 {
  display: inline-block;
}

  /*--------------------------------------------------------------
  ## Posts and pages
  --------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Base
--------------------------------------------------------------*/
body {
	background-color: #eee;
	font-family: Verdana, Tahoma, sans-serif;
}
.container {
	width: 1150px;
	margin: 0 auto;
}

.container-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.clr {
	clear: both;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.site-header {
	margin-bottom: 20px;
}

.site-branding, .logo-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-basis: 45%;
	-ms-flex-preferred-size: 45%;
	flex-basis: 48%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.logo-link {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	text-decoration: none;
}

.logo-link:hover p{
	color: #FF5847;
}

.site-branding img {
	width: auto;
  margin-right: 10px;
}
.site-branding .logo-text {
  margin: 0;
  margin-top: -10px;
  font-size: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  color: #656565;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #222, 2px -2px 0 #222, -2px 2px 0 #222, 2px 2px 0 #222;
  letter-spacing: 1px;
}

.slogan-text {
	display: block;
	color: #a79c9c;
	font-weight: bold;
	margin-bottom: 0;
	margin-top: -5px;
}

.logo-type {
	width: 540px;
}

.menu-container {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top-nav {
	border-top: 3px solid #d61400;
	background: #656565;
}

.form-search-top {
	margin-top: 5px;
}

.form-search-top input:focus+input[type='submit'] {
	background: #FF5847;
}

.form-search-top input {
	position: relative;
	top: -1px;
	border: 0;
	width: 100px;
	height: 28px;
	margin-top: -3px;
	font-size: 12px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #929292;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

.form-search-top input:focus {
	width: 200px;
	background: #fff;
}

.form-search-top input[type='submit'] {
	top: 0;
	height: 30px;
	border: 0;
	margin-top: 0;
	background-color: #222;
	color: #fff;
	width: 70px;
}

.searcha {
	line-height: 0;
}

/*--------------------------------------------------------------
## Sidebar
--------------------------------------------------------------*/

.widget {
	padding: 0 10px;
	background-color: #dbdbdb;
}

.widget-title {
	padding: 8px 0 8px 35px;
	margin-bottom: 10px;
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	border-bottom: 1px solid #a9a9a9;
	text-transform: uppercase;
	background-image: url(images/s-star.png);
	background-repeat: no-repeat;
	background-position: 0 10px;
}

.widget ul {
	margin: 0;
	padding: 0;
}

.widget .lists li {
	display: block;
	min-height: 80px;
}

.widget .lists li a {
	font-size: 14px;
}

.widget .lists .imgzoom {
	float: left;
	margin-right: 10px;
	background: #222;
  line-height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.widget .lists img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

.widget .lists li a {
	text-decoration: none;
}

.widget .lists li a:hover {
	color: #d61400;
}

.widget .lists li a:hover img {
	opacity: 0.3;
}

#execphp-3 {
  padding-bottom: 10px;
}

#execphp-3 ul {
  margin: 0;
  padding: 0;
}

#execphp-3 ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 7px;
}

#execphp-3 ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #ff5847;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

	/*--------------------------------------------------------------
  ## Content
  --------------------------------------------------------------*/

.content-area {
	width: 830px;
	padding: 0 15px;
}

.widget-area {
	width: 320px;
}

.site-main {
	position: relative;
}

.entry-title {
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 28px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
## Category
--------------------------------------------------------------*/
.page-header {
  width: 100%;
}

.page-title {
	margin-top: 0;
  margin-bottom: 10px;
	font-size: 28px;
	font-family: 'Oswald', sans-serif;
}

.cat-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cat-block a {
	text-decoration: none;
}

.cat-block .post {
	-webkit-flex-basis: 33%;
	-ms-flex-preferred-size: 33%;
	flex-basis: 33%;
	text-align: center;
	margin-bottom: 20px;
}

.cat-block .post img{
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.cat-block .post_preview_img {
	position: relative;
	padding: 15px;
	text-align: center;
	line-height: 0;
}

.cat-block .post_preview_img:hover {
	background-color: rgba(0, 0, 0, 0.75);
}

.cat-block .post_preview_img:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -22px 0 0 -22px;
	z-index: 101;
	width: 44px;
	height: 44px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	background-image: url(images/hover.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}


.cat-block .post_preview_img:hover:before {
	content: "";
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}


.cat-block .post_preview_img:hover img {
	opacity: 0.5;
}

.cat-block .post_img_block {
	background: none;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0 0 0 2px transparent;
	-moz-box-shadow: inset 0 0 0 2px transparent;
	box-shadow: inset 0 0 0 2px transparent;
	color: #f45e61;
	font-size: inherit;
	font-weight: 700;
	position: relative;
	vertical-align: middle;
	z-index: 100;
}

.cat-block .post_img_block::before, .cat-block .post_img_block::after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
}


.center:hover {
	color: #6477b9;
}

.center::before, .center::after {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-ms-transform-origin: center;
	-o-transform-origin: center;
	transform-origin: center;
}

.center::before {
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: scale3d(0, 1, 1);
	-moz-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
}

.center::after {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: scale3d(1, 0, 1);
	-moz-transform: scale3d(1, 0, 1);
	transform: scale3d(1, 0, 1);
}

.center:hover::before, .center:hover::after {
	-webkit-transform: scale3d(1, 1, 1);
	-moz-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: -o-transform 0.5s;
	-moz-transition: transform 0.5s, -moz-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.cat-post-title {
	text-align: center;
}

.cat-meta i, .cat-meta span {
	font-size: 16px;
	display: inline-block;
	padding-top: 3px;
}

.cat-meta i {
	font-size: 18px;
}

.wp-pagenavi {
  padding: 10px 0;
  width: 100%;
  margin: 10px 0 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 0;
  padding: 5px 10px;
  margin: 2px;
  background-color: #dbdbdb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #fff;
  background-color: #d61400;
}

.wp-pagenavi span.current {
  font-weight: bold;
}

.kama_breadcrumbs {
  padding: 3px 10px;
  margin-bottom: 5px;
  background-color: #dbdbdb;
  font-size: 12px;
}

.vopros-block {
	width: 100%;
}

.vopros-block h2 {
	font-size: 24px;
	font-family: 'Oswald', sans-serif;
}

.vopros, .page .wpcf7-form {
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
	background-color: #dbdbdb;
}

.vopros input {
	width: 100%;
	padding: 7px 10px;
}

.vopros .wpcf7-form .your-name-block{
	float: left;
	width: 48%;
	margin-bottom: 10px;
}

.vopros .wpcf7-form .your-email-block{
	float: right;
	width: 48%;
	margin-bottom: 10px;
}

.vopros .wpcf7-form textarea, .vopros .wpcf7-form input[name="your-subject"], .your-message, .your-subject{
	width: 100%;
	margin-bottom: 10px;
}

.vopros input[type="submit"] {
	font-size: 16px;
	padding: 15px;
}

/*--------------------------------------------------------------
## Front Page
--------------------------------------------------------------*/
.main_cat_home a{
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
  color: #404040;
  font-family: 'Oswald', sans-serif;
  border-bottom: 1px solid #a9a9a9;
  text-transform: uppercase;
  text-decoration: none;
}

.main_cat_home a:hover {
  color: #d61400;
}

.front-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.post_inset {
  position: relative;
}

.front-block .post_preview_img {
  background: #222;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.post_preview_img img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.post_preview_img {
  line-height: 0;
}

.post_inset .post_preview_img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
  z-index: 101;
  width: 44px;
  height: 44px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-image: url(images/hover.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.post_inset:hover .post_preview_img:before {
  content: "";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


.post_inset:hover .post_preview_img img {
  opacity: 0.3;
}

.post_inset:hover .cat-post-title {
  padding-bottom: 20px;
}

.front-block .cat-post-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABaCAQAAADTVfQ2AAAARUlEQ…Jh8T8PCTzxuJ9HB0VVToieZorT1kDNQzcAp2kCVTD+Eiv6A8VcAWc5GpqzAAAAAElFTkSuQmCC);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-image: -webkit-linear-gradient(top,transparent,rgba(0,0,0,.75));
  background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.75)));
  background-image: -moz-linear-gradient(top,transparent,rgba(0,0,0,.75));
  background-image: -o-linear-gradient(top,transparent,rgba(0,0,0,.75));
  background-image: -webkit-gradient(linear,left top, left bottom,from(transparent),to(rgba(0,0,0,.75)));
  background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.75));
  text-transform: uppercase;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  text-shadow: 1px 1px 2px #222;
  -webkit-border-radius:  0 0 30px 30px;
  -moz-border-radius:  0 0 30px 30px;
  border-radius:  0 0 30px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.front-block-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.post_previ_small {
  width: 380px;
  margin-bottom: 10px;
}

.post_previ_small a:hover img {
  opacity: 0.5;
}

.post_preview_img_small img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}


.post_preview_img_small {
  float: left;
  margin-right: 15px;
  line-height: 0;
}

.post_preview_img_small {
  background: #222;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.entry-meta {
    font-size: 12px;
}

.entry-meta span {
    margin-right: 15px;
}

/*--------------------------------------------------------------
## Carousel
--------------------------------------------------------------*/

.jcarousel-wrapper {
  width: 100%;
  position: relative;
  text-align: center;
  padding: 0px 10px;
  margin-bottom: 15px;
}
.jcarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jcarousel li {
  width: 180px;
  padding: 10px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.jcarousel li a {
  text-decoration: none;
}

.jcarousel li a:hover img {
  opacity: 0.3;
}

.hjk {
  font-size: 14px;
}
.jcarousel li .imgzoom {
  position: relative;
  background: #222;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.jcarousel li .imgzoom:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
  z-index: 101;
  width: 44px;
  height: 44px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-image: url(images/hover.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.jcarousel li a:hover .imgzoom:before {
  content: "";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.jcarousel li span {}
.jcarousel img {
  display: block;
  max-width: 100%;
  height: auto !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.jcarousel-control-prev,
.jcarousel-control-next {
  position: absolute;
  top: 100px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #FF5847;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  -webkit-box-shadow: 0px 0px 7px #000;
  -moz-box-shadow: 0px 0px 7px #000;
  box-shadow: 0px 0px 7px #000;
  text-decoration: none;
  text-shadow: 0 0 1px #000;
  font: 24px/27px Arial, sans-serif;
}
.jcarousel-control-prev {
  left: 10px;
}
.jcarousel-control-next {
  right: 10px;
}
.jcarousel-pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0;
}
.jcarousel-pagination a {
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  height: 10px;
  width: 10px;
  line-height: 10px;
  background: #fff;
  color: #4E443C;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-indent: -9999px;
  margin-right: 7px;
}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover,
.jcarousel-control-prev:focus,
.jcarousel-control-next:focus {
  color: #E52D2D;
}
.jcarousel-pagination a.active {
  background: #4E443C;
  color: #fff;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
	display: block;
}
#comments {
	background-color: #dbdbdb;
	padding: 0 10px 10px 10px;
}
#comments h2 {
  padding-top: 10px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}


#comments h3 {
  border-bottom: 1px solid #a9a9a9;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
	margin: 0 0 10px 0;
	padding: 10px 0 5px 0;
}
#comments label {
	font-size: 14px;
	display: block;
	margin-bottom: 5px;
}
#comments input,
#comments textarea {
	border: 1px solid #d6d6d6;
}

#comments textarea {
	width: 100%;
}

#comments p {
	margin: 0;
}

#comments li {
	display: block;
}

#comments .comment-notes {
	font-size: 12px;
	margin: 5px 0 10px 0;
}
.comment-form-author,
.comment-form-email {
	float: left;
	width: 50%;
	padding: 0 0 10px 10px;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.comment-form-author input,
.comment-form-email input {
	width: 100%;
}
.aiowps-captcha {
	margin-bottom: 7px;
	font-size: 14px;
}
#comments .form-submit {
	margin-top: 10px;
}

.single .post #reply-title {
	padding: 0;
	background: none;
	border: 0;
}

.single .post .comments-title {
	paddint-top: 0;
	margin-top: 0;
}

.comment-form-comment {
	margin-bottom: 10px;
}
.comment-form-author {
	padding: 0 10px 10px 0;
}
.comment-list {
	padding: 0;
	margin: 0;
}
.comment {
	    background-color: #f5f5f5;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 14px;
}
.comment-metadata a {
	font-size: 12px;
	text-decoration: none;
	color: #404040;
}
.comment-author {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px dashed #ccc;
}
.comment p {
	margin: 7px 0;
}

.side-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.sub-side-wrap {
	position: relative;
	margin: 0 auto;
	max-width: 1150px;
}

.side-fix {
	position: absolute;
	left: -160px;
}

.side-static {
	display: none;
}

.side-fixed {
	display: block;
}


  /*--------------------------------------------------------------
  ## Footer
  --------------------------------------------------------------*/

.site-footer {
	padding: 20px 0;
  margin-top: 30px;
	background: #656565;
}

.footer-site-branding {
	-webkit-flex-basis: 150px;
	-ms-flex-preferred-size: 150px;
	flex-basis: 150px;
}

.footer-right {
	-webkit-flex-basis: 1000px;
	-ms-flex-preferred-size: 1000px;
	flex-basis: 1000px;
	color: #fff;
}

.footer-right p{
	margin-top: 0;
	margin-bottom: 7px;
	padding-left: 20px;
	font-size: 14px;
}

.footer-right p a {
	font-weight: bold;
	color: #fff;
}

.footer-right p a:hover {
	color: #d61400;
}

.footer-navigation {
	margin-bottom: 15px;
}

.footer-navigation ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
}

.footer-navigation ul li {
	display: block;
}

.footer-navigation ul li a, .footer-navigation ul li span {
	display: block;
	padding: 0px 20px;
	border-right: 1px solid #ccc;
	color: #fff;
}

.footer-navigation ul li:last-child a, .footer-navigation ul li:last-child span {
	border: 0;
}

.footer-navigation ul li a:hover {
	color: #d61400;
}


.mobile-ad {
	position: fixed;
	bottom: -400px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	width: 100%;
/*	height: 120px;*/
	-webkit-transition: 1s;
	-o-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}

.close_it {
	display: block;
	margin-top: -30px;
	text-align: right;
	height: 30px;
	background-image: url(images/cl.png);
	background-repeat: no-repeat;
	background-position: top right;
}

#dynamic-to-top {
	bottom: 100px !important;
}

.aliad-block {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.aliad-block a {
	position: relative;
	display: inline-block;
	padding: 20px;
	padding-left: 65px;
	font-size: 18px;
	background: rgb(255,82,82);
	background: -o-linear-gradient(225deg, rgba(255,82,82,1) 0%, rgba(255,140,63,1) 100%);
	background: linear-gradient(225deg, rgba(255,82,82,1) 0%, rgba(255,140,63,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff5252",endColorstr="#ff8c3f",GradientType=1);
	border-radius: 30px;
	-webkit-box-shadow: 0 4px 10px rgba(255, 110, 12, 0.3);
	box-shadow: 0 4px 10px rgba(255, 110, 12, 0.3);
	-webkit-transition: all easy-in-out 0.5s!important;
	-o-transition: all easy-in-out 0.5s!important;
	transition: all easy-in-out 0.5s!important;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}


.aliad-block a:hover {
	background: rgb(255,140,63,1);
	background: -o-linear-gradient(225deg, rgba(255,140,63,1) 0%, rgba(255,82,82,1) 100%);
	background: linear-gradient(225deg, rgba(255,140,63,1) 0%, rgba(255,82,82,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8c3f",endColorstr="#ff5252",GradientType=1);
	-webkit-box-shadow: none;
	box-shadow: none;
	text-decoration: none !important;
	-webkit-transition: all easy-in-out 0.5s!important;
	-o-transition: all easy-in-out 0.5s!important;
	transition: all easy-in-out 0.5s!important;
}

.aliad-block a:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 45px;
	height: 45px;
	background-image: url('images/ali.png');
}

.aliad-block.alli-block-mode-2 a:before {
	background-image: url("images/ym.png");
}

.aliad-block.alli-block-mode-2 a {
	background: #FED41E;
	color: #000;
}

.aliad-block.alli-block-mode-3 a:before {
	background-image: url("images/sm.png");
}

.aliad-block.alli-block-mode-3 a {
	background: #8654cc;
	color: #fff;
}

.footag_adv {
	font-size: 10px;
}

@media screen and (max-width: 1350px) {
	.side-wrap {
		display: none;
	}
}

@media screen and (max-width: 1180px) {
	.container {
		width: 960px;
	}
.top {
	display: none;
}
	.main-navigation a, .main-navigation span {
		padding-right: 5px;
		font-size: 14px;
	}

	.form-search-top input:focus {
		width: 130px;
	}

	.content-area {
		width: 640px;
	}

	.footer-right {
		-webkit-flex-basis: 800px;
		-ms-flex-preferred-size: 800px;
		flex-basis: 800px;
	}

	.front-block .post_previ {
		width: 49%;
	}

	.front-block .cat-post-title {
		font-size: 14px;
	}

	.post_previ_small {
		width: 50%;
	}
}

@media screen and (max-width: 992px) {
	.container {
		width: 720px;
	}
	.widget-area, .content-area {
		width: 100%;
	}

	.widget-area {
		margin-top: 15px;
		padding: 0 15px;
	}
	.top-nav {
		display: none;
	}
	
	#dynamic-to-top {
		display: none !important;
	}
	
	.footer-site-branding {
		display: none;
	}

	.jcarousel li {
		padding: 15px 22px;
	}

	#mg-wprm-wrap ul#wprmenu_menu_ul li.menu-item span, div#mg-wprm-wrap ul li span.wprmenu_icon {
		color: #fff;
	}

	#mg-wprm-wrap li.menu-item span {
		padding: 13px 14px;
		display: block;
		text-transform: uppercase;
	}
}

@media screen and (max-width: 762px) {
	.container {
		width: 100%;
	}
	
	.kc__wrap {
		display: none;
	}

	.site-main {
		overflow: hidden;
	}

	.cat-post-title_small {
		font-size: 14px;
	}

	.cat-block .post {
		font-size: 14px;
	}

	.cat-meta i, .cat-meta span {
		font-size: 14px;
	}
	
			.mobile-ad.mobile-fixed {
		display: block;
		background: #fff;
		bottom: 0;
		opacity: 1;
		visibility: visible;
/*				height: 120px;*/
	}
}
@media screen and (max-width: 600px) {
.logo-type {
	width: 100%;
}

	.site-branding, .logo-link {
		display: block;
		width: 100%;
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		text-align: center;
	}

	.post_previ_small {
		width: 100%;
	}

	.cat-block .post {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}

	.post_inset:hover .post_preview_img:before {
		display: none;
	}

	.footer-navigation {
		display: none;
	}
}

@media screen and (max-width: 450px) {
	.jcarousel li .imgzoom {
		background: none;
		text-align: center;
	}

	.jcarousel img {
		margin: 0 auto;
	}

	.front-block .post_previ {
		width: 100%;
	}

	.front-block .post_preview_img {
		background: none;
		margin-bottom: 10px;
	}

	.jcarousel li .imgzoom:before {
		display: none;
	}

	.cat-block .post {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}

	.site-branding .logo-text {
		font-size: 32px;
	}
}

@media screen and (max-width: 350px) {
	.site-branding .logo-text {
		font-size: 28px;
	}
}