@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Open+Sans:300,400,400i,600,700,700i');
@import '../libs/bootstrap-4.1.0/bootstrap.min.css';
@import '../libs/owlcarousel2-2.3.4/assets/owl.carousel.min.css';
@import '../libs/fontawesome-free-5.0.13/css/fontawesome-all.min.css';

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 DISPLAY-ROLE RESET FOR OLDER BROWSERS */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.no_padding {
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
/*******************TYPOGRPHY*********************/
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 400;
  color: #000;
  
}
h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 45px;
}
h3 {
  font-size: 27px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}
p {
  word-spacing: 1px;
}
/********************MIXINS********************/
/******************CUSTOM CSS ANIMATION FUNCTION********************/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn {
  animation-name: fadeIn ;
}
/*MIXI ANIMATION*/
.hidden_hwfilter{
	transition:all .6s;
	animation-name: zoomOut!important;
	animation-duration:.6s;
	animation-fill-mode: both;
	display:none;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
	
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*ELEMENT TYPOGRAPHY STYLE*/
.sec-title h2 {
  font-size: 45px;
}
.sec-title h3 {
  font-size: 35px;
}
.sec-title strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.sec-title .text {
  max-width: 650px;
  margin: auto;
  padding: 45px 0;
  font-size: 16px;
  text-align: center;
}
/********************CUSTOM CLASS STYLES********************/
.section_heading {
  margin-bottom: 45px;
}
.section_heading .section_heading_title {
  line-height: 0.9;
}
.describe_section_title {
  font-size: 18px;
  margin-top: 21px;
}
/*TEXT INDENT*/
.text_indent_30 {
  text-indent: 30px;
}
/********************PADDING********************/
.section_padding_100_100 {
  padding: 100px 0;
}
.section_padding_100_0 {
  padding: 100px 0 0 0;
}
.section_padding_60_30 {
  padding: 60px 0 30px 0;
}
.section_padding_30_60 {
  padding: 30px 0 60px 0;
}
.section_padding_0_60 {
  padding: 0 0 60px 0;
}
.section_padding_60_0 {
  padding: 60px 0 0 0;
}
.section_padding_60_60 {
  padding: 60px 0;
}
.section_padding_60_60_0_60 {
  padding: 60px 60px 0 60px;
}
/********************MARGIN********************/
.margin_bottom_30 {
  margin-bottom: 30px;
}
/**************CSUTOM GRID STYLE***************/
.columns_padding_5 [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.row.columns_padding_5,
.columns_padding_5 .row {
  margin-left: -5px;
  margin-right: -5px;
}
/**************************BUTTONS****************************/
.sv_btn {
  display: inline-block;
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

.sv_btn:hover{
	background: #fff;
}
.sv_btn.small_btn {
  padding: 7px 20px;
}
.sv_btn[type="submyt"] {
  padding: 9px 32px;
}
.sv_btn:hover,
.sv_btn:focus {
  outline: none;
  color: #000;
  text-decoration: none;
}
.sv_btn_trnsp {
  padding: 9px 20px;
  cursor: pointer;
  background-color: transparent;
  border: 3px solid #fecb2f;
  transition: all 0.3s ease;
  color: #000;
}
.sv_btn_trnsp:hover,
.sv_btn_trnsp.active,
.sv_btn_trnsp.mixitup-control-active {
  background-color: #fecb2f;
  transition: all 0.3s ease;
  color: #000;
}
.btn_col_white {
  color: #fff;
}
.load_nav{
	padding:30px 0 0 0;
}
/*****************READ MORE LINKS*****************/
.reed_more,
.reed_more i {
  display: inline-block;
  color: #fecb2f;
}
.reed_more {
  padding: 0 5px;
  text-decoration: none;
}
.reed_more i {
  font-size: 13px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.reed_more:hover,
.reed_more:focus {
  text-decoration: none;
  color: #fecb2f;
}
/********************COL_FILED SPAN********************/
.col_filed_yel {
  color: #fecb2f;
}
/*******************QUB_LIST********************/
.qub_list li {
  position: relative;
  padding-left: 18px;
}
.qub_list li:after {
  position: absolute;
  content: '';
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #282828;
}
/********************BG-IMG********************/
.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/********************BG-COLROS********************/
.dark_area {
  background-color: #282828;
}
.light_area {
  background-color: #f4f4f4;
}
/********************BG overlay********************/
.bg_overlay1 {
  position: relative;
  z-index: 1;
}
.bg_overlay1:after {
  /*background-color: rgba(0, 0, 0, 0.6);*/
  position: absolute;
  z-index: -1;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
/***********HOVER EFFECT ANIMATIONS***************/
.hover_link_effect {
  display: block;
  position: relative;
  color: #fecb2f;
}
.hover_link_effect img {
  display: block;
}
.hover_link_effect .fas,
.hover_link_effect i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
  font-size: 30px;
  color: #fecb2f;
  z-index: 2;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.6s ease;
}
.hover_link_effect:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.7);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.hover_link_effect:hover:after {
  opacity: 1;
  transition: all 0.6s ease;
}
.hover_link_effect:hover .fas,
.hover_link_effect:hover i {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.6s ease;
}
/********************CAROUSEL GENERAL STYLE********************/
.sv_dots_nav .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.sv_dots_nav .owl-dots .owl-dot {
  outline: none;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  width: 17px;
  height: 17px;
  background-color: transparent;
  border: 2px solid #282828;
}
.sv_dots_nav .owl-dots .owl-dot.active {
  background-color: #fecb2f;
  border: 2px solid #fecb2f;
}
.sv_arrow_nav .owl-nav .fas{
	font-size:11px;
}
.sv_arrow_nav .owl-nav .owl-prev{
  position: absolute;
  top: 50%;
  margin-top: 0px;
  width: 25px;
  height: 25px;
  border: 1px solid #242424 !important;
  background: #242424 !important;
  color: #fff !important;
  left: 305px;
  transition: all 0.5s ease;
}

.sv_arrow_nav .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin-top: 0px;
  width: 25px;
  height: 25px;
  border: 1px solid #242424 !important;
  background: #242424 !important;
  color: #fff !important;
  right: 40px;
  transition: all 0.5s ease;
}


.sv_arrow_nav .owl-prev:focus,
.sv_arrow_nav .owl-next:focus,
.float_nav .owl-prev:focus,
.float_nav .owl-next:focus {
  outline: none;
}
.sv_arrow_nav .owl-prev:hover,
.sv_arrow_nav .owl-next:hover {
  background-color: #000075!important;
  color: #fff !important;
  transition: all 0.3s ease;
}
.sv_arrow_nav .owl-prev {
  left: -80px;
}
.sv_arrow_nav .owl-next {
  right: -80px;
}
.float_nav .owl-nav .owl-prev,
.float_nav .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border: 0px solid #fecb2f!important;
  background-color: #282828!important;
  color: #fff!important;
  transition: all 0.5s ease;
}
.float_nav .owl-nav .owl-prev:hover,
.float_nav .owl-nav .owl-next:hover {
  color: #fecb2f!important;
  transition: all 0.3s ease;
}
.float_nav .owl-prev {
  left: 0;
}
.float_nav .owl-next {
  right: 0;
}
/*****DARK BACKGROUND SLIDER********/
.dark_bg .owl-dots .owl-dot {
  border-color: #fff;
}
.dark_bg .name_card_wrapper {
  background-color: #fecb2f;
}
.dark_bg .name_card_wrapper .team_card_item_name {
  color: #000;
}
/********************D-FLEX********************/
.d-flex {
  display: flex;
}
.justify_content_center {
  box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}
.align_items_center {
  box-align: center!important;
  -ms-flex-align: center!important;
  align-items: center!important;
}
/********************PSEV_TABLE********************/
.psev_table {
  display: table;
  width: 100%;
  height: 100%;
}
.psev_table_row {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
}
/***************************************************/
/********************MAIN_HEADER********************/
/***************************************************/
.main_header {
    padding: 0px;
    background-color: #ffffff99;
    z-index: 800;
    transition: all 1s ease;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}
.transparen_bg_head {
  background-color: transparent;
}
.float_header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.fixed_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.fixed {
  background-color: #e8e8e8;
  padding: 0px;
  transition: all 1s ease;
}
.logo_head {
  float: left;
  position: relative;
}
.logo_head img {
    width: 225px;
}
.logo_head a {
    outline: none;
    display: inline-block;
    vertical-align: top;
    /*border-right: 1px solid #d6d4d4;*/
    padding: 5px 10px;
    margin-right: 10px;
}
.logo_head strong {
    display: inline-block;
    margin-top: 14px;
    color: #000075;
    font-size: 14px;
    font-weight: 600;
}
.logo_head span {
    color: #000075;
    display: block;
    position: absolute;
    top: 33px;
    left: 73px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.9px;
}
/***************************************************/
/*********************TOP NAV***********************/
/***************************************************/
.top_nav_links {
  float: right;
  margin: 0px 0px;
  padding: 0;
  position:relative;
}
.top_nav_links .navbar-nav > li > a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000075;
    font-size: 14px;
    text-transform: capitalize;
    padding: 22px 10px;
    display: block;
    transition: all 0.5s ease;
}
.top_nav_links .navbar-nav > li {
  position: relative;
}

.top_nav_links .navbar-nav > li:first-child > a {
  padding-left: 0;
}
.top_nav_links .navbar-nav > li > a:hover {
  color: #242424;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top_nav_links .navbar-nav > li.active > a,
.top_nav_links .navbar-nav a.active {
  color: #242424;
}
.nav_btn_toggle .navbar-toggler {
    color: #000075;
    outline: none;
    padding: 10px 0 0 0;
    border: none;
    font-size: 26px;
}
.top_nav_links .navbar-nav > li:last-child a::after {
    display: none;
}
.navbar-nav {
    /*padding-right: 30px;*/
}
.top_nav_links .navbar-nav > li:nth-child(6) .fa {
    font-size: 20px;
    padding: 8px 5px;
	color: #2d2d2d;
	border-radius: 50%;
	text-align:center;
	vertical-align: middle;
}
.top_nav_links .navbar-nav > li:nth-child(6) .fa:hover{
	background: #000075;
	color: #fff;
}
/*.top_nav_links .navbar-nav > li:nth-child(6) .sub-menu {
    top: 40px;
}
.top_nav_links .navbar-nav > li:nth-child(6) .sub-menu a:before{
	display: none;
}
.top_nav_links .navbar-nav > li:nth-child(6) .sub-menu li{
	padding: 0px;
}
.top_nav_links .navbar-nav > li:nth-child(6) .sub-menu li a {
    padding: 5px 10px 5px 10px;
}
.top_nav_links .navbar-nav > li:nth-child(6) .sub-menu li:hover .fa{
	color: #fff;
}*/
.menuName {
    position: absolute;
    top: 25%;
    left: 15px;
    font-size: 18px;
    font-weight: 800;
    color: #000075;
}
/*DROP DOWN MENU*/
.top_nav_links .has-child {
  position: relative;
}
.top_nav_links .has-child > a {
  position: relative;
}
.top_nav_links .has-child > a:after {
  position: absolute;
  content: '\f0d7';
  font-family: 'FontAwesome';
  font-size: 12px;
  right: 0px;
  top: 40%;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  display: none;
}
.first-link{
    position:inherit!important;
}
.top_nav_links .has-child > .sub-menu a:after {
    top: 30%;
    right: 30px;
    transform: rotate(-90deg);
}

.top_nav_links .has-child .sub-menu:hover a:after {
    transform: rotate(270deg);
    transition: all 0.3s ease;
}

.top_nav_links .navbar-nav > li.has-child:last-child > a:after {
  right: auto;
  left: 4px;
}
.top_nav_links .has-child:hover > a:after {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.top_nav_links .has-child .sub-menu {
    visibility: hidden;
    top: 100%;
    left: 0;
    position: absolute;
    width: 230px;
    padding: 0px 0 0px;
    background-color: #ffffff;
    opacity: 0;
    z-index: 100;
    transform: translateY(50px);
    transition: all 0.3s ease;
    /*border-top: 1px solid #efefef;*/
    border-bottom: 1px solid #efefef;
}
.top_nav_links .navbar-nav > li.has-child:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.top_nav_links .has-child .sub-menu li .sub-menu {
  left: 220px;
  top: 0;
}

.top_nav_links .has-child .sub-menu li .sub-menusk{
 left: -230px !important;
}

.top_nav_links .navbar-nav > li.has-child:last-child > .sub-menu li .sub-menu {
  left: -220px;
}
.top_nav_links .has-child:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s ease;
}
.top_nav_links .has-child:hover > a {
  color: #000033;
}
.top_nav_links .has-child .sub-menu li {
  padding: 0px;
}
.top_nav_links .has-child .sub-menu li:hover {
    background: #000075;
}
.top_nav_links .has-child .sub-menu a {
  position: relative;
  display: block;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 20px;
  border-top: 1px solid #efefef;
  transition: all 0.3s ease;
}
.top_nav_links .has-child .sub-menu a:hover{
	border-top: 1px solid #000075;
	color:#fff
}
/*.top_nav_links .has-child .sub-menu a:before{
  position: absolute;
  content: '\f178';
  font-family: 'FontAwesome';
  font-size: 13px;
  left: 0px;
  top: 30%;
  transition: all 0.3s ease;
}*/
.top_nav_links .has-child .sub-menu li:first-child a {
    /*border-top: 0px solid #000;*/
}
.top_nav_links .has-child .sub-menu li:hover > a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  border-top: 1px solid #000075;
}
/***************************************************/
/******************MAIN NAV MOBILE******************/
/***************************************************/
.main_nav_mobile {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 990;
}
.cover_mobile_menu {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 991;
}
.main_nav_mobile_inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 260px;
  background-color: #fff;
  transform: translateX(-320px);
  transition: all 0.6s ease;
  z-index: 999;
}
.main_nav_mobile.show_mobile_nav .main_nav_mobile_inner {
  transform: translateX(0px);
  transition: all 0.6s ease;
}
.close_mobile_menu {
  cursor: pointer;
  position: absolute;
  right: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  border: none;
  outline: none;
  background-color: #282828;
}
.main_nav_mobile .navbar_nav_over_wrapp {
  overflow-y: scroll;
  height: 100%;
}
.main_nav_mobile .navbar-nav .has-child {
  position: relative;
}
.main_nav_mobile .navbar-nav a {
  display: block;
  padding: 10px 25px;
  text-transform: uppercase;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid #d6d6d6;
  transition: all 0.3s ease;
}
.main_nav_mobile .navbar-nav a:hover,
.main_nav_mobile .navbar-nav a:focus {
  text-decoration: none;
}
.main_nav_mobile .navbar-nav li:first-child a {
  border-top: 0px solid #000;
}
.main_nav_mobile .has-child .sub_menu_btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0px;
  width: 42px;
  line-height: 3;
  color: #fff;
  height: 42px;
  text-align: center;
  background-color: #282828;
}
.main_nav_mobile .has-child .sub_menu_btn i {
  transform: rotate(0);
  transition: all 0.3s ease;
}
.main_nav_mobile .sub_menu_btn.close_sub_menu i {
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.main_nav_mobile .sub-menu {
  display: none;
  background-color: #282828;
}
.main_nav_mobile .sub-menu a {
  color: #fff;
  border-top: 0px solid #d6d6d6;
}
.main_nav_mobile .sub-menu .sub-menu,
.main_nav_mobile .sub-menu .sub_menu_btn {
  background-color: #f4f4f4;
  color: #000;
}
.main_nav_mobile .sub-menu .sub-menu a {
  color: #000;
}
/********************************************************/
/******************HOME PAGE BIG SLIDER******************/
/********************************************************/
/*.main_big_slider,*/
/*.main_big_slider .item {*/
  /*min-height: 580px;*/
/*  min-height: 60vh;*/
/*  position:relative;*/
/*}*/
.headline-news {
    background: #000;
    padding: 8px 0px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9;
}
/*slide background image*/
.item_mainslide_1 {
  background-image: url(../images/sl1.jpg);
  background-position: center top;
}
.item_mainslide_2 {
  background-image: url(../images/sl2.jpg);
  background-position: center 25%;
}
.item_mainslide_3 {
  background-image: url(../images/sl3.jpg);
  background-position: center 6%;
}
.item_mainslide_4 {
  background-image: url(../images/sl4.jpg);
  background-position: center 6%;
}
.item_mainslide_6 {
  background-image: url(../images/e-Homepage.jpg);
  background-position: center 8%;
}
.item_mainslide_5 {
  background-image: url(../images/sl3-old.jpg);
  background-position: center 35%;
}
/*END slide background image*/
.main_big_slider .psev_table {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.main_b_slider .container {
  position: relative;
  z-index: 5;
  bottom: -180px;
  right: 0px;
}
.slider_big_title {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 800;
}
.slider_sub_title, .slider_big_title {
    color: #fff;
}
.slider_sub_title {
    margin-bottom: 27px;
    margin-top: 6px;
}
.slider_sub_title p {
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
}

.main_b_slider .owl-dots {
  display: none;
}
.main_big_slider .main_b_slider .owl-nav .owl-prev,
.main_big_slider .main_b_slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  color: #fff;
  transition: all 0.5s ease;
}
.main_b_slider .owl-prev:focus,
.main_b_slider .owl-next:focus {
  outline: none;
}
.main_b_slider .owl-prev:hover,
.main_b_slider .owl-next:hover {
  background-color: #000075!important;
  color: #fff!important;
  transition: all 0.3s ease;
}
.main_b_slider .owl-prev {
  left: 4%;
}
.main_b_slider .owl-next {
  right: 4%;
}

.mainservices {
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin: 10px 0px;
}

.mainservices-container {
    padding: 0px;
    overflow: hidden;
    border: 5px solid #fff;
}

.mainservices-container li {
    float: left;
    vertical-align: top;
    width: 12.5%;
}
.mainservices-container li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: block;
    padding: 13px 0px;
    border-right: 1px solid #d8d8d8;
    line-height: normal;
    background: #000072;
}
.mainservices-container li:last-child a{
	border-right: none;
}
.mainservices-container li:hover a{ text-decoration: none; color: #fbb402;}
.mainservices-container li a .fa {
    margin-bottom: 4px;
    color: #fddc4f;
    display: block;
}
.mainservices-container li:hover a .fa{ color: #fbb402;}

.mobile-mainservices{ display:none;}
.mobile-mainservices ul{ text-align:center; margin-top:20px;}
.mobile-mainservices li {
    display: inline-block;
    width: 47%;
    margin: 4px 3px;
}
.mobile-mainservices a {
    display: block;
    padding: 30px 0px;
    background: #f5f5f5;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    border-radius: 5px;
    color: #000;
}
.mobile-mainservices a:hover{
	text-decoration: none;
}
.mobile-mainservices a .fa {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    margin: 0px auto 10px;
    background: #000075;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 60px;
}

.mobile-mainservices a:hover{
	background: #000075;
	border-color: #000075;
	color:#fff;
}
.mobile-mainservices a:hover .fa{
	color: #000075;
	background: #fff;
}


.slider-heading {
    position: absolute;
    bottom: 28px;
    width: 70%;
    background: #000000c7;
    color: #fff;
    margin: 0px auto;
    right: 41px;
    padding: 15px;
}
.slider-heading strong{
	font-size: 18px;
	font-weight: 600;
	color: #fefefe;
}
.slider-heading p{
	font-size: 14px;
	font-weight: 300;
	color: #fefefe;
}

.threeboxes{
	padding: 40px 0px;
}
.threeboxes h2 {
    background: #fff;
    color: #555556;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    border-bottom: 1px solid #efefef;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.marQueNews {
    position: relative;
    border: 20px solid #fff;
    border-top: none;
    border-bottom: none;
}

.marQueNews ul li{
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #e4e4e4;
}
.marQueNews ul li:last-child{
	border-bottom: none;
	margin: 0px;
	padding: 0px;
}
.marQueNews ul li h3 {
    font-size: 13px;
    color: #2f2f2f;
    font-weight: 600;
    line-height: 20px;
}
.marQueNews ul li p {
    font-size: 13px;
	color: #2f2f2f;
	font-weight: 400;
	margin-bottom: 8px;
}
.marQueNews ul li strong {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
	color: #2d2f94;
}
.marQueNews ul li a {
    position: absolute;
    bottom: 10px;
    right: 0px;
    font-size: 11px;
    font-weight: 400;
    color: #2d2f94;
}
.marQueNews ul li a:hover {
    text-decoration: none;
    color: #000072;
}
.marQueNews ul li a:hover h3{
    color: #fbb402;
}
.marQueNews ul li a .fa{
	font-size: 8px;
	margin-left: 2px;
}

footer {
    background: #141414;
    padding: 30px 0px 0px;
    font-size: 12px;
    color: #fff;
}
footer .copyright{ padding: 10px 0px; margin-top: 20px; text-align: center; background: #242424; }
footer .copyright a {
    color: #717171;
}
footer h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
    padding: 0px 0px 8px 0px;
    letter-spacing: 0.9px;
    color: #9e9e9e;
}
footer .quicklinks li a {
    padding: 6px 0 6px 20px;
    display: inline-block;
    font-size: 13px;
    position: relative;
    color: #ffffff;
}

footer .quicklinks li a:before{ content: "\f239"; font: normal normal normal 11px/1 FontAwesome; position: absolute; top: 10px; left: 0px; color: #ffffff;}
footer .quicklinks li a:hover{ color: #9e9e9e; }
footer .followuson{}
footer .followuson li{ display: inline-block; vertical-align: top; padding: 0px;}
footer .followuson li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #717171;
    border: 1px solid #717171;
    border-radius: 50%;
    margin: 0px 2px;
    font-size: 24px;
}
footer .followuson li a:hover{ background: #fff; border-color: #fff; color: #242424; }

footer .chooselanguage{}
footer .chooselanguage li{ display: inline-block; }
footer .chooselanguage li a{ color: #717171; font-size: 11px; display: block; margin-right: 10px; }


.team_carousel{ border:1px solid #cdcccc;}

.block-hdnews{
	height: 300px; overflow: hidden; margin:10px auto;
}
.block-hdnews ul {
    width: auto !important;
}

/* About Page */
.aboutsection { /*height: 690px; overflow-y: scroll; margin-bottom: 15px;*/}
.aboutsection p { color: #000000; font-weight: 400; line-height: 26px; text-align: justify;}
.aboutsection strong { display: block; margin-top: 25px; background: #e4e4e4; padding: 8px 12px; border-radius: 5px; margin-bottom: 15px; font-size: 20px;}

.aboutsection li { color: #000000; font-weight: 400; line-height: 28px; padding-left: 25px; position: relative; padding-bottom: 8px;}
.aboutsection li:before { content: "\f111"; font-size: 10px; font-family: 'FontAwesome'; padding-right: 10px;}
.readmorebutton { display: inline-block; background: #000075; color: #fff; font-size: 13px; font-weight: 400; padding: 6px 15px; border-radius: 10px; margin-top: 15px;}
.readmorebutton:hover{ text-decoration: none; background-color: #ff5252; color: #fff;}

/*----15-11----*/
.inner-page-header {
  margin-top: 65px;
  height: 350px;
  position: relative;
  background: url('../images/inner-page-banner.jpg') center center no-repeat scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover !important;
  -o-background-size: cover;
}
.inner-page-header:before {
    position: absolute;
    background: #0000005e;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.about-page-header {
  background: url('../images/about-us-1.jpg') center center no-repeat scroll;
}
.contact-page-header {
background: url('../images/contact-us.jpg') center center no-repeat scroll;
}
.visiom-page-header {
background: url('../images/vision.jpg') center center no-repeat scroll;
}
 .board-page-header {
background: url('../images/boardofdirector-banner.jpg') center center no-repeat scroll;
}
 .career-page-header {
background: url('../images/career-banner.jpg') center center no-repeat scroll;
}

.career-bg-page-header{
background: url('../images/career-bg.jpg') center center no-repeat scroll;
}

 .active-tender-page-header {
background: url('../images/active-tender.jpg') center center no-repeat scroll;
}

 .org-page-header {
background: url('../images/organization.jpg') center center no-repeat scroll;
}
 .general-page-header {
background: url('../images/general.jpg') center center no-repeat scroll;
}
.vigilance-page-header {
background: url('../images/vigilance.jpg') center center no-repeat scroll;
}
.news-page-header {
background: url('../images/news-banner.jpg') center center no-repeat scroll;
}
.tourism-page-header{
background: url('../images/sl3-old1.jpg') center center no-repeat scroll;  
}
.media-centre{
  background: url('../images/media-centre.jpg') center center no-repeat scroll;  
}
.deputation-bg{
  background: url('../images/deputation-bg.jpg') center center no-repeat scroll;
}
.sitemenu-page-header{
  background: url('../images/sitemenu-bg.jpg') center center no-repeat scroll;
}
.internet-ticketing-bg-header{
  background: url('../images/internet-ticketing-bg.jpg') center center no-repeat scroll;
}
.catering-and-hospitality-header{
    background: url('../images/catering-and-hospitality.jpg') center center no-repeat scroll;
}
.rail-neer-introduction-header{
    background: url('../images/rail-neer-introduction-bg.jpg') center center no-repeat scroll;
}
.csr-activities-header{
 background: url('../images/csr-activities-bg.jpg') center center no-repeat scroll;  
}
.organization-structure-header{
  background: url('../images/organization-structure-bg.jpg') center center no-repeat scroll;  
}

.e-tenders-header{
  background: url('../images/e-tenders-bg.jpg') center center no-repeat scroll;  
}

.general-page-header h2{
  /*color:#0f0074!important;*/
}
.general-page-header p{
  /*color: #0f0074!important;*/
 
}
.general-page-header a{
	/*color:#0f0074!important;*/
}

.inner-page-header a{
	color: #fff;
}

.inner-page-header h2{
  font-size:30px;
  color:#fff;
  margin-top: 130px;
  text-transform: uppercase;
}
.inner-page-header p{
  color: #fff;
  margin-top: 10px;
}

.twoboxes{
  padding: 50px 0px;
}
.twoboxes h3 {
    color: #000075;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: solid 1px #efefef;
    font-weight: 600;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    line-height: 28px;
}


.twoboxes h5{
  margin-bottom: 10px;
  font-size: 18px;
}

.odd-row{
  padding:9px 0;

}
.odd-row p{
  padding-top: 5px;
}
.odd-row .fa {
    margin-left: 6px;
}
.even-row{
  background: #f5f5f5;
  padding:9px 0;
}
.even-row p{
  padding-top: 5px;
}
.even-row .fa {
    margin-left: 6px;
}
.twoboxes .btn{
  border: solid 1px #dbdbdb;
  color: #535557;
  float: right;
  font-size:12px;
  font-weight:400;
  padding: 5px 10px;
}
.twoboxes .btn:hover{
  border: solid 1px #ff5252;
  background: #ff5252;
  color: #fff;

}
.pagers{
  margin: 0 auto;
  padding: 11px 0;
}
.page-link{
  color:#333;
}
ul.side-customer {
    border-bottom: 5px solid #cdcccc;
    margin-bottom: 10px;
}
.side-customer li{
  padding: 7px 0;
  border-bottom: solid 1px #ddd;
  font-size: 14px;
}
.side-customer img{
  float: left;
  margin: 4px 0;
}
.side-customer span strong{
    color: #292a2b;
    font-size: 13px;
    font-weight: 400;
	letter-spacing: normal;
}
.side-customer span {
    margin-left: 10px;
    color: #666666;
    font-size: 12px;
    letter-spacing: 1px;
}

.mb-0 > a {
  display: block;
  position: relative;
}
.mb-0 > a:after {
  content: "\f055"; /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
}
.mb-0 > a[aria-expanded="true"]:after {
  content: "\f056"; /* fa-chevron-up */
}
#accordion h5 a, #accordion h5 a:hover{
  color: #000075;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}
.twoboxes .card-body{
  padding: 15px;
    /*padding-top: 0;*/
    padding-bottom: 0;
    margin-bottom: 5px;
}

/* Annual Report */
.card{ margin-bottom:5px;}
.searchbar {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 15px;
}
.searchbar .searchfield {
    position: relative;
    padding: 0;
}
.searchbar .searchfield input[type="text"] {
    position: relative;
    border: 1px solid #a9a9a9;
    width: 100%;
    padding: 10px 40px 10px 10px;
	color: #2f2f2f;
}
.searchbar .searchfield .fa {
    position: absolute;
    top: 5px;
    right: 10px;
    border-left: 1px solid #a9a9a9;
    padding: 8px 5px 8px 12px;
    font-size: 16px;
	color: #363636;
}
.searchbar .selectlanguage {
    position: relative;
    width: 100%;
}
.selectlanguage select {
    background: none;
    padding: 9px;
    font-size: 13px;
	color: #2f2f2f;
	width: 100%;
}
.searchbar .submitbutton {
    position: relative;
    width: 100%;
    padding: 0;
}
.searchbar .submitbutton input[type="submit"] {
    background: #000075;
    border: none;
    color: #fff;
    width: 100%;
    padding: 9px 15px 9px 0;
    font-size: 15px;
    border-radius: 4px;
}
.searchbar .submitbutton input[type="submit"]:hover{ background: #ff5252; cursor: pointer;}
.submitbutton .fa {
    position: absolute;
    top: 14px;
    right: 40px;
    color: #fff;
}

/* Contact Us */
.contactus {
    margin: 0px 0px 15px;
    color: #2f2f2f;
    overflow: hidden;
    background: #e6e6e6;
    padding: 7px 0px;
}
.contactus .fa{ margin-right:8px;}
.contactus a{ color: #2f2f2f;}

.selectzone {
    padding: 1;
    overflow: hidden;
}
.selectzone .col-md-4 {
    line-height: 30px;
}
.selectzone .selectlanguage select {
    padding: 5px 9px !important;
}
.twoboxes .card-body ul {
    margin-bottom: 20px;
}
.card-body li {
    padding: 5px 0;
}
.card-body li .fa{ margin-right:8px;}
.newbluebutton a {
    display: block;
    background: #000075;
    color: #fff;
    font-size: 12px;
    padding: 2px 0px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    width: 120px;
    margin: 0px auto;
}
.newbluebutton a:hover{
  text-decoration: none;
  background: #0e1821;
}
.twoboxes h6 {
    font-size: 16px;
    padding: 5px 0 12px;
}
.socialicon a {
    padding: 0px 10px;
}
.single-pagee{
  margin-top:10px;
}
.single-pagee p {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
}
.single-pagee li {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    padding-left: 5px;
}
.single-pagee li:before {
    content: "\f111";
    font-size: 10px;
    font-family: 'FontAwesome';
    padding-right: 10px;
}
.feedback-forms{
  padding: 40px 0;
  text-align: center;
  background: #e8e8ea;
  margin-top: 15px;
  padding-bottom: 20px;
}
.feedback-forms h3{
  border-bottom: none;
  margin-bottom: 20px;
}
.btn-feedback{background: #000075;
border: none;
color: #fff!important;
float: none;
padding: 6px 15px;
font-size: 13px;
border-radius: 4px;
text-decoration: none;
cursor: pointer;}
.btn-feedback:hover{
  text-decoration: none;
}
.forms-section label{
  font-size: 13px;
  margin-bottom: 3px;
}
.forms-section .form-control{
  height: 30px!important;
  padding: 3px 4px;
  font-size: 13px;
  border-radius: 0;
}
.forms-section hr{
  margin-top: 5px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
  margin-left: 14px;
}
.forms-section p{
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: justify;
}
.check-box{
  margin-top:5px;
  margin-bottom: 20px;
}
.forms-section textarea.form-control{
  height: auto!important;
}
.feedback-status .searchbar{
   border-bottom: none;
}
.feedback-status .searchbar .submitbutton input[type="submit"] {
  margin-left: 2px;
}
.feedback-status .feedback-forms {
  padding: 14px 0;
  text-align: center;
}
.feedback-forms .form-control{
  border-radius: 0;
  font-size: 14px;
}
.feedback-status{
  padding: 10px 0;
  text-align: center;
}
.feedback-status h3{
  border-bottom: none;
}
.feedback-status hr{
  width:400px;
}
.forms-section{
  margin-top:10px;
}
.extra-space{
  margin-top:15px;
}
.directory-panel{
  background: #f9f9f9;
  border: solid 2px #fff;
}
.directory-panel h5,  .directory-title h5{
  font-size: 16px;
  color: #0f0075;
  font-weight: 600;
  padding: 10px 0;
}
.directory-section{
  height: 370px;
  overflow-y: scroll;
  padding-right: 10px;
  overflow-x: hidden;
}
.aboutsection .jumbotron{
  text-align: center!important;
  margin-top: 10px;
}
.single-pagee .visioon h6{
  line-height: 25px;
  font-weight: 600;
}
.directory-title ul ul{margin-left: 20px;}

/* 12-04-2018 */
.rightsideservices{ margin-bottom: 10px;}
.rightsideservices li a{
    font-size: 13px;
    background: #eaeaea;
    padding: 7px 15px;
    border-bottom: 3px solid #fff;
	display: block;
}
.rightsideservices li .fa {
    margin-right: 6px;
}
.rightsideservices li:hover a{
	color: #fff;
	text-decoration: none;
	background: #000075;
}
.privacy-policysection h5 {
  font-size: 16px;
  margin-top: 10px;
}
.privacy-policysection p {
  color: #000000;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
.submit-feedback h3, .submit-feedback-senior h3{
  padding: 20px;
  border: none;
}

.livekbutton {
    position: absolute;
    top: 55px;
    right: 30px;
    z-index: 9999;
}
.livekbutton a {
    color: #ffffff;
    display: block;
    padding: 10px 15px;
    border-top: 5px solid #000075;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #000075;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    animation: blink 1s linear infinite;
}
.livekbutton a:hover {
    text-decoration: none;
    color: #fff;
    background: #000075;
}


@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}

.free-consult {
    float: right;
    position: fixed;
    right: -135px;
    z-index: 99999;
    background-color: #000072;
    padding: 6px 5px;
    cursor: pointer;
    top: 10%;
    border-radius: 8px 0px 0px 8px;
}
.free-consult a {
    color: #fff;
    font-weight: bold;
    padding: 5px;
     display: block;
}

.free-consult .fa {
    font-size: 20px;
    vertical-align: middle;
    color: #fbb402;
}

.free-consult a:hover{
    text-decoration: none;
}

}
.free-consult a .fa {
    padding: 5px;
    font-size: 15px;
}
.element:hover {
    right: 0px;
    -webkit-animation-name: zigzag;
    animation-name: zigzag;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: ease-in;
    animation-direction: ease-in;
}

@keyframes zigzag {
  from {
   right: -120px;  
  }
  10% {
    right: -106.65px;  
  }
  20% {
   right: -93.31px;   
  }
  30% {
     right: -79.98px;  
  }
  40% {
    right: -66.65px;  
  }
  50% {
     right: -53.32px;  
  }
  60% {
     right: -39.99px;  
  }
  70% {
     right: -26.66px;  
  }
  80% {
     right: -13.33px;  
  }
  90% {
     right: -0px;  
  }
  100% {
    right: 0px;  
  }
}

.fourcontainer {background: url('../images/404.jpg') center center no-repeat scroll; background-size: cover; height: 100vh; padding: 30px;}
.fourtext { text-align: center;}
.fourtext h1 { font-size: 250px; display: block; padding: 10% 0 20px; color: #ffc200;}
.fourtext span { display: block; font-size: 30px; font-weight: 800;}
.fourtext strong { display: block; font-size: 25px; padding: 10px 0; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;}
.fourtext a { display: inline-block; background: #000075; color: #fff; text-decoration: none; padding: 12px 28px; font-size: 18px; font-weight: 800; border-radius: 4px;
    margin-top: 20px; border: 2px solid #01013a; box-shadow: 1px 2px 2px 2px #79757570;}
.fourtext a:hover{ background-color: #ffc200; border-color: #ffc200; color: #242424;} 

.cmdmassage{}
.cmdmassage strong {
    font-size: 16px;
    font-weight: 800;
    color: #000072;
    text-transform: uppercase;
    display: block;
    margin: 15px 0px 8px 0px;
}
.cmdmassage p {
    color: #505050;
    line-height: 28px;
    text-align: justify;
    margin-top: 15px;
}
.cmdmassage a {
    display: block;
    text-align: right;
    font-style: italic;
    font-weight: 600;
    color: #000072;
    padding: 0;
    font-size: 15px;
    letter-spacing: -0.8px;
}
.middleloginsection{}
.middleloginsection li{}
.middleloginsection li a {
    padding: 13px 10px;
    display: block;
    background: #f5f5f5;
    border-bottom: 2px solid #fff;
    color: #000072;
    font-size: 14px;
    font-weight: 600;
}
.middleloginsection li a:hover{ background: #fff; text-decoration: none;}
.middleloginsection li a .fa{ margin-right: 5px; }
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    font-size: 18px;
    color: #fff;
    background: #000074;
    line-height: normal;
    padding: 12px 15px;
    border-radius: 2px;
}
.back-to-top:hover{
  background-color: #242424;
  color: #fff;
}

.toursim-detail {
    margin-bottom: 15px;
    padding-bottom: 15px;
    /*border-bottom: 1px solid #ececec;*/
    overflow: hidden;
    position: relative;
}
.toursim-detail h2 {
    font-size: 16px;
    color: #000075;
    margin-bottom: 8px;
}
.toursim-detail p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
.toursim-detail p i {
    font-style: italic;
    font-weight: 500;
    color: #655cad !important;
}
.toursim-detail a {
    display: inline-block;
    /*background: #ff6100;*/
    color: #ff6100;
/*    padding: 8px 12px;
    float: right;*/
    font-weight: 800;
/*    border-radius: 3px;*/
}
.toursim-detail a:hover{
/*    background: #000075;
    border-color: #000075;*/
    color: #000075;
    text-decoration: none;
}
.toursim-detail b {
    text-decoration: underline;
}
.maharajasButton {
    text-align: center;
    margin-top: -70px;
    float: right;
}
.maharajasButton a {
    display: inline-block;
    background: #ff6100;
    color: #ffffff;
    padding: 8px 12px;
    font-weight: 800;
    border-radius: 3px;
}
.maharajasButton a:hover{
    background: #000075;
    border-color: #000075;
    color: #fff;
    text-decoration: none;
}

.directorProfile {
text-align: center;
    background: #f5f5f5;
    padding: 40px;
}
.directorProfile figure {
    width: 150px;
    margin: 0px auto;
    border: 6px solid #000075;
    border-radius: 2px;
}
.directorProfile strong {
    display: block;
    font-size: 20px;
    margin: 10px 0;
    color: #000075;
    font-weight: 900;
}
.directorProfile span {
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #696969;
    font-style: italic;
}
.directorProfile p {
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

a.ebutton {
    display: inline-block;
    float: right;
    font-size: 14px;
    background: #ff6100;
    color: #fff;
    padding: 10px 20px;
    margin-top: -7px;
    border-radius: 3px;
}
a.ebutton:hover{
  background: #000075;
  text-decoration: none;
}



a.pdfbutton {
    display: inline-block;
    font-size: 14px;
    background: #ff6100;
    color: #fff;
    padding: 10px 20px;
    margin-top: 50px;
    border-radius: 3px;
}
a.pdfbutton:hover{
  background: #000075;
  text-decoration: none;
}


a.csrpdfbutton {
    display: inline-block;
    font-size: 14px;
    background: #ff6100;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    float: right;
}
a.csrpdfbutton:hover{
  background: #000075;
  text-decoration: none;
}

.ovehid{
  overflow: hidden;
}

.newbluebutton h4 {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    color: #474648;
}

.policycsr {
    margin: 10px 0;
    text-align: center;
    box-shadow: 0px 0px 3px #0000002e;
    border-radius: 4px;
}
.policycsr a {
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    color: #131313;
    display: block;
    padding: 15px 0px;
}

.policycsr a:hover{ color: #ff6100; }

.govlisting {
    margin: 20px 0px 40px;
    text-align: center;
}

.govlisting .testimonial {
    display: inline-block;
    margin: 0px;
    background: #fff;
    border: 1px solid #cdcccc;
    padding: 3px;
    border-radius: 2px;
}
.govlisting .testimonial img {
    width: 140px;
    height: 100%;
    display: block;
}
.govlisting .testimonial:hover{
  border-color: #000075;
  background: #000075;
}

footer .social_links li{display: inline-block; margin: 0 4px 0 0;}
footer .social_links li a{ display: inline-block; height: 40px; overflow: hidden; text-indent:-9999px; transition: all 0.2s ease-in-out 0s; width: 41px;}
.social_links li.fb a{background:url(../images/social_icons.png) 0 0;}
.social_links li.tw a{background:url(../images/social_icons.png) -52px 0;}
.social_links li.ln a{background:url(../images/social_icons.png) -105px 0;}
.social_links li.gp a{background:url(../images/social_icons.png) -159px 0;}
.social_links li.youtube a{background:url(../images/you_tube.png) center top;}

.social_links li.fb a:hover{background:url(../images/social_icons.png) 0 -47px;}
.social_links li.tw a:hover{background:url(../images/social_icons.png) -51px -47px;}
.social_links li.ln a:hover{background:url(../images/social_icons.png) -104px -47px;}
.social_links li.gp a:hover{background:url(../images/social_icons.png) -158px -47px;}
.social_links li.youtube:hover a{background:url(../images/you_tube.png) center bottom;}

.liststylingsk{ margin-top: 10px; line-height: 28px;}
.liststylingsk .col-md-3, .liststylingsk .col-md-9{ padding:5px 25px; }
.liststylingsk li{ position: relative; overflow: hidden;}
.liststylingsk li:before { position: absolute; top: 0; left: 2px; content: "\f0a4" !important; font-size: 14px; font-weight: 600; color: #808080;}
.margin_top{ margin-top: 20px; }

.listyle-sk{ padding-left: 10px; }

.media-centre-text{}
.media-centre-text p{ margin-bottom: 18px; }

.userdetailsk { margin: 50px 0; text-align: center;}
.userdetailsk ul { margin: 0 !important; padding: 0;}
.userdetailsk li { padding: 0; display: inline-block; width: 33%; text-align: center; font-size: 17px;}
.userdetailsk li .fa { display: block; margin: 0px 0px 8px; font-size: 25px; color: #000075;}
.userdetailsk li a{ color: #000; }


.twoboxes h4 { font-size: 20px; display: block; margin-bottom: 15px; margin-top: 45px; color: #383838; text-transform: uppercase;}
.twoboxes b{ font-weight: 800; }

.csr-activities{  float: left; margin-right: 15px;}
.csr-activities2{  float: right; margin-left: 15px;}



.testimonial{}

.owl-theme .owl-controls{
    margin-top: 20px;
    text-align: center;
}
.owl-theme .owl-controls .owl-buttons div {
    opacity: 0.8;
    width: 32px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    background: #000072;
    border-radius: 50%;
    margin: 0px 5px;
}
.owl-theme .owl-controls .owl-buttons div:hover{ background: #fbb402 }
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 14px;
    color: #fff;
}
.owl-next:before{ content: "\f054"; }


.ccmembers {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 2px;
    position: relative;
    margin-bottom: 20px;
}
.ccmembers figure {
    display: block;
}
.ccmembers figure img {
    width: 55px;
    height: auto;
    background: #fff;
    padding: 2px;
}
.ccmembers-details {
    position: absolute;
    top: 20%;
    left: 26%;
}
.ccmembers-details strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #000072;
}
.ccmembers-details span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.maharajastext{}
.maharajastext p{ margin-bottom: 15px; }



.table-cla{}
.td_head_mid {
    background: #000072;
   
    height: 30px; line-height:30px;
    padding: 0px;
    color: #ffffff;
  
}

.mytable{border:1px solid #000072;}
.mytable thead th{background: #000072; padding: 2px;
    color: #ffffff;
    text-align: center;
    font: bold 11px arial;
    vertical-align: middle;
    border: 1px solid #000;
    }
	.mytable tbody td{
    border:1px solid #004669;;
    }
	.myborder-top{border-top:1px solid #000072;}
	.myborder-bottom{border-bootm:1px solid #000072;}
		.myborder-left{border-left:1px solid #000072;}
			.myborder-right{border-right:1px solid #000072;}
			
			.table_003 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    border-collapse: collapse;
    border: thin;
    border-style: solid;
    border-color: #000000;
    border-width: 1px;
}
.txt_blueBack {
    height: 20px;
    padding: 2px;
    color: #ffffff;
    text-align: center;
    font: bold 11px arial;
    vertical-align: middle;
    border: 1px solid #000;
    background: #000072;
}
.txt_002 {
    text-align: center;
    font: 11px arial;
    border: 1px solid #004669;
}
/*
.td_head_left {
    background: #000072;
    height: 33px;
    width: 15px;
    padding: 0px;
    color: #ffffff;
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
}

.td_head_right {
    background: #000072;
    border-right: 2px solid #000000;
    border-top: 1px solid #000000;
    height: 33px;
    width: 15px;
    padding: 0px;
    color: #ffffff;
}
.td_box_midleft {
    background: #000072;
    border-left: 1px solid #000000;
}
.td_box_midright {
    width: 15px;
    background: #000072;
    border-right: 2px solid #000000;
}*/



/*-----------------------------------------------------------------------*/
/*                    Form Page Style                                    */
/*-----------------------------------------------------------------------*/
.frm-body {background:rgb(74,81,85); font-size:12px;}

.frm-page-container {
width:970px ; height:auto;
 margin:0px auto; margin-top:40px; margin-bottom:20px;
  vertical-align:middle;
 border:thin solid #000000;
 min-height:50px;

 /*border-bottom-width:2px;
 border-top-width:1px;
 border-left-width:1px;
 border-right-width:2px;
/* background-color:#000072; */
  background-color: #a9a9a9;
  position:relative;



}
.frm-header {
width:auto;
height:20px;
margin-left:12px;
margin-right:10px;
margin-top:5px;
color:#FFFFFF;
font-weight:bold;
text-align:left;
/* border:thin solid #000000;*/
}
 .frm-main{

 width:auto;
 height:auto;
margin-left:8px;
margin-right:8px;
margin-top:5px;
margin-bottom:25px;
/* border:thin solid #000000; */
 background-color:#ebf5fe;
 padding-bottom:5px;

  border-bottom:thin #000000 solid ;
 border-bottom-width:1px;
 border-right:thin #000000 solid ;
 border-right-width:1px;

}
 .frm-main-header{
 width:auto;
margin-left:5px;
margin-right:5px;
margin-top:5px;
margin-bottom:10px;
text-align:center;
vertical-align:middle;
padding:6px;

 border-bottom:thin #000000 dotted ;
 border-bottom-width:1px;

}

 .frm-main-bottom{
 width:auto;
 height:20px;
margin-left:5px;
margin-right:5px;
margin-top:5px;
margin-bottom:5px;

 border-top:thin #000000 dotted ;
 border-top-width:1px;
 text-align:center;
 vertical-align:middle;
 padding:4px;
 padding-top:5px;

}
 .frm-main-middle{
 width:auto;
 height:auto;
margin-left:5px;
margin-right:5px;
margin-top:5px;
margin-bottom:5px;
 text-align:center;
 vertical-align:middle;

}


.form_txt_box_01 {
  font-weight: normal;
  font-size: 13px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:2px;
  padding-bottom:1px;
  /*background-color: #EDF7FD;*/
  background-color: #FFFFFF;
  margin: 2px;
  height: 18px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-color:#666666;
  border-right-color:#999999;
  border-bottom-color: #999999;
  border-left-color: #666666;

  /*border-top-color: #333333;
  border-right-color: #828282;
  border-bottom-color: #828282;
  border-left-color: #003366;*/
}
  .form_txt_box_01:hover {
  border-color:#333333;
  }
  .form_txt_box_01:focus {
  border-color:#1C8DFF;
  }
  .form_txt_box_01_readOnly{
  font-weight: normal;
  font-size: 13px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:2px;
  padding-bottom:1px;
  /*background-color: #EDF7FD;*/
  background-color:#CCCCCC;
  margin: 2px;
  height: 18px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-top-color:#666666;
  border-right-color:#999999;
  border-bottom-color: #999999;
  border-left-color: #666666;

  /*border-top-color: #333333;
  border-right-color: #828282;
  border-bottom-color: #828282;
  border-left-color: #003366;*/
}
  .form_txt_box_err_01 {
  font-weight: normal;
  font-size: 13px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:2px;
  padding-bottom:1px;
  background-color: #FFFFFF;
  margin: 2px;
  height: 18px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-color: #FF0000;
  }



.form_combo_box_01{
  font-weight: normal;
  font-size: 12px;
  /* color: #333333; */
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:0px;
  padding-bottom:1px;
  background-color: #FFFFFF;
  margin: 1px;
  height: 22px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-color: #666666;
  border-right-color: #999999;
  border-bottom-color: #999999;
  border-left-color: #666666;
        max-width:310px;
        overflow:auto;
      
}
.form_combo_box_01:hover {
  border-color:#333333;
  }
  .form_combo_box_01:focus {
  border-color:#1C8DFF;
  }



.form_combo_box_err_01{
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:0px;
  padding-bottom:1px;
  background-color: #FFFFFF;
  margin: 2px;
  height: 22px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-color: #FF0000;
  border-right-color: #FF0000;
  border-bottom-color: #FF0000;
  border-left-color: #FF0000;
}





.form_txt_area_01{
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:0px;
  padding-bottom:1px;
  background-color: #FFFFFF;
  margin: 2px;
  height: 70px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-color: #666666;
  border-right-color: #999999;
  border-bottom-color: #999999;
  border-left-color: #666666;
}
.form_txt_area_01:hover {
  border-color:#333333;
  }
  .form_txt_area_01:focus {
  border-color:#1C8DFF;
  }



.form_txt_area_err_01{
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-style: normal;
  text-transform: none;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  text-decoration: none;
  padding-top:0px;
  padding-bottom:1px;
  background-color: #FFFFFF;
  margin: 2px;
  height: 22px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-color: #FF0000;
  border-right-color: #FF0000;
  border-bottom-color: #FF0000;
  border-left-color: #FF0000;
}


/* ----------------------------- --------------------------------- */



/*-----------------------------------------------------------------------*/
/*                    Form Button Style                                  */
/*-----------------------------------------------------------------------*/

.frm_button_01 {
  -moz-border-radius:      3px;
  -webkit-border-radius:   3px;
  background:              #E4E4E4; ; /* Image fallback */
  border-bottom-width:thin;
  background:             -moz-linear-gradient(0% 170% 90deg, #c4c4c4, white);
  background:             -webkit-gradient(linear, 0% 0%, 0% 170%, from(white), to(#c4c4c4));
  border:                  1px solid;
  border-color:            #C7C7C7;
  border-radius:           1px;
  color:                   #404040;
  display:                 inline-block;
  font-family:            "helvetica neue", helvetica, arial, freesans, "liberation sans", "numbus sans l", sans-serif;
  font-size:               13px;
  outline:                  0;
  padding:                 5px 8px 5px;
  text-align:              center;
  text-decoration:         none;
  text-shadow:             1px 1px 0 white;
  white-space:             nowrap; }

  .frm_button_01:hover {
   background-position:   0 -25px;
    background:           -moz-linear-gradient(0% 170% 90deg, white, #dedede);
    background:           -webkit-gradient(linear, 0% 0%, 0% 170%, from(#dedede), to(white));
    border-color:          #1C8DFF #1C8DFF #1C8DFF #1C8DFF;
    color:                 #1a1a1a;
    text-shadow:           1px -1px 0 rgba(255, 255, 255, 0.5);
  }

  .frm_button_01:active {
    position:              relative;
    top:                   1px; }

  .frm_button_01:active, .frm_button_01:focus {
    background-position:   0 -25px;
    background:           -moz-linear-gradient(0% 170% 90deg, white, #dedede);
    background:           -webkit-gradient(linear, 0% 0%, 0% 170%, from(#dedede), to(white));
    border-color:          #8fc7ff #94c9ff #94c9ff #8fc7ff;
    color:                 #1a1a1a;
    text-shadow:           1px -1px 0 rgba(255, 255, 255, 0.5); }


.txt_required {

  color:#FF0000;
      vertical-align:top;
        font-size:13px;
}

.frm-div-stl-01{
  position:relative; width:250px; height:24px; float:left; vertical-align:middle; margin:0px; padding-top:3px;
  text-align:right; margin-right:2px;
}

.frm-div-stl-02{

  position:relative; width:600px; height:27px; vertical-align:middle ; text-align:left;
        
}

.frm-div-stl-03{


}
.frm-div-stl-04{


}
.frm-div-stl-05{


}

.frm-div-stl-06{


}

.frm-fieldset-stl-01{
  border-color:#999999; border-style:solid; border-width:1px; margin:20px 15px 20px 15px; text-align:left; margin-left:2px; margin-right:2x;
}

.frm-legend-stl-01 {
  color:#000066;margin-left:10px; font-weight:bold;
}
/*------------------------------------------------------------------------------------------*/

   /*  =======================   Basic Modal CSS  ======================== */

            #basic-modal-content {display:none;}

            /* Overlay */
            #simplemodal-overlay {background-color:#000; cursor:wait;}

            /* Container */
            #simplemodal-container { /*  height:30px; width:30px; background-color:#333; */ }
            #simplemodal-container .simplemodal-data { /* padding:8px; */}
            #simplemodal-container code {background:#141414; border-left:3px solid #65B43D; color:#bbb; display:block; font-size:12px; margin-bottom:12px; padding:4px 6px 6px;}
            #simplemodal-container a {color:#ddd;}
            #simplemodal-container a.modalCloseImg {}
            #simplemodal-container h3 {color:#84b8d9;}

            /*  =======================   Basic Modal CSS END ======================== */

table.gridtable {
  border-width: 1px;
  border-color: #666666;
  border-collapse: collapse;
        margin:2px;
        margin-top:10px;
        text-align:center;
}
table.gridtable th {
  border-width: 1px;
  padding: 3px;
  border-style: solid;
  border-color: #666666;
  background-color: #dedede;
}
table.gridtable td {
  border-width: 1px;
  padding: 3px;
  border-style: solid;
  border-color: #666666;

}




/* ==================================== =========================== */


.arrowRound {
  height:20px; 
  margin-left:5px; 
  margin-top:10px; 
  vertical-align:middle; 
  background-image:url(../img_n/arrow_round.gif); 
  background-repeat:no-repeat; 
  background-position:left; 
  padding-left:25px; 
  padding-top:4px;
  font-size:12px; 
  font-weight:bold; 
}


.arrowGreay {
  height:15px;
  margin-left:20px;
  margin-top:5px;
  background-image:url(../img_n/greayarrow.gif);
  background-repeat:no-repeat;
  background-position:left;
  padding-left:20px;
  padding-top:2px;font-size:12px;
  font-weight:bold;
}

.arrowDouble {
  /*height:15px;*/
  margin-left:20px;
  margin-top:5px;
  background-image:url(../img_n/arrow_double.gif);
  background-repeat:no-repeat;
  background-position:left;
  padding-left:20px;
  padding-top:2px;
  font-size:12px;
}


.arrowDouble a {text-decoration:none; color:#000;}
.arrowDouble a:hover {text-decoration:underline; color:#00C; }
.arrowDouble a:visited {color:#000;text-decoration:none;}

.arrowNo {
  margin-left:20px;
  margin-top:5px;
  padding-left:20px;
  padding-top:2px;
  font-size:12px;
}

.divTable {
  margin-left:5px;
  margin-top:5px; 
  font-size:12px;
}


.marqueeText {
  margin-top:25px;
  margin-right:18px;
  border-bottom:#999999 dotted 1px;  
  font-size:13px; 
  text-align:left;
  padding-bottom:2px;
  padding-left:2px;
  
}
.marqueeText a {
  text-decoration:none;
  color:#009;
  
  
}
.marqueeText p {
  text-decoration:none;
  color:#009;
  
  
}

.sitemenu{
  margin-bottom: 20px;
}
.sitemenu strong {
    font-size: 20px;
    color: #000072;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}
.sitemenu strong a{
      color: #000072;
}
.sitemenu ul {
    padding: 5px 0;
    background: #f5f5f5;
    margin: 0;
}
.sitemenu ul li {
}
.sitemenu ul li a {
    display: block;
    padding: 8px 30px;
    position: relative;
    color: #656565;
    font-size: 15px;
    /* background: #f5f5f5; */
}
.sitemenu ul li a:before {
    content: "\f101";
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 14px;
    font: normal normal normal 14px/1 FontAwesome;
}
.sitemenu-inner{ padding-left: 30px !important; }
ul.sitemenu-inner li a {
    color: #969696 !important;
    font-size: 14px;
    font-style: italic;
}


/*.staticunitsButton{ padding: 0px; margin: 0px;}
.staticunitsButton li { display: inline-block; padding: 0; margin: 0px 10px 0px 0px; list-style: none;}
.staticunitsButton li:before { content: ''; padding: 0; margin: 0;}
.staticunitsButton li a {display: block; font-size: 16px; background: #ff6100; color: #fff;  padding: 8px 15px; border-radius: 3px;}
.staticunitsButton li a:hover{ text-decoration: none; background: #000072; }*/

.staticunitsButton{}
.staticunitsButton a {
    background: #ff6100;
    padding: 6px 15px;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
}
.staticunitsButton a:hover{ background: #000072 }

.newbluebutton img {
    width: 100px;
}
td.vacancy-title {
    text-align: left !important;
}

.new-heading {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    margin-top: 25px;
    font-weight: 600;
    font-style: italic;
    color: #ff6100;
}

.nav-tabs {
    border-bottom: 1px solid #9191f9;
}
.tab-content .responsive-table thead th{ 
    background-color: #000072;
    border: 1px solid #000072;
    color: #ffffff;
}

.project-tab #tabs{
    background: #007b5e;
    color: #eee;
}
.project-tab #tabs h6.section-title{
    color: #eee;
}
.project-tab #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #000072;
    /*border-color: transparent transparent #f3f3f3;*/
    /*border-bottom: 3px solid #000072 !important;*/
    font-size: 15px;
}

.project-tab .nav-link {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #292929;
    font-size: 15px;
    border: none;
    text-transform: uppercase;
    margin: 0px;
}
.project-tab .nav-link:hover {
    border: none;
    background: #000072;
    color: #fff;
}
.project-tab thead{
    background: #f3f3f3;
    color: #333;
}
.project-tab a{
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* next tab */
.project-tab #tabsk{
    background: #007b5e;
    color: #eee;
}
.project-tab #tabsk h6.section-title{
    color: #eee;
}
.project-tab #tabsk .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #000072;
    /*border-color: transparent transparent #f3f3f3;*/
    border-bottom: 3px solid #000072 !important;
    font-size: 15px;
}

.hitcounter {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
}
.counterhit {
    position: relative;
}
.jscountersk {
    font-size: 25px;
    font-weight: 900;
    color: #000072;
    line-height: 30px;
}
.hitcounter strong {
    font-size: 13px;
    text-transform: uppercase;
    color: #656565;
    font-weight: 600;
}
span.statcounter img {
    width: 20px;
}

.doc-table{ padding: 30px; }

.doc-table .style12, .doc-table .style13, .doc-table .style2, .doc-table .style3, .doc-table .style4 { font-weight: bold; }
.style109 { color: #000000 !important; font-size: 22pt; font-weight: bold; height: 60px;}
.style37 { color: #000000 !important; font-size: 22pt; font-weight: bold; height: 60px;}
@media (min-width: 75em){
.doc-table .responsive-table th, .responsive-table td{ padding: 5px !important; }
}

.liststyle-noneSK{}
.liststyle-noneSK li { margin-left: 20px; padding-left: 0; list-style: upper-roman;}
.liststyle-noneSK li:before{ list-style: none ; content: '';}

.downloadButton .btn{ float: none; }
.downloadButton .responsive-table td{ padding: 10px 5px !important }

.new-social-icons { padding: 0px; margin: 0px;}
.new-social-icons li{ display: inline-block; }
.new-social-icons li a { background: #000072; color: #fff; border-radius: 50%; font-size: 16px; width: 40px; height: 40px; text-align: center;    line-height: 40px;}
.new-social-icons li a:hover{ background: #ff6100; color: #fff; }

/* new contact us */
.helpline-body{ width: 100%;}
.helpline-body h6 { font-size: 20px;}
.helpline-body .helplineBox { text-align: left; padding: 20px 0;}
.helpline-body .helplineBox strong { display: block; font-size: 16px; font-weight: 800; text-transform: uppercase;}
.helpline-body .helplineBox a { display: inline-block; color: #000072; padding: 8px 0px; margin-top: 0; border-radius: 5px; font-size: 14px;    font-weight: 500;}
.helpline-body .helplineBox span {
    display: inline-block;
    color: #000072;
    font-size: 16px;
    padding: 6px 0px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 0;
}

.helpline-body .helplinemail-Box a {
    font-size: 16px;
    padding: 6px 0px;
    font-weight: 600;
}


.helpline-tab {
    width: 100%;
}
.helpline-tab .nav-tabs .nav-link.active {
    background: #00007233;
    color: #000072;
    border-bottom: none !important;
    font-size: 16px;
    font-weight: 900;
}
.helpline-tab .nav-tabs .nav-link {
    text-align: center;
    font-weight: 900;
    color: #929292;
}
.helpline-tab .nav-link:hover{ background: none; color: #ff6100 }

.helpline-tab .tab-content {
    padding: 0px 20px;
    background: #ececec;
}
.helpline-tab .nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.it-margin h4{ margin-top: 0px; }

.imgflot{ float: right; margin-left: 20px; }

.card-bodyh4 h4{ margin-top: 15px; }

.blueheding {
    background: #000072;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}