@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: RobotoHeading;
    src: url(../fonts/Roboto-Light.ttf) format("truetype");
}
@font-face {
    font-family: AbelPara;
    src: url(../fonts/Abel-Regular.ttf) format("truetype");
}



/* Default */
body {
	overflow-x: hidden;
	background: url(../images/pattern.jpg) repeat;
}
h1, h2, h3, h4, h5, h6, td {
	font-family: RobotoHeading;
	font-weight: bold;
}
p, ul li, a, input, button, textarea, select, label, th {
	font-family: AbelPara;
	font-size: 18px;
}
img {
	max-width:100%;
	max-height:100%;
}
a:focus {
	outline: none;
	text-decoration: none;
}




/* Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 1px;
    border-radius: 1px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 1px;
    border-radius: 1px;
    background: rgba(0,0,0,0.5); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.5)
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}




/* Constants */
.inline {
	display: inline-block;
	vertical-align: middle;
}
.vcenter {
	display: inline-block;
	vertical-align: middle;
	float: none;
}
.vtop {
	display: inline-block;
	vertical-align: top;
	float: none;
}
.full {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 767px) {
	.text-left {
		text-align: center;
	}
    .text-right {
		text-align: center;
	}
}
.shadow {
	text-shadow: 0 5px 10px rgba(89,47,143, 0.33);
}
.success {
	color: green !important;
}
.error {
	color: red !important;
}
.first-color {
	color: #1966B2; 
}
.second-color {
	color: #4aae56;
}



/* Header */
.header {
	width: 100%;
    z-index: 1030;
    background: #FFFFFF;
    -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    position: relative;
	-webkit-transition: all 0.5s ease;
  	-moz-transition: position 10s;
  	-ms-transition: position 10s;
  	-o-transition: position 10s;
  	transition: all 0.5s ease;
}
.fixed {
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}



/* Mega Menu */
.header .navbar {
	margin-bottom: 0 !important;
}
.header .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
	color: #4AAE56 !important;
    background-color: transparent !important;
}
.navbar-default {
	color: #fff;
	background: #fff;
	border-color: #fff;
}
.load-anim {
	position: relative;
}
.load-anim:last-child {
  	margin-right: 0;
}
.load-anim:after {
	content: '';
	display: block;
	margin: auto;
	height: 3px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.load-anim:hover:after {
	width: 100%;
	background: #3BA748;
}
.navbar-default .navbar-nav > li > a {
	color: #1966B2;
	font-weight: bold;
}
.navbar-default .navbar-nav > .dropdown > a .caret {
	border-top-color: #1966B2;
    border-bottom-color: #1966B2;
}
.navbar-default .navbar-brand {
	color: #1966B2;
}
.menu-large {
  	position: static !important;
}
.megamenu {
  	padding: 20px 0px;
  	width:100%;
}
.megamenu .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
	color: #3BA748 !important;
}
.megamenu> li > ul {
  	padding: 0;
  	margin: 0;
}
.megamenu> li > ul > li {
  	list-style: none;
}
.megamenu> li > ul > li > a {
  	display: block;
  	padding: 3px 0;
  	clear: both;
  	font-weight: normal;
  	line-height: 1.428571429;
  	color: #333333;
  	white-space: normal;
}
.megamenu> li ul > li > a:hover,
.megamenu> li ul > li > a:focus {
  	text-decoration: none;
  	color: #3BA748;
  	background-color: #f5f5f5;
}
.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  	color: #999999;
}
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  	text-decoration: none;
  	background-color: transparent;
  	background-image: none;
  	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  	cursor: not-allowed;
}
.megamenu.dropdown-header {
  	color: #428bca;
  	font-size: 18px;
}
@media (max-width: 768px) {
  .megamenu{
    margin-left: 0 ;
    margin-right: 0 ;
  }
  .megamenu> li {
    margin-bottom: 30px;
  }
  .megamenu> li:last-child {
    margin-bottom: 0;
  }
  .megamenu.dropdown-header {
    padding: 3px 15px !important;

  }
  .navbar-nav .open .dropdown-menu .dropdown-header{
	color:#fff;
  }
}
.megamenu .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
	color: #1966B2 !important;
}
.megamenu .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
	color: #1966B2 !important;
}
.megamenu .navbar-default .navbar-nav>li>a {
	color: #1966B2 !important;
}
.mega-menu .navbar {
	margin-bottom: 0 !important;
}



/* Footer */
.footer {
	background: #1966B2;
	color: #FFFFFF;
	padding: 20px 0 10px 0;
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.05);
    box-shadow: 0 3px 3px rgba(0,0,0,0.05);
}
.footer .col-xs-12 {
	margin: 10px 0 10px 0;
}
.social {
	margin-bottom: 10px;
}
.social a {
	padding: 0 10px 0 10px;
	color: #FFFFFF;
}
.social .fa-facebook-official:hover {
	color: #3B5998;
}
.social .fa-google-plus-official:hover {
	color: #DB4437;
}
.social .fa-twitter:hover {
	color: #1DA1F2;
}



/* Section */
.section {
	background: #4AAE56;
	color: #FFFFFF;
	padding: 20px 0 30px 0;
}
.single-box {
	cursor: pointer;
}
.single-box:hover h1 {
	color: #4aae56;
}



/* hr */
hr {
	width: 150px;
	border-bottom: 3px solid #4AAE56;
}




/* Gradient */
.gradient {
	color: #FFFFFF;
	background: #1966B2; /* For browsers that do not support gradients */    
    background: -webkit-linear-gradient(left, #1966B2 , #49AD55); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #1966B2, #49AD55); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #1966B2, #49AD55); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #1966B2 , #49AD55); /* Standard syntax (must be last) */
}
.gradient h1 {
	margin-top: 30px;
}
.gradient p {
	margin-bottom: 30px;
}



/* Contents */
.content h3:after {
	content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #4AAE56;
    margin: 12px 0 0;
}
.content .link-right {
	list-style: none;
	padding: 0 5px 0 5px;
}
.content .link-right li {
	padding: 10px;
	font-weight: bold;
}
.content .link-right li a.active {
	color: #1966B2 !important;
}
.content .link-right li a {
	display: block;
	color: #000000;
}
.content .link-right li a:hover {
	text-decoration: none;
}
.content .link-right li:hover {
	background: #f6f6f6;
}
.content .link-right li a:before {
	font-family: 'FontAwesome';
    content: '\f104';
    color: #4AAE56;
    display: block;
    padding: 0 10px 8px 0;
    float: left;
}
.content .nav-tabs {
	border-bottom: 1px solid #4AAE56;
}
.content .nav-tabs>li>a {
	color: #000000;
	border-bottom: 1px solid #4AAE56;
}
.content .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
	color: #FFFFFF;
    background-color: #4AAE56;
}
.content .tab-content .tab-pane {
	margin-top: 20px;
}
.content .form-group input, .content .form-group textarea {
	border: 1px solid #1966B2 !important;
}
.content .form-group input:focus, .content .form-group textarea:focus {
	border: 1px solid #4AAE56 !important;
}