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

[-----*** TABLE OF CONTENT ***-----]

1. Header - Topbar
2. Header - Navbar
3. Header - Responsive Navbar Style
4. Header - Submenu
5. Header - Search
6. Header - Mega Menu
7. Header - Dark Option
8. Header - Fixed
-----------------------------------------------------------------------*/

/*--------------------------------------------------
    [1. Header - Topbar]
----------------------------------------------------*/

/*Top Bar (login, search etc.)
------------------------------------*/
.header .topbar {
  z-index: 12;
  position: absolute;
  float: right;
  top: 0;
  right: 11px;
}

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

.header .topbar ul.loginbar {
  margin: 0;
  color: #fff !important ;
  font-weight: bold;
  font-size: 13px;
  line-height: 24px;
  padding-right: 20px;
  background-color: #ea5644;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

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

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

.header .topbar ul.loginbar li i.fa {
  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 #fff;
}

/*languages*/
.header .topbar ul.languages {
  top: 25px;
  left: -5px;
  display: none;
  padding: 4px 0;
  padding-left: 0;
  list-style: none;
  min-width: 100px;
  position: absolute;
  background: #ea5644;
}

.header .topbar li:hover ul.languages {
  display: block;
}

.header .topbar ul.languages:after {
  top: -4px;
  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.languages li a {
  color: #fff;
  display: block;
  font-size: 10px;
  padding: 2px 12px;
  margin-bottom: 1px;
  text-transform: uppercase;
}

.header .topbar ul.languages li.active a i {
  color: #fff;
  float: right;
  margin-top: 2px;
}

.header .topbar ul.languages li a:hover,
.header .topbar ul.languages li.active a {
  background: #ea5644;
}

.header .topbar ul.languages li a:hover {
  text-decoration: none;
}

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

/*Navbar*/
.header {
  z-index: 99;
  background: #202632;
  position: relative;
}

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

.header .logo img {
  z-index: 1;
  /* margin: 20px 0; */
  position: relative;
}

/*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;
}
