/* Menu  © admotion*/

#menu-container {  z-index: 1000; background: #034991; width: 100%; padding: 25px 0; position: fixed; top: 0; display: none; }

#menu { display: block; width: 90%; margin: 0 auto;}
#menu ul {margin: 0;}
#menu li {padding: 0px 0 40px;}
#menu li a {color: #fff; font-size: 28px;}
#menu li a:hover {color: #b1c800; }
#menu li.active a {color: #b1c800; }


    



/* Hamburger Menu */

#menu-small { z-index: 99999;
  width: 40px;
  height: 27px; margin-top: 10px;
  position: relative;
   float: right;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#menu-small span {
  display: block;
  position: absolute;
  height: 3px;
  width: 40px;
  background: #034991;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.menu-scroll {margin-top: 5px !important; }


#menu-small span:nth-child(1) {
  top: 0px;
}

#menu-small span:nth-child(2),#menu-small span:nth-child(3) {
  top: 11px;
}

#menu-small span:nth-child(4) {
  top: 22px;
}

#menu-small.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 20px;
}

#menu-small.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-small.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu-small.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 20px;
}


#menu-small.open span {
  background: #fff;
}



@media(min-width:786px) {
 #menu-small::before { content: 'Menü'; color: #034991; font-size: 30px; font-weight: 400; margin-left: -90px;}
#menu { display: flex; justify-content: center; width: 90%;}



}
 
@media(min-width:1250px) {

    #menu li {padding: 0px 40px 0; float: left; border-right: 2px solid #b1c800; }
    #menu li:first-child { padding: 0px 40px 0px 0px; }
 #menu-small.open::before { content: ''; }
 #menu-small.open.menu-scroll { margin-top: 10px !important; }

    #menu-container { padding: 28px 0;}
    #menu-small { margin-top: 10px;}
}

    
    


