
/* -------------header------------------------- */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgb(0 0 0 / 0%);
  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);
}
body {
  font-family:"Rubik", sans-serif;;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
/* ------mobile-------------screen----------- */
@media screen and (max-width: 767px) {
  .container {
    width: 85%;
}
.w--current img{
    width:150px;
    object-fit: contain;
}
nav a:active {
    color: #aaa;
    transform: unset;
  }
}