.elementor-118 .elementor-element.elementor-element-f895f95{--display:flex;--min-height:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-118 .elementor-element.elementor-element-f895f95{--content-width:1200px;}}/* Start custom CSS for container, class: .elementor-element-f895f95 */.elementor-118 .elementor-element.elementor-element-f895f95{
    height: 0px;
}

.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  font-family: var(--pc-font-body);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

.pc-header.is-scrolled {
  background: rgb(255 255 255 / 31%);
  backdrop-filter: blur(8px);
  border-bottom-color: #d1d2d461;
}
.pc-header.is-scrolled .pc-header__link {
  color: black;
} 


.pc-header .pc-header__inner {
  display: flex;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 5%;
}

.pc-header .pc-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pc-header .pc-header__logo-img {
  display: block;
  height: 65px;
  width: auto;
}

.pc-header .pc-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.pc-header .pc-header__link {
  position: relative;
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.pc-header .pc-header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pc-red);
  transition: width 250ms ease;
}

.pc-header .pc-header__link:hover::after {
  width: 100%;
}

.pc-header .pc-header__link:hover {
  color: var(--pc-white);
}

.pc-header .pc-header__cta {
  flex-shrink: 0;
  padding: 11px 22px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease;
  white-space: nowrap;
}

.pc-header .pc-header__cta:hover {
  background: var(--pc-red-deep);
}

.pc-header .pc-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.pc-header .pc-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--pc-white);
  margin: 0 auto;
  transition: transform 250ms ease, opacity 250ms ease;
}

.pc-header.is-open .pc-header__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.pc-header.is-open .pc-header__burger span:nth-child(2) {
  opacity: 0;
}

.pc-header.is-open .pc-header__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.pc-header .pc-header__mobile-panel {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: -1;
  background: var(--pc-ink);
  padding: 96px 6% 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 300ms ease, transform 300ms ease, visibility 0s linear 300ms;
}

.pc-header.is-open .pc-header__mobile-panel {
  z-index: 90;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease, visibility 0s linear 0s;
}

.pc-header .pc-header__mobile-nav {
  display: flex;
  flex-direction: column;
}

.pc-header .pc-header__mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--pc-line);
  font-family: var(--pc-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pc-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-header .pc-header__mobile-cta {
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--pc-red);
  color: var(--pc-white);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 16px;
}

.pc-header .pc-header__mobile-phone {
  display: block;
  text-align: center;
  color: var(--pc-steel);
  text-decoration: none;
  font-family: var(--pc-font-display);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .pc-header .pc-header__nav { gap: 22px; }
}

@media (max-width: 860px) {
  .pc-header .pc-header__nav,
  .pc-header .pc-header__cta {
    display: none;
  }
  .pc-header .pc-header__burger {
    display: flex;
  }
}


.pc-header .pc-header__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: none;
  }
  .pc-header .pc-header__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: red;
    transform-origin: center;
  }
  .pc-header .pc-header__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .pc-header .pc-header__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

  @media (max-width: 860px) {
    .pc-header.is-open .pc-header__close { display: block; }
  }
  
   @media (max-width: 860px) {
    .pc-header.is-open .pc-header__burger { display: none; }
    .pc-header.is-open .pc-header__close { display: block; }
  }
  
  /*proje*/
  .pc-portfolio-hero__title {
    font-size: clamp(2.25rem, 5.5vw, 2.25rem) !important;
      
  }/* End custom CSS */