.header {
  margin: 15px 0px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo .logo__icon {
  margin-right: 20px;
  width: 16px;
  height: 16px;
}
.header__logo .logo__name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__navigation .nav__link {
  margin-right: 35px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.header__navigation .nav__link:last-child {
  margin-right: 0;
}
.header__navigation .nav__link:hover {
  scale: 1.05;
  opacity: 1;
}
.header__navigation .border-fill {
  margin-right: 10px;
  padding: 15px 25px;
  opacity: 1;
  font-weight: 700;
  display: inline-block;
  border-radius: 15px;
}
.header__navigation .border-fill-purple {
  background: #362447;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.header__navigation .border-fill-purple:hover {
  background: #801AE5;
  scale: 1;
}