@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 83px;
  z-index: 100;
}

.p-header__logo {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 107px;
  height: 69px;
}

.p-header__nav {
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
}
@media screen and (min-width:1024px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(20px, 2.196193265vw, 30px);
  }
}

.p-header__menu-text {
  color: #483C42;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 1.12px;
  font-weight: 600;
}

.p-header__btn {
  width: 146px;
  padding-block: 13px;
  padding-inline: 18px;
  background: #f8e24b;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.p-header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #f8e24b;
  border-radius: 5px;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    background: #ffffff;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.p-header__btn-text {
  padding-left: 19px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 1.12px;
  font-weight: 500;
  position: relative;
}
.p-header__btn-text::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 10px;
  background: url(../images/icon-mail-black.svg) no-repeat center center/cover;
}