.header {
  height: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  position: fixed;
  z-index: 100;
  transition: all 0.2s;
}

.scrolled {
  background-color: rgba(51, 51, 51, 0.92);
}

.image-logo {
  position: relative;
  height: 41px;
  z-index: 11;
}

.nav {
  display: flex;
  justify-items: center;
  align-items: center;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
}

.nav-item {
  font-size: 0.9rem;
}

.nav-link {
  color: #fff !important;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 1 !important;
  color: #fff !important;
}

.language-current {
  color: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.language-current img {
  padding-right: 2px;
}

.language-current:hover {
  color: #ccc;
}

.lang-switcher {
  position: relative !important;
  z-index: 1000 !important;
}

.lang-switcher .language-list {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  width: 80px !important;
  left: 0 !important;
  background: white !important;
  border: 1px solid #ccc !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 1000 !important;
}

.lang-switcher:hover .language-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-items: center !important;
}

.language-list .language-item {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 6px 0 !important;
}

.language-list .language-item a {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 6px 0 !important;
}
.language-list .language-item img {
  padding-right: 2px;
}

.language-list .language-item span {
  color: black !important;
}

.language-list li a:hover {
  background-color: #eee !important;
}

#et_mobile_nav_menu {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  #et_mobile_nav_menu {
    display: block;
  }
}

.mobile_menu_bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 201;
  position: relative;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.mobile_menu_bar.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile_menu_bar.active .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile_menu_bar.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#mobile_menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 1);
  padding: 1rem 0;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 200;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-20px);
  z-index: 10;
}

#mobile_menu.opened {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#mobile_menu .mobile-menu-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}

#mobile_menu .mobile-menu-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.2s ease;
}

#mobile_menu .mobile-menu-item a:hover::after {
  width: 100%;
}
