nav {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #F7F7F6;
  box-shadow: 5px 2px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex: 1; }
  nav > * {
    width: 50%; }

.nav__logo {
  display: block;
  transform: translate3d(20px, 40px, 0); }
  .nav__logo i {
    width: 75px;
    height: 75px;
    color: white;
    background-color: #7CCDB9;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%; }

.nav__list {
  list-style: none;
  padding-left: 0;
  text-align: right;
  padding-right: 2rem;
  /*  line-height: 1.5;*/ }

.nav__item {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #141720;
  letter-spacing: 1.45px;
  text-transform: uppercase; }
  .nav__item a {
    color: #141720;
    font-weight: 500; }
    .nav__item a:hover {
      text-decoration: none;
      color: #5D6BCF; }

.nav__social {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: .8; }

.nav_social__item {
  color: #141720;
  display: block; }
  .nav_social__item:hover {
    animation: shake .8s ease-in-out; }
  .nav_social__item .fa-info {
    padding-left: 3px; }
