@media screen and (min-width: 769px) {
  .about__block__title {
    width: 30%;
  }
  .about__block__list {
    width: calc(70% - 20px);
    padding: 0 0 40px 20px;
  }
  .about__block__list__title {
    width: 35%;
  }
  .about__block__list__text {
    width: calc(65% - 10px);
    padding-left: 10px;
  }
  .about {
    overflow: hidden;
  }
  .about__bottom__image {
    right: -40%;
  }
  .about__bottom__list:nth-of-type(1) {
    width: 30%;
  }
  .about__bottom__list:nth-of-type(2) {
    width: 30%;
  }
  .contact .content__title {
    position: relative;
    z-index: +1;
  }
}

@media screen and (max-width: 768px) {
  .about__block__half {
    display: block;
  }
  .about__block__title {
    width: 40%;
    margin-bottom: 28px;
  }
  .about__bottom {
    display: block;
  }
  .about__bottom__title {
    width: 40%;
    margin-bottom: 28px;
  }
  .about__bottom__list{
    margin-left: auto;
    margin-bottom: 20px;
    width: 100%;
    padding: 3%;
    box-sizing: border-box;
  }
  .about__bottom__list:nth-of-type(2){
    padding: 3%;
  }
  .about__block__list {
    width: 100%;
  }
  .about__block__list__item {
    padding-left: 0;
  }
}




.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;
  }
}