header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px;
  transition: 0.6s;
}

header.sticky {
  background: #e8deff;
  padding: 0px 100px;
  box-shadow: 0px 1px 10px #999;
}

header .brand {
  color: #9687b8;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}

header .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .menu a {
  color: #9687b8;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  margin: 0 10px;
  padding: 18px 10px;
  transition: 0.3s;
  transition-property: color, background;
  font-family: "JostSemiBold";
}

header .menu a:hover {
  color: #9687b8;
  background: #ece4ff;
  border-bottom: solid #c2a8ff;
}

header .btn {
  color: #9687b8;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

@media (max-width: 1060px) {
  header .btn {
    padding: 10px;
    display: block;
  }

  .active .btn {
    width: 90%;
    padding: 15px 0;
    border-bottom: 1px solid #d7c6ff;
  }

  header .menu {
    position: fixed;
    background: #e8deff;
    flex-direction: column;
    min-width: 300px;
    top: 0;
    right: -100%;
    transition: 0.5s;
    transition-property: right;
    padding-bottom: 100%;
  }

  header .menu.active {
    right: 0;
  }

  header .menu .close-btn {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: left;
  }

  header .menu a {
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #d7c6ff;
    font-weight: 400;
    padding: 15px 0;
    border-radius:0;
    width: 90%;
    text-align: center;
  }

  header .menu a:hover {
    color: #9687b8;
    background: #ece4ff;
    border-left: #9687b8;
    border-bottom: 1px solid #d7c6ff;
  }

  #btnLogin {
    margin-top: 30px;
    margin-left: 0
  }
}


/* media queries   */

@media (max-width: 768px) {
  header,
  header.sticky {
    padding: 0px 20px;
  }
}

@media (max-width: 450px) {
  header,
  header.sticky {
    padding: 0px 20px;
  }
}
