.p-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 11px 28px 0 28px;
  background-color: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  z-index: 10;
}

.p-header__inner {
  display: flex;
  align-items: center;
}

.p-header__logo {
  margin: 0;
  line-height: 1;
  border: none;
}

.p-header__logo-link {
  display: flex;
}

.p-header__logo-img {
  width: 150px;
  height: auto;
}

.p-header__nav {
  margin-left: 32px;
  margin-right: auto;
}

.p-header__nav-list {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.p-header__nav-link {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: bold;
  color: #1c1c1c;
  text-decoration: none;
  margin-top: 4px;
  border-bottom: 4px solid transparent;
}

.p-header__nav-link:hover {
  color: #03a9f4;
  border-bottom-color: #03a9f4;
}

.p-header__nav-link.is-current {
  color: #03a9f4;
}

.p-header__btns {
  display: flex;
  gap: 20px;
}

.p-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 32px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.register {
  border: 1px solid #03a9f4;
  color: #03a9f4;
}

.login {
  background: #03a9f4;
  color: #ffffff;
}

.p-header__btn:hover {
  opacity: 0.8;
}
