/*Navbar*/
.white-bg-menu {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9998;
    background-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    z-index: 9999;
    justify-content: space-between;
    max-width: 1250px;
    left: 0%;
    right: 0%;
    margin:auto;
    background-color:transparent;
}

.left-header {
    display: flex;
    align-items: center;
}

nav img, img.custom-logo {
    height: 70px!important;
    width: auto!important;
}

.social-icon {
    text-align: center;
    padding-top: 10px;
}

.social-icon ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon ul li a {
    margin: 1em;
    margin-left: 0.4em;
    margin-right: 0.4em;
    color: white;
}

.social-icon img, .social-icon a i {
    height: 1.7rem;
    font-size: 1.7rem;
    width: auto;
}


nav ul a {
    color: white;
    font-weight: 600;
	font-size: 18px;
    text-decoration: none;
}

.pc-nav ul a {
	margin-left:27px;
	margin-right:27px;
}


nav ul {
    display: flex;
}


nav ul li {
    padding-left: 1.2em;
    list-style: none;
}


.m-nav {
    display: none;
    top: 100px;
    width: 100%;
    background: white;
    padding: 1em;
    min-height: 100vh;
    top: 0;
    z-index: 3;
}


.m-nav ul {
    display: block;
}


.m-nav ul a {
    color: black;
    font-size: 2rem;
    margin-bottom: 1em;
}


.m-nav.on {
    display: flex;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
}


.m-nav.on::-webkit-scrollbar {
    display: none;
  }
 
  /* Hide scrollbar for IE, Edge and Firefox */
  .m-nav.on {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }


.tog {
    display: none;
}


.toggle {
    cursor: pointer;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background: white;
    z-index: 9;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.line-toggle {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    background: black;
    border-radius: 5px;
    transition: all .6s;
}


.line-toggle:first-child {
    transform: translateY(-5px) translateX(-2px);
    width: 20px;
    transition-delay: 0s;
}


.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
}


.line-toggle:last-child {
    transform: translateY(5px) translateX(-2px);
    width: 20px;
    transition-delay: 0s;
}


.toggle.activate .line-toggle:first-child {
    background: black;
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 40px;
    height: 2px;
    transition-delay: .1s;
}


.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}


.toggle.activate .line-toggle:last-child {
    background: black;
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 40px;
    height: 2px;
    transition-delay: .1s;
}


.right-menu {
    align-items: center;
    display: flex;
}


.right-menu * {
    padding-right: 0.5em;
}


section.pc-nav * {
    padding: 0;
}


section.pc-nav li {
    padding-right: 1em;
}


section.kontakt a.white-btn {
    margin-top: 0;
}


section.kontakt {
    padding-right: 1em;
}


section.logoo {
    display: flex;
    align-items: center;
}
/*end navbar */


@media only screen and (max-width: 991px) {
    .tog {
        display: block;
    }
    .pc-nav {
        display: none;
    }


    nav.pc {
        justify-content: space-between;
    }


    .m-nav ul {padding-left: 0;}
    .m-nav ul li {padding-left: 0;}
    .m-nav.on a {
        display: inline-block;
      }

      nav ul {
        display: flex;
        align-items: center;
    }

    nav ul li {
        padding-left: 0.2em;
        list-style: none;
    }

    a.cart-icon.woocommerce-cart-icon {
        display: flex;
    }
	
	nav img, img.custom-logo {
    height: 60px!important;
    width: auto!important;
}




}

