html, body {
	font-family: 'Lato', sans-serif;
	background: #FFf;
	font-size: 16px;
}
body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
body a:hover{
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	color: #444;
}
h2 {
	margin: 20px 0;
}
p {
	margin: 0;
	color: #555;
	padding-bottom: 12px;
}


/*----------------------------Animations-----------------------------------------------*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

/*----------------------------Animations-----------------------------*/



.orange-btn {
	padding: 8px 20px;
	border: 1px solid #ff8c00;
	background: #ff8c00;
	color: #fff;
	border-radius: 4px;
	margin-top: 25px;
	display: inline-block;
}
.orange-btn:hover {
	background: #FFF;
	color: #ff8c00;
	text-decoration: none;
}
.white-btn {
	padding: 8px 20px;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 4px;
	margin-top: 25px;
	display: inline-block;
}
.white-btn:hover {
	background: #fff;
	color: #336699;
	text-decoration: none;
}
.scroll-to-top{
	background: none repeat scroll 0% 0% rgba(100, 100, 100, 0.4);
	color: #fff;
	padding: 15px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
.scroll-to-top:hover{
	background-color: #333;
	color: #FFF;

}
.h2-page-title{
	margin-top: 0px;
	background: none repeat scroll 0% 0% #F7F7F7;
	padding: 10px;
}


/**----------Top Notify--------*/

.top-notify{
	padding: 5px 0;
	background: #333;
	color: #efefef;
	position: relative;

}
.top-notify i{
	position: absolute;
	right: 15px;
	top:30%;
	color: #efefef;
}
.sticky-notify{
	position: fixed;
	width: 100%;
	z-index: 99;
	transition: top 800ms ease 0s;
}

/**----------Top Notify Ends--------*/


/*--------Navbar Custom CSS-------*/
.navbar {
margin-bottom: 0;
}
.navbar-default {
	padding-top: 30px;
	padding-bottom: 15px;
	background: none repeat scroll 0% 0% #FFF;
}
.navbar-fixed-top{
	animation: slideInDown 0.4s linear;
	padding-top: 20px;
	padding-bottom: 10px;
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand
{
	margin-left: 0;
}
.navbar-default .navbar-brand img{
	max-width: 240px;
	margin-top: -20px;
}
.navbar-default .navbar-brand {
	color: #555;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -1px;
	padding-top: 10px;

}
.navbar-default .navbar-brand .fa {
	color: #ff5252;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
	color: #5e5e5e;
	background-color: transparent;
}


.navbar-default .navbar-nav > li > a {
	text-decoration: none;
	font-size: 16px;
	margin: 0 1px;
	color: #333;
	font-weight: 500;
	padding: 7px 7px;
	border-radius: 4px;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a:hover {
	color: #eee;
	background-color: #336699;
}
.navbar-default .navbar-nav > .active > a {
	background-color: #336699;
	color: #fff;
}
.navbar-nav .dropdown-menu{
	left: 0;
	border: 0 none;
	min-width: 220px;

}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:active{
	background: #336699;
	color: #fff;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover
{
	color: #eee;
	background: #336699;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover{
	color: #efefef !important;
	background: #336699;
}


.dropdown-menu .sub-menu {
	left: 100%;
	position: absolute;
	top: 0;
	margin-top: -5px;
	z-index: 999;
}
.dropdown-submenu i{
	position: absolute;
	right: 20px;
	top: 23%;
}
.menu-toggle{
	display: none;
}

.navbar-right {
	margin-right: 0;
}

/*--------Navbar Custom CSS End-------*/






/*------------carousel CSS----------------------------*/

.home-carousel .carousel-inner > .item
{
	/*background: #0091EA;*/
	background: #369;
}


.carousel-control.left,
.carousel-control.right{
	background-image: none;
	background-repeat: no-repeat;
	width: 10%;
}
.carousel-caption {
	text-shadow: none;
	right: 50%;
	bottom: 20%;
	left: 10%;
	text-align: left;

}
.carousel-caption h1{
	color:#fff
}

.carousel-caption h4{
	color:#fff
}

.carousel-inner > .item > img{
	margin: 0 auto;
}

/*------------carousel CSS End----------------------------*/


.section_header {
	text-align: center;
	padding: 35px 0;

}
.section_header h2 span {
	border-bottom: 2px solid #FF9900;
}
.section_header h2 {
	color: #444;
	text-shadow: 1px 1px #fff;
}

.wide-shell {
	padding-bottom: 55px;

}
.inner-page{
	padding:55px 0;
}
#video{

}

#welcome{
	background: #f0f0f0;

}
#welcome p {
	color: #777;
	margin-bottom: 20px;
}
#welcome .btn,
#video .btn{
	font-size: 13px;
	margin-top: 8px;
	padding: 8px 16px;
	background-color: #fff;
	color: #555;
	border: 1px solid #ccc;
}
#welcome .btn:hover,
#welcome .btn:focus,
#video .btn:hover,
#video .btn:focus{
	background-color: #336699;
	outline: 0px;
	color: #fff;
	border: 1px solid #336699;
}

#main-services {

}
#main-services .fa {
	color: #FF9900;
	margin-top: 20px;
}
#main-services h3 {
	padding: 20px 0 10px 0;
}
#main-services .btn {
	font-size: 13px;
	margin-top: 30px;
	padding: 8px 16px;
	background-color: #fff;
	color: #555;
	border: 1px solid #ccc;
	margin-bottom: 20px;
}
#main-services .btn:hover, #main-services .btn:focus {
	background-color: #336699;
	outline: 0px;
	color: #fff;
	border: 1px solid #336699;
}



/*---------------Testimonial Carousel Section---------------------*/

.testimonial-carousel{
	margin-top: 50px;
	background: #F0F0F0;
	padding: 25px 0;
	border-radius: 4px;
}
.home-testimonial{
	background: #F0F0F0;
	padding-bottom: 70px;
}

.testimonial-carousel .carousel-inner > .item > img.home-testi-avatar,
.home-testimonial .carousel-inner > .item > img.home-testi-avatar
{
	width: 100px;
	min-width: 100px;
	height: 100px;
	border-radius: 50%;
	float: left;
}
.home-testimonial .carousel-inner{
	width: 70%;
	margin: 0 auto;
}
.testimonial-carousel .carousel-inner{
	width: 90%;
	margin: 0 auto;
}
.home-testimonial .carousel-indicators{
	bottom: -50px;
}
.testimonial-carousel .carousel-indicators{
	bottom: -60px;
}
.testimonial-carousel .carousel-indicators li,
.home-testimonial .carousel-indicators li
{
	border: 0 none;
	background-color: rgba(0, 145, 234, 0.38);
}

.testimonial-carousel .carousel-indicators .active, .home-testimonial .carousel-indicators .active,
.home-testimonial .carousel-indicators .active, .home-testimonial .carousel-indicators .active
{
	background-color: #336699;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
}
.home-testim {
	margin-left: 120px;
	padding-top: 10px;
}
.home-testim-full {
	margin-left: 20px;
	padding-top: 10px;
}
.home-testim-text {
	font-size: 15px;
	color: #333;
	font-style: italic;
	padding-bottom: 5px;
}
.home-testim-name {
	font-size: 15px;
	font-weight: bold;
	text-align:right;

	color: #336699;
}
.home-testimonial .carousel .item{
	background: #F0F0F0;
}

.home-testimonial .carousel-control .glyphicon-chevron-left,
.home-testimonial .carousel-control .glyphicon-chevron-right,
.testimonial-carousel .carousel-control .glyphicon-chevron-left,
.testimonial-carousel .carousel-control .glyphicon-chevron-right
{
	text-shadow: none;
	font-size: 14px;
	color: #336699;
}

.testimonial-carousel .carousel-control .glyphicon-chevron-left{
	margin-left: -50px;
}
.testimonial-carousel .carousel-control .glyphicon-chevron-right{
	margin-right: -50px;
}
.home-testimonial .carousel-control:hover .glyphicon,
.testimonial-carousel .carousel-control:hover .glyphicon{
	color: #333;
}

/*-----------------Testimonial carouselgit Ends-----------------------------------*/



#clients {
	background: #336699;
	padding: 40px 0 30px 0;
}
#clients h2,h4 {
	color: #fff;
}

#clients h2{
	margin-top: 0;
}

#normal h2,h4 {
	color: #444;
}
#orange h2,h4 {
	color: #ff8c00;
}





/*-------------Sidebar Css Starts-----------------------------*/
.side-widget{
	background: #f7f7f7;
	margin-bottom: 20px;
	padding: 10px;
}
.side-widget ul li a{
color: #666;
}
.side-widget ul li a:hover{
	color:#003366;
	text-decoration: none;
	padding-left: 5px;
}
.side-widget ul{
	padding: 0;
	list-style-type: none;

}
.side-widget input[type="email"],
#footerwrap input[type="email"]
{
	width: 100%;
	border-radius: 0;
	background: #fff;
	border: 1px solid #ababab;
	padding: 5px;
	margin: 10px 0;
}
.subscribe .btn-warning

{
	width: 100%;
	
}

.widget-title{
	padding: 10px;
	background: #369;
	color: #fff;
	margin: 0;
}

/*-------------Sidebar Css Starts Ends------------------------*/





/*-----------Footer Section----------------*/
#footerwrap ul{
	margin: 0;
	padding: 0;
}
#footerwrap {
	background-color: #272727;

}
#footerwrap p{
	color: #efefef;
}
#footerwrap #footer-primary{
	padding-bottom: 20px;
}

#footerwrap #footer-secondary{
	padding: 10px 0;
	background: #1c1c1c;
}
#footer-secondary .copyright-wrapper{
	padding-top: 10px;
	border-top: 1px dashed #333;
}
#footer-primary ul{
	list-style-type: none;
}
#footer-primary ul li{
	color: #efefef;
	border-bottom: 1px solid #333;
	padding: 5px 0;
}
#footer-primary ul li a{
	color: #efefef;
}

#footerwrap span.copyright {
	color: #efefef;
	font-size: 14px;
}
#footerwrap span.copyright a {
	color: #9f9f9f;
	border-bottom: 1px dotted;
}
#footerwrap span.copyright a:hover {
	color: #fff;
	text-decoration: none;
}

#footerwrap .ft-h3-title{
	color: #fff;
	margin: 20px 0;

}
#footer-primary .list-inline > li{
	padding: 0;
	border-width: 0;
}

#footerwrap ul.social-buttons {
	margin-top: 15px;
}


ul.social-buttons li a {
	background-color: #363636;
	font-size: 16px;
	line-height: 40px;
	list-style: outside none none;
	display: inline-block;
	text-align: center;
	height: 40px;
	width: 40px;
	margin-right: 5px;
	margin-bottom: 5px;
	border-radius: 3px;
	transition: background-color 0.5s ease 0s;

}

a[href*="facebook"]:hover
{
background: #3B5998;
	color: #fff;
}
a[href*="twitter"]:hover
{
	background: #1BB2E9;
	color: #fff;
}
a[href*="twitter"]:hover
{
	background: #1BB2E9;
	color: #fff;
}

a[href*="plus.google"]:hover
{
	background: #DC4937;
	color: #fff;
}
a[href*="linkedin"]:hover
{
	background: #007BB6;
	color: #fff;
}
a[href$="/feed/"]:hover
{
	background: #e6841b;
	color: #fff;
}



#footer-secondary .disclaimer{
	font-size: 13px;
}

/*-------------------------Footer Section End-------------------------------------------------------*/

/*-------------Map Css----------------*/

#map_wrapper {
	height: 500px;
	background: #F7F7F7;
}

#map_canvas {
	width: 100%;
	height: 100%;
}
/*---------------Map css end----------------*/



/*--------------Pricing Request Page css------------------*/
#pricing td{
	padding: 3px;
	border-bottom: 1px solid #fff;
}
.Question
{
	font-weight: bold;
	background-color: #F7F7F7;
}
.head
{
	font-weight: bold;
	color: #FFFFFF;
	background-color: #336699;
}

/*--------------Pricing Request Page css Ends------------------*/

.circle-info-icon {
	background: transparent;
	font-size: 18px;
	color: #46B8DA;
	border-radius: 50%;
	vertical-align: middle;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3), 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px -1px 0px rgba(0, 0, 0, 0.15) inset;
}

.overlay{
	position: absolute;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.text-orange {
	color: #ff9900;
}
.btn-yellow {
	background:#fdbd05;
	color: #fff;
	font-weight: 600;
	border-color:#fdbd05;
	margin-left: 5px;
}
.btn-yellow:hover, .btn-yellow:focus {
	background: #fdbd05;
	color: #fff;
}
.btn-yellow:active {
	background: #fdbd05;
}
/*form .ng-invalid{
	border-color: #a94442;
}*/

/**
 * Placeholder values for required text fields to be red
 */
/*.form-control[required="required"]::-webkit-input-placeholder { color: #d28d86; }
.form-control[required="required"]:-moz-placeholder { color: #d28d86; }
.form-control[required="required"]::-moz-placeholder { color: #d28d86; }
.form-control[required="required"]:-ms-input-placeholder { color: #d28d86; }*/
/*--------------Repsonsiblities Section-----------------------------------------------------*/

.responsibilities-blue
{
 color: #336699 !important;
}
