.header {
  height: 125px;
  width: 100%;

  position: relative;
}

.header-inner {
  width: 100%;
  /*border-bottom: 1px solid #222C59;*/
  border-bottom: 1px solid #db131d;
  padding: 10px 0; 
  text-align: center;
}

.logo {
}

.original {
  position: absolute;
  top: 30px;
  left: 0;

}

.social {
  position: absolute;
  top: 30px;
  right: 50px;

}

.social-item {
  width: 33px;

  margin: 0 5px;
  background-color: #000;
  transition: .3s;
}

.social-item:hover {
  background-color: #db131d;
}

.language {
  position: absolute;
  top: 44px;
  right: 200px;
}

.nav-lang {
  font-family: 'gothambook';
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  margin-bottom: 5px;
}

.nav-lang.current {
  font-weight: 800;
  color: #db131d;
}
@media only screen and (max-width: 800px) {
  .social {
    position: absolute;
    top: 5px;
    right: 0px;

  }
  
  .language {
  position: absolute;
  top: 30px;
  right: 5px;
}

.nav-lang {
  font-size: 12px;
}

  .social-item {
    width: 20px;
  }

  .original {
    width: 110px;
    top: 0;
    left: 0;
  }
}