.logo
{
  width:auto;
  display: inline-block;
}

.logo a
{
  display: inline-block;
}
.logo img
{
  width: 100%;
  max-width: 200px;
}

.menu-list
{
  width: auto;
  float: right;
  display: block;
  margin-top: 7px;
}

nav.products .pro-nav, .site-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.top {
  width: 100%;
  display: inline-block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 4px 25px #0000001a;
}
@media (min-width: 768px) {
  .top:before, .top:after {
    content: "";
    display: table;
  }
  .top:after {
    clear: both;
  }
}


@media (max-width: 767px) {
  .mobile_bg {
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 85px;
    bottom: 0;
    overflow-y: auto;
    display: none;
    z-index: 1;
    border-top: 1px solid #f1f1f1;
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .mobile_bg {
    display: block !important;
  }
}





@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}

.navbtn {
  margin: auto;
  width: 35px;
  height: 17px;
  cursor: pointer;
  margin-top: 7px;
}

.bar,
.bar:after,
.bar:before {
  width: 27px;
  height: 3px;
}

.bar {
  position: relative;
  transform: translateY(7px);
  background: #98A3B1;
  transition: all 0ms 300ms;
}
.bar.animate {
  background: rgba(255, 255, 255, 0);
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  background: #98A3B1;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);

}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: #98A3B1;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  z-index: 10000;
  transition: all 0.5s ease-in-out;
}


.main-nav
{
  width: auto;
  float: left;
  display: block;
}

.main-nav ul li
{
  float: left;
  display: block;
}

.main-nav ul li a
{
  
}

.login
{
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #98a3b1;
  padding: 0 16px;
  margin-right: 16px;
  letter-spacing: 1px;
}

.sign-up
{
    padding: 12px 48px;
    background: #01BEE9;
    border-radius: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in;
}