@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 93px;
  z-index: 100;
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-header.is-active::after {
  opacity: 0.92;
}

.p-header__logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: clamp(80px, 14.453125vw, 111px);
  aspect-ratio: 111/73;
}

.p-header__menu {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    position: absolute;
    top: 0;
    right: 20px;
    padding-top: 21px;
    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-link {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.p-header__btn {
  margin-left: 10px;
  padding-block: 15px;
  padding-inline: 47px 19px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.75px;
  font-weight: 500;
  border: 1px solid #83A77F;
  background: #83A77F;
  border-radius: 5px;
}
.p-header__btn .text {
  position: relative;
}
.p-header__btn .text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -28px;
  width: 17px;
  height: 13px;
  background: url(../images/icon-mail.svg) no-repeat center center/contain;
}
.p-header__btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 1;
    color: #83A77F;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}