@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.p-header__top {
  background: #222222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-block: 7px 8px;
}

.p-header__top-text {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3076923077;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.p-header__logo {
  margin-top: 12px;
  margin-left: 21px;
  width: 100px;
  aspect-ratio: 100/33;
}
.p-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__menu {
  color: #ffffff;
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    margin-top: 4px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}
@media screen and (min-width:1200px) {
  .p-header__menu {
    gap: clamp(20px, 2.9282576867vw, 40px);
  }
}

.p-header__menu-link {
  font-size: 13px;
  line-height: 1.3076923077;
  font-weight: 700;
  text-align: center;
}
.p-header__btn {
  padding-block: 10px 12px;
  padding-inline: 33px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #F2B546;
  background: #F2B546;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.p-header__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 14px;
  width: 15px;
  height: 10px;
  background: url(../images/icon-mail.svg) no-repeat center center/contain;
}
.p-header__btn::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -21px;
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.3);
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 1;
    color: #F2B546;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}