@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}

.p-header__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 97px;
  aspect-ratio: 97/53;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-header__menu {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    margin-top: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17px;
    background: #ffffff;
    padding: 5px;
    border-radius: 5px;
  }
}

.p-header__menu-link {
  padding: 6px 12px;
  color: #333333;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__menu-link:hover {
    color: #ffffff;
    background: #414141;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.p-header__menu-text {
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  font-weight: 500;
}

.p-header__btn {
  display: none;
  position: absolute;
  top: 26px;
  right: 30px;
  width: 150px;
  color: #ffffff;
  padding-block: 11px;
  padding-inline: 21px;
  border: 1px solid #3B5382;
  background: #3B5382;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    color: #3B5382;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width:1024px) {
  .p-header__btn {
    display: block;
  }
}

.p-header__btn-text {
  padding-left: 22.3px;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  font-weight: 500;
  position: relative;
}
.p-header__btn-text::before {
  content: "";
  position: absolute;
  top: 3.5px;
  left: 0;
  width: 16.72px;
  height: 13.38px;
  background: url(../images/icon-mail.svg) no-repeat center center/cover;
}