﻿/*

Theme Name: roofster
Author: ArturBoot
Author URI: www.roofster.ru

*/

*,
:after,
:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

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

fieldset,
img {
    border: 0;
}

sup { 
	position: relative; 
	top: -0.2em;
	vertical-align: text-top; 
}

ol,
ul {
    list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Oswald";
	color: #000;
    line-height: 1.3;
	font-weight: 400;
    margin: 20px 0;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 20px;
}

p {
    margin: 15px 0;
}

a {
    color: #f93f31;
	text-decoration: none;
}

a:hover {
    color: #f91402;
}

@font-face {
	font-family: 'MyriadProRegular';
	font-style: normal;
	font-weight: normal;
	src: url("fonts/myriadpro/myriadpro-regular-webfont.eot?") format("eot"),
		url("fonts/myriadpro/myriadpro-regular-webfont.woff") format("woff"),
		url("fonts/myriadpro/myriadpro-regular-webfont.ttf") format("truetype"),
		url("fonts/myriadpro/myriadpro-regular-webfont.svg") format("svg");
}

@font-face {
	font-family: "Oswald";
	src: url("fonts/Oswald/Oswaldregular.eot");
	src: url("fonts/Oswald/Oswaldregular.eot?#iefix")format("embedded-opentype"),
		url("fonts/Oswald/Oswaldregular.woff2") format("woff2"),
		url("fonts/Oswald/Oswaldregular.woff") format("woff"),
		url("fonts/Oswald/Oswaldregular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Oswald";
	src: url("fonts/Oswald/Oswaldlight.eot");
	src: url("fonts/Oswald/Oswaldlight.eot?#iefix")format("embedded-opentype"),
		url("fonts/Oswald/Oswaldlight.woff2") format("woff2"),
		url("fonts/Oswald/Oswaldlight.woff") format("woff"),
		url("fonts/Oswald/Oswaldlight.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
}

@font-face {
    font-family: "RobotoLight";
    src: url("fonts/roboto/RobotoLight.eot");
    src: url("fonts/roboto/RobotoLight.eot?#iefix") format("embedded-opentype"),
         url("fonts/roboto/RobotoLight.woff2") format("woff2"),
         url("fonts/roboto/RobotoLight.woff") format("woff"),
         url("fonts/roboto/RobotoLight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "RobotoRegular";
    src: url("fonts/roboto/RobotoRegular.eot");
    src: url("fonts/roboto/RobotoRegular.eot?#iefix") format("embedded-opentype"),
         url("fonts/roboto/RobotoRegular.woff2") format("woff2"),
         url("fonts/roboto/RobotoRegular.woff") format("woff"),
         url("fonts/roboto/RobotoRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "RobotoBold";
    src: url("fonts/roboto/RobotoBold.eot");
    src: url("fonts/roboto/RobotoBold.eot?#iefix") format("embedded-opentype"),
         url("fonts/roboto/RobotoBold.woff2") format("woff2"),
         url("fonts/roboto/RobotoBold.woff") format("woff"),
         url("fonts/roboto/RobotoBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}


body {
	background: #fff;
	min-width: 320px;
	font-family: "RobotoLight";
	color: #000;
	font-size: 17px;
	line-height: 1.5;
	overflow-x: hidden;
	opacity: 1;
}

.row {
    font-size: 0;
}

.clear:after {
    content: "";
    height: 0;
    display: block;
    clear: both;
    visibility: hidden;
}

.button {
	position: relative;
    background-color: #25b921;
    height: 55px;
    display: table;
    color: #fff;
	font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
	overflow: hidden;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    line-height: 54px;
	border-top: none;
	border-left: none;
	border-right: none;
    border-bottom: 3px solid #1d8e1a;
    outline: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
	padding: 0 20px;
}

.button:hover {
    background-color: #17ab13;
	color: #fff;
}

.button:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	width: 100%;
	height: 230px;
	opacity: 0;
	margin: auto;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	transform: scale(1);
	transition: all 0.75s ease-in-out;
}

.button:active:after {
	opacity: 1;
	transition: 0s;
	transform: scale(0);
}

.button.disabled {
	cursor: default;
}

.button:disabled {
	background-color: #f7f7f7;
    color: #bdbdbd;
    text-shadow: none;
    border-color: #f1f1f1;
}

.button:disabled:hover {
	background-color: #f7f7f7;
    color: #bdbdbd;
    text-shadow: none;
    border-color: #f1f1f1;
}

.radio-control {
    position: relative;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    font-size: 14px;
    padding-left: 30px;
    margin: 0 12px 12px 0;
}

.radio-control .control-indicator {
    position: absolute;
    top: 1px;
    left: 0;
	background: #e6e6e6;
    height: 20px;
    width: 20px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.radio-control .control-indicator:after {
    content: '';
    position: absolute;
    display: none;
    background: #fff;
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.radio-control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.radio-control input:disabled ~ .control-indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.radio-control input:disabled ~ .control-indicator:after {
	content: none;
	display: none;
}

.radio-control input:checked ~ .control-indicator {
    background: #f48434;
}


/* АДАПТИВ */


@media (min-width: 980px) and (max-width: 1151px) {
	
	.header .navigation {
		margin-left: 160px !important;
	}
	
	.header .navigation li,
	.header .navigation ul li a {
		font-size: 14px !important;
	}
	
	.header .contact .phone {
		font-size: 17px !important;
	}
	
	.header .contact .callme-button {
		margin-left: 20px !important;
	}
	
}


@media screen and (min-width: 980px)  {
	
	.outer {
		margin: 0 -12px;
	}
	
	.wrapper {
		height: 100%;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
	}

	.main {
		flex: 1 0 auto;
		overflow: hidden;
	}
		
	.container {
		position: relative;
		max-width: 1144px;
		margin: 0 auto;
		padding: 0 10px;
	}
	
	.section {
		padding: 100px 0;
	}
	
	.section h2 {
		font-size: 37px;
	}
	
	.section .sub-title {
		font-size: 21px;
	}
	
	.header {
		position: absolute;
		min-height: 75px;
		line-height: 75px;
	}
	
	.header.fixed {
		z-index: 9997;
		position: fixed;
		min-height: 55px;
		line-height: 53px;
	}
	
	.header:after {
		z-index: 5;
	}
	
	.header.fixed:after {
		z-index: 12;
	}
	
	.header .logotype {
		position: absolute;
		top: 44%;
		left: 0;
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		transform: translate(0,-50%);
	}
	
	.header .navigation {
		z-index: 20;
		position: relative;
		display: inline-block !important;
		margin-left: 200px;
	}
	
	.header .navigation li {
		position: relative;
		height: 75px;
		display: inline-block;
		font-family: "RobotoBold";
		color: #000;
		font-size: 16px;
		padding: 0 13px;
	}
	
	.header.fixed .navigation li {
		height: 55px;
	}
	
	.header .navigation ul li a {
		color: #000;
		font-size: 16px;
		border-bottom: 1px solid rgba(0,0,0,.18);
	}
	
	.header .navigation ul li a:hover, 
	.header .navigation ul li span {
		border-color: transparent;
	}
	
	.header .navigation li.dropdown {
		padding: 0 24px 0 13px;
	}
	
	.header .navigation li.dropdown:before {
		content: "";
		position: absolute;
		top: 52%;
		right: 13px;
		background-image: url(images/icons/sprite.png);
		background-repeat: no-repeat;
		background-position: 0 -261px;
		width: 8px;
		height: 8px;
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		transform: translate(0,-50%);
	}
	
	.header .navigation .sub-menu {
		z-index: 1001;
		position: absolute;
		top: 100%;
		left: 0;
		background: #fff;
		min-width: 250px;
		visibility: hidden;
		opacity: 0;
		transform-origin: 0% 0%;
		transform: rotateX(-90deg);
		transition: .3s linear;
		-webkit-box-shadow: 0 10px 20px -4px rgba(0,0,0,.4);
		-moz-box-shadow: 0 10px 20px -4px rgba(0,0,0,.4);
		box-shadow: 0 10px 20px -4px rgba(0,0,0,.4);
	}
	
	.header .navigation li:hover > .sub-menu {
		transform: rotateX(0deg);
		visibility: visible;
		opacity: 1;
	}
	
	.header .navigation .sub-menu:after {
		content: "";
		position: absolute;
		left: 30px;
		top: -10px;
		width: 0;
		height: 0;
		border: solid transparent;
		border-bottom-color: #fff;
		border-width: 9px;
		pointer-events: none;
		margin: -8px 0 0 -9px;
	}
	
	.header .navigation .sub-menu .sub-menu {
		left: 100%;
		top: 0;
		padding: 0;
	}
	
	.header .navigation .sub-menu .sub-menu:after {
		content: none;
	}
	
	.header .navigation .sub-menu li {
		width: 100%;
		height: auto;
		display: block;
		line-height: 1.35;
		border: none !important;
		padding: 0;
		margin: 0;
	}
	
	.header .navigation .sub-menu li a, 
	.header .navigation .sub-menu li span {
		display: block;
		color: #333 !important;
		line-height: 20px;
		border: none !important;
		padding: 10px 12px;
		margin: 0;
	}
	
	.header .navigation .sub-menu li.active span {
		background-color: #25b921;
		color: #fff !important;
	}
	
	.header .navigation .sub-menu li a:hover {
		color: #000;
		background-color: #fafafa;
	}
	
	.header .contact {
		display: block;
		float: right;
	}
	
	.header .contact .phone {
		vertical-align: middle;
		font-size: 19px;
	}
	
	.header .contact .mode {
		z-index: 15;
		position: relative;
		vertical-align: middle;
		color: #000;
		font-size: 14px;
		line-height: 1.2;
		margin-left: 30px;
	}
	
	.header .contact .mode:before {
		content: '';
		position: absolute;
		top: 10px;
		left: -18px;
		background: rgba(0,0,0,.44);
		width: 3px;
		height: 3px;
		display: block;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-o-border-radius: 50%;
		-ms-border-radius: 50%;
		border-radius: 50%;
	}
	
	.header .contact .callme-button {
		vertical-align: middle;
		margin-left: 50px;
	}
	
	.header .menu {
		display: none;
	}
	
	.hero {
		position: relative;
		background-position: center top;
		min-height: 637px;
		padding-bottom: 50px;
	}
	
	.hero .cloud {
		position: absolute;
		top: -200px;
		left: 0;
		background-image: url(images/bg/cloud.png);
		background-repeat: repeat-x;
		background-position: bottom right;
		width: 1755px;
		height: 400px;
	}
	
	.cloud-from-left {
		right: 0;
		background-position: bottom right;
		-webkit-animation: cloud-from-left 15s linear infinite;
		-o-animation: cloud-from-left 15s linear infinite;
		animation: cloud-from-left 15s linear infinite;
	}
	
	@-webkit-keyframes cloud-from-left {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(585px);
			transform: translateX(585px);
		}
	}
	
	@-o-keyframes cloud-from-left {
		0% {
			-o-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-o-transform: translateX(585px);
			transform: translateX(585px);
		}
	}
	
	@keyframes cloud-from-left {
		0% {
			-webkit-transform: translateX(0);
			-o-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(585px);
			-o-transform: translateX(585px);
			transform: translateX(585px);
		}
	}
	
	.hero .text-block {
		padding-top: 45px;
	}

	.hero .text-block h1 {
		font-size: 52px;
		letter-spacing: -2px;
	}

	.hero .text-block ul li {
		font-size: 19px;
		line-height: 1.5;
		padding-left: 26px;
	}
	
	.about .left,
	.about .right {
		display: inline-block;
		vertical-align: top;
	}
	
	.about .left {
		width: 70%;
		padding-right: 50px;
	}
	
	.about .right {
		width: 30%;
	}
	
	.about .number .item {
		margin-right: 70px;
	}
	
	.about .number .item .digit {
		font-size: 80px;
	}
	
	.services .item {
		width: 33.33333333333%;
		display: inline-block;
		vertical-align: top;
		padding: 12px;
	}
	
	.stock {
		padding: 15px 0;
	}
	
	.stock .left,
	.stock .right { 
		display: inline-block;
		vertical-align: middle;
	}
	
	.stock .left { 
		width: 60%;
	}
	
	.stock .right {
		position: relative;
		width: 40%;
		padding-right: 56px;
	}
	
	.stock .stock-close {
		top: 50%;
		right: 0;
	}

	.stock p {
		font-size: 18px;
		margin: 0;
	}
	
	.stock .countbox-note {
		max-width: 110px;
		display: inline-block;
		vertical-align: middle;
		text-align: right;
		margin-right: 20px;
	}
	
	.stock .countbox {
		display: inline-block;
		vertical-align: middle;
	}
	
	.price .price-list {
		font-size: 0;
	}
	
	.price .price-list tr {
		padding: 8px 15px;
	}
	
	.price .price-list tr:hover {
		-webkit-box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
		-moz-box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
		box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
	}
	
	.price .price-list .col {
		vertical-align: middle;
	}
	
	.price .price-list .head {
		margin-bottom: 30px;
	}

	.price .price-list .head:hover {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	
	.price .price-list .col.first {
		width: 10%;
	}
	
	.price .price-list .col.second {
		width: 34%;
	}
	
	.price .price-list .col.third,
	.price .price-list .col.fourth,
	.price .price-list .col.fifth,
	.price .price-list .col.sixth {
		position: relative;
		width: 9%;
		margin-left: 5%;
	}
	
	.price .price-list .head .col .roof-type {
		content: "";
		position: absolute;
		top: -100px;
		right: 5px;
		background-color: #efefef;
		width: 80px;
		height: 80px;
		overflow: hidden;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-o-border-radius: 50%;
		-ms-border-radius: 50%;
		border-radius: 50%;
	}
	
	.price .price-list .head .col .roof-type:after {
		content: "";
		position: absolute;
		right: -30px;
		bottom: 7px;
		background-image: url(images/icons/roofs.png);
		background-repeat: no-repeat;
		width: 100px;
		height: 56px;
	}
	
	.price .price-list .head .col.fourth .roof-type:after {
		background-position: -100px 0;
	}
	
	.price .price-list .head .col.fifth .roof-type:after {
		background-position: 0 0;
	}
	
	.price .price-list .head .col.sixth .roof-type:after {
		background-position: -100px -55px;
	}
	
	.price .price-list .col p {
		font-size: 15px;
	}

	.price .price-list .col .table-head .mobile {
		display: none;
	}

	.price .price-list .col .price-name {
		max-width: 370px;
		font-size: 17px;
	}
	
	.price .price-list .col .table-unit {
		font-size: 16px;
	}
	
	.price .price-list .col .price-value {
		font-size: 16px;
	}
	
	.benefits .item {
		width: 33.333333333333%;
		display: inline-block;
		padding: 46px 50px 0 0;
	}
	
	.request .container:after {
		z-index: 0;
		content: "";
		position: absolute;
		top: -80px;
		right: -100px;
		background-image: url(images/bg/ruletka.png);
		background-repeat: no-repeat;
		background-position: center;
		width: 400px;
		height: 400px;
	}
	
	.request .orderform .row  {
		position: relative;
		border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		-o-border-radius: 2px;
		box-shadow: 0 12px 29px 0 rgba(0,0,0,0.23);
	}
	
	.request .orderform  .col {
		background-color: #fff;
		width: 25%;
	}
	
	.request .orderform .col:nth-child(1),
	.request .orderform .col:nth-child(2),
	.request .orderform .col:nth-child(3)	{
		border-right: 1px solid #eee !important;
	}
	
	.portfolio .item img {
		width: auto !important;
		height: 435px !important;
	}
	
	.reviews .review {
		padding: 30px;
	}
	
	.review .review-author .review-name {
		display: table-cell;
		vertical-align: middle;
	}
	
	.review .review-author .review-date {
		display: table-cell;
		vertical-align: middle;
		padding-left: 30px;
	}

	.review .review-author .review-date:before {
		content: "";
	}
	
	.reviews .owl-nav {
		top: -120px;
		right: 0;
	}
	
	.reviews .owl-nav .owl-prev,
	.reviews .owl-nav .owl-next {
		color: #fff;
	}
	
	.faq .qa .item {
		padding: 16px 0;
	}
	
	.map {
		background-color: #2f2f2f;
		padding: 0 !important;
	}

	.map:after {
		z-index: 2;
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		background-color: #2f2f2f;
		background-image: url(images/bg/map.jpg);
		background-repeat: no-repeat;
		width: 50%;
	}
	
	.map .left,
	.map .right {
		position: relative;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}
	
	.map .left {
		padding-right: 40px;
	}
	
	.map .right {
		z-index: 3;
		position: relative;
		padding-top: 90px;
		padding-left: 40px;
		padding-bottom: 80px;
	}
	
	.map .right h2 {
		max-width: 360px;
		color: #fff;
		text-align: left;
		margin: 0;
	}
	
	.map .right ul {
		display: block;
		margin: 35px 0 50px;
	}
	
	.map .right ul li {
		color: #fff;
		font-size: 17px;
		margin: 0 0 20px;
	}

	.map .right ul li a {
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	
	.map .right ul li .explanation {
		color: rgba(255, 255, 255, 0.63);
	}
	
	.map .right .buttons .button.whatsapp {
		margin-left: 13px;
	}

	.map .map-wrap {
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 50%;
	}
	
	.map .map-wrap .ymap {
		position: absolute !important;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		height: auto !important;
	}
	
	.breadcrumbs {
		margin: 115px 0 20px;
	}
	
	.cost .price,
	.cost .old-price {
		display: inline-block;
		line-height: 1;
	}
	
	.cost .old-price {
		margin-left: 15px;
	}
	
	.product .columns .left,
	.product .columns .right {
		display: inline-block;
		vertical-align: top;
	}
	
	.product .columns .left {
	    width: 58%;
		padding-right: 40px;
	}
	
	.product .columns .left .product-pictures {
	    position: relative;
		min-height: 360px;
	}
	
	.product .columns .left .product-pictures .main-picture.margin {
		width: -moz-calc(100% - 64px);
		width: -webkit-calc(100% - 64px);
		width: calc(100% - 64px);
		margin-left: 64px;
		padding-left: 15px;
	}
	
	.product .columns .left .product-pictures .main-picture img {
		max-height: 630px;
	}
	
	.product .columns .left .product-pictures .additional {
		position: absolute;
		top: 0;
		left: 0;
		width: 64px;
	}
	
	.product .columns .left .product-pictures .additional .item {
		width: 64px;
		height: 64px;
		display: block;
		margin-bottom: 10px;
	}
	
	.product .columns .left .product-pictures .additional .item:last-child {
		margin-bottom: 0;
	}
	
	.product .right {
		max-width: 900px;
		width: 100%;
	}
	
	.product .columns .right {
		width: 42%;
	}
	
	.product .right .order-block .quantity {
		margin-right: 15px;
	}

	.product .right .order-block .buttons .button.whatsapp {
		margin-left: 10px;
	}
	
	.product .right .calltoaction:before {
		left: 14%;
	}
	
	.options {
		max-width: 75%;
		margin: 25px 0;
	}
	
	.article .right,
	.article .left  {
		display: inline-block;
		vertical-align: top;
	}
	
	.article .left {
		width: -moz-calc(100% - 290px);
		width: -webkit-calc(100% - 290px);
		width: calc(100% - 290px);
		padding-right: 50px
	}
	
	.article .right {
		position: relative;
		width: 290px;
	}
	
	.article .fixed {
		z-index: 999;
		position: fixed !important;
		top: 65px;
	}

	.article .sidebar {
		position: relative;
		background-color: #f6f6f6;
		width: 290px;
	}
	
	.article .sidebar:before {
		content: '';
		position: absolute;
		top: 50px;
		left: -40px;
		width: 0;
		height: 0;
		opacity: 0.8;
		margin-top: -21px;
		border: 20px solid transparent;
		border-right-color: #f2f2f2;
		display: block;
	}

	.article .sidebar:after {
		content: '';
		position: absolute;
		top: 50px;
		left: -27px;
		width: 0;
		height: 0;
		display: block;
		border: 14px solid transparent;
		border-right-color: #fff;
		margin-top: -15px;
	}
	
	.article .sidebar .button {
		margin-top: 15px;
	}
	
	.reviews-list .review .review-rating {
		top: 13px;
	}
	
	.card {
		width: 25%;
		display: inline-block;
		vertical-align: top;
		padding: 0 12px;
	}
	
	.card .image {
		padding-top: 66%;
	}

	.card .image img {
		position: absolute;
		top: 0;
		left: 50%;
		width: auto;
		min-width: 100%;
		height: 100%;
		display: block;
		-moz-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
	
	.notfound {
		padding: 0 12px;
	}
	
	.modal .modal-wrapper .modal-container {
		padding: 25px 40px 20px;
	}
	
	.form .fields.small {
		width: 50%;
		display: inline-block;
		padding: 0 12px;
	}
	
	.form .fields.small.third {
		width: 33.33333333%;
	}
	
	.footer {
		flex: 0 0 auto;
	}
	
	.footer .col {
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}
	
	.footer .col.right {
		text-align: right;
	}
	
	.footer .col .social-groups {
		text-align: right;
	}
	
}


@media screen and (max-width: 979px) {
	
	.outer {
		margin: 0 -12px;
	}
	
	.wrapper {
		background: #fff;
		width: 100%;
		max-width: 768px;
		overflow: hidden;
		-webkit-box-shadow: 0 0 5px rgba(0,0,0,.1);
		-moz-box-shadow: 0 0 5px rgba(0,0,0,.1);
		-ie-box-shadow: 0 0 5px rgba(0,0,0,.1);
		-o-box-shadow: 0 0 5px rgba(0,0,0,.1);
		box-shadow: 0 0 5px rgba(0,0,0,.1);
		margin: 0 auto;
	}
	
	.container {
		position: relative;
		padding: 0 20px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.section h2 {
		font-size: 37px;
	}
	
	.section .sub-title {
		font-size: 21px;
	}
	
	.header {
		position: absolute;
		min-height: 75px;
		padding: 8px 0 18px;
	}
	
	.header:after {
		z-index: 5;
	}
	
	.header .logotype {
		position: relative;
		display: table;
		margin: 0 auto 16px;
	}
	
	.header .contact {
		display: table;
		text-align: center;
		margin: 0 auto;
	}
	
	.header .contact  .phone {
		display: block;
		font-size: 19px;
		margin-left: -27px;
	}
	
	.header .contact .phone span {
		border-bottom: 1px dashed rgba(0, 0, 0, 0.37);
	}
	
	.header .contact .mode {
		display: none;
	}
	
	.header .contact .callme-button {
		margin-top: 20px;
	}
	
	.header .menu {
		z-index: 1000;
		position: absolute;
		top: 0;
		right: 10px;
		background-color: #25b921;
		width: 45px;
		height: 45px;
		font-size: 0;
		cursor: pointer;
		border: none;
		outline: none;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-o-border-radius: 5px;
		-ms-border-radius: 5px;
		border-radius: 5px;
	}
	
	.header .menu:after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		background-image: url(images/icons/sprite.png);
		background-repeat: no-repeat;
		background-position: -16px 0;
		width: 36px;
		height: 36px;
		-moz-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	
	.header .menu.close:after { 
		background-position: -52px 0;
	}
	
	.header.fixed .contact {
		z-index: 9998;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #5f5f5f;
		width: 100%;
		box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.26);
	}
	
	.header.fixed .contact .contact-btn {
		width: -moz-calc(100% - 48px);
		width: -webkit-calc(100% - 48px);
		width: calc(100% - 48px);
		display: inline-block;
		vertical-align: middle;
	}
	
	.header.fixed .contact .phone,
	.header.fixed .contact .callme-button,
	.header.fixed .contact .menu {
		height: 48px;
		display: inline-block;
		vertical-align: middle;
		white-space: nowrap;
		line-height: 48px;
		letter-spacing: 0.5px;
		box-shadow: inset 0 1px rgba(255,255,255,.2);
		-webkit-box-shadow: inset 0 1px rgba(255,255,255,.2);
		-moz-box-shadow: inset 0 1px rgba(255,255,255,.2);
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-o-border-radius: 0;
		-ms-border-radius: 0;
		border-radius: 0;
	}
	
	.header.fixed .contact .phone {
		width: 50%;
		color: #fff;
		font-size: 14px;
		border-right: 1px solid #3e3e3e;
		margin-left: 0;
		padding-left: 0;
	}
	
	.header.fixed .contact .phone:before {
		content: none !important;
	}
	
	.header.fixed .contact .phone span {
		border-bottom: none;
	}
	
	.header.fixed .contact .callme-button {
		background-color: #5f5f5f !important;
		width: 50%;
		color: #fff;
		font-size: 14px;
		text-shadow: none;
		border: none;
		border-right: 1px solid #3e3e3e;
		padding: 0;
		margin-top: 0;
	}
	
	.header.fixed .contact .menu {
		background-color: #5f5f5f;
		position: relative;
		top: auto;
		right: auto;
		width: 48px;
	}
	
	.header .navigation {
		z-index: 999;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000;
		background: rgba(0,0,0,.98);
		width: 100%;
		display: none;
		overflow: hidden;
		padding-top: 120px;
	}
	
	.header .navigation li {
		display: block;
		line-height: 0;
		padding: 0;
		margin: 0;
	}
	
	.header .navigation a, 
	.header .navigation span {
		display: block;
		color: #fff;
		font-size: 18px;
		line-height: 1.45;
		padding: 8px 20px;
	}
	
	.header .navigation span {
		background-color: #25b921;
	}
	
	.header .navigation a:hover {
		background: rgba(255, 255, 255, .1);
	}
	
	.hero {
		background-position: 58% center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		-ms-background-size: cover;
		background-size: cover;
	}
	
	.hero .text-block {
		position: relative;
		text-shadow: 0 0 15px rgba(255, 255, 255, 0.36);
		padding-top: 115px;
	}
	
	.hero .text-block h1 {
		font-size: 42px;
		text-align: left;
		letter-spacing: -2px;
	}

	.hero .text-block ul li {
		font-size: 18px;
		line-height: 1.3;
		padding-left: 26px;
	}
	
	.about .number {
		text-align: center;
	}
	
	.about .number .item {
		width: 33.33333333333%;
	}
	
	.about .number .item .digit {
		font-size: 80px;
	}
	
	.services .item {
		width: 50%;
		display: inline-block;
		vertical-align: top;
		padding: 12px;
	}
	
	.stock { 
		position: relative;
		padding: 20px 0;
	}
	
	.stock .stock-close {
		top: 20px;
		right: 10px;
	}
	
	.stock .left,
	.stock .right { 
		width: 100%;
		display: block;
	}
	
	.stock .left { 
		padding: 0 48px;
	}
	
	.stock p {
		font-size: 18px;
		text-align: center;
		margin: 0 0 12px;
	}
	
	.stock .countbox-note {
		text-align: center;
	}
	
	.stock .countbox {
		margin: 3px auto 0;
	}
	
	.price .price-list tr {
		border-bottom: 1px solid #f3f3f3;
		padding: 10px 0;
	}
	
	.price .price-list .col {
		vertical-align: middle;
	}
	
	.price .price-list .col.first {
		width: 15%;
	}
	
	.price .price-list .col.second {
		width: 45%;
	}
	
	.price .price-list .col.third,
	.price .price-list .col.fourth {
		width: 10%;
		margin-left: 10%;
	}
	
	.price .price-list .col.fifth,
	.price .price-list .col.sixth,
	.price .price-list .head .col .roof-type {
		display: none;
	}
	
	.price .price-list .col p {
		font-size: 15px;
	}

	.price .price-list .col .table-head .desktop {
		display: none;
	}

	.price .price-list .col .price-name {
		max-width: 370px;
		font-size: 17px;
	}
	
	.price .price-list .col .table-unit {
		font-size: 16px;
	}
	
	.price .price-list .col .price-value {
		font-size: 16px;
	}
	
	.benefits .item {
		width: 100%;
		display: block;
		padding-top: 10px;
	}
	
	.request .orderform {
		margin: 0 -8px;
	}
	
	.request .orderform  .col {
		width: 50%;
		text-align: left;
		padding: 0 8px;
		margin-bottom: 15px;
	}
	
	.request .orderform  .col .select,
	.request .orderform  .col .input {
		border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		-o-border-radius: 2px;
		box-shadow: 0 12px 29px 0 rgba(0,0,0,0.07);
	}
	
	.request .orderform .order-button {
		box-shadow: 0 12px 29px 0 rgba(0,0,0,0.07);
	}
	
	.portfolio .item img {
		width: 100% !important;
		height: auto !important;
	}
	
	.reviews .reviews-title {
		text-align: center;
	}
	
	.reviews .review {
		padding: 30px;
	}
	
	.review .review-author .review-name,
	.review .review-author .review-date {
		display: table-cell;
		vertical-align: middle;
	}
	
	.review .review-author .review-date {
		padding-left: 30px;
	}

	.review .review-author .review-date:before {
		content: "";
	}
	
	.reviews .owl-nav {
		bottom: 30px;
		left: 50%;
		-moz-transform: translate(-50%,0);
		-ms-transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		transform: translate(-50%,0);
	}
	
	.reviews .owl-nav .owl-prev,
	.reviews .owl-nav .owl-next {
		color: #333;
	}
	
	.faq .qa .item {
		padding: 10px 20px 10px 5px;
	}
	
	.map {
		background-color: #fff;
		text-align: center;
		padding-bottom: 0 !important;
	}
	
	.map .left,
	.map .right {
		width: 100%;
		display: block;
	}
	
	.map .right {
		padding-bottom: 40px;
	}
	
	.map .right h2 {
		margin-bottom: 20px;
	}
	
	.map .right ul li {
		display: block;
		vertical-align: top;
		font-size: 16px;
		padding: 10px;
	}
	
	.map .right ul li,
	.map .right ul li a {
		color: #000;
	}
	
	.map .right ul li .explanation {
		color: rgba(0, 0, 0, 0.63);
	}
	
	.map .right ul li .phone {
		background-color: rgba(0, 0, 0, 0.04);
		display: inline-block;
		vertical-align: top;
		font-family: robotobold;
		color: #000;
		font-size: 15px;
		line-height: 1.2;
		border-radius: 5px;
		padding: 15px;
	}
	
	.map .left .buttons {
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.map .buttons .button {
		margin: 5px;
	}
	
	.breadcrumbs {
		margin: 220px 0 30px;
	}
	
	.product .left,
	.product .right {
		width: 100%;
		display: block;
		text-align: center;
	}
	
	.product .left {
		margin: 0 0 40px;
	}
	
	.product .left .product-pictures {
		max-width: 607px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.product .left .product-pictures .owl-carousel .owl-item {
		width: 100%;
	}
	
	.product .left .product-pictures .main-picture img {
		max-height: 360px;
	}
	
	.product .left .product-pictures .additional {
		margin: 0 -5px;
	}
	
	.product .left .product-pictures .additional .item {
		width: 60px;
		height: 60px;
		display: inline-block;
		margin: 10px 5px 0;
	}
	
	.product .right .order-block {
		margin-left: auto;
		margin-right: auto;
	}
	
	.product .right .calltoaction {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	
	.product .right .important-info {
		margin-left: auto;
		margin-right: auto;
	}
	
	.product .right .cost .price,
	.product .right .cost .old-price {
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
	
	.product .right .cost .old-price {
		margin-top: 10px;
	}
	
	.product .right .order-block .quantity,
	.product .right .order-block .buttons .button.whatsapp {
		margin-left: 10px;
		margin-right: 10px;
	}

	.product .right .calltoaction:before {
		left: 50%;
		margin-left: -10px;
	}
	
	.product .readmore-toggle {
		margin-left: auto;
		margin-right: auto;
	}
	
	.article .left,
	.article .right {
		width: 100%;
		display: block;
	}
	
	.article h1,
	.article .right {
		text-align: center;
	}
	
	.article .right .button {
		margin: 15px auto 0;
	}
	
	.article .left {
		margin: 0 0 50px;
	}
	
	.reviews-list .review .review-rating {
		top: 13px;
	}
	
	.card {
		width: 50%;
		display: inline-block;
		vertical-align: top;
		padding: 0 12px;
	}
	
	.card .image {
		padding-top: 66%;
	}

	.card .image img {
		position: absolute;
		top: 0;
		left: 50%;
		width: auto;
		min-width: 100%;
		height: 100%;
		display: block;
		-moz-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
	
	.notfound {
		padding: 0 12px;
	}
	
	.modal .modal-wrapper .modal-container {
		padding: 25px 20px 15px;
	}
	
	.form .fields.small {
		width: 50%;
		display: inline-block;
		padding: 0 12px;
	}
	
	.form .fields.small.third {
		width: 33.33333333%;
	}
	
	.footer {
		text-align: center;
	}
	
	.footer .col {
		width: 100%;
		margin: 0 0 45px;
	}
	
	body .ya-chat-widget_theme_dark, 
	body .ya-chat-widget_theme_light {
		bottom: 70px !important;
	}

}


@media screen and (max-width: 640px) {
	
	.outer {
		margin: 0;
	}
	
	.services .item {
		width: 100%;
		padding: 12px 0;
	}

	.services .service {
		max-width: 360px;
		display: block;
		margin: 0 auto;
	}
	
	.price .price-list .col.first {
		width: 18%;
	}
	
	.price .price-list .col.second {
		width: 42%;
	}
	
	.price .price-list .col.third,
	.price .price-list .col.fourth {
		width: 14%;
		margin-left: 6%;
	}

	.price .price-list .col .price-name {
		font-size: 16px;
	}
	
	.notfound {
		padding: 0;
	}
	
	.form .fields.small,
	.form .fields.small.third {
		width: 100%;
		display: block;
		padding: 0;
	}

}


@media screen and (max-width: 540px) {
	
	.section h2 {
		font-size: 33px;
	}
	
	.about .number .item .digit {
		font-size: 70px;
	}
	
	.price .price-list .col.first {
		width: 20%;
	}
	
	.price .price-list .col.second {
		width: 42%;
	}
	
	.price .price-list .col.third,
	.price .price-list .col.fourth {
		width: 12%;
		margin-left: 6%;
	}
	
	.request .orderform {
		margin: 0;
	}
	
	.request .orderform  .col {
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
	}

}


@media screen and (max-width: 480px) {
	
	.hero .text-block h1 {
		font-size: 36px;
	}
	
	.about .number .item .digit {
		font-size: 60px;
	}
	
	.price .price-list .col.first {
		display: none;
	}
	
	.price .price-list .col.second {
		width: 66%;
	}
	
	.price .price-list .col.third,
	.price .price-list .col.fourth {
		width: 15%;
		margin-left: 2%;
	}
	
	.price .price-list .col p {
		font-size: 13px;
	}

	.price .price-list .col .price-name {
		font-size: 14px;
	}
	
	.price .price-list .col .table-unit {
		font-size: 14px;
	}
	
	.price .price-list .col .price-value {
		font-size: 14px;
	}
	
	.reviews .review {
		padding: 20px;
	}
	
	.review .review-author .review-name,
	.review .review-author .review-date {
		display: block;
		line-height: 1.4;
	}
	
	.review .review-author .review-date {
		margin: 2px 0 0;
		padding: 0;
	}

	.review .review-author .review-date:before {
		content: none;
	}
	
	.reviews-list .review .review-rating {
		top: 5px;
	}

}


@media screen and (max-width: 360px) {
	
	.container {
		padding: 0 10px;
	}
	
	.hero {
		padding: 60px 0;
	}
	
	.hero .text-block h1 {
		font-size: 32px;
		letter-spacing: 0;
	}
	
	.section {
		padding: 40px 0;
	}
	
	.header .logotype {
		position: relative;
		display: table;
		margin: 0 0 16px;
	}
	
	.header .contact .phone {
		font-size: 18px;
	}
	
	.header.fixed .contact .callme-button {
		letter-spacing: 0;
	}
	
	.price .price-list .col {
		vertical-align: top;
	}
	
	.price .price-list .col .price-name {
		max-width: 190px;
	}
	
	.reviews .review {
		padding: 10px;
	}
	
	.faq .qa .item {
		padding: 5px 10px 5px 5px;
	}
	
	.modal .modal-wrapper .modal-container {
		padding: 25px 15px 15px;
	}

}


@media screen and (max-width: 320px) {
	
	.header.fixed .contact .contact-btn {
		width: -moz-calc(100% - 34px);
		width: -webkit-calc(100% - 34px);
		width: calc(100% - 34px);
	}
	
	.header.fixed .contact .menu {
		width: 34px;
	}
	
	.hero {
		background-position: 55% center;
	}
	
	.hero .text-block ul li {
		font-size: 17px;
		padding-left: 20px;
	}
	
	.card {
		width: 100%;
		display: block;
		padding: 0;
	}

}


.main.padding {
	padding: 0 0 100px;
}

.section .sub-title {
	font-family: "Oswald";
	color: #bdbdbd;
	font-weight: 300;
	text-transform: uppercase;
	margin-top: -10px;
}


/* ШАПКА */

.header {
    top: 0;
    left: 0;
	width: 100%;
}

.header:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	background-color: #fff;
    width: 100%;
    display: block;
    -webkit-box-shadow: 0 0 60px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 60px rgba(0,0,0,0.15);
    -o-box-shadow: 0 0 60px rgba(0,0,0,0.15);
    box-shadow: 0 0 60px rgba(0,0,0,0.15);
}

.header .logotype {
    z-index: 15;
	width: 152px;
	height: 45px;
}

.header .navigation li {
	position: relative;
	letter-spacing: 0.4px;
}

.header .navigation ul li a {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.header .contact .phone {
	z-index: 15;
	position: relative;
	font-family: "RobotoBold";
    color: #000;
	border: none;
	padding-left: 30px;
}

.header .contact .phone:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
	background-position: 0 0;
    width: 16px;
    height: 16px;
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.header .contact .callme-button {
	z-index: 15;
	position: relative;
	background-color: transparent;
    height: 30px;
    color: #ff8f03;
    font-size: 14px;
	text-shadow: 0 1px #fff;
    cursor: pointer;
    border: 2px solid #ff8f03;
    outline: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 0 10px;
}

.header .contact .callme-button:hover {
    background-color: #fff;
}


/* ГЛАВНЫЙ БЛОК */

.hero {
	z-index: 10;
	position: relative;
	background-color: #fff;
	background-image: url(images/bg/hero.jpg);
    background-repeat: no-repeat;
}

.hero .text-block {
	max-width: 540px;
}

.hero .text-block h1 {
	color: #000;
}

.hero .text-block ul {
    display: table;
    margin-top: 25px;
}

.hero .text-block ul li {
    position: relative;
    display: block;
	font-family: "RobotoRegular";
	color: rgba(0, 0, 0, 0.89);
    margin-bottom: 2px;
}

.hero .text-block ul li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    background-color: #25b921;
    width: 6px;
    height: 6px;
    display: block;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.hero .text-block .button {
	-webkit-box-shadow: 0 14px 46px rgba(0,0,0,.28);
    box-shadow: 0 14px 46px rgba(0,0,0,.28);
	margin-top: 30px;
}

.hero .text-block .button:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 17px 80px -12px rgba(0, 0, 0, 0.4);
}


/* О КОМПАНИИ */

.about {
	background-color: #fff;
}

.about .right {
	padding-top: 50px;
}

.about .number {
	margin-top: 60px;
}

.about .number .item {
	display: inline-block;
	vertical-align: top;
}

.about .number .item .digit {
	font-family: "Oswald";
	color: #25b921;
    line-height: 0.8;
	letter-spacing: -2px;
}

.about .number .item p {
	max-width: 100px;
	font-family: "RobotoBold";
    color: #565656;
    font-size: 13px;
	line-height: 1.4;
    text-transform: uppercase;
    margin-top: 15px;
}

.about .map-wrap {
	position: relative;
	width: 300px;
	margin: 0 auto;
}

.about .map-wrap:after {
    content: "";
    position: absolute;
    top: 75px;
    left: 112px;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
	background-position: -88px 0;
    width: 64px;
    height: 64px;
}

.about .map-wrap img {
	width: 100%;
	margin-bottom: 10px;
}

.about .map-wrap .circle-wrap {
    position: absolute;
    top: 90px;
    left: 104px;
    width: 80px;
    height: 80px;
}

.about .map-wrap .circle-wrap:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
	background-color: #ff8f03;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	margin: -5px 0 0 -5px;
}

.about .map-wrap .circle-wrap .pulse {
	z-index: 5;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 143, 3, 0.11);
	width: 80px;
	height: 80px;
	opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	-webkit-animation: pulsating 2s ease-in-out;
	-webkit-animation-iteration-count: infinite;
}

.about .map-wrap .circle-wrap .circle {
	z-index: 10;
	position:absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.about .map-wrap .circle-wrap .circle.one {
	box-shadow: 0 0 2px 1px #ff8f03, inset 0 0 2px 1px #ff8f03;
	-webkit-animation: ring 2s ease-in-out;
	-webkit-animation-iteration-count: infinite;
}

.about .map-wrap .circle-wrap .circle.two {
	box-shadow: 0 0 1px 0px #ffbf6e, inset 0 0 1px 0px #ffbf6e;
	-webkit-animation: ring 2s ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-delay: 0.5s;
}

@-webkit-keyframes pulsating {
	0% {opacity: 0.0;}
	50% {opacity: 0.2;}
	100% {opacity: 0.0;}
}

@-webkit-keyframes ring {
	0% {-webkit-transform: scale(0.4, 0.4); opacity: 0.0;}
	50% {opacity: 0.6;}
	100% {-webkit-transform: scale(1.1, 1.1); opacity: 0.0;}
}

.about .map-wrap .map-text {
	max-width: 150px;
	color: #6f809a;
	font-size: 15px;
	font-style: italic;
	margin: 0 auto;
}


/* УСЛУГИ */

.services {
	background-color: #f5f5f5;
	border-top: 1px solid #f6f6f6;
}

.services .row {
    text-align: center;
}

.services .service {
	z-index: 1;
    position: relative;
	background-color: #fff;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.services .service:hover {
	-webkit-box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
	-moz-box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
	box-shadow: 3px 3px 21px 0 rgba(82,106,194,.18);
}

.services .service .thumb {
    position: relative;
	background-color: #000;
	display: block;
	overflow: hidden;
	width: 100%;
}

.services .service .thumb img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.services .service:hover .thumb img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	opacity: .85;
}

.services .service .service-content {
	position: relative;
    background: #fff;
    width: 100%;
	text-align: left;
	padding: 30px 20px;
}

.services .service .service-content .price-label {
    position: absolute;
	top: -45px;
    left: 0;
    background-color: #ff8f03;
	height: 45px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
	line-height: 45px;
    padding: 0 15px;
}

.services .service .service-content .price-label .value {
    font-size: 18px;
}

.services .service .service-content .h3 {
	font-family: "Oswald";
	color: #333;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 400;
	margin: 0;
}


/* АКЦИЯ */

.stock {
	background-color: #25b921;
	background-image: url(images/icons/discount.png);
	background-repeat: repeat;
}

.stock .stock-close {
	position: absolute;
	background-color: transparent;
	width: 36px;
	height: 36px;
	line-height: 32px;
	text-align: center;
	cursor: pointer;
	outline: none;
	border: 1px solid rgba(255, 255, 255, 0.76);
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.stock .stock-close .fa {
	color: rgba(255, 255, 255, 0.75);
	font-size: 11px;
}

.stock .stock-close:hover .fa {
	color: #fff;
}

.stock p {
	font-family: "RobotoBold";
	color: #fff;
	line-height: 1.45;
}

.stock .countbox-note {
	color: #fff;
	font-size: 15px;
	line-height: 20px;
}

.stock .countbox {
	width: 206px;
	height: 60px;
	font-family: MyriadProRegular,Helvetica,sans-serif;
	color: #2f2f2f;
	font-size: 30px;
	line-height: 56px;
}

.stock .countbox .countbox-num {
	float: left;
}

.stock .countbox .countbox-space {
	float: left;
	height: 60px;
	width: 4px;
}

.stock .countbox-hours1,
.stock .countbox-mins1,
.stock .countbox-secs1,
.stock .countbox-hours2,
.stock .countbox-mins2,
.stock .countbox-secs2 {
	z-index: 1;
	background-image: url(images/timer/flip.png);
	background-repeat: no-repeat;
	width: 37px;
	height: 60px;
	float: left;
	text-align: center;
	margin: 0 -4px 0 0;
}

.stock .countbox-hours1 span, 
.stock .countbox-hours2 span, 
.stock .countbox-mins1 span, 
.stock .countbox-mins2 span, 
.stock .countbox-secs1 span, 
.stock .countbox-secs2 span {
	background: url(images/timer/gradient.png);
	background-repeat: no-repeat;
	position: absolute;
	width: 37px;
	height: 60px;
	display: block;
}


/* ПРАЙС */

.price {
	background-color: #fff;
}

.price .price-list {
	width: 100%;
	margin-top: 60px;
}

.price .price-list tr {
    width: 100%;
    display: block;
}

.price .price-list .head {
	border-bottom: 1px solid #eee;
}

.price .price-list .col {
    display: inline-block;
	font-family: "RobotoRegular";
}

.price .price-list .col img {
    width: 70px;
    height: 70px;
    display: block;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.price .price-list .col .table-head {
	max-width: 96px;
    display: block;
	font-family: "RobotoRegular";
    color: #353535;
    font-size: 14px;
}

.price .price-list .col .price-name {
    display: block;
	font-family: "RobotoBold";
    color: #353535;
}

.price .price-list .col .price-note {
	display: block;
    color: #6f809a;
	font-size: 14px;
	margin: 3px 0 0;
}

.price .price-list .col .table-unit {
    color: #6f6f6f;
}

.price .price-list .col .price-value {
    color: #353535;
}

.price .price-list .col.fourth .price-value {
    font-family: "RobotoBold";
	color: #18a02a;
}


/* ОТЗЫВЫ */

.shopwindow {
	background-color: #fefefe;
}

.shopwindow .sub-title {
	margin-bottom: 30px;
}


/* ВЫГОДЫ */

.benefits {
	background-color: #f8f8f8;
	border-top: 1px solid #f6f6f6;
}

.benefits .item {
	position: relative;
    vertical-align: top;
	text-align: left;
}

.benefits .item h3 {
	position: relative;
	max-width: 170px;
	font-family: "RobotoBold";
    color: #353535;
    font-size: 19px;
	padding-left: 76px;
}

.benefits .item h3:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.benefits .item.first h3:after {
    background-position: 0 -36px;
}

.benefits .item.second h3:after {
    background-position: 0 -84px;
}

.benefits .item.third h3:after {
    background-position: 0 -132px;
}

.benefits .item p {
	color: rgba(0, 0, 0, 0.77);
    font-size: 16px;
	margin: 15px 0;
}


/* ФОРМА ЗАЯВКИ */

.request {
	background-color: #25b921;
	padding: 15px 0 25px;
}

.request h2 {
	color: #fff;
}

.request p {
	z-index: 1;
	position: relative;
	max-width: 800px;
	color: rgba(255, 255, 255, 0.98);
}

.request .orderform {
	z-index: 1;
	position: relative;
}

.request .orderform  .col {
	display: inline-block;
	vertical-align: top;
}

.request .orderform  .col .select,
.request .orderform  .col .input {
    background-color: #fff;
    width: 100%;
	height: 50px;
    color: rgba(0,0,0,.8);
    font-size: 14px;
    line-height: 50px;
    border: none;
    outline: none;
	padding: 0 12px;
}

.request .orderform  .col .select.error,
.request .orderform  .col .input.error {
    border-bottom: 2px solid #ff2c00;
}

.request .orderform .order-button {
    background-color: #ff8f03;
    width: 100%;
	height: 50px;
	cursor: pointer;
	color: #fff;
    font-size: 14px;
    line-height: 50px;
    border: none;
    outline: none;
	padding: 0 12px;
}

.request .orderform .order-button:hover {
    background-color: #ff9f26;
}

.request .orderform .order-button:disabled {
	cursor: default;
}

.request .successful-sending {
	position: relative;
	background: #fff;
	max-width: 650px;
	min-height: 80px;
	display: table;
	text-align: left;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
	box-shadow: 0 12px 29px 0 rgba(0, 0, 0, 0.07);
	margin: 40px 0 0;
	padding: 15px 30px 15px 115px;
}

.request .successful-sending .successful-content {
    display: table-cell;
    vertical-align: middle;
}

.request .successful-sending .successful-content .successful-sending-title {
	font-family: "RobotoBold";
	color: #585858;
	font-size: 17px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.request .successful-sending .successful-content p {
	color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
	margin: 0;
}

.request .successful-sending:after{
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	width: 82px;
	height: 82px;
	display: block;
	border: 1px solid rgba(0, 0, 0, 0.13);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 0 auto 15px;
}

.request .successful-sending:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 57px;
	background-image: url(images/icons/sprite.png);
	background-repeat: no-repeat;
	background-position: 0 -180px;
	width: 48px;
	height: 48px;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/* ПОРТФОЛИО */

.portfolio {
	max-width: 1920px;
	overflow: hidden;
	margin: 0 auto;
}

.portfolio p {
	margin: 0 0 60px;
}

.portfolio .item {
    position: relative;
}

.portfolio .item img {
	z-index: 0;
    position: relative;
}

.portfolio .item:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    -o-transition-duration: 2s;
    transition-duration: 2s;
    transition-timing-function: ease;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
}

.portfolio .item:hover:before {
    background-color: rgba(0, 0, 0, 0.2);
}

.portfolio .item .caption {
    z-index: 5;
    position: absolute;
    left: 0;
	bottom: 0;
    background: rgba(0,0,0,0.3);
    width: 100%;
    opacity: 0;
    color: #fff;
	font-size: 15px;
    -webkit-transition: opacity .9s ease;
    -moz-transition: opacity .9s ease;
    -ms-transition: opacity .9s ease;
    -o-transition: opacity .9s ease;
    transition: opacity .9s ease;
    padding: 10px;
}

.portfolio .item:hover .caption{
   display: block;
   opacity: 1;
}

.portfolio .drag {
	position: relative;
    max-width: 200px;
	display: table;
	color: #a0a0a0;
	font-size: 14px;
	line-height: 1.3;
	text-align: left;
	margin: 50px auto 30px;
	padding-left: 48px;
}

.portfolio .drag:after {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	background-image: url(images/icons/sprite.png);
	background-repeat: no-repeat;
	background-position: center;
	background-position: -48px -36px;
	width: 30px;
	height: 36px;
}

.portfolio .button {
	margin: 0 auto;
}


/* ОТЗЫВЫ */

.reviews {
	background-color: #f2f2f2;
	padding: 0;
}

.reviews .reviews-title {
	background-color: #25b921;
	padding: 30px 0 75px;
	margin-bottom: -50px;
}

.reviews .reviews-title h2 {
	color: #fff;
}

.reviews .reviews-title p {
	color: #fff;
}

.reviews .reviews-title p a {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.45);
}

.reviews .reviews-title p a:hover {
	border-color: rgba(255,255,255,.6);
}

.reviews .review {
	position: relative;
	background-color: #fff;
	box-shadow: 0 -2px 28px 0 rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
	margin-bottom: 100px;
}

.reviews .review .review-rating {
	top: 42px;
	right: 30px;
}

.reviews .owl-nav {
	position: absolute;
}

.reviews .owl-nav .owl-prev,
.reviews .owl-nav .owl-next {
	display: inline-block;
	vertical-align: top;
	font-size: 30px;
	margin: 0 8px;
}

.reviews .owl-nav .owl-prev.disabled, 
.reviews .owl-nav .owl-next.disabled {
	opacity: 0.4;
	cursor: default;
}


/* ВОПРОСЫ И ОТВЕТЫ */

.faq {
	background-color: #fff;
}

.faq .qa {
    margin-top: 50px;
}

.faq .qa .item {
    background: #fff;
}

.faq .qa .item:last-child {
	border-bottom: none;
}

.faq .qa .item.disabled .answer {
	display: none;
}

.faq .qa .item .question {
    position: relative;
	cursor: pointer;
	font-family: "RobotoRegular";
    color: #464646;
    font-size: 17px;
    line-height: 24px;
	padding: 0 20px 0 50px;
}

.faq .qa .item .question .icon {
    position: absolute;
    top: 50%;
    left: -6px;
	background-color: #25b921;
	width: 36px;
	height: 36px;
    text-align: center;
    cursor: pointer;
    line-height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	margin-top: -18px;
}

.faq .qa .item .question .icon .fa-question {
    color: #fff;
    font-size: 14px;
}

.faq .qa .item .question .question-text {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.18);
}

.faq .qa .item .question .fa-plus {
    position: absolute;
    top: 12px;
    right: 0;
    width: 16px;
    height: 16px;
	color: #ff8f03;
    font-size: 13px;
	line-height: 16px;
	text-align: center;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
	margin-top: -8px;
}

.faq .qa .item.active .question .fa-plus {
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.faq .qa .item .answer {
    background: #fff;
    font-size: 17px;
	font-style: italic;
    padding: 16px 0 0;
}


/* КАРТА */

.map {
	position: relative;
    background-color: #fff;
	padding: 0;
}

.map li {
	position: relative;
}

.map ul li .explanation {
	display: block;
	font-size: 12px;
	margin-bottom: 6px;
}

.map .button {
	display: inline-block;
	vertical-align: top;
}

.map-wrap {
	position: relative;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	overflow: hidden;
	cursor: pointer;
}

.map-wrap .ymap {
	z-index: 7;
	position: relative;
	background-color: #f8f8f8;
	width: 100%;
	height: 28em;
}

.map-wrap .loader {
	z-index: 15;
	position: absolute;
	top: -100%;
	left: 0;
	background-color:rgba(0,0,0,0.55);
	width: 100%;
	height: 100%;
	opacity: 0;
	color: #000;
	overflow: hidden;
	transition: opacity .7s ease;
}

.map-wrap .loader.active {
	top: 0;
	opacity: 1;
}

.map-wrap .loader:after {
	content: '';
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border: 8px solid #fff;
	border-left-color: transparent;
	border-radius: 50%;
	-webkit-animation: rotation 1s linear infinite;
	        animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform:rotate(0);
		        transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		        transform:rotate(359deg);
	}
}

@keyframes rotation {
	from {
		-webkit-transform:rotate(0);
		        transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		        transform:rotate(359deg);
	}
}

@-webkit-keyframes blink {
	from {
		opacity:.5;
	}
	to {
		opacity:1;
	}
}

@keyframes blink {
	from {
		opacity:.5;
	}
	to {
		opacity:1;
	}
}


/* ХЛЕБНЫЕ КРОШКИ */

.breadcrumbs {
    color: #b9b9b9;
    font-size: 13px;
}

.breadcrumbs .separator {
    position: relative;
    margin: 0 10px;
}

.breadcrumbs .current {
    color: #8c8c8c;
}

.breadcrumbs a {
    color: #676767;
	font-size: 13px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}


/* ЦЕННИК */

.cost {
	margin: 12px 0;
}

.cost .explanation {
	display: block;
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    margin-bottom: 6px;
}

.cost .price {
	font-family: "Oswald";
	color: #bd0000;
}

.cost.wholesale .price {
	display: inline-block;
	color: #333;
	font-size: 24px;
}

.cost .old-price {
	position: relative;
	color: rgba(0, 0, 0, 0.85);
	padding: 0 2px;
}

.cost .old-price:after {
	content: "";
    position: absolute;
    background-color: rgba(189, 0, 0, 0.5);
	width: 100%;
    display: block;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.cost .benefit-value {
	color: #787878;
    font-size: 14px;
}


/* КАРТОЧКА ТОВАРА */

.product .left .product-pictures {
	margin-top: 20px;
}

.product .left .product-pictures .main-picture img {
	width: auto;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.product .left .product-pictures .additional .item {
	position: relative;
	cursor: pointer;
	border: 1px solid #eee;
	border-radius: 2px;
	-webkit-backface-visibility: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: border-color .2s;
}

.product .left .product-pictures .additional .item img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 52px;
	max-height: 52px;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.product .right .cost .price span {
    font-size: 22px;
}

.product .right .cost .price .value {
    font-size: 32px;
}

.product .right .cost .old-price {
	font-family: robotomedium;
	font-size: 18px;
}

.product .right .cost .old-price:after {
	top: 40%;
	height: 4px;
    -webkit-transform: rotate(-13deg);
    -moz-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    -o-transform: rotate(-13deg);
    transform: rotate(-13deg);
	margin-left: -4px;
}

.product .right .availability {
	font-family: "RobotoBold";
	color: #16c67a;
    font-size: 16px;
	margin: 10px 0 20px;
}

.product .right .availability.no {
	color: #f73d34;
}

.product .right .order-block {
	display: table;
	margin-top: 15px;
	margin-bottom: 20px;
}

.product .right .order-block .quantity {
	height: 55px;
	display: inline-block;
	vertical-align: middle;
	font-family: "RobotoBold";
	border: 1px solid #edeff2;
	border-radius: 10px;
	margin-bottom: 10px;
}

.product .right .order-block .quantity button,
.product .right .order-block .quantity input {
	border: none;
	outline: none;
}

.product .right .order-block .quantity button {	
	background-color: transparent;
	height: 55px;
	font-size: 18px;
	cursor: pointer;
	padding: 0 15px;
}

.product .right .order-block .quantity input {
	width: 80px;
	font-size: 15px;
	text-align: center;
	padding: 0 5px;
}

.product .right .order-block .buttons {
    display: inline-block;
    vertical-align: top;
}

.product .right .order-block .buttons .button {
    display: inline-block;
    vertical-align: top;
	box-shadow: none;
	border-bottom: none !important;
	margin-bottom: 10px;
}

.product .right .calltoaction,
.product .right .important-info {
    position: relative;
    width: 100%;
	max-width: 500px;
    color: #000;
    font-size: 14px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 10px;
}

.product .right .calltoaction {
    background-color: #fffae7;
}

.product .right .calltoaction:before {
    content: '';
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    display: block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fffae7;
}

.product .right .important-info {
	background-color: #f8f8f8;
	min-height: 54px;
	text-align: left;
	padding-left: 70px;
}

.product .right .important-info:after {
    content: "";
    position: absolute;
    top: 13px;
    left: 20px;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 196px 269px;
    width: 32px;
    height: 32px;
	opacity: .8;
}

.product .right .important-info.delivery:after {
	background-position: -88px -237px;
}

.product .right .important-info.payment:after {
	background-position: -120px -237px;
}

.product .options {
    margin-top: 60px !important;
}


/* ОПЦИИ */

.options {
	margin: 25px 0;
}

.options li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
    margin: 14px 0;
}

.options .option-name, 
.options .dotted,
.options .value {
    display: inline-block;
    vertical-align: bottom;
}

.options li .dotted {
	position: relative;
	flex-grow: 1;
	padding: 0 15px;
}

.options li .dotted:after {
	content: "";
	position: absolute;
	left: 7px;
	right: 7px;
	bottom: 4px;
    border-bottom: 1px dotted #eff2f5;
}


/* БЛОКИ */

.card {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
	margin-bottom: 30px;
}

.card a {
    line-height: 0;
}

.card .image {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 12px;
}

.card .image .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgba(0, 0, 0, 0.07);
    font-size: 48px;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.card .name {
	font-family: "RobotoRegular";
    color: #000;
	color: rgba(0,0,0,.88);
	font-size: 17px;
    line-height: 1.3;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.card:hover .name {
    color: #f93f31;
}

.card .cost .price span {
    font-size: 13px;
}

.card .cost .price .value {
    font-size: 20px;
}

.card .cost .old-price {
	font-family: robotoregular;
	font-size: 14px;
}

.card .cost .old-price:after {
	top: 50%;
	height: 1px;
}

.card .more {
    background-color: #f8f8f8;
    height: 48px;
    display: block;
    color: #000;
    font-size: 12px;
    line-height: 48px;
    text-align: center;
	border-radius: 5px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	padding: 0 20px;
	margin: 25px 0 0;
}

.card .more:hover {
    background-color: #ff8f03;
    color: #fff;
}


/* ИНФОРМАЦИЯ О ПОСТЕ */

.meta {
	min-height: 40px;
    font-size: 14px;
}

.meta .author,
.meta .author .avatar,
.meta .author .authorname,
.meta .item {
	position: relative;
    display: inline-block;
	vertical-align: middle;
}

.meta .author {
	padding-left: 50px;
}

.meta .author .avatar {
	position: absolute;
	top: 50%;
	left: 0;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	margin-top: -20px;
}

.meta .author .authorname {
	color: rgba(0,0,0,.9);
    font-size: 14px;
}

.meta .item {
	color: rgba(0,0,0,.44);
	margin: 10px 0 10px 28px;
}

.meta .item.n {
	margin: 10px 0 10px 12px;
}

.meta .item:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -14px;
    background: rgba(0,0,0,.44);
    width: 3px;
    height: 3px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.meta .item.n:before {
    content: none;
}

.meta .item .fa {
	vertical-align: middle;
	color: rgba(0,0,0,.2);
	font-size: 12px;
	margin-right: 3px;
}


/* КОНТЕНТ */

.notfound,
.content {
    font-size: 17px;
	margin-top: 15px;
}

.content .annotation {
	font-family: RobotoRegular;
    font-size: 18px;
	line-height: 1.3;
    margin: 10px 0 0 !important;
}

.content .annotation:first-letter {
	font-family: "RobotoBold";
	float: left;
	color: #25b921;
	font-size: 53px;
	line-height: 53px;
	margin: 0 10px -9px 0;
}

.content .toc {
	background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 5px 5px 18px 0 rgba(0, 0, 0, .05);
    -moz-box-shadow: 5px 5px 18px 0 rgba(0, 0, 0, .05);
    box-shadow: 5px 5px 18px 0 rgba(0, 0, 0, .05);
    padding: 15px 20px 25px;
}

.content .toc .name {
	display: block;
	font-family: "RobotoBold";
    color: #000;
    color: rgba(0,0,0,.74);
    letter-spacing: -.48px;
}

.content .toc .contents {
	margin-top: 16px !important;
}

.content .toc .sub {
	margin-left: 30px;
}

.content img {
    max-width: 100%;
    height: auto;
}

.content ul {
    display: table;
    padding-left: 32px;
    margin-top: 25px;
}

.content ul li {
    position: relative;
    display: block;
	color: #393939;
	font-size: 16px;
    margin-bottom: 2px;
}

.content ul li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: -32px;
    background-color: #f93f31;
    width: 16px;
    height: 2px;
    display: block;
}

.content ol {
    counter-reset: list;
    margin-top: 25px;
}

.content ol li {
    position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
}

.content ol li:before {
    content: counter(list) ". ";
	counter-increment: list;
    position: absolute;
    top: 0;
    left: 0;
}

.content table {
    width: 100%;
    border: 1px solid #ddd;
    margin: 10px 0 20px;
}

.content th {
	font-family: "RobotoBold";
    color: #333;
    vertical-align: bottom;
}

.content th,
.content td {
    vertical-align: top;
	border: 1px solid #eee;
    padding: 8px 10px;
}

.content .wrap-pic {
    display: block;
}

.content .wrap-pic .caption {
    display: block;
    font-style: italic;
}


/* СТАТЬЯ */

.article {
    position: relative;
}

.article h1 {
    margin: 0 0 20px;
}

.article .sidebar {
	border: 5px solid #f2f2f2;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.article .sidebar .sidebar-content {
	position: relative;
	background-color: #fff;
    font-size: 15px;
	overflow: hidden;
	padding: 30px;
}

.article .sidebar .sidebar-content p {
	z-index: 1;
	position: relative;
}

.article .sidebar .sidebar-content:after {
	z-index: 0;
	content: "";
    position: absolute;
	top: -14px;
    right: -20px;
	background-color: #f2f2f2;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position: -88px 0;
    width: 100px;
    height: 100px;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}


/* ГАЛЕРЕЯ */

.owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
	margin-top: 20px;
}

.owl-dots .owl-dot {
    display: inline-block;
}

.owl-dots .owl-dot span {
    background: #D6D6D6;
    width: 10px;
    height: 10px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: 5px 7px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background-color: #f93f31;
}


/* КНОПКИ СОЦИАЛЬНЫХ СЕТЕЙ */

.social {
	text-align: center;
    padding: 13px 0 15px;
}

.social .share {
	position: relative;
	width: 56px;
	height: 56px;
    display: inline-block;
	vertical-align: top;
	font-size: 0;
    cursor: pointer;
	border: none;
	outline: none;
    border-radius: 3px;
	padding: 0;
	margin: 5px;
}

.social .share:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 196px 269px;
    width: 16px;
    height: 16px;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.social .vk.share {
	background-color: #507299;
}

.social .vk.share:after {
    background-position: -8px -253px;
}

.social .fb.share {
    background-color: #3b5998;
}

.social .fb.share:after {
    background-position: -24px -253px;
}

.social .tw.share {
    background-color: #00aced;
}

.social .tw.share:after {
    background-position: -40px -253px;
}

.social .ok.share {
    background-color: #ed812b;
}

.social .ok.share:after {
    background-position: -56px -253px;
}


/*  РЕЙТИНГ  */

.estimate {
	margin: 30px 0;
}

.estimate .estimate-text {
	display: inline-block;
	vertical-align: middle;
	font-family: "RobotoBold";
    color: #333;
    font-size: 15px;
    margin-right: 5px;
}

.vote-block {
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
}

.vote-block .rating {
	width: 125px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 0 0;
	padding: 0;
}

.vote-block .rating li {
	display: block;
	width: 25px;
	height: 25px;
	float: right;
	text-indent: -9999px;
	cursor: pointer;
	padding: 0;
}

.vote-block .rating:hover li {
	background-image: url(images/icons/rating.png);
}

.vote-block .rating li:hover,
.vote-block .rating li:hover ~ li {
	background-position: 0 -25px;
}

.vote-block.disabled .rating li.current {
	display: block;
	z-index: 10;
}

.vote-block .rating li.active,
.vote-block .rating li.active ~ li {
	background-position: 0 -50px;
}

.vote-block li.current {
	display: none;
}

.vote-block ol.show-current {
	position: relative;
}

.vote-block ol.show-current li {
	z-index: 2;
	position: relative;
	cursor: default;
}

.vote-block ol.show-current li.current {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	background-position: 0 0;
	background-repeat: repeat-x;
	background-image: url(images/icons/rating.png);
	width: 100%;
	display: block;
}

.vote-block ol.show-current li.current span {
	background: inherit;
	background-position: 0 -50px;
	width: 0;
	height: 25px;
	display: block;
}

.vote-block span.rating-text {
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	color: #a2a2a2;
	font-size: 14px;
	line-height: 29px;
}


/* ПАГИНАЦИЯ */

.pagination {
    display: block;
    clear: both;
    text-align: center;
    padding-top: 45px;
}

.pagination a,
.pagination span {
	width: 48px;
	height: 48px;
	display: inline-block;
    color: #333;
    font-size: 14px;
	border: 2px solid #cac9c9;
	line-height: 48px;
    text-decoration: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	margin: 5px 10px;
}

.pagination .current {
	border: 2px solid #ef0037;
}

.pagination a:hover {
    border: 2px solid #bbb;
}


/* ЗАГОЛОВОК */

.title {
	font-family: "Oswald";
    color: #333;
	font-size: 24px;
    line-height: 1.2;
    margin-top: 35px;
}

.title.mb {
    margin-bottom: 20px;
}

.title span {
    color: #c8c8c8;
}


/* МОДАЛЬНОЕ ОКНО */

.modal {
	z-index: 10001;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.84);
	width: 100%;
	height: 100%;
	display: table;
	visibility: hidden;
	opacity: 0;
	overflow-y: auto;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	transform: translateY(45px);
}

.modal.show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.modal .modal-wrapper {
	min-width: 320px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;   
}

.modal .modal-wrapper .modal-container {
	position: relative;
	background-color: #fff;
	width: 100%;
    max-width: 360px;
	min-width: 300px;
	max-height: 94vh;
	display: inline-block;
	font-size: 14px;
    text-align: left;
	overflow-x: auto;
	border-radius: 2px;
	box-shadow: 0 10px 30px 5px rgba(0,0,0,.2);
    margin: 2% auto 0;
}

.modal .modal-wrapper .modal-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.modal .modal-wrapper .modal-container .close {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
	background-color: transparent;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-family: Arial;
    color: rgba(0, 0, 0, 0.75);
    font-style: normal;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
	border: none;
	outline: none;
	padding: 0;
}

.modal .modal-wrapper .modal-container .close:hover {
    color: #000;
}

.modal .modal-wrapper .modal-container .title {
    margin: 0 0 25px;
}

.modal .modal-wrapper .modal-container .note {
	color: #333;
	font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.modal .modal-wrapper .modal-container .button {
	width: 100%;
	border-radius: 2px;
	box-shadow: none;
}


/* КОНТАКТНАЯ ФОРМА */

.form {
    margin-top: 20px;
}

.form .fields {
	position: relative;
	line-height: 0;
    margin-bottom: 15px;
}

.form .fields .form-name {
	display: block;
	font-family: "RobotoBold";
    color: #717171;
    font-size: 17px;
    padding: 12px 0 14px;
}

.form .fields .form-name .red {
    color: #ef0037;
}

.form .fields .fields.small {
	vertical-align: top;
}

.form .fields .input {
    background-color: #fff;
    width: 100%;
    color: rgba(0,0,0,.8);
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #bfbfbf;
    outline: 0;
    padding: 12px 20px 13px;
	margin: 3px 0 0;
}

.form .fields .input:hover {
    border: 1px solid #bbb;
}

.form .fields .input.error {
    border: 1px solid #F44336;
}

.form .errors {
    color: #F44336;
    font-size: 12px;
	line-height: 1;
}

.form .contact-message {
    color: #06bd0d;
}

.form .fields span {
	color: #676767;
	font-size: 15px;
	line-height: 1.5;
}

.form .fields span a {
	color: #676767;
	border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}


/* УСПЕШНАЯ ОТПРАВКА */

.successful {
	position: relative;
	background-color: #fff;
	max-width: 600px;
	text-align: center;
	padding: 20px 30px 25px;
	margin: 0 auto;
}

.successful .successful-circle {
	position: relative;
	width: 100px;
	height: 100px;
	display: block;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-left-color: #0cc500;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	animation: loader-spin 1.2s infinite linear;
	margin: 0 auto 25px;
}

.successful .successful-circle.animated {
	border-color: #0cc500;
	transition: border 500ms ease-out;
	-webkit-animation: none;
	animation: none;
}

.successful .successful-circle .checkmark {
    display: none;
}

.successful .successful-circle.animated .checkmark {
    display: block;
}

.successful .successful-circle.animated .checkmark:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.successful .successful-circle .checkmark:after {
	content: "";
    position: absolute;
    top: 52px;
    left: 34px;
    width: 15px;
    height: 30px;
    opacity: 1;
    border-right: 3px solid #0cc500;
    border-top: 3px solid #0cc500;
    transform-origin: left top;
}

@keyframes loader-spin {
	0% {
		transform: rotate(0deg);
	} 100% {
		transform: rotate(360deg);
	}
}

@keyframes checkmark {
	0% {
		width: 0;
		height: 0;
		opacity: 1;
	} 20% {
		width: 15px;
		height: 0;
		opacity: 1;
	} 40% {
		width: 15px;
		height: 30px;
		opacity: 1;
	} 100% {
		width: 15px;
		height: 30px;
		opacity: 1;
	}
}

.successful .p {
	color: #000;
	font-size: 16px;
	line-height: 1.6;
	margin: 10px 0 0;
}


/* ОТЗЫВЫ */

.reviews-list {
    margin-top: 30px;
}

.review {
	position: relative;
}

.reviews-list .review {
	display: block;
    margin-top: 30px;
}

.reviews-list .review .review-rating {
	right: 10px;
}

.reviews-list .review .children {
    margin-left: 48px;
}

.review .review-awaiting-moderation {
	display: block;
	color: #ff1212;
	font-size: 14px;
}

.review .review-author {
	position: relative;
	min-height: 40px;
    display: table;
	line-height: 0;
    margin: 0 0 20px;
	padding: 0 100px 0 55px;
}

.review .review-author .avatar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
	display: block;
	vertical-align: middle;
    -webkit-border-radius: 50%;
	-moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    border-radius: 50%;
}

.review .review-author .review-name {
	font-family: "RobotoBold";
	color: #333;
    font-size: 17px;
	margin-right: 5px;
}

.review .review-author .review-date {
	position: relative;
	color: rgba(0,0,0,.44);
    font-size: 13px;
}

.review .review-author .review-date:before {
    position: absolute;
    top: 50%;
    left: 15px;
    background: rgba(0,0,0,.44);
    width: 3px;
    height: 3px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
	-moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.review .review-rating {
	position: absolute;
	width: auto !important;
}

.review .review-body {
	position: relative;
	display: block;
	font-size: 16px;
}

.review .review-body p {
	margin: 0 0 15px;
}

.review .review-body p:last-child {
    margin: 0;
}

.review .more {
    height: 48px;
    display: table;
    color: #000;
	font-size: 14px;
	font-style: italic;
    cursor: pointer;
    white-space: nowrap;
    line-height: 48px;
    border: 1px solid rgba(0,0,0,0.14);
    outline: none;
    text-decoration: none;
    border-radius: 48px;
    -moz-border-radius: 48px;
    -webkit-border-radius: 48px;
    padding: 0 20px;
	margin-top: 30px;
}

.review .more:hover {
	color: #000;
	border-color: rgba(0,0,0,0.3);
}


/* БЛАГОДАРНОСТЬ */

.success-bg {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.success {
	width: 100%;
	height: 637px;
	min-height: 637px;
	display: table;
}

.success .success-wrap {
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}

.success .success-wrap .success-content {
	position: relative;
	background-color: #fff;
	max-width: 464px;
	min-height: 300px;
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
	padding: 40px 30px;
	margin: 0 auto;
}

.success .success-wrap .success-content h1 {
	color: #4d576c;
}

.success .success-wrap .success-content .success-note {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fbfbfc;
	font-size: 13px;
	border-top: 1px solid #f4f5f7;
	padding: 15px 30px;
}

.success .success-wrap .success-content .success-link {
	color: #ffce12;
	font-size: 13px;
	border-bottom: 1px solid #ffce12;
	margin-top: 20px;
}


/* ПОДВАЛ */

.footer {
	background: #181818;
	width: 100%;
	color: rgba(255, 255, 255, 0.51);
	box-shadow: inset 0 15px 15px -15px #000;
	padding: 50px 0 0;
}

.footer a {
    color: #d6d6d6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer a:hover {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer .col .links {
    margin-bottom: 15px;
}

.footer .col .links ul li {
	display: inline-block;
	vertical-align: top;
	font-family: "RobotoBold";
	color: #d6d6d6;
    font-size: 16px;
    margin: 0 15px 5px 0;
}

.footer .col p {
    font-size: 14px;
	line-height: 1.35;
}

.footer .col .contacts {
	display: block;
	margin: 0 0 30px;
}

.footer .col .contacts li {
	color: #d6d6d6;
    font-size: 15px;
    margin: 0 0 5px;
}

.footer .col .contacts .phone {
	font-family: "Oswald";
	font-size: 19px;
    letter-spacing: -.3px;
}

.footer .col .social-groups {
	display: block;
	margin: 0 0 20px;
}

.footer .col .social-groups li {
    width: 40px;
    height: 40px;
    display: inline-block;
	font-size: 16px;
    cursor: pointer;
	text-align: center;
    line-height: 40px;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    margin: 0 4px 8px;
}

.footer .col .social-groups li {
	border: 1px solid rgba(255, 255, 255, 0.34);
}

.footer .col .social-groups li a {
	color: #929292;
	border-bottom: none;
}

.footer .col .social-groups li:hover a {
	color: #fff;
}

.footer .col .social-groups .vk:hover {
	background-color: #45668e;
	border: 1px solid #45668e;
}

.footer .col .social-groups .fb:hover {
	background-color: #3a5897;
	border: 1px solid #3a5897;
}

.footer .col .social-groups li.twitter:hover  {
	background-color: #2ca8d2;
	border: 1px solid #2ca8d2;
}

.footer .col .social-groups li.instagram:hover  {
	background-color: #551a8b;
	border: 1px solid #551a8b;
}

.footer .copyright {
	width: 100%;
    height: 40px;
    font-size: 14px;
	text-align: center;
    line-height: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 30px;
}


/* СКРЫТЫЙ ТЕКСТ */

.readmore-section, 
.collapsed {
	position: relative;
    overflow: hidden;
}

.readmore-section.collapsed:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease,-webkit-transform .5s ease,-o-transform .5s ease;
    background-image: -webkit-linear-gradient(top,rgba(255, 255, 255,0),#fff);
    background-image: -o-linear-gradient(top,rgba(255, 255, 255,0),#fff);
    background-image: linear-gradient(to bottom,rgba(255, 255, 255,0),#fff);
    width: 100%;
    height: 100px;
}

.readmore-toggle {
    position: relative;
	background-color: transparent;
	display: table;
	cursor: pointer;
	color: #565656;
    font-size: 15px;
	border: none;
	outline: none;
	padding: 0 0 0 33px;
    margin-top: 20px;
}

.readmore-toggle:before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 23px;
    height: 23px;
    display: block;
}

.readmore-toggle.open:before {
    background-position: -48px -72px;
}

.readmore-toggle.close:before {
    background-position: -48px -95px;
}

.readmore-toggle span {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.48);
    padding-bottom: 1px;
}