@font-face {
  font-family: 'Franklin Gothic';
  src: url('../fonts/FranklinGothic-MediumItalic.woff2') format('woff2'),
  url('../fonts/FranklinGothic-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Franklin Gothic Demi Cond';
  src: url('../fonts/FranklinGothic-DemiCond.woff2') format('woff2'),
  url('../fonts/FranklinGothic-DemiCond.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic';
  src: url('../fonts/FranklinGothic-Heavy.woff2') format('woff2'),
  url('../fonts/FranklinGothic-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url('../fonts/FranklinGothic-Demi.woff2') format('woff2'),
  url('../fonts/FranklinGothic-Demi.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic';
  src: url('../fonts/FranklinGothic-Medium.woff2') format('woff2'),
  url('../fonts/FranklinGothic-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic Demi';
  src: url('../fonts/FranklinGothic-DemiItalic.woff2') format('woff2'),
  url('../fonts/FranklinGothic-DemiItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Franklin Gothic';
  src: url('../fonts/FranklinGothic-HeavyItalic.woff2') format('woff2'),
  url('../fonts/FranklinGothic-HeavyItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Franklin Gothic Medium Cond';
  src: url('../fonts/FranklinGothic-MediumCond.woff2') format('woff2'),
  url('../fonts/FranklinGothic-MediumCond.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic Book';
  src: url('../fonts/FranklinGothic-Book.woff2') format('woff2'),
  url('../fonts/FranklinGothic-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Franklin Gothic Book';
  src: url('../fonts/FranklinGothic-BookItalic.woff2') format('woff2'),
  url('../fonts/FranklinGothic-BookItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

.go_top{
  height: 35px;
  width: 35px;
  background: orange;
  position: fixed;
  bottom: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  right: 30px;
  box-shadow: 0px 3px 5px -3px #777;
  animation: floating infinite 1s linear;
  animation-direction: alternate-reverse;
  display: none;
}
.go_top a{
  display: block;
  height: 100%;
  color: #fff;
}

@keyframes floating{
  from{
    transform: translateY(-10px);
  }
  to{
    transform: translateY(0px);
  }
}

.go_top:hover{
  animation-play-state:paused;
  -webkit-animation-play-state:paused;
}

html{
  scroll-behavior: smooth;
}
html,body{
  height: 100%;
}

body{
  /*font-family: 'Hind', sans-serif;*/
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.7px;
  color: #4d4d4d;
  font-weight: 400;
  background-color: #e6e7e8;
}

a,a:hover{
	text-decoration: none;
}


ul{
  padding-left: 0;
}

ul,li{
  list-style: none;
}

h1,h2,h3,h4,h5,h6{

}

@keyframes zoomIn{
  from { transform: scale(1);}
  to { transform: scale(1.2) }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.bg_primary{
  background-color: #0f66dd;
}


.sec_header{
  background-color: #EBEFF2;
  padding: 8px 0;
}

.div_top {
  margin-bottom: auto;
  /*background-color: #e6e7e8;*/
  background-color: #fc4a1a;
}

.top_bar{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/*.top_bar>div:first-child{
  margin-right: auto;
  }*/

  .top_bar a{
    padding: 8px 10px;
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    /*background-color: rgb(251, 76, 53);*/
    background-color: #fc4a1a;
    /* margin-right: 0.1px; */
    border-right: 1px solid #ff6b58;
    min-width: 42px;
    text-align: center;
  }

  .font_size{
   display: flex;
   align-items: center;

 }

 .language {
   font-family: 'Hind', sans-serif;
 }
 .logo{
  height: 70px;
  width: 70px;
  border-radius: 100%;
  text-align: center;
  display: block;
  /*background-color: #fff;*/
  padding: 5px;
  transition: all ease-in-out 0.4s;
  opacity: 0;
}

.logo img{
  height: 100%;
}





.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.search_abso {
  /* background: rgba(28, 28, 28, 1); */
  background: #fff;
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1032;
  transform: translateY(-150px);
  transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
}

.search_abso.translateY {
  transform: translateY(0px);
}

.search_abso input {
  width: 100%;
  height: 50px;
  border: 0;
  /* background: transparent; */
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
  color: #444;
  padding: 10px 20px;
  font-size: 18px;
  text-align: center;
  outline-color: transparent;
  max-width: 550px;
}

.close_bar {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

#search_input::placeholder {
  opacity: 0.4;
}

/*.nav_adjust{
  display: flex;
  align-items: center;
  }*/

  .navbar-toggle{
    /*margin-top: 18px;*/
  }

  .navbar-header{
    margin-right: auto;
  }


  .navbar-default {
    background-color: #fff;
    border-color: transparent;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .navbar-default .navbar-nav>li>a {
   color: #666;
   text-transform: uppercase;
   padding-top: 25px;
   padding-bottom: 25px;
   font-size: 13px;
   font-weight: 600;
 }

 .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
  color: #333;
  background-color: transparent;
}


.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  color: #fff;
  background-color: #fb4c35;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #222;
  background-color: transparent;
}

.sec_nav .dropdown-menu>li>a {
  padding: 10px 20px;
  border-bottom: 1px dotted #ddd;
}


.sec_nav .dropdown-menu>li>a:focus, .sec_nav .dropdown-menu>li>a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #fb4c35;
}


/*.sec_nav .dropdown-menu{
  display: block;
  padding: 0;
  border:0px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(7em);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  }*/

/*.sec_nav .dropdown:focus .dropdown-menu,
.sec_nav .dropdown:focus-within .dropdown-menu,
.sec_nav .dropdown:hover .dropdown-menu {
  visibility: visible;

  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s , 0.4s;

  }*/




  .sec_nav .dropdown-menu .divider {
    height: 1px;
    margin: -1px 0 0;
    overflow: hidden;
    background-color: #b1b1b1;
  }


  .item_text_frame{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    top: 0;
    display: flex;
    align-items: flex-end;
    padding: 150px 0;
    /* background: rgba(0,0,0,0.1); */
    background: rgba(0, 0, 0, 0.26);
    color: #fff;
  }
  .item_text{
    max-width: 90%;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
  }

  .item_text h1{
    font-size: 57px;
    font-weight: 600;
  }

  .item_text a{
    /*color: #f4ca59 ;*/
    transition: transform linear 200ms;
    display: inline-block;
  }
  .item_text a i{
    font-size:12px;
  }
  .item_text a:hover{
    color: #fff;
    /*transform: translateX(10px);*/
  }

  .sec_pad_60{
    padding: 60px 0;
  }

  .sec_pad_100{
    padding: 100px 0;
  }

  /*background-image: linear-gradient(-135deg, #101480 25%, #028fff 100%); background-image: linear-gradient(-135deg, rgba(2, 143, 255, 0.8) 25%, rgba(159, 85, 255, 0.8) 100%);*/

  .flex_box_frame{
    display: flex;
    flex-wrap: wrap;
  }

  .box_6{
    width: 50%;
  }
  .box_12{
    width: 100%;
  }

  .site_heading{
/*  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #eee;
  position: relative;
  text-align: left;
  position: relative;
  margin-bottom: 10px;

  */
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 19px;
  clear: both;
  height: 34px;
  line-height: 34px;
  background-image: url(../img/title_pattern.png);
  background-repeat: repeat;
}

/*.site_heading:after{
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeceb;
  content: " ";
  }*/



  .site_heading h1{
   position: relative;
   display: inline-block;
   vertical-align: top;
   height: 100%;
   line-height: inherit;
   color: #fff;
   background-color: #fb4c35;
   padding: 0 20px;
   margin: 0;
   font-size: 14px;
 }

 .bg_white{
  background-color: #ffffff;
}

.content p{
  line-height: 26px;
}


.img_box .abso_image_box{
  position: relative;
  min-height: 400px;
  z-index: 1;
}



.img_box .abso_image_box img{
  position: absolute;
  transition: all ease-in-out 0.4s;
  transform: scale(0.89);
  /*animation: zoomIn 30s linear infinite;*/
}

.img_box .abso_image_box img:first-child{
  right: 0;
  top: 30%;
  z-index: 2;
}

.img_box .abso_image_box img:nth-child(2) {
  left: 25%;
  z-index: 1;

}

.img_box .abso_image_box img:last-child{
  top: 30%;
  left: 6%;
  z-index: -1;

}

.img_box .abso_image_box img:hover{
  z-index: 3;
  transform: scale(1);
}

/*.btn{
  border-radius: 0;
  box-shadow: 0 5px 10px -4px #999;
  border:0;
  transition: all ease-in-out 0.4s;
  }*/


  .btn_default{
    background-color: #1d3a7c;
    color: #fff !important;
  }

  .btn_default:hover{
    background-color: #122140;
    color: #fff;
  }


  /*.btn_gradient{
    background-color: #0f66dd;
    background-image: linear-gradient(-135deg, rgba(2, 143, 255, 0.8) 25%, rgb(9, 64, 166) 100%);
    background: linear-gradient(-135deg, #102045 25%, rgba(21, 31, 56, 0.8) 100%);
    color: #fff;
  }
  */
  .btn_gradient:hover{
    color: #fff;
  }

  .pb_0{
    padding-bottom: 0;
  }



  .sec_bottom_slider{
    padding: 20px 0;
    background: #fff;
  }



  .sec_footer hr{
    margin: 10px auto;
    border-top: 1px solid rgb(44, 44, 44);
  }
  .sec_footer{
    background-image: url(../img/bg/waves.jpg);
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-color: #212121;
  }

  .sec_footer:before{
    content: "";
    /*background: #102045;*/
    /*background:linear-gradient(-135deg, #102045 25%, rgba(21, 31, 56, 0.8) 100%);*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .footer_heading{
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
  }

  .sec_footer a{
    color: #fff;
  }



  .footer_box ul li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .footer_box ul li span{
    position: absolute;
    left: 0;
    transform: translateX(0px);
    transition: all ease-in-out .4s;
  }



  .footer_box ul li a:hover span{
    transform: translateX(8px);
  }

  .footer_bottom{
    padding-bottom: 30px;
    margin-top: 30px;
  }


  .tab_frame{
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
  }


  .tab-content ul li:first-child{
    margin-top: 20px;
  }
  .tab-content ul li{
    margin-bottom: 10px;
  }
  .tab-content ul li a{
    color: #222;
  }

  .slider_immt{
    /*background-color: #fff;*/
    /*padding: 20px 0;*/
  }

  .slider_immt .slick-slide{
    margin: 0;
  }

  .immt_box{
    background: #fff;
    overflow: hidden;
    border-radius: 5px;
    -webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    -moz-box-shadow:0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    margin-bottom: 10px;
    position: relative;
  }



  .immt_box .content_box h3{
    margin: 0;
    white-space: nowrap;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
  }
  .immt_box .content_box h3 a{

   color: #222;
   text-transform: uppercase;
   font-size: 13px;
 }

 .immt_box .content_box .date{
   display: inline-block;
   background: #0f66dd;
   padding: 4px 8px;
   border-radius: 30px;
   color: #fff;
   font-size: 12px;
 }


 .immt_box .content_box .new{
  height: 40px;
  width: 40px;
  position: absolute;
}

.immt_box .content_box .new img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.slick-dots{
  display: flex;
  justify-content: center;
  align-items: center;
/*  height: 40px;
margin-top: 20px;*/
}
.slick-dots li{
  margin-right:10px;
}
.slick-dots li button{
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  border: 2px solid #0f66dd;
  color: #fff;
  height: 16px;
  width: 15px;
  font-size: 0;
  outline: none;
}
.slick-dots .slick-active button{
  background-color: #0f66dd;
}



  /*.dir_box{

    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    overflow: hidden;
  }

  .dir_box .content_box{
    padding: 20px;
    background-color: #fff;
    line-height: 26px;
  }

  .dir_box .content_box ul li.h5{
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }




 .gov_img{
  height: 80px;
}

.gov_img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
*/


#mainContent:before{
  content: "";
  height: 111px;
  margin-top: -111px;
  display: block;
}


.sec_footer_bottom{
  background-color: #fff;
  padding: 15px 0;
}

.gov_icons{
  margin-bottom: 0;
  text-align: center;
}
.gov_icons li{
  margin: 5px auto;
}
.gov_icons li a{
  display: block;

}

.gov_icons li a img{
  height: 100%;
}


.d_flex_2{
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
}

.daily_word{
 font-family: 'Hind', sans-serif;
}


.announcement_box a{
  color: #333;
}
.announcement_box ul {
  background-color: #f7f7f7;
  padding-top: 1%;
  padding-left: 4%;
  padding-right: 5%;
  padding-bottom: 1%;
  margin-bottom: 0;
}

.announcement_box ul li {
  list-style-type: none;
  border-bottom: 1px #cfd2d0 dashed;
  margin-top: 10px;
}

.announcement_box ul li:last-child{
  border-bottom: 0;
}


.field_content{
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
}

.field_content .new{
  position: absolute;
  top: -5px;
  right: 0;
  width: 30px;
}

.field_content .description{
  margin-bottom: 7%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.field_content .header{
  font-weight: bold;
  display: block;
  margin-top: 5%;
  margin-bottom: 1%;
}

.bottom_block{
  background-color: #f7f7f7;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom_block a{
  color: inherit;
}

.item_list{
  max-height: 580px;
  overflow: auto;
  margin-bottom: 4%;
}


/* width */
.item_list::-webkit-scrollbar,
.news_list::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.item_list::-webkit-scrollbar-track ,
.news_list::-webkit-scrollbar-track {
  background:  #eaeceb;
}

/* Handle */
.item_list::-webkit-scrollbar-thumb ,
.news_list::-webkit-scrollbar-thumb {
  background: #ddd;

}

/* Handle on hover */
.item_list::-webkit-scrollbar-thumb:hover ,
.news_list::-webkit-scrollbar-thumb:hover {
  background: #999;
}


.news_list ul li{
  display: flex;
  margin-bottom: 20px;
  padding: 15px 15px 15px 0px;
  /*background-color: #f2f2f2;*/
  border-radius: 4px;
  position: relative;
}

.news_list ul li .news_img{
  flex: 0 0 150px;
  max-width:150px;
  border-radius: 4px;
  overflow: hidden;
}

/*
news_title
news_description*/
.news_list .news_content {
  padding: 20px;
  overflow: hidden;
  background: #fff;
}
.news_list .news_content .news_title{
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #333;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  height: 48px;
}

.news_list .news_content .news_title:hover{
  color: #fb4c35;
}

.news_list .news_content .source{
  font-weight: bold;
  font-size: 12px;
  color: #fb4c35;
}


.news_list .news_content .news_description{
  height: 64px;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
}


.news_list{
  max-height: 580px;
  overflow: auto;
  margin-bottom: 15px;
}

.news_list .new {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
}


.img_box_frame{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.img_box_frame .img_box{
  flex:0 0 25%;
}
.img_box_frame .img_box .thumbnail {
 margin-bottom: 0px;
 border: 0px solid #ddd;
}


.dir_msg .content_box{
/*  padding-left: 0;
padding-right: 0;*/
/*background: #f7f7f7;*/
background: #fff;
border: 1px solid #f2f2f2;
text-align: justify;
padding: 10px;
}

.dir_msg .content_box p{
  font-weight: 600;
}

.dir_msg{
  border-radius: 4px;
}

.dir_msg img{
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.abt_us{
  background: #f7f7f7;
}

.abt_us .img_box{
  margin-bottom: 10px;
}

.notification marquee{
  /*max-height: 350px;*/
  vertical-align: middle;
}

.notification{
  padding: 0 15px;
  background: #fff;
  vertical-align: middle;

}
.notification ul{
  margin-bottom: 0;
}
.notification ul li{
  padding: 10px 20px;
  /*border-bottom: 1px dashed #b1b1b1;*/
  position: relative;
}

.notification ul li:after{
  content: "\f111";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: #fb4c35;
}

.notification ul li a {
  color: #333;
  font-weight: 600;
}


.sec_logo{
  background-color: #f9f9f9;
  padding: 10px 0;
}
.d_flex{
  display: flex;
  align-items: center;
}

.org_name{
  padding-left: 20px;
}

.big_logo{
  height: 100px;
  display: inline-block;
  width: 100px;
  transition: all ease-in-out 0.3s;
}

.big_logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.logo_right{
  height: 80px;
  width: 80px;
  margin-left: auto;
  transition: all ease-in-out 0.3s;
}


.logo_title{
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  /*color: brown;*/
  color: #b71b04;
  font-family: Franklin Gothic Medium Cond;
}

.logo_title ~ span{
  font-size: 18px;
  font-weight: 800;
  color: #777;
  line-height: 1.2;
  font-family: Franklin Gothic Medium Cond;
}

.news_box{
  position: relative;
}

.news_list .news_content{
  position: relative;
}

.owl-nav span{
  display: inline-block;
  width: 30px;
  background: #fff;
  height: 34px;
  line-height: 28px;
  font-size: 34px;
  vertical-align: middle;
  font-weight: 100;

}
.owl-prev{
  border-right:1px solid #999 !important;
}
.owl-theme .owl-nav [class*=owl-]{
  outline: none;
  margin: 0;
  border-radius: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover span{
  color: #fb4c35;
}

.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  /*top: -53px;*/
  top: -49px; /*-------------------------------------------------------Updated 01-10-2019*/
  right: 0;
}
.site_heading{
  position: relative;
}

.site_heading .view_all{
  display: inline-block;
  background: #fff;
  margin-left: auto;
  position: absolute;
  right: 65px;
  box-shadow: inset 2px 0 0 #fb4c35;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  transition: all ease-in-out 0.3s;

}


.site_heading .view_all a{
  color: #fb4c35;
  display: block;
  padding: 0 10px;
  transition-delay: color 0s;
}

.site_heading .view_all:hover{
  box-shadow: inset 90px 0 0 #fb4c35;
}
.site_heading .view_all:hover a{
  color: #fff;
}


.carousel-inner>.item{
  /*height: 400px;*/
}

.carousel-inner>.item img{
  /*height: 100%;*/
  width: 100%;
  object-fit: cover;
  object-position: center;
}


.carousel-indicators li{
  display: none;
}
/*.carousel-indicators li {
  display: inline-block;
  width: 40px;
  height: 4px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
}

.carousel-indicators .active {
  width: 40px;
  height: 4px;
  margin: 1px;
  border: 1px solid #fb4c35;
  background-color:#fb4c35;
  }*/

  .sec_slider{
    /*background-color: #fff;*/
  }

  .dir_msg .img_box{
    /*float: left;*/
    /*margin-right: 15px;*/
  }

  .mt_15{
    margin-top: 15px !important;
  }

  .mb_15{
    margin-bottom: 15px !important;
  }
  .mb_30{
    margin-bottom: 30px !important;
  }


  .news_img{
    height: 220px;
  }

  .news_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }



  .tz-gallery {
    padding: 0 15px;
  }

  /* Override bootstrap column paddings */
  .tz-gallery .row > div {
    padding: 2px;
  }

  .tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
  }

  .tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
  }


  .tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
  }

  .tz-gallery .lightbox:hover:after,
  .tz-gallery .lightbox:hover:before {
    opacity: 1;
  }

  .baguetteBox-button {
    background-color: transparent !important;
  }

  /*Updates ------------------------------------------------- 16-07-2019*/

  .btn_primary{
    background-color: #fb4c35;
    color: #fff;
  }

  .item_text{
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 15px;
    background-color: rgba(0,0,0,0.5);

  }

  .item_text a:first-child{
    color: #fff;
    margin-bottom: 10px;
  }

  .carousel-control{
    top: 40%;
    width: 80px;
    height: 80px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev{
    top: 36%;
  }

  .box{
    margin-bottom: 20px;
  }

  .box_item .site_heading .view_all{
    right: 0px;
  }
  .box_item_img{
    background: #fff;
    text-align: center;
  }
  .box_item .box_item_img{
    height: 333px;
  }

  .box_item_img img{
    height: 100%;
  }

  .pad_30{
    padding: 30px;
  }

  .scroll_item{
    max-height: 300px;
    overflow: auto;
    padding: 10px 0;
    background: #fff;
  }



  /* width */
  .scroll_item::-webkit-scrollbar {
    width: 6px;
  }

  /* Track */
  .scroll_item::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  .scroll_item::-webkit-scrollbar-thumb {
    background: rgb(251,139,53);
    background: -moz-linear-gradient(to top, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    background: -webkit-linear-gradient(to top, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    background: linear-gradient(to top, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb8b35",endColorstr="#fb4c35",GradientType=1);
    border-radius: 40px;
  }

  /* Handle on hover */
  .scroll_item::-webkit-scrollbar-thumb:hover {
    background: rgb(251,139,53);
    background: -moz-linear-gradient(to bottom, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    background: linear-gradient(to bottom, rgba(251,139,53,1) 0%, rgba(251,76,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb8b35",endColorstr="#fb4c35",GradientType=1);
  }

  .s_item_list{
    display: flex;
    margin-bottom: 10px;
    padding: 0px 10px 10px;
  }

  .s_item_list .date_frame{
    flex: 0 0 100px;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #fb4c35;
    text-align: center;
    color: #fb4c35;
    font-weight: 600;
    /* margin-right: 15px; */
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
  }

  .date_frame .date{
    background: #fb4c35;
    color: #fff;
  }

  .date_frame .year,
  .date_frame .date{
    padding: 5px;
  }

  .s_item_list a {
    border: 1px solid #fb4c35;
    border-left: 0;
    padding-left: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #b71b04;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }

  .s_item_list a:hover{
    color: #fb4c35;
  }


  .item_1_2{
    display: inline-block;
    width: 100%;
    height: 300px;
  }

  .box .slick-dots{
    display: none !important;
  }

  .item_2{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .item_2 .box_item_img{
    height: 135px;
  }

  .item_2 .box_item_img:not(:last-child){
    margin-bottom: 15px;
  }

  .news_list_single{
    position: relative;
    margin-bottom:0;
  }
  .news_list_single .news_content{
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
  }

  .item_1{
    display: flex;
    height: 100%;
  }

  .news_list_single .news_content .news_title
  {
    color: #fff;
  }

  .item_1  .news_list_single .news_img{
    height: 100%;
  }

  .btn_noshadow{
    box-shadow: none;
  }

  .img_slider .news_img{
    height: auto;
  }

  .widget_frame{
    height: 350px;
    overflow: auto;
  }

  .more_links{
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    margin-bottom: 30px;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .pb_30{
    padding-bottom: 30px !important;
  }

  .more_links a{
    padding: 6px 12px;
    color: #fb4c35;
    font-weight: 600;
    overflow:hidden;
    position: relative;
  }


  .more_links a:before {
    box-sizing: border-box;
    transform: translateX(100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 99.5%;
    height: 1px;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  .more_links a:after {
    box-sizing: border-box;
    transform: translateX(-100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 99.5%;
    height: 1px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  .more_links a:hover {
    text-decoration: none;
  }
  .more_links a:hover:before {
    transition: 0.1s transform linear, 0.1s height linear 0.1s;
    transform: translateX(0);
    height: 100%;
    border-color: #fb4c35;
  }
  .more_links a:hover:after {
    transition: 0.1s transform linear 0.2s, 0.1s height linear 0.3s;
    transform: translateX(0);
    height: 100%;
    border-color: #fb4c35;
  }



  .sec_news_events{
    margin-bottom: 30px;
  }
  .social_widget .nav-tabs>li>a{
    border-radius: 0;
  }
  .social_widget .nav-tabs>li.active>a,
  .social_widget .nav-tabs>li.active>a:focus,
  .social_widget .nav-tabs>li.active>a:hover{
    border:1px solid transparent;
  }

  .social_widget .nav-tabs>li:not(:last-child)>a{
    background-color: #3B5998;
    color: #fff;
  }

  .social_widget .nav-tabs>li:not(:first-child)>a{
    background-color: #1DA1F2;
    color: #fff;
  }


  #facebook ._2p3a{
    margin: auto;
  }



  .slider_inner .carousel-inner>.item {
    /* height: 250px; */
  }
  .slider_inner .item_text {
    right: 15px;
    left:unset;
    color: #fff;
  }

  .side_nav{
    padding: 8px;
    background-color: #fff;
  }

  .side_nav ul{
    margin-bottom: 0;
  }

  .side_nav ul li a{
    display: block;
    padding: 10px;
    background-color: #333333;
    color: #fc4a1a;
    font-size: 20px;
    /* font-weight: 600; */
    font-family: Franklin Gothic Medium Cond;
  }
  .side_nav .dropdown-menu{
    position: static;
    width: 100%;
    background: #2b2b2b;
    border-radius: 0;
  }

  .side_nav .dropdown-menu li a{
    background-color: #2b2b2b;
    margin-left: 10px;
    color: #d8d8d8;
    font-size: 16px;
  }

  .side_nav .dropdown-menu li a:hover{
    color: #fc4a1a;
  }

  .side_nav .dropdown a{
    display: flex;
    align-items: center;
  }

  .side_nav .dropdown a span{
    margin-left: auto;
    font-size: 14px;
  }
  .side_nav .dropdown .fa-minus{
    display: none;
  }

  .side_nav .dropdown.open .fa-plus{
    display: none;
  }

  .side_nav .dropdown.open .fa-minus{
    display: initial;
  }

  .breadcrumb{
    background-color: transparent;
    padding-left: 0;
  }

  .breadcrumb li{
    color: #1d3a7c;
    font-weight: 700;
  }

  .breadcrumb li a{
   color: #1d3a7c;
   font-weight: 700;
 }

 .breadcrumb>.active {
  color: #fc4a1a;
}

.breadcrumb>li+li:before {
  padding: 0 5px;
  color: #fb4c35;
  content: "\f111";
  font-family: FontAwesome;
}

.subheading{
  font-weight: 600;
  color: #222;
  font-size: 16px;
}
.content_box{
  margin-bottom: 30px;
}

.list_default{
  padding-left: 40px;
}
.list_default li{
  list-style: initial;
  margin-bottom: 5px;
}

ol.list_default li{
  list-style: inherit;
}
.side_nav{
  top: -72px;
  transition: all ease-in-out 0.4s;
}
.side_nav.fixed_element{
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 1029;
}


/*02/08/2019*/
.card_white{
  background: #fff;
}
.card{
  margin-bottom: 15px;
}
.card_title {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  /*height: 48px;*/
}
.card_content{
  padding: 20px;
  overflow: hidden;
  background: #fff;
}

.card_content p{
  margin-bottom: 2px;
}

.site_heading_2 h1{
  margin: 0 auto 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
}

.card_flex_frame{
  display: flex;
  flex-wrap: wrap;
}
.card_flex_frame .flex_wrapper{
  flex: 0 0 33.33%;
}
.card_flex_frame .card{
  margin-right: 15px;
}

.img_box.box_cover{
  height: 350px;
}

.img_box.box_cover img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.img_decription{
  padding: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  color: #444;
}

.img_frame_box{
  margin-bottom: 25px;
}


/* ========================================================================================= 28-08-2019*/

.news_box_side .news_list{
  display: flex;
}
.news_box_side .news_img{
  height: auto;
  width: 200px;
}

.news_box_side .news_list .news_content{
  padding: 12px 20px;
}

.news_box_side .news_list .news_content .news_title{
  font-size: 14px;
  height: auto;
}

.pall_15{
  padding: 15px;
}

.main_title{
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.main_title .source{
  display: block;
  font-weight: bold;
  font-size: 12px;
  color: #fb4c35;
  margin-top: 5px;
}

.box_content{
  padding: 20px;
  overflow: hidden;
  background: #fff;
}

.annual_reportbox .report_list li img{
  /*height: 200px;*/
}
.annual_reportbox .report_list {
  display: flex;
  flex-wrap: wrap;
}

.annual_reportbox .report_list li{
  width: 100px;
  text-align: center;
  font-size: 13px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.annual_reportbox .report_list li a{
  color: #444;
  font-weight: bold;
}

.annual_reportbox .report_list li a span{
  padding: 5px;
  display: block;
}


/* ========================================================================= 04/09/2019 */
#glance_slider_div .immt_box {
  min-height: 333px;
  /*display: flex;*/ /* ============================================ Updated 01-10-2019*/
  /*flex-direction: column;*/ /* ============================================ Updated 01-10-2019*/
}

#glance_slider_div .content_box{
  margin-bottom: 0;
  padding: 12px;
  /*margin-top: auto;*/ /* ============================================ Updated 01-10-2019*/
}

.tender_table{
  background: #fff;
  padding: 30px;
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before{
  background-color: #3e3689;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before {
  content: '-';
  background-color: #fb4c35;
}

.btn:not(.buttons-html5,.buttons-print,.buttons-csv,.buttons-copy,.buttons-excel,.buttons-pdf){
  border-radius: 0;
  box-shadow: 0 5px 10px -4px #999;
  border: 0;
  transition: all ease-in-out 0.4s;
}

.invert{
  filter: invert(100%)
}

.revert_invert{
  filter: invert(1);
}

.sec_footer.revert_invert{
 background: #000;
 color: #04b3ca;
}
.sec_footer.revert_invert a {
  color: #04b3ca;
}


.pt_0{
  padding-top: 0;
}

.pall_0{
  padding: 0;
}



.member_img{
  flex: 0 0 120px;
  align-self:flex-start;
  padding-top: 10px;
}

.member_desc{
  padding-left: 30px;
  align-self:flex-start;
}
.emp_profile{
  border-bottom: 1px dashed #ddd;
  padding-bottom: 30px;
}

.emp_profile p{
  margin-bottom: 5px;
}

.source a{
  color: inherit;
}

.emp_profile_details .main_title{
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.img_right{
  float: right;
  margin-left: 15px;
}
.dtr-data{
  white-space: normal;

}

/*13-09-2019*/

.m-p-g {
  max-width: 100%;
  margin: 0 auto;
}
.m-p-g__thumbs-img {
  margin: 0;
  float: left;
  vertical-align: bottom;
  cursor: pointer;
  z-index: 1;
  position: relative;
  opacity: 0;
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: opacity, transform;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 5px;
}
.m-p-g__thumbs-img.active {
  z-index: 50;
}
.m-p-g__thumbs-img.layout-completed {
  opacity: 1;
}
.m-p-g__thumbs-img.hide {
  opacity: 0;
}
.m-p-g__thumbs-img:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}
.m-p-g__fullscreen {
  position: fixed;
  z-index: 1037;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: background 0.25s ease-out, visibility 0.01s 0.5s linear;
  will-change: background, visibility;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.m-p-g__fullscreen.active {
  transition: background .25s ease-out, visibility .01s 0s linear;
  visibility: visible;
  background: rgba(0, 0, 0, 0.95);
}
.m-p-g__fullscreen-img {
  pointer-events: none;
  position: absolute;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  max-width: 100%;
  visibility: hidden;
  will-change: visibility;
  transition: opacity 0.5s ease-out;
}
.m-p-g__fullscreen-img.active {
  visibility: visible;
  opacity: 1 !important;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.m-p-g__fullscreen-img.almost-active {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.m-p-g__controls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1037;
  height: 20vh;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.m-p-g__controls.active {
  opacity: 1;
  visibility: visible;
}
.m-p-g__controls-close, .m-p-g__controls-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
}
.m-p-g__controls-close:focus, .m-p-g__controls-arrow:focus {
  outline: none;
}
.m-p-g__controls-arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 20%;
  height: 100vh;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}
.m-p-g__controls-arrow:hover {
  opacity: 1;
}
.m-p-g__controls-arrow--prev {
  left: 0;
  padding-left: 3vw;
  justify-content: flex-start;
}
.m-p-g__controls-arrow--next {
  right: 0;
  padding-right: 3vw;
  justify-content: flex-end;
}
.m-p-g__controls-close {
  position: absolute;
  top: 3vh;
  left: 3vw;
  z-index: 5;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.m-p-g__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: all .25s ease-out;
}
.m-p-g__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.m-p-g__alertBox {
  position: fixed;
  z-index: 999;
  max-width: 700px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
  color: grey;
}
.m-p-g__alertBox h2 {
  color: red;
}

/*14-09-2019*/

.img_cat_box {
  background: #fff;
  padding: 10px 10px;
  margin-top: 30px;
  border-radius: 8px;
}

.img_cat_box>div {
  height: 160px;
}

.img_cat_box>div>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.img_cat_box p {
  padding: 10px;
  margin-bottom: 0;
  background: #ff5400;
  color: #fff;
}


.emp_profile .d_flex_2 {
  justify-content: flex-start;
}

.sec_pad_25{
  padding: 25px 0;
}

.img_content_box{
  display: flex;
  box-shadow: 0px 0px 0px 1px #999;
  padding: 10px;
  flex-wrap: wrap;
}


.img_content_box  p{
  flex: 1;
}

.img_content_box .img_box{
 height: 150px;
 width: 150px;
 padding-right: 10px;
 padding-bottom: 10px;
}

.img_content_box .img_box img{
  object-fit: contain;
  height: 100%;
  width: 100%;
  object-position: top;
}
.sec_nav .dropdown:focus .dropdown-menu.dropdown-menu-level1,
.sec_nav .dropdown:focus-within .dropdown-menu.dropdown-menu-level1,
.sec_nav .dropdown:hover .dropdown-menu.dropdown-menu-level1 {
  visibility: visible;
  opacity: 1;
  z-index: 99;
  transform: translateY(0%);
  transition-delay: 0s, 0s , 0.4s;

}

.sec_nav .dropdown-menu.dropdown-menu-level2 {
  display: block;
  padding: 0;
  border: 0px;
  visibility: hidden;
  opacity: 0;
  transform:translate3d(0px , 0px , 0);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.sec_nav .dropdown.dropdown-level2:focus .dropdown-menu.dropdown-menu-level2,
.sec_nav .dropdown.dropdown-level2:focus-within .dropdown-menu.dropdown-menu-level2,
.sec_nav .dropdown.dropdown-level2:hover .dropdown-menu.dropdown-menu-level2{
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform:translate3d(0px , -45px , 0);
  transition-delay: 0s, 0s , 0.4s;
  right: 100%;
}


.item_2 .box_item_img {
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item_2 .box_item_img a{
  font-size: 18px;
  color: #04589a;
  font-weight: bold;
  text-transform: capitalize;
}

.box_item_img a{
  color: #04589a;
  font-weight: bold;
  text-transform: capitalize;
}

/* ============================================================= 01-10-2019*/

.dir_msg .content_box{
  margin-bottom: 15px;
}

.site_heading{
  margin: 0 0 15px;
}

.sec_slider .carousel-inner>.item {
  /* height: 280px; */
}

.research_slider_home.img_slider .news_img {
  height: 338px;
}

.research_slider_home.img_slider{
  margin-bottom: 15px;
}

.dir_msg .content_box {
  margin-bottom: 0;
}

.research_slider_home.img_slider .news_list{
  margin-bottom: 0;
}

.scroll_item_frame{
 padding: 12px 10px 12px 12px;
 background: #fff;
}
.scroll_item_frame .scroll_item{
  padding: 0;
}

.s_item_list{
  margin-bottom: 0;
  padding: 0px 5px 10px 0px;
}
.scroll_item_frame .scroll_item ul{
  margin-bottom: 0;
}
.scroll_item_frame .scroll_item ul .s_item_list:last-child{
  padding-bottom: 0;
}

.box_item .box_item_img {
  height: 302px;
}

.box_item.box{
  margin-bottom: 0;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9{
  padding-right: 7.5px;
  padding-left: 7.5px;
}
.row{
  margin-right: -5px;
  margin-left: -5px;
}

.slider_immt .immt_box{
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.immt_glance_img{
  height: 220px;
  overflow: hidden;
}

#events_track_side .news_list,
#news_track_side .news_list{
  margin-bottom: 0;
}

.box{
  margin-bottom: 15px;
}

.widget_frame {
  height: 323px;
  background: #fff;
  /* text-align: center; */
  padding: 15px;
}
.news_list_single {
  height: 365px;
  background: #fff;
}
.news_list_single .news_img {
  height: 240px;
}

.social_widget .nav.nav-tabs li{
  width: 50%;
}


/* width */
.widget_frame::-webkit-scrollbar
{
  width: 8px;
}

/* Track */
.widget_frame::-webkit-scrollbar-track
{
  background:  #eaeceb;
}

/* Handle */
.widget_frame::-webkit-scrollbar-thumb
{
  background: #ddd;

}

/* Handle on hover */
.widget_frame::-webkit-scrollbar-thumb:hover
{
  background: #999;
}

.more_links {
  margin-bottom: 15px;
}

.immt_box .content_box h3{
  margin: 0;
  white-space: normal;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  height: 48px;
  line-height:1.4;
}
.immt_box .content_box h3 a{
 color: #333333;
 text-transform: capitalize;
 font-size: 16px;
}
.immt_box .content_box .date{
  margin-bottom: 0;
  margin-top: 4px;
}

#glance_slider_div .content_box{
  padding: 20px;
}



.box_item_img.box_item_link {
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_item_img.box_item_link a {
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
}
.news_list_single .news_content{
  background-color: #fff;
}
.news_list_single .news_content .news_title {
  color: #333333;
}
/*Color Schemen*/

.more_links a {
  color: #b71b04;
}

.more_links a:hover:before{
  border-color: #b71b04;
}

.btn_primary {
  background-color: #b71b04;
  color: #fff;
}
.btn_primary:hover{
  color: #fff;
}

.language,
.top_bar a{
 border-right: 1px solid #9a3131 !important;
}

.site_heading h1,
.top_bar a ,
.div_top {
  background-color: #b71b04;
}

.date_frame .date {
  background: #b71b04;
}
.site_heading .view_all a {
  color: #b71b04;
}

.s_item_list a,
.s_item_list .date_frame{
  color: #b71b04;
  border: 1px solid #b71b04;

}

.s_item_list a{
  border-left: 0;
}

.site_heading .view_all{
  box-shadow: inset 2px 0 0 #b71b04;
}

.site_heading .view_all:hover {
  box-shadow: inset 90px 0 0 #b71b04;
}


.gradient-amber {
  background: #e65100!important;
  background: linear-gradient(50deg,#ffba3a,#e65100)!important;
  color: #fff!important;
}
.gradient-green {
  background: #2e7d32!important;
  background: linear-gradient(50deg,#c5d429,#2e7d32)!important;
  color: #fff!important;
}

.gradient-teal {
  background: #00796b!important;
  background: linear-gradient(50deg,#a9dc7b,#00796b)!important;
  color: #fff!important;
}

.gradient-indigo {
  background: #303f9f!important;
  background: linear-gradient(50deg,#2ec6ff,#303f9f)!important;
  color: #fff!important;
}



.notification ul li:after{
  color: #b71b04;
}


.breadcrumb{
  background-color: #fff;
  margin-bottom: 15px;
  margin-top: 15px;
  border-radius: 0;
  padding: 15px;
}

.breadcrumb>li+li:before {
  color: #b71b04;
  font-size: 12px;
}

.breadcrumb>.active {
  color: #b71b04;
}
.pt-0{
  padding-top: 0;
}
.pb-0{
  padding-bottom: 0;
}

.img_frame_box {
  margin-bottom: 15px;
}

.mb-15{
  margin-bottom: 15px;
}

.mb-5{
  margin-bottom: 5px;
}

.pb-5{
  padding-bottom: 5px;
}

.content_box {
  margin-bottom: 0px;
}


.sec_nav .navbar-default .navbar-nav>.open>a,
.sec_nav .navbar-default .navbar-nav>.open>a:focus,
.sec_nav .navbar-default .navbar-nav>.open>a:hover {
  color: #fff;
  background-color: #b71b04;
}

.sec_nav .dropdown-menu>.active>a,
.sec_nav .dropdown-menu>.active>a:focus,
.sec_nav .dropdown-menu>.active>a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b71b04;
  outline: 0;
}
.sec_nav .dropdown-menu>li>a:focus, .sec_nav .dropdown-menu>li>a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #b71b04;
}


.img_decription{
  background: rgba(230, 231, 232, 0.33);
}

hr {
  margin-top: 15px;
  margin-bottom: 5px;
  border: 0;
  border-top:1px solid #e6e7e8;
}

.side_nav ul li a {
  display: block;
  padding: 8px 6px;
  background-color: #ffffff;
  color: #333;
  font-size: 18px;
  /* font-weight: 600; */
  font-family: Franklin Gothic Medium Cond;
}

.list_default {
  padding-left: 16px;
}

.img_cat_box {
  background: #e6e7e8;
  padding: 10px 10px;
  margin-top: 0;
  border-radius: 0;
}

.tender_table {
  background: #fff;
  padding: 15px 15px;
}



.dropdown-submenu {
  position:relative;
}
.dropdown-submenu>.dropdown-menu {
  top:0;
  left:100%;
  margin-top:-6px;
  margin-left:-1px;
  -webkit-border-radius:0 6px 6px 6px;
  -moz-border-radius:0 6px 6px 6px;
  border-radius:0 6px 6px 6px;
}
.dropdown-submenu>a:after {
  display:block;
  content:" ";
  float:right;
  width:0;
  height:0;
  border-color:transparent;
  border-style:solid;
  border-width:5px 0 5px 5px;
  border-left-color:#cccccc;
  margin-top:5px;
  margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
  border-left-color:#555;
}
.dropdown-submenu.pull-left {
  float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
  left:-100%;
  margin-left:10px;
  -webkit-border-radius:6px 0 6px 6px;
  -moz-border-radius:6px 0 6px 6px;
  border-radius:6px 0 6px 6px;
}


.navbar-default .navbar-nav>li>a{
  font-size: 12px;
  padding: 15px 10px;
}


.navbar {
  min-height: 40px;
}
.sec_nav .dropdown-menu {
  padding: 0px;
}

.sec_nav .dropdown-menu>li>a {
  padding: 10px 12px;
  border-bottom: 1px dotted #ddd;
  font-size: 13px;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #b71b04;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 5px;
}

.navbar-toggle .icon-bar {

  width: 26px;
}

/*.navbar-default .navbar-nav>li>a {
   font-size: 14px;
   padding: 15px 12px;
   }*/

   .dropdown-submenu>.dropdown-menu {
     top: 0;
     left: unset;
     margin-top: -6px;
     margin-left: -1px;
     -webkit-border-radius: 0 6px 6px 6px;
     -moz-border-radius: 0 6px 6px 6px;
     border-radius: 6px 0px 6px 6px;
     right: 100%;
   }


   /* Updates ----------------------------------------------------------------------- 30-10-2019*/

   .scroll_item {
    max-height: 310px;
    height: 310px;
  }


  .news_events_tabs .nav-tabs>li>a{
    padding: 0;
    background-color: transparent;
  }

  .news_events_tabs .nav-tabs>li>a h1{
    padding: 6px 10px;
  }

  .news_events_tabs .nav-tabs>li.active>a,
  .news_events_tabs .nav-tabs>li.active>a:focus,
  .news_events_tabs .nav-tabs>li.active>a:hover {
    padding: 0;
    color: #555;
    cursor: default;
    background-color: transparent;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
  }
  .news_events_tabs .nav-tabs>li.view_all_li{
    float: right;
  }
  .news_events_tabs .nav-tabs>li.view_all_li .view_all{
    width: 80px;
  }

  .widget_frame {
    height: 340px;
    margin-bottom: 15px;
  }

  .dir_msg .content_box {
    border: 1px solid transparent;

  }

  .news_events_tabs .nav-tabs li h1{
    background-color: #b71b04;
  }
  .news_events_tabs .nav-tabs li.active h1{
    background-color: #e86450;
  }



  /* =========================================================== 11-12-2019 =========================================== */
  .search_page_list_frame{
    max-width: 550px;
    margin: auto;

    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.33);
    border-radius: 0 0 8px 8px;
    position: absolute;
    z-index: 1036;
    background: #fff;
    left: 0;
    right: 0;
  }
  #search_page_list_dynamic li label{
    margin-bottom: 0;
  }
  #search_page_list_dynamic li label,
  #search_page_list_dynamic li label a{
    display: block;
  }

  #search_page_list_dynamic li a{
    padding: 5px 30px;
    color: #c12c44;
  }
  #search_page_list_dynamic li a:hover{
    color: #0d469f;
  }


  #search_page_list_dynamic li:first-child label a{
    padding-top: 20px;
  }
  #search_page_list_dynamic li:last-child label a{
    padding-bottom: 15px;
  }

  .form-control{
    height: 40px;
    border-radius: 0;
    border: 1px solid #e4e4e4;
    box-shadow: none
  }

  .directory_filter{
    padding: 15px;
    background: whitesmoke;
    margin: 15px auto;
    border: 1px solid #e4e4e4;
  }

  .directory_filter .btn{
    width: 100%;
    border-radius: 0;
    height: 40px;
  }

  .emp_img{
    height: 100px;
    width: 100px;
  }

  .emp_img img{
    height: 100%;
  }

  .directory_table table td{
    vertical-align: middle !important;
  }

  .directory_table{
    margin-bottom: 15px;
  }
