.nav{
  position: sticky;
  top: 0px;
  width: 100%;
  display: flex;
  padding: 20px 30px;
  background-color: #252525;

  color: #ffffff;
  z-index: 1;
}
.nav .brand{
  flex-grow: 1;
  font-size: 21px;
  font-weight: 600;
}
.nav .content{

}

.language{
  position: relative;
}
.language button{
  color: #ffffff;
  border: none;
  background-color: transparent;
}

.language .language-select{
  position: absolute;

  right: 0px;
  top: 30px;

  width: auto;
  height: auto;
  background-color: #474747;

  z-index: 1;
}

.language-select ul{
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.language-select ul li{
  position: relative;
  width: 195px;
  padding: 8px 15px;
  padding-left: 25px;
  color: #cbcbcb;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}.language-select ul li.selected::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 13px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #1ab57a;
  transform: translateY(-50%);
}.language-select ul li.selected{
  font-weight: 600;
  color: #ffffff;
}.language-select ul li:hover{
  color: #ffffff;
  background-color: #222222;
}
