@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 31px;
  width: calc(100vw - 72px);
  height: 80px;
  padding-block: 12px 10.5px;
  border-bottom: 1px solid rgba(159, 159, 159, 0.6);
  z-index: 100;
}
.p-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -31px;
  width: 100vw;
  height: 80px;
  background: transparent linear-gradient(91deg, #011e55 0%, #055893 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}


.p-header__logo {
  position: absolute;
  top: 26px;
  left: 0;
  width: 110px;
  height: 29px;
}

.p-header__nav {
  display: none;
  position: absolute;
  top: 12px;
  right: 74px;
  gap: 30px;
  z-index: 100;
}
@media screen and (min-width:1024px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width:1200px) {
  .p-header__nav {
    right: 90px;
  }
}

.p-header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding-top: 18px;
}

.p-header__menu-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.p-header__btn {
  width: 143px;
  height: 58px;
  padding-inline: 14px;
  border: 1px solid #2680ea;
  background: #2680ea;
  border-radius: 29px;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    background: #ffffff;
  }
  .p-header__btn:hover .p-header__btn-text {
    color: #2680ea;
  }
}

.p-header__btn-text {
  margin-top: 19px;
  padding-left: 23px;
  color: #eff0ef;
  font-size: 13px;
  line-height: 1.4615384615;
  position: relative;
}
.p-header__btn-text::before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 0;
  width: 17.11px;
  height: 14px;
  background: url(../images/icon-users.svg) no-repeat center center/cover;
}