@charset "utf-8";
/* CSS Document */
@import url('font-face.css');
ul, ol {
	margin: 0px;
	list-style: none;
}
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a, img {
	border: 0px;
	outline: 0px;
	text-decoration: none;
	vertical-align: middle;
}
.scrollup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #333;
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	z-index: 99; 
	transform: rotate(-45deg);
	display: none;
	transition: all .5s;
}
.scrollup i {
	transform: rotate(45deg);
}
.scrollup:hover {
	background: #092789;
	transition: all .5s;
}
body {
	font-size: 16px;
	color: #555;
	line-height: 22px;
	overflow-x: hidden;
	font-weight: 400;
	font-family: 'Calibre','Open Sans', sans-serif;
	position: relative;
}
input, select, textarea {
	font-family: 'Calibre', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	margin:0;	
}
.fullbody {
	width: 100%;
	float: left;
	position: relative;
}
.fullpage {
	max-width: 1200px;
	min-width: 240px;
	margin: 0px auto;
	position: relative;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: #fff;
	transition: all .5s;
}
.header.fix {
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.3);
	transition: all .5s;
}
.top_bar {
	height: 50px;
    line-height: 50px;
    overflow: hidden;
    background: #9E9D24;
    transition: all .5s;
}
.header.fix .top_bar {
	height: 0px;
	transition: all .5s;
}
.top_bar ul.left {
	float: left;
}
.top_bar ul.right {
	float: right;
}
.top_bar ul li {
	float: left;
	list-style: none;
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}
.top_bar ul.right li {
	margin-left: 20px;
	padding-left: 20px;
}
.top_bar ul.right li:after {
	position: absolute;
	top: 15px;
	left: 0px;
	content: '';
	height: 20px;
	width: 1px;
	background: rgba(255,255,255,0.2);
}
.top_bar ul li:first-child:after {
	display: none;
}
.top_bar ul.left li:first-child {
	margin: 0;
	padding: 0;
}
.top_bar ul li a {
	color: #fff;
	float: left;
	font-size: 16px;
}
.top_bar ul li a i {
	font-size: 14px
}
.top_bar ul.right li a i {
	margin-right: 8px;
	color: #acff4b;
}
.logo {
	float: left;
	width: 20%;
	position: relative;
	transition: all .5s;
}
.logo img {
	
	transition: all .5s;
}
.menu_nav {
	float: right;
	width: 75%;
	position: relative;
}
.micon {
	display: none;
}
.mclose {
	display: none;
}
@media only screen and (min-width :980px) {
	ul.menu {
		position: relative;
		float: right;
		width: auto;
		list-style-type: none;
	}
	ul.menu li {
		ffloat: left;
    position: relative;
    margin-left: 40px;
    padding: 14px 0px;
    transition: all .5s;
    margin-top:15px;
	}
	ul.menu li a {
		float: left;
		position: relative;
		color: #333;
		letter-spacing: 1px;
		font-weight: 400;
		font-size: 18px;
		text-transform: capitalize;
		transition: all .5s;
	}
	ul.menu li a i {
		display: none;
	}
	ul.menu li a:after {
		position: absolute;
		top: 30px;
		left: 0;
		width: 100%;
		height: 2px;
		content: '';
		opacity: 0;
		background-color: #9e9d24;
		transition: all .5s;
	}

	ul.menu > li:hover a, ul.menu li a.active {
	    color: #000;
	    transition: all .5s;
	}
	ul.menu li a.active {
	    border-width: 0px;
	}
	ul.menu li:hover a:after, ul.menu li a.active:after {
		
		opacity: 1;
		transition: all .5s;
	}

	ul.menu > ul li:hover a:after, ul.menu ul li a.active:after,
	ul.menu > ul li:hover a:before, ul.menu ul li a.active:before,
	ul.menu ul li a:after, ul.menu > ul li a:before,
	ul.menu > li:hover li a:after, ul.menu > li:hover li a:before {
		display: none;
	}
	ul.menu ul, ul.menu ul ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 9;
		width: 220px;
		display: none;
		box-shadow: 0px 5px 5px 1px rgba(0,0,0,0.15);
		background: #fff;
		transition: all .5s;
	}
	ul.menu ul ul {
		top: 0;
		left: auto;
		right: 106%;
	}
	ul.menu li:hover ul {
		display: block;
		transition: all .5s;
	}
	ul.menu li:hover ul ul {
		display: none;
		transition: all .5s;
	}
	ul.menu ul li:hover ul {
		display: block;
		transition: all .5s;
	}
	.header.fix ul.menu ul li ,
	ul.menu ul li {
		width: 100%;
		float: left;
		margin: 0;
		padding: 0;
		position: relative;
	}
	ul.menu ul.sub2 li {
		width: 50%;
	}
	ul.menu ul li a {
		width: 100%;
		float: left;
		color: #222;
		border: 0px;
		text-transform: capitalize;
		padding: 10px 15px;
		letter-spacing: 0px;
		font-weight: 400;
	}
	ul.menu > li:hover li a {
		color: #222;
		transition: all .5s;
	}
	ul.menu ul li a:hover {
		color: #fff;
		background: #8BC34A;
	}
}
/* ---- banner ---- */
/*.mtop{
	height: 120px;
	transition: all .5s;
}*/
.homebanner {
	width: 100%;
	float: left;
	padding: 0;
	background-color: rgba(0,0,0,1);
	position: relative;
	overflow: hidden;
}
.homebanner:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: #00000042;
}
.home_banner img,  .item img {
	width: 100%;
}
/*start of fade*/
.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
/*end of fade*/
/*start of vertical*/
.vertical .carousel-inner {
  height: 100%;
}
.carousel.vertical .item {
  -webkit-transition: 0.6s ease-in-out top;
     -moz-transition: 0.6s ease-in-out top;
      -ms-transition: 0.6s ease-in-out top;
       -o-transition: 0.6s ease-in-out top;
          transition: 0.6s ease-in-out top;
}
.carousel.vertical .active {
  top: 0;
}
.carousel.vertical .next {
  top: 100%;
}
.carousel.vertical .prev {
  top: -100%;
}
.carousel.vertical .next.left,
.carousel.vertical .prev.right {
  top: 0;
}
.carousel.vertical .active.left {
  top: -100%;
}
.carousel.vertical .active.right {
  top: 100%;
}
.carousel.vertical .item {
    left: 0;
}
/*end of vertical*/
.carousel-indicators {
	width: 100%;
	height: auto;
	text-align: center;
	bottom: 150px;
}
.carousel-indicators li {
	display: inline-block;
    width: 60px;
    height: 10px;
    margin: 0;
    text-align: center;
    color: #333;
    text-indent: -9999px;
    background: #fff;
    border: 1px solid #555;
    border-radius: 0%;
    cursor: pointer;
    transition: all .5s;
}
.carousel-indicators li.active, .carousel-indicators li:hover {
    background: #052e86;
    border: 1px solid #052e86;
    transition: all .5s;
}
.carousel-control.left, .carousel-control.right {
    position: absolute;
    top: 50%;
    z-index: 5;
    left: 50px;
    width: 40px;
    border-radius: 5px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    text-shadow: 0px 0px 5px #333;
}
.carousel-control.right {
	right: 50px;
	left: auto;
	transition: all .5s;
}
.carousel-control:hover {	
    background: #0086e9;
	transition: all .5s;
}
.item .banner_text {
	opacity: 0;
	transition: all .5s;
}
.item.active .banner_text {
	opacity: 1;
	bottom:30%;
	transition: all .5s;
}
.banner_text {
	width:60%;
	z-index:9;
	left: 20%;
	position:absolute;
	text-align: center;
	bottom: -20%;
	transition: all .5s;
}
.banner_text h2 {
	color: #fff;
	font-size: 40px;
	line-height: 50px;
	display: block;
	font-weight: 500;
	margin-bottom: 15px;
	position: relative;
	text-transform: capitalize;
}
.banner_text h2 span {
	font-size: 60px;
	line-height: 60px;
	display: block;
	font-weight: 600;
	letter-spacing: 1px;
}
.banner_text h3 {
	color: #fff;
	font-size: 24px;
	line-height: 34px;
	display: block;
	font-weight: 300;
	position: relative;
	text-transform: capitalize;
}
.banner_text a {
	display: inline-block;
	font-size: 16px;
	padding: 10px 30px;
	color: #fff;
	border-radius: 3px;
	border: 1px solid #fff;
	margin-top: 25px;
	transition: all .5s;
}
.banner_text a i {
	margin-left: 10px;
}
.banner_text a:hover {
	background: #0086e9;
	transition: all .5s;
}
.banner_bottom {
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
    fill: #fff;
    stroke: #fff;
    stroke-width: 1px;
    z-index: 2;
    height: 50px;
}
.down_arrow {
	position: absolute;
	bottom: 50px;
	left: 50%;
	margin-left: -15px;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 100%;
	text-align: center;
	z-index: 3;
	color: #fff;
	text-align: center;
	line-height: 28px;
	animation: bounce 1s infinite;
}
/*home_about*/
.home_about {
	padding: 50px 0;
	position: relative;
	text-align: center;
}
.home_txt {
	padding: 0 6%;
}
.sup-title {
	font-size: 16px;
	color: #333;
	text-transform: uppercase;
	font-weight: 400;
	display: block;
	margin-bottom: 5px;
	letter-spacing: 4px;
}
.title {
	font-size: 50px;
	color: #9e9d24;
	text-transform: capitalize;
	font-weight: 300;
	display: block;
	line-height: 50px;
}
.sub-title {
	font-size: 20px;
	color: #2da54b;
	text-transform: capitalize;
	font-weight: 400;
	display: block;
	line-height: 30px;
	margin-bottom: 20px;
}
.home_txt .text {
	font-size: 22px;
	font-weight: 300;
	color: #333;
	line-height: 32px;
}
.ha_vmv {
	margin-top: 40px;
	list-style: none;
}
.ha_vmv li {
	width: 33.33%;
	float: left;
	padding: 30px 50px;
	border: 2px solid #eee;
	border-right: 0px solid #eee;
	transition: all .5s;
}
.ha_vmv li:last-child {
	border-right: 2px solid #eee;
}
.ha_vmv li img {
	display: inline-block;
	height: 80px;
}
.ha_vmv li h3 {
	width: 100%;
	float: left;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #242424;
	font-size: 26px;
}
.ha_vmv li:hover {
	    border-top: 2px solid #9e9d24;
    border-bottom: 2px solid #9e9d24;
	transition: all .5s;
}
/*home_services*/
.home_services {
	padding: 50px 0;
	background: #f4f7f8;
	text-align: center;
}
.home_services h3 {
	margin-bottom: 30px;
}
.home_services li {
	list-style: none;
	float: left;
	width: 33.33%;
}
.home_services li a {
	width: 100%;
	float: left;
	height: 300px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.home_services li a:before, .home_services li a:before {
	position: absolute;
	bottom: -10%;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(to bottom,rgba(60,60,60,0) 0%,#141414 100%);
	transition: all .5s;
}
.home_services li a:hover:before, .home_services li a:hover:before {
	bottom: 0%;
	background: linear-gradient(to bottom,rgba(34,189,129,0) 0%,#52b878 100%);
	transition: all .5s;
}
.home_services li .hover_txt {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	z-index: 2;
	color: #fff;
	text-align: left;
}
.hover_txt h4 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 1px;
	display: block;
}
.hover_txt h5 {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
	font-weight: 300;
	display: block;
}
.hover_txt span {
	float: left;
	width: 30px;
	height: 20px;
	position: relative;
	transition: all .5s;
}
.hover_txt span:before, .hover_txt span:after {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	content: '';
	height: 2px;
	background: #fff;
	transition: all .5s;
}
.hover_txt span:after {
	top: 6px;
	left: 100%;
	margin-left: -10px;
	width: 10px;
	height: 10px;
	background: transparent;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.hover_txt span:hover {
	width: 100px;
	transition: all .5s;
}
/*home_solutions*/
.home_solutions {
	padding: 50px 0;
	text-align: center;
}
.home_solutions li {
	width: 32%;
	float: left;
	margin-right: 2%;
	margin-top: 30px;
	border: 1px solid #eee;
	transition: all .5s;
}
.home_solutions li:nth-child(3n) {
	margin-right: 0px;
}
.home_solutions li a {
	width: 100%;
	float: left;
	padding: 40px;
	color: #333;
	font-size: 18px;
}
.home_solutions li img {
	display: inline-block;
	height: 80px;
}
.home_solutions li h3 {
	width: 100%;
	float: left;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #242424;
	font-size: 26px;
}
.home_solutions li:hover {
	background: #f5f5f5;
	border: 1px solid #ddd;
	transition: all .5s;
}
/*home_techs*/
.home_techs {
	padding: 50px 0;
	background: #f4f7f8;
	text-align: center;
}
.home_techs h3 {
	margin-bottom: 30px;
}
.home_techs li {
	list-style: none;
	float: left;
	width: 20%;
}
.home_ttechs {
	position: relative;
}
.home_ttechs .caroufredsel_wrapper {
	height: 102px !important;
}
.home_ttechs li {
	list-style: none;
	float: left;
	padding: 0 8px;
	width: 16.67%;
	text-align: center;
}
.home_ttechs li img {
	width: 100%;
	display: inline-block;
}
#cprev, #cnext {
	position: absolute;
	top: 30%;
	left: -20px;
	cursor: pointer;
	font-size: 50px;
	color: #333;
	opacity: 0.5;
	z-index: 2;
	transition: all .5s;
}
#cnext {
	left: auto;
	right: -20px;
}
/*home_enquire*/
.home_enquire {
	background: #efac55;
	color: #fff;
	padding: 80px 0;
	text-align: center;
	font-size: 20px;
	color: #fff;
	font-weight: 300;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
.home_enquire:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0,0,0,0.8);
}
.home_enquire h2 {
	color: #fff;
	font-size: 50px;
	font-weight: 400;
	display: block;
	text-align: center;
	line-height: 50px;
	margin-bottom: 15px;
}
.form {
	float: left;
	width: 55%;
	text-align: left;
	margin-top: 20px;
}
.form form {
	margin-top: 30px;
}
.halfspan {
	width: 49%;
	float: left;
	position: relative;
}
.halfspan.right {
	float: right;
}
.form form label {
	font-weight: 400;
	color: #fff;
	font-size: 16px;
	margin-bottom: 5px;
}
.form form label.error {
	position: absolute;
	top: 0px;
	right: 0px;
	font-weight: 300;
	color: red;
	z-index: 2;
}
.form form input, .form form textarea {
	width: 100%;
	float: left;
	font-size: 16px;
	color: #fff;
	height: 40px;
	border: 1px solid #abaeb1;
	background: transparent;
	padding: 10px; 
	margin-bottom: 20px; 
	transition: all .5s;
}
.form form input:hover, .form form textarea:hover,
.form form input:focus, .form form textarea:focus {
	border: 1px solid #fff;
	transition: all .5s;
}
.form form textarea {
	height: 100px;
	margin-bottom: 40px;
}
.form form input.he_btn {
	width: 200px;
	background: #689F38;
	line-height: 60px;
	height: 60px;
	font-size: 20px;
	padding: 0;
	text-align: center;
	border: 0px;
	cursor: pointer;
	transition: all .5s;
}
.form form input.he_btn:hover, .form form input.he_btn:focus {
	background: #fff;
	color: #333;
	transition: all .5s;
}
.address {
	float: right;
	width: 40%;
	text-align: left;
	margin-top: 30px;
}
.address h3 {
	display: block;
	margin: 30px 0;
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	position: relative;
}
.address h3:before {
	position: absolute;
	top: -30px;
	left: 0;
	width: 60px;
	height: 2px;
	content: '';
	background: #fff;
}
.address ul li {
	width: 100%;
	float: left;
	padding-left: 40px;
	margin: 20px 0;
	font-size: 18px;
	position: relative;
}
.address ul li span {
	font-size: 22px;
	margin-top: 5px;
	display: block;
}
.address ul li i, .address ul li img {
	position: absolute;
	top: 5px;
	left: 5px;
	font-size: 20px;
	width: 20px;
}
/*footer*/
footer {
	background:#8BC34A;
	padding: 5px 0;
}
ul.social {
	float: right;
	list-style: none;
}
.social li {
	float: left;
	margin-left: 10px;
}
.social li a {
	float: left;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	line-height: 40px;
	background: rgba(0,0,0,0.2);
	color: #fff;
	transition: all .5s;
}
.social li a:hover {
	background: #689f38;
	color: #fff;
	transition: all .5s;
}
.copyrights {
	float: left;
	line-height: 40px;
	color: #fff;
	font-weight: 300;
}
/*innerbanner*/
.innerbanner {
    position: relative;
    padding: 130px 0;
}
.ib_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
}
.ib_img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0,0,0,0.6);
}
.ib_txt h1 {
    float: left;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 40px;
    margin-top: 20px;
}
.breads {
    list-style: none;
    float: right;
    margin-top: 30px;
}
.breads li {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}
.breads li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
.breads li:after {
    position: absolute;
    top: 1px;
    right: 0;
    font-size: 12px;
    content: '/';
    color: #fff;
}
.breads li:last-child {
    margin: 0;
    padding: 0;
}
.breads li:last-child:after {
    display: none;
}
.breads li:last-child a, .breads li a:hover {
    color: #8BC34A;
}
.page {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    text-align: justify;
    background: #f5f5f5;
}
.page p {
    display: block;
    margin-bottom: 15px;
}
.page_cnt {
    z-index: 1;
    margin-top: -40px;
    margin-bottom: 40px;
    background: #fff;
}
.page_cnt .ha_vmv {
	padding: 20px 25px;
	border-top: 1px solid #eee;
	text-align: left;
	margin-top: 0px;
}
.about_cnt {
	padding: 20px 25px;
}
.page_right {
    float: left;
    width: 70%;    
    text-align: justify;
    padding: 20px 25px;
    border-right: 1px solid #eee;
}
.page_ul ul {
   width: 100%;
    float: left;
    list-style: none;
    display: inline-flex;
}
.page_ul ul li {
    width: 100%;
    float: left;
   /* padding: 5px;
    padding-left: 20px;*/
    position: relative;
}
.tab-months ul li {
 padding: 0px !important;
   
}

.page_left {
    float: right;
    width: 30%;
    padding: 20px 25px;
    position: relative;
}
.sticky {
    position: sticky;
    -webkit-position: sticky;
    -moz-position: sticky;
    -ms-position: sticky;
    -o-position: sticky;
    top: 60px;
    right: 0;
}
.page_nav li {
    width: 100%;
    float: left;
    list-style: none;
    text-align: left;
    background: rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.page_nav li:last-child {
    border-bottom: 0px solid rgba(0,0,0,0.1);
}
.page_nav h2 {
    padding: 15px;
    font-size: 24px;
    font-weight: 500;
    background: #052e86;
    color: #fff;
    text-transform: uppercase;
}
.page_nav li a, .page_nav li.title {
    width: 100%;
    float: left;
    padding: 10px 15px;
    color: #111;
    text-decoration: none;
}
.page_nav li a.active, .page_nav li a:hover {    
    color: #fff;
    background: #8BC34A;
}
/*techs*/
.techs {
    padding: 30px;
}
.techs ul {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.techs li {
    list-style: none;
    float: left;
    width: 20%;
    padding: 30px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.techs li img {
    max-width: 100%;
    height: 100px;
}
/*careers*/
.careers {
    padding: 20px 25px;
}
.careers_posts {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 20px;
}
.careers_posts h3 {
    font-size: 26px;
    font-weight: 400;
    color: #465275;
    margin: 0 0 15px 0;
    display: block;
} 
.careers_posts li {
    float: left;
    width: 32%;
    margin: 15px 2% 0 0;
    position: relative;
}
.careers_posts li:nth-child(3n) {
    margin-right: 0;
}
.careers_posts li a {
    width: 100%;
    float: left;
    position: relative;
    padding: 30px 25px;
    text-align: left;
    border-left: 5px solid rgb(4, 140, 220);
    background: #f4fcff;
    transition: all .5s;
}
.careers_posts li a:hover {
    background: #e9f7fd;
	border-left: 5px solid rgb(18, 10, 111);
    transition: all .5s;
}
.careers_posts li h4 {
    font-size: 22px;
    line-height: 22px;
    color: #465275;
    margin: 0;
    height: 50px;
    font-weight: 400;
    vertical-align: bottom;
}
.careers_posts li span {
    font-size: 14px;
    color: #999; 
    padding-left: 20px;
}
.careers_posts li span:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f041';
    font-family: 'FontAwesome';
}
/*j_desc*/
.j_desc {
    margin-bottom: 15px;
}
.j_desc h2 {
    font-size: 20px;
    color: #2361a8;
    font-weight: 500;
    text-align: left;
    margin-bottom: 10px;
}
.j_desc span {
    color: #555;
}
/*career_form*/
.career_form {
    margin-top: 10px;
    background: #f5f5f5;
    padding: 20px;
}
.halfspan {
    width: 49%;
    float: left;
}
.halfspan.right {
    float: right;
}
.career_form h2 {
    color: #00376F;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    display: block;
    font-size: 24px;
    font-weight: 400;
    border-bottom:1px solid #eee;
}
.career_form label {
    margin: 5px 0 0 0;
    display: block;
    font-weight: 400;
}
input.c-input, textarea.c-input {
    width: 100%;
    float: left;
    height: 40px;
    padding: 10px;
    color: #333;
    border: 1px solid #ccc;
    margin: 0 0 15px 0;
    font-size: 16px;
    transition: all .5s;
}
input.c-input[type=file] {
    padding: 0 10px;
}
input.c-input:hover, textarea.c-input:hover,
input.c-input:focus, textarea.c-input:focus {
    border: 1px solid #333;
    outline: 0px;
    transition: all .5s;
}
textarea.c-input {
    height: 80px;
}
input.c-btn {
    float: left;
    margin-top: 15px;
    padding: 10px 30px;
    background: #689F38;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 0px;
    transition: all .5s;
}
input.c-btn:hover, input.c-btn:focus {
    background: #333;
    transition: all .5s;
}
/*contact*/
.contact_left {
    width: 60%;
    float: left;
    padding-right: 30px;
    text-align: left;
    border-right: 1px solid #ddd;
}
.contact_right {
    width: 37%;
    float: right;
    text-align: left;
}
.contact_right h2, .contact_left h2 {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    margin: 0;
    display: block;
    margin-bottom: 10px;
}
.caddress h2 {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
    display: block;
}
.caddress p {
    position: relative;
    padding-left: 30px;
}
.contact_right p a {
    color: #0270c7;
    text-decoration: none;
}
.caddress p img {
    width: 20px;
    position: absolute;
    top: 7px;
    left: 0;
    margin: 0;
}
.map {
    height: 300px;
    margin-top: 25px;
    position: relative;
}
.map iframe {
    height: 100%;
    width: 100%;
    border: 0px;
}
.contact_left label {
    margin: 5px 0 0 0;
    display: block;
    font-weight: 400;
}
.halfdiv {
    width: 49%;
    float: left;
}
.halfdiv.right {
    float: right;
}

@media screen and (max-width : 1279px) {
	.fullpage {
		max-width: 960px;
	}
	ul.menu li {
	    margin-left: 25px;
	}
	.banner_text{
		width: 80%;
		left: 10%;
	}
	.item.active .banner_text {
	    bottom: 10%;
	}
	.ha_vmv li{
		padding: 30px;
	}
	.home_solutions li a{
		padding: 40px 20px;
	}
	.home_ttechs li{
		width: 20%;
	}
	#cnext{
		right: 0;
	}
	#cprev {
		left: 0;
	}
}
@media screen and (max-width : 979px) {
	.fullpage {
		max-width: 750px;
	}
	.menu_nav {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		background: #4CAF50;
		z-index: 999;
		padding: 15px;
		padding-bottom: 60px;
		overflow: hidden;
		transition: all .5s;
	}
	.menu_nav.open {
		top: 0;
		transition: all .5s;
	}
	body.open {
		overflow:hidden;
	}
	ul.menu {
		width: 100%;
		float: left;
		height: 100%;
		list-style: none;
		overflow-y: auto;
	}
	ul.menu li, ul.menu li a {
		width: 100%;
		float: left;
		margin: 0;
	}
	ul.menu li a {
		color: #fff;
		font-size: 18px;
		padding: 10px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	ul.menu li a i {
		float: right;
	}
	ul.menu ul , ul.menu ul ul {
		display: none;
		width: 100%;
		float: left;
		background: rgba(0,0,0,0.1);
	}
	ul.menu ul {
		background: #388E3C;
	}
	ul.menu ul.open {
		display: block;
	}
	.micon {
		float: right;
		display: block;
		color: #333;
		font-size: 30px;
		margin: 20px 10px 0 0;
		cursor: pointer;
	}
	.mclose {
		padding: 8px 25px;
		background: #fff;
		color: #333;
		font-size: 20px;
		cursor: pointer;
		width: 100%;
		float: left;
		display: block;
		margin-bottom: 10px;
	}
	.mclose i {
		float: right;
	}
	.banner_text h2{
		font-size: 22px;
		line-height: 30px;
	}
	.banner_text h2 span {
		font-size: 30px;
		line-height: 30px;
	}
	.banner_text h3 {
	    font-size: 18px;
	    line-height: 22px;
	    font-weight: 400;
	}
	.ha_vmv li {
	    padding: 20px 10px;
	}
	.home_solutions li{
		width: 49%;
		margin-right: 0px;
	}
	.home_solutions li:nth-child(even){
		float: right;
	}
	.home_ttechs li{
		width: 25%;
	}
	.ha_vmv li .txt{
		min-height: 80px;
	}
	.techs li{
		width: 25%;
	}
	.careers_posts li{
		width: 49%;
		margin-right: 0;
	}
	.careers_posts li:nth-child(even){
		float: right;
	}
}
@media screen and (max-width : 767px) {
	.fullpage {
		max-width: 550px;
		padding: 0 10px;
	}
	.top_bar{
		display: none;
	}
	.mtop{
		height: 70px;
	}
	.carousel-control.left{
		left: 0;
	}
	.carousel-control.right{
		right: 0;
	}
	.banner_text a,.banner_text h3{
		display: none
	}
	.banner_text h2{
		font-size: 18px;
		line-height: 28px;
	}
	.banner_text h2 span {
		font-size: 20px;
		line-height: 30px;
	}
	.home_about,.home_services,.home_solutions,.home_techs{
		padding: 30px 0;
	}
	.home_txt{
		padding: 0;
	}
	.ha_vmv li{
		width: 100%;
		padding: 25px;
	}
	.home_services li,.home_solutions li,.form,.address{
		width: 100%;
	}
	.title{
		font-size: 36px;
	}
	.home_ttechs li{
		width: 50%;
	}
	.home_enquire{
		padding: 40px 0;
	}
	.copyrights,ul.social{
		width: 100%;
		text-align: center;
	}
	ul.social li {
		float: none;
		display: inline-block;
		margin-top: 10px;
	}
	.innerbanner{
		padding: 60px 0;
	}
	.breads,.page_left{
		display: none;
	}
	.ha_vmv li{
		border: 1px solid #eee;
	}
	.ha_vmv li .txt{
		min-height: 40px;
	}
	.page_right{
		width: 100%;
		border: 0px;
	}
	.techs{
		padding: 15px;
	}
	.techs li{
		padding: 15px;
		width: 33.33%;
	}
	.careers_posts li,.halfspan,.contact_right,.halfdiv{
		width: 100%;
	}
	.careers_posts li h4 {
		height: auto;
	}
	.careers_posts li a {
		padding: 15px;
	}
	.contact_left {
	    width: 100%;
	    padding-top: 15px;
	    padding-right: 0px;
	    border-right: 0px solid #ddd;
	    border-top: 1px solid #ddd;
	}
	.map{
		height: 200px;
	}
.logo img {
    height: 55px;
}
.micon {
    margin: 13px 0px 0 0;
}
.mtop {
    height: 55px;
}

}
@media screen and (max-width : 359px) {
	.fullpage {
		max-width: 320px;
	}	
	.techs li{
		width: 50%;
	}
}



.post-slide{
    margin: 0 10px;
}
.post-slide .post-info{
    padding: 5px 0;
    margin: 0;
    list-style: none;
}
.post-slide .post-info li{
    display: inline-block;
    margin: 0 5px;
}
.post-slide .post-info li i{
    margin-right: 8px;
}
.post-slide .post-info li a{
    font-size: 11px;
    font-weight: bold;
    color: #7e828a;
    text-transform: uppercase;
}
.post-slide .post-info li a:hover{
    color: #1dcfd1;
    text-decoration: none;
}
.post-slide .post-img{
    position: relative;
}
.post-slide .post-img:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0,0,0.6);
    transition: opacity 0.40s linear 0s;
}
.post-slide:hover .post-img:before{
    opacity: 1;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
}
.post-slide .read{
    position: absolute;
    bottom: 30px;
    left: 50px;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    opacity: 0;
    transition: all 0.40s linear 0s;
}
.post-slide:hover .read{
    opacity:1;
}
.post-slide .read:hover{
    text-decoration: none;
    color: #1dcfd1;
}
.post-slide .post-content{
    padding: 40px 0;
    position: relative;
}
.post-slide .post-author{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    right: 10px;
    overflow: hidden;
    border:4px solid #fff;
}
.post-slide .post-author img{
    width: 100%;
    height: auto;
}
.post-slide .post-title{
    font-size: 14px;
    font-weight: bold;
    color: #1dcfd1;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    transition: all 0.30s linear 0s;
}
.post-slide .post-title:after{
    content: "";
    width: 25px;
    display: block;
    margin-top: 10px;
    border-bottom: 4px solid #333;
}
.post-slide .post-description{
    font-size: 13px;
    color: #555;
    margin-bottom:20px;
}

.tab .nav-tabs{ border-bottom: 2px solid #e8e8e8; }
.tab .nav-tabs li a{
    display: block;
    padding: 10px 20px;
    margin: 0 5px 1px 0;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    color: #112529;
    text-align: center;
    border: none;
    border-radius: 0;
    z-index: 2;
    position: relative;
    transition:all 0.3s ease 0s;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a{
    color: #198df8;
    border: none;
}
.tab .nav-tabs li.active a:before{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 25px;
    font-weight: 700;
    color: #198df8;
    margin: 0 auto;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
}
.tab .nav-tabs li.active a:after{
    content: "";
    width: 100%;
    height: 3px;
    background: #198df8;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.tab .tab-content{
    padding: 30px 0px 20px;
    margin-top: 0;
    background: #fff;
    font-size: 15px;
    color: #7a9181;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
}
.tab .tab-content h3{
    font-size: 24px;
    margin-top: 0;
}
@media only screen and (max-width: 479px){
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
    }
    .tab .nav-tabs li.active a:before{
        content: "\f105";
        bottom: 15%;
        left: 0;
        right: auto;
    }
}
.tab-months ul li {
 padding: 0px !important;
   
}
.mt-50{
	margin-top: 50px;
}