.nav__lang {
  align-items: center;
  display: flex;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 3;
  justify-content: flex-end;
}

.nav__lang a {
  color: #232323;
  /* border-right: 1px solid #000000; */
  margin: 0 12px;
  text-decoration: none;
}

.lang__circle {
  align-items: center;
  border: 1px solid #ECE6E4;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
  background-color: #ECE6E4;
}

.nav__lang>div {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.nav__lang>div:hover {
  border: 1px solid #ECE6E4;
}

@media only screen and (max-width: 992px) {
  .nav__lang>div {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .nav__lang>div {
    font-size: 12px;
  }

  .nav__lang>div {
    width: 30px;
    height: 30px;
  }
}