@charset "utf-8";

/* google fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Oswald');

/** Usage in CSS 
	font-family: 'Oswald', sans-serif;
	font-family: 'Open Sans', sans-serif;
**/

/*Normal font using @fontface*/
/*@font-face{
	font-family: 'opensans';
	src: url('../fonts/opensans-regular.TTF') format('truetype');
}*/

body{
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
	font-size: 14px;
}
textarea.form-control {
    height: 53px;
}
a,
a:hover{ text-decoration: none; }

.clr_float{ clear:both; }
.clr{ height: 10px; display: block; width: 100%; }

.mar_bott{ margin-bottom: 30px; }

.sidenav_space_top_bott{
	/*margin: 30px 0px;*/
	margin: 0 0 30px;
}


/********* Topnav *********/

.topnav{ 
	background-color: #084776;
	padding: 8px 0px;
}
.logo{ display: inline-block; }

.topnav_cont_no a{
	color: #e6e6e6;
	font-size: 13px;
	margin-top: 0px;
	display: inline-block;
	
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topnav_cont_no a:not(:first-of-type):before {
    content: "|";
    margin-right: 3px;
    margin-left: 3px;
    color: #e6e6e6;
    font-weight: 300;
}

.topnav_cont_no a i{
	font-size: 13px;
	top: 1px;
	position: relative;
	margin-right: 5px;
}

.topnav_cont_no a:hover,
.topnav_cont_no a:active,
.topnav_cont_no a:focus{
	text-decoration: none;
	color: #f09b00;
}


/*** 24-jul-17 ***/

/*.topnav .navbar-default .navbar-collapse {
    border: none;
}

.topnav .navbar-default {
    background-color: transparent;
    border-color: transparent;
}
.topnav .navbar {
    border-radius: 0px;
}
.topnav .navbar {
    min-height: 20px;
    margin-bottom: 0px;
    border: none;
}

.topnav .navbar-toggle {
    position: relative;
    float: right;
    padding: 2px 4px;
    margin-top: 2px;
    margin-right: 0px;
    margin-bottom: 2px;
    background-color: transparent;
    background-image: none;
    font-size: 13px;
    color: #fff;

    border: 1px solid #fff;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.topnav .navbar-toggle:hover,
.topnav .navbar-toggle:focus,
.topnav .navbar-toggle:active{
	background-color: #f09b00;
	border-color: #f09b00;
}

.topnav .navbar-nav li {
    list-style: none;
    font-size: 13px;
    display: inline-block;
    padding: 0px 8px 0px 0px;
}
.topnav .navbar-nav li:not(:first-of-type):before {
    content: "| ";
    margin-right: 5px;
    color: #e6e6e6;
    font-weight: 400;
}

.topnav .navbar-nav li a{
    list-style: none;
    font-size: 13px;
    display: inline-block;
    padding: 0px;
    color: #fff;
}

.topnav .navbar-nav li a:hover,
.topnav .navbar-nav li a:focus {
    color: #f09b00;
    text-decoration: none;
}

.topnav .navbar-nav li.active a {
    color: #f09b00;
    text-decoration: none;
}*/

/*******************/
/******** Topnav Mobile view *****/
#topnav-trigger {
  	display: none;
  	text-align: right;
  	float:right;
  	position:relative;
  	top: 17px;
}
#topnav-trigger span.link_title {
    display: block;
    /*float: right;*/
    padding: 5px;
    background-color: #f09b00;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-transform: capitalize; 
}

#topnav-mobile {
  	position: relative;
  	display: none; 
  	top: -17px;
}

#topnav-mobile ul {
    display: none;
    list-style-type: none;
    position: absolute;
    /*left: 0;*/
    right: 0;
    width: 160px;
    margin: auto;
    text-align: center;
    background-color: #084776;
    z-index: 50;
    
    padding-left: 0px;
}
#topnav-mobile li {
    display: block;
    /*padding: 5px 0;*/
    margin: 0;
    border-bottom: solid 1px #236190; 
}
#topnav-mobile li:last-child {
      border-bottom: none; 
  }
#topnav-mobile a {
    display: block;
    color: #fff;
    font-size: 13px;
    padding: 8px 10px 8px 20px;
    background-color: #084776; 
    text-align: left;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#topnav-mobile li.active a {
    color: #f09b00;
    text-decoration: none;
}

#topnav-mobile a:hover{
	/*background-color: #236190;*/
	color: #f09b00;
}

/*********************/


.topnav_main ul {
    float: right;
    margin-bottom: 0px;
    padding-left: 0px;
}
.topnav_main li {
    list-style: none;
    float: left;
    font-size: 13px;
    display: inline-block;
    padding: 0px 8px 0px 0px;
}
.topnav_main li:not(:first-of-type):before {
    content: "| ";
    margin-right: 5px;
    color: #e6e6e6;
    font-weight: 400;
}
.topnav_main li a {
    color: #e6e6e6;
    display: inline-block;

    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.topnav_main li a:hover,
.topnav_main li a:focus {
    color: #f09b00;
    text-decoration: none;
}

.topnav_main li.active a {
    color: #f09b00;
    text-decoration: none;
}

.menu .navbar-header .social{
	display: none;
}


.social ul{
	list-style-type: none;
	float: right;
	/*margin-top: 22px;*/
	margin-top: 12px;
}
.social li {
    float: left;
    font-size: 13px;
    display: inline-block;
    padding: 0px 8px 0px 0px;
    margin-top: 9px;
}
.social li a{
	display: block;
	color: #fff;
	text-align: center;
	border: 1.5px solid transparent;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.social li a i{
	width: 32px;
    line-height: 32px;
    font-size: 16px;
    height: 32px;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
/*.e_learn_link{
	margin-left: 20px;
}

.e_learn_link_img_box {
    margin-top: -8px;
    display: block;
    padding: 1px 4px 1px 2px;
    box-sizing: border-box;
    border: 1.5px solid transparent;

    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}*/

.e_learn_link{
	margin-left: 20px;
	display: inline-block;
}

.e_learn_link_img_box {
    /*margin-top: -13px;*/
    background-color: #ffb735;
        border: 1px solid #ec9e10;
    width: 200px;
    padding: 3px;
    display: block;    
    box-sizing: border-box;    

    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.e_learn_link_img_box .icon_img_box{
	display: inline-block;
	/*background-color: #fff;*/
	float: left;
	width: 40px;
	height: 46px;
	text-align: center;
	margin-right: 7px;
	/*border: 1px solid #b9b9b9;*/
	border-radius: 100%;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.e_learn_link_img_box .icon_img_box img{
	text-align: center;
	/*padding-top: 11px;*/
	padding-top: 6px;
	
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.e_learn_link_img_box span.line_1,
.e_learn_link_img_box span.line_2{
	float: left;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.e_learn_link_img_box:hover{
	background-color: #ec9e10;
}

.e_learn_link_img_box span.line_1{
	font-size: 12px;
	color: #fff;
	line-height: 10px;
    padding-top: 10px;
}
.e_learn_link_img_box span.line_2{
	font-size: 13px;
	color: #333;
	max-width: 130px;
	text-align: left;
	line-height: 1.2;
}

.social li a.e_learn_link:hover .icon_img_box{
	border-color: #0b6fb9;
	/*background-color: #f5f5f5;*/
}

.social li a.e_learn_link:hover .icon_img_box img{
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
	-webkit-filter: brightness(0) invert(1);
	-o-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.social li a.e_learn_link:hover span.line_1,
.social li a.e_learn_link:hover span.line_2{
	color: #fff;
}

/*.social li a.e_learn_link:hover .e_learn_link_img_box{
	border-color: #f09b00;
}*/

.social li a:hover i{
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

.social li a.fb_color:hover{
	/*border-color: #3b5998;
	background-color: transparent;
	color: #3b5998;*/
}
.social li a.twit_color:hover{
	/*border-color: #00aced;
	background-color: transparent;
	color: #00aced;*/
}
.social li a.linkedin_color:hover{
	/*border-color: #0077b5;
	background-color: transparent;
	color: #0077b5;*/
}

.fb_color{
	background-color: #3b5998;
}
.twit_color{
	background-color: #00aced;
}
.linkedin_color{ 
	background-color: #0077b5;	
}

.social li.youtube_link a {
	display: flex;
	align-items: center;
	width: 200px;
	padding-top: 4px;
}
.social li.youtube_link a i.fa-youtube {
	font-size: 36px;
	color: #ff0000;
}
.social li.youtube_link a span {
	font-size: 12px;
	color: #333;
	line-height: 1.2;
    text-align: left;
    padding-left: 5px;
}
.social li.youtube_link a:hover span {
	color: #ff0000;
}

/******* Main Navigation *********/

.menu .navbar-default{ 
	background-color: #0b6fb9;
	border-radius: 0px;
}

.menu .navbar-nav{
	margin:0;
	padding:0;
}

.menu .navbar-nav > li{
	position: relative;
	background: transparent;
}
.menu .navbar-nav > li > a{
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	color: #fff;
	z-index: 1;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.menu .navbar-nav > li > a:after{
	position: absolute;
	content: "";
	display:block;
	top:0;
	bottom: 0;
	left: 0px;
	right: 0px;
	background: rgba(0,0,0,0);
	z-index:-1;
	
	-webkit-transform: skew(20deg, 0deg);
	-moz-transform: skew(20deg, 0deg);
	-ms-transform: skew(20deg, 0deg);
	-o-transform: skew(20deg, 0deg);
	transform: skew(20deg, 0deg);

	border-left: 1px solid #3e91d0;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}

.menu .navbar-nav > li:last-of-type > a:after{
	border-right: 1px solid #3e91d0;	
}

.menu .navbar-nav > li.active > a{
	background-color: transparent;
	color: #fff;
}

.menu .navbar-nav > li:hover > a,
.menu .navbar-nav > li.active:hover > a{
	background-color: transparent;
	color: #fff;
}

.menu .navbar-default .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}

.menu .navbar-nav > li:hover > a:after{
	background-color: #f09b00;
	/*border-color: #f09b00;*/
}

.menu .navbar-default .navbar-nav > .open > a, 
.menu .navbar-default .navbar-nav > .open > a:hover,
.menu .navbar-default .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: transparent;
}

.menu .dropdown-menu{
	left: 10px;	
	min-width: 220px;
	border-radius: 0px;
	padding: 0px 0px;
	box-shadow: none;
	border: none;
}

.menu .dropdown-menu li a{
	background-color: #f09b00;
	color: #fff !important;
	font-size: 13px;
	padding: 10px 10px 10px 20px;
	text-align: left;
	border-top: 0.5px solid #fab536;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu .dropdown-menu li a:hover{
	background-color: #0b6fb9;
	padding-left: 25px;
}
.menu .navbar{
	margin-bottom: 0px;
	border: none;
}

.menu .navbar-nav > li.active > a:after{
	background: #f09b00;
}

.menu ul.register_link{ float:right; }

.menu ul.register_link li a{
	color: #ffff99;
	text-align: center;
	font-size: 14px;
}

.menu .navbar-nav.register_link > li > a:after{
	position: absolute;
	content: "";
	display:block;
	top:0;
	bottom: 0;
	left: 0px;
	right: 0px;
	background: #0a5b98;
	z-index:-1;

	-webkit-transform: skew(20deg, 0deg);
	-moz-transform: skew(20deg, 0deg);
	-ms-transform: skew(20deg, 0deg);
	-o-transform: skew(20deg, 0deg);
	transform: skew(20deg, 0deg);

	border-left: 1px solid #3e91d0;
	border-right: 1px solid #3e91d0;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.menu .navbar-nav.register_link > li:hover > a:after{
	background-color: #f09b00;
}

.menu .navbar-nav.register_link > li:hover > a{ color: #fff; }
.menu .navbar-nav.register_link > li:hover > a i{
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.menu ul.register_link li a i.fa-user-o{
	margin-right: 5px;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}


/******** Banner *******/

.banner{
	width:100%;
	background-color: #1296f8;
}

#myCarousel{
	background-color: #1296f8;	
}

#myCarousel img{
	width: 100%;
}

#myCarousel .carousel-indicators li {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 13px;
}

#myCarousel .carousel-indicators li.active{
	background-color: #f09b00;
    border: 1px solid #f09b00;   
}

#myCarousel .caption1{
	left: 14%;
	top: 44% !important;
	bottom: 0;
	text-align: left;
}
#myCarousel .carousel-caption{
	text-shadow: none;
}

#myCarousel .carousel-caption h3{
	font-size: 36px;
	font-family: 'Oswald', sans-serif;
	background-color: #f4eeed;
	text-transform: uppercase;
	width: auto;
	padding: 8px 22px;
	display: inline-block;
	/*float: left;*/
	color: #0b6fb9;
	font-weight: normal;
	/*padding-bottom: 10px;*/

}
#myCarousel .carousel-caption p{
	font-size: 16px;
	color: #fff;
	font-weight: 300;
}

#myCarousel .carousel-caption a{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#myCarousel .carousel-caption a:hover,
#myCarousel .carousel-caption a:active,
#myCarousel .carousel-caption a:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

#myCarousel .caption1 h3{
	text-align: left;
}
#myCarousel .caption1 p{
	text-align: left;
}

#myCarousel .caption2{
	left: 0;
	right: 14%;
	top: 44% !important;
	bottom: 0;
}
#myCarousel .caption2 h3{
	text-align: right;
}
#myCarousel .caption2 p{
	text-align: right;
}

/******** our_mission **********/

.sect_head{
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 15px;
}

#our_mission{
	padding: 0px 0px 20px;
	background-color: #fff;
	width: 100%;
	display: block;
}
#our_mission h1{
	color: #404040;
	text-align: left;
}

#our_mission p{
	font-size: 15px;
	color: #4e4e4e;
	text-align: left;
	line-height: 24px;
}

.mission_text_box{
	display: block;
	text-align: center;
	padding: 10px 0px;
	background-color: #1296f8;
	border-top: 1px solid #0578cd;
	border-bottom: 1px solid #0578cd;
	margin-bottom: 60px;
}
.mission_text_box span{
	font-size: 22px;
	color: #fff;
	text-align: center;	
}
.mission_text_box span > strong{
	font-weight: 900;
	display: inline-block;
	margin-bottom: 10px;
}
#our_mission .mission_text_box p {
	margin-bottom: 0;
	font-size: 18px;
	color: #fff;
	text-align: center;	
}

.box{
	width: 100%;
	display: block;	

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.box a{
	text-decoration: none;
	outline: none;
	display: block;
}
.box .box_caption{
	height: 55px;
	/*background-color: #e2ecf7;*/
	background-color: #a6caf1;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.box .box_caption p{
	font-size: 16px !important;
	line-height: 55px !important;
	color: #333 !important;
	text-align: center !important;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.yellow_color_bg{
	background-color: #f5ead5 !important;
}

.yellow_color_border{
	border-color: #f5ead5 !important;
}

.box_bott_line{
	font-size: 14px !important;
	color: #4e4e4e !important;
	text-align: center !important;
	padding-top: 10px;
}

.box_cont{
	padding: 25px;
	border: 1.5px solid #f6b540; /*#f5ead5*/
	position: relative;
	min-height: 293px;
	transition: all 0.3s ease-in-out;
}
.box_cont:hover{
	border-color: #0b6fb9;
}
.box_cont .gif_img{
	position: absolute;
    right: 15px;
    top: 15px;
    width: 45px;
}

.box_cont h5{
	font-size: 17px;
	color: #0b6fb9;
	line-height: 24px;
	margin-bottom: 15px;
	margin-top: 25px;
    border-bottom: 2px dashed;
    padding-bottom: 5px;
}
.box_cont p{
	font-size: 15px !important;
	color: #0b6fb9 !important;
	padding-top: 5px;
}
.box_cont ul{
	list-style-type: none;
    padding-left: 0px;
    padding-top: 10px;
}

.box_cont ul li.black_belt{
	border-color: #000;
    background: #343434;
    color: #fff;
}
.box_cont ul li.black_belt i{
	border-color: #000;
    background: #222;
}

.box_cont ul li.green_belt{
	background: #4CAF50;
    border-color: #2E7D32;
}
.box_cont ul li.green_belt i{
	background: #388E3C;
    border-color: #2E7D32;
}

.box_cont ul li.reliability_engg{
	background: #ff6f44;
    border-color: #d64e25;
}
.box_cont ul li.reliability_engg i{
	background: #f35f33;
    border-color: #d64e25;
}

.box_cont ul li{
	font-size: 14px;
	width: 80%;
    color: #fff;
    line-height: 20px;
    padding: 0px 0px 0px 0px;
    margin-bottom: 10px;
    border: 1px solid #be7e0a;
    border-radius: 15px;
    position: relative;
}
/*.box_cont ul li i{
	font-size: 18px;
	position: relative;
	left: 0px;
	top: 1px;
}*/
.box_cont ul li i {
    font-size: 14px;
    color: #fff;
    border: 1px solid #be7e0a;
    position: relative;
    left: 0;
    top: 0px;
    width: 28px;
    height: 28px;
    background: #f09b00;
    border-radius: 50%;
    line-height: 26px;
    text-align: center;
    margin-right: 10px;
}

/*.box_cont ul li:before{
	content: "\f058";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 25px;
    margin-top: 3px;
    color: #f09b00;
}*/


.mission_img_box{
	padding: 25px;
	/*border: 1.5px solid #e2ecf7;*/
	border: 1.5px solid #a6caf1;
	overflow: hidden;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.mission_img_box img{
	width: 100%;
	height: 185px;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/*.box:hover{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}*/

.box:hover .box_caption{
	background-color: #0b6fb9;
}

.box:hover .mission_img_box{
	border-color: #0b6fb9;
}

.box:hover .box_caption p{
	color: #fff !important;
}

.box:hover .box_caption.yellow_color_bg{
	background-color: #f09b00 !important;
}

.box:hover .mission_img_box.yellow_color_border{
	border-color: #f09b00 !important;
}

.box:hover .mission_img_box img{
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04);
}

.new_sect_head{
	height: 55px;
	background-color: #f09b00;
	position: relative;
}

.new_sect_head h2{
	/*font-family: 'Oswald', sans-serif;*/
	font-size: 20px;
	font-weight: 400;
	text-align: left;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;

	margin-top: 0px;
	margin-bottom: 0;

	padding-left: 20px;
	line-height: 55px;
}

.news_page_link{
	display: inline-block;
	padding: 5px;
	border: 0px;
	border-radius: 0px;
	background-color: #0b6fb9;
	color: #fff;
	position: absolute;
    top: 13px;
    right: 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;

    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.news_page_link:hover,
.news_page_link:active,
.news_page_link:focus{
	text-decoration: none;
	
	background-color: #084776;
	color: #fff;
	outline: none;
	box-shadow: none;
}

.new_outer{
	border: 1px solid #d7d7d7;
}

.new_outer .str_wrap{
	/*height: 450px;*/
	height: 236px;
}

.news_scroller{
	width: 100%;
	background-color: #fafafa;
	border-top: 1px solid #d7d7d7;
	padding: 10px 20px;
}
.news_scroller h6{
	margin-top: 10px;
	margin-bottom: 5px;
}
.news_scroller h6 a{
	font-size: 15px;
	line-height: 20px;
	color: #303030;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.news_scroller h6 a:hover,
.news_scroller h6 a:active,
.news_scroller h6 a:focus{
	text-decoration: none;
	color: #0b6fb9;
	outline: none;
}

.news_scroller .datebox{
	font-size: 12px;
	color: #999;
	display: inline-block;
	font-style: italic;
	margin-bottom: 3px
}

.news_scroller p{
	font-size: 13px !important;
	color: #595959 !important;
	line-height: 20px !important;
	margin-bottom: 10px;
}


/********* courses ***********/

#courses{
	padding: 40px 0px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#courses h1{
	color: #404040;
}

#courses p{
	font-size: 15px;
	color: #4e4e4e;
	margin-bottom: 20px;
	text-align: center;
	line-height: 24px;
}
.courses_bg{
	background: url('../img/courses-bg.jpg') no-repeat top center;
	background-size: cover;
	padding: 40px 0px;
}

.course_box{
	width: 100%;
	display: block;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.course_box:hover{
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}

.course_box a{
	text-decoration: none;
	outline: none;
	display: block;
}

.course_thumb_img{
	background-color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.course_thumb_img img{
	width: 100%;
	height: 170px;
	text-align: center;
}

.course_title_box{
	background-color: #f5f7f9;
	padding: 15px; 
}	

.course_title_box h4{
	font-size: 16px;
	font-weight: 600;
	color: #595959;
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
}
.course_box a.read_more_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.course_box a.read_more_btn:hover,
.course_box a.read_more_btn:active,
.course_box a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}


/********** blog ***********/

#blog{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#blog h1{
	color: #404040;
}

.blog_news_box{
	width: 100%;
	display: block;
	/*text-align: center;*/
	border: 1px solid #d7d7d7;
	padding: 5px;
	margin-bottom: 30px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog_news_box:hover{
	/*border-color: #f09b00;*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}

.blog_img_box{
	/*background-color: #fff;*/
	position: relative;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.blog_img_box img{
	width: 100%;
	height: 170px;
	text-align: center;
}

.blog_date{
	position: absolute;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
	color: #fff !important;
	padding: 5px;
	background-color: #f09b00;
	left: 14px;
	bottom: 10px;
}


.blog_info_box{
	background-color: #ececec;
	padding: 15px; 
	min-height: 200px;
	position: relative;
}	

.blog_info_box h5{
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 22px;

	white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_info_box h5 a{
	font-size: 15px;
	font-weight: 600;
	color: #0b6fb9;
	text-align: left;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog_info_box h5 a:hover,
.blog_info_box h5 a:active,
.blog_info_box h5 a:focus{
	text-decoration: none;
	color: #f09b00;
	outline: none;
}

.blog_info_box p{
	font-size: 13px !important;
	color: #404040;
}

.blog_info_box .blog_detail_link {
    position: absolute;
    bottom: 15px;
    display: inline-block;
    font-weight: 500;
    background-color: #0b6fb9;
    width: 100px;
    padding: 7px 0px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog_info_box .blog_detail_link:hover,
.blog_info_box .blog_detail_link:active,
.blog_info_box .blog_detail_link:focus{
	color: #fff;
	background-color: #f09b00;
	outline: none;
	text-decoration: none;
}

#blog a.read_more_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	margin-top: 10px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#blog a.read_more_btn:hover,
#blog a.read_more_btn:active,
#blog a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

/******** our_customers *********/

#our_customers{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;

	background: url('../img/our-customer-bg.jpg') no-repeat center;
	background-size: cover;
}

#our_customers h1{
	color: #fff;
	padding-bottom: 20px;
}

.customer_logo{ 
	/*border: 1px solid #f09b00;*/
	padding: 5px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.customer_logo:hover{ 
	border-color: #fff;
}

.customer_logo img{
	width: 100%;
	height: 125px;
}

@media screen and (max-width: 992px){
#slider-control a {

	display: block;
  	padding-top: 70px;
  	margin: 0 auto;
  	font-size: 40px;
}
}

.carousel-showmanymoveone .carousel-control {
  width: 4%;
  background-image: none;
  font-size: 40px;
  padding-top: 40px;
}
.carousel-showmanymoveone .carousel-control.left {
  margin-left: -35px;

}
.carousel-showmanymoveone .carousel-control.right {
  margin-right: -35px;
}
.carousel-showmanymoveone .cloneditem-1,
.carousel-showmanymoveone .cloneditem-2,
.carousel-showmanymoveone .cloneditem-3,
.carousel-showmanymoveone .cloneditem-4,
.carousel-showmanymoveone .cloneditem-5 {
  display: none;
}




@media all and (min-width: 546px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -50%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 50%;
  }
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right,
  .carousel-showmanymoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-1 {
    display: block;
  }
}
@media all and (min-width: 546px) and (transform-3d), all and (min-width: 546px) and (-webkit-transform-3d) {
  .carousel-showmanymoveone .carousel-inner > .item.active.right,
  .carousel-showmanymoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev.right,
  .carousel-showmanymoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
@media all and (min-width: 992px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right,
  .carousel-showmanymoveone .carousel-inner > .active {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-2,
  .carousel-showmanymoveone .carousel-inner .cloneditem-3,
  .carousel-showmanymoveone .carousel-inner .cloneditem-4,
  .carousel-showmanymoveone .carousel-inner .cloneditem-5,
  .carousel-showmanymoveone .carousel-inner .cloneditem-6  {
    display: block;
  }
}
@media all and (min-width: 992px) and (transform-3d), all and (min-width: 992px) and (-webkit-transform-3d) {
  .carousel-showmanymoveone .carousel-inner > .item.active.right,
  .carousel-showmanymoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(16.666%, 0, 0);
    transform: translate3d(16.666%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-16.666%, 0, 0);
    transform: translate3d(-16.666%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev.right,
  .carousel-showmanymoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}


/********* our_team *****************/

#our_team{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#our_team h1{
	color: #2c64b2;
	padding-bottom: 20px;
}

.team_mem_box{
	width: 100%;
	display: block;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team_mem_box:hover{
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}

.mem_img_box{
	background-color: #fff;
	border: 1px solid #d7d7d7;
	border-bottom: none;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.mem_img_box img{
	width: 100%;
	height: 224px;
	text-align: center;
}


.mem_info_box{
	background-color: #f5f5f5;
	padding: 15px; 
	border: 1px solid #d7d7d7;
}	

.mem_info_box h5{
	margin-top: 0;
	margin-bottom: 15px;
}

.mem_info_box h5 a{
	font-size: 15px;
	font-weight: 500;
	color: #0b6fb9;
	text-align: left;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.mem_info_box h5 a:hover,
.mem_info_box h5 a:active,
.mem_info_box h5 a:focus{
	text-decoration: none;
	color: #f09b00;
	outline: none;
}

#our_team a.read_more_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	margin-top: 40px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#our_team a.read_more_btn:hover,
#our_team a.read_more_btn:active,
#our_team a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

.member_social ul{
	list-style-type: none;
	margin: 0px auto 0px;
	padding-left: 0px;
    display: inline-block;
}
.member_social li {
    float: left;
    display: inline-block;
    padding: 0px 8px 0px 0px;
}

.member_social li:last-of-type {
	padding-right: 0px;
}
.member_social li a{
	display: block;
	color: #fff;
	text-align: center;
	border: 1.5px solid transparent;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.member_social li a i{
	width: 40px;
	line-height: 40px;
	font-size: 22px;
	height: 40px;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;

}

.member_social li a:hover i{
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

.member_social li a.fb_color:hover{
	/*border-color: #3b5998;
	background-color: transparent;
	color: #3b5998;*/
}
.member_social li a.twit_color:hover{
	/*border-color: #00aced;
	background-color: transparent;
	color: #00aced;*/
}
.member_social li a.linkedin_color:hover{
	/*border-color: #0077b5;
	background-color: transparent;
	color: #0077b5;*/
}

#our_team a.read_more_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	margin-top: 40px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#our_team a.read_more_btn:hover,
#our_team a.read_more_btn:active,
#our_team a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

/***** our_mission_page *********/

#our_mission_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#our_mission_page h4{
	font-size: 22px;
    font-weight: bold;
    color: #0b6fb9;
    margin-top: 0px;
}

#our_mission_page small
{	
	display: block;
	font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}

#our_mission_page p{
	font-size: 14px;
	color: #595959;
	line-height: 20px;
	margin-top: 15px;
}

.our_mission_img_box{
	max-width: 100%;
	display: block;
	margin: 15px 0px;
}

.our_mission_img_box img{
	max-width: 100%;
}

/****** News & Events *******/

#news_events{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

.news_cont{
	border: 1px solid #d7d7d7;
}

.news_box{
	width: 100%;
	background-color: #fafafa;
	border-top: 1px solid #d7d7d7;
	padding: 10px 20px;
}
.news_box:first-of-type{
	border-top: none;
}

.news_box h6{
	margin-top: 10px;
	margin-bottom: 5px;
}
.news_box h6 a{
	font-size: 15px;
	line-height: 20px;
	color: #303030;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.news_box h6 a:hover,
.news_box h6 a:active,
.news_box h6 a:focus{
	text-decoration: none;
	color: #0b6fb9;
	outline: none;
}

.news_box .datebox{
	font-size: 12px;
	color: #999;
	display: inline-block;
	font-style: italic;
	margin-bottom: 3px
}

.news_box p{
	font-size: 13px !important;
	color: #595959 !important;
	line-height: 20px !important;
	margin-bottom: 10px;
}

/***** News Events Details *********/

#news_events_details{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#news_events_details h4{
	font-size: 22px;
    font-weight: bold;
    color: #0b6fb9;
    margin-top: 0px;
}

#news_events_details small
{	
	display: block;
	font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}

#news_events_details p{
	font-size: 14px;
	color: #595959;
	line-height: 20px;
	margin-top: 15px;
}

.news_details_img_box{
	max-width: 100%;
	display: block;
	margin: 15px 0px;
}

.news_details_img_box img{
	max-width: 100%;
}

/******* Blog Page ******/

#blog_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

/******** Blog Details **********/

#blog_details{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#blog_details h4{
	font-size: 22px;
    font-weight: bold;
    color: #0b6fb9;
    margin-top: 0px;
}

#blog_details small
{	
	display: block;
	font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}

#blog_details p{
	font-size: 14px;
	color: #595959;
	line-height: 20px;
	margin-top: 15px;
}

.blog_details_img_box{
	max-width: 100%;
	display: block;
	margin: 10px 0px;
}

.blog_details_img_box img{
	max-width: 100%;
}

.comment_sect h5{
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;

    font-size: 18px;
    font-weight: 600;
    color: #0b6fb9;
    text-align: left;
}

.comment_sect h6{
    margin-top: 0px;
    margin-bottom: 2px;
    text-align: left;

    font-size: 16px;
    font-weight: 500;
    color: #343434;
}

.comment_sect small.bl_date{
	font-size: 11px !important;
	display: block;
	color: #666 !important;
}

.comment_sect .floating-label-form-group-with-focus label{color:#0b6fb9 !important;}

.comment_sect .floating-label-form-group{ border: none; }

.comment_sect .floating-label-form-group select{
    margin-top: 22px;
    color: #999 !important;
}

.comment_sect .radiobtn{
    margin-top:27px;
    color: #999;
    font-weight:400;
    margin-bottom:0px;
    border-bottom: 1px solid #d7d7d7 !important;
}

.comment_sect .floating-label-form-group input,
.comment_sect .floating-label-form-group textarea, 
.comment_sect .floating-label-form-group select{
    border-bottom: 1px solid #d7d7d7;
    font-size: 15px;
    border-top: none;
    border-left:none;
    border-right: none;
}

.comment_sect .floating-label-form-group input:hover,
.comment_sect .floating-label-form-group textarea:hover {
    border-bottom:1px solid #0b6fb9 !important; background:transparent !important; box-shadow:none;
    -webkit-transition : border 500ms ease-out;
    -moz-transition : border 500ms ease-out;
    -o-transition : border 500ms ease-out;
    transition : border 500ms ease-out;
    border-top: none;
    border-left:none;
    border-right: none;
}

.comment_sect .floating-label-form-group input:focus,
.comment_sect .floating-label-form-group textarea:focus {
    border-bottom:1px solid #0b6fb9 !important; background:transparent !important; box-shadow:none;
    color: #777;
    -webkit-transition : border 500ms ease-out;
    -moz-transition : border 500ms ease-out;
    -o-transition : border 500ms ease-out;
    transition : border 500ms ease-out;

    border-top: none;
    border-left:none;
    border-right: none;
}

.comment_sect .floating-label-form-group:hover, .floating-label-form-group:focus{
    border-bottom:none !important; 
    background:transparent !important; box-shadow:none;
}
.comment_sect label{ font-weight: normal; }

.comment_sect .form_submit_btn {
    background-color: #0b6fb9;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 0px;
    padding: 8px 20px;
    margin-top: 20px;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.comment_sect .form_submit_btn:hover{
    background-color: #f09b00;
    color: #fff;
}

.comment_sect .comment_form p {
    font-size: 14px;
    color: #343434;
    background-color: transparent;
    margin-top: 10px;
    text-align: left;
}


/********* About us *********/

#about_us{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#about_us hr{
	border: 2px dashed #eee;
	margin-top: 20px;
	margin-bottom: 20px;
}

#about_us h3{
	font-size: 20px;
	font-weight: 600;
	margin-top:5px;
	margin-bottom:10px;
	color:#0b6fb9;
}

.team_mem_info a{
	color: #0b6fb9;
	font-size: 15px;
	font-weight: 600;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team_mem_info a:hover,
.team_mem_info a:active,
.team_mem_info a:focus{
	color: #f09b00;
	text-decoration: none;
}

#about_us p{
	font-size: 15px;
	color:#666;
	line-height: 24px;
}

#about_us .member_info{
	box-sizing: border-box;
	padding: 10px 0px 10px;
	text-align: center;
	min-height: 0px;
	background-color: #f09b00;
}

#about_us .member_info h4{
	font-size: 16px;
	margin-top:5px;
	margin-bottom:5px;
	color:#fff;
}
#about_us .member_info small{
	font-size: 14px;
	color:#fff;
}

#about_us ul {
    list-style-type: none;
    padding-left: 35px;
}

#about_us ul li {
    font-size: 15px;
    color: #404040;
    line-height: 20px;
    padding-bottom: 8px;
}

#about_us ul li:before {
    content: "\f058";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 15px;
    margin-top: 3px;
    color: #f09b00;
}

.team_img_border_box{
	padding: 10px;
	box-sizing: border-box;
	/*border: 2px solid #d7d7d7;*/
	border: 4px double #d7d7d7;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team_img_border_box a{ 
	display: block; 
	margin: auto; 
	text-align: center; 
} 

.team_img_border_box img{
	height:190px;
	margin: auto;
	
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team_img_border_box:hover{
	border-color: #f09b00;
}

.team_img_border_box:hover img{
	transform: scale(1.04);
}





/********* service_page *********/

.banner-inner{
	width: 100%;
	background:url('../img/inner-banner.jpg') no-repeat top center;
	background-size: cover;
}

.banner-inner h1{
	color: #fff;
	margin-bottom: 5px !important;
	padding-top: 35px;
	padding-bottom: 0px;
}

.banner-inner .breadcrumb {
    /*//padding: 10px 0px;
    margin-bottom: 0px;
    margin-top: 0px;*/
    margin: 0px auto;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 35px;
    list-style: none;
    background-color: transparent;
    border-radius: 0px;
}

.banner-inner .breadcrumb > li {
    display: inline-block;
    font-size: 15px;
    color: #e1e1e1;
}

.banner-inner .breadcrumb > li + li:before {
    padding: 0 5px;
    color: #e1e1e1;
    font-family: FontAwesome;
    content: "\f105";
}

.banner-inner .breadcrumb > li > a {
    color: #e1e1e1;
    font-weight: 400;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;    
}

.banner-inner .breadcrumb > li > a:hover,
.banner-inner .breadcrumb > li > a:focus,
.banner-inner .breadcrumb > li > a:active {
    color: #f09b00;
}

.banner-inner .breadcrumb > .active {
    color: #f09b00;
    font-weight: 500;
}

#service_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}
#service_page h3{
	font-size: 22px;
	font-weight: bold;
	color: #0b6fb9;
	margin-top: 0px;
	margin-bottom: 15px;
}

.service_detail_box{
	margin-bottom: 30px;
	padding: 20px;
	padding-bottom: 40px; 

	border: 2px dotted #d7d7d7;
}

.service_detail_box p{
	font-size: 15px;
	color: #404040;
	text-align: left;
	line-height: 22px;
	font-weight: 400;
}

.service_detail_box ul{
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 0px;
}
.service_detail_box ul li{
	font-size: 15px;
	color: #404040;
	line-height: 20px;
	padding-bottom: 10px;
}
.service_detail_box ul li:last-child{
	padding-bottom: 0px;
}

.service_detail_box ul li:before {
    content: "\f058";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 15px;
    margin-top: 3px;
    color: #f09b00;
}

.service_img{
	background-color: #fff;
	border: 1px solid #d7d7d7;

	overflow: hidden;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.service_img img{
	width: 100%;
	height: 190px;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.service_img:hover{
	border-color: #f09b00;
}

.service_img:hover img {
    transform: scale(1.04);
}

	/********* blogCarousel ********/

		#blogCarousel .carousel-control{
			font-size: 36px;
			color: #ccc;
			opacity: 0;
			background-image: none;
			background-color: rgba(0,0,0,0.3);
			vertical-align: middle;
			height: 50px;
			top: 40%;

			-webkit-transition: all 0.4s ease-in-out;
			-moz-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;
		}

		#blogCarousel .carousel-control:hover{
			color: #fff;
			background-color: rgba(0,0,0,0.6);
		}
		#blogCarousel .carousel-control.left{
			left: 6px;
		}
		#blogCarousel .carousel-control.right{
			right: 6px;
		}

		#blogCarousel:hover .carousel-control{
			opacity: 1;
		}

		#blogCarousel .carousel-control i{
			vertical-align: baseline;
			/*padding-top: 130px;*/
		}

		#blogCarousel .blog_info_box {
		    padding: 15px;
		    min-height: 200px;
		}

	/******************************/

/******** Online Simulated Exam Page *****/
#online_exam_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

.note_box{
	display: block;
	position: relative;
	padding: 15px;
	margin-top: 15px;
	color: #595959;
	background-color: #fafafa;
	border: 1px solid #d7d7d7;
	/*border-radius: 4px;*/
}

.note_box p{
	font-size: 15px;
}

.note_box ul{
	list-style-type: none;
   /*// padding-left: 22px;*/
   margin-bottom: 0px;
}
.note_box ul li {
    font-size: 15px;
    /*color: #404040;*/
    line-height: 20px;
    padding-bottom: 10px;
}
.note_box ul li:before {
    content: "\f058";
    /*content: "\f0a9";*/
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 15px;
    margin-top: 3px;
    color: #f09b00;
}
.course_demo{
	display: block;
	padding-top: 35px;
	//border-bottom: 2px dotted #d7d7d7;
}
.demo_title{
	height: 50px;
    background-color: #f09b00;
    position: relative;
}
.demo_title h5{
	font-size: 18px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0;
    padding-left: 20px;
    line-height: 50px;

}
/*.course_demo h5{
	font-size: 16px;
    color: #404040;
    font-weight: 600;
}*/
.test_btn_wrap{
	display: block;
	padding: 15px 15px;
	border: 1px solid #d7d7d7;
	background-color: #fafafa;
}

.course_demo form{
	display: inline-block;
}
.course_demo .test_login_btn{
	margin-right: 10px;
}
.course_demo .test_login_btn, .course_demo .test_demo_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin: 0px auto;
	padding: 13px 0px;
	border-radius: 0px;
	background-color: #0b6fb9;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.course_demo .test_login_btn{
	margin-bottom: 15px;
}

.course_demo .test_login_btn:hover,
.course_demo .test_login_btn:active,
.course_demo .test_login_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

.course_demo .test_demo_btn:hover,
.course_demo .test_demo_btn:active,
.course_demo .test_demo_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}
.exam_cat_outer{
	margin-top: 40px;
	display: block;
	margin-bottom: 0px;
}
.exam_cont{
	position: relative;
	display: block;
}
.exam_cont:before{
	position: absolute;
	content: "";
	height: 100%;
	width: 2px;
	display: block;
	background: #444;
	z-index: 2;
	top: 0;
    left: 20px;
    transition: all 0.3s ease-in-out;
}

.exam_cont:hover .exam_cat_head.sigma_black{
	background-color: #343434;
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	transform: translateX(10px);
}
/*.exam_cont:hover .exam_cat_head.sigma_black:before,
.exam_cont:hover .exam_cat_head.sigma_green:before{
	-webkit-transform: translateX(-10px);
	-moz-transform: translateX(-10px);
	transform: translateX(-10px);
}*/
.exam_cont:hover .exam_cat_head.sigma_green{
	background-color: #43A047;
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	transform: translateX(10px);
}
.exam_cont:hover .exam_cat_head.reliability_engg{
	background-color: #f76539;
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	transform: translateX(10px);
}
.exam_cat_head{
	display: inline-block;
	text-align: center;
	background-color: #343434;
	border: 1px solid #000;
	padding: 10px;
	position: relative;
	z-index: 5;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}
.exam_cat_head.sigma_black{
	background-color: #404040;
	border-color: #000;
}
.exam_cat_head.sigma_green{
	background-color: #4CAF50;
	border-color: #2E7D32;
}
.exam_cat_head.reliability_engg{
	/*background-color: #4472c4;  */
	background-color: #ff6f44;
	/*border-color: #144192;*/
	border-color: #d64e25;
}


/*.exam_cat_head:before{
	position: absolute;
	content: "";
	height: 340px;
	width: 2px;
	display: block;
	background: #444;
	z-index: 2;
	top: 100%;
    left: 10%;
    transition: all 0.3s ease-in-out;
}*/
.exam_cat_head h4{
	font-size: 18px;
	color: #fff;
}
.exam_cat{
	position: relative;
	display: block;
	padding-top: 30px;
}
.category{
	position: relative;
	display: inline-block;
	width: 70%;
	padding: 10px;
	margin-left: 35px;
	background-color: #fafafa;
	border: 1px solid #d7d7d7;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}
.category:before{
	content: "";
	position: absolute;
	top: 15px;
	left:-14px;
	border-right: 14px solid #d7d7d7;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	transition: all 0.2s ease-in-out;
}
.exam_cat a{
	font-size: 15px;
	color: #595959;
	margin: 15px 0px;
	text-align: left;
	display: inline-block;
	width: 100%;
	cursor: pointer;
}
.exam_cat a:hover,
.exam_cat a:active,
.exam_cat a:focus{
	text-decoration: none;
	outline: none;
}
.exam_cat a:hover .category.sigma_black_cat{
	background-color: #565656;
	color: #fff;
	border-color: #333;
	transform: translateY(-10px);
}
.exam_cat a:hover .category.sigma_black_cat:before{
	border-right-color: #333;
}
.exam_cat a:hover .category.sigma_green_cat{
	background-color: #66BB6A;
	color: #fff;
	border-color: #388E3C;
	transform: translateY(-10px);
}
.exam_cat a:hover .category.sigma_green_cat:before{
	border-right-color: #388E3C;
}
.exam_cat a:hover .category.reliability_engg_cat{
	/*background-color: #5585da;*/
	background-color: #ff8763;
	color: #fff;
	border-color: #e45a30;
	transform: translateY(-10px);
}
.exam_cat a:hover .category.reliability_engg_cat:before{
	border-right-color: #e45a30;
}
.rupee_pay_note{
	padding: 40px 0px;
	display: block;
}
.rupee_pay_note p{
	font-size: 15px;
	color: #595959;
}

.powered_by_wrap{
	display: block;
	padding-top: 55px;
}
.powered_by span{
	display: block;
	/*padding: 0px 0px 13px;*/
	padding-bottom: 4px;
	color: #0b6fb9;
	font-size: 16px;
	font-weight: 600;
}
.powered_by a{
	display:inline-block;
	border: 1px solid #d7d7d7;
    border-radius: 2px;
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
}
.powered_by a img{
	max-width: 200px;	
}
.powered_by a:hover,
.powered_by a:active,
.powered_by a:focus{
	text-decoration: none;
	outline: none;
	box-shadow: none;
	border-color: #0b6fb9;
}
.payment_note{
	display: block;
	padding: 10px;
	background-color: #fafafa;
	border: 1px solid #d7d7d7;
	border-radius: 2px;
	margin-top: 10px;
}
.payment_note p{
	color: #595959;
	font-size: 14px;
	margin-bottom: 0px;
}
.payment_note p a, .payment_note li a{
	color: #f09b00;
	font-weight: 500;
}
.payment_note p a:hover,
.payment_note p a:active,
.payment_note p a:focus,
.payment_note li a:hover,
.payment_note li a:active,
.payment_note li a:focus {
	text-decoration: none;
	color: #0b6fb9;
}

.payment_note ul {
    list-style-type: none;
    margin-bottom: 0px;
    padding-left: 25px;
    padding-top: 10px;
}
.payment_note ul li {
    font-size: 14px;
    /* color: #404040; */
    line-height: 20px;
    padding-bottom: 10px;
}
.payment_note ul li:before {
    content: "\f058";
    /* content: "\f0a9"; */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    position: absolute;
    left: 25px;
    margin-top: 3px;
    color: #f09b00;
}

#exam_enq_modal .modal-title { color: #0b6fb9; }



/********** course_page ********/

#courses_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}
.inner_page_subhead{
	font-size: 22px;
	font-weight: bold;
	color: #0b6fb9;
	margin-top: 0px;
	margin-bottom: 15px;
	position: relative;
}
.inner_page_subhead:after{
	content: "";
	border-bottom: 2px dotted #d7d7d7;
	width: 100%;
	display: block;
	position: absolute;
	margin-top: 15px;
}

/*#courses_page h3{
	font-size: 22px;
	font-weight: bold;
	color: #0b6fb9;
	margin-top: 0px;
	margin-bottom: 15px;
	position: relative;
}
#courses_page h3:after{
	content: "";
	border-bottom: 2px dotted #d7d7d7;
	width: 100%;
	display: block;
	position: absolute;
	margin-top: 15px;
}*/

.course_detail_box{
	width: 100%;
	display: block;
	border: 1px solid #d7d7d7;
	padding: 5px;

	margin-bottom: 30px;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.course_detail_box:hover{
	/*border-color: #f09b00;*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}

.course_code{ 
	background-color: #f09b00;
	padding: 4px 0px 4px 10px;
}
.course_code p{
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 0px;
}
.course_detail{
	background-color: #f2f2f2;
	padding: 10px;
	min-height: 280px;
	position: relative;
}
.course_detail h6{
	font-size: 15px;
	color: #0b6fb9;
	font-weight: 400;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	white-space: nowrap;
	width: 100%; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.other_info{
	display: block;
	width: 100%;
	padding-bottom: 10px;
}
/*.other_info span{
	font-size: 13px;
	color: #979798;
}
.type{
	display: inline-block;
	float: left;
	margin-right: 20px;
}
.duration{
	display: inline-block;
	float: left;
}*/

.other_info span{
	font-size: 13px;
	color: #979798;
	display: block;
}
.type{
	display: block;
	/*float: left;*/
	/*margin-right: 20px;*/
}
.duration{
	display: block;
	/*float: left;*/
}
.course_desc{
	/*max-height: 145px;*/
	display: block;
	/*overflow: hidden;*/
}
.course_detail p{
	font-size: 13px;
	font-weight: 400;
	color: #404040;
}

.course_detail a.read_more_btn{
	position: absolute;
	bottom: 10px;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 100px;
	padding: 7px 0px;
	border-radius: 0px;
	background-color: #0b6fb9;

	margin-top: 10px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.course_detail a.read_more_btn:hover,
.course_detail a.read_more_btn:active,
.course_detail a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}


/******* course_details_page **********/

#course_details_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}
.c_code{
	position:absolute;
	right: 0px;
	top: 5px;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	color: #999;
}

.c_duration{
	font-size: 14px;
	color: #999;
	display: block;
}

/*#course_details_page h5{
	font-size: 16px;
	color: #404040;
	font-weight: 600;
}*/

#course_details_page h6{
	font-size: 16px;
	color: #0b6fb9;
	font-weight: 600;
}

#course_details_page p{
	font-size: 15px;
	color: #595959;

}

.course_detail_info_wrap h3{
	font-size: 15px;
	color: #595959;	
}

.course_detail_info_wrap ul{
	list-style-type: none;
	padding-left: 55px;
}
.course_detail_info_wrap ul li{
	font-size: 15px;
	color: #404040;
	line-height: 20px;
	padding-bottom: 10px;
}

.course_detail_info_wrap ul li:before {
    content: "\f058";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 45px;
    margin-top: 3px;
    color: #f09b00;
}

#course_details_page p a{
	color: #0b6fb9;
	font-size: 15px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#course_details_page p a:hover,
#course_details_page p a:focus,
#course_details_page p a:active{
	color: #f09b00;
	text-decoration: none;
	outline: none;
}

#course_details_page span{
	font-size: 16px;
	color: #777;
	display: block;
}

#course_details_page ol{
	padding-left: 20px;
}
#course_details_page ol li{
	font-size: 16px;
	color: #0b6fb9;
	line-height: 20px;
	padding-bottom: 10px;
	padding-left: 15px;
}
#course_details_page ol li:last-child{
	font-weight: 600;
	font-style: italic;
}


/************ certification ***********/

#certification{
	padding: 30px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#certification h5{
	font-size: 18px;
	color: #f09b00;
	font-weight: 600;
}

#certification p{
	font-size: 15px;
	color: #595959;
}

#certification p a{
	color: #0b6fb9;
	font-size: 15px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#certification p a:hover,
#certification p a:focus,
#certification p a:active{
	color: #f09b00;
	text-decoration: none;
	outline: none;
}

/****** training_calender *********/

#training_calender{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#training_calender table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}

#training_calender table tr th:nth-of-type(1)
{
	width: 75px;
}

#training_calender table thead tr th{
	padding: 8px;
	font-weight: normal !important;
	font-size: 15px;
	/*white-space: nowrap;*/
}

#training_calender table > thead > tr > th {
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

#training_calender table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#training_calender table.table-striped>tbody>tr{
    background-color: #fff;
    padding: 12px;
}
#training_calender table tbody tr td{
	font-size: 14px;
}
#training_calender table tbody tr td:nth-of-type(1),
#training_calender table tbody tr td:nth-of-type(7),
#training_calender table tbody tr td:nth-of-type(6){
	text-align: center;
}

#training_calender table tbody tr td a{
	color: #dc5858;
	font-size: 18px;
} 

#training_calender table tbody tr td a:hover{
	color: #e41313;
}


/****** articles **********/

#newsletter{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#newsletter table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}

#newsletter table tr th:nth-of-type(1)
{
	width: 70px;
}

#newsletter table thead tr th{
	padding: 12px;
	font-weight: normal !important;
	font-size: 15px;
	white-space: nowrap;
}

#newsletter table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#newsletter table.table-striped>tbody>tr>td{
	padding: 12px;
	color: #404040;
}

#newsletter table.table-striped>tbody>tr{
    background-color: #fff;
}

#newsletter table tbody tr td:nth-of-type(1){
	text-align: center;
}

#newsletter table tbody tr td a{
	color: #e41313;
	font-size: 18px;
} 

#newsletter table tbody tr td a:hover{
	color: #f09b00;
}

/****** articles **********/

#articles{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#articles table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}

#articles table tr th:nth-of-type(1)
{
	width: 70px;
}

#articles table thead tr th{
	padding: 12px;
	font-weight: normal !important;
	font-size: 15px;
	white-space: nowrap;
}

#articles table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#articles table.table-striped>tbody>tr>td{
	padding: 12px;
	color: #404040;
}

#articles table.table-striped>tbody>tr{
    background-color: #fff;
}

#articles table tbody tr td:nth-of-type(1){
	text-align: center;
}

#articles table tbody tr td:nth-of-type(2) a{
	color: #404040;
	font-size: 14px;
}

#articles table tbody tr td a{
	color: #e41313;
	font-size: 18px;
} 

#articles table tbody tr td a:hover{
	color: #f09b00;
}


/****** downloads **********/

#downloads{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#downloads table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}

#downloads table tr th:nth-of-type(1)
{
	width: 70px;
}

#downloads table thead tr th{
	padding: 12px;
	font-weight: normal !important;
	font-size: 15px;
	white-space: nowrap;
}


#downloads table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#downloads table.table-striped>tbody>tr>td{
	padding: 12px;
	color: #404040;
}

#downloads table.table-striped>tbody>tr{
    background-color: #fff;
}

#downloads table tbody tr td:nth-of-type(1){
	text-align: center;
}

#downloads table tbody tr td:nth-of-type(2) a{
	color: #404040;
	font-size: 14px;
}

#downloads table tbody tr td a{
	color: #e41313;
	font-size: 18px;
}
#downloads table tbody tr td a i.fa-file-excel-o{
	color: #1d7044;
}
#downloads table tbody tr td a i.fa-file-archive-o{
	color: #dfa30b;
} 

#downloads table tbody tr td a:hover,
#downloads table tbody tr td a:hover i.fa-file-excel-o,
#downloads table tbody tr td a:hover i.fa-file-archive-o{
	color: #f09b00;
}

/********* external_links ***********/

#external_links{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#external_links table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}

#external_links table tr th:nth-of-type(1)
{
	width: 70px;
}

#external_links table thead tr th{
	padding: 12px;
	font-weight: normal !important;
	font-size: 15px;
	white-space: nowrap;
}


#external_links table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#external_links table.table-striped>tbody>tr>td{
	padding: 12px;
	color: #404040;
}

#external_links table.table-striped>tbody>tr{
    background-color: #fff;
}

#external_links table tbody tr td:nth-of-type(1){
	text-align: center;
}

#external_links table tbody tr td:nth-of-type(2) a{
	color: #404040;
	font-size: 14px;
}

#external_links table tbody tr td a{
	color: #404040;
	font-size: 14px;
}

#external_links table tbody tr td a:hover{
	color: #f09b00;
}


/********** photo_gallery *********/

#photo_gallery{
	padding: 40px 0px 5px;
	background-color: #fff;
	width: 100%;
	display: block;
}

.photo_gal_outer{
	margin-bottom: 30px;
	display: block;
}

.photo_gal_img{
	border: 1px solid #d7d7d7;
	padding: 10px;
	text-align: center;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.photo_gal_img img{
	text-align: center;
	height: 150px;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.img_title{
	padding: 10px;
	display:block;
	background-color: #f09b00;
}

.photo_gal_outer span{
	display: block;
	white-space: nowrap; 
    width: 100%;
    overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
	text-align: center;
	font-size: 14px;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.photo_gal_img:hover{
	border-color: #f09b00;
}

.photo_gal_img:hover img {
    transform: scale(1.04);
}

/*.photo_gal_outer a:hover{
	color: #f09b00;
}*/

/******** FAQs ***********/

#faqs{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#faqs .panel{
	box-shadow: none;
	border-radius:0px;
}

#faqs .panel-title a{
	display: block;
	padding: 6px;
	text-align: left;
	text-decoration: none;
	color: #666;
}
#faqs .panel-title a i.fa{
	float: right;
}

#faqs .panel-title a:hover,
#faqs .panel-title a:focus{
	text-decoration: none;
	color: #f09b00;
}

#faqs .panel-body{
	color: #666;
	font-size: 15px;
}

#faqs ul{ padding-left: 35px; }

#faqs ul li {
    font-size: 15px;
    color: #404040;
    line-height: 20px;
    padding-bottom: 8px;
}

/*#faqs ul li:before {
    content: "\f058";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 40px;
    margin-top: 4px;
    color: #f09b00;
}*/

#faqs table{
	width: 250px;
}

#faqs table thead{
	background-color: #f09b00;
	color: #fff;
	padding: 10px;
}


#faqs table thead tr th{
	padding: 12px;
	font-weight: normal !important;
	font-size: 15px;
	white-space: nowrap;
	text-align: center;
}


#faqs table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;/*#e6f6ff;*/
}

#faqs table.table-striped>tbody>tr>td{
	padding: 12px;
	color: #404040;
}

#faqs table.table-striped>tbody>tr{
    background-color: #fff;
}

#faqs table tbody tr td{
	text-align: center;
}


/************** contact_us **********/

#contact_us{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#contact_us h5{
	font-size: 18px;
	font-weight: 600;
	color:#f09b00;
	line-height: 25px;
	margin-top: 0px;
}

#contact_us p{
	font-size: 15px;
	color:#404040;
	line-height: 25px;
	margin-top: 25px;
}

#contact_us a{
	color: #404040;
	font-size: 15px;
	margin-top: 10px;
	display: inline-block;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#contact_us a i{
	font-size: 16px;
	margin-top: 1px;
	margin-right: 10px;
}

#contact_us a:hover,
#contact_us a:active,
#contact_us a:focus{
	text-decoration: none;
	color: #f09b00;
}

.iqr_map iframe{
	width: 100%;
	height: 230px;
}


.contact_form .form_fields {
    color: #666;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #999;
    background-color: transparent;
    font-size: 15px;
    box-shadow: none;
    border-radius: 0px;
    padding-left: 0;
    outline: none;
    margin-bottom: 10px;
}


.contact_form .enq_btn {
    font-size: 14px;
    font-weight: 500;
	text-transform: uppercase;
	background-color: #0b6fb9;
	color:#fff;
	border-radius: 0px;
	border: none;
	width: 110px;
	padding: 8px 10px;
	margin-top: 5px;
	margin-left:-15px;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.contact_form .enq_btn:hover,
.contact_form .enq_btn:focus{
	background-color: #f09b00;
	color: #fff;
	outline: none;
}

.contact_form .floating-label-form-group-with-focus label{color:#f09b00 !important;}

.contact_form .form_fields:focus,
.contact_form .form_fields:hover{
	border-color: #f09b00;
}

.contact_form .floating-label-form-group:hover, .floating-label-form-group:focus{
	border-bottom: none;
}

.contact_form .floating-label-form-group{
	border-bottom: none !important;
	font-size: 13px;
}
.contact_form .floating-label-form-group:hover{
	border-bottom: none !important;
}
.contact_form .floating-label-form-group:focus{
	border-bottom: none !important;
}
.contact_form .floating-label-form-group select{
	margin-top: 0;
	color: #666 !important;
	font-size: 15px;
	margin-left: 0;
}




/********* User Register *******/

#user_registration{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#user_registration h6{
	font-size: 16px;
	color: #404040;
	margin-top: 10px;
	margin-bottom: 20px;
}

#user_registration .form_fields {
    color: #595959;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #999;
    background-color: transparent;
    font-size: 15px;
    box-shadow: none;
    border-radius: 0px;
    padding-left: 0;
    outline: none;
    margin-bottom: 10px;
}
#user_registration .enq_btn {
    font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	border: none;
	background-color: #0b6fb9;
	margin-left: -15px;
	margin-top: 15px;

	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
#user_registration .enq_btn:hover,
#user_registration .enq_btn:focus{
	background-color: #f09b00;
	color: #fff;
	outline: none;
	box-shadow: none;
}

#user_registration .floating-label-form-group-with-focus label{color:#0b6fb9 !important;}


#user_registration .floating-label-form-group input:hover,
#user_registration .floating-label-form-group textarea:hover {
    border-bottom:1px solid #0b6fb9 !important; background:transparent !important; box-shadow:none;
    -webkit-transition : border 500ms ease-out;
    -moz-transition : border 500ms ease-out;
    -o-transition : border 500ms ease-out;
    transition : border 500ms ease-out;
    border-top: none;
    border-left:none;
    border-right: none;
}

#user_registration .floating-label-form-group:hover, .floating-label-form-group:focus{
	border-bottom: none;
}

#user_registration .floating-label-form-group{
	border-bottom: none !important;
	font-size: 13px;
}
#user_registration .floating-label-form-group:hover{
	border-bottom: none !important;
}
#user_registration .floating-label-form-group .form_fields:focus{
	border-bottom: 1px solid #0b6fb9 !important;
}
#user_registration .floating-label-form-group select{
	margin-top: 0;
	color: #666 !important;
}

#user_registration ::-webkit-input-placeholder { 
  color: #999;
}
#user_registration ::-moz-placeholder { 
  color: #999;
  opacity: 1;
}
#user_registration :-ms-input-placeholder { 
  color: #999;
}
#user_registration :-moz-placeholder { 
  color: #999;
  opacity: 1;
}


/************ copyright ************/

#copyright{
	background-color: #084776;
	padding: 20px 0px;
}

#copyright p{
	font-size: 13px;
	color: #e1e1e1;
	margin-bottom: 0px;
}
#copyright .copy p{
	text-align: left;
}
#copyright .company p{
	text-align: right;
}
#copyright .company p a{
	color: #fff;
	text-decoration: none;
}
#copyright .company p a:hover{
	color: #fff !important;
} 
#copyright .company p a span.orange_text{
	color: #ff9c00;
}


/********** user_reg_modal **********/

#user_reg_modal .floating-label-form-group {
    border-bottom: 1px solid #d7d7d7;
}

#user_reg_modal .floating-label-form-group-with-focus label{color:#ff8a00 !important;}



/********* Index Testimonials ********/

#testimonial{
	padding: 40px 0px;
	background-color: #f5f5f5;
	width: 100%;
	display: block;
}

.test_user_img_box{
	display: block;
	overflow: hidden;
	background: ;
	padding: 20px 0px;
}

.test_user_img_box img{
	width: 110px;
	height: 110px;
	border: 5px solid #eee;

	transition: all 0.3s ease-in-out;
}

.testi_text{
	display: block;
	width: 100%;
	text-align: center;
	min-height: 130px;
	padding: 0px;
}

#testiCarousel .carousel-indicators {
    position: relative;
    bottom: 0px;
    margin-top: 0px;
}

#testiCarousel{
	background-color: ;
	padding: 10px 0px 15px;

}

#testiCarousel:hover .test_user_img_box img{
	box-shadow: 1px 3px 10px #999;
	transform: translateY(-10px);
}

#testiCarousel .carousel-indicators li{
	background-color: #0b6fb9;
	border-color: #084776;
	width: 14px;
	height: 14px;
}
#testiCarousel .carousel-indicators li.active{
	background-color: #f09b00;
	border-color: #be7e0a;
	margin: 1px;
}

.testi_text p{
	font-size: 15px;
	color: #595959;
	text-align: center;
	padding: 5px 0px;
	width: 85%;
	margin: auto;
}

.testi_text h6{
	font-size: 16px;
	color: #0b6fb9;
	text-align: center;
	margin: 10px 0px;
	font-weight: 500;
}
/*#testiCarousel .testi_text h6:before{
	content: "-";
	position:absolute;
	color: #333;
}*/

#testimonial a.read_more_btn{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	width: 110px;
	padding: 7px 10px;
	border-radius: 0px;
	background-color: #0b6fb9;

	margin-top: 0px;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#testimonial a.read_more_btn:hover,
#testimonial a.read_more_btn:active,
#testimonial a.read_more_btn:focus{
	text-decoration: none;
	background-color: #f09b00;
	outline: none;
	box-shadow: none;
}

/************ testimonials page ********/

#testimonials_page{
	padding: 40px 0px;
	background-color: #fff;
	width: 100%;
	display: block;
}

#testimonials_page .testi_text p{
	width: 100%;
	margin: 0;
	text-align: left;
}
#testimonials_page .testi_text h6{
	text-align: left;	
}

#testimonials_page .testi_text{
	min-height: 0px;
	height: auto;
	position: relative;
	padding: 10px;
	background-color: #eee;
	border: 1px solid transparent;
	border-radius: 2px;

	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#testimonials_page .testi_text:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 20px;
    right: 100%;
    border-right: 20px solid #eee;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#testimonials_page .testi_text.pos-right:before{
	left: 100%;
	border-right: none; 
	border-left: 20px solid #eee;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.testimonial_item{
	padding-bottom: 15px; 
	margin-bottom: 30px;
}

.testimonial_item:last-child{
	margin-bottom: 0px;	
}

#testimonials_page .test_user_img_box{
	padding: 0px 0px 20px;
	overflow: visible;
}

#testimonials_page .testimonial_item:hover .test_user_img_box img{
	box-shadow: 0px 2px 5px #999;
	transform: translateY(-10px);
}

#testimonials_page .testimonial_item:hover .testi_text{
	/*box-shadow: 1px 2px 10px #999;
	transform: translateY(-10px);*/
	background-color: #e5e5e5;
}

#testimonials_page .testimonial_item:hover .testi_text:before{
	border-right-color: #e5e5e5;
	top: 30px;
}

#testimonials_page .testimonial_item:hover .testi_text.pos-right:before{
	border-left-color: #e5e5e5;
	top: 30px;	
}

/********** Back To Top Anchor ******/

.back_to_top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    display: none;
    font-size: 22px;
    color: #fff;
    background-color: #084776;
    cursor: pointer;
    
    z-index: 20;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.back_to_top:hover{
	background-color: #ff9c00;
	color: #fff;
	text-decoration: none;
}