.navbar-fixed-top {
  margin-bottom: 0;
  background-color: var(--navbar-background);
  border-color: var(--navbar-border);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000 !important;
  box-shadow: var(--shadow-navbar);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  gap: 40px;
  margin: auto;
}
.navbar_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  user-select: none;
  list-style: none;
}
.main_top_menus {
  display: flex;
  align-items: center;
}
.nav_wrapper ul a {
  text-decoration: none;
  font-size: 16px;
}
.navbar-logo {
  position: relative;
  width: 120px;
  height: 50px;
}
.navbar-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
#desktop-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 3px solid #fff;
  position: absolute;
  top: -0px;
  left: 0;
  z-index: 1005;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
#desktop-logo:hover {
  transform: scale(1.06) translateY(2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.main_top_menus a {
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--nav-item-color);
  font-weight: 600;
}

.sub_menus,
.sub_drop_menus,
.sub_drop_sub_menus {
  display: none;
  z-index: 1000 !important;
  list-style: none;
}

.sub_menus {
  flex-direction: column;
  position: absolute;
  gap: 0;
  top: var(--navbar-width);
}

.sub_menus li {
  position: relative;
  margin-bottom: 3px;
}

.sub_menus li a {
  text-transform: uppercase;
}

.sub_drop_sub_menus {
  position: absolute;
  left: 100%;
  top: 0px;
  margin-left: 3px;
}

.sub_menus li {
  background-color: var(--surface-accent);
  padding: 7px 18px;
  white-space: nowrap;
}

.sub_drop_menus li:first-child {
  margin-top: 0px;
}

.sub_drop_menus {
  position: absolute;
  left: 100%;
  top: 0px;
  margin-left: 3px;
}

.sub_drop_sub_menus {
  position: absolute;
  left: 100%;
  top: 0px;
  margin-left: 3px;
}
.sub_menus li:hover {
  /* background-color: #85a8d0; */
  background-color: var(--hover-color);
}

.sub_menus li a {
  color: #ffffff;
  width: 100%;
  display: inline-block;
}

ul.sub_drop_sub_menus li {
  width: 25ch;
}

ol,
ul {
  padding-left: 0 !important;
}

.nav_social_wrapper {
  position: fixed;
  width: 100%;
  background: transparent;
  z-index: 999;
}
.nav_social_container {
  display: flex;
  justify-content: flex-end;
}
.top-header .social-box {
  display: flex;
  flex-direction: row;
  gap: 1px;
  margin-top: 1px;
}
.top-header .social-box .social-button {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* background: var(--surface-accent); */
  background: var(--primary-500);
  flex-direction: column;
  transition: all 0.2s;
}
.bsd_button{
  transition: all 0.2s;
}
.top-header .social-box .social-button:hover, .bsd_button:hover{
  background-color: var(--primary-700);
}