/*========= general CSS ============*/
*{
	outline: none;
    -webkit-appearance: none;
}
html, body{
	min-width:320px;
}
body {
	padding: 0;
	margin:0;
	background-color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color:#111111;
	font-weight: normal;
	line-height: 1.5em;
	
}

button, textarea{
	font-family: 'Roboto', sans-serif;
}

a{
	color:#111111;
	text-decoration: underline;
}
a:hover{
	text-decoration: underline;
}


img{
	border:none;
	max-width:80%;
}

.wire{
	width:100%;
	max-width:1170px;
	padding:0;
	margin:0 auto;
	position:relative;
}
@media only screen and (max-width:1170px) {
	.wire{
		padding:0 15px;
		width:calc(100% - 30px);
	}
}

.clear{
	clear:both;
}

#fancybox-wrap{
	z-index:9999 !important;
}

/* Simple custom css scrollbar */
/*::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 0;
    border-radius: 0;
	cursor:pointer;
	background: #FFF;
}
::-webkit-scrollbar-thumb {
    background: #070707;
    -webkit-box-shadow: inset 0 0 6px rgba(200, 200, 200, 0.2);
}
::-webkit-scrollbar-thumb:active{
	background: #777;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #070707;
}
*/
::-webkit-input-placeholder {color:#111111;}
::-moz-placeholder          {color:#111111;}
:-moz-placeholder           {color:#111111;}
:-ms-input-placeholder      {color:#111111;}


.hrefall{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	display:block;
}

.zagolovok{
	margin:0 0 40px;
	line-height: 45px;
	font-size:36px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
}

.wrapper{
	overflow: hidden;
}


/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
/*---------------------- header -----------------------------------------*/
.header{
	padding:20px 0;
	position: relative;
	background: #cfdbd7;
	z-index: 2;
}
.header .logo,
.header .menu,
.header .contact{
	display: inline-block;
	vertical-align: middle;
}

.header .logo{
	width:220px;
	margin-top: 10px;
}
.header .logo a{
	text-decoration: none !important;
	display: block;
	width:100%;
}
.header .logo span{
	display: block;
	font-size:16px;
	font-family: 'Roboto', sans-serif;
	padding-left:0;
	font-weight: 300;
}

.header .menu{
	text-align: center;
	width:calc(100% - 320px - 230px);
}
.header .menu ul{
	list-style-type: none;
	margin:0;
	padding:0;
}
.header .menu ul li{
	display: inline-block;
}
.header .menu ul li a{
	font-size:18px;
	font-weight:400;
	display: block;
	margin:0 25px;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
}
.header .menu ul li a::after{
	content:"";
	background: #111;
	position: absolute;
	bottom:0;
	left:0;
	width:0;
	height:1px;
	transition:0.3s all;
	-webkit-transition:0.3s all;
	-moz-transition:0.3s all;
}
.header .menu ul li a:hover::after{
	width:100%;
}

.topbars{
	position: relative;
    display: inline-block;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
}
.topbars::before,
.topbars::after,
.topbars span{
	content:"";
	height:2px;
	width:100%;
	background: #000;
	position: absolute;
	top:4px;
	left:0;
	transition:0.3s all;
	-webkit-transition:0.3s all;
	-moz-transition:0.3s all;
}
.topbars::after{
	top:calc(100% - 2px - 4px);
}
.topbars span{
	top:calc(50% - 1px);
}
.topbars.active::before{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
    top: 13px;
}
.topbars.active::after{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
    top: 13px;
}
.topbars.active span{
	opacity: 0;
	-moz-opacity: 0;
}

.header .contact{
	text-align: right;
	width:220px;
}
.header .contact p{
	margin:11px 0 0 0;
}
.header .contact p a{
	text-decoration: none;
	font-size:16px;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	position: relative;
}
.header .contact p a::after{
	content:"";
	background: #111;
	position: absolute;
	bottom:0;
	right:0;
	width:0;
	height:1px;
	transition:0.3s all;
	-webkit-transition:0.3s all;
	-moz-transition:0.3s all;
}
.header .contact p a:hover::after{
	width:100%;
}
.header .contact p a i{
	color:#000;
	display: inline-block;
	margin-right:3px;
}
@media only screen and (max-width:1170px){
	.header .menu ul li a{
		font-size: 16px;
		margin: 0 15px;
	}
}
@media only screen and (max-width:1024px){
	.topbars{
		display: block;
		position: absolute;
	    top: 18px;
	    right: 15px;
	}
	.header .menu ul.topmenu{
		position: absolute;
	    top: 98px;
	    background: #fff;
	    width: 100%;
	    left: 0;
	    padding: 20px 0;
	    border-top: 1px solid #ccc;
	    display: none;
	}
	.header .menu ul li {
	    display: block;
	    padding: 10px 0;
	}
	.header .contact{
		position: relative;
    	top: 0px;
	}
	
}
@media only screen and (max-width:640px){
	.header .logo{
		width: 100%;
    	text-align: center;
	}
	.header .logo img {
		width: 100%;
		max-width: 260px;
	}
	.header .menu{
		width: initial;
    	padding: 10px 0;
	}
	.topbars{
		position: relative;
	    top: -10px;
	    right: 0;
	    display: block;
	}
	.header{
		padding:10px 0 0;
	}
	.header .contact{
		width: initial;
	    top: 80px;
	    position: absolute;
	    right: 15px;
	}
	.header .contact p a{
		font-size:18px;
	}
	.header .menu ul.topmenu{
		top:145px;
	}
}


@media only screen and (max-width:500px){
	.header .logo img {
		max-width: 160px;
	}
	.header .contact{
	    top: 60px;
	}
	.topbars{
	    top: 0;
	}
}



/*----------------------- slider ----------------------*/
.slider{
	background: #070707;
}
.sliderInner img{
	position: relative;
	width:100%;
}

.sliderInner .slick-dots{
	bottom:15px;
}
.sliderInner .slick-dots li{
	margin:0 12px;
}
.sliderInner .slick-dots li button::before{
	display: none;
}
.sliderInner .slick-dots li button{
	display: block;
	width:22px;
	height:22px;
	background: #FFF;
	border-radius: 50%;
	position: relative;
}
.sliderInner .slick-dots li.slick-active button::after{
	background: #e50012;
	content:"";
	position: absolute;
	top:4px;
	left:4px;
	width:calc(100% - 8px);
	height:calc(100% - 8px);
	border-radius: 50%;
}

.sliderInner .slick-arrow::before{
	display: none;
}
.sliderInner .slick-prev{
	left:0;
}
.sliderInner .slick-next{
	right:0;
}
.sliderInner .slick-prev::after,
.sliderInner .slick-next::after{
	content: "\f104";
    font-family: FontAwesome;
    position: absolute;
    font-size: 80px;
    color: #FFF;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    transition:0.3s all;
	-webkit-transition:0.3s all;
	-moz-transition:0.3s all;
}
.sliderInner .slick-next::after{
	content:"\f105";
}
.sliderInner .slick-arrow:hover::after{
	opacity:1;
}
@media only screen and (max-width:1170px){
	.slider .wire{
		padding:0;
		width:100%;
	}
}
@media only screen and (max-width:800px){
	.sliderInner .slick-dots {
	    bottom: 10px;
	}
	.sliderInner .slick-dots li {
	    margin: 0 4px;
	}
	.sliderInner .slick-dots li button {
	    display: block;
	    width: 14px;
	    height: 14px;
	}
}
@media only screen and (max-width:640px){
	.sliderInner .slick-prev, .sliderInner .slick-next{
		width:30px;
	}
	.sliderInner .slick-prev::after, .sliderInner .slick-next::after{
		font-size:36px;
	}
	.sliderInner .slick-dots{
		display: none !important;
	}
}


/*---------------------- contentBlock ---------------*/
.contentBlock{
	padding:80px 0;
}
.contentBlock a{
	transition:0.3s all;
}
.contentBlock a:hover{
	color:#f00;
}
.contentBlock p, li{
	margin:15px 0 0 0;
	line-height: 1.4em;
	font-size: 16px;
}
@media only screen and (max-width:640px){
	.contentBlock{
		padding:40px 0;
	}
	.contentBlock p {
	    margin: 0 0 30px;
	    line-height: 1.9em;
	    font-size: 15px;
	}
	.zagolovok {
	    margin: 0 0 35px;
	    line-height: 32px;
	    font-size: 24px;
    }
}



/*---------------------- preimushestva ---------------*/
.preimushestva{
	position: relative;
	padding:75px 0;
}
.preimushestva .wire{
	z-index: 2;
}
.preimushestva .pr_bg{
	background: #ebebeb;
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    /*transform: rotate(-3deg);*/
}
.preimList .pr_item{
	display: inline-block;
	vertical-align: top;
	width:calc(100% / 4 - 35px);
	margin:0 15px 30px;
	text-align: center;
	font-size:15px;
	font-family: 'Roboto', sans-serif;
	line-height: 1.5em;
}
.preimList .pr_item .pr_icon{
	transition:0.7s all;
	-webkit-transition:0.7s all;
	-moz-transition:0.7s all;
}
.preimList .pr_item:hover .pr_icon{
	transform:rotateY(180deg);
}
.preimList .pr_item .pr_icon img{
	height:40px;
}
.preimList .pr_item .pr_name{
	font-weight: bold;
	margin:25px 0;
	font-size:16px;
}

.preimList .pr_item .pr_text strong { font-size: 16px; }

@media only screen and (max-width:800px){
	.preimList .pr_item{
		width:calc(100% / 2 - 35px);
	}
	.preimList .pr_item .pr_name{
		margin:15px 0;
	}
}
@media only screen and (max-width:480px){
	.preimList .pr_item{
		width:100%;
		display: block;
		margin:0 0 60px;
	}
	.preimushestva {
	    padding: 65px 0 10px;
	}
}


/*---------------------- preimushestva2 ---------------*/
.preimushestva2{
	position: relative;
	padding:75px 0;
	margin-bottom: 50px;
}
.preimushestva2 .wire{
	z-index: 2;
}
.preimushestva2 .pr_bg{
	background: #cfcfcf;
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    /*transform: rotate(-3deg);*/
}

.preimList2,
.preimList2_2{
	position: relative;
}
.preimList2::after{
	content:"";
	position: absolute;
	bottom:0%;
	left: 100px;
    width: calc(100% - 200px);
	height:8px;
	background: #FFF;
	display: block;
}
.preimList2 .pr_item,
.preimList2_2 .pr_item{
	display: inline-block;
	width:calc(100% / 6 - 5px);
	vertical-align: top;
	position: relative;
	text-align: center;
	font-size:14px;
	line-height: 1.5em;
	font-family: 'Roboto', sans-serif;
	margin-bottom:10px;
	margin-right: 191px;
	
}
.preimList2 .pr_item::after,
.preimList2_2 .pr_item::after{
	content:"";
	z-index: 2;
	background: #FFF;
	position: absolute;
	bottom:-37px;
	left:50%;
	transform:translateX(-50%);
	border-radius: 50%;
	width:28px;
	height:28px;
	border:2px solid #5ba388;
}

.preimList2_2 .pr_item{
	margin-bottom:0;
	margin-top:60px;
	margin-left:191px;
	margin-right:0;
	top:-10px;
}
.preimList2_2 .pr_item::after{
	bottom:0;
	top:-70px;
}

.preimList2 .pr_num,
.preimList2_2 .pr_num{
	font-size:100px;
	line-height: 100px;
	color:#13161b;
	opacity: 0.1;
	position: absolute;
	top:-10px;
	left:-10px;
}


.preimList2 .pr_item:nth-child(2)::after{
	bottom:-21px;
}
.preimList2 .pr_item:nth-child(3)::after{
	bottom:-90px;
}

@media only screen and (max-width:1170px){
	.preimList2 .pr_item::after{
		display: none;
	}
	.preimList2 .pr_item,
	.preimList2_2 .pr_item{
		margin:0 20px 10px;
		width:calc(100% / 3 - 45px);
	}
	.preimList2_2 .pr_item{
		margin:58px 20px 0;
	}
	.preimList2::after{
		left: 17%;
    	width: calc(100% - 34%);
	}
}
@media only screen and (max-width:640px){
	.preimList2 .pr_item::after{
		display: block;
		bottom: -70px !important;
	}
	.preimList2, .preimList2_2 {
	    position: relative;
	    text-align: center;
	}
	.preimList2 .pr_item, .preimList2_2 .pr_item {
	    margin: 0 0 60px !important;
	    width: 100%;
	}
	.preimList2 .pr_item::after, .preimList2_2 .pr_item::after {
	    content: "";
	    z-index: 2;
	    background: #FFF;
	    position: absolute;
	    bottom: -44px !important;
	    top:initial !important;
	    left: 50%;
	    transform: translateX(-50%);
	    border-radius: 50%;
	    width: 28px;
	    height: 28px;
	    border: 2px solid #5ba388;
	}
	.preimList2::after,
	.preimList2 .pr_num, .preimList2_2 .pr_num{
		display:none;
	}
	.preimushestva2{
		padding-bottom:0;
	}
}


/*------------------------ feedback --------------------*/
.feedback{
	padding:50px 0;
}

.myform .fline3 .inpline{
	display: inline-block;
	vertical-align: top;
	width:calc(100% / 3 - 25px);
	margin-right:30px;
}
.myform .fline3 .inpline:last-child{
	margin:0;
}
.myform input[type="text"],
.myform input[type="email"],
.myform input[type="date"],
.myform textarea,
.myform select{
	width:100%;
	padding:13px 20px;
	border:2px solid #ced4da;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	margin-bottom:25px;
	/*background-color: #fff;*/
	background: transparent;
	box-shadow:none;
	font-size:16px;
	line-height: 16px;
	resize: none;
}
.myform textarea{
	height:100px;
}

.myform input[type="date"] {
	padding: 11px 20px;
	font-family: Arial;
	font-size: 16px;
}

.myform input[type="text"],
.myform input[type="email"],
.myform input[type="date"],
.myform textarea{
	width:calc(100% - 44px);
}
.myform .myinpselect{
	width:100%;
	position: relative;
}
.myform .myinpselect::after{
	font-family:FontAwesome;
	content: "\f0d7";
	position: absolute;
	top:10px;
	right:20px;
	z-index: -1;
}

.myform .fline2{
	margin-bottom:0px;
}
.myform .fline2 .inpline{
	display: inline-block;
	vertical-align: top;
	position: relative;
    width: calc(100% / 2 - 20px);
}
.myform .fline2 .inpline:last-child{
	/*width:calc(100% / 3 - 25px);*/
	margin-left: 30px;
}




.myform .fline2sub{
	margin-bottom:0px;
}
.myform .fline2sub .inpline{
	display: inline-block;
	vertical-align: top;
	position: relative;
    width: calc(100% / 3 - 25px);
}
.myform .fline2sub .inpline:last-child{
	width:calc(100% / 3 - 25px);
}
.myform .fline2sub .inpline:first-child{
	width:calc(100% - 100% / 3 - 15px);
	margin-right:30px;
}
.myform .inpline a, .myform .inpline span {
	display: inline-block;
    font-size: 12px;
    line-height: 17px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    top: -21px;
    margin-left: 10px;
    opacity: 0.4;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}
.myform .inpline a:hover{
	opacity: 1;
}

.myform label{
	position: relative;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size:16px;
	line-height: 16px;
}
.myform label span{
	position: absolute;
	top:14px;
	left:20px;
	cursor: pointer;
	z-index: -1;
	max-width: calc(100% - 55px);
    overflow: hidden;
	white-space: nowrap;
}
.myform label span b{
	color:#f00;
}

.myform .textblock{
	background-color: #cfdbd7;
	padding:20px;
	margin-bottom: 40px;
	text-align: center;
	font-size:18px;
	line-height: 1.5em;
}
.myform .textblock p{
	margin:0 0 10px;
}
.myform .textblock p:last-child{
	margin:0;
}
.myform .textblock p b,
.myform .textblock p strong{
	font-size:24px;
	font-weight: bold;
}

.agreeblock--complect {
	margin-top: 3px !important;
}

.complectblock {
	border: 2px solid #ced4da;
	width: 100%;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 50px;
}


.complect-text {
	width: 100%;
	margin: 0 0 20px 0;
	font-weight: 600;
}

.complect-text--warranty {
	display: block;
	color: #a80303;
	font-weight: 400;
	margin-top: 8px;
	margin-bottom: 0;
	border-radius: 5px;
	padding: 8px 20px 7px 20px;
	box-sizing: border-box;
	background-color: #ffe3e3;
}

.myform .agreeblock{
	margin:20px 0;
}

.myform .agreeblock .agrit{
	display: inline-block;
	vertical-align: top;
	margin:0 0 0 80px;
	width:calc(50% - 85px);
}

.myform .agreeblock .agrit2{
	display: inline-block;
	vertical-align: top;
	margin:0 0 0 0;
	width: 31%;
}

.myform .agreeblock .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.myform .agreeblock .container a{
	text-decoration: underline;
	font-weight: 600;
	/*color:#5ba388;*/
}
.myform .agreeblock .container a:hover{
	text-decoration: none;
}
.myform .agreeblock .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.myform .agreeblock .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background: #ced4da;
    border: 2px solid #3e3e3e;
    border-radius: 50%;
}
.myform .agreeblock .container input:checked ~ .checkmark {
  background-color: #5ba388;
}
.myform .agreeblock .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.myform .agreeblock .container input:checked ~ .checkmark:after {
  display: block;
}

.myform .submit{
	text-align: center;
}
.myform .submit input, .pay-but {
	padding:20px 40px;
	background: #5ba388;
	color:#FFF;
	border:1px solid #5ba388;
	font-size:16px;
	font-weight:bold;
	text-transform: uppercase;
	transition:0.3s all;
	cursor: pointer;
}
.myform .submit input:hover, .pay-but:hover {
	background: #fff;
	color:#5ba388;
	text-decoration: none;
}

.pay-but { display: block; width: 170px; text-align: center; text-decoration: none; margin-top: 30px; margin-bottom: 30px; }

.myform .fline3.f3fix .inpline{
	width: calc(100% / 4 - 27px);
}


@media only screen and (max-width:1000px){
	

	.myform .agreeblock .agrit2{
		width: 31%;
	}

}

@media only screen and (max-width:800px){
	.myform .fline2sub .inpline,
	.myform .fline3 .inpline{
		width:100% !important;
		display: block;
		margin-right:0 !important;
	}

	

	.myform .agreeblock .agrit2{
		float: none;
		width: 90%;
	}

}


@media only screen and (max-width:640px){
	.myform .agreeblock .agrit{
		margin:0 0 20px;
		width:100%;
		display: block;
	}
	.myform .agreeblock .container{
		font-size: 14px;
    	line-height: 19px;
	}
	.myform .textblock{
		font-size:14px;
	}
	.myform .textblock p b,
	.myform .textblock p strong{
		font-size:14px;
	}

	

}



/*----------------- footer -----------------*/
.footer{
	background: #111;
	padding:10px 0 16px;
}
.footer::after{
	clear: both;
	display: block;
	content:"";
}
.footer .flogo {
	float: left;
}
.footer .flogo img {
	padding-top: 22px;
	width: 100%;
	max-width: 120px;
}
.footer .fmenu{
	float: right;
}
.footer .fmenu ul{
	list-style-type: none;
	padding:0;
	margin:0;
}
.footer .fmenu ul li{
	display: inline-block;
	margin-left:110px;
	margin-top:20px;
}
.footer .fmenu ul li:first-child{
	margin-left:0;
}
.footer .fmenu ul li a{
	font-size:16px;
	font-weight: 400;
	color:#FFF;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
}
.footer .fmenu ul li a::after{
	content:"";
	display: block;
	width:0;
	height:1px;
	background: #fff;
	transition:0.3s all;
	position: absolute;
	bottom:0;
	right:0;
}
.footer .fmenu ul li a:hover::after{
	width:100%;
}
@media only screen and (max-width:800px){
	.footer .fmenu ul li{
		margin-left:50px;
	}
}
@media only screen and (max-width:640px){
	.footer{
		padding:10px 0 6px;
	}
	.footer .fmenu ul li{
		margin-left:0;
		text-align: center;
		display: block;
	}
	.footer .fmenu,
	.footer .flogo{
		float: none;
		margin:0 auto 20px;
		
		text-align: center;
		max-width: 140px;
		/*width:50%;*/
	}
	.footer .fmenu ul li{
		margin-top:10px;
	}

}



/*--------------- mypopup -------------*/
.fader{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(0,0,0,0.4);
	display: none;
	z-index: 999;
}
.mypopup{
	position: fixed;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    top: 10%;
    left: 10%;
    width: calc(100% - 20% - 100px);
    height: calc(100% - 20% - 100px);
    overflow: auto;
    padding: 70px 50px 30px;
    z-index: 1000;
    text-align: center;
    display: none;
}
.mypopup .myclose{
	position: absolute;
	top:30px;
	right:30px;
	width:30px;
	height:30px;
	cursor: pointer;
}
.mypopup .myclose::before,
.mypopup .myclose::after{
	content:"";
	position: absolute;
	width:100%;
	height:2px;
	background:#000;
	opacity: 0.2;
	transition:0.3s all;
	top: 13px;
    left: 0;
}
.mypopup .myclose::before{
	transform:rotate(45deg);
}
.mypopup .myclose::after{
	transform:rotate(-45deg);
}
.mypopup .myclose:hover::before,
.mypopup .myclose:hover::after{
	background: #f00;
	opacity: 1;
}
.mypopup p{
	margin: 0 0 25px;
}
.mypopup p:last-child{
	margin:0;
}
@media only screen and (max-width:640px){
	.mypopup{
		top: 0%;
	    left: 0%;
	    width: calc(100% - 40px);
	    height: calc(100% - 100px);
	    padding-left:20px;
	    padding-right:20px;
	}
}

input.error-form, select.error-form { border: 1px solid #f00 !important; }
.error-message { color: #f00;  }
.ready-message, .ready-message a { color: #038800; }

.repair_note { font-size: 13px; margin-top: -10px; line-height: 1.2; }

.discount-info, .discount-info a { color: #a80303; font-weight: 600; font-size: 20px; }