*::-webkit-input-placeholder {
	color: #777;
	opacity: 1;
}
*:-moz-placeholder {
	color: #777;
	opacity: 1;
}
*::-moz-placeholder {
	color: #777;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #777;
	opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	
}
body input:required:valid,
body textarea:required:valid {
	
}

html.js .loader {
	background: none repeat scroll 0 0 #ffffff;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
html.js .loader_inner {
	background-image: url("../img/preloader.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	height: 60px;
	width: 60px;
	margin-top: -30px;
	margin-left: -30px;
	left: 50%;
	top: 50%;
	position: absolute;
}

body {
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 400;
	min-width: 320px;
	color: #000;
	position: relative;
	line-height: 1.4;
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
}

.hidden {
	display: none;
}

p {
	margin: 0;
	padding: 0 0 7px;
}

p:last-of-type {
	padding: 0;
}

a, button {
	text-decoration: none;
	color: #101206;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	outline: none;
	border: none;
}

a:hover, a:focus, a:active,
button:hover, button:focus, button:active {
	text-decoration: none;
	color: #000;
	outline: none;
}

ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1, h2, h3, h4 ,h5, h6 {
	line-height: 1.2;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	color: #777;
	padding: 0;
	margin: 10px 0 15px;
}

h1 {
	font-size: 38px;
}
h2 {
	font-size: 34px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 18px;
}

.fa {
	font-family: 'fontawesome';
}

img {
	max-width: 100%;
}

/*.btn {
	display: inline-block;
	color: #fff;
	background-color: #53b54e;
	padding: 9px 20px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-transform: uppercase;
	margin-top: 10px;
	-webkit-box-shadow: 1px 1px 2px 0 rgba(0,0,0,0.4);
	box-shadow: 1px 1px 2px 0 rgba(0,0,0,0.4);
}

.btn:active, .btn:focus {
	color: #fff;
}*/

/*--------MAIN--------*/

.header {
	position: relative;
	background-color: #000;
}

.top-header {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	padding: 10px 0 8px;
	z-index: 3;
}

.logo {
	display: inline-block;
	width: 100%;
	max-width: 165px;
}

.logo img {
	width: 100%;
}

.main-menu {
	margin-top: 18px;
	text-align: center;
}

.main-menu ul {
	display: inline-block;
}

.main-menu ul li {
	float: left;
	margin-left: 30px;
}

.main-menu ul li a {
	color: #fff;
}

.main-menu ul li:hover a {
	color: #000;
}

/*toogle-menu*/
.toggle-mnu {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-top: 11px;
	margin-left: 5px;
	padding: 10px 8px 4px;
	background: #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.toggle-mnu span::after, .toggle-mnu span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
}
.toggle-mnu span::after {
	top: 18px;
}
.toggle-mnu span {
	position: relative;
	display: block;
}
.toggle-mnu span, .toggle-mnu span::after, .toggle-mnu span::before {
	width: 100%;
	height: 2px;
	background-color: #f22;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	backface-visibility: hidden;
	border-radius: 2px;
}
.toggle-mnu.on span {
	background-color: transparent;
}
.toggle-mnu.on span::before {
	transform: rotate(45deg) translate(-1px, 0px);
}
.toggle-mnu.on span::after {
	transform: rotate(-45deg) translate(6px, -7px);
}

.mobile-menu {
	display: block;
	text-align: right;
}

.mob-menu {
	position: absolute;
	top: 68px;
	right: 15px;
	display: none;
	background-color: rgba(0,0,0,0.25);
	padding: 12px 20px;
}

.mob-menu ul li {
	margin-bottom: 5px;
}

.mob-menu ul li:last-child {
	margin-bottom: 0;
}

.mob-menu ul li a {
	color: #fff;
	text-align: right;
	display: inline-block;
	font-size: 16px;
}

.mob-menu ul li a:hover {
	color: #000;
}
/*toogle-menu end*/

.top-btn {
	position: relative;
	text-align: right;
	margin-top: 10px;
}

.btn-tel {
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	background-color: transparent;
	background-image: url('../img/button-bg.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 170px;
	height: 48px;
	padding: 5px 15px 0 0;
	text-align: center;
	font-size: 13px;
	line-height: 15px;
}

.btn-tel.bt-2 {
	background-image: url('../img/button-bg2.png');
	color: #777;
	padding-bottom: 15px;
}

.btn-tel.bt-2:hover {
	color: #555;
}

.slider-header {
	position: relative;
}

.owl-slider .owl-stage {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.owl-slider .slider-item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
		-webkit-align-items: center;
	align-items: center;
		-webkit-justify-content: center;
	justify-content: center;
	background-position: top center;
	background-repeat: no-repeat;
}

.slider-item {
	padding: 120px 0 50px;
}

.slider-item .slide-content {
	margin-top: 100px;
	color: #fff;
}

.slider-item .slide-content .sl-ttl {
	font-size: 62px;
	font-family: "CaviarDreams-Bold", sans-serif;
	/*text-transform: uppercase;*/
	color: #fff;
	margin-bottom: 30px;
}

.slider-item .slide-content .sub-ttl {
	display: block;
	font-size: 24px;
	font-weight: 600;
}

.slider-item .slide-content .sub-ttl2 {
	display: block;
	font-size: 16px;
	font-weight: 600;
}

.slider-item .slide-content .vline {
	display: inline-block;
	height: 26px;
	width: 12px;
	border-right: 1px solid #fff;
	line-height: 1;
}

.slider-item .slide-img {
	/*max-width: 560px;*/
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.slider-item .slide-img img {
	display: inline-block;
}

.slider-header .owl-nav {
	position: absolute;
	z-index: 2;
	width: 100%;
	max-width: 1140px;
	left: 50%;
	margin-left: -570px;
	top: 150px;
}

.slider-header .owl-nav .owl-prev,
.slider-header .owl-nav .owl-next {
	display: inline-block;
	width: 27px;
	height: 19px;
	/*overflow: hidden;*/
	text-indent: -99999px;
	background-image: url('../img/sl-nav.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.slider-header .owl-nav .owl-prev {
	background-position: 0 0;
	margin-right: 30px;
}

.slider-header .owl-nav .owl-prev:hover {
	background-position: 0 -19px;
}

.slider-header .owl-nav .owl-prev::after {
	display: inline-block;
	position: absolute;
	content: '/';
	top: -13px;
	right: -22px;
	color: #fff;
	text-indent: 0;
	z-index: 2;
	font-size: 42px;
	line-height: 1;
}

.slider-header .owl-nav .owl-next {
	background-position: -27px 0;
}

.slider-header .owl-nav .owl-next:hover {
	background-position: -27px -19px;
}

.bottom-header {
	background-color: #000;
	padding: 11px 0 10px;
}

.bottom-header .bh-info {
	text-align: right;
}

.bottom-header .bh-info .bh-tel {
	display: inline-block;
	position: relative;
	color: #fff;
	font-family: "CaviarDreams-Bold", sans-serif;
	font-size: 20px;
	margin-left: 36px;
	padding: 2px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.bottom-header .bh-info .bh-tel:hover {
	color: #f24841;
}

.bottom-header .bh-info .bh-tel::before {
	display: inline-block;
	content: '';
	background-image: url('../img/sl-nav.png');
	background-repeat: no-repeat;
	background-position: -27px -19px;
	position: absolute;
	top: 6px;
	left: -35px;
	width: 27px;
	height: 19px;
	overflow: hidden;
}

.mob-bl {
	display: block;
	margin-top: 3px;
}

.mob-bl a {
	color: #fff;
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.mob-bl a:hover {
	color: #f24841;
}

.sect {
	padding: 40px 0 60px;
}

.sect-ttl {
	position: relative;
	padding-left: 38px;
}

.sect-ttl::before {
	position: absolute;
	content: '';
	background-image: url('../img/arrow-down.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	-webkit-background-size: 100%;
	background-size: 100%;
	display: inline-block;
	top: 10px;
	left: 0;
	width: 19px;
	height: 27px;
	overflow: hidden;
}

.box-servs {
	margin-top: 20px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
	flex-wrap: wrap;
		-webkit-align-content: space-between;
	align-content: space-between;
	width: 100%;
}

.box-servs > .serv {
	padding: 45px 10px 35px;
	border: 1px solid #000;
	border-top-width: 2px;
	border-bottom-width: 2px;
	background-color: #fff;
		-webkit-flex: 1 1 120px;
	flex: 1 1 120px;
	-webkit-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.box-servs > .serv.serv-1 {
	border-left-width: 2px;
}

.box-servs > .serv.serv-7 {
	border-right-width: 2px;
}

.serv .serv-ttl {
	color: #000;
	font-weight: 600;
	margin-bottom: 40px;
	line-height: 1.2;
	min-height: 77px;
}

.serv .serv-info {
	color: #777;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}

.serv .serv-info .serv-hover {
	position: absolute;
	display: inline-block;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	background-image: url('../img/serv-ic1.png');
	background-position: center 40px;
	background-repeat: no-repeat;
	-webkit-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.serv.serv-1 .serv-info .serv-hover {
	background-image: url('../img/serv-ic1.png');
}
.serv.serv-2 .serv-info .serv-hover {
	background-image: url('../img/serv-ic2.png');
}
.serv.serv-3 .serv-info .serv-hover {
	background-image: url('../img/serv-ic3.png');
}
.serv.serv-4 .serv-info .serv-hover {
	background-image: url('../img/serv-ic4.png');
}
.serv.serv-5 .serv-info .serv-hover {
	background-image: url('../img/serv-ic5.png');
}
.serv.serv-6 .serv-info .serv-hover {
	background-image: url('../img/serv-ic6.png');
}
.serv.serv-7 .serv-info .serv-hover {
	background-image: url('../img/serv-ic7.png');
}

.serv:hover {
	background-color: #f7f7f7;
}

.serv:hover > .serv-info .serv-hover {
	bottom: -100%;
}

.serv-ul li {
	margin: 10px 0;
}

.serv-bottom {
	margin-top: 25px;
	font-weight: 600;
}

.s-b-ul li {
	position: relative;
	padding: 2px 0 2px 20px;
	margin-bottom: 5px;
}

.s-b-ul li::before {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	background-color: #f24841;
	top: 11px;
	left: 0;
}

.sect-black {
	position: relative;
	background-image: url('../img/about-bg.jpg');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
}

.sect-black,
.sect-black .sect-ttl,
.sect-blue .sect-ttl {
	color: #fff;
}

.about-info {
	margin-top: 20px;
}

.about-circles {
	max-width: 380px;
	width: 100%;
	position: relative;
	margin: 80px auto 20px;
}

.ab-main {
	width: 380px;
	height: 380px;
	overflow: hidden;
	text-align: center;
	border: 2px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0 auto;
	padding: 80px 35px 60px;
	-webkit-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.ab-main:hover {
	/*background-color: #f24841;*/
	background-color: rgba(255,255,255,0.1);
}

.ab-main .a-m-ttl {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	margin: 10px 0 20px;
}

.ab-main .a-m-ul {}
.ab-main .a-m-ul li {
	margin-bottom: 2px;
}

.ab-cir {
	position: absolute;
	background-color: transparent;
	text-align: center;
	border: 2px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0 auto;
	line-height: 1.2;
	-webkit-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
	overflow: hidden;
}

.ab-cir:hover {
	/*background-color: #f24841;*/
	background-color: rgba(255,255,255,0.1);
}

.cir-1 {
	width: 130px;
	height: 130px;
	padding: 32px 20px 20px;
	top: 60px;
	left: -200px;
}

.cir-1,
.cir-2,
.cir-3,
.cir-4,
.cir-5 {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.cir-1.on,
.cir-2.on,
.cir-3.on,
.cir-4.on,
.cir-5.on {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.cir-2 {
	width: 180px;
	height: 180px;
	padding: 45px 15px 30px;
	top: -55px;
	left: -115px;
}

.cir-3 {
	width: 160px;
	height: 160px;
	padding: 51px 15px 35px;
	right: -20px;
	top: -110px;
}

.cir-4 {
	width: 220px;
	height: 220px;
	padding: 75px 16px 50px;
	right: -183px;
	top: -27px;
}

.cir-5 {
	width: 250px;
	height: 250px;
	padding: 85px 20px 60px;
	top: 135px;
	right: -275px;
}

.cir-big {
	font-weight: 600;
	font-size: 24px;
}

.cir-num {
	font-size: 30px;
	font-weight: 600;
}

.clients-sl {
	margin-top: 20px;
	padding: 0 30px;
}

.owl-logos {
	position: relative;
}

.owl-logos .owl-nav {
	position: absolute;
	z-index: 3;
	width: 100%;
	left: 0;
	top: 47%;
}

.owl-logos .owl-nav .owl-prev,
.owl-logos .owl-nav .owl-next {
	display: inline-block;
	width: 27px;
	height: 19px;
	/*overflow: hidden;*/
	text-indent: -99999px;
	background-image: url('../img/part-nav.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.owl-logos .owl-nav .owl-prev {
	background-position: 0 0;
	float: left;
	margin-left: -30px;
}

.owl-logos .owl-nav .owl-prev:hover {
	background-position: 0 -19px;
}

.owl-logos .owl-nav .owl-next {
	background-position: -27px 0;
	float: right;
	margin-right: -30px;
}

.owl-logos .owl-nav .owl-next:hover {
	background-position: -27px -19px;
}

.item-logo {
	margin: 0 10px;
}

.two-img {
	margin: 13px auto;
	width: 100%;
	max-width: 200px;
}

.two-img img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
	-webkit-transition: 0.25s ease;
	-o-transition: 0.25s ease;
	transition: 0.25s ease;
}

.two-img:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: none; /* IE 6-9 */
}

.footer {
	padding: 40px 0 50px;
	position: relative;
	color: #fff;
	background-image: url('../img/about-bg.jpg');
	background-position: bottom center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.foot-conts {}
.foot-conts .foo-ttl {
	line-height: 1.2;
	font-weight: 600;
	font-size: 36px;
	color: #fff;
	padding: 0;
	margin: 10px 0 15px;
}

.foo-ul {
	color: #ccc;
	font-weight: 600;
}

.foo-ul li a {
	color: #ccc;
	display: inline-block;
}

.foo-ul li a:hover,
.foo-ul li.f-tel a:hover {
	color: #f24841;
}

.foo-ul li.f-tel a {
	font-size: 24px;
	color: #fff;
}

.foo-ul li.f-mail a {
	font-size: 20px;
}

.foo-ul li.f-adr {
	margin: 10px 0 20px;
	font-size: 20px;
}

.foo-ul li.f-map a {
	font-size: 14px;
	position: relative;
	padding: 2px 0 2px 20px;
}

.foo-ul li.f-map a::before {
	display: inline-block;
	content: '';
	background-image: url('../img/arrow-right.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	-webkit-background-size: 100%;
	background-size: 100%;
	position: absolute;
	top: 8px;
	left: 0;
	width: 14px;
	height: 10px;
	overflow: hidden;
}

.foot-copy {
	text-align: right;
	color: #ccc;
	font-weight: 600;
	font-size: 14px;
}

.foot-copy p {
	margin-top: 25px;
}

.foo-logo {
	display: inline-block;
	width: 100%;
	max-width: 170px;
	margin-top: 10px;
}

.callback-form {
	color: #777;
	font-weight: 600;
}

.callback-form .cb-title {
	font-size: 24px;
	margin-bottom: 15px;
	display: block;
	text-align: center;
}

.blocks-check {
	text-align: center;
	margin-bottom: 20px;
}

.check-bl {
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #777;
	width: 220px;
	text-align: left;
	height: 48px;
	font-size: 13px;
	margin: 5px;
	vertical-align: top;
}

.check-bl label {
	display: block;
}

.check-bl label input {
	vertical-align: top;
	visibility: hidden;
}

.check-bl input[type="checkbox"] + span::before {
	content: '';
	position: absolute;
	top: 12px;
	left: -18px;
	width: 14px;
	height: 14px;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #777;
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.check-bl input[type="checkbox"]:checked + span::before {
	background-color: #39f;
}

.check-bl input[type="checkbox"]:checked + span {
	color: #555;
}

.che-ttl {
	display: inline-block;
	padding-left: 5px;
	position: relative;
	color: #777;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.che-ttl.ct-pad {
	padding-top: 9px;
}

.inp-block {
	max-width: 500px;
	margin: 0 auto 15px;
}

.inp-block input {
	width: 100%;
	font-size: 15px;
	padding: 4px 0;
	border: none;
	border-bottom: 1px solid #777;
	color: #555;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	box-shadow: none !important;
	outline: none;
}

.inp-block input:focus {
	border-color: #555;
}

.inp-last {
	text-align: center;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}

.success {
	position: absolute;
	display: block;
	text-align: center;
	background-color: #fff;
	bottom: -100%;
	left: 0;
	width: 100%;
	color: #555;
	font-size: 15px;
	padding: 14px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.success.viz {
	bottom: 0;
}

#clients.sect {
	padding-bottom: 50px;
}

.sect-blue {
	background-color: #0e8bb5;
}

.sertif-info {
	text-align: center;
	padding-top: 10px;
}

.sertif-bl {
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	margin: 10px 20px 10px;
	/*max-height: 150px;*/
}

.sertif-bl img {
	/*height: 150px;
	width: auto;*/
	max-width: 98%;
}

/*----DOP CSS----*/

/*--------POPUP----------*/

#pop_callback {
	background: white;
	padding: 30px 20px;
	max-width: 740px;
	margin: 25px auto;
	position: relative;
}

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 

	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 

	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}