
.navbar { padding:0.8rem 1.5rem; }

.navbar-brand img { height:62px;   transition:.2s;}

.nav-link {
  margin:0 6px;
  font-weight:500;
  color:#10a352;
  transition:.2s;
}
.nav-link:hover,
.nav-link:focus { color:#1B4332 !important; }

/* dropdown */
.dropdown-menu {
  border:none;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.dropdown-item {
  color:#10a352;
  font-weight:500;
}
.dropdown-item:hover {
  background:#E8F5E9;
  color:#1B4332;
}

/* hamburger */
.custom-toggler {
  width:24px;height:18px;
  position:relative;
  border:none;background:none;
}
.custom-toggler span {
  position:absolute;height:3px;width:100%;
  background:#333;transition:.3s;
}
.custom-toggler span:nth-child(1){top:0}
.custom-toggler span:nth-child(2){top:7px}
.custom-toggler span:nth-child(3){top:14px}
.custom-toggler.active span:nth-child(1){transform:rotate(45deg);top:7px;}
.custom-toggler.active span:nth-child(2){opacity:0}
.custom-toggler.active span:nth-child(3){transform:rotate(-45deg);top:7px;}

/* social */
.social-icons a {
  color:#145b8c;
  font-size:20px;
}
.social-icons a:hover { color:#8b4513; }

@media (min-width:992px){
  .nav-item.dropdown:hover .dropdown-menu { display:block; }
}
@media (max-width:991px){
  .navbar-brand img { height:60px; }
}
