.menu-header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 2px;
    left: 0;
    right: 0;
    background: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.white-header{background:#fff!important;}

.white-header .menu .main-menu li a {
    color: #000!important;
}

@media (max-width: 768px) {
.white-header .menu-toggle span{ background: #fff!important;}
.white-header .menu .menu-toggle {
    background: #000!important;
  }
 .menu-header .menu .main-menu li a {
    background: #f9f9f9!important;
  }
  
}
  
  
  
  
  

.menu-header .logo {
    width: 250px;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-header .logo h1 {
    font-weight: normal;
}

.menu-header .logo h1 a {
    color: #ffffff;
}

.menu-header .menu {
    display: flex;
    flex: 1;
    height: 100%;
    justify-content: right;
    align-items: center;
    margin-right: 35px; 
    width: 100%;
}

.menu-header .menu .main-menu {
    margin: 0;
    padding-left: 0;
    width: auto;
    height: 100%;
    display: inline;
    float: right;
    justify-content: right;
}

.menu-header .menu .main-menu li {
    float: left;
    display: inline;
    height: auto;
}

.menu-header .menu .main-menu li a {
    display: block;
    font-size: 15px;
    padding: 0 15px;
    height: 100%;
    line-height: 70px;
    text-transform: uppercase;
    transition: 0.1s ease;
    color: #fff;
    text-decoration: none;
}

.menu-header .menu .menu-toggle {
    display: none;
    width: 70px;
    height: 75px;
    position: absolute;
    right: 0;
    cursor: pointer;
    z-index: 1;
    bottom: 0px;
}

.menu-header .menu .menu-toggle span {
    position: absolute;
    display: block;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-header .menu .menu-toggle span:nth-child(1) {
    top: 35%;
}

.menu-header .menu .menu-toggle span:nth-child(3) {
    top: 65%;
}

.menu-header .menu .menu-toggle.active {
    background: #f96702;
}

.menu-header .menu .menu-toggle.active span:nth-child(1) {
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-header .menu .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-header .menu .menu-toggle.active span:nth-child(3) {
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-header .social-menu {
    width: auto;
    display: block;
    margin: 0 20px 0 0;
    padding: 0;
}

.menu-header .social-menu li {
    display: inline;
    margin: 0 10px;
}

.menu-header .social-menu li a i {
    font-size: 18px;
}

.shrink {
    height: 60px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.shrink .menu .main-menu li a {
    font-size: 14px;
    line-height: 60px;
    transition: 0.2s ease;
}

.shrink .social-menu li a i {
    font-size: 15px;
    transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 1140px) {
    .menu-header .social-menu {
        display: none;
    }
}
@media (max-width: 768px) {
	.menu-header .menu .main-menu li{border-bottom:1px solid #ccc;}
	.menu-header .menu .main-menu li:last-child{border-bottom:0;}
.menu-header .menu .main-menu li a {
    display: block;
    font-size: 15px;
    padding: 0 15px;
    height: 100%;
    line-height: 60px!important;
    text-transform: uppercase;
    transition: 0.1s ease;
    color: #000;
    text-decoration: none;
}
}

@media (max-width: 980px) {
    .menu-header .menu {
        transition: all 0.2s linear;
    }

    .menu-header .menu .main-menu {
        margin: 0;
        padding-left: 0;
        width: 0;
        position: absolute;
        top: 70px;
        right: 0;
        opacity: 0;
        height: 100%;
        display: block;
        background: #ffffff;
        transition: all 0.2s linear;
    }

    .menu-header .menu .main-menu li {
        width: 100%;
        background: #ffffff;
    }

    .menu-header .menu .menu-active {
        width: 300px;
        opacity: 1;
        transition: all 0.2s linear;
    }

    .menu-header .menu .menu-toggle {
        display: block;
    }

    .shrink .menu .main-menu {
        top: 60px;
    }

    .shrink .menu .menu-toggle {
        width: 60px;
        height: 60px;
        display: block;
    }
}

















