﻿html,
body {
	height: 100%;

	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #20509e;
	margin: 0;
	font-weight: 500;
	font-family: 'Raleway', sans-serif !important;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 14px;
}

p {
	font-size: 15.7px;
	color: #75849a;
	line-height: 1.6;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------Helper CSS-----------------------*/
.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	margin-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

#toTop {
 /*width:100px;
 border:1px solid #ccc;
 background:#f7f7f7; */
 text-align:center;
 padding:5px;
 position:fixed;
 bottom:50px; /* отступ кнопки от нижнего края страницы*/
 right:10px;
 cursor:pointer;
 display:none;
 color:#333;
 font-family:verdana;
 font-size:11px;
}

 .exit-intent-popup {
     position: fixed;
     top: 0;
     left: 0;
     bottom: 0;
     right: 0;
     z-index: 1;
     background: rgba(33, 33, 33, 0.8);
   transform: translateY(60%) scale(0);
 }

.exit-intent-popup.visible {
     transform: translateY(0) scale(1);
}


/*---------------------Commom elements-----------------------*/
/* Buttons */
.site-btn {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 50px;
	font-family: 'Raleway', sans-serif;
	min-width: 170px;
	text-align: center;
	border: 2px solid #7ad4cc;
	cursor: pointer;
	color: #fff;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.no-radius {
	border-radius: 2px;
}

.site-btn.sb-full-- {
	display: block;
	width: 100%;
	border-radius: 0;
}

.site-btn.sb-gradients {
	padding: 17px 32px;
	border: none;
	color: #fff;
}

.site-btn.sb-gradients.sbg-line {
	color: #20509e;
	z-index: 1;
}

.site-btn.sb-gradients.sbg-line:after {
	position: absolute;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background: #fff;
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 50px;
}

.site-btn.sb-gradients.sbg-line:hover {
	color: #20509e;
}

.gradient-bg,
.site-btn.sb-gradients,
.member-social a:hover,
.single-blog-page .social-share a:hover,
.comment .comment-content .c-btn:hover,
.comment-form label {
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -webkit-gradient(linear, left top, right top, from(#3e2bce), color-stop(100%, #2dd3aa), color-stop(100%, #2dd3aa), to(#2dd3aa));
	background: -o-linear-gradient(left, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e2bce', endColorstr='#2dd3aa', GradientType=1);
	/* IE6-9 */
}

/* Image Popup */
.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* Preloder */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------Hero Section-----------------------*/
.hero-section {
	height: 780px;
	padding-top: 100px;
	display: block;
	background-image: url("../img/hero-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.hero-section .laptop-image {
	width: 685px;
	max-width: none;
	position: relative;
	left: 80px;
}

.hero-text h2 {
	font-size: 70px;
	margin-bottom: 35px;
}

.hero-text h2 span {
	color: #16d0c5;
}

.hero-text h4 {
	color: #75849a;
	font-size: 22px;
}

.hero-subscribe-from {
	margin-top: 50px;
	display: block;
}

.hero-subscribe-from input {
	width: 315px;
	border: 1px solid #ebebeb;
	background: #fff;
	height: 48px;
	padding: 0 25px;
	border-radius: 50px;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	margin-right: 8px;
	margin-bottom: 20px;
}

/*---------------------About Section-----------------------*/
.about-section .container {
	position: relative;
}

.about-text h2 {
	font-size: 48px;
	margin-bottom: 25px;
}

.about-text h5 {
	font-family: 'Raleway', sans-serif;
	margin-bottom: 20px;
}

.about-text p {
	font-size: 18px;
}

.about-img {
	position: absolute;
	top: 0;
	left: -120px;
	width: 662px;
}

/*---------------------Feature Section-----------------------*/
.features-section .container {
	margin-bottom: -45px;
}

.feature {
	margin-bottom: 45px;
}

.feature i {
	font-size: 48px;
	float: left;
	padding-top: 10px;
}

.feature .feature-content {
	padding-left: 70px;
}

.feature .feature-content h4 {
	margin-bottom: 15px;
}

.feature .readmore {
	text-decoration: underline;
	line-height: 1.2;
}

/*---------------------Process Section-----------------------*/
.process:last-child .process-step:after {
	display: none;
}

.process-step {
	position: relative;
	text-align: center;
	padding: 35px;
	margin-top: 30px;
	-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
}

.process-step .process-icon {
	height: 55px;
	margin-bottom: 30px;
	padding-top: 5px;
}

.process-step h4 {
	margin-bottom: 15px;
}

.process-step p {
	margin-bottom: 0;
}

.process-step:after {
	position: absolute;
	content: '';
	width: 275px;
	height: 56px;
	top: -40px;
	right: -40%;
	background: url("../img/process-line.png") no-repeat scroll 0 0/cover;
}

/*---------------------Fact Section-----------------------*/
.fact-section {
	padding: 100px 0;
}

.fact {
	display: inline-block;
	position: relative;
}

.fact h2 {
	float: left;
	color: #16d0c5;
	font-size: 60px;
	margin-right: 20px;
}

.fact p {
	float: left;
	padding-top: 14px;
	line-height: 1.4;
	color: #fff;
	text-transform: uppercase;
}

.fact i {
	position: absolute;
	right: -20px;
	top: -10px;
	font-size: 90px;
	color: #fff;
	z-index: 0;
	opacity: 0.1;
}

/*---------------------Team Section-----------------------*/
.team-section {
	background: #f3f7f9;
	overflow: hidden;
}

.team-members {
	margin: 0 -10px;
}

.member {
	background: #fff;
	width: calc(20% - 25px);
	display: inline-block;
	margin: 0 10px;
	text-align: center;
	padding: 50px 10px;
	-webkit-box-shadow: 1px 1px 1px rgba(33, 54, 61, 0.15);
	box-shadow: 1px 1px 1px rgba(33, 54, 61, 0.15);
	border-radius: 10px;
	position: relative;
}

.member h2 {
	font-size: 22px;
	margin-bottom: 5px;
}

.member span {
	font-size: 14px;
	color: #75849a;
	display: block;
}

.member .member-text {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 1;
}

.member:hover {
	-webkit-box-shadow: 1px 14px 43px rgba(33, 54, 61, 0.15);
	box-shadow: 1px 14px 43px rgba(33, 54, 61, 0.15);
}

.member:hover .member-info {
	opacity: 1;
}

.member:hover .member-text {
	opacity: 0;
}

.member-img {
	width: 230px;
	height: 230px;
	display: inline-block;
	border-radius: 50%;
	margin-bottom: 25px;
}

.member-social {
	padding-top: 25px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.member-social a {
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 50%;
	background: #cbd3df;
	color: #fff;
	padding-top: 13px;
	margin: 0 8px;
}

.member-meta {
	padding-left: 85px;
}

.member-info {
	padding: 50px 60px 10px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	text-align: left;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	height: 380px;
	overflow-y: auto;
}

.member-info p {
	display: block;
	padding-top: 25px;
	margin-bottom: 0;
}

.member-img.mf {
	width: 60px;
	height: 60px;
	opacity: 1;
	float: left;
	margin-bottom: 0;
}

/*---------------------Review Section-----------------------*/
.review-meta-slider {
	position: relative;
	width: 300px;
}

.author-meta {
	padding: 50px 0 70px;
	position: relative;
	text-align: center;
}

.author-meta:last-child {
	margin-right: 0;
}

.author-avatar {
	width: 80px;
	height: 80px;
	border: 6px solid #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	display: inline-block;
}

.author-avatar h4 {
	font-size: 22px;
}

.author-avatar p {
	font-size: 14px;
}

.author-name {
	position: absolute;
	width: 280px;
	left: -50%;
	bottom: -10px;
	margin-left: -50px;
	text-align: center;
	visibility: hidden;
}

.center .author-meta {
	top: -6px;
}

.center .author-name {
	visibility: visible;
}

.center .author-avatar {
	width: 100px;
	height: 100px;
}

.review-text p {
	font-size: 22px;
}

.review-text-slider .owl-nav {
	padding-top: 15px;
}

.review-text-slider .owl-prev,
.review-text-slider .owl-next {
	width: 50px;
	height: 50px;
	display: inline-block;
	background: #cbd3df;
	color: #fff;
	font-size: 24px;
	text-align: center;
	margin-right: 10px;
	border-radius: 50%;
	padding-top: 8px;
}

.pull-3 {
	right: 66.666667%;
}

.push-8 {
	left: 33.333333%;
}

/*---------------------Newsletter Section-----------------------*/
.newsletter-section {
	padding: 50px 0;
}

.newsletter-text h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.newsletter-text p {
	margin-bottom: 0;
}

.newsletter-form,
.popup-form {
	position: relative;
	margin-top: 20px;
	padding-left: 40px;
}

.newsletter-form input,
.popup-form input {
	width: 100%;
	font-size: 16px;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	padding-right: 160px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: none;
	border-radius: 0px 50px 50px 0px;
	min-width: 140px;
	background: #fff;
	color: #20509e;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.newsletter-form ::-webkit-input-placeholder {
	color: #fff;
}

.newsletter-form :-ms-input-placeholder {
	color: #fff;
}

.newsletter-form ::-ms-input-placeholder {
	color: #fff;
}

.newsletter-form ::placeholder {
	color: #fff;
}

/*---------------------Blog Section-----------------------*/
.blog-section {
	background: #f3f7f9;
}

.blog-thumb {
	margin-bottom: 0;
}

.blog-text {
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
	box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.blog-text .post-date {
	font-size: 10px;
	font-family: 'Raleway', sans-serif;
	color: #16d0c5;
	text-transform: uppercase;
	margin-bottom: 30px;
	display: block;
	letter-spacing: 2px;
}

.blog-text .blog-title {
	font-size: 22px;
	margin-bottom: 20px;
}

.blog-text .blog-title a {
    font-size: 22px;    
	color: #20509e;
}

.blog-text .post-meta a {
	font-size: 13px;
	color: #75849a;
	margin-right: 25px;
}

.blog-text .post-meta a:last-child {
	margin-right: 0;
}

.blog-text .post-meta a span {
	color: #cbd3df;
}

.blog-text .post-meta a i {
	color: #16d0c5;
}

.post-loadmore {
	width: 100%;
	border-radius: 0px;
}

.post-loadmore.site-btn.sb-gradients.sbg-line:after {
	border-radius: 0px;
}

/*---------------------Footer Section-----------------------*/
.footer-widget span {
	color: #acb9cc;
}

.footer-widget p {
	margin-bottom: 20px;
}

.footer-widget .widget-title {
	margin-bottom: 30px;
        margin-top: 30px;
	font-size: 20px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul a {
	font-size: 16px;
	color: #75849a;
	display: block;
	margin-bottom: 12px;
}

.footer-widget ul li:last-child a {
	margin-bottom: 0;
}

.social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	padding-top: 7px;
	font-size: 18px;
}

.social a:last-child {
	margin-right: 0;
}

.social .facebook {
	background: #4b6cd0;
}

.social .google {
	background: #f03b3b;
}

.social .instagram {
	background: #bb8950;
}

.social .twitter {
	background: #49a7f3;
}

.footer-bottom {
	border-top: 1px solid #ebebeb;
	padding: 30px 0;
}

.footer-nav {
	list-style: none;
}

.footer-nav li {
	display: inline-block;
}

.footer-nav li a {
	color: #75849a;
	font-size: 14px;
	margin-left: 20px;
}

/*---------------------Other Pages----------------------======================*/
.page-info-section {
	height: 300px;
	background-image: url("../img/page-info-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: block;
	padding-top: 100px;
}

.page-info-section h2 {
	font-size: 48px;
}

.site-beradcamb {
	padding-top: 10px;
}

.site-beradcamb a {
	color: #20509e;
	font-size: 16px;
}

.site-beradcamb span {
	color: #acb9cc;
	font-size: 16px;
}

.site-beradcamb i {
	margin: 0 3px;
}

/*---------------------Blog page-----------------------*/
.blog-page .blog-item {
	margin-bottom: 30px;
}

.blog-page .readmore {
	color: #20509e;
}

.blog-page .readmore i {
	color: #16d0c5;
}

.bi-feature .post-meta {
	margin-bottom: 1px;
}

.bi-feature .blog-text .blog-title {
	font-size: 36px;
}

.widget-area {
	padding: 30px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	margin-bottom: 32px;
}

.widget-area .widget-title {
	margin-bottom: 25px;
}

.widget-area .widget {
	margin-bottom: 20px;
}

.widget-area .widget .widget-title {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ebebeb;
	line-height: 24px;
}

.widget-area .widget ul {
	list-style: none;
}

.widget-area .widget ul a {
	display: inline-block;
	font-size: 16px;
	color: #20509e;
	margin-bottom: 20px;
}

.widget-area .widget ul a:hover {
	color: #16d0c5;
}

.widget-area .widget .popular-posts span {
	color: #16d0c5;
	font-size: 12px;
	display: block;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.widget-area .widget .popular-posts h5 a {
	font-size: 18px;
	color: #20509e;
}

.widget-area .widget .popular-posts h5 a:hover {
	color: #20509e;
}

.widget-area .widget .twitter-widget li {
	margin-bottom: 20px;
}

.widget-area .widget .twitter-widget span {
	color: #16d0c5;
	font-size: 12px;
	display: block;
	text-transform: uppercase;
}

.widget-area .widget .twitter-widget h5 {
	font-size: 18px;
	color: #20509e;
	margin-bottom: 5px;
}

.widget-area .widget .twitter-widget a {
	font-size: 18px;
	color: #1f6ae5;
	display: block;
	margin-bottom: 5px;
}

.widget-area .widget .twitter-widget a:hover {
	color: #1f6ae5;
}

.widget-area .widget-subscribe-from {
	padding-top: 10px;
	display: block;
}

.widget-area .widget-subscribe-from input {
	margin-right: 0;
	margin-bottom: 20px;
	width: 100%;
	background: #f3f7f9;
	border: 1px solid #ebebeb;
	padding: 15px 20px;
	font-size: 14px;
}

.single-blog-page blockquote {
	font-size: 24px;
	color: #20509e;
	padding-left: 25px;
	border-left: 2px solid #16d0c5;
	line-height: normal;
	margin: 40px 0;
	display: block;
}

.single-blog-page blockquote span {
	display: block;
	font-size: 16px;
	color: #16d0c5;
	padding-top: 10px;
}

.single-blog-page .post-tags a {
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	padding: 6px 15px;
	margin-right: 2px;
	margin-top: 5px;
	color: #75849a;
	background: #f3f7f9;
	border: 1px solid #ebebeb;
	margin-right: 5px;
}

.single-blog-page .social-share {
	display: block;
	text-align: right;
}

.single-blog-page .social-share p {
	display: inline-block;
	font-size: 14px;
	margin-right: 10px;
	color: #595959;
}

.single-blog-page .social-share a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 8px;
	text-align: center;
	border-radius: 40px;
	background: #f3f7f9;
	color: #75849a;
	padding-top: 9px;
	font-size: 14px;
	-webkit-box-shadow: 0 0 0 1px #ebebeb;
	box-shadow: 0 0 0 1px #ebebeb;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.single-blog-page .social-share a:hover {
	color: #fff;
}

.releted-posts {
	padding-top: 50px;
	margin-top: 25px;
	border-top: 1px solid #ebebeb;
}

.releted-posts .blog-item {
	padding-top: 25px;
}

.releted-posts .blog-text {
	-webkit-box-shadow: 0 0 0 1px #ebebeb;
	box-shadow: 0 0 0 1px #ebebeb;
	padding: 28px 28px 20px;
}

.releted-posts .blog-text .blog-title {
	font-size: 22px;
}

.releted-posts .post-meta {
	margin-bottom: 0;
}

.comment-area {
	padding-top: 50px;
}

.comment-list {
	padding-top: 40px;
	margin-top: 25px;
	border-top: 1px solid #ebebeb;
	list-style: none;
}

.comment-list .replay-comment-list {
	list-style: none;
	margin-left: 14%;
}

.comment {
	margin-bottom: 40px;
}

.comment .comment-avator {
	float: left;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

.comment .comment-content {
	padding-left: 100px;
}

.comment .comment-content h5 {
	font-size: 18px;
	margin-bottom: 10px;
}

.comment .comment-content h5 span {
	font-size: 12px;
	color: #acb9cc;
	font-family: 'Raleway', sans-serif;
}

.comment .comment-content p {
	margin-bottom: 0;
}

.comment .comment-content .c-btn {
	font-family: 'Raleway', sans-serif;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #ebebeb;
	background: #f3f7f9;
	color: #20509e;
	padding: 4px 25px;
	border-radius: 2px;
	margin-right: 5px;
	margin-top: 20px;
}

.comment .comment-content .c-btn:hover {
	color: #fff;
}

.comment-form .form-group {
	position: relative;
	padding: 1px;
	margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 11px 20px;
	border: none;
	border: 1px solid #e5e5e5;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: transparent;
}

.comment-form input:focus+label,
.comment-form textarea:focus+label {
	opacity: 1;
}

.comment-form label {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: block;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comment-form textarea {
	height: 115px;
	display: -ms-grid;
	display: grid;
}

/*---------------------Contact page-----------------------*/
.contact-form {
	padding-right: 35px;
}

.contact-form h5 {
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
}

.contact-form h5 span {
	color: #16d0c5;
}

.contact-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.contact-form .form-group span {
	position: absolute;
	right: 0;
	top: 10px;
	font-size: 16px;
	color: #7bc063;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-form .form-group span.active {
	opacity: 1;
}

.contact-form .check-form {
	padding-right: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid #ebebeb;
	font-size: 16px;
	padding-bottom: 10px;
	color: #20509e;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #20509e;
}

.contact-form textarea {
	padding-bottom: 10px;
	padding-top: 10px;
	height: 115px;
}

.contact-form .contact-type .ct-label {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	margin-right: 40px;
	cursor: pointer;
	font-size: 16px;
	color: #acb9cc;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contact-form .contact-type .ct-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.contact-form .contact-type .ct-label input:checked~.checkmark:after {
	content: '\f111';
	color: #16d0c5;
}

.contact-form .contact-type .ct-label .checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 25px;
	width: 25px;
}

.contact-form .contact-type .ct-label .checkmark:after {
	position: absolute;
	content: "\f10c";
	font-family: 'FontAwesome';
	font-size: 14px;
}

.contact-form .contact-type .ct-label:last-child {
	margin-right: 0;
}

.contact-form ::-webkit-input-placeholder {
	color: #acb9cc;
}

.contact-form :-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::placeholder {
	color: #acb9cc;
}

.map {
	height: 390px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
}

/* Pricing */
section.pricing {
	background: #007bff;
	background: linear-gradient(to right, #0062E6, #33AEFF);
}

.pricing .card {
	border: none;
	border-radius: 1rem;
	transition: all 0.2s;
	box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.startup__cost,
.business__cost,
.growing__cost {
	font-size: 43px
}

.site-btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 50px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	transition: all 2s ease;
}

.site-btn:hover:before {
	width: 100%;
}

.feature-content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	transition: all 1s ease;
}

.feature-content:hover:before {
	height: 100%;
}

.pricing hr {
	margin: 1.5rem 0;
}

.pricing .card-title {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	letter-spacing: .1rem;
	font-weight: bold;
}

.pricing .card-price {
	font-size: 3rem;
	margin: 0;
}

.pricing .card-price .period {
	font-size: 0.8rem;
}

.pricing ul li {
	margin-bottom: 1rem;
}

.pricing .text-muted {
	opacity: 0.7;
}

.pricing .btn {
	font-size: 80%;
	border-radius: 5rem;
	letter-spacing: .1rem;
	font-weight: bold;
	padding: 1rem;
	opacity: 0.7;
	transition: all 0.2s;
}

.blobs-bg {
	height: 100vh;
	background-image: url(../img/back_search.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
	.pricing .card:hover {
		margin-top: -.25rem;
		margin-bottom: .25rem;
		box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
	}

	.pricing .card:hover .btn {
		opacity: 1;
	}
}

.site-btn a {
	color: #fff !important;
}

/*------------------Responsive---------------------*/
@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media (min-width: 990px) {
	.review-btn {
		margin-left: 60px;
	}
}

@media (max-width: 1585px) {
	.hero-section .laptop-image {
		left: 0;
	}
}

@media (max-width: 1425px) {
	.header-section .site-btn {
		margin-left: 0;
	}

	.hero-section,
	.page-info-section {
		background-position: right 30% top;
	}

	.hero-section .laptop-image {
		width: auto;
		max-width: 100%;
		top: 70px;
	}

	.about-img {
		left: -50px;
		width: 600px;
	}
}

@media (min-width: 1199px) and (max-width: 1390px) {
	.member {
		padding: 35px 10px;
	}

	.member-img {
		width: 160px;
		height: 160px;
	}

	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}

	.member-social a {
		margin: 0 5px;
	}
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.menu-list li a {
		margin-right: 15px;
	}

	.hero-section,
	.page-info-section {
		background-position: right 23% top;
	}

	.about-img {
		left: 0px;
		width: 480px;
	}

	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
	}

	.team-members {
		text-align: center;
	}

	.fact h2 {
		font-size: 45px;
		margin-right: 10px;
	}

	.fact p {
		padding-top: 7px;
	}

	.fact i {
		font-size: 67px;
	}
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-section {
		padding: 30px 15px 0;
	}

	.menu-list li a {
		margin-right: 6px;
	}

	.header-section .site-btn {
		margin-left: 10px;
	}

	.hero-section {
		background-position: right 25% top;
		height: 730px;
		padding-top: 160px;
	}

	.page-info-section {
		background-position: right 33% top;
	}

	.page-info-section h2 {
		font-size: 40px;
	}

	.hero-text h2 {
		font-size: 45px;
	}

	.process-step:after {
		width: 154px;
		height: 35px;
		top: -10px;
		right: -44%;
		background-size: contain;
	}

	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
	}

	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
		padding: 35px 10px;
	}

	.member-img {
		width: 160px;
		height: 160px;
	}

	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}

	.member-social a {
		margin: 0 5px;
	}

	.team-members {
		text-align: center;
	}

	.fact {
		margin-bottom: 30px;
	}

	.pull-3 {
		right: 0;
	}

	.push-8 {
		left: 0;
	}

	.review-section {
		text-align: center;
	}

	.review-text {
		padding: 0 60px;
	}

	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}

	.review-text-slider .owl-prev {
		float: left;
	}

	.review-text-slider .owl-next {
		float: right;
	}

	.review-meta-slider {
		margin: auto;
	}

	.author-meta {
		padding-top: 0;
	}

	.newsletter-form {
		padding-left: 0;
	}

	.footer-widget {
		margin-bottom: 30px;
	}

	.newsletter-section {
		text-align: center;
	}
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
	.header-section {
		padding: 30px 0;
		background: #fff;
	}

	.header-section .responsive-bar {
		float: right;
		font-size: 25px;
		display: block;
		cursor: pointer;
	}

	.header-section .user {
		float: right;
		font-size: 25px;
		color: #333;
		margin-right: 20px;
		display: block;
	}

	.main-menu {
		float: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;
		background: #fff;
		padding: 0 15px;
		display: none;
		-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
		box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	}

	.menu-list {
		list-style: none;
	}

	.menu-list li {
		display: block;
		border-top: 1px solid #e1e1e1;
	}

	.menu-list li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #20509e;
	}

	.hero-text h2 {
		font-size: 40px;
	}

	.hero-section {
		height: auto;
		padding-bottom: 100px;
		padding-top: 160px;
		background-position: right 50% top;
	}

	.page-info-section {
		background-position: right 56% top;
		margin-top: 97px;
	}

	.page-info-section h2 {
		font-size: 40px;
	}

	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
	}

	.team-members {
		margin: 0;
		padding: 0 15px;
	}

	.member {
		width: 100%;
		margin-bottom: 30px;
		margin-left: 0;
	}

	.fact {
		margin-bottom: 30px;
	}

	.process-step:after {
		display: none;
	}

	.pull-3 {
		right: 0;
	}

	.push-8 {
		left: 0;
	}

	.review-section {
		text-align: center;
	}

	.review-text {
		padding: 0 60px;
	}

	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}

	.review-text-slider .owl-prev {
		float: left;
	}

	.review-text-slider .owl-next {
		float: right;
	}

	.review-meta-slider {
		margin: auto;
	}

	.author-meta {
		padding-top: 0;
	}

	.header-section .site-btn {
		display: none;
	}

	.newsletter-form {
		padding-left: 0;
	}

	.newsletter-section {
		text-align: center;
	}

	.review-text p {
		font-size: 20px;
	}

	.blog-item {
		margin-bottom: 30px;
	}

	.footer-widget {
		margin-bottom: 30px;
	}

	.single-blog-page .social-share {
		text-align: left;
		margin-top: 20px;
	}
}

/* small Mobile :320px. */
@media only screen and (max-width: 479px) {
	.review-text {
		padding: 0 45px;
	}

	.review-text p {
		font-size: 18px;
	}

	.newsletter-form input {
		padding-right: 30px;
	}

	.newsletter-form button {
		position: relative;
		padding: 14px;
		border-radius: 50px;
		margin-top: 23px;
	}

	.review-text-slider .owl-prev,
	.review-text-slider .owl-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.review-meta-slider {
		width: auto;
	}

	.member-img {
		width: 180px;
		height: 180px;
	}

	.member-info {
		padding: 50px 20px 10px;
		height: 320px;
	}

	.blog-text {
		padding: 15px;
	}

	.comment .comment-avator {
		float: none;
		margin-bottom: 20px;
	}

	.comment .comment-content {
		padding-left: 0;
	}
}

@media all {
	::-webkit-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	::-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-ms-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	b {
		font-weight: 600;
	}

	.wrapper {
		width: 1170px;
		margin: 0 auto;
	}

	@media (max-width:1250px) {
		.wrapper {
			width: 90%;
		}
	}

	button:focus {
		outline: 0;
	}

	.btn {
		display: table;
		background: #06f;
		margin: 50px auto;
		border: none;
		border-radius: 4px;
		color: #fff;
		font-size: 14px;
		line-height: 14px;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
		padding: 17px 30px 15px 30px;
		box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
		background-position: center;
		transition: background .8s;
	}

	.btn:focus {
		outline: 0;
		color: #fff;
		box-shadow: none;
	}

	.btn:hover {
		outline: 0;
		color: #fff;
		background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
	}

	.btn:active {
		outline: 0;
		color: #fff;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		background-color: #6eb9f7;
		background-size: 100%;
		transition: background 0s;
	}

	.tooltip {
		position: absolute;
		z-index: -1;
		font-size: 11px;
		line-height: 14px;
		color: #5b5e6d;
		text-align: center;
		background: #fff;
		box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
		-webkit-transform: scale(.9);
		transform: scale(.9);
		opacity: 0;
		right: 0;
		-webkit-transition: opacity .3s ease 0s, transform .3s ease 0s, -webkit-transform .3s cubic-bezier(.6, .2, .1, 1) 0s, opacity .3s cubic-bezier(.6, .2, .1, 1) 0s;
		transition: opacity .3s ease 0s, transform .3s ease 0s, -webkit-transform .3s cubic-bezier(.6, .2, .1, 1) 0s, opacity .3s cubic-bezier(.6, .2, .1, 1) 0s;
		position: absolute;
		font-style: normal;
		font-weight: 400;
		letter-spacing: normal;
		word-break: normal;
		word-spacing: normal;
		white-space: normal;
		line-break: auto;
		word-wrap: break-word;
	}

	.tooltip::after {
		content: "";
		position: absolute;
		right: 5px;
		bottom: -4px;
		width: 0;
		height: 0;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
	}

	.pricing__period {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 60px;
	}

	@media (max-width:640px) {
		.pricing__period {
			flex-direction: column;
			margin-bottom: 20px;
		}
	}

	.pricing__period button {
		font-size: 12px;
		font-weight: 500;
		color: #898b94;
		background: #fff;
		border: none;
		padding: 10px;
		border-right: 1px solid #e8eaf1;
		border-bottom: 2px solid transparent;
		width: 155px;
		cursor: pointer;
		transition: .2s;
	}

	@media (max-width:640px) {
		.pricing__period button {
			margin-bottom: 10px;
			border-radius: 4px;
			border: 1px solid #e8eaf1;
		}
	}

	.pricing__period button.active,
	.pricing__period button:hover {
		border-bottom-color: #0065ff;
		color: #212529;
		box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	}

	.pricing__period button:first-of-type {
		border-radius: 4px 0 0 4px;
	}

	@media (max-width:640px) {
		.pricing__period button:first-of-type {
			border-radius: 4px;
		}
	}

	.pricing__period button:last-of-type {
		border-radius: 0 4px 4px 0;
		border-right: 0;
	}

	@media (max-width:640px) {
		.pricing__period button:last-of-type {
			border-radius: 4px;
		}
	}

	.pricing__period button span {
		background: #e8e8ea;
		padding: 2px 5px;
		border-radius: 2px;
		margin-left: 4px;
	}

	.all_plans-title {
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		margin: 0 auto 31px auto;
		text-align: center;
	}

	.all_plans-blocks {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	.all_plans-block {
		background: #fff;
		border-radius: 4px;
		width: 20%;
		min-width: 200px;
		height: 150px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		margin: 0 10px 20px 10px;
		position: relative;
	}

	.all_plans-block .tooltip {
		background: #192a3e;
		color: rgba(255, 255, 255, .7);
		bottom: 0;
		right: 50%;
		transform: translateX(50%) translateY(100%);
		width: 180px;
		font-weight: 500;
		padding: 5px;
		border-radius: 6px;
		transition: all .2s ease-in-out;
	}

	@media (max-width:768px) {
		.all_plans-block .tooltip {
			display: none;
		}
	}

	.all_plans-block .tooltip::after {
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 8px 0;
		border-color: transparent #192a3e transparent transparent;
		left: 50%;
		top: 0;
		transform: translate(-50%, -70%) rotateZ(90deg);
	}

	.all_plans-block:hover .tooltip {
		z-index: 1;
		opacity: 1;
		bottom: 17%;
	}

	@media (max-width:768px) {
		.all_plans-block {
			width: 200px;
		}
	}

	@media (max-width:640px) {
		.all_plans-block {
			margin: 0 auto 20px auto;
			width: 47%;
			min-width: auto;
			height: 100px;
			font-size: 12px;
			line-height: 18px;
		}
	}

	.checkout__design {
		background: #f7f8fc;
		padding: 70px 0 0 0;
	}

	.checkout__design h1 {
		font-weight: 600;
		font-size: 42px;
		color: #000;
		text-align: center;
		margin: 0 auto 50px auto;
	}

	@media (max-width:640px) {
		.checkout__design h1 {
			font-size: 34px;
		}
	}

	.checkout__design-pricing {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		margin-bottom: 35px;
	}

	@media (max-width:640px) {
		.checkout__design-pricing {
			flex-wrap: wrap;
		}
	}

	.pricing__block {
		width: 301px;
		border-radius: 4px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
		background: #fff;
		background: -moz-linear-gradient(top, #fff 0, #fff 53%, #f9fafd 53%, #f9fafd 100%);
		background: -webkit-linear-gradient(top, #fff 0, #fff 53%, #f9fafd 53%, #f9fafd 100%);
		background: linear-gradient(to bottom, #fff 0, #fff 53%, #f9fafd 53%, #f9fafd 100%);
		padding: 39px 30px 40px 30px;
		font-size: 12px;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	@media (max-width:885px) {
		.pricing__block {
			width: 33%;
			padding: 39px 20px 50px 20px;
		}
	}

	@media (max-width:640px) {
		.pricing__block {
			width: 301px;
		}
	}

	.pricing__block .level__name {
		font-weight: 600;
		font-size: 16px;
		color: #000;
		margin-bottom: 15px;
	}

	.pricing__block .level__cost i {
		font-style: normal;
	}

	.pricing__block .level__cost span {
		font-size: 22px;
	}

	.pricing__block .level__month {
		font-size: 11px;
		color: #334d6e;
		margin: 20px 0 0 2px;
	}

	.pricing__block .level__cost-block {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
		position: relative;
	}

	.pricing__block .btn {
		margin: 0 auto 35px auto;
		font-weight: 600;
		font-size: 14px;
		letter-spacing: .01em;
		text-transform: none;
		width: 160px;
		height: 42px;
		padding: 0;
	}

	.pricing__block .level__descriptions p {
		margin-bottom: 15px;
	}

	.pricing__block .level__descriptions p:last-of-type {
		margin-bottom: 0;
	}

	.pricing__block .level__descriptions p b {
		text-transform: capitalize;
	}

	.pricing__block:nth-child(2) {
		margin: 0 28px;
		position: relative;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.pricing__block:nth-child(2) .most__popular {
		position: absolute;
		width: 100%;
		top: -25px;
		padding: 5px;
		text-align: center;
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
		background: #2fd479;
		color: #fff;
		font-weight: 500;
		font-size: 10px;
	}

	.pricing__block:nth-child(2) .btn {
		background: #2fd479;
		box-shadow: 0 3px 1px -2px rgba(47, 212, 121, .2), 0 2px 2px 0 rgba(47, 212, 121, .14), 0 1px 5px 0 rgba(47, 212, 121, .12);
		transition: .2s;
	}

	.pricing__block:nth-child(2) .btn:hover {
		background: #0bc85f radial-gradient(circle, transparent 1%, #0bc85f 1%) center/15000%;
		box-shadow: 0 3px 1px -2px rgba(11, 200, 95, .2), 0 2px 2px 0 rgba(11, 200, 95, .14), 0 1px 5px 0 rgba(11, 200, 95, .12);
	}

	@media (max-width:885px) {
		.pricing__block:nth-child(2) {
			margin: 0 20px;
		}
	}

	@media (max-width:640px) {
		.pricing__block:nth-child(2) {
			margin: 50px 0 23px 0;
		}
	}

	.full__price {
		display: none;
		font-weight: 500;
		margin: 0;
		position: absolute;
		bottom: -18px;
		width: 200px;
		text-align: center;
		font-size: 11px;
		color: #334d6e;
	}

	.discount__price {
		display: none;
		font-weight: 500;
		color: #2fd478;
		margin: 0;
		position: absolute;
		bottom: -35px;
		width: 200px;
		text-align: center;
		font-size: 11px;
	}

	.all_plans-text {
		text-align: center;
		font-size: 14px;
		font-weight: 500;
		line-height: 22px;
		margin: 30px auto 40px auto;
	}

	.all_plans-cashback {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 40px;
	}

	.all_plans-cashback .title {
		text-align: center;
		font-size: 17px;
		font-weight: 500;
		line-height: 22px;
		margin: 20px auto 10px auto;
	}

	.all_plans-cashback .description {
		text-align: center;
		font-size: 14px;
		line-height: 22px;
		margin: 0 auto 20px auto;
	}

	.all_plans-cashback .images img:nth-child(2) {
		margin: 0 10px;
	}


}

@media all {



	h1 {
		margin-top: 0;
		margin-bottom: .5rem;
	}

	p {
		margin-top: 0;
		margin-bottom: 1rem;
	}

	b {
		font-weight: bolder;
	}

	img {
		vertical-align: middle;
		border-style: none;
	}

	button {
		border-radius: 0;
	}

	button:focus {
		outline: 1px dotted;
		outline: 5px auto -webkit-focus-ring-color;
	}

	button,
	input {
		margin: 0;
		font-size: inherit;
		line-height: inherit;
	}

	button,
	input {
		overflow: visible;
	}

	button {
		text-transform: none;
	}

	[type=submit],
	button,
	html [type=button] {
		-webkit-appearance: button;
	}

	[type=button]::-moz-focus-inner,
	[type=submit]::-moz-focus-inner,
	button::-moz-focus-inner {
		padding: 0;
		border-style: none;
	}

	h1 {
		margin-bottom: .5rem;
		font-weight: 500;
		line-height: 1.2;
		color: inherit;
	}

	h1 {
		font-size: 2.5rem;
	}

	.btn {
		display: inline-block;
		font-weight: 400;
		text-align: center;
		white-space: nowrap;
		vertical-align: middle;
		user-select: none;
		border: 1px solid transparent;
		padding: .375rem .75rem;
		font-size: 1rem;
		line-height: 1.5;
		border-radius: .25rem;
		transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	}

	@media (max-width:1250px) {
		.wrapper {
			width: 90%;
		}
	}

	button:focus {
		outline: 0;
	}

	.btn {
		display: table;
		background: #06f;
		margin: 50px auto;
		border: none;
		border-radius: 4px;
		color: #fff;
		font-size: 14px;
		line-height: 14px;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
		padding: 17px 30px 15px 30px;
		box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
		background-position: center;
		transition: background .8s;
	}

	.btn:focus {
		outline: 0;
		color: #fff;
		box-shadow: none;
	}

	.btn:hover {
		outline: 0;
		color: #fff;
		background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
	}

	.btn:active {
		outline: 0;
		color: #fff;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		background-color: #6eb9f7;
		background-size: 100%;
		transition: background 0s;
	}

	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		.front__tool .description-about .panel-body {
			line-height: 21px;
			font-size: 14px;
			color: #5b5e6d;
			margin: 0;
			padding: 0;
			border: none;
		}



		h2 {
			margin-top: 0;
			margin-bottom: .5rem;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		a {
			color: #007bff;
			text-decoration: none;
			background-color: transparent;
			-webkit-text-decoration-skip: objects;
		}

		img {
			vertical-align: middle;
			border-style: none;
		}

		svg {
			overflow: hidden;
			vertical-align: middle;
		}

		.collapse:not(.show) {
			display: none;
		}
	}

	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		.btn {
			display: table;
			background: #06f;
			margin: 50px auto;
			border: none;
			border-radius: 4px;
			color: #fff;
			font-size: 14px;
			line-height: 14px;
			text-transform: uppercase;
			letter-spacing: 1px;
			font-weight: 500;
			padding: 17px 30px 15px 30px;
			box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
			background-position: center;
			transition: background .8s;
		}

		.btn:focus {
			outline: 0;
			color: #fff;
			box-shadow: none;
		}

		.btn:hover {
			outline: 0;
			color: #fff;
			background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		}

		.btn:active {
			outline: 0;
			color: #fff;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
			background-color: #6eb9f7;
			background-size: 100%;
			transition: background 0s;
		}

		.front__tool {
			background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fafdff 100%);
			padding: 75px 0;
			position: relative;
			overflow-x: hidden;
		}

		@media (max-width:640px) {
			.front__tool {
				padding: 35px 0;
			}
		}

		.front__tool .front__tool-action .action:hover {
			background: 0 0;
			box-shadow: none;
			color: #ff8b29;
			border-color: #ff8b29;
		}

		.front__tool .btn {
			margin: 25px 0 0 0;
			font-size: 12px;
			font-weight: 700;
			padding: 12px 23px 11px 23px;
			background: #ff8b29;
			box-shadow: 0 3px 1px -2px rgba(255, 139, 41, .2), 0 2px 2px 0 rgba(255, 139, 41, .14), 0 1px 5px 0 rgba(255, 139, 41, .12);
			transition: background .8s;
			border: 2px solid transparent;
			border-radius: 4px;
		}

		.front__tool .btn.action {
			background: 0 0;
			color: #ddd;
			border: 2px solid #ddd;
			box-shadow: none;
			margin-left: 10px;
			transition: .2s;
		}

		@media (max-width:640px) {
			.front__tool .btn.action {
				margin-left: 0;
			}
		}

		.front__tool .btn:hover {
			outline: 0;
			color: #fff;
			background: #ff931c radial-gradient(circle, transparent 1%, #ff931c 1%) center/15000%;
			box-shadow: 0 2px 4px -1px rgba(255, 139, 41, .2), 0 4px 5px 0 rgba(255, 139, 41, .14), 0 1px 10px 0 rgba(255, 139, 41, .12);
		}

		.front__tool .wrapper {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
		}

		@media (max-width:820px) {
			.front__tool .wrapper {
				flex-wrap: wrap;
			}
		}

		.front__tool .wrapper>div {
			width: 50%;
		}

		@media (max-width:820px) {
			.front__tool .wrapper>div {
				width: 100%;
			}
		}

		.front__tool .wrapper>div:first-of-type {
			padding-right: 35px;
		}

		@media (max-width:820px) {
			.front__tool .wrapper>div:first-of-type {
				padding: 0 0 40px 0;
			}
		}

		.front__tool .wrapper>div.illustration {
			width: 45%;
		}

		@media (max-width:820px) {
			.front__tool .wrapper>div.illustration {
				width: 100%;
			}
		}

		.front__tool .illustration {
			position: relative;
		}

		.front__tool .illustration img {
			max-height: 563px;
			width: auto;
			margin-top: 75px;
		}

		@media (max-width:820px) {
			.front__tool .illustration img {
				width: 100%;
				max-height: none;
			}
		}

		@media (max-width:640px) {
			.front__tool .illustration img {
				height: auto;
				display: none;
			}
		}

		.front__tool .description-img {
			height: 20px;
			margin-bottom: 5px;
		}

		.front__tool .description-title {
			line-height: 40px;
			font-size: 28px;
			color: #313135;
			font-weight: 500;
			margin: 0px 0 25px 0;
			display: flex;
			align-items: center;
		}

		@media (max-width:640px) {
			.front__tool .description-title {
				line-height: 35px;
				margin: 20px 0;
			}
		}

		.front__tool .description-text {
			line-height: 24px;
			font-size: 16px;
			color: #5b5e6d;
			margin: 0 0 21px 0;
		}

		.front__tool .description-about {
			margin: 0;
			padding: 0 0 0 36px;
			list-style-type: none;
		}

		.front__tool .description-about .panel-default>.panel-heading {
			background: 0 0;
			border: none;
			padding: 0;
			margin: 0;
			box-shadow: none;
		}

		.front__tool .description-about .panel {
			background: 0 0;
			border: none;
			padding: 0 0 15px 0;
			margin: 0;
			box-shadow: none;
			position: relative;
		}

		.front__tool .description-about .panel:before {
			position: absolute;
			content: '';
			top: 16px;
			left: -32px;
			display: block;
			width: 1px;
			height: 0;
			background: #5b5e6d;
			z-index: 2;
		}

		.front__tool .description-about .panel:after {
			position: absolute;
			content: '';
			top: 16px;
			left: -32px;
			display: block;
			width: 1px;
			height: 100%;
			background: #ddd;
			z-index: 1;
			-webkit-transition: 250ms;
			-moz-transition: 250ms;
			-o-transition: 250ms;
			transition: 250ms;
		}

		.front__tool .description-about .panel:last-of-type:after,
		.front__tool .description-about .panel:last-of-type:before {
			display: none;
		}

		.front__tool .description-about .panel.active:after {
			height: 100%;
		}

		.front__tool .description-about .panel.active:before {
			height: 100%;
			-webkit-transition: all 5s ease;
			-o-transition: all 5s ease;
			transition: all 5s ease;
		}

		.front__tool .description-about .panel.active h3 {
			font-weight: 500;
		}

		.front__tool .description-about .panel.active h3:before {
			background: #5b5e6d;
		}

		.front__tool .description-about h3 {
			line-height: 24px;
			font-size: 16px;
			font-weight: 500;
			color: #5b5e6d;
			margin: 0 0 5px 0;
			transition: .2s;
			cursor: pointer;
			position: relative;
		}

		.front__tool .description-about h3:before {
			position: absolute;
			content: '';
			top: 7px;
			left: -36px;
			display: block;
			width: 9px;
			height: 9px;
			border-radius: 50px;
			background: #ddd;
			z-index: 2;
			-webkit-transition: 250ms;
			-moz-transition: 250ms;
			-o-transition: 250ms;
			transition: 250ms;
		}

		.front__tool .description-about h3[aria-expanded=true] {
			color: #313135;
		}

		.front__tool .description-about h3[aria-expanded=true]:before {
			background: #313135;
		}

		.front__tool .description-about h3:hover {
			color: #313135;
		}

		.front__tool .description-about .panel-body {
			line-height: 21px;
			font-size: 14px;
			color: #5b5e6d;
			margin: 0;
			padding: 0;
			border: none;
		}

		.front__tool-action {
			display: flex;
			align-items: center;
		}

		@media (max-width:640px) {
			.front__tool-action {
				flex-direction: column;
			}
		}


		h2,
		h3 {
			margin-top: 0;
			margin-bottom: .5rem;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		a {
			color: #007bff;
			text-decoration: none;
			background-color: transparent;
			-webkit-text-decoration-skip: objects;
		}

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

		.collapse:not(.show) {
			display: none;
		}

		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		.btn {
			display: table;
			background: #06f;
			margin: 50px auto;
			border: none;
			border-radius: 4px;
			color: #fff;
			font-size: 14px;
			line-height: 14px;
			text-transform: uppercase;
			letter-spacing: 1px;
			font-weight: 500;
			padding: 17px 30px 15px 30px;
			box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
			background-position: center;
			transition: background .8s;
		}

		.btn:focus {
			outline: 0;
			color: #fff;
			box-shadow: none;
		}

		.btn:hover {
			outline: 0;
			color: #fff;
			background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		}

		.btn:active {
			outline: 0;
			color: #fff;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
			background-color: #6eb9f7;
			background-size: 100%;
			transition: background 0s;
		}
	}

	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		.header {
			background: #fff;
			box-shadow: 0 2px 5px rgba(94, 86, 86, .05);
			width: 100%;
			margin-bottom: -1px;
			position: relative;
			z-index: 11;
		}

		.header.header__fixed {
			position: absolute;
			top: 10px;
			left: 0;
			width: 100%;
			background: 0 0;
			box-shadow: none;
			margin-bottom: 0;
			z-index: 16;
		}

		@media (max-width:965px) {
			.header.header__fixed {
				top: 0;
			}
		}

		.header.header__fixed .signin__btn {
			background: 0 0;
			border-radius: 2px;
			min-width: 90px;
			padding: 0 10px;
			height: 32px;
			color: #fff;
			opacity: 1;
			line-height: 10px;
		}

		@media (max-width:640px) {
			.header.header__fixed .signin__btn {
				color: #085cdb;
			}
		}

		.header.header__fixed .semscale_btn {
			background: rgba(255, 255, 255, .2);
			line-height: 10px;
		}

		@media (max-width:965px) {
			.header.header__fixed .semscale_btn {
				background: #085cdb;
				color: #fff;
				margin: 0 auto;
			}
		}

		.header.header__fixed .semscale_btn {
			line-height: normal;
		}

		@media (min-width:965px) {

			.header.header__fixed .header__menu>ul>li a,
			.header.header__fixed .header__menu>ul>li span {
				color: #fff;
				opacity: 1;
			}

			.header.header__fixed .header__menu>ul>li a {
				position: relative;
				opacity: 1;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children a,
			.header.header__fixed .header__menu>ul>li.menu-item-has-children span {
				color: #666;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span {
				color: #fff;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span .arrow svg path {
				fill: #fff;
			}
		}

		.header.header__fixed .header__menu-mob span {
			background: #fff;
		}

		.header .wrapper {
			display: flex;
			align-items: center;
			justify-content: space-between;
			height: 60px;
		}

		.header__logo {
			margin-top: -7px;
			width: 170px;
		}

		.header__logo img {
			display: block;
			max-width: 100%;
		}

		.header__menu {
			margin-right: 15px;
		}

		@media (max-width:965px) {
			.header__menu {
				margin-left: 0;
				padding: 0 20px 10px 20px;
				width: 90%;
				margin-top: -20px;
				position: relative;
				z-index: 15;
			}
		}

		.header__menu>ul {
			list-style-type: none;
			padding: 0;
			margin: 0;
			display: flex;
			align-items: center;
			height: 60px;
		}

		@media (max-width:965px) {
			.header__menu>ul {
				flex-direction: column;
				height: auto;
				align-items: flex-start;
			}
		}

		.header__menu>ul>li {
			padding: 0 20px;
			height: 100%;
			display: flex;
			align-items: center;
		}

		.header__menu>ul>li:first-of-type {
			padding-left: 0;
		}

		.header__menu>ul>li:last-of-type {
			padding-right: 0;
		}

		@media (max-width:965px) {
			.header__menu>ul>li {
				padding: 0 0 10px 0;
				width: 100%;
			}
		}

		.header__menu>ul>li.menu-item-has-children {
			padding-right: 10px;
			position: relative;
		}

		@media (max-width:965px) {
			.header__menu>ul>li.menu-item-has-children {
				align-items: flex-start;
				flex-direction: column;
				padding-right: 0;
				width: 100%;
			}
		}

		.header__menu>ul>li.menu-item-has-children>span {
			position: relative;
		}

		.header__menu>ul>li.menu-item-has-children>span .arrow svg {
			width: 8px;
			height: 5px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li.menu-item-has-children>span .arrow {
				display: inline;
			}
		}

		.header__menu>ul>li a,
		.header__menu>ul>li span {
			font-size: 14px;
			font-weight: 500;
			color: #666;
			text-decoration: none;
		}

		@media (max-width:965px) {

			.header__menu>ul>li a,
			.header__menu>ul>li span {
				width: 100%;
			}
		}

		.header__menu>ul>li .products {
			width: 468px;
			display: flex;
			align-items: center;
			flex-direction: column;
			padding: 15px 22px;
			margin: 0;
			background: #fff;
			border-radius: 5px;
			box-sizing: border-box;
			box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
			position: absolute;
			left: -50%;
			top: 48px;
			z-index: -1;
			max-height: 0;
			-webkit-transform: perspective(600px) rotate3d(1, 0, 0, -90deg);
			-webkit-transform-origin: 50% 0;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products {
				width: 100%;
				position: relative;
				z-index: 4;
				height: 100%;
				left: 10px;
				top: 7px;
				max-height: none;
				transform: perspective(600px) rotate3d(0, 0, 0, 0);
				box-shadow: none;
				border: none;
				padding: 0;
				display: none;
			}
		}

		.header__menu>ul>li .products .products__header,
		.header__menu>ul>li .products .products__solo-block {
			display: flex;
			padding: 3px 0 15px 0;
			width: 100%;
			border-bottom: 1px solid #ebebeb;
		}

		@media (max-width:965px) {

			.header__menu>ul>li .products .products__header,
			.header__menu>ul>li .products .products__solo-block {
				border: none;
				padding: 0;
			}
		}

		@media (max-width:640px) {

			.header__menu>ul>li .products .products__header,
			.header__menu>ul>li .products .products__solo-block {
				padding-bottom: 5px;
			}
		}

		.header__menu>ul>li .products .products__header a,
		.header__menu>ul>li .products .products__solo-block a {
			margin: 0 auto;
		}

		.header__menu>ul>li .products .products__header a .products__description,
		.header__menu>ul>li .products .products__solo-block a .products__description {
			text-align: left;
		}

		.header__menu>ul>li .products .products__footer {
			padding: 17px 0 0 0;
			border-bottom: none;
			border-top: 1px solid #ebebeb;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__footer {
				border: none;
				padding: 0;
			}
		}

		@media (max-width:640px) {
			.header__menu>ul>li .products .products__footer {
				padding-bottom: 5px;
			}
		}

		.header__menu>ul>li .products .products__lists {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			width: 100%;
			padding: 10px 0;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__lists {
				padding: 0;
				flex-direction: column;
			}
		}

		.header__menu>ul>li .products .products__list {
			width: 50%;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list {
				width: 100%;
			}
		}

		.header__menu>ul>li .products .products__list:first-of-type {
			border-right: 1px solid #ebebeb;
			padding-right: 20px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list:first-of-type {
				border: none;
				padding: 0;
			}
		}

		.header__menu>ul>li .products .products__list:first-of-type li:nth-child(5) i {
			color: #06f;
		}

		.header__menu>ul>li .products .products__list:nth-child(2) {
			padding-left: 40px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list:nth-child(2) {
				padding: 0;
			}
		}

		.header__menu>ul>li .products .products__list ul {
			list-style-type: none;
			padding: 0;
			margin: 0;
		}

		.header__menu>ul>li .products .products__list-desc {
			color: #868ba1;
			font-weight: 500;
			font-size: 12px;
			line-height: 20px;
			text-transform: uppercase;
			margin: 10px 0 20px 0;
			opacity: .5;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list-desc {
				display: none;
			}
		}

		.header__menu>ul>li .products li {
			margin-bottom: 20px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products li {
				margin-bottom: 7px;
			}
		}

		.header__menu>ul>li .products li:last-of-type {
			margin-bottom: 10px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products li:last-of-type {
				margin-bottom: 7px;
			}
		}

		.header__menu>ul>li .products a {
			display: flex;
			align-items: flex-start;
			line-height: 16px;
			position: relative;
			z-index: 10;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a {
				padding: 5px 0;
				align-items: center;
				align-items-height: 32px;
			}
		}

		.header__menu>ul>li .products a i,
		.header__menu>ul>li .products a img {
			margin-right: 10px;
			width: 15px;
			height: 15px;
		}

		.header__menu>ul>li .products a .products__description p {
			color: #313135;
			margin-bottom: 2px;
			font-weight: 500;
			font-size: 14px;
			line-height: 12px;
			position: relative;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a .products__description p {
				font-size: 13px;
				margin-bottom: 0;
			}
		}

		.header__menu>ul>li .products a .products__description span {
			font-size: 11px;
			line-height: 15px;
			font-weight: 300;
			margin-right: 0;
			color: #5b5e6d;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a .products__description span {
				display: none;
			}
		}

		.language_menu {
			list-style-type: none;
			padding: 0;
			margin: 0;
			position: relative;
			width: 95px;
		}

		.language_menu li a {
			font-size: 13px;
		}

		.language_menu .lang__arrow {
			position: absolute;
			right: 0;
			top: 6px;
			width: 6px;
		}

		.language_menu a {
			position: relative;
			height: 15px;
			display: block;
		}

		.language_menu a:after {
			position: absolute;
			left: 30px;
			top: -2px;
			font-weight: 500;
			color: #5b5e6d;
		}

		.language_menu .sub-menu_container {
			display: none;
			width: 100%;
			min-width: 115px;
			position: absolute;
			bottom: 5px;
			left: -10px;
			padding-bottom: 20px;
		}

		.language_menu .sub-menu {
			list-style-type: none;
			padding: 0;
			margin: 0;
			box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
			background: #fff;
			border-radius: 3px;
		}

		.language_menu .sub-menu li:first-of-type a {
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
		}

		.language_menu .sub-menu li:last-of-type a {
			border-bottom-left-radius: 4px;
			border-bottom-right-radius: 4px;
		}

		.language_menu .sub-menu a {
			height: 24px;
		}

		.language_menu .sub-menu a:after {
			top: 3px;
			left: 36px;
			font-size: 13px;
		}

		.language_menu .sub-menu a:before {
			left: 8px;
			top: 4px;
			width: 21px;
		}

		.header__right-part {
			margin-left: auto;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		@media (max-width:965px) {
			.header__right-part {
				flex-direction: column;
				width: 100%;
			}
		}

		.header__right-part .header__language_menu {
			border: 1px solid rgba(255, 255, 255, 0);
			box-sizing: border-box;
			border-radius: 4px;
			width: 76px;
			height: 40px;
			padding: 2px 8px;
			margin-right: 20px;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu {
				margin-right: 0;
				order: 2;
				padding-bottom: 8px;
			}
		}

		.header__right-part .header__language_menu .language_menu {
			padding: 10px 0;
			width: 55px;
			height: 40px;
		}

		.header__right-part .header__language_menu .language_menu .current_lang {
			display: flex;
			align-items: center;
		}

		.header__right-part .header__language_menu .language_menu .current_lang:after {
			color: #fff;
			left: 65%;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .language_menu .current_lang:after {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .language_menu a:before {
			content: none;
		}

		.header__right-part .header__language_menu .language_menu a:after {
			left: 50%;
			transform: translateX(-50%);
		}

		.header__right-part .header__language_menu .language_menu a[title=en]:after {
			content: 'EN';
		}

		.header__right-part .header__language_menu .language_menu a[title=de]:after {
			content: 'DE';
		}

		.header__right-part .header__language_menu .language_menu a[title=fr]:after {
			content: 'FR';
		}

		.header__right-part .header__language_menu .language_menu a[title=ru]:after {
			content: 'RU';
		}

		.header__right-part .header__language_menu .language_menu a[title=nl]:after {
			content: 'NL';
		}

		.header__right-part .header__language_menu .language_menu a[title=it]:after {
			content: 'IT';
		}

		.header__right-part .header__language_menu .language_menu a[title=es]:after {
			content: 'ES';
		}

		.header__right-part .header__language_menu .language_menu a[title=sv]:after {
			content: 'SV';
		}

		.header__right-part .header__language_menu .language_menu a[title=pt]:after {
			content: 'PT';
		}

		.header__right-part .header__language_menu .language_menu a[title=no]:after {
			content: 'NO';
		}

		.header__right-part .header__language_menu .language_menu a[title=tr]:after {
			content: 'TR';
		}

		.header__right-part .header__language_menu .language_menu a[title=pl]:after {
			content: 'PL';
		}

		.header__right-part .header__language_menu .language_menu a[title=ja]:after {
			content: 'JA';
		}

		.header__right-part .header__language_menu .language_menu .fa {
			color: #fff;
			font-size: 16px;
			display: block;
			line-height: 40px;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .language_menu .fa {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .sub-menu_container {
			min-width: 55px;
			top: 35px;
			left: 11px;
		}

		.header__right-part .header__language_menu .sub-menu_container .sub-menu {
			background: rgba(255, 255, 225, .3);
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .sub-menu_container .sub-menu {
				background: #fff;
				box-shadow: 0 2px 15px rgba(0, 0, 0, .16);
			}
		}

		.header__right-part .header__language_menu a:after {
			color: #fff;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu a:after {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .lang__arrow {
			width: 8px;
			height: 5px;
			right: -3px;
		}

		.header__right-part .header__language_menu .lang__arrow path {
			fill: #fff;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .lang__arrow path {
				fill: #666;
			}
		}

		.header__user {
			position: relative;
		}

		@media (max-width:965px) {
			.header__user {
				width: 100%;
				padding: 0;
			}
		}

		.header__user.not__login {
			margin-left: auto;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		@media (max-width:965px) {
			.header__user.not__login {
				border-top: 1px solid #f1f1f1;
				padding: 13px 20px;
				text-align: center;
				justify-content: center;
			}

			.header__user.not__login .signin__btn {
				background: #06f;
				color: #fff;
			}
		}

		.header__menu-mobile {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		@media (max-width:965px) {
			.header__menu-mobile {
				display: none;
				position: absolute;
				width: 300px;
				right: 30px;
				top: 10px;
				flex-direction: column;
				background: #fff;
				box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
				border-radius: 5px;
				align-items: flex-start;
				justify-content: flex-start;
			}
		}

		@media (max-width:415px) {
			.header__menu-mobile {
				right: 8px;
			}
		}

		.header__menu-mob {
			display: none;
			align-items: center;
			justify-content: center;
			flex-direction: column;
		}

		.header__menu-mob span {
			display: block;
			width: 25px;
			height: 2px;
			border-radius: 4px;
			background: #06f;
			margin-bottom: 5px;
		}

		.header__menu-mob span:last-of-type {
			margin-bottom: 0;
		}

		@media (max-width:965px) {
			.header__menu-mob {
				display: flex;
			}
		}

		.mobile__close {
			flex-direction: column;
			align-items: flex-end;
			justify-content: center;
			padding: 5px 15px 0 0;
			margin-left: auto;
			display: none;
			height: 40px;
			width: 100%;
			position: relative;
			z-index: 10;
		}

		@media (max-width:965px) {
			.mobile__close {
				display: flex;
			}
		}

		.mobile__close span {
			display: block;
			width: 15px;
			height: 3px;
			background: #06f;
			border-radius: 5px;
		}

		.mobile__close span:first-of-type {
			margin: -2px 0 0 -1px;
			-webkit-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			-o-transform: rotate(45deg);
			transform: rotate(45deg);
		}

		.mobile__close span:nth-child(2) {
			margin: -3px 0 0 -1px;
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			-o-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}

		.signin__btn {
			background: 0 0;
			border-radius: 25px;
			border: none;
			min-width: 100px;
			padding: 0 10px;
			height: 36px;
			color: #666;
			opacity: 1;
			font-size: 14px;
			font-weight: 500;
			line-height: 10px;
		}

		.semscale_btn {
			background: #06f;
			box-shadow: 0 4px 10px rgba(1, 71, 243, .05);
			border-radius: 4px;
			padding: 11px 30px;
			min-width: 110px;
			color: #fff;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-weight: 500;
			font-size: 14px;
			border: none;
		}

		body.front__page .semscale_btn {
			background: rgba(255, 255, 255, .15);
		}

		@media (max-width:768px) {
			body.front__page .semscale_btn {
				margin: 0 auto;
				background: #06f;
				color: #fff;
			}
		}



		header {
			display: block;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ul {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ul ul {
			margin-bottom: 0;
		}

		a {
			color: #007bff;
			text-decoration: none;
			background-color: transparent;
			-webkit-text-decoration-skip: objects;
		}

		img {
			vertical-align: middle;
			border-style: none;
		}

		svg {
			overflow: hidden;
			vertical-align: middle;
		}

		button {
			border-radius: 0;
		}

		button {
			margin: 0;
			font-size: inherit;
			line-height: inherit;
		}

		button {
			overflow: visible;
		}

		button {
			text-transform: none;
		}

		button {
			-webkit-appearance: button;
		}

		button::-moz-focus-inner {
			padding: 0;
			border-style: none;
		}

		.sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border: 0;
		}
	}



	section {
		display: block;
	}

	h3 {
		margin-top: 0;
		margin-bottom: .5rem;
	}

	p {
		margin-top: 0;
		margin-bottom: 1rem;
	}

	ul {
		margin-top: 0;
		margin-bottom: 1rem;
	}

	button {
		border-radius: 0;
	}

	button:focus {
		outline: 1px dotted;
		outline: 5px auto -webkit-focus-ring-color;
	}

	button,
	input {
		overflow: visible;
	}

	button {
		text-transform: none;
	}

	[type=submit],
	button {
		-webkit-appearance: button;
	}

	[type=submit]::-moz-focus-inner,
	button::-moz-focus-inner {
		padding: 0;
		border-style: none;
	}

	h3 {
		margin-bottom: .5rem;
		font-weight: 500;
		line-height: 1.2;
	}

	h3 {
		font-size: 1.75rem;
	}

	.container {
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}

	@media (min-width:576px) {
		.container {
			max-width: 540px;
		}
	}

	@media (min-width:768px) {
		.container {
			max-width: 720px;
		}
	}

	@media (min-width:992px) {
		.container {
			max-width: 960px;
		}
	}

	@media (min-width:1200px) {
		.container {
			max-width: 1140px;
		}
	}

	@media (min-width:576px) {
		.container {
			max-width: 540px;
		}
	}

	@media (min-width:768px) {
		.container {
			max-width: 720px;
		}
	}

	@media (min-width:992px) {
		.container {
			max-width: 960px;
		}
	}

	@media (min-width:1200px) {
		.container {
			max-width: 1140px;
		}
	}

	.row {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-right: -15px;
		margin-left: -15px;
	}

	.col-lg-8 {
		position: relative;
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}

	@media (min-width:992px) {
		.col-lg-8 {
			-ms-flex: 0 0 66.666667%;
			flex: 0 0 66.666667%;
			max-width: 66.666667%;
		}
	}

	.d-flex {
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.justify-content-center {
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	@media print {

		*,
		::after,
		::before {
			text-shadow: none !important;
			box-shadow: none !important;
		}

		h3,
		p {
			orphans: 3;
			widows: 3;
		}

		h3 {
			page-break-after: avoid;
		}

		.container {
			min-width: 992px !important;
		}
	}

	input:focus,
	button:focus {
		outline: none;
	}

	ul {
		padding: 0;
		margin: 0;
	}

	.section-title {
		margin-bottom: 70px;
		text-align: center;
	}

	.section-title h3 {
		color: #111111;
		font-weight: 700;
		text-transform: uppercase;
		position: relative;
	}

	.section-title h3:after {
		position: absolute;
		left: 0;
		bottom: -30px;
		right: 0;
		height: 13px;
		width: 83px;
		background-image: url(https://mongray.com/img/line.png);
		content: "";
		margin: 0 auto;
	}

	.spad {
		padding-top: 50px;
		padding-bottom: 30px;
	}

	.price-btn {
		margin-bottom: 20px;
	}

	.site-btn {
		width: 100px;
		font-size: 14px;
		color: #ffffff;
		font-weight: 700;
		text-transform: uppercase;
		display: inline-block;
		padding: 13px 30px 12px;
		background: #4c57d6;
		border: none;
		border-radius: 50px;
	}

	.register__text .register__form {
		margin-bottom: 34px;
		display: flex;
		justify-content: space-evenly;
		flex-direction: column;
		align-items: center;
		height: 300px;
	}

	.register__text .register__form form {
		position: relative;
	}

	.register__text .register__form form input {
		width: 100%;
		height: 54px;
		border: 2px solid #4c57d6;
		border-radius: 50px;
		font-size: 14px;
		color: #111111;
		padding-left: 20px;
	}

	.register__text .register__form form input::-webkit-input-placeholder {
		color: #111111;
	}

	.register__text .register__form form input::-moz-placeholder {
		color: #111111;
	}

	.register__text .register__form form input:-ms-input-placeholder {
		color: #111111;
	}

	.register__text .register__form form input::-ms-input-placeholder {
		color: #111111;
	}

	.register__text .register__form form input::placeholder {
		color: #111111;
	}

	.register__text .register__form form .change__extension {
		font-size: 14px;
		color: #111111;
		position: absolute;
		top: 15px;
		right: 55px;
		cursor: pointer;
	}

	.register__text .register__form form .change__extension:hover ul {
		opacity: 1;
		top: 18px;
		visibility: visible;
	}

	.register__text .register__form form .change__extension ul {
		width: 60px;
		background: #ffffff;
		position: absolute;
		left: 0;
		top: 38px;
		-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
		box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
		padding-left: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 9;
	}

	.register__text .register__form form .change__extension ul li {
		list-style: none;
		cursor: pointer;
		font-weight: 500;
		font-size: 14px;
	}

	.register__text .register__form form .change__extension:before {
		position: absolute;
		left: -30px;
		top: 3px;
		height: 18px;
		width: 1px;
		background: #d7d7d7;
		content: "";
	}

	.register__text .register__form form .site-btn {
		position: absolute;
		right: 7px;
		top: 7px;
	}

	.register__text .register__result {
		margin-bottom: 24px;
	}

	.register__text .register__result ul li {
		display: inline-block;
		list-style: none;
		color: #4c57d6;
		font-weight: 700;
		margin-right: 62px;
		font-size: 20px;
	}

	.register__text .register__result ul li:last-child {
		margin-right: 0;
	}

	.register__text .register__result ul li span {
		color: #111111;
	}

	.register__text p {
		margin-bottom: 0;
	}

	@media only screen and (min-width: 1200px) {
		.container {
			max-width: 1170px;
		}

		.signin__btn {
			margin-left: 20px
		}
	}

	@media only screen and (min-width: 992px) and (max-width: 1199px) {
		.register__text .register__result ul li {
			margin-right: 30px;
		}

		.header__logo {
			margin-top: 10px !important;
		}
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
		.register__text .register__result ul li {
			margin-right: 50px;
		}

		.header__logo {
			margin-top: 10px !important;
		}
	}

	@media only screen and (max-width: 767px) {
		.register__text .register__result ul li {
			margin-right: 10px;
		}

		.header__logo {
			margin-top: 10px !important;
		}
	}

	@media only screen and (max-width: 479px) {
		.register__text .register__result ul li {
			margin-bottom: 10px !important;
		}
	}

	@media all {

		.fa,
		.far {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
		}

		.fa-chart-bar:before {
			content: "\f080";
		}

		.fa-globe-americas:before {
			content: "\f57d";
		}

		.sr-only {
			border: 0;
			clip: rect(0, 0, 0, 0);
			height: 1px;
			margin: -1px;
			overflow: hidden;
			padding: 0;
			position: absolute;
			width: 1px;
		}

		.far {
			font-weight: 400;
		}

		.fa,
		.far {
			font-family: "Font Awesome 5 Free";
		}

		.fa {
			font-weight: 900;
		}

		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		button:focus {
			outline: 0;
		}

		.header {
			background: #fff;
			box-shadow: 0 2px 5px rgba(94, 86, 86, .05);
			width: 100%;
			margin-bottom: -1px;
			position: relative;
			z-index: 11;
		}

		.header.header__fixed {
			position: absolute;
			top: 10px;
			left: 0;
			width: 100%;
			background: 0 0;
			box-shadow: none;
			margin-bottom: 0;
			z-index: 16;
		}

		@media (max-width:965px) {
			.header.header__fixed {
				top: 0;
			}
		}

		.header.header__fixed .signin__btn {
			background: 0 0;
			border-radius: 2px;
			min-width: 90px;
			padding: 0 10px;
			height: 32px;
			color: #fff;
			opacity: 1;
			transition: .2s;
			line-height: 10px;
		}

		@media (max-width:640px) {
			.header.header__fixed .signin__btn {
				color: #085cdb;
			}
		}

		.header.header__fixed .signin__btn:hover {
			opacity: .9;
			box-shadow: none;
		}

		.header.header__fixed .semscale_btn {
			background: rgba(255, 255, 255, .2);
			line-height: 10px;
		}

		@media (max-width:965px) {
			.header.header__fixed .semscale_btn {
				background: #085cdb;
				color: #fff;
				margin: 0 auto;
			}

			.header.header__fixed .semscale_btn:hover {
				background: #267dff;
				color: #fff;
			}
		}

		.header.header__fixed .semscale_btn:hover {
			color: #4897f7;
			background: rgba(255, 255, 255, .9);
		}

		.header.header__fixed .semscale_btn {
			line-height: normal;
		}

		@media (min-width:965px) {

			.header.header__fixed .header__menu>ul>li a,
			.header.header__fixed .header__menu>ul>li span {
				color: #fff;
				opacity: 1;
			}

			.header.header__fixed .header__menu>ul>li a:hover,
			.header.header__fixed .header__menu>ul>li span:hover {
				color: #fff;
				opacity: .9;
			}

			.header.header__fixed .header__menu>ul>li a {
				position: relative;
				opacity: 1;
			}

			.header.header__fixed .header__menu>ul>li a:hover {
				opacity: .9;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children a,
			.header.header__fixed .header__menu>ul>li.menu-item-has-children span {
				color: #666;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span {
				color: #fff;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span .arrow svg path {
				fill: #fff;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span:hover {
				color: #fff;
			}

			.header.header__fixed .header__menu>ul>li.menu-item-has-children>span:hover .arrow svg path {
				fill: #fff;
			}
		}

		.header.header__fixed .header__menu-mob span {
			background: #fff;
		}

		.header .wrapper {
			display: flex;
			align-items: center;
			justify-content: space-between;
			height: 60px;
		}

		.header__logo {
			margin-top: -7px;
			width: 170px;
		}

		.header__logo img {
			display: block;
			max-width: 100%;
		}

		.header__menu {
			margin-left: 54px;
		}

		@media (max-width:965px) {
			.header__menu {
				margin-left: 0;
				padding: 0 20px 10px 20px;
				width: 90%;
				margin-top: -20px;
				position: relative;
				z-index: 15;
			}
		}

		.header__menu>ul {
			list-style-type: none;
			padding: 0;
			margin: 0;
			display: flex;
			align-items: center;
			height: 60px;
		}

		@media (max-width:965px) {
			.header__menu>ul {
				flex-direction: column;
				height: auto;
				align-items: flex-start;
			}
		}

		.header__menu>ul>li {
			padding: 0 20px;
			height: 100%;
			display: flex;
			align-items: center;
		}

		.header__menu>ul>li:first-of-type {
			padding-left: 0;
		}

		.header__menu>ul>li:last-of-type {
			padding-right: 0;
		}

		@media (max-width:965px) {
			.header__menu>ul>li {
				padding: 0 0 10px 0;
				width: 100%;
			}
		}

		.header__menu>ul>li.menu-item-has-children {
			padding-right: 10px;
			position: relative;
			cursor: pointer;
		}

		@media (max-width:965px) {
			.header__menu>ul>li.menu-item-has-children {
				align-items: flex-start;
				flex-direction: column;
				padding-right: 0;
				width: 100%;
			}
		}

		.header__menu>ul>li.menu-item-has-children>span {
			position: relative;
			cursor: pointer;
		}

		.header__menu>ul>li.menu-item-has-children>span .arrow svg {
			width: 8px;
			height: 5px;
			transition: .3s;
		}

		@media (max-width:965px) {
			.header__menu>ul>li.menu-item-has-children>span .arrow {
				display: inline;
			}
		}

		.header__menu>ul>li.menu-item-has-children:hover>span {
			color: #06f;
		}

		.header__menu>ul>li.menu-item-has-children:hover>span .arrow svg {
			transform: rotate(180deg);
		}

		.header__menu>ul>li.menu-item-has-children:hover>span .arrow svg path {
			fill: #06f;
		}

		.header__menu>ul>li.menu-item-has-children:hover .sub-menu {
			max-height: 1000px;
			-webkit-transform: perspective(600px) rotate3d(0, 0, 0, 0);
		}

		.header__menu>ul>li a,
		.header__menu>ul>li span {
			font-size: 14px;
			font-weight: 500;
			color: #666;
			text-decoration: none;
		}

		.header__menu>ul>li a:hover,
		.header__menu>ul>li span:hover {
			text-decoration: none;
			color: #06f;
		}

		@media (max-width:965px) {

			.header__menu>ul>li a,
			.header__menu>ul>li span {
				width: 100%;
			}
		}

		.header__menu>ul>li .products {
			width: 680px;
			display: flex;
			align-items: center;
			flex-direction: column;
			padding: 15px 22px;
			margin: 0;
			background: #fff;
			border-radius: 5px;
			box-sizing: border-box;
			box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
			position: absolute;
			left: -90%;
			top: 48px;
			z-index: -1;
			max-height: 0;
			-webkit-transform: perspective(600px) rotate3d(1, 0, 0, -90deg);
			-webkit-transform-origin: 50% 0;
			-webkit-transition: 250ms;
			-moz-transition: 250ms;
			-o-transition: 250ms;
			transition: 250ms;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products {
				width: 100%;
				position: relative;
				z-index: 4;
				height: 100%;
				left: 10px;
				top: 7px;
				max-height: none;
				transform: perspective(600px) rotate3d(0, 0, 0, 0);
				box-shadow: none;
				border: none;
				padding: 0;
				display: none;
			}
		}

		.header__menu>ul>li .products .products__header,
		.header__menu>ul>li .products .products__solo-block {
			display: flex;
			padding: 3px 0 15px 0;
			width: 100%;
			border-bottom: 1px solid #ebebeb;
		}

		@media (max-width:965px) {

			.header__menu>ul>li .products .products__header,
			.header__menu>ul>li .products .products__solo-block {
				border: none;
				padding: 0;
			}
		}

		@media (max-width:640px) {

			.header__menu>ul>li .products .products__header,
			.header__menu>ul>li .products .products__solo-block {
				padding-bottom: 5px;
			}
		}

		.header__menu>ul>li .products .products__header:hover .products__description p,
		.header__menu>ul>li .products .products__solo-block:hover .products__description p {
			color: #e91d63;
		}

		.header__menu>ul>li .products .products__header:hover .products__description>span,
		.header__menu>ul>li .products .products__solo-block:hover .products__description>span {
			color: #5b5e6d;
		}

		.header__menu>ul>li .products .products__header a,
		.header__menu>ul>li .products .products__solo-block a {
			margin: 0 auto;
		}

		.header__menu>ul>li .products .products__header a .products__description,
		.header__menu>ul>li .products .products__solo-block a .products__description {
			text-align: left;
		}

		.header__menu>ul>li .products .products__footer {
			padding: 17px 0 0 0;
			border-bottom: none;
			border-top: 1px solid #ebebeb;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__footer {
				border: none;
				padding: 0;
			}
		}

		@media (max-width:640px) {
			.header__menu>ul>li .products .products__footer {
				padding-bottom: 5px;
			}
		}

		.header__menu>ul>li .products .products__footer:hover .products__description p {
			color: #f25257;
		}

		.header__menu>ul>li .products .products__lists {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			width: 100%;
			padding: 10px 0;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__lists {
				padding: 0;
				flex-direction: column;
			}
		}

		.header__menu>ul>li .products .products__list {
			width: 50%;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list {
				width: 100%;
			}
		}

		.header__menu>ul>li .products .products__list:first-of-type {
			border-right: 1px solid #ebebeb;
			padding-right: 20px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list:first-of-type {
				border: none;
				padding: 0;
			}
		}

		.header__menu>ul>li .products .products__list:nth-child(2) {
			padding-left: 40px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list:nth-child(2) {
				padding: 0;
			}
		}

		.header__menu>ul>li .products .products__list:nth-child(2) li:first-of-type:hover p {
			color: #8e16aa;
		}

		.header__menu>ul>li .products .products__list:nth-child(2) li:nth-child(2):hover p {
			color: #267dff;
		}

		.header__menu>ul>li .products .products__list:nth-child(2) li:nth-child(3):hover p {
			color: #267dff;
		}

		.header__menu>ul>li .products .products__list ul {
			list-style-type: none;
			padding: 0;
			margin: 0;
		}

		.header__menu>ul>li .products .products__list-desc {
			color: #868ba1;
			font-weight: 500;
			font-size: 12px;
			line-height: 20px;
			text-transform: uppercase;
			margin: 10px 0 20px 0;
			opacity: .5;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products .products__list-desc {
				display: none;
			}
		}

		.header__menu>ul>li .products li {
			margin-bottom: 20px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products li {
				margin-bottom: 7px;
			}
		}

		.header__menu>ul>li .products li:hover .products__description span {
			color: #5b5e6d;
		}

		.header__menu>ul>li .products li:last-of-type {
			margin-bottom: 10px;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products li:last-of-type {
				margin-bottom: 7px;
			}
		}

		.header__menu>ul>li .products a {
			display: flex;
			align-items: flex-start;
			line-height: 16px;
			transition: .2s;
			position: relative;
			z-index: 10;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a {
				padding: 5px 0;
				align-items: center;
				align-items-height: 32px;
			}
		}

		.header__menu>ul>li .products a:hover .products__description span {
			color: #5b5e6d;
		}

		.header__menu>ul>li .products a i,
		.header__menu>ul>li .products a img {
			margin-right: 10px;
			width: 15px;
			height: 15px;
		}

		.header__menu>ul>li .products a .products__description p {
			color: #313135;
			margin-bottom: 2px;
			font-weight: 500;
			font-size: 14px;
			line-height: 12px;
			transition: .2s;
			position: relative;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a .products__description p {
				font-size: 13px;
				margin-bottom: 0;
			}
		}

		.header__menu>ul>li .products a .products__description span {
			font-size: 11px;
			line-height: 15px;
			font-weight: 300;
			margin-right: 0;
			color: #5b5e6d;
		}

		.header__menu>ul>li .products a .products__description span:hover {
			color: #5b5e6d;
		}

		@media (max-width:965px) {
			.header__menu>ul>li .products a .products__description span {
				display: none;
			}
		}

		.header__menu>ul>li .products a .products__description span:hover {
			color: #666;
		}

		.language_menu {
			list-style-type: none;
			padding: 0;
			margin: 0;
			position: relative;
			width: 95px;
		}

		.language_menu li a {
			font-size: 13px;
		}

		.language_menu:hover .sub-menu_container {
			display: block;
		}

		.language_menu:hover .current_lang:after {
			color: #267dff;
		}

		.language_menu:hover .lang__arrow {
			transform: rotate(180deg);
		}

		.language_menu:hover .lang__arrow path {
			fill: #267dff;
		}

		.language_menu .lang__arrow {
			position: absolute;
			right: 0;
			top: 6px;
			width: 6px;
			transition: .2s;
		}

		.language_menu a {
			position: relative;
			height: 15px;
			display: block;
			cursor: pointer;
		}

		.language_menu a:after {
			position: absolute;
			left: 30px;
			top: -2px;
			font-weight: 500;
			color: #5b5e6d;
		}

		.language_menu a:before {
			content: '';
			position: absolute;
			left: 0;
			width: 24px;
			height: 15px;
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
		}

		.language_menu .sub-menu_container {
			display: none;
			width: 100%;
			min-width: 115px;
			position: absolute;
			bottom: 5px;
			left: -10px;
			padding-bottom: 20px;
		}

		.language_menu .sub-menu {
			list-style-type: none;
			padding: 0;
			margin: 0;
			box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
			background: #fff;
			border-radius: 3px;
		}

		.language_menu .sub-menu li:first-of-type a {
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
		}

		.language_menu .sub-menu li:last-of-type a {
			border-bottom-left-radius: 4px;
			border-bottom-right-radius: 4px;
		}

		.language_menu .sub-menu a {
			height: 24px;
		}

		.language_menu .sub-menu a:after {
			top: 3px;
			left: 36px;
			font-size: 13px;
		}

		.language_menu .sub-menu a:before {
			left: 8px;
			top: 4px;
			width: 21px;
		}

		.language_menu .sub-menu a:hover {
			background: #fcfcfc;
		}

		.header__right-part {
			margin-left: auto;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		@media (max-width:965px) {
			.header__right-part {
				flex-direction: column;
				width: 100%;
			}
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu {
				margin-right: 0;
				order: 2;
				padding-bottom: 8px;
			}
		}

		.header__right-part .header__language_menu .language_menu {
			padding: 10px 0;
			width: 55px;
			height: 40px;
		}

		.header__right-part .header__language_menu .language_menu .current_lang {
			display: flex;
			align-items: center;
		}

		.header__right-part .header__language_menu .language_menu .current_lang:after {
			color: #fff;
			left: 65%;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .language_menu .current_lang:after {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .language_menu:hover .lang__arrow path {
			fill: #fff;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .language_menu:hover .lang__arrow path {
				fill: #666;
			}
		}

		.header__right-part .header__language_menu .language_menu a:before {
			content: none;
		}

		.header__right-part .header__language_menu .language_menu a:after {
			left: 50%;
			transform: translateX(-50%);
		}

		.header__right-part .header__language_menu .language_menu .fa {
			color: #fff;
			font-size: 16px;
			display: block;
			line-height: 40px;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .language_menu .fa {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .sub-menu_container {
			min-width: 55px;
			top: 35px;
			left: 11px;
		}

		.header__right-part .header__language_menu .sub-menu_container a:hover {
			background: rgba(255, 255, 255, .5);
		}

		.header__right-part .header__language_menu .sub-menu_container a:hover:after {
			color: #666;
		}

		.header__right-part .header__language_menu .sub-menu_container .sub-menu {
			background: rgba(255, 255, 225, .3);
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .sub-menu_container .sub-menu {
				background: #fff;
				box-shadow: 0 2px 15px rgba(0, 0, 0, .16);
			}
		}

		.header__right-part .header__language_menu a:after {
			color: #fff;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu a:after {
				color: #666;
			}
		}

		.header__right-part .header__language_menu .lang__arrow {
			width: 8px;
			height: 5px;
			right: -3px;
		}

		.header__right-part .header__language_menu .lang__arrow path {
			fill: #fff;
		}

		@media (max-width:965px) {
			.header__right-part .header__language_menu .lang__arrow path {
				fill: #666;
			}
		}

		.header__user {
			position: relative;
		}

		.header__user:focus {
			outline: 0;
		}

		@media (max-width:965px) {
			.header__user {
				width: 100%;
				padding: 0;
			}
		}

		.header__user.not__login {
			margin-left: auto;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		@media (max-width:965px) {
			.header__user.not__login {
				border-top: 1px solid #f1f1f1;
				padding: 13px 20px;
				text-align: center;
				justify-content: center;
			}

			.header__user.not__login .signin__btn {
				background: #06f;
				color: #fff;
			}

			.header__user.not__login .signin__btn:hover {
				background: #267dff;
				color: #fff;
			}
		}

		.header__menu-mobile {
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		@media (max-width:965px) {
			.header__menu-mobile {
				display: none;
				position: absolute;
				width: 300px;
				right: 30px;
				top: 10px;
				flex-direction: column;
				background: #fff;
				box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
				border-radius: 5px;
				align-items: flex-start;
				justify-content: flex-start;
			}
		}

		@media (max-width:415px) {
			.header__menu-mobile {
				right: 8px;
			}
		}

		.header__menu-mob {
			display: none;
			align-items: center;
			justify-content: center;
			flex-direction: column;
			cursor: pointer;
		}

		.header__menu-mob span {
			display: block;
			width: 25px;
			height: 2px;
			border-radius: 4px;
			background: #06f;
			margin-bottom: 5px;
		}

		.header__menu-mob span:last-of-type {
			margin-bottom: 0;
		}

		@media (max-width:965px) {
			.header__menu-mob {
				display: flex;
			}
		}

		.mobile__close {
			flex-direction: column;
			align-items: flex-end;
			justify-content: center;
			padding: 5px 15px 0 0;
			margin-left: auto;
			cursor: pointer;
			display: none;
			height: 40px;
			width: 100%;
			position: relative;
			z-index: 10;
		}

		@media (max-width:965px) {
			.mobile__close {
				display: flex;
			}
		}

		.mobile__close span {
			display: block;
			width: 15px;
			height: 3px;
			background: #06f;
			border-radius: 5px;
		}

		.mobile__close span:first-of-type {
			margin: -2px 0 0 -1px;
			-webkit-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			-o-transform: rotate(45deg);
			transform: rotate(45deg);
		}

		.mobile__close span:nth-child(2) {
			margin: -3px 0 0 -1px;
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			-o-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}

		.signin__btn {
			background: 0 0;
			border-radius: 25px;
			border: none;
			min-width: 100px;
			padding: 0 10px;
			height: 36px;
			color: #666;
			opacity: 1;
			font-size: 14px;
			font-weight: 500;
			cursor: pointer;
			transition: .2s;
			line-height: 10px;
		}

		.signin__btn:hover {
			box-shadow: none;
			color: #267dff;
		}

		.semscale_btn {
			background: #06f;
			box-shadow: 0 4px 10px rgba(1, 71, 243, .05);
			border-radius: 4px;
			padding: 11px 30px;
			min-width: 110px;
			color: #fff;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-weight: 500;
			font-size: 14px;
			border: none;
			cursor: pointer;
			transition: background .3s, color .3s, box-shadow .3s;
		}

		.semscale_btn:focus {
			outline: 0;
		}

		.semscale_btn:hover {
			color: #fff;
			background: #267dff;
			box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
		}

		body.front__page .semscale_btn {
			background: rgba(255, 255, 255, .15);
		}

		@media (max-width:768px) {
			body.front__page .semscale_btn {
				margin: 0 auto;
				background: #06f;
				color: #fff;
			}
		}

		body.front__page .semscale_btn:hover {
			background: rgba(255, 255, 255, .2);
		}



		header {
			display: block;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ul {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ul ul {
			margin-bottom: 0;
		}

		a {
			color: #007bff;
			text-decoration: none;
			background-color: transparent;
			-webkit-text-decoration-skip: objects;
		}

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

		img {
			vertical-align: middle;
			border-style: none;
		}

		svg {
			overflow: hidden;
			vertical-align: middle;
		}

		button {
			text-transform: none;
		}

		button {
			-webkit-appearance: button;
		}

		button::-moz-focus-inner {
			padding: 0;
			border-style: none;
		}

		.sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border: 0;
		}

		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		button:focus {
			outline: 0;
		}
	}

	.active {
		display: flex;
	}


	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}



		h2 {
			margin-top: 0;
			margin-bottom: .5rem;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		.collapse:not(.show) {
			display: none;
		}
	}

	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		.front__faq {
			background: #fff;
		}

		.front__faq .wrapper {
			padding: 70px 0;
		}

		@media (max-width:640px) {
			.front__faq .wrapper {
				padding: 45px 0;
			}
		}

		.front__faq .title {
			line-height: 30px;
			font-size: 35px;
			text-align: center;
			color: #313135;
			margin-bottom: 15px;
		}

		@media (max-width:640px) {
			.front__faq .title {
				font-size: 28px;
				line-height: 35px;
			}
		}

		.front__faq .description {
			line-height: 30px;
			font-size: 18px;
			text-align: center;
			color: #5b5e6d;
			margin-bottom: 30px;
		}

		@media (max-width:640px) {
			.front__faq .description {
				font-size: 16px;
				line-height: 23px;
			}
		}

		.front__faq-block {
			width: 770px;
			margin: 0 auto;
		}

		@media (max-width:820px) {
			.front__faq-block {
				width: 100%;
			}
		}

		.front__faq-block .panel {
			background: #fff;
			box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
			border-radius: 5px;
			border: none;
			margin-bottom: 30px;
		}

		@media (max-width:640px) {
			.front__faq-block .panel {
				margin-bottom: 20px;
			}
		}

		.front__faq-block .panel .panel-heading {
			background: #fff;
			border-radius: 5px;
			border: none;
			display: flex;
			padding: 0;
		}

		.front__faq-block .panel .panel-title {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			width: 100%;
			cursor: pointer;
			position: relative;
			padding: 20px 40px;
		}

		@media (max-width:640px) {
			.front__faq-block .panel .panel-title {
				padding: 20px;
			}
		}

		.front__faq-block .panel .panel-title h3 {
			font-weight: 400;
			line-height: 24px;
			font-size: 16px;
			color: #5b5e6d;
			margin: 0;
			transition: .2s;
			padding-right: 35px;
			text-align: left;
		}

		@media (max-width:640px) {
			.front__faq-block .panel .panel-title h3 {
				font-size: 14px;
				line-height: 20px;
			}
		}

		.front__faq-block .panel .panel-title .faq__arrow {
			margin: 0 0 0 20px;
			min-width: 30px;
			min-height: 30px;
			background: 0 0;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			background-repeat: no-repeat;
			background-position: center;
			background-size: 7px;
			transition: all .3s;
			position: absolute;
			right: 20px;
			top: 18px;
		}

		.front__faq-block .panel .panel-title:hover h3 {
			color: #267dff;
		}

		.front__faq-block .panel .panel-body {
			border: none;
			padding: 0 40px 20px 40px;
			line-height: 21px;
			font-size: 14px;
			color: #5b5e6d;
			text-align: left;
		}

		@media (max-width:640px) {
			.front__faq-block .panel .panel-body {
				padding: 0 20px 20px 20px;
			}
		}

		.front__faq-block .panel-default>.panel-heading+.panel-collapse>.panel-body {
			border: none;
		}


		h2,
		h3 {
			margin-top: 0;
			margin-bottom: .5rem;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ul {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		a {
			color: #007bff;
			text-decoration: none;
			background-color: transparent;
			-webkit-text-decoration-skip: objects;
		}

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

		.collapse:not(.show) {
			display: none;
		}

		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		a {
			color: #06f;
			font-size: 14px;
			text-decoration: none;
			transition: .2s;
		}

		a:hover {
			text-decoration: none;
			color: #267dff;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}
	}

	@media all {
		::-webkit-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		::-moz-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		:-ms-input-placeholder {
			color: #898c8e;
			font-weight: 100;
		}

		main {
			margin: 0;
			padding: 0;
			min-height: 80vh;
			font-size: 14px;
		}

		.wrapper {
			width: 1170px;
			margin: 0 auto;
		}

		@media (max-width:1250px) {
			.wrapper {
				width: 90%;
			}
		}

		button:focus {
			outline: 0;
		}

		.btn {
			display: table;
			background: #06f;
			margin: 50px auto;
			border: none;
			border-radius: 4px;
			color: #fff;
			font-size: 14px;
			line-height: 14px;
			text-transform: uppercase;
			letter-spacing: 1px;
			font-weight: 500;
			padding: 17px 30px 15px 30px;
			box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
			background-position: center;
			transition: background .8s;
		}

		.btn:focus {
			outline: 0;
			color: #fff;
			box-shadow: none;
		}

		.btn:hover {
			outline: 0;
			color: #fff;
			background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		}

		.btn:active {
			outline: 0;
			color: #fff;
			box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
			background-color: #6eb9f7;
			background-size: 100%;
			transition: background 0s;
		}

		.contacts__main {
			overflow: hidden;
		}

		.contacts__title {
			margin: 10px auto 29px auto;
			font-weight: 600;
			line-height: normal;
			font-size: 25px;
			text-align: center;
			color: #313135;
		}

		@media (max-width:640px) {
			.contacts__title {
				margin-top: 50px;
			}
		}

		.contacts__description {
			font-weight: 400;
			line-height: 27px;
			font-size: 18px;
			text-align: center;
			color: #000;
			margin: 0 auto 10px auto;
			width: 450px;
		}

		@media (max-width:768px) {
			.contacts__description {
				width: 100%;
				padding: 0 10px;
			}
		}

		.contacts__form {
			position: relative;
			background: #fff;

			border-radius: 15px;
			padding: 40px 60px 20px 60px;
			display: flex;
			flex-direction: row;
			width: 80%;
			margin: 20px auto 15px auto;
		}

		.contact_list {
			height: 300px;
			align-items: center;
			lign-items: center;
			flex-direction: column;
			justify-content: space-evenly;
			/* margin: 30px; */
			display: flex;
		}

		.footer-widget {
			width: 50%;
		}
	}

	@media (max-width:900px) {
		.contacts__form {
			width: 450px;
			padding: 40px 42px 10px 42px;
			flex-direction: column;
		}
	}

	@media (max-width:640px) {
		.contacts__form {
			width: 100%;
			padding: 30px;
			flex-direction: column !important;
		}
	}

	.contacts__form:after {
		content: '';
		position: absolute;
		right: -185px;
		bottom: -30px;
		width: 318.12px;
		height: 300.65px;
		background-image: url(../img/contact_after.png);
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
		z-index: 10;
	}

	@media (max-width:900px) {
		.contacts__form:after {
			height: 250px;
		}
	}

	@media (max-width:640px) {
		.contacts__form:after {
			display: none;
		}
	}

	.contacts__form input,
	.contacts__form textarea {
		width: 100%;
		background: 0 0;
		padding: 10px 0;
		border: none;
		border-bottom: 2px solid #e6e6e6;
		font-weight: 700;
		line-height: 18px;
		font-size: 20px;
		color: #666;
		margin-bottom: 35px;
		resize: none;
	}

	.contacts__form input::-webkit-input-placeholder,
	.contacts__form textarea::-webkit-input-placeholder {
		font-size: 16px;
		color: #666;
		font-weight: 700;
	}

	.contacts__form input:-moz-placeholder,
	.contacts__form textarea:-moz-placeholder {
		font-size: 16px;
		color: #666;
		font-weight: 700;
	}

	.contacts__form input::-moz-placeholder,
	.contacts__form textarea::-moz-placeholder {
		font-size: 16px;
		color: #666;
		font-weight: 700;
	}

	.contacts__form input:-ms-input-placeholder,
	.contacts__form textarea:-ms-input-placeholder {
		font-size: 16px;
		color: #666;
		font-weight: 700;
	}

	.contacts__form input:focus,
	.contacts__form textarea:focus {
		background: 0 0;
		outline: 0;
		box-shadow: none;
	}

	.contacts__form input:focus::-webkit-input-placeholder,
	.contacts__form textarea:focus::-webkit-input-placeholder {
		color: transparent;
	}

	.contacts__form input:focus:-moz-placeholder,
	.contacts__form textarea:focus:-moz-placeholder {
		color: transparent;
	}

	.contacts__form input:focus::-moz-placeholder,
	.contacts__form textarea:focus::-moz-placeholder {
		color: transparent;
	}

	.contacts__form input:focus:-ms-input-placeholder,
	.contacts__form textarea:focus:-ms-input-placeholder {
		color: transparent;
	}

	.contacts__form textarea {
		height: 130px;
	}

	.contacts__form .btn {
		margin: 0 auto;
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.contacts__form .btn .loading {
		display: none;
		height: 100%;
		width: auto;
	}

	.contacts__form-input {
		position: relative;
	}

	.contacts__form-input p {
		opacity: 0;
		margin: 0;
		position: absolute;
		bottom: 15px;
		left: 0;
		font-size: 12px;
		color: #ff4b55;
		transition: .2s;
	}


}

@media all {



	img {
		vertical-align: middle;
		border-style: none;
	}

	button {
		border-radius: 0;
	}

	button:focus {
		outline: 1px dotted;
		outline: 5px auto -webkit-focus-ring-color;
	}

	

	button,
	input {
		overflow: visible;
	}

	button {
		text-transform: none;
	}

	[type=submit],
	button {
		-webkit-appearance: button;
	}

	[type=submit]::-moz-focus-inner,
	button::-moz-focus-inner {
		padding: 0;
		border-style: none;
	}

	textarea {
		overflow: auto;
		resize: vertical;
	}

	h1,
	h2 {
		margin-bottom: .5rem;
		font-family: 'Raleway', sans-serif ;
		font-weight: 500;
		line-height: 1.2;
		color: inherit;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.btn {
		display: inline-block;
		font-weight: 400;
		text-align: center;
		white-space: nowrap;
		vertical-align: middle;
		user-select: none;
		border: 1px solid transparent;
		padding: .375rem .75rem;
		font-size: 1rem;
		line-height: 1.5;
		border-radius: .25rem;
		transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	}

	@media screen and (prefers-reduced-motion:reduce) {
		.btn {
			transition: none;
		}
	}

	.btn:focus,
	.btn:hover {
		text-decoration: none;
	}

	.btn:focus {
		outline: 0;
		box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
	}

	.btn:disabled {
		opacity: .65;
	}

	@media print {

		*,
		::after,
		::before {
			text-shadow: none !important;
			box-shadow: none !important;
		}

		img {
			page-break-inside: avoid;
		}

		h2,
		p {
			orphans: 3;
			widows: 3;
		}

		h2 {
			page-break-after: avoid;
		}
	}

	::-webkit-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	::-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-ms-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	main {
		margin: 0;
		padding: 0;
		min-height: 80vh;
		font-size: 14px;
	}

	.wrapper {
		width: 1170px;
		margin: 0 auto;
	}

	@media (max-width:1250px) {
		.wrapper {
			width: 90%;
		}
	}

	button:focus {
		outline: 0;
	}

	.btn {
		display: table;
		background: #06f;
		margin: 50px auto;
		border: none;
		border-radius: 4px;
		color: #fff;
		font-size: 14px;
		line-height: 14px;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
		padding: 17px 30px 15px 30px;
		box-shadow: 0 3px 1px -2px rgba(0, 102, 255, .2), 0 2px 2px 0 rgba(0, 102, 255, .14), 0 1px 5px 0 rgba(0, 102, 255, .12);
		background-position: center;
		transition: background .8s;
	}

	.btn:focus {
		outline: 0;
		color: #fff;
		box-shadow: none;
	}

	.btn:hover {
		outline: 0;
		color: #fff;
		background: #267dff radial-gradient(circle, transparent 1%, #267dff 1%) center/15000%;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
	}

	.btn:active {
		outline: 0;
		color: #fff;
		box-shadow: 0 2px 4px -1px rgba(0, 102, 255, .2), 0 4px 5px 0 rgba(0, 102, 255, .14), 0 1px 10px 0 rgba(0, 102, 255, .12);
		background-color: #6eb9f7;
		background-size: 100%;
		transition: background 0s;
	}
}

.check_firstblock {
	height: 100vh;
}

.container_check {
	margin-top: 10%;
}

.check_textarea {
	border-radius: 10px;
	background: #fff;
	padding: 20px;
	min-height: 200px;
}

@media all {
	::-webkit-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	::-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-ms-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	a {
		color: #06f;
		font-size: 14px;
		text-decoration: none;
		transition: .2s;
	}

	a:hover {
		text-decoration: none;
		color: #267dff;
	}

	.wrapper {
		width: 1170px;
		margin: 0 auto;
	}

	@media (max-width:1250px) {
		.wrapper {
			width: 90%;
		}
	}

	button:focus {
		outline: 0;
	}

	.article__seo-search {
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 547px;
		height: 56px;
		background: #fff;
		border: 1px solid #f5f5f5;
		border-radius: 4px;
		padding: 7px 7px 7px 16px;
		box-sizing: border-box;
		position: relative;
		z-index: 10;
		transition: .25s;
	}

	@media (max-width:640px) {
		.article__seo-search {
			width: 100%;
		}
	}

	.article__seo-search::placeholder {
		color: #90a0b7;
	}

	.article__seo-search .error,
	.article__seo-search .error__limits {
		display: none;
		position: absolute;
		color: #ff4b55;
		z-index: 3;
		font-size: 11px;
		left: 17px;
		right: auto;
		bottom: 4px;
	}

	.article__seo-search .error__limits a {
		font-size: 11px;
		border-bottom: 1px dashed;
	}

	.article__seo-search .error__limits a:hover {
		color: #267dff;
	}

	@media (max-width:768px) {

		.article__seo-search .error,
		.article__seo-search .error__limits {
			left: 20px;
			font-size: 11px;
		}

		.article__seo-search .error__limits a {
			font-size: 11px;
		}
	}

	@media (max-width:640px) {

		.article__seo-search .error,
		.article__seo-search .error__limits {
			line-height: 20px;
			top: 57px;
			bottom: auto;
			left: 20px;
			text-align: left;
			color: #fff;
		}

		.article__seo-search .error__limits a {
			color: #fff;
		}
	}

	.article__seo-search input {
		line-height: normal;
		font-size: 13px;
		width: 100%;
		height: 100%;
		text-align: left;
		border: none;
		position: relative;
		z-index: 2;
		color: #313135;
	}

	.article__seo-search input::placeholder {
		font-size: 13px;
		color: #90a0b7;
	}

	@media (max-width:820px) {
		.article__seo-search input {
			padding-left: 0;
		}
	}

	.article__seo-search input:focus {
		outline: 0;
	}

	.article__seo-search input:focus::placeholder {
		color: transparent;
	}



	@media (max-width:820px) {
		.article__seo-search button {
			width: 45px;
			height: 45px;
			min-width: 45px;
		}
	}

	.audit__first {
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	@media (max-width:640px) {
		.audit__first {
			height: auto;
			padding: 100px 0 50px 0;
		}
	}

	.audit__first:before {
		position: absolute;
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url(https://mongray.com/svg/audit__landing.svg);
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.audit__first-container {
		position: relative;
		text-align: center;
		color: #fff;
	}

	.audit__first-container h1 {
		font-weight: 500;
		line-height: normal;
		font-size: 44px;
		margin: 0 0 25px 0;
	}

	@media (max-width:768px) {
		.audit__first-container h1 {
			font-size: 40px;
		}
	}

	@media (max-width:640px) {
		.audit__first-container h1 {
			font-size: 30px;
			line-height: 41px;
		}
	}

	.audit__first-container h2 {
		line-height: 31px;
		font-size: 21px;
		margin: 0 0 50px 0;
		font-weight: 400;
	}

	@media (max-width:768px) {
		.audit__first-container h2 {
			line-height: 33px;
			font-size: 21px;
		}
	}

	@media (max-width:640px) {
		.audit__first-container h2 {
			line-height: 23px;
			font-size: 17px;
		}
	}

	body .audit__landing .article__seo-search button {
		background: #21cebc;
		box-shadow: 0 4px 10px rgba(33, 206, 188, .24);
		min-width: 60px;
		width: 60px;
	}

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

@media all {



	h1,
	h2 {
		margin-top: 0;
		margin-bottom: .5rem;
	}

	a {
		color: #007bff;
		text-decoration: none;
		background-color: transparent;
		-webkit-text-decoration-skip: objects;
	}

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

	img {
		vertical-align: middle;
		border-style: none;
	}

	button {
		border-radius: 0;
	}

	button:focus {
		outline: 1px dotted;
		outline: 5px auto -webkit-focus-ring-color;
	}

	

	button,
	input {
		overflow: visible;
	}

	button {
		text-transform: none;
	}

	[type=submit],
	button {
		-webkit-appearance: button;
	}

	[type=submit]::-moz-focus-inner,
	button::-moz-focus-inner {
		padding: 0;
		border-style: none;
	}

	h1,
	h2 {
		margin-bottom: .5rem;
		font-family: 'Raleway', sans-serif ;
		font-weight: 500;
		line-height: 1.2;
		color: inherit;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	@media print {

		*,
		::after,
		::before {
			text-shadow: none !important;
			box-shadow: none !important;
		}

		a:not(.btn) {
			text-decoration: underline;
		}

		img {
			page-break-inside: avoid;
		}

		h2 {
			orphans: 3;
			widows: 3;
		}

		h2 {
			page-break-after: avoid;
		}
	}

	::-webkit-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	::-moz-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	:-ms-input-placeholder {
		color: #898c8e;
		font-weight: 100;
	}

	a {
		color: #06f;
		font-size: 14px;
		text-decoration: none;
		transition: .2s;
	}

	a:hover {
		text-decoration: none;
		color: #267dff;
	}

	.wrapper {
		width: 1170px;
		margin: 0 auto;
	}

	@media (max-width:1250px) {
		.wrapper {
			width: 90%;
		}
	}

	button:focus {
		outline: 0;
	}

	.article__seo-search {
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 547px;
		height: 56px;
		background: #fff;
		border: 1px solid #f5f5f5;
		border-radius: 50px;
		padding: 7px 7px 7px 16px;
		box-sizing: border-box;
		position: relative;
		z-index: 10;
		transition: .25s;
	}

	@media (max-width:640px) {
		.article__seo-search {
			width: 100%;
		}
	}

	.article__seo-search::placeholder {
		color: #90a0b7;
	}

	.article__seo-search .error,
	.article__seo-search .error__limits {
		display: none;
		position: absolute;
		color: #ff4b55;
		z-index: 3;
		font-size: 11px;
		left: 17px;
		right: auto;
		bottom: 4px;
	}

	.article__seo-search .error__limits a {
		font-size: 11px;
		border-bottom: 1px dashed;
	}

	.article__seo-search .error__limits a:hover {
		color: #267dff;
	}

	@media (max-width:768px) {

		.article__seo-search .error,
		.article__seo-search .error__limits {
			left: 20px;
			font-size: 11px;
		}

		.article__seo-search .error__limits a {
			font-size: 11px;
		}
	}

	@media (max-width:640px) {

		.article__seo-search .error,
		.article__seo-search .error__limits {
			line-height: 20px;
			top: 57px;
			bottom: auto;
			left: 20px;
			text-align: left;
			color: #fff;
		}

		.article__seo-search .error__limits a {
			color: #fff;
		}
	}

	.article__seo-search input {
		line-height: normal;
		font-size: 13px;
		width: 100%;
		height: 100%;
		text-align: left;
		border: none;
		position: relative;
		z-index: 2;
		color: #313135;
	}

	.article__seo-search input::placeholder {
		font-size: 13px;
		color: #90a0b7;
	}

	@media (max-width:820px) {
		.article__seo-search input {
			padding-left: 0;
		}
	}

	.article__seo-search input:focus {
		outline: 0;
	}

	.article__seo-search input:focus::placeholder {
		color: transparent;
	}



	@media (max-width:820px) {
		.article__seo-search button {
			width: 45px;
			height: 45px;
			min-width: 45px;
		}
	}
}

.page-content {
	width: 100%;
	margin: 0 auto;
	background-image: -moz-linear-gradient(136deg, rgb(0, 158, 253) 0%, rgb(42, 245, 152) 100%);
	background-image: -webkit-linear-gradient(136deg, rgb(0, 158, 253) 0%, rgb(42, 245, 152) 100%);
	background-image: -ms-linear-gradient(136deg, rgb(0, 158, 253) 0%, rgb(42, 245, 152) 100%);
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}

.form-v8-content {
	background: #fff;
	width: 937px;
	border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
	margin: 177px 0;
	font-family: 'Raleway', sans-serif ;
	color: #fff;
	position: relative;
	display: flex;
	display: -webkit-flex;
}

.form-v8-content .form-left {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: -4px;
}

.form-v8-content .form-left img {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.form-v8-content .form-right {
	padding: 30px 0;
	position: relative;
	width: 100%;
	background: #3d5983;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.form-v8-content .tab {
	margin: 5px 30px 45px 20px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-o-justify-content: space-between;
	-ms-justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
}

.checkbox input {
	width: unset !important;
	padding: unset !important;
	border: unset !important;
	border-bottom: unset !important;
	border-bottom-color: unset !important;
	background: unset !important;
	appearance: unset !important;
	-moz-appearance: unset;
	-webkit-appearance: checkbox !important;
}

.form-v8-content .tab .tab-inner {
	width: 100%;
}

.form-v8-content .tab .tablinks {
	background: transparent;
	border: none;
	outline: none;
	-o-outline: none;
	-ms-outline: none;
	-moz-outline: none;
	-webkit-outline: none;
	font-family: 'Raleway', sans-serif ;
	font-size: 28px;
	font-weight: 400;
	color: #ccc;
	padding-bottom: 22px;
	border-bottom: 3px solid;
	border-bottom-color: rgba(255, 255, 255, 0.2);
	width: 100%;
}

.form-v8-content .tab .tablinks.active {
	font-weight: 700;
	color: #fff;
	border-bottom-color: #30e1df;
}

.form-v8-content .form-detail {
	padding: 0 40px;
}

.form-v8-content .form-row {
	width: 100%;
	position: relative;
}

.form-v8-content .form-row .form-row-inner {
	position: relative;
	width: 100%;
}

.form-v8-content .form-row .form-row-inner .label {
	position: absolute;
	top: -2px;
	left: 10px;
	font-size: 18px;
	color: #f2f2f2;
	font-weight: 400;
	transform-origin: 0 0;
	transition: all .2s ease;
	-moz-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	-ms-transition: all .2s ease;
}

.form-v8-content .form-row .form-row-inner .border {
	position: absolute;
	bottom: 31px;
	left: 0;
	height: 1px;
	width: 100%;
	background: #53c83c;
	transform: scaleX(0);
	-moz-transform: scaleX(0);
	-webkit-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform-origin: 0 0;
	transition: all .15s ease;
	-moz-transition: all .15s ease;
	-webkit-transition: all .15s ease;
	-o-transition: all .15s ease;
	-ms-transition: all .15s ease;
}

.form-v8-content .form-detail .input-text {
	margin-bottom: 31px;
}

.form-v8-content .form-detail input {
	width: 100%;
	padding: 0px 10px 15px 10px;
	border: 1px solid transparent;
	border-bottom: 1px solid;
	border-bottom-color: rgba(255, 255, 255, 0.2);
	background: transparent;
	appearance: unset;
	-moz-appearance: unset;
	-webkit-appearance: unset;
	-o-appearance: unset;
	-ms-appearance: unset;
	outline: none;
	-moz-outline: none;
	-webkit-outline: none;
	-o-outline: none;
	-ms-outline: none;
	font-size: 18px;
	color: #fff;
	font-weight: 300;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.form-v8-content .form-detail .form-row .input-text:focus {
	border-bottom: 1px solid #53c83c;
	background: transparent;
}

.form-v8-content .form-detail .form-row .input-text:focus+.label,
.form-v8-content .form-detail .form-row .input-text:valid+.label {
	transform: translateY(-26px) scale(1);
	-moz-transform: translateY(-26px) scale(1);
	-webkit-transform: translateY(-26px) scale(1);
	-o-transform: translateY(-26px) scale(1);
	-ms-transform: translateY(-26px) scale(1);

}

.form-v8-content .form-detail .form-row .input-text:focus+.border,
.form-v8-content .form-detail .form-row .input-text:valid+.border {
	transform: scaleX(1);
	-moz-transform: scaleX(1);
	-webkit-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);

}

.form-v8-content .form-detail .register {
	background: #fff;
	border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 160px;
	border: none;
	margin: 5px 0 50px 0px;
	cursor: pointer;
	font-family: 'Raleway', sans-serif ;
	color: #333;
	font-weight: 700;
	font-size: 18px;
}

.form-v8-content .form-detail .register:hover {
	background: #ccc;
}

.form-v8-content .form-detail .form-row-last input {
	padding: 11px;
}

.button_link {
	color: #fff;
	text-decoration: none;
	font-size: 16px;

}

.button_link:hover {
	color: #777 !important;
	text-decoration: underline;
}



.bottom__cookie-block {
	padding: 10px;
	width: 100%;
	height: 120px;
	background-color: rgba(0, 0, 0, 0.89);
	display: none;
	position: fixed;
	bottom: 0;
	z-index: 100000;
	text-align: center;
	-webkit-transform: translateZ(0);
}

.bottom__cookie-block p {
	color: #fff !important;
}

.ok,
.more {
	border: 1px solid #fff;
	padding: 10px 25px;
	border-radius: 30px;
	background: #fff;
	color: #000 !important;
}
}

.ok {
	margin-right: 20px;
}

/* Responsive */
@media screen and (max-width: 991px) {
	.form-v8-content {
		margin: 180px 20px;
		flex-direction: column;
		-o-flex-direction: column;
		-ms-flex-direction: column;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
	}

	.form-v8-content .form-left {
		display: none;

	}

	.form-v8-content .form-left img {
		width: 100%;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 8px;
	}

	.form-v8-content .form-right {
		width: auto;
		border-top-right-radius: 0;
		border-bottom-left-radius: 8px;
	}

	.form-v8-content .tab {
		margin-top: 45px;
	}

	.form-v8-content .form-detail .register {
		margin-bottom: 80px;
	}
}

.popup-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: none;
	border-radius: 0 50px 50px 0;
	min-width: 140px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;

}

.popup_text {
	color: #777 !important;
	border: 1px solid #777 !important;
}

@media screen and (max-width: 325px) {
	.form-v8-content .tab {
		flex-direction: column;
		-o-flex-direction: column;
		-ms-flex-direction: column;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

/*! CSS Used from: https://themesdesign.in/stexo/layouts/vertical/assets/css/bootstrap.min.css */
*,
::after,
::before {
	box-sizing: border-box;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

button,
input {
	margin: 0;
	font-family: 'Raleway', sans-serif ;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button {
	text-transform: none;
}

[type=submit],
button {
	-webkit-appearance: button;
}

[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
	.form-control {
		transition: none;
	}
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #495057;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:disabled {
	background-color: #e9ecef;
	opacity: 1;
}

.form-group {
	margin-bottom: 1rem;
}

.mb-0 {
	margin-bottom: 0 !important;
}

@media print {

	*,
	::after,
	::before {
		text-shadow: none !important;
		box-shadow: none !important;
	}
}

/*! CSS Used from: https://themesdesign.in/stexo/layouts/vertical/assets/css/icons.css */
.fa {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.fa-search:before {
	content: "\f002";
}

.fa {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

/*! CSS Used from: https://themesdesign.in/stexo/layouts/vertical/assets/css/style.css */
* {
	outline: none !important;
}

.app-search {
	position: relative;
	margin-top: 18px;
}

.app-search .form-control,
.app-search .form-control:focus {
	border: 1px solid #f0f4f7;
	font-size: 13px;
	height: 34px;
	padding-left: 18px;
	padding-right: 40px;
	margin-right: 16px;
	background: #f0f4f7;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 30px;
	width: 200px;
	border: none;
}

.app-search button {
	position: absolute;
	top: 9px;
	right: 26px;
	display: block;
	color: #9ca8b3;
	font-size: 11px;
	border: none;
	background-color: transparent;
}

button:focus {
	outline: none;
}

.form-control {
	font-size: 13px;
}

.form-control:focus {
	border-color: #30419b;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.flex_btn {
	width: 275px;
    display: flex;
    flex-direction: row;
}
@media (min-width: 992px) {
.flex_search {

    margin-top: 55px;
}
}
.search {
	margin-left: -55px;
	width: 25px;
}

.register__text .register__form form .site-btn {
position: relative !important;
right: 0 !important;
top: 15px !important;
}

@media all and (max-width: 999px) { 

.register__text .register__form form input {

  font-size: 11px !important;

}
} .small, small {
    font-size: 1.15em;
    font-weight: 400;
}
.audit__first-container h2 {
    line-height: 28px;
    font-size: 22px;
    margin: 0 0 20px 0;
    font-weight: 400;
}
.register__text .register__form form input {
    font-size: 11px !important;
    margin-bottom: 20px;
}
.site-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 41px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 46px;
    transition: all 1.5s ease;
}

header {
margin-top: -25px; }
.marquee{
width:100%;
white-space:nowrap;

}
 
.marquee span {
color:#fff;
font-size:25px;
display:inline-block;
padding-left:100%;
-webkit-animation: marquee 27s infinite linear;
animation: marquee 27s infinite linear;
    margin-bottom: 20px;
}
 
@-webkit-keyframes marquee {
0%{-webkit-transform: translate(0, 0);}
100%{-webkit-transform: translate(-100%, 0);}
}
@keyframes marquee{
0%{transform: translate(0, 0);}
100%{transform: translate(-100%, 0)}
}
.textrotator {
    font-size: 22px;
    font-family: 'Raleway', sans-serif !important;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}
@media (max-width: 640px) {
.audit__first {
    height: 90vh !important;
    padding: 100px 0 50px 0;
}
}