/* 
	Document   : Synero
	Created on : Aug 23, 2014, 07:07:07 PM
	Author	 : Harry
	Description: Synero - one page portfolio & Agency template
	Version	: V1.0
*/

/*-------------------------------------------------
 =  Table of Css

  1.Import Google Fonts
 2.Page-Loader
 3.GENERAL
 4.PARALLAX
 5.NAVBAR
 6.HOME/ SLIDER
 7.HERO-SECTION
 8.SERVICES
 9.PORTFOLIO / WORKS
 10.TESTIMONIALS
 11.ABOUT
 12.TWITTWER-TWEET
 13.PRICING
 14.NEWS-LETTER
 15.BLOG
 16.CONTACT
 17.FOOTER
 18.BACK-TO-TOP
 
-------------------------------------------------*/

/* ---------------------------------------------------------------------- */
/*  1.Import Google Fonts
/* ---------------------------------------------------------------------- */
@import url('http://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,700');
body { 
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; 
	cursor:default;
	color: #333333;
	font-size: 14px;
	line-height: 24px;
	background-color: #fff;
	font-weight: 400;
	height:100%;
	/*overflow-y: hidden !important;*/
}
h5 {font-size:17px;}
/* ---------------------------------------------------------------------- */
/*  2.Page-Loader
/* ---------------------------------------------------------------------- */
.animationload {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:999999; /* makes sure it stays on top */
}
.loader {
	width:200px;
	height:200px;
	font-size:0;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(../img/ajax-loader.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}
/* ---------------------------------------------------------------------- */
/*  3.GENERAL
/* ---------------------------------------------------------------------- */
::selection{
	background: rgba(153,0,7,0.5);
	color: #ffffff;
}
::-moz-selection {
	background: rgba(153,0,7,0.5);
	color: #ffffff;
}
.btn-custom{
	 background-color: #ffa900;
	border: 2px solid #ffa900;
	color: #ffffff;
	border-radius: 3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	letter-spacing: 1px;
	padding: 8px 20px;
}
.btn-custom:hover,.btn-custom:focus{
	background-color: transparent;
	border: 2px solid #ffa900;
	color: #ffa900;
	outline: none;
}
.title {
	position: relative;
	color: #666;
	font-weight: 500;
}
.min-h-40{
	min-height: 40px;
}
.margin-t-20{
	margin-top: 20px;
}
.margin-t-50{
	margin-top: 50px;
}
.margin-l-30{
	margin-left: 30px;
}
.margin-b-30{
	margin-bottom: 30px;
}
.owl-theme .owl-controls .owl-page span {
	background: #990007 !important;
}
/* ---------------------------------------------------------------------- */
/*  4.PARALLAX
/* ---------------------------------------------------------------------- */
.parallax {
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	background-size: cover;
	background-attachment: fixed;
}
/* ---------------------------------------------------------------------- */
/*  5.NAVBAR
/* ---------------------------------------------------------------------- */
.navbar-toggle .icon-bar{
	border: 2px solid #666666;
}
.navbar-custom{
	background-color: #fff;
	min-height: 75px;
	padding: 10px 0;
	-webkit-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.1);
	margin-bottom: 0px;
	border-radius: 0;
	width: 100%;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}
.navbar-custom .navbar-nav>li>a {
	color: #777;
	font-weight: 400;
	font-size: 15px;
	outline: 0;
	outline-color: transparent;
}
.nav>li>a {
	padding-left: 7px;
	padding-right: 7px;
}
.navbar-custom .navbar-nav>li>a:hover,.navbar-custom .navbar-nav>li>a:active,.navbar-custom .navbar-nav>li>a:focus {
	background: transparent;
	color: #990007;
}
.logo{
	float:left;
	margin-top: -6px;
}
@media (max-width:996px){.logo{margin-top: -0px;}.logo img{width:150px;}}
.navbar-phone {position:relative;width:auto;float:right;margin-right:30px;}
.navbar-phone span {color:#990007;font-size: 26px;}
/* Effect */
.menu-effect a::before,
.menu-effect a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}
.menu-effect a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}
.menu-effect a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}
.menu-effect a:hover::before,
.menu-effect a:hover::after,
.menu-effect a:focus::before,
.menu-effect a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}
/*-------------------------------------------------------------------*/
/* 6.HOME/ SLIDER
/*-------------------------------------------------------------------*/
.carousel-section {
	/*background: url("../img/pattern.png"),url("../img/home.png") no-repeat;
	background-position: 50% 50%;*/
	overflow: hidden;
	padding: 120px 0px;
}
.carousel-title {
	line-height: 40px;
	color: #333;
	margin: 29px 0 20px 0;
	text-align:center;
}
.carousel-section#home {
	padding: 50px 0px;
}
.carousel-caption {text-shadow:none;}
.carousel-infograf {padding: 20px 0 10px;}
.carousel-infograf_item {display:inline-block;width:250px;height:160px;padding:3px;border:2px solid #053261;color: #333;text-align:left;}
.carousel-infograf_arrow {display:inline-block;width:50px;height:140px;background: url("../img/arrow-8-right.png") no-repeat 50% 50%;}
.carousel-infograf_item2 {display:block;width:850px;height:85px;margin:0 auto;padding:3px;border:2px solid #053261;font-size:18px;color: #333;}
.carousel-infograf_arrow2 {display:block;width:850px;height:50px;margin:0 auto;background: url("../img/skobka.jpg") no-repeat 50% 50%;background-size:auto 100% ;}
@media screen and (max-width:800px){
	.carousel-infograf_item {display:block;margin:0 auto;}
	.carousel-infograf_arrow {display:block;margin:0 auto;}
}
.carousel-razon .carousel-caption {
	position: static;
	text-align: center;
}
.carousel-razon .carousel-indicators {
	bottom: -110px !important;
}
.carousel-razon .carousel-indicators li {
	margin: 0 2px;
}
.carousel-indicators li{
	border: 1px solid #990007;
	border-radius: 0px;
	height: 5px;
	width: 30px;
}
.carousel-indicators .active {
	height: 5px;
	width: 30px;
	background-color: #990007;
}
.carousel-text span{
	color: #990007;
	text-transform: uppercase;
}
.carousel-text p{
	padding-top: 30px;
}
.carousel-text a{
	margin-top: 30px;
}
@media (max-width: 1023px) {
	.navbar-custom .nav>li>a {
		padding: 20px 0px; 
	}
}
@media (max-width: 767px) {
	.navbar-custom .nav>li>a {
		padding: 10px 0px; 
	}
}
/*-------------------------------------------------------------------*/
/*  7.HERO-SECTION
/*-------------------------------------------------------------------*/

.header-title {
	width: 100%;
	min-height: 520px;
	color: #256289;
	padding: 0 0 50px 0;
border-bottom: 3px solid #00B3FF;
background: url("../img/pattern.png"),url("../img/header.jpg");
background-position:50% 0%;
}

.header-title_container {
	min-height: 125px;
	margin: 0 auto;
	overflow: hidden;
}

.header-title_container .title {
	font-size: 36px;
	line-height: 40px;
	color: #fff;
	margin: 49px 0 0 0;
	text-align:center;
}
.header-title_container .titlea {
	font-size: 34px;
	line-height: 40px;
	color: #990007;
	margin: 49px 0 0 0;
	text-shadow: 1px 1px 5px rgba(255,255,255,1);
	text-align:center;
}
.header-title_text {
	font-size: 20px;
	line-height: 26px;
	color:#fff;
	min-height: 125px;
	margin:50px auto 0;
}

.header-title_text p{text-align:center;padding: 0px 0px 15px 0px;}

/*-------------------------------------------------------------------*/
/*  7.HERO-SECTION
/*-------------------------------------------------------------------*/
.hero-section {
	background-color: #990007;
	padding: 20px 0px;
	position: relative;
	z-index: 600;
	color: #fff;
	text-align: center;
}
.hero-section h3{
	margin-top: 10px;
}
/*-------------------------------------------------------------------*/
/*  8.SERVICES
/*-------------------------------------------------------------------*/
.services{
	margin-top: 1px;
	border-top: 2px solid #990007;
	padding: 100px 0px;
	background-color: #f2f5f7;
}
.title p{
	font-size: 14px;
	font-weight: 400;
}
.title-bg {
	font-size: 77px;
	color: rgba(153,0,7,0.12);
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	font-weight: 200;
	z-index: -1;
	text-align: center;
}


/*ADVANTAGES*/

.advantages {
  margin:0 auto;
	padding: 35px 0 50px 0;
  overflow:hidden;border-top: 2px solid #990007;
}
.advantages_content {
  width:990px;
  margin:61px auto 0;
  overflow:hidden;
}
.advantages_prices {
  padding:10px 0px 20px 0px;
  overflow:hidden;
}
.advantages_price {
  padding:0px 15px 0px 0px;
  font-size:20px;
  font-weight:bold;
  display:block;
  float:left;
}
.advantages_price span {
  font-weight:bold;
  font-size:14px;
  display:block;
overflow:hidden;
}
.advantages_price strike {
  font-weight:normal;
  font-size:12px;
}
.advantages_item {
  width:32%;
  height:300px;
  padding:15px 15px 10px 15px;
  overflow:hidden;
  float:left;
  margin:0 7px 8px 0;
  color:#fff;
}
.advantages_text {
  font-size: 26px;
  line-height: 32px;
  margin:0 0 10px 0;
}
.advantages_item .btn-custom {float:right;
}
.advantages_item p {
  width:280px;
  margin:0 0 17px 0;
  font-family: Arial, Verdana, sans-serif;
}
.advantages_item.color_1 {
  background:#91ba40;
}
.advantages_item.color_2 {
  background:#6c44a0;
}
.advantages_item.color_3 {
  background:#e16a1d;
}
.advantages_item.color_4 {
  background:#37859b;
}
.advantages_item.color_5 {
  background:#a1245d;
}
.advantages_item.color_6 {
  background:#ccbe3e;
}



/*-------------------------------------------------------------------*/
/*  9.PORTFOLIO / WORKS
/*-------------------------------------------------------------------*/
.work{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0px;
	margin-bottom: 1px;
	border-bottom: 2px solid #990007;
	color:#fff;
}
.work h3{
	margin-top: 0px;
}
.work h4 span{
	color: #990007;
}
/*media screen*/
#serts .owl-theme .owl-controls .owl-buttons {
	top: 100px;
}
#serts .owl-theme .owl-item div {
	padding: 10px;
}
.order{
	padding: 100px 0px;
	margin-bottom: 1px;
	border-top: 2px solid #990007;
}
.order h3{
	margin-top: 0px;
}
.order h4 span{
	color: #990007;
}
/*media screen*/
#orders .owl-theme .owl-controls .owl-buttons {
	top: 130px;
}
#orders .owl-theme .owl-item div {
	padding: 10px;
}
.order-item{
	padding: 10px 10px;
	background-color: #f2f5f7;
	margin: 0px 10px;
	text-align:left;
	height:350px;
	overflow:hidden;
}

.reference-block {text-align:center;}
.reference-block img {margin:0 auto;}
.reference-block a {color:#fff;}
#grid .mix{
	display: none;
	opacity: 0;
}
/* Filter */
.portfolio-filters{
	list-style: none;
	padding: 0;
}
.portfolio-filters li{
	display: inline-block;
	border:1px solid #eeeeee;
	padding: 3px 10px;
	cursor: pointer;
	font-size: 12px ;
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: 700;
	color:#999;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.portfolio-filters li:hover,.portfolio-filters li.active{
	background-color: #990007;
	color:#fff;
	border-color:#990007;
}
.portfolio-items figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
}
.portfolio-items figure img {
	position: relative;
	display: block;
	width: 100%;
	-webkit-transition:all 400ms linear; 
	-moz-transition:all 400ms linear; 
	-o-transition:all 400ms linear; 
	-ms-transition:all 400ms linear; 
	transition:all 400ms linear;
}
.portfolio-items figure figcaption {
	color: #fff;
	font-size: 14px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.portfolio-items figure figcaption{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.portfolio-items figure h4 {
	font-weight: 500;
	text-transform: uppercase;
	padding: 7px;
	font-size: 15px;
}
.portfolio-items figure figcaption h4 a{
	color: #fff;
}
figure.port-effect {
	background: #000;
}
figure.port-effect figcaption {
	top: auto;
	bottom: 0;
	height: auto;
	background: rgba(153,0,7,0.9);
	color: #fff;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}
figure.port-effect:hover img{
	opacity: 0.8;
	-webkit-transform: scale(1.3) rotate(4deg);
	-moz-transform: scale(1.3) rotate(4deg);
	-ms-transform: scale(1.3) rotate(4deg);
	-o-transform: scale(1.3) rotate(4deg);
	transform: scale(1.3) rotate(4deg);
}
figure.port-effect:hover figcaption{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
@media (max-width: 1024px) {
	.portfolio-items figure h4 {
		font-size: 14px;
		padding: 5px;
	}
}
@media (max-width: 640px) {
	.portfolio-items figure h4 {
		font-size: 12px;
		padding: 4px;
	}
}


#refers .owl-pagination{
	display:none;
}
.refer-item{
	padding: 10px 50px;
	margin: 0px 10px;
	text-align:left;
	height:150px;
	overflow:hidden;
}
.refer-item_quote {
	position:relative;
	padding: 10px 50px;
	background-color: #eaebeb;color:#333;
}
.refer-item_quote:after {position:absolute;top:0px;left:0px;width:40px;height:40px;content:"";background: url("../img/5_1.png") no-repeat 0% 0%;}
.refer-item_quote:before {position:absolute;bottom:0px;right:0px;width:40px;height:40px;content:"";background: url("../img/5_2.png") no-repeat 0% 0%;}
.refer-item_autor {text-align:right;}

.reference-block {text-align:center;}
.reference-block img {margin:0 auto;}
.reference-block a {color:#fff;}
#grid .mix{
	display: none;
	opacity: 0;
}


/*-------------------------------------------------------------------*/
/*  10.FUN-FACTS
/*-------------------------------------------------------------------*/
.fun-fact{
	background:url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0;
	text-align: center;
}
.fun-fact h2{
	margin-bottom: 0px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255,255,255,0.77);
	text-transform: uppercase;
}
.fun-fact h5{
	font-size: 19px;
	margin-bottom: 0px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255,255,255,0.77);
}
.fun-fact i{
	color:#3faad9;
	font-size: 40px;
}
.fun-fact h1{
	color: #3faad9;
	font-size: 25px;
}
.fun-fact-item {text-align:center;}
.fun-fact-item img {margin:0 auto;}
/*-------------------------------------------------------------------*/
/*  10.TESTIMONIALS
/*-------------------------------------------------------------------*/
.testimonials{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0;
}
.testimonials h2{
	color:#fff;
}
.testimonials h4{
	color:#fff;
}
.testimonials h5{
	color:#fff;
	font-weight: 300;
	line-height: 20px;
	color: rgba(255,255,255,0.77);
}
.testimonials i{
	color:#990007;
	font-size: 30px;
}
.testimonials h3,.testimonials p{
	color: #ffffff;
	text-transform:normal;
}
/*-------------------------------------------------------------------*/
/*  11.ABOUT
/*-------------------------------------------------------------------*/
.about{
	position: relative;
	padding: 100px 0px;
	margin: 1px 0px;
	border-top: 2px solid #990007;
}
.about-page{
	padding-top: 80px;
}
#project-carosel {
	margin-right: 20px;
}
.about .panel-title{
	font-size: 15px;
}
.about .panel-title a{
	display: block;
	width: 100%;
}
.about .panel-title a:hover{
	text-decoration: none;
}
.about .panel-title i{
	font-size: 20px;
	color: rgba(0,0,0,0.5);
}
.about .panel-heading{
	padding: 15px;
	border-radius: 3px;
}
.about .panel-default>.panel-heading {
	color: #fff;
	background-color: rgba(153,0,7,0.7);
	border-color: #bbb;
}
.about .panel-group .panel-heading+.panel-collapse>.panel-body {
	border-top: 1px solid #ffffff;
}
.about .panel-group .panel {
   margin-bottom: 0;
   border-radius: 0px;
}
.about .panel-group .panel .panel-body{
	background: #ffffff !important;
	box-shadow: none;
	padding: 10px 0px;
	color: #555;
}
.about .panel-default{
	border: none;
}
.about .text{
   margin: 0px auto;
   overflow: hidden;
   float:none;
   font-size:18px;
}
.about .text h4{
   line-height: 150%;
}
.about .text span{
   margin-left: 0px;
}
.about .text img{
   margin: 0 10px 40px;
	display: inline-block;
	float: left;
}
.about-path {overflow:hidden;background: url("../img/about-path.png") no-repeat 50% 50%;}
.about-path p {display:block;float:left;width:65%;margin:20px;clear:both;}
.about-path p.text-right {float:right;}
.about-path p b {display:block;margin:10px 5px 0;float:left;width:40px;height:40px;font-size:40px;}
.about-path p.text-right b {float:right;}
/*-------------------------------------------------------------------*/
/*  11.ABOUT2
/*-------------------------------------------------------------------*/
.about2{
	position: relative;
	padding: 100px 0px;
	margin: 1px 0px;
	border-top: 2px solid #990007;
}
.about2-page{
	padding-top: 80px;
}
.about2 .panel-title{
	font-size: 22px;
}
.about2 .panel-title a{
	display: block;
	width: 100%;
}
.about2 .panel-title a:hover{
	text-decoration: none;
}
.about2 .panel-title i{
	font-size: 20px;
	color: rgba(0,0,0,0.5);
}
.about2 .panel-heading{
	padding: 15px;
	border-radius: 3px;
}
.about2 .panel-default>.panel-heading {
	color: #fff;
	background-color: rgba(153,0,7,0.7);
	border-color: #bbb;
}
.about2 .panel-group .panel-heading+.panel-collapse>.panel-body {
	border-top: 1px solid #ffffff;
}
.about2 .panel-group .panel {
   margin-bottom: 0;
   border-radius: 0px;
}
.about2 .panel-group .panel .panel-body{
	background: #ffffff !important;
	box-shadow: none;
	padding: 10px 0px;
	color: #555;
}
.about2 .panel-default{
	border: none;
}
.about2 .text{
   overflow: hidden;
   font-size:18px;
}
.about2 .text i{
   font-size:30px;margin:10px 10px 20px;float:left;color:#ff0000;
}
.about2 .text h4{
   line-height: 150%;
}
.about2 .text span{
   margin-left: 0px;
}
.about2 .text img{
   margin: 0 10px 40px;
	display: inline-block;
	float: left;
}
/*-------------------------------------------------------------------*/
/*  11.Video
/*-------------------------------------------------------------------*/
.video{
	position: relative;
	padding: 100px 0px;
	margin: 1px 0px;
	border-top: 2px solid #990007;
}
.video-page{
	padding-top: 80px;
}
.video .panel-title{
	font-size: 15px;
}
.video .panel-title a{
	display: block;
	width: 100%;
}
.video .panel-title a:hover{
	text-decoration: none;
}
.video .panel-title i{
	font-size: 20px;
	color: rgba(0,0,0,0.5);
}
.video .panel-heading{
	padding: 15px;
	border-radius: 3px;
}
.video .panel-default>.panel-heading {
	color: #fff;
	background-color: rgba(153,0,7,0.7);
	border-color: #bbb;
}
.video .panel-default{
	border: none;
}
.video .text{
   margin: 0px auto;
   overflow: hidden;
   float:none;
   font-size:18px;
}
.video .text h4{
   line-height: 150%;
}
.video .text span{
   margin-left: 0px;
}
.video-text iframe{
	display:block;
   margin: 0 auto;
}





@media (max-width: 767px) {
	.margin-l-30{
		margin-left: 0px; 
	}
}
/*-------------------------------------------------------------------*/
/*  9.PORTFOLIO / TEAM
/*-------------------------------------------------------------------*/
.team{
	text-align: center;
	padding: 100px 0px;
	margin-bottom: 1px;
	border-bottom: 2px solid #990007;
}
.team h3{
	margin-top: 0px;
}

.team img{
	width: 180px;
	height: 180px;
}
.team-member:hover h4{
	color: #990007;
}
.team p{
	padding: 10px;
}
.team h6{
	color: #bbb;
}
.member {
	padding: 30px 5px;
	width: 190px;
	height: 190px;
	border: 6px solid #bbb;
	background: #eee;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	overflow: hidden;
	display: inline-block;
}
.circle-img {
	border-radius: 100%;
	-moz-border-radius: 100%;
}
/*-------------------------------------------------------------------*/
/*  12.TWITTWER-TWEET
/*-------------------------------------------------------------------*/
.twitter-tweet{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0;
}
.twitter-tweet h5{
	color:#fff;
	font-weight: 300;
	line-height: 20px;
	color: rgba(255,255,255,0.77);
}
.twitter-tweet h6{
	color: #777;
	text-transform: uppercase;
}
.twitter-tweet i{
	color:#990007;
	font-size: 30px;
}
.twitter-tweet p{
	color:#990007;
}
/*-------------------------------------------------------------------*/
/*  13.PRICING
/*-------------------------------------------------------------------*/
.pricing{
	padding: 100px 0px;
	text-align: center;
	margin: 1px 0px;
	border-top: 2px solid #990007;
	font-size:18px;
}
.pricing-features {
	background-color: #f2f5f7;
	padding: 0px 0px 0px 0px;
	margin-top: 30px;
}
.pricing-features ul{
	padding: 10px 0px;
}
.pricing-features li{
	padding: 10px 50px;
}
.pricing-features li i {
	margin-right: 15px;
	color: #999;
}
.pricing-features p{
	padding: 10px 20px;
}
.pricing-features a{
	background-color: #1c4b7f;
	padding: 10px 50px;
	border-radius: 3px;
	color: #fff;
	text-transform: uppercase;
}
.pricing-features a:hover{
	background-color: #990007;
	text-decoration: none;
}
.pricing_head{
	background-color: #1c4b7f;
	padding: 20px 0px;
	color: #fff;
}
.pricing_head .pricing_currency{
	position: relative;
	top: -25px;
	font-size: 20px;
	font-weight: 400;
}
.pricing_head .pricing_amount-2{
	font-size: 60px;
	line-height: 60px;
	padding-left: 5px;
}
.pricing-features:hover .pricing_head,.pricing-features:hover a{
	background-color: rgba(153,0,7,0.8);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
/*-------------------------------------------------------------------*/
/*  14.NEWS-LETTER
/*-------------------------------------------------------------------*/
.newsletter{
	background-color: #990007;
	padding: 40px 0px;
}
.newsletter i{
	padding-right: 15px;
}
.newsletter h3{
	color: #ffffff;
	margin: 0px;
	padding-top: 5px;
}
.news-form input{
	height: 40px;
	border: 1px solid #666;
	background-color: rgba(255,255,255,0.7);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.news-form input:focus{
	outline: none;
	border: 1px solid #1c4b7f;
	box-shadow: none;
	background-color: #ffffff;
}
.news-form button,.news-form button:focus{
	height: 40px;
	background-color: #1c4b7f;
	border-color: #1c4b7f;
	color: #ffffff;
	outline: none;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.news-form button:hover{
	color: #000;
	background-color: transparent;
	border: 1px solid #000000;
}
/*-------------------------------------------------------------------*/
/*  15.BLOG
/*-------------------------------------------------------------------*/
.blog{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0;
}
.blog h3,.blog p{
	color: #ffffff;
}
.blog-box{
	background-color: #ffffff;
	padding: 10px; 
	text-align: center;
	margin-top: 30px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.blog-box img{
	width: 100%;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
.blog-box h4 a{
	color: #666;
}
.blog-box h6{
	color: #bbb;
	font-weight: 300;
}
.blog-box p{
	color: #777;
	margin-top: 20px;
}
/* BLOG-POST */
.blog-post{
	padding: 100px 0px;
	margin: 1px 0px;
	border-top: 2px solid #990007;
}
.blog-post img{
	margin: 15px 0px;
}
.blog-header{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 100px 0px;
}
.blog-header h2{
	margin-top: 0px;
	color: #ffffff; 
}
.blog-header h5{
	color: #ffffff;
	margin-top: 30px;
	font-weight: 100;
}
.blog-detail{
	padding-top: 0px;
	color: #ffffff;
	font-size: 14px;
}
.blog-detail span{
	margin-right: 20px;
}
.blog-detail span:last-of-type{
	margin-right: 0px;
}
.blog-a{
	color: #990007;
}
.blog-post-p{
	color: #bbb;
	font-size: 12px;
	padding: 0px 20px;
	line-height: 15px;
	text-align: center;
}
.blog-a:hover{
	color: rgba(153,0,7,0.7);
	text-decoration: none;
}
.blog-detail span i{
	padding-right: 5px;
}
.blog-post .tags a {
	height: 35px;
	font-size: 11px;
	line-height: 35px;
	color: #90979f;
	background: #f2f5f7;
	padding: 6px 12px;
	margin-right: 5px;
}
.blog-post .tags a:hover{
	color: #990007;
	text-decoration: none;
}
/*-------------------------------------------------------------------*/
/*  16.CONTACT
/*-------------------------------------------------------------------*/
.contact{
	text-align: center;
	padding: 80px 0px;
	margin: 1px 0px;
	border-top: 2px solid #990007;
}
.contact h2{
	color: #990007;
}
.contact h4{
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 20px;
	color: #990007;
}
.contact i{
	margin-bottom: 0px;
	font-size: 36px;
	line-height: 36px;
	color: #990007;
}
.contact ul {
	margin: 0;
	padding: 0;
}
.contact li a{
	text-decoration: none;
	color: #7a869e;
}

@media screen and (max-width:800px){
.contact .text-right {text-align:center;}
}
a.support {
	font-size: 28px;
	line-height: 30px;
	display: block;
	color: #7a869e;
	text-decoration: none;
}
.contact input {
	width: 100%;
	height: 43px;
	margin-bottom: 20px;
	line-height: 20px;
	padding-left: 15px;
	font-size: 15px;
	color: #000000;
}
.contact .validation {
	border: 1px solid #ff0000;
}
.contact textarea {
	 width: 100%;
	height: 170px;
	margin-bottom: 15px;
	padding: 15px 55px 15px 15px;
	font-size: 15px;
	color: #000000;
	line-height: 28px;
}
textarea {
	resize: none;
}
.contact input:focus,.contact textarea:focus,.contact input:active,.contact textarea:active{
	border: 1px solid #990007;
	outline: none;
}
.contact p {
	float: none;
	color: #990007;
	display: inline-block;
}
#successmsg1 {
	margin-top: 20px;
	font-size: 18px;
	color: #990007;
	padding: 10px 0 10px;
	display: none;
	text-align: center;
}
/*-------------------------------------------------------------------*/
/*  17.FOOTER
/*-------------------------------------------------------------------*/
.footer{
	background: url("../img/pattern.png"),url("../img/img.png");
	padding: 50px 0px;
}
.footer ul{
	margin-bottom: 0px;
	margin-top: 8px;
}
.social li{
	padding-right: 0px;
}
.social li a {
	font-size: 16px;
	padding: 8px 10px;
	border-radius: 3px;
	color: rgba(255,255,255,0.5);
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.social li a:hover {
	text-decoration: none;
	color: #990007;
}
.footer p{
	color: #fff;
	font-size: 12px;
	padding-top: 10px;
	margin-bottom: 0px;
}
/*-------------------------------------------------------------------*/
/*  18.BACK-TO-TOP
/*-------------------------------------------------------------------*/
.back-to-top {
	width: 40px;
	height: 50px;
	position: fixed;
	bottom: 0px;
	right: 20px;
	display: none;
	background: rgba(153,0,7,0.7);
	text-align: center;
	z-index: 10000;
}
.back-to-top i {
	color: #fff;
	font-size: 15px;
	display: block;
	line-height: 33px;
}
.back-to-top:hover {
   background: rgba(153,0,7,0.9);
}






.feedback_button {
	display: inline-block;
	border-bottom: #5285a5 1px dotted;
	color: #27668f;
	height: 18px;
}

.feedback_button:hover {
	border: none;
	padding-bottom: 1px;
	text-decoration: none;
}

.feedback_popup {
	display: none;
	position: absolute;
	top: 62px;
	right: -29px;
	width: 229px;
	height: 177px;
	padding: 45px 18px 15px 16px;
	background: url(../img/call_order_bg.png) top center no-repeat;
	z-index: 15;
}

.feedback_arrow {
	position: absolute;
	width: 23px;
	height: 11px;
	left: 50%;
	top: 4px;
	margin: 0 0 0 -11px;
	background: url(../img/top_arrow.png) no-repeat;
}

.feedback_popup .popup_close {
	right: 23px;
	top: 32px;
}

.feedback_form {
}

.feedback_form input {
	width: 204px;
	padding: 5px  0 5px 13px;
	margin: 0 0 13px 0;
	font-size:14px;
	line-height:18px
}

.feedback_form input.error {
	width: 202px;
}

.feedback_form label.error {
	background: url(../img/error_message_bottom.png) left center no-repeat;
	margin: 0 0 0 2px;
	width: 92px;
	padding-left: 10px;
}

.feedback_form p {
	text-align: left;
}


.feedback_form input[type=submit] {
}

.feedback_success {
	color: #0d3650;
	margin: 30px 0 0 6px;
	display: none;
}

.feedback_success span {
	display: block;
	font-size: 24px;
	line-height: 26px;
	margin: 0 0 9px 0;
}

.feedback_success p {
	font-size: 16px;
	line-height: 20px;
}