*::-webkit-input-placeholder {
	color: #555;
	opacity: 1;
}
*:-moz-placeholder {
	color: #555;
	opacity: 1;
}
*::-moz-placeholder {
	color: #555;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #555;
	opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	
}
body input:required:valid,
body textarea:required:valid {
	
}

body {
	color: #000;
	font-size: 21px;
	width: 100%;
	min-width: 320px;
	height: 100%;
	position: relative;
	line-height: 1.2;
	letter-spacing: .05em;
	font-family: "BebasNeueRegular", sans-serif;
	overflow-x: hidden;
}
.hidden {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-style: normal;
}


.rightimg  {
    float: right; /* Выравнивание по правому краю  */ 
    margin: 0 0 12px 7px; /* Отступы вокруг картинки */
   }
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
}

/*call_back_button*/

a.call_back {
	position: fixed;
	display: block;
	bottom: 10%;
	right: 5%;background: url(../img/callBack.png);
	background-color: #E24220;
	-webkit-background-size: cover;
	background-size: cover;
	border-radius: 100px; 
	opacity: 0.9;
	width: 75px;
	height: 75px;
	-webkit-transition: ease 1s;
	-o-transition: ease 1s;
	transition: ease 1s;
	z-index: 10;
	box-shadow: 0 3px 0 0 #992D16;
}
a.call_back:hover{
	opacity: 1;
	-moz-transform: rotate(345deg); /* Для Firefox */
	-ms-transform: rotate(345deg); /* Для IE */
	-webkit-transform: rotate(345deg); /* Для Safari, Chrome, iOS */
	-o-transform: rotate(345deg); /* Для Opera */
	transform: rotate(345deg)
}

a.call_back .call_back_text {
	position: absolute;
	display: inline-block;
	white-space: nowrap;
	width: 0px;
	line-height: 40px;
	left: -10px;
	top: 50%;
	margin-top: -20px;
	background-color: #fff;
	color: #000;
	text-align: center;
	border-radius: 10em;
	opacity: 0;

	-webkit-transition: ease .5s;
	-o-transition: ease .5s;
	transition: ease .5s;

	z-index: 5;
	/*box-shadow: 0 0 0 3px rgba(0,0,0,.5) inset;*/

	border: 2px solid #E24220;
	overflow: hidden;
}
a.call_back:hover .call_back_text {
	width: 190px;
	opacity: 1;
	left: -200px;
}
.opt-price{
	padding: 0px 0px 0px 0px;
	text-align:center;
}
 A {
    color: #000000;
 }
/* Mouse animate icon */

.call_back {
	-webkit-animation-name: pulse;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-play-state: running;
	animation-name: pulse;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

@-webkit-keyframes pulse {
	0% {
		transform: scale(1.0);	
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1.0);
	}
}
@keyframes pulse {
	0% {
		transform: scale(1.0);	
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1.0);
	}
}

.call_back:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	transform: none;
}


/*call_back_button*/

/*button*/

a.button {
	display: inline-block;
	position: relative;
	background-color: #E24220;
	color: #fff;
	padding: 12px 18px;
	text-transform: uppercase;
	border-radius: 3px;
	text-decoration: none;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	opacity: 0.95;
	box-shadow: 0 3px 0 0 #992D16;
	line-height: 1;
}
a.button:hover {
	opacity: 1;
}

a.button.transparent {
	background-color: transparent;
	box-shadow: 0 0 0 2px #fff inset;
}

a.button.transparent:hover {
	background-color: rgba(255,255,255,.4);
}

a.button+a.button{
	margin-left: 18px;
}

a.button.online {
	background-color: green;
	width: 100%;
	text-align: center;
	margin-top: 10px;
	max-width: 320px;
}
/*button*/

/*Nav*/

.nav{
	position: absolute;
	width: 100%;
	min-width: 320px;
	/*background-color: #fff;
	background-color: rgba(255,255,255,0.95);
	box-shadow: rgba(0,0,0,.3) 0px 0px 10px;*/
	z-index: 10;
}

.nav a {
	color: #000;
	position: relative;
	display: block;
}
.nav a:hover,
.nav a:active,
.nav a:focus {
	color: #992D16;
	text-decoration: none;
	outline: none;
}

.logo,
.menu,
.phone {
	display: table;
	width: 100%;
	height: 100px;
}
.logo a,
.menu ul,
.phone a {
	display: table-cell;
	vertical-align: middle;
}

.logo {
	text-align: left;
}
.logo img {
	width: 100%;
	max-width: 160px;
}

.menu {
	text-align: center;
}
.menu ul {
	padding-left: 0;
}
.menu ul li{
	display: inline-block;
	padding: 7px;
}
.menu a:after {
	content: "";
	bottom: -2px;
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #992D16;

	-webkit-transition: ease 0.3s;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
}
.menu a:hover:after {
	width: 100%;
}

.nav .phone {
	text-align: right;
	font-weight: bold;
}

.phone a{
	font-size: 26px;
	white-space: nowrap;
	color: 	#992D16;
}

/*Nav*/

/*Toggle menu*/

.toggle-menu {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0px 0px -6px 20px;
}
.toggle-menu span:after,
.toggle-menu span:before {
	content: "";
	position: absolute;
	left: 0;
	top: -12px;
}
.toggle-menu span:after{
	top: 12px;
}
.toggle-menu span {
	position: relative;
	display: block;
}
.toggle-menu span,
.toggle-menu span:after,
.toggle-menu span:before {
	width: 100%;
	height: 3px;
	background-color: #992D16;
	transition: all 0.3s;
	backface-visibility: hidden;
	border-radius: 1px;
	max-width: 30px;
    margin-left: auto;
}
/* on activation */
.toggle-menu.on span {
	background-color: transparent;
}
.toggle-menu.on span:before {
	transform: rotate(45deg) translate(9px, 9px);
}
.toggle-menu.on span:after {
	transform: rotate(-45deg) translate(8px, -8px);
}
.toggle-menu.on + #menu {
	opacity: 1;
	visibility: visible;
}
/*Toggle menu*/

/*Mobile menu*/
.mobile-menu {
	display: none;
	background-color: #fff;
}
.mobile-menu ul{
	text-align: center;
	font-size: 18px;
	margin: 0;
	list-style: none;
	padding-left: 0;		
}
.mobile-menu a {
	position: relative;	
	display: block;	
	padding: 10px;

	-webkit-transition: ease 0.3s;
	-moz-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
}
.mobile-menu a:hover {
	color: #fff;
	background-color: #DB060B;
	opacity: .9;
}
.mobile-menu a:after {
	display: block;	
	position: absolute;	
	height: 2px;
	width: 100%;
	top: 0;	
	left: 0;	
	content: "";
	background-color: #333;
	opacity: 0.6;
}
/*Mobile menu*/

/*Header*/

.header {
	position: relative;
	width: 100%;
	text-align: left;
	background: url(../img/bg1.jpg) 50% 0%;
	background-position: 50% 0% !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	background-attachment: fixed !important; 
	overflow: hidden;
}
/*.header:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}*/
.table,
.header-img-wrap {
	z-index: 2;
	display: table;
	position: relative;
	width: 100%;
	height: 100px; /*было 480 пикселей*/
	/*height: 75vh;*/
}
.header-img-wrap {
	z-index: 1;	
}
.table-cell {
	position: relative;
	display: table-cell;
	vertical-align: middle;
}

.header h1 {
	font-size: 50px;
	max-width: 740px;
	margin-top: 10%;
	text-align: left;
	margin-bottom: 10px;
}

.db {
	display: block;
	max-width: 459px;
}
.db h2 {
	margin-top: 0;
}

.header-img-wrap img {
	display: block;
	/*height: 50%;*/
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	max-height: 400px;
}

/*Header*/

/* Mouse animate icon */
.mouse-icon {
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-left: -12px;
	border: 2px solid #fff;
	border-radius: 16px;
	height: 40px;
	width: 24px;
	display: block;
	z-index: 5;
	opacity: 0.9;
}
.mouse-icon .wheel {
	-webkit-animation-name: drop;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-play-state: running;
	animation-name: drop;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-play-state: running;
}
.mouse-icon .wheel {
	position: relative;
	border-radius: 10px;
	background: #fff;
	width: 3px;
	height: 6px;
	top: 4px;
	margin-left: auto;
	margin-right: auto;
}
@-webkit-keyframes drop {
	0% {
		top: 5px;
		opacity: 0;
	}
	30% {
		top: 10px;
		opacity: 1;
	}
	100% {
		top: 25px;
		opacity: 0;
	}
}
@keyframes drop {
	0% {
		top: 5px;
		opacity: 0;
	}
	30% {
		top: 10px;
		opacity: 1;
	}
	100% {
		top: 25px;
		opacity: 0;
	}
}
/* Mouse animate icon */

/*Forms*/

.form {
	position: relative;
	max-width: 320px;
	background-color: #f2f2f2;
	margin: auto;
	padding: 15px;
	text-align: center;
}
.form .mfp-close {
	width: 33px;
	height: 33px;
	line-height: 33px;
}

.form h2 {
	text-transform: uppercase;
	font-size: 26px;
}

.form .input-wrap input,
.form .input-wrap select {
	width: 100%;
	height: 36px;
	line-height: 36px;
	padding-left: 7px;
	margin-bottom: 7px;
	border-radius: 3px;
	border: none;
	box-shadow: 0px 0px 2px #666 inset;
}

button.button {
	display: inline-block;
	position: relative;
	border: none;
	width: 100%;
	background-color: #E24220;
	color: #fff;
	padding: 12px 18px;
	text-transform: uppercase;
	border-radius: 3px;
	text-decoration: none;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	opacity: 0.95;
	box-shadow: 0 3px 0 0 #992D16;
	line-height: 1;
}
button.button:hover {
	opacity: 1;
}

/*Forms*/


/*Compression Part*/


/*Forms Animation*/

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;

	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease; 
	-moz-transition: opacity 0.3s ease; 
	-o-transition: opacity 0.3s ease; 
	transition: opacity 0.3s ease;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/*Forms Animation*/

/*section General*/

section {
	padding: 30px 0;
	text-align: center;
}

.light {
	position: relative;
	background-color: #f2f2f2;
	background: url(../img/bg3.png);
	background-repeat: repeat;
	/*background-attachment: fixed;*/
}

.gray {
	background-color: #f2f2f2;
	background: url(../img/bg1.jpg) 50% 0%;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
}

section h2 {
	margin-top: 0;
	text-transform: uppercase;
	font-size: 32px;
}

/*section General*/

/*Products*/
a.product-item{
	margin: 0px auto 25px;
	display: block;
	color: #000;
	padding: 10px 10px 15px;
	border-radius: 3px;

	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

a.product-item:hover {
	background-color: rgba(255,255,255,.5);
}
.product-item img,
.product-item h3,
.product-item span {
	font-size: 21px;
	margin: 0 auto 12px;
	display: block;
}
.product-item img{
	width: 100%;
	max-width: 130px;
}
.product-item button.button {
	max-width: 320px;
}
/*Products*/

/*Модальное окно*/
#bg_popup{
position: fixed;
z-index: 99999;
background: rgba(0, 0, 0, 0.8);
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
}
#popup {
background:url(../img/bg3.png);
overflow: auto;
width: 100%;
max-width: 980px;
margin: 15% auto;
padding: 5px 20px;
position: relative;
}
.close{
display:block;
position:absolute;
top:1px;
right:3px;
width:20px;
height:20px;
color:#555;
background: url(../img/bg3.png);
cursor:pointer;
}

/*Products-popup*/
.product-popup {
	display: block;
	position: relative;
	margin: auto;
	width: 100%;
	max-width: 980px;
	padding: 15px 0;
}
.product-popup .product-popup-img {
	text-align: center;
}

.product-popup img {
	width: 100%;
	max-width: 176px;
}

.product-popup .descript {
	font-size: 19px;
}

.product-popup .descript ul {
	margin-top: 0;
}

.product-popup .descript ul {
	padding-left: 20px;
}

.product-popup .descript ul li:first-child{
	list-style: none;
	font-size: 21px;
	margin-left: -20px;
	margin-bottom: 5px;
}
.product-popup .descript ul li:last-child{
	list-style: none;
	font-size: 21px;
	margin-left: -20px;
	margin-top: 5px;
	color: red;
}

.product-popup .form {
	padding: 0;
	background: none;
}

.product-popup .form p {
	margin-top: 0;
	margin-bottom: 10px;
}

.product-popup .form .input-wrap label {
	font-size: 18px;
}


/*Products-popup*/

/*Advantages*/

.advantage {
	position: relative;
	text-align: center;
	margin-bottom: 25px;
	background-color: transparent;

	-webkit-transition: 0.3s ease; 
	-moz-transition: 0.3s ease; 
	-o-transition: 0.3s ease; 
	transition: 0.3s ease;
}
.advantage:hover {
	/*background-color: #f2f2f2;*/
}

.advantage h3 {
	font-size: 21px;

	-webkit-transition: 0.3s ease; 
	-moz-transition: 0.3s ease; 
	-o-transition: 0.3s ease; 
	transition: 0.3s ease;
}
.icon-wrap {
	position: relative;
	margin: auto;
	/*height: 100px;
	width: 100px;*/
	padding-top: 20px;
	border-radius: 10em;
	overflow: hidden;

	-webkit-transition: 0.3s ease; 
	-moz-transition: 0.3s ease; 
	-o-transition: 0.3s ease; 
	transition: 0.3s ease;
}

.advantage:hover h3 {
	color: 	#E24220;
}

.advantage .arrow {
	z-index: 2;
	position: absolute;
	height: 40px;
	right: -35px;
	bottom: 50%;
	margin-bottom: -5px;
}

/*.advantage:hover .icon-wrap {
	background-color: #DB060B;
	opacity: .95;
}*/

.icon-wrap img,
.icon-wrap svg {
	z-index: 3;
	height: 75px;
	width: 75px;
	-webkit-transition: 0.3s ease; 
	-moz-transition: 0.3s ease; 
	-o-transition: 0.3s ease; 
	transition: 0.3s ease;
}
.advantage:hover .icon-wrap img,
.advantage:hover .icon-wrap svg {
	
}
.icon-wrap svg path {
	fill: #000 !important;

	-webkit-transition: 0.3s ease; 
	-moz-transition: 0.3s ease; 
	-o-transition: 0.3s ease; 
	transition: 0.3s ease;
}

.advantage:hover .icon-wrap svg path {
	fill: #E24220 !important;
}

/*Advantages*/


/*delivery*/

.accent {
	color: #E24220;
}

.delivery-img-wrap img{
	max-width: 460px;
	width: 100%;
}
/*delivery*/

/*certificats*/

a.certificat {
	position: relative;
	display: inline-block;
	margin: 0 auto 20px;
	padding: 0px;
	border-radius: 3px;
	background-color: #fff;
}

a.certificat .zoom-hover{
	position: absolute;
	background-color: rgba(255,255,255,.4);
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	/*box-shadow: 0 0 0 3px RGBA(226,66,32,.5) inset;*/

	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

a.certificat:hover .zoom-hover {
	opacity: 1;
}

a.certificat .zoom-hover i {
	font-size: 50px;
	line-height: 60px;
	top: 50%;
	left: 50%;
	position: absolute;
	color: #fff;
	margin-top: -25px;
	margin-left: -19px;
	margin-top: -30px;
	margin-left: -30px;
	width: 60px;
	height: 60px;
	background-color: #E24220;
	border-radius: 10em;
	box-shadow: 0 3px 0 0 #992D16;
}

a.certificat img{
	width: 100%;
	max-width: 228px;
}

.certificat img{
	width: 100%;
	max-width: 228px;
	margin: 0 auto 20px;
}

/*certificats*/

/*contacts*/

section.contacts{
	text-align: left;
	padding-bottom: 25px;
	font-size: 18px
}

.contacts-img-wrap img{
	max-width: 100%;
}

/*contacts*/

/*footer*/
.footer {
	text-align: center;
	background-color: #f2f2f2;
}

.footer-img-wrap {
	text-align: right;
}

.footer-img-wrap a img{
	margin-top: 20px;
	margin-bottom: 20px;
	max-width: 180px;
}
/*footer*/

.left {
	text-align: left;
}

.atrybuty {
	display: block;
	position: relative;
	width: 100%;
}

a.popup-atrybuty {
}

.atrybuty img{
	width: 50px;
	display: inline-block;
	text-align: center;
	border-radius: 10em;
	margin-bottom: 20px;
}
.atrybuty a+a {
	padding-left: 10px;
}
a.nakladki {
}
.nakladki img{
	display: inline-block;
	max-width: 130px;
	width: 50%;
	border:0;
	background: #E24220;
}

/*Door advantages*/

.adv-img-wrap {
	margin: 0 auto 20px;
	text-align: center;
}

.adv-img-wrap img {
	width: 100%;
	max-width: 120px;
}

/*.adv-wrap {
	text-align: left;
	position: relative;
	padding: 20px 0 20px 60px;
}*/

.adv-wrap {
	display: table;
	margin-bottom: 30px;
}

/*.adv-wrap .index {
	position: absolute;
	left: 0;
	color: #fff;
	opacity: .9;
	font-size: 58px;
	top: 10px;
}*/

.adv-wrap .index {
	display: table-cell;
	vertical-align: top;
	padding-right: 10px;
	color: #fff;
	opacity: .9;
	font-size: 58px;
	line-height: .85;
}

.gray .adv-wrap .index {
	color: #fff;
}

.adv-wrap .text {
	display: table-cell;
	vertical-align: top;
	text-align: left;
}

/*Door advantages*/
#5days {
	color: #FF0000;
}