.header {
  background-color: black;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 14;
}
.header:before {
  content: "";
  height: 100%;
  width: 100%;
  background: black;
  position: absolute;
}
.header a {
  position: relative;
  color: white !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.dropdown-toggle:hover svg path {
  fill: #53bfff;
}

.header ul.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header .full-width {
  height: 100%;
}

.separator {
  width: 100%;
  height: 154px;
  background-color: black;
}

.scroll {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.header li.nav-item.dropdown-lang {
  position: relative;
  width: auto !important;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item.dropdown-lang .dropdown-menu {
  display: none;
  position: absolute;
  background: #53bfff;
  border-radius: 5px;
  top: 80%;
  right: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 5px 0;
}
.nav-item.dropdown-lang.show .dropdown-menu {
  display: block;
}

.nav-item.dropdown-lang .dropdown-menu a {
  display: flex;
  align-items: center;
  margin: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  width: max-content;
}

.header .navbar-nav .nav-item.dropdown-lang li a:before {
  content: "";
  position: absolute;
  background: black !important;
  width: 0;
  height: 2px !important;
  bottom: -5px !important;
  transition: width 0.3s ease-in-out;
}

.header .navbar-nav .nav-item.dropdown-lang li a:hover:before {
  width: 100%;
}

/* Dropdown hover styles */

.header .container {
  position: unset;
}

.navbar-nav .dropdown-content-menu {
  display: flex;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #53bfff;
  min-width: 200px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.navbar-nav .dropdown-content-menu a {
  padding: 12px 0px;
  transition: 0.3s;
}

.navbar-nav .dropdown-content-menu a:hover {
  color: black !important;
}

/* Show dropdown on hover */
.dropdown-link:hover .dropdown-content-menu {
  opacity: 1;
  top: 80px;
}

@media only screen and (max-width: 1100px) and (min-width: 1024px) {
  .header a {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .navbar-toggler,
  .small-menu {
    display: none;
  }

  .header
    .navbar-nav
    a:not(.dropdown-toggle):not(.dropdown-content-link):hover::before,
  .header .navbar-nav a.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: #53bfff;
    left: 0;
    bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {
  .dropdown-link:hover .dropdown-content-menu {
    display: none;
  }
  header.header > .container {
    background: black;
  }
  #mobile-menu {
    position: fixed;
    top: -310px;
    left: 0;
    width: 100%;
    height: auto;
    background: black;
    color: white;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: top 0.3s ease-in-out;
    z-index: -1;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header .navbar-nav a.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #53bfff;
    left: 0;
    bottom: 0;
  }

  .nav-item {
    margin-right: 0px !important;
  }

  #mobile-menu .nav-item {
    text-align: center;
  }

  #mobile-menu .nav-link {
    color: white;
    padding: 13px;
    display: block;
  }

  #mobile-menu.open {
    top: 80px;
    border-top: 2px solid white;
  }
  .header .navbar-nav a:not(.dropdown-toggle):hover::before,
  .header .navbar-nav a.active::before {
    bottom: 0px;
  }

  .navbar-toggler {
    background: transparent;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
    padding: 0;
  }

  nav.navbar.navbar-expand-sm.col-sm-7 {
    padding: 0;
  }
  .nav-item.dropdown-lang.small-menu {
    position: absolute;
    top: 50%;
    right: 10px;
    width: max-content;
    transform: translateY(-50%);
  }
  ul#mobile-menu .dropdown-lang {
    display: none;
  }
  .small-menu a {
    padding: 0;
  }
}
