@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 100;
}

.p-header__logo {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 204px;
  height: 29px;
}

.p-header__nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 149px;
  height: 100%;
}
@media screen and (min-width:1200px) {
  .p-header__nav {
    display: block;
  }
}


.p-header__menu-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px;
}
.p-header__menu-list .c-link {
  height: 100%;
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
}
.p-header__menu-list .c-link:nth-of-type(n + 2)::before {
  content: "";
  position: absolute;
  top: 31px;
  left: -26px;
  width: 1px;
  height: 18px;
  background: #6F7070;
}


.p-header__menu-text {
  color: #1c221f;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
}

.p-header__contact-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  padding-block: 40px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#0c3877), to(#1b68db)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #0c3877 0%, #1b68db 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width:1200px) {
  .p-header__contact-btn {
    display: block;
  }
}
@media (any-hover: hover) {
  .p-header__contact-btn:hover {
    background: #1B427A;

    opacity: 1;
  }
}

.p-header__contact-text {
  padding-top: 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.p-header__contact-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 17px;
  height: 12px;
  background: url(../images/header-mail.svg) no-repeat center center/cover;
}