.top-menu {
  position: fixed;
  top: -40px;
}

body {

}

.has__second_menu {
  margin-top: 80px;
}

.header.fixed .subtitle {
  display: none;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.1);
    height: 40px;
    background: #fff;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
    animation: header .2s forwards;
    -webkit-animation: header .2s forwards;
}
@keyframes header {
    0% {
        top: -40px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes header {
    0% {
        top: -40px;
    }
    100% {
        top: 0;
    }
}
.header.fixed .top-logo {
    margin: 0 auto;
    width: 260px;
    height: 40px;
}


.fixed .main-menu {
    visibility: hidden;
    position: fixed;
    width: 100%;
    top: -60px;
   -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0px 1px 5px rgba(0, 0, 0, 0.1);    
    z-index: -1;  
}

.fixed .main-menu.active {
  visibility: visible;
  top: 40px;
}

.header.fixed .top-logo img {
    padding: 0px 0;
    margin-top: 8px;
    height: 24px;
}
