html body {
	color: #51626b;
}

.fw-page-builder-content .fw-container-fluid {
	padding: 0px;
}
.brends .fw-row {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
}
.brends img {
	display: block;
	margin: 10px auto;
}
.custom-line hr {
	border-top: 1px solid #7bd6cf;
}
body hr {
	border-top: 2px solid #e3e6eb;
}
h2 {
	font-weight: normal;
	font-size: 38px;
}
.about-company h2 {
	margin: 0px;
}
.about-company h4 {
	margin: 0px;
	text-transform: uppercase;
	font-weight: 100;
}
.about-company p {
	width: 75%;
	margin: 25px auto 35px;
	font-size: 13px;
}
.about-company a, .icon-section a {
	padding: 11px 41px;
	background: #23bfb4;
	color: white;
	text-transform: uppercase;
	font-size: 15px;
	border-radius: 3px;
	margin-bottom: 30px;
}
.icon-section {
	padding-bottom: 35px;
}
.icon-section img, .service-section img {
	display: block;
	margin: 30px auto;
}
.icon-section p, .service-section p {
	margin-bottom: 38px;
	line-height: 18px;
}

.service-section {
	color: white;
	background-repeat: no-repeat;
	background-size: contain;
}
.service-section h2 {
	font-size: 30px;
	font-weight: 600;
}
.service-section .fw-container-fluid {
	background: rgba(42, 193, 186, 0.85);
}
.service-section .fw-row {
	width: 55%;
	margin: 0px auto;
}
.us-news {
	text-align: center;
	padding-bottom: 50px;
}
.us-news .item {
	background: white;
}
.us-news .fw-container {
	width: 73%;
}
.news-carousel .item {
	padding: 10px;
	border-radius: 5px;
	
}
.news-carousel .owl-item {
	box-shadow: 0px 0px 72px -33px black;
	margin-top: 25px;
	margin-bottom: 25px;
}
.news-carousel h3 {
	font-size: 14px;
	margin-bottom: 2px;
	font-family: "RalewayLight", sans-serif;
	font-weight: bold;
}
.news-carousel .data {
	font-size: 11px;
	color: #71d3cc;
	font-family: "RalewayLight", sans-serif;
}
.news-carousel .description {
	font-size: 11px;
	line-height: 17px;
	width: 90%;
	margin: 0px auto 78px;
}
.news-carousel a {

	text-transform: uppercase;
	padding: 6px 22px;
	color: #57aaa2;
	font-family: "RalewayLight", sans-serif;
	font-weight: bold;
	font-size: 11px;
	border: 1px solid #e3e6eb;
	border-radius: 2px;
}
.news-carousel a:hover {
	background: #37afa3;
	color: white;
	transition: background .6s ease-out;
}
.news-carousel .owl-prev, .news-carousel .owl-next {
	position: absolute;
	top: 50%;
	color: #37afa3;
	font-size: 50px;
	font-weight: 100;
	margin-top: -45px;
}
.news-carousel .owl-prev {
	left: -70px;
}
.news-carousel .owl-next {
	right: -70px;
}


/* POPUP */
.mfp-content { width: auto; } 
.white-popup { position: relative; background: #FFF; border: 1px solid #000000; margin: 30px auto 0 auto; max-width: 580px; z-index: 100000; padding: 35px 35px 15px 35px; border-radius: 13px; border: 4px solid #3b9a08; } 
.mfp-close { top: 0; right: 0; color: #1f5601; font-size: 35px; }
.mfp-close:hover { color: #4d2102; }
.mfp-move-from-top .mfp-content { vertical-align: top; }
.mfp-move-from-top  .mfp-content  { opacity: 0; transition: all 0.2s; transform: translateY(-100px); }
.mfp-move-from-top.mfp-bg .mfp-content  { opacity: 0; transition: all 0.2s; }
.mfp-move-from-top.mfp-ready .mfp-content  { opacity: 1; transform: translateY(0); }
.mfp-move-from-top.mfp-ready.mfp-bg { opacity: 0.8; }
.mfp-move-from-top.mfp-removing .mfp-content  { transform: translateY(-50px); opacity: 0; }
.mfp-move-from-top.mfp-removing.mfp-bg { opacity: 0; }
.popm-title { margin-bottom: 15px; text-align: center; }
.popm-title h3 { display: inline-block; font-weight: normal; color: #3b9a08; text-transform: uppercase; font-size: 26px; line-height: 26px; }
.error-popup  { border-color: #d53720; text-align: center; }
.mfp-content .forma-input input:hover, .mfp-content .forma-textarea textarea:hover { background: #dddada; }



/**
 * Fade-zoom animation for first dialog
 */

 /* start state */
 .my-mfp-zoom-in .zoom-anim-dialog {
 	opacity: 0;

 	-webkit-transition: all 0.2s ease-in-out; 
 	-moz-transition: all 0.2s ease-in-out; 
 	-o-transition: all 0.2s ease-in-out; 
 	transition: all 0.2s ease-in-out; 



 	-webkit-transform: scale(0.8); 
 	-moz-transform: scale(0.8); 
 	-ms-transform: scale(0.8); 
 	-o-transform: scale(0.8); 
 	transform: scale(0.8); 
 }

 /* animate in */
 .my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
 	opacity: 1;

 	-webkit-transform: scale(1); 
 	-moz-transform: scale(1); 
 	-ms-transform: scale(1); 
 	-o-transform: scale(1); 
 	transform: scale(1); 
 }

 /* animate out */
 .my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
 	-webkit-transform: scale(0.8); 
 	-moz-transform: scale(0.8); 
 	-ms-transform: scale(0.8); 
 	-o-transform: scale(0.8); 
 	transform: scale(0.8); 

 	opacity: 0;
 }

 /* Dark overlay, start state */
 .my-mfp-zoom-in.mfp-bg {
 	opacity: 0;
 	-webkit-transition: opacity 0.3s ease-out; 
 	-moz-transition: opacity 0.3s ease-out; 
 	-o-transition: opacity 0.3s ease-out; 
 	transition: opacity 0.3s ease-out;
 }
 /* animate in */
 .my-mfp-zoom-in.mfp-ready.mfp-bg {
 	opacity: 0.8;
 }
 /* animate out */
 .my-mfp-zoom-in.mfp-removing.mfp-bg {
 	opacity: 0;
 }

 /*----------------------contacts form-------------------------*/
 .wpcf7 .wpcf7-text,
 .wpcf7 .wpcf7-textarea{
 	border:1px solid #ccd2d9;
 	padding:6px 8px;
 	color:#898786;
 	width:100%;
 	border-radius:5px;
 }
 .wpcf7 .wpcf7-textarea{
 	height:130px;
 	width:100%;
 }
 .wpcf7 .wpcf7-submit{
 	border:none;
 	color:#fff;
 	background:#7ecf7d;
 	padding:5px 25px;
 	border-radius:35px;
 	text-transform: uppercase;

 	-webkit-transition: all  .5s ease;
 	-moz-transition:  all .5s ease;
 	-o-transition:  all .5s ease;
 	transition:  all .5s ease;
 }

 .wpcf7 .wpcf7-submit:hover{
 	background:#f7c53d;
 	text-decoration: none;
 	-webkit-transition: all  .5s ease;
 	-moz-transition:  all .5s ease;
 	-o-transition:  all .5s ease;
 	transition:  all .5s ease;
 }

 .wpcf7 span.wpcf7-not-valid-tip{
 	font-size:12px;
 	line-height:1.2em;
 }

 .standart-form{
 	background: #fff;
 	padding: 40px 30px 10px 30px;
 	text-align: left;
 	max-width: 400px;
 	margin: 40px auto;
 	position: relative;
 	border-radius:5px;
 }

 .s2_message{
 	margin-top:28px;
 }
 .ask-us {
 	background-position: right;
 }
 .ask-us h2 {
 	margin-top: 50px;
 	margin-bottom: 0px;
 }
 .ask-us p {
 	margin-top: 0px;
 	font-size: 19px;
 	margin-bottom: 15px;
 }
 .ask-us .fw-row:nth-child(3) {
 	width: 100%;
 	margin-top: 24px;
 }
.ask-us .fw-row:nth-child(3) .fw-col-xs-12{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.ask-us .fw-row:nth-child(3) a {
	margin: 5px 20px;
}
 .ask-us .query {
 	background: white;
 	color: #1faea3;

 }
 .ask-us .query:hover {
 	background: #1faea3;
 }

 .ask-us .call-my {
 	background: #1faea3;
 	color: white;

 }
 .ask-us .call-my:hover {
 	background: white;
 	color: #1faea3;
 }
 .ask-us p i {
 	margin-right: 10px;
 	width: 33px;
 	height: 33px;
 	background: #1faea3;
 	border-radius: 2px;
 	padding: 7px 0px;
 }
 .ask-us a {
 	width: 190px;
 }
 .my-breadcrumbs {
 	background: linear-gradient(#cdd7d7 0%, #e6f2f1 40%);
 	border-top: 1px solid #cdd7d7;
 }
 .breadcrumbs .first-item a{
 	color: #57aaa2;
 	font-weight: bold;
 }
 .breadcrumbs .separator {
 	margin: 0px 5px;
 }
 .post h1 {
 	font-weight: 100;
 	text-transform: capitalize;
 	font-size: 34px;
 	margin-top: 33px;
 }
 .relatedposts {
 	text-align: center;
 	margin-top: 48px;
 }
 .relatedposts .owl-nav, .news-carousel .owl-nav {
 	display: block!important;
 }
 .page-call {
 	text-align: center;
 	margin-top: 40px;
 }
 .fw-btn {
 	display: inline-block;
 	margin-bottom: 0;
 	text-align: center;
 	vertical-align: middle;
 	cursor: pointer;
 	background-image: none;
 	border: 1px solid transparent;
 	text-decoration: none;
 	white-space: nowrap;
 	outline: none;
 	padding: 8px 20px;
 	font-size: 14px;
 	line-height: 1.6;
 	border-radius: 4px;
 	-webkit-user-select: none;
 	-moz-user-select: none;
 	-ms-user-select: none;
 	user-select: none;
 	-ms-transition: all 0.3s ease;
 	-webkit-transition: all 0.3s ease;
 	-o-transition: all 0.3s ease;
 	transition: all 0.3s ease;
 }
 .fw-btn span {
 	display: block;
 }
 .fw-btn:hover,
 .fw-btn:focus {
 	text-decoration: none;
 	outline: none;
 	opacity: 0.85;
 }
 .fw-btn:active {
 	box-shadow: inset 0 0 20px #2e935f;
 }
 .fw-btn i {
 	margin-right: 5px;
 }
 .fw-btn i.pull-right {
 	margin: 0 0 0 8px;
 	position: relative;
 	top: 0.3em;
 }
 /* Additional styles */
 .fw-btn.fw-btn-round {
 	border-radius: 38px;
 }
 .fw-btn.fw-btn-square {
 	border-radius: 0 !important;
 }
 .fw-btn.fw-btn-outline,
 .fw-btn.fw-btn-borders {
 	background: transparent;
 	box-shadow: none;
 	text-shadow: none;
 }
 /* Button Sizes */
 .fw-btn.fw-btn-lg {
 	padding: 15px 35px;
 	font-size: 17px;
 	line-height: 1.33;
 	border-radius: 6px;
 }
 .fw-btn.fw-btn-lg.fw-btn-round {
 	border-radius: 52px;
 }
 .fw-btn.fw-btn-lg i.pull-right {
 	top: 0.2em;
 }
 .fw-btn.fw-btn-sm {
 	padding: 4px 12px;
 	font-size: 12px;
 	line-height: 1.5;
 	border-radius: 3px;
 }
 .fw-btn.fw-btn-sm.fw-btn-round {
 	border-radius: 30px;
 }
 .fw-btn.fw-btn-sm i.pull-right {
 	top: 0.2em;
 }
 .fw-btn.fw-btn-full {
 	width: 100%;
 }
 /* Button Style 1 */
 .fw-btn-1 {
 	background-color: #5bcc92;
 	border-color: transparent;
 	border-width: 2px;
 	color: #ffffff;
 	font-family: Arial;
 	font-size: 14px;
 	font-weight: bold;
 	/* btn colors */
 }
 .fw-btn-1.fw-btn-outline {
 	border-color: #5bcc92;
 	color: #5bcc92;
 }
 .fw-btn-1.fw-btn-outline:hover,
 .fw-btn-1.fw-btn-outline:focus {
 	background-color: #5bcc92;
 	color: #ffffff;
 }
 .fw-btn-1:hover,
 .fw-btn-1:focus {
 	background-color: #82d8ac;
 	color: #ffffff;
 }
 .fw-btn-1.fw-btn-rounded {
 	border-radius: 4px;
 }
 .fw-btn-1.fw-btn-borders {
 	border-top: 2px solid #5bcc92;
 	border-bottom: 2px solid #5bcc92;
 	color: #5bcc92;
 	border-radius: 0;
 }
 .fw-btn-1.fw-btn-borders:hover,
 .fw-btn-1.fw-btn-borders:focus {
 	background-color: #5bcc92;
 	color: #ffffff;
 }
 .fw-btn-1.fw-btn-black {
 	background-color: #000000;
 	border-color: #000000;
 	color: #ffffff;
 }
 .fw-btn-1.fw-btn-black:active {
 	box-shadow: inset 0 0 20px #333333;
 }
 .fw-btn-1.fw-btn-blue {
 	background-color: #3c9beb;
 	border-color: #3c9beb;
 	color: #ffffff;
 }
 .fw-btn-1.fw-btn-blue:active {
 	box-shadow: inset 0 0 20px #1267af;
 }

 .page-call h2 {
 	margin-bottom: 20px;
 }



 .all-news {
 	text-align: center;
 	padding-bottom: 50px;
 }
 .all-news .item {
 	background: white;
 }

 .all-news .item {
 	padding: 10px;
 	border-radius: 5px;

 }
 .all-news h3 {
 	font-size: 14px;
 	margin-bottom: 2px;
 	font-family: "RalewayLight", sans-serif;
 	font-weight: bold;
 }
 .news-carousel img, .all-news img {
 	height: 200px!important;
 	width: auto!important;
 	display: block;
 	margin: auto;
 }
 .news-carousel .item {
 	min-height: 390px;
 }
 .all-news .data {
 	font-size: 11px;
 	color: #71d3cc;
 	font-family: "RalewayLight", sans-serif;
 }
 .all-news .description {
 	font-size: 11px;
 	line-height: 17px;
 	width: 90%;
 	margin: 0px auto 78px;
 }
 .all-news .button-style, .brends-page .button-style, .news-carousel .button-style, .brends-page .fw-row a {

 	text-transform: uppercase;
 	padding: 6px 22px;
 	color: #57aaa2;
 	font-family: "RalewayLight", sans-serif;
 	font-weight: bold;
 	font-size: 11px;
 	border: 1px solid #e3e6eb;
 	border-radius: 2px;
 	position: absolute;
 	bottom: 25px;
 	left: 50%;
 	margin-left: -59px;
 }
 .all-news a:hover, .brends-page a:hover {
 	background: #37afa3;
 	color: white;
 	transition: background .6s ease-out;
 }
 .all-news .item {
 	height: 390px;
 	box-shadow: 0px 0px 72px -33px black;
 	margin-top: 10px;
 	margin-bottom: 10px;
 }
.pagination {
	text-align: center;
}
.pagination span {
	color: #37afa3;
}
.pagination a, .pagination span {
	margin: 0px 5px;
}
.all-news {
	border-bottom: 1px solid #dbdfe1;
}
.all-news h1 {
	text-align: left;
	font-weight: 100;
	margin-left: 14px;
}
.item .link-img {
	border: none;
	padding: 0px;
}
.menu .active {
	color: #48c6bd;
}
input[type="submit"] {
	background: #23bfb4;
	color: white;
	padding: 11px 41px;
	text-transform: uppercase;
	font-size: 15px;
	border-radius: 3px;
	border: none;
	line-height: 14px;
}
.search-submit {
	display: none;
}
.menu li {
	position: relative;
}
.menu li form {
	position: absolute;
	top: 0px;
	right: 30px;
	display: none;
}
.wraper-brends {
	margin: 40px 0px;
}

.wpcf7 .wpcf7-submit {
	background: #23bfb4; 
}
.brends-page img {
	display: block;
	margin: auto;
	margin-bottom: 40px;
}
.brends-page p {
	line-height: 20px;
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 20px;
}
.brends-page .fw-col-sm-3{
	min-height: 342px;
}
.brends-page h4 {
	margin: 10px auto;
	text-transform: uppercase;
}
.brends-page {
	margin-bottom: 55px;
}
.brends-page .fw-col-sm-3 {
	padding-right: 25px;
	padding-left: 25px;
}

img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.my-wraper {
	margin-top: 12px;
}
.wraper-brends .fw-row:nth-child(2) a {
	width: 290px;
	background: #48c6bd;
	display: block;
	margin: 12px auto;
	color: white;
	padding: 9px 0px; 
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 14px;
}
.wraper-brends .go-to-site:hover, .wraper-brends .go-to-site:focues {
	background: #34968f;
}
.service-section p a {
color: white; 
}

.service-section a img:hover {
	transform: scale(1.2);
	transition: transform 0.4s ease-out;

}
.service-section p a:hover {
	background: none;
}

.wraper-documentation .item {
	min-height: 250px;
	height: auto;
}