
/* -------------header------------------------- */
header {
  position: relative;
  top: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 1);
  transition: background-color 0.5s, padding 1s;
  z-index: 99;
}

header.sticky {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px 0;
  position: fixed;
}
nav {
  display: flex;
  justify-content: space-between;
  padding: 0;
  text-align: center;
  align-items: center;
}
.w--current img{
    width:230px;
    object-fit: contain;
}
nav a:link,
nav a:visited {
  color: #fff;
  font-size: 0.9em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
}

nav a:hover,
nav a:active {
  color: #aaa;
  transform: scale(1.01);
}

/* ------mobile-------------screen----------- */
@media screen and (max-width: 767px) {

.w--current img{
    width:150px;
    object-fit: contain;
}
nav a:active {
    color: #aaa;
    transform: unset;
  }
}