header {
  background-color: #101010;
}
header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo a {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #F5F5F5;
  text-decoration: none;
  /* text-transform: uppercase; */
  padding: 0 0 4px 0;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header nav ul {
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  list-style: none;
  margin-right: 30px;
}
header nav ul li:last-of-type {
  margin-right: 0;
}
header nav ul li a {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #F5F5F5;
  padding: 26px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.15s linear all;
}
header nav ul li a:hover {
  color: #ff8400;
}
header .social-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}
