.contact .content__title {
  position: relative;
  z-index: +1;
}

.header .lang {
  position: absolute;
  right: 46px;
  top: 75px;
  width: 120px;
  display: flex;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.16));
}
.header .lang a{
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 18px;
  transition: color. 3s, background-color .3s;
}
.header .lang a:hover {
  background: #5679B8;
  color: #fff;
}
.header .lang .current {
  background: #5679B8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header .lang {
    position: fixed;
    right: 0px;
    top: auto;
    bottom: 100px;
    width: 40px;
    display: block;
    border-radius: 5px 0 0 5px;
  }
  .header .lang a{
    width: 100%;
    font-size: 14px;
  }
}