@import url("https://fonts.googleapis.com/css?family=Titillium+Web:400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,500;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@400;600;800&display=swap");
.stickytop {
  position: sticky;
  top: 0;
  z-index: 1000000000;
}

.navbar-container {
  padding: 0;
  border-radius: 0px;
}

.menu-iconen {
  color: #fff;
}

.menu-iconen :hover {
  color: #0c5778;
}

nav ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
}

nav ul > li {
  list-style-type: none;
}

nav {
  transition: all ease-in-out 300ms;
}

.nav-open {
  display: block;
  transform: scaleY(1);
  transition: all ease-in-out 300ms;
  transform-origin: 0 0;
  height: 100%;
}

.nav-item {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.1em;
  padding-right: 14px;
}

.nav-item:last-child {
  border-right: 0;
}

.nav-item a {
  font-weight: 400;
  color: white;
}

.nav-item a:hover {
  color: #0c5778;
  text-decoration: none;
}

.wit-transparant {
  background-color: rgba(255, 255, 255, 0.8);
}

.menu-item-bullet {
  color: white;
}

.actievelink a {
  color: #fff;
  font-weight: 700;
}

.fa-dot-circle {
  font-size: 11px;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  z-index: 10000;
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

.dropdown-menu {
  background-color: rgba(12, 87, 120, 0.9);
  color: white;
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: 0;
  transition: all ease-in-out 300ms;
  font-size: 1em;
}

.dropdown-item {
  padding: 10px 30px;
  color: white !important;
}

.dropdown-item:hover {
  background-color: rgba(12, 87, 120, 0.9);
}

/*
Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
*/
/* Small devices (landscape phones, 576px and up)*/
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .navbar-nav {
    min-width: 220px !important;
  }
  .navbar-nav > li {
    padding-bottom: 15px !important;
    padding-top: 15px !important;
    border-bottom: 1px solid white;
    transition: all ease-in-out 300ms;
  }
  .navbar-nav > li:last-child {
    border: 0;
  }
}

/* Medium devices (tablets, 1024px and up) */
/*# sourceMappingURL=menu.css.map */