/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;

  .contact-info {

    i {
      font-style: normal;
      color: $primary;

      a, span {
        padding-left: 5px;
        color: $default;
      }

      a {
        line-height: 0;
        transition: 0.3s;
        &:hover {
          color: $primary;
        }
      }

    }
  }

  .social-links {
    a {
      color: #555;
      padding: 0 15px;
      display: inline-block;
      line-height: 1px;
      border-left: 1px solid #e9e9e9;
      &:hover {
        color: $primary;
      }
      &:first-child {
        border-left: 0;
      }
    }
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0,0,0,.06);

  #logo {

    h1 {
      font-size: 42px;
      margin: 0;
      padding: 0;
      font-family: $font-secondary;
      font-weight: 700;
    }

    h1 a {
      color: $secondary;
      span {
        color: $primary;
      }
    }

    img {
      padding: 0;
      margin: 0;
    }
  }

  @media (max-width: 768px) {
    height: 60px;
    #logo {
      h1 {
        font-size: 34px;
      }

      img {
        max-height: 40px;
      }
    }
  }
}

.scrolled-offset {
  margin-top: 70px;
}
