@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Cella";
  src: url("font/Cella.a41234a744f8.otf") format("truetype");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  width: 100%;
}

.header-center {
  /*margin-left: 350px;
  margin-right: 140px;*/
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

.nav-menu {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 44px;
  text-decoration: none;
  color: #7A8096;
  font-size: 14px;
  list-style: none;
  font-family: "Cella", sans-serif;
  font-weight: 400;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  z-index: 1000;
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 1px 4px 10px 0px rgba(160, 160, 160, 0.24);
  border: 1px solid rgb(236, 238, 242);
  list-style: none;
}

.dropdown-content li a {
  display: block;
  text-decoration: none;
  color: #7A8096;
  font-size: 14px;
  list-style: none;
  padding: 14px 34px 14px 18px;
  font-family: "Inter", sans-serif !important;
}

.accent {
  color: #343B86 !important;
  font-weight: 600 !important;
}

.blue-child {
  color: #343B86;
}

.nav-item.dropdown.open .dropdown-content {
  display: block;
}

.nav-item.dropdown.open .dropdown-trigger {
  color: #343B86;
}

.arrow-icon {
  width: 10px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  vertical-align: middle;
}

.nav-item.dropdown.open .arrow-icon {
  transform: rotate(180deg);
  color: #343B86;
}

.nav-menu li a {
  text-decoration: none;
  color: #7A8096;
  font-size: 14px;
  list-style: none;
  font-family: "Cella", sans-serif;
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  width: 200px;
  height: 32px;
  border: 1px solid #D3D7DE;
  border-radius: 6px;
  padding: 0 12px;
  overflow: hidden;
}

.search-wrapper input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 14px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.search-btn img {
  width: 24px;
  height: 24px;
}

.auth-navs {
  display: flex;
  gap: 16px;
  list-style: none;
  transform: translateY(6px);
}

.auth-navs li a {
  text-decoration: none;
  color: #7A8096;
  font-size: 14px;
  list-style: none;
  font-family: "Cella", sans-serif;
  font-weight: 400;
}

.bell_img {
  margin: 0 4px;
  transform: translateY(-2px);
}/*# sourceMappingURL=header.css.map */