.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
}
.topbar {
  padding: 7px 0;
  font-size: 14px;
  color: #002e4d;
}
.topbar a {
  text-decoration: none;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.work-time {
  font-weight: 700;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.address-block {
  text-align: right;
  line-height: 1.1;
}
.address-title {
  font-weight: 700;
  color: #003C71;
}
.address-sub a {
  font-size: 13px;
  opacity: 0.8;
}
.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.socials a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #003C71;
  stroke-width: 1.8;
  transition: 0.25s;
}
.socials a:hover svg {
  stroke: #006dd1;
  transform: translateY(-1px);
}
header.header {
  box-shadow: 0 6px 18px -10px rgba(0, 60, 113, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-lang ul li {
  display: inline-block;
}
.header-lang a {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}
.header-lang li.current-lang a,
.header-lang li a:hover {
  background: rgba(0, 60, 113, 0.1);
  opacity: 1;
}
@media (max-width: 1119px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .topbar {
    display: none;
  }
}
