/**
 * General
 */
body {
  font-family: 'Roboto Slab';
  font-weight: 300;
}

.wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.content {
  padding-top: 94px;
}

a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 1080px) {
  .wrapper {
    width: 90%;
  }
}

/**
 * Header
 */
header {
  position: fixed;
  width: 100%;
  padding: 24px 0;
  background: #fafafa;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
  overflow: hidden;
  z-index: 99;
}
  .logo {
    color: rgb(68, 105, 158);
    font-size: 32px;
    text-transform: uppercase;
    float: left;
  }
    .logo span {
      display: block;
      text-transform: none;
      color: rgb(79, 158, 216);
      font-size: 14px;
    }
  .navigation {
    float: right;
    font-weight: 400;
  }
    .navigation ul {
      margin-top: 30px;
    }
      .navigation ul li {
        display: inline-block;
        margin-left: 12px;
      }
        .navigation ul li a {
          color: rgb(68, 105, 158);
          font-size: 13px;
        }
        .navigation ul li a.is-active {
          color: rgb(79, 158, 216);
        }

@media screen and (max-width: 450px) {
  .logo,
  .navigation {
    float: none;
    display: block;
    text-align: center;
  }
  .navigation ul li:first-of-type {
    margin-left: 0;
  }
}

/**
 * Banner
 */
.banner {
  background: url('../images/home-header.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.banner.is-price-list {
  background-image: url('../images/price-header.jpg');
}
  .banner h1 {
    font-size: 26px;
    line-height: 1.5;
  }
  .banner a {
    display: block;
    font-size: 16px;
    padding: 12px 36px;
    width: 120px;
    border: 1px solid currentColor;
    margin: 0 auto;
    margin-top: 48px;
  }

/**
 * About
 */
.about {
  padding: 48px 48px 80px;
  text-align: center;
  background: rgb(246, 248, 250);
}
  .about p {
    color: rgb(68, 105, 158);
    font-size: 18px;
    font-weight: 400;
  }
  .about h1 {
    font-size: 25px;
    max-width: 700px;
    line-height: 1.5;
    margin: 24px auto 0;
  }

/**
 * Splitter
 */
.splitter {
  position: relative;
  top: -42px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  padding: 48px 12px;
}

/**
 * Footer
 */
footer {
    text-align: center;
    margin-top: 92px;
}
  .footer-info {
    background: rgb(246, 248, 250);
    padding: 18px 0;
    font-size: 14px;
    line-height: 1.5;
  }
    .footer-info span {
      color: rgb(68, 105, 158);
      font-weight: 400;
    }
    .footer-upper {
      text-transform: uppercase;
    }
    .footer-info .footer-light {
      font-weight: 300;
      color: rgb(79, 158, 216);   
    }
  .copyright {
    background: #fff;
    padding: 48px 0;
    font-size: 13px;
    opacity: .5;
    line-height: 1.5;
  }