@charset "UTF-8";

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  z-index: 100;
}
.p-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#056eb7), to(#21c3d4)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #056eb7 0%, #21c3d4 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-header.is-active::after {
  opacity: 1;
}


.p-header__logo {
  position: absolute;
  top: 14px;
  left: clamp(20px, 3.90625vw, 30px);
  width: 131px;
  height: auto;
  aspect-ratio: 131/60;
  max-height: 60px;
  padding: 10px 27px;
  background: #ffffff;
  border-radius: 10px;
}

.p-header__menu {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__menu {
    position: absolute;
    top: 27px;
    right: clamp(20px, 3.90625vw, 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(20px, 2.0497803807vw, 28px);
  }
}

.p-header__menu-link {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media (any-hover: hover) {
  .p-header__menu-link:hover {
    color: #ffffff;
  }
}
.p-header__btn {
  width: 154px;
  color: #ffffff;
  padding-block: 11px;
  padding-inline: 24px;
  border: 1px solid #21C3D4;
  background: #21C3D4;
  border-radius: 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    color: #21C3D4;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.p-header__btn .text {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  position: relative;
}
.p-header__btn .text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 12px;
  background: url(../images/icon-mail.svg) no-repeat center center/contain;
}