/*--------------------------------------------------------------
				TOP MENU BAR
--------------------------------------------------------------*/

#topbar {
  background: rgb(0,135,123);
  height: 25px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  font-weight: 100;
}

#topbar .contact-info a {
  line-height: 1;
  color: white;
}

#topbar .contact-info a:hover {
  color:  rgb(0,0,0);
}

#topbar .contact-info i {
  color: white;
  padding: 4px;
}

#topbar .contact-info .fa-phone {
  color: white;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a {
  color: white;
  padding: 4px 12px;

  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #50d8af;
}


/*--------------------------------------------------------------
				HEADER
--------------------------------------------------------------*/

#header {
  padding: 0px 0;
  height: 71px;
  transition: all 0.5s;
  z-index: 997;
  background:rgba(101, 170, 184, 0.79);  /*url("../img/MenuBgr.jpg");*/
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.09);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
}


#header #logo img {
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
		Navigation Menu
--------------------------------------------------------------*/

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/*---------------------------------------
		NAV MENU ARROWS
-----------------------------------------*/

.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}
/*---------------------------------------
		NAV MENU CONTAINER
-----------------------------------------*/

#nav-menu-container {
  float: center;
  /*margin: 100;*/
}
/*---------------------------------------
		NAV MENU STYLING
-----------------------------------------*/

.nav-menu a {
  padding: 25px 8px;
  text-decoration: none;
  display: inline-block;
  color: black;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
  color: #00877C;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #50d8af;
}

.nav-menu ul ul {
  margin: 0;
}

/*---------------------------------------
		MOBILE NAV TOGGLE
-----------------------------------------*/

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 8px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
}

/*---------------------------------------
		MOBILE NAV STYLING
-----------------------------------------*/
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 10px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #50d8af;
}

#mobile-nav ul .menu-item-active {
  color: #50d8af;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/*---------------------------------------
		MOBILE NAV BODY CLASSES
-----------------------------------------*/

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
			MENU RESPONSIVE
----------------------------------------------------------------*/

@media (max-width: 768px) {
 
  #header {
    padding: 0px 0;
    height: 45px;
  }

  #header #logo h1 {
    font-size: 34px;
  }

  #header #logo img {
    max-height: 40px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}

