/*----------------------------------------------------------------------
1. Header - Topbar
2. Header - Navbar
3. Header - Responsive Navbar Style
4. Header - Submenu
6. Header - Mega Menu
7. Header - Fixed
8. Footer
-----------------------------------------------------------------------*/
/*--------------------------------------------------
    [1. Header - Topbar]
----------------------------------------------------*/

/*Top Bar (login, search etc.)
------------------------------------*/
.header .topbar {
  z-index: 9999;
  padding: 12px 0;
  position: relative;
}

@media (max-width: 991px) {
  .header .topbar {
    /* margin-bottom: 20px;*/
  }
}

.header .topbar ul.loginbar {
  margin: 0;
}

.header .topbar ul.loginbar > li {
  display: inline;
  list-style: none;
  position: relative;
  padding-bottom: 15px;
}

.header .topbar ul.loginbar > li > a, 
.header .topbar ul.loginbar > li > a:hover {
  color: #fff;
  font-size: 14px;
}

.header .topbar ul.loginbar li i.fa { 
  display: none;
  opacity: 0.5;
  color: #fff;
}

.header .topbar ul.loginbar li.topbar-devider { 
  top: -1px;
  padding: 0;
  font-size: 8px;
  position: relative;
  margin: 0 9px 0 5px;
  font-family: Tahoma;
  border-right: solid 1px #bbb;
}

.header .topbar span.im-chat-block {
  float: left; 
  position: relative;
  padding-bottom: 10px;
}

.header .topbar ul.im-chat-list {
  left: 10px;
  top: 32px;
  display: none;
  padding: 4px 0;
  padding-left: 0; 
  list-style: none;
  min-width: 130px;
  position: absolute;
  background: #f7f7f7;
  border-radius: 5px !important;
  border: 1px solid #e5e5e5;
}

.header .topbar ul.im-chat-list:after {
  top: -5px;
  width: 0; 
  height: 0;
  left: 8px;
  content: " "; 
  display: block; 
  position: absolute;
  border-bottom: 6px solid #f0f0f0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-left-style: inset; /*FF fixes*/
  border-right-style: inset; /*FF fixes*/
}

.header .topbar ul.im-chat-list li a {
  color: #000;
  display: block;
  font-size: 12px;
  padding: 2px 12px;
  margin-bottom: 1px;
  /*text-transform: uppercase; */
}

.btn.im-chat {
  vertical-align: top;
  color: #222;
  margin: 0 10px 0 10px !important;
  padding: 3px 12px 3px;
  border-color: #bbb;
  background: #f7f7f7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn.im-chat:hover {
  background: #eeeeee;
}


.header .topbar ul.im-chat-list li a:hover {
  background: #ffffff;
  text-decoration: none; 
}

.header .topbar .al-search {
  height: 26px; width: 200px;
  padding-right: 25px;
  background: #fff url('../../img/icon-search.gif') no-repeat 98% center !important;
}

/*--------------------------------------------------
    [2. Header - Navbar]
----------------------------------------------------*/

/*Navbar*/
.header {
  z-index: 99;
  background: #fff;
  position: relative;
  /*border-bottom: solid 2px #fff;*/
}

/*Header Container*/
.header > .container {
  display: table;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .header > .container {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .header > .container {
    margin-bottom: 0;
  }
}

/*Logo*/
.header .logo {
  height: 100%;
  width: 100px;
  display: table-cell;
  vertical-align: middle;
}

.header .logo img {
  z-index: 1;
  margin: 15px 0;
  position: relative;
  margin-left: -5px
}

/*Big Logo Style*/
@media (max-width: 1200px) {
  .header img.big-logo {
    width: 170px;
    height: auto;
  }
}

@media (max-width: 500px) {
  .header img.big-logo {
    width: 130px;
    height: auto;
  }
}

.header img.big-logo {
  transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

/*Navbar Toggle*/
.header .navbar-toggle {
  border-color: #5fb611;
}

@media (max-width: 991px) {
  .header .navbar-toggle {
    margin-right: 0;
    clear: right;
  }
}

.header .navbar-toggle .fa {
  color: #fff;
  font-size: 19px;
}

.header .navbar-toggle,
.header .navbar-toggle:hover, 
.header .navbar-toggle:focus {
  background: #ff7418;
  padding: 6px 10px 2px;
}

.header .navbar-toggle:hover {
  background: #5fb611 !important;
}

/*Navbar Collapse*/
.header .navbar-collapse {
  position: relative;
}

/*Navbar Menu*/
.header .navbar-nav > li > a {
  color: #fff;
  font-size: 16px;
  font-weight:700;
  z-index: 999 !important;
}

.header .navbar-nav > li {
  border: 1px solid white;
  border-bottom: none;
}

.header .navbar-nav > li:hover {
  border: 1px solid #e8e8e8;
  border-bottom: none;
  background: rgb(253,253,253);
  border-radius: 5px 5px 0 0 !important;
}

.header .navbar-nav > .active > a {
  color: #f04e32;
}

@media (max-width: 1200px) {
  .header .navbar-nav > li > a {
    color: #fff;
    font-size: 15px;
    font-weight:400;
    /*bottom: -2px;*/
    padding: 3px 15px 7px 15px;
  }

}

@media (min-width: 992px) {
  .header .navbar-nav {
    float: right;
  } 
}

/*No Topbar*/
.header.no-topbar .navbar-toggle {
  margin-top: 25px;
}

@media (min-width: 992px) {
  .header.no-topbar .navbar-nav {
    padding-top: 36px;
  }
}

/*Navbar Collapse*/
@media (max-width: 991px) {
    .header .navbar-collapse,
  .header .navbar-collapse .container {
    padding-left: 0;
    padding-right: 0;
  }
}


@media (max-width: 768px){
  .topbar .btn-group {
    display: block;
    margin-top: 10px;
    float: right
  }
  .topbar .al-search {
    float: right
  }
  .topbar .header-phone {
    padding-left: 50px;
  }
}

/*--------------------------------------------------
    [3. Header - Responsive Navbar Style]
----------------------------------------------------*/

/*Responsive Navbar*/
@media (max-width: 991px) {
  /*Responsive code for max-width: 991px*/
  .header .navbar-header {
      float: none;
  }
  
  .header .navbar-toggle {
      display: block;
  }
  
  .header .navbar-collapse.collapse {
      display: none !important;
  }
  
  .header .navbar-collapse.collapse.in {
      display: block !important;
    overflow-y: auto !important;
  }
  
  .header .navbar-nav {
      margin: 0 0 5px;
      float: none !important;
  }

  .header .navbar-nav > li {
      float: none;
  }
  
  .header .navbar-nav > li > a {
      padding-top: 30px;
      padding-bottom: 40px;
  }

  .header .dropdown.pull-right {
      float: none !important;
  }

  /*Pull Right*/
  .header .dropdown-menu.pull-right {
      float: none !important;
  }

  /*Dropdown Menu Slide Down Effect*/
  .header .navbar-nav .open .dropdown-menu {
    border: 0;
    float: none;
    width: auto;
    margin-top: 0;
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .header .navbar-nav .open > a,
  .header .navbar-nav .open > a:hover,
  .header .navbar-nav .open > a:focus {
    border-bottom-color: #eee;
  }

  .header .navbar-nav .open .dropdown-menu > li > a,
  .header .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  
  .header .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  
  .header .navbar-nav .open .dropdown-menu > li > a:hover,
  .header .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }

  .header .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }

  .header .navbar-nav .open .dropdown-menu > li > a:hover,
  .header .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #222;
    background-color: transparent;
  }
  
  .header .navbar-nav .open .dropdown-menu > .active > a,
  .header .navbar-nav .open .dropdown-menu > .active > a:hover,
  .header .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  
  .header .navbar-nav .open .dropdown-menu > .disabled > a,
  .header .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .header .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }

  .header .dropdown-menu.no-bottom-space {
    padding-bottom: 0;
  }   

  /*Design for max-width: 991px*/
  .header .navbar-nav > li > a {
    font-size: 14px;
    padding: 9px 10px;
  }

  .header .navbar-nav > li a {
    border-bottom: solid 1px #eee;
  } 

  .header .navbar-nav > li > a:focus {
    background: none;
  }

  .header .navbar-nav > li > a:hover {
    color: #ff7418;
  }

  .header .navbar-nav > .active > a,
  .header .navbar-nav > .active > a:hover,
  .header .navbar-nav > .active > a:focus {
    background: #ff7418;
    color: #fff !important; 
  }

  .header .dropdown .dropdown-submenu > a { 
    font-size: 13px;
    color: #555 !important;
    text-transform: uppercase;
  }
}

@media (min-width: 992px) {   
  /*Navbar Collapse*/
  .header .navbar-collapse {
    padding: 0;
  }

  /*Navbar*/
  .header .container > .navbar-header, 
  .header .container-fluid > .navbar-header, 
  .header .container > .navbar-collapse, 
  .header .container-fluid > .navbar-collapse {
    margin-bottom: -10px;
  }

  .header .navbar-nav {
    position: relative;
  }

  .header .navbar-nav > li > a {
    bottom: -2px;
    position: relative;
    padding: 3px 20px 10px 20px;
    margin-top: 7px;
    /* border-right: 1px solid rgba(255,255,255,0.3)*/
  }

  .header .navbar-nav > li.pull-right > a {
    border-right: none
  }

  .header .navbar-nav > li > a:hover {
    /*bottom: -2px;*/
    position: relative;
    /*border-bottom: solid 2px #ff7418;*/
  }
  
  .header .navbar-nav > li > a,
  .header .navbar-nav > li > a:hover,
  .header .navbar-nav > li > a:focus, 
  .header .navbar-nav > .active > a, 
  .header .navbar-nav > .active > a:hover, 
  .header .navbar-nav > .active > a:focus {
    background: none;
  }

  .header .navbar-nav > .open > a,
  .header .navbar-nav > .open > a:hover,
  .header .navbar-nav > .open > a:focus {
    color: #ff7418;
  }

  .header .navbar-nav > li.active:hover > a {
    background: rgb(251,251,251);
  }

  .header .navbar-nav > li:hover > a {
    background: rgb(251,251,251);
    color: #22467b
  }

  .header .navbar-nav > li.active:hover > a {
    color: #f04e32;
  }

  /*Dropdown Menu*/
  .header .dropdown-menu { 
    padding: 5px 0;
    border: none;
    min-width: 180px;
    margin-top: -1px;
    z-index: 100 !important;
    border-bottom: solid 2px #444; 
    border-top: 1px solid #e8e8e8;
    -webkit-border-radius: 0 5px 5px 5px !important;
    -moz-border-radius: 0 5px 5px 5px !important;
    border-radius: 0 5px 5px 5px !important;
    background: rgb(249,249,249); /* Old browsers */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,249,249,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
  }

  .header .pull-right .dropdown-menu {
    -webkit-border-radius: 5px 0 5px 5px !important;
    -moz-border-radius: 5px 0 5px 5px !important;
    border-radius: 5px 0 5px 5px !important;
  }

  .header .dropdown-menu li a { 
    color: #00305C/*#004B8E*/; 
    font-size: 14px; 
    font-weight: 400; 
    padding: 8px 17px; 
    margin-right: 1px;
    /*border-bottom: solid 1px #eee;*/
  }

  .header .dropdown-menu li a:hover {
    transition: 100ms;
    -moz-transition: 100ms;
    -webkit-transition: 100ms;
    -o-transition: 100ms;
   }

  .header .dropdown-menu .active > a,
  .header .dropdown-menu li > a:hover {
    /*color: #444;*/
    color: #F04E32;
    filter: none;
    /*background: #f3f3f3;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;*/
  }

  .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background: none;
  }

  .header .dropdown-menu li > a:focus {
    background: none;
    filter: none !important;
  }
  /*
  .header .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
  } 

  .header .open > .dropdown-menu {
    display: none;
  }*/

  div.m-last {
    background: #f8f8f8;
  }
}


/*--------------------------------------------------
    [4. Header - Submenu]
----------------------------------------------------*/

/*Dropdown Submenu for BS3
------------------------------------*/
.header .dropdown-submenu { 
   position: relative; 
}

.header .dropdown-submenu > .dropdown-menu { 
  top: 3px; 
  left: 100%; 
  margin-top: -5px; 
  margin-left: 0px; 
}

/*Submenu comes from LEFT side*/
.header .dropdown-submenu > .dropdown-menu.submenu-left {
  left: -100%;
}

.header .dropdown-submenu:hover > .dropdown-menu {  
    display: block;
}

@media (max-width: 991px) {
  .header .dropdown-submenu > .dropdown-menu {  
    display: block;
    margin-left: 15px;
  }
}

.header .dropdown-submenu.pull-left {
  float: none;
}

.header .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

.header .dropdown-menu li [class^="fa-"],
.header .dropdown-menu li [class*=" fa-"] {
  left: -3px;
  width: 1.25em;
  margin-right: 1px;
  position: relative;
  text-align: center;
  display: inline-block;
}
.header .dropdown-menu li [class^="fa-"].fa-lg,
.header .dropdown-menu li [class*=" fa-"].fa-lg {
  /* increased font size for fa-lg */
  width: 1.5625em;
}

/*--------------------------------------------------
    [6. Header - Mega Menu]
----------------------------------------------------*/

/*Mega Menu
------------------------------------*/
.header .mega-menu .nav,
.header .mega-menu .dropup,
.header .mega-menu .dropdown,
.header .mega-menu .collapse {
    position: static;
}

.header .mega-menu .navbar-inner,
.header .mega-menu .container {
    position: relative;
}

.header .mega-menu .dropdown-menu {
    left: auto;
}

.header .mega-menu .dropdown-menu > li {
    display: block;
}

.header .mega-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
}

.header .mega-menu .nav.pull-right .dropdown-menu {
    right: 0;
}

.header .mega-menu .mega-menu-content {
    *zoom: 1;
    padding: 0;
}

.header .mega-menu .mega-menu-content:before,
.header .mega-menu .mega-menu-content:after {
    content: "";
    display: table;
    line-height: 0;
}

.header .mega-menu .mega-menu-content:after {
    clear: both;
}

.header .mega-menu .nav > li > .dropdown-menu:after,
.header .mega-menu .nav > li > .dropdown-menu:before {
    display: none;
}

.header .mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu {
    left: 0;
    right: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
  /*Mega Menu for Two Columns*/
  .header .mega-menu .mega-menu-content.content-two-col {
      min-width: 596px;
  }

  /*Mega Menu for Three Columns*/
  .header .mega-menu .mega-menu-content.content-three-col {
      min-width: 864px;
  }
}

/*Mega Menu Dropdown OPENS from LEFT Side*/
.header .mega-menu .dropdown.mega-menu-left .dropdown-menu {
  left: auto;
  overflow: hidden;
}

/*Equal Height Lists*/
@media (min-width: 992px) {
  .header .mega-menu .equal-height {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
  }

  .header .mega-menu .equal-height-in {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
  }
}

/*Mega Menu Style Effect*/
.header .mega-menu .equal-height-list h3 {
  font-size: 15px;
  font-weight: 400;
  padding: 0 10px 0 13px;
  text-transform: uppercase;
}

/*Space for only Big Resolution*/
@media (min-width: 992px) {
  .header .mega-menu .big-screen-space {
    margin-bottom: 20px;
  }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .header .mega-menu .equal-height-in:first-child {
        margin-left: -1px;
    }
}

/*Mega Menu Content*/
@media (min-width: 992px) {
    .header .mega-menu .equal-height-in {
        padding: 20px 0;
        border-left: 1px solid #eee;
    }

    .header .mega-menu .equal-height-in:first-child {
        border-left: none;
        /*margin-left: -1px;
        border-right: 1px solid rgba(255,255,255,0);*/
    }

    .header .mega-menu .equal-height-list {
      width: 100%;
    }

    .header .mega-menu .equal-height-list li a {
        display: block;
        margin-bottom: 1px;
        position: relative;
        border-bottom: none;
        padding: 5px 10px 5px 15px;
    }

    .header .mega-menu .equal-height-list a:hover {
      text-decoration: none;
    }
    
    /*Dropdown Arrow Icons*/
    .header .mega-menu .mega-menu-content li a {
      padding: 5px 10px 5px 30px;
    }

    .header .mega-menu .mega-menu-content li a:after {
        top: 7px;
        left: 15px;
        font-size: 11px;
        content: "\f105";
        position: absolute;
        font-weight: normal;
        display: inline-block;
        font-family: FontAwesome;
    }

    /*Dropdown Arrow Icons Disable class*/
    .header .mega-menu .disable-icons li a {
      padding: 5px 10px 5px 15px;
    }

    .header .mega-menu .disable-icons li a:after {
      display: none;
    }
}

/*Equal Hight List Style*/
@media (max-width: 991px) {
    /*Equal Height List Style*/
    .header .mega-menu .equal-height-list h3 { 
    color: #555;
    margin: 0 0 5px;
    font-size: 13px; 
    font-weight: 700; 
    padding: 6px 25px 5px; 
    border-bottom: solid 1px #eee;
  }

  .header .mega-menu .equal-height-list li a {
    color: #444;
    display: block;
    font-size: 13px; 
    font-weight: 400;
    margin-left: 15px;
    padding: 6px 25px; 
    border-bottom: solid 1px #eee;
  }

  .header .mega-menu .equal-height-list > h3.active,
  .header .mega-menu .equal-height-list > .active > a,
  .header .mega-menu .equal-height-list > .active > a:hover,
  .header .mega-menu .equal-height-list > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }

  .header .mega-menu .equal-height-list li a:hover {
    color: #222;
    text-decoration: none;
  }
}

/*--------------------------------------------------
    [7. Header - Fixed]
----------------------------------------------------*/

/*Header*/
.header.header-fixed {
  position: fixed;
  width:100%;
  top:0;
  padding-top: 6px;
  padding-bottom: 0px;
  border-bottom: 1px solid rgba(1, 67, 125, 0.75);
  box-shadow: 10px 0 30px rgba(0, 85, 216, 0.1);
}

/*--------------------------------------------------
    [8. Footer]
----------------------------------------------------*/
.footer-wrapper .footer {
  padding: 20px 0 5px;  
  background: #002050;
}

.footer-wrapper .footer .headline {
  margin-top: 5px;
  margin-bottom: 20px
}

.footer-wrapper .footer p {
  color: #eee;
}

.footer-wrapper .footer h2 {
  color: #eee;
  font-size: 18px;
  font-weight: 200;
}

.footer a,
.copyright a,
.footer a:hover,
.copyright a:hover {
  color: #eee;
}

/*Link List*/
.footer-wrapper .link-list li {
  border-top: solid 1px #353535;
}

.footer-wrapper address,
.footer-wrapper .link-list a,
.footer-wrapper .link-list i {
  color: #eee;
}

.footer-wrapper address {
  display: inline
  /*line-height: 23px;*/
}

/*Copyright*/
.footer-wrapper .copyright {
  background: #222;
  border-top: none;
  padding: 0;
}

.footer-wrapper .copyright p {
  color: #aaa;
  margin: 0.8em 0 0.7em;
  font-size: 13px;
  line-height: 1.4
}

.footer-wrapper .copyright a {
  margin: 0 2px;
}

.footer-wrapper .footer-socials {
  margin-top: 12px;
  margin-left: 0;
  /*text-align: center;*/
}

.footer-wrapper .footer-socials li {
  padding: 0 4px;
}

.footer-wrapper .footer-socials li a {
  font-size: 30px;
}

.footer-wrapper .footer-socials li i {
  color: #fff;
  font-size: 30px;
  width: 43px;
  height: 43px;
  line-height: 45px;
  margin: 0 0 12px 0px;
  padding-right: 1px;
  border: none
}

@media (max-width: 991px) {
  .footer-wrapper .copyright,
  .footer-wrapper .footer-socials {
    text-align: left;
  }
}

/*Link List*/
.link-list li {
  border-top: solid 1px #353535;
}

.link-list li:first-child {
  border-top: none !important;
}

.link-list li:first-child a {
  padding-top: 0
}

.link-list a {
  color: #eee;
  font-size: 14px;
  padding: 6px 0px;
  display: inline-block;
}

.link-list li i {
  color: #bbb;
  float: right;
  margin-top: 10px;
}

/*Latest List*/
.latest-list li {
  padding: 8px 0;
  border-top: 1px solid #353535;
  font-size: 85%;
  margin-bottom: 2px;
}

.latest-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.latest-list a li {
  color: #eee;
}

.latest-list small {
  color: #999;
  display: block;
}

.latest-list a:hover {
  text-decoration: none
}

/* mega menu */

.header .mega-menu .equal-height-in {
    padding: 0px 0px;
    
.header .mega-menu-content .container {
    padding: 0 0 0 17px;
}

.header .mega-menu .mega-menu-content {
    padding: 0px;
}

}

.mega-menu-img {
  text-align: center
}

.mega-menu-img a: hover{
  text-decoration: none
}

.mega-menu-img h5 {
  font-weight: 700;
}

.mega-menu-img p {
  line-height: 1.2;
  margin-top: 10px;
  font-weight: 400;
}

.mega-menu div.equal-height-in a {
  border-bottom: 0;
  display: inline-block
}

.mega-menu a b {
  color: #333333;
  font-weight: 400
  /*color: #182E5F*/
}

.mega-menu a strong {
  color: #00305C;
  /*color: #182E5F*/
}

.mega-menu a:hover strong {
  color: #F04E32;
  /*color: #182E5F*/
}

.mega-menu a:hover b {
  color: #F04E32;
  transition: 100ms;
  -moz-transition: 100ms;
  -webkit-transition: 100ms;
  -o-transition: 100ms;
}

.mega-menu a:hover {
  text-decoration: none
}

.header .dropdown-menu li a {
  border-bottom: none
}

.mega-menu .m-wide { border-radius: 0 0 5px 5px !important }
div.m-last { background: #f4f4f4 }
.mega-menu .m-wide a { display: block; width: 100% }
.header a.m-last, .header .m-last a { border-radius: 0 0 5px 5px !important }