@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
  font-weight: normal;
  font-style: normal
}

nav{
  overflow: hidden;
  width: 100%;
  height: 70px;
  display: flex;
  position:fixed;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  z-index: 1000;
}

nav a{
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 145px;
  margin: 10px;
}

nav div{
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 145px;
  margin: 10px;
}

.navlogo{            
  margin-top: 25px;
}

nav a:link{
  color:#1B1B1B;
}
nav a:visited{
  color:#1B1B1B;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.fa-bars:before {
  content: "\f0c9"
}

.topnav .icon {
  display: none;
}

.responsive-navlogo{
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(.navlogo) {display: none;}
  .topnav div.icon {
    display: contents;
  }
  .fa.fa-bars{
    position: absolute;
    left:-webkit-calc(100% - 35px);
    top: 24px;
  }
  .topnav{
    transition: all 0.4s ease-in-out;
  }

  .topnav.responsive a {
    display:block;
    width: 300px;
  }
  .topnav.responsive{
    display: grid;
    align-items:start;
    font-size: 30px;
    height: 450px;
    transition: all 0.7s ease-in-out;
  }

  #navlogo.navlogo.responsive{
    display: none;
  }
  #responsive-navlogo.responsive-navlogo.responsive{
    display: block;
  }
  #nav-ham.fa.fa-bars.responsive{
    top: 24px;
  }

  .fix{
    margin-top:-25px;
  }
}

@keyframes unroll{
  from{height: 70px;}
  to{height: 450px;}
}

#navplaceholder{
  width: 100%;
  height: 70px;
}