/* header styles */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-items: center;

}
.header-links {
  display: flex;
  align-items: center;
  column-gap: 30px;
  z-index: 555;
}
.language-wrapper button {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  line-height: 130%;
  padding: 10px 16px;
  background-color: var(--blue-bg);
  border-radius: 48px;
}

.hs-dropdown-menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 0;
  list-style-type: none;
  z-index: 500;
  opacity: 0;
  max-height: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 50px;
  margin-top: 5px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.hs-dropdown-menu a {
  padding: 10px 50px 10px 20px;
  display: block;
  text-align: left;
  transition: 0.3s ease;
}
.hs-dropdown-menu a:hover {
  background-color: var(--primary-bg);
}

.hs-dropdown-menu.hidden {
  display: none;
}

.hs-dropdown-menu.opacity-0 {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hs-dropdown-menu.opacity-100 {
  opacity: 1;
  max-height: 200px;
}
.header-setting-wrapper {
  display: flex;
  column-gap: 16px;
}

.login-link {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  border-radius: 48px;
  border: 1px solid var(--primary-color);
}
.login-link span {
  color: var(--primary-color);
}
.header-first-content {
  border-bottom: 1px solid var(--border1);
  background: var(--white-bg);
  /* backdrop-filter: blur(12px); */
}


.burger-a{
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.burger-wrapper{
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.77);
  display: flex;
  flex-direction: column;
  justify-content: left;
  z-index: 1000;
  display: none;
}


.x{
  width: 40px;
  height: 40px;
  margin: 20px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #2b4288;
}

.header-links-burger{
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 100vh;
  padding: 20px;
  background-color: white;
}

.header-links-burger a{
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  text-align: left;
  padding: 10px 15px;

}

.header-links-burger a:active{
  color: blue;
}


.lang-select{
  padding: 10px 0px;
  margin-left: 15px;
  margin-top: 20px;
  width: 70px;
  border: none;
  border-top: 1px solid rgb(116, 116, 126);
}


@media (max-width: 900px) {

  .header-wrapper {
    padding: 10px 0;
  }
  .header-links{
    display: none;
  }
  .burger-a{
    display: block;
  }

  .logo-a{
    width: 50px;
  }

  .language-wrapper button {
    display: none;
  }



  .language-wrapper{
    display: flex;
  }

  .language-wrapper button img{
    width: 25px;
  }

  .language-wrapper button img:nth-child(2){
    width: 15px;
  }

  .login-link {
    border: 1px solid #C9D9F8;
    padding: 10px 10px;
    column-gap: 8px;
    border-radius: 48px;
  }

  .login-link span {
    display: none;
  }

  .login-link img{
    width: 20px;
  }
}