.navigation-clean {
  color: white;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}

.navigation-clean .navbar-brand {
  font-weight: bold;
  color: inherit;
}

.navbar-light .navbar-toggler-icon {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(329deg) brightness(107%) contrast(101%);
}

.navigation-clean .navbar-brand:hover {
  color: rgba(255,255,255,0.8);
}

.navigation-clean .navbar-toggler {
  border-color: #ddd;
}

.navigation-clean .navbar-toggler:hover, .navigation-clean .navbar-toggler:focus {
  background: none;
}

.navigation-clean .navbar-toggler {
  color: #888;
}

.navigation-clean.navbar-light .navbar-nav .nav-link.active, .navigation-clean.navbar-light .navbar-nav .nav-link.active:focus, .navigation-clean.navbar-light .navbar-nav .nav-link.active:hover {
  box-shadow: none;
  background: none;
  pointer-events: none;
}

.navigation-clean.navbar .navbar-nav .nav-link {
  /*padding-left: 18px;*/
  /*padding-right: 18px;*/
}

.navigation-clean.navbar-light .navbar-nav .nav-link {
  color: white;
  display: inline-block;
  transition: .3s ease;
}

.navigation-clean.navbar-light .navbar-nav .nav-link:focus, .navigation-clean.navbar-light .navbar-nav .nav-link:hover {
  color: #004d53 !important;
  background-color: transparent;
  transition: .3s ease;
}

.navigation-clean .navbar-nav > li > .dropdown-menu {
  margin-top: -5px;
  box-shadow: none;
  background-color: #fff;
  border-radius: 2px;
}

.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item {
  line-height: 2;
  color: #37434d;
}

.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item:hover {
  background: #eee;
  color: inherit;
}

.nav-item .nav-link.letoltes {
  font-size: 15pt;
  font-weight: bold;
  background: #004d53;
  color: white;
  border: 2px solid #004d53;
  border-radius: 10px;
  transition: .3s ease!important;
  padding: 2px 5px!important;
  margin: 0 10px;
}

.nav-item .nav-link.letoltes:hover {
  background: transparent;
  color: #004d53!important;
  transition: .3s ease;
}

.nav-item {
  position: relative;
  margin: 0 20px;
}

.animate-link:after, .active-link:after {
  content: '';
  width: 0;
  height: 1px;
  transition: width .4s;
  background: #004d53;
  position: absolute;
  bottom: 0;
  left: 0;
}

.animate-link:before, .active-link:before {
  content: '';
  width: 0;
  height: 1px;
  transition: width .4s;
  background: #004d53;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 992px) {
  .animate-link:hover:after, .animate-link:hover:before, .active-link:after, .active-link:before {
    width: 50%;
  }
}

