#mainNav.navbar {
  background-color: rgba(255,255,255,0.60);
  box-shadow: 0px 15px 10px -15px #111;
  z-index: 99;
}
#mainNav.navbar-shrink {
  background-color: rgba(255,255,255,1);
  padding: 0;
}
#mainNav .nav-link {
  transition: none;
  text-transform: uppercase;
  color: #000;
  font-size: 1rem;
  font-weight: normal;
  padding: 1.3rem;
}
#mainNav .nav-link:hover,
#mainNav .nav-link:hover .svg,
#mainNav .nav-item.active .nav-link {
  color: #F2762E;
  transform: scale(1);
  border-radius: 3px;
}
.sticky-top {
  position: static;
}
@media (min-width: 992px) {
  .sticky-top {
  position: fixed;
  top: 0;
  width: 100%;
  }
}

/* -------------------- Navbar Toggler BEGINN -------------------- */

.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  position: relative;
}
.line {
  position: absolute;
  left: 0px;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 8px;
  transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.45s;
}
.top {
  top: 18%;
}
.middle {
  top: 48%;
}
.bottom {
  top: 78%;
}
.navbar-toggler-icon.close .top {
  transform: rotate(45deg);
  top: 48%;
}
.navbar-toggler-icon.close .middle, .navbar-toggler-icon.close .bottom {
  transform: rotate(-45deg);
  top: 48%;
}

/* -------------------- Navbar Toggler ENDE -------------------- */



/* -------------------- Dropdown Animation Fade BEGINN -------------------- */

@media (min-width: 992px) {
.dropdown-menu-end {
    position: absolute;
    margin-top: 0rem;
    left: auto;
    right: 0;
}
.dropdown-menu-start {
    position: absolute;
    margin-top: 0rem;
    left: auto;
    right: 0;
} 
}

@media (min-width: 1200px) {}
	
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* -------------------- Dropdown Animation Fade ENDE -------------------- */



/* -------------------- Dropdown BEGINN -------------------- */

.dropdown-menu {
  border: none;
  border-radius: 0px;
  background-image: none;
  box-shadow: inset 1px 1px rgb(255 255 255 / 20%), inset -1px -1px rgb(255 255 255 / 10%), 1px 3px 24px -1px rgb(0 0 0 / 15%);
  background-color: rgba(0, 0, 0, 0.80);
  min-width: 16rem;
  padding: 0;
}
.dropdown-menu a {
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  padding: 1rem 2rem;
  font-weight: normal;
  text-align: left;
}
.dropdown-menu > li:not(:last-child) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.50);
}
.dropdown-menu a:hover {
  color: #fff;
  background-color: #F2762E !important;
}
/*Dropdown Hover muss im Media min 992px stehen, damit sich die Navigation auf mobil durch klicken wieder schließen lässt!*/
@media (min-width: 992px) {
  li.dropdown:hover .dropdown-menu {
    opacity: 1;
  }
  li.dropdown:hover .dropdown-menu:not(.megasubmenu) {
    display: block;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
#mainNav.fixed-top {
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* -------------------- Dropdown ENDE -------------------- */



/* -------------------- Megamenu BEGINN -------------------- */

.megasubmenu > a {
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  padding: 1rem 2rem;
  font-weight: normal;
}
@media all and (min-width: 992px) {
  .dropdown-menu .dropdown-toggle::after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
  }
    
  /*Wird benötigt wenn das dropdown-menu Fenster rechtsbündig ist*/
  .dropdown-menu.dropdown-menu-end .dropdown-toggle::after {
    position: absolute;
    left: 15px;
    top: 22px;
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent;
    border-left: 0;
  }
    
  .megasubmenu {
    left: 100%;
    top: 0;
    min-height: 100%;
    min-width: 13rem;
  }
  .megasubmenu-end {
    right: 100%;
    left: auto;
    text-align: right !important;
  }
  .dropdown-menu > li:hover .megasubmenu {
    display: block;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .megasubmenu a:not(:last-child) {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.50);
  }
}	

/* -------------------- Megamenu ENDE -------------------- */

