.campaign-bar {
  background-color: #043F6D;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  font-size: 12px;
  text-align: center;
  color: #F9F9F9;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.campaign-bar-content {
  max-width: 100%;
  overflow: hidden;
}
.campaign-bar-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.campaign-bar-text a {
  color: #F9F9F9 !important;
  text-decoration: none !important;
}
@media (max-width: 576px) {
  .campaign-bar {
    font-size: 10px;
  }
}

.top-bar {
  background-color: #e5e5e5;
  padding: 8px 0;
  font-size: 12px;
  color: #666;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .top-bar-content {
    padding: 0 10px;
    flex-wrap: wrap;
  }
}
.top-bar-left {
  font-weight: 500;
}
.top-bar-right {
  color: #333;
  display: flex;
  gap: 8px;
}
@media (max-width: 576px) {
  .top-bar-right {
    font-size: 10px;
    gap: 5px;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: sticky;
  top: 30px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .nav-container {
    padding: 10px;
  }
}

.logo {
  font-size: 72px;
  font-weight: 900;
  color: #000;
  text-decoration: none;
  line-height: 1;
  margin-right: 10px;
}
.logo-section {
  display: flex;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 10;
}
.logo-section .logo img {
  width: 200px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .logo-section {
    position: relative;
    left: 0;
    max-width: 60%;
  }
  .logo-section .logo img {
    width: 140px;
  }
}
@media (max-width: 576px) {
  .logo-section .logo img {
    width: 120px;
  }
}
.logo-text {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
  line-height: 1.2;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.top-bar-right a {
  text-decoration: none !important;
  color: #333 !important;
}

.nav-menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 35px;
  align-items: center;
}
@media (min-width: 1025px) {
  .nav-menu {
    padding-left: 300px;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
}
.nav-menu a {
  text-decoration: none;
  color: #333 !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
  padding: 5px 0;
}
.nav-menu a:hover {
  color: #666;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon {
  width: 32px;
  height: 32px;
  background-color: #333;
  border-radius: 50%;
  color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}
.header-icon:hover {
  background-color: #555;
}

.login-text {
  font-size: 10px;
  color: #666;
  margin-left: 5px;
}/*# sourceMappingURL=top-bar.css.map */