@charset "UTF-8";

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

.p-header__logo {
  position: absolute;
  top: 13px;
  left: clamp(20px, 5.9895833333vw, 46px);
  width: 213px;
  aspect-ratio: 213/47;
  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 {
    position: absolute;
    top: 24px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.p-header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.p-header__menu-text {
  font-size: 12px;
  line-height: 1.4166666667;
  letter-spacing: 0.36px;
  font-weight: 600;
}

.p-header__btn {
  width: 124px;
  color: #ffffff;
  padding-block: 5px;
  padding-inline: 13px;
  border: 1px solid #313332;
  background: #313332;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    color: #313332;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .p-header__btn:hover .text::before {
    background: url(../images/icon-mail-b.svg) no-repeat center center/contain;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.p-header__btn .text {
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.4166666667;
  letter-spacing: 0.36px;
  font-weight: 600;
  position: relative;
}
.p-header__btn .text::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  width: 13px;
  height: 10px;
  background: url(../images/icon-mail.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__item--menu {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.header__sublist-wrap {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  translate: -50%;
  padding-top: 15px;
  display: none;
}

.header__sublist {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: #F1F2ED;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.header__sublist a {
  white-space: nowrap;
}
.header__sublist::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 11px solid #F1F2ED;
  border-top: 0;
}