/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/variables
 * ---
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Grid
 */
.centre {
  text-align: center; }

.middle {
  margin: 0 auto !important;
  display: block; }

.space {
  margin: 60px auto 30px auto !important; }

.footer .blue, .footer .turquoise {
  height: 300px; }

.blue {
  background: #225378;
  color: #fff;
  padding: 20px; }
  .blue .btn {
    color: #fff; }
    .blue .btn:hover {
      color: #fff;
      border-color: #fff; }
  .blue a {
    color: #fff !important; }

.turquoise {
  background: #1695A3;
  color: #fff;
  padding: 20px; }
  .turquoise .btn {
    color: #fff; }
    .turquoise .btn:hover {
      color: #fff;
      border-color: #fff; }
  .turquoise a {
    color: #fff !important; }

@keyframes fadein {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.pad {
  padding: 40px 40px 80px 40px; }

.one-third.pad {
  padding: 20px; }

/**
 * modules/mixins
 * ---
 */
/**
 * modules/fonts
 * ---
 * Declare fonts here
 */
h1, h2, h3, h4 {
  font-weight: 300;
  text-align: center; }

h1 {
  font-size: 3.3em; }

h2 {
  font-size: 2.9em;
  margin-bottom: 30px; }

h3 {
  font-size: 2em;
  margin: 10px 0; }

p {
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.6; }

@font-face {
  font-family: 'apak-icons';
  src: url("../fonts/apak-icons.eot");
  src: url("../fonts/apak-icons.ttf");
  src: url("../fonts/apak-icons.woff"); }

.icon {
  font-family: 'apak-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding: 0.6em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-md {
  font-size: 3em; }

.icon-lg {
  font-size: 5em; }

.icon-arrow-down:before {
  content: "\e600"; }

.icon-arrow-left:before {
  content: "\e601"; }

.icon-arrow-right:before {
  content: "\e602"; }

.icon-arrow-up:before {
  content: "\e603"; }

.icon-clock:before {
  content: "\e604"; }

.icon-envelope:before {
  content: "\e605"; }

.icon-facebook:before {
  content: "\e606"; }

.icon-flickr-01:before {
  content: "\e607"; }

.icon-googleplus:before {
  content: "\e608"; }

.icon-linkedin:before {
  content: "\e609"; }

.icon-phone:before {
  content: "\e60a"; }

.icon-sign:before {
  content: "\e60b"; }

.icon-store:before {
  content: "\e60c"; }

.icon-telephone:before {
  content: "\e60d"; }

.icon-cross:before {
  content: "\ea0f"; }

body, html {
  font-family: "Open Sans", Helvetica, Arial, "Helvetica Neue", sans-serif; }

a:link, a:visited, a {
  color: #444; }
  a:link:hover, a:visited:hover, a:hover {
    color: #1695A3; }

ul {
  padding-left: 0;
  margin-left: 0; }

.btn {
  display: inline-block;
  border: none;
  margin: 20px 0;
  background-color: transparent;
  border: 1px solid #ccc;
  text-transform: uppercase;
  padding: 12px 30px;
  font-family: "Open Sans", Helvetica, Arial, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 1.3em;
  -webkit-transition: 0.4s;
          transition: 0.4s;
  cursor: pointer; }
  .btn:hover {
    color: #1695A3; }

.btn.block .fa {
  display: block;
  font-size: 2em;
  padding: 20px 0; }

.cta {
  background: #1695A3;
  color: #fff;
  border-width: 2px;
  border-color: #fff;
  border-radius: 10px; }
  .cta:hover {
    border-color: #225378;
    color: #fff; }

/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
*,
*:after,
*:before {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Open Sans", Helvetica, Arial, "Helvetica Neue", sans-serif;
  font-size: 140%;
  line-height: 1.5;
  color: #444;
  background-color: #fff;
  max-width: 100%; }

img {
  max-width: 100%;
  vertical-align: middle; }

a {
  text-decoration: none; }
  a:focus,
  a:hover {
    text-decoration: none; }

input[type="text"],
input[type="search"] {
  font-size: inherit;
  line-height: inherit; }

::-moz-selection {
  background-color: #04A4CC;
  color: #fff;
  text-shadow: none; }

::selection {
  background-color: #04A4CC;
  color: #fff;
  text-shadow: none; }

/**
 * partials/utils
 * ---
 * Utils classes
 */
.clear:before,
ul:before,
.wrapper:before,
.row:before,
.one-half.middle:before,
.one-half.space:before,
body:before,
.nav ul:before,
.clear:after, ul:after, .wrapper:after, .row:after, .one-half.middle:after, .one-half.space:after, body:after, .nav ul:after {
  content: " ";
  display: table; }

.clear:after, ul:after, .wrapper:after, .row:after, .one-half.middle:after, .one-half.space:after, body:after, .nav ul:after {
  clear: both; }

.reset-box {
  padding: 0;
  margin: 0; }

.gallery {
  margin: 60px 0 20px 0; }

.img-box {
  display: inline-block;
  height: 200px;
  overflow: hidden; }
  .img-box img {
    -webkit-transition: 0.4s;
            transition: 0.4s; }
  .img-box:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2); }

/**
 * partials/wrapper
 * ---
 */
.wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative; }

.stack {
  float: left; }

.row {
  width: 100%;
  text-align: center; }
  .row .row {
    margin: 20px 0;
    padding: 20px; }
  .row:last-of-type {
    margin-bottom: 0; }

.one-third {
  width: 33.333%; }

.push-one-third {
  margin-left: 33.333%; }

.one-quarter {
  width: 25%; }

.push-one-quarter {
  margin-left: 25%; }

.one-fifth {
  width: 20%; }

.two-thirds {
  width: 66%; }

.one-half {
  width: 50%; }

body {
  width: 100%;
  padding: 0;
  margin: 0; }

.banner {
  padding: 60px 0;
  background: url("../img/a-pak-drywall-halifax.jpg") no-repeat;
  background-position: fixed;
  background-size: cover; }
  .banner h1, .banner h2, .banner h3 {
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 20px;
    display: inline-block; }

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: 0.4s;
          transition: 0.4s;
  display: none; }
  .lightbox img {
    margin: 5% 0;
    max-height: 80%;
    max-width: 100%; }

.close {
  position: absolute;
  top: 3%;
  right: 2%;
  font-size: 2em;
  cursor: pointer; }

.open {
  display: block;
  -webkit-animation: 0.4s fadein linear;
          animation: 0.4s fadein linear; }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 100%; } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 100%; } }

/**
 * partials/header
 * ---
 */
/**
 * partials/nav
 * ---
 * Menus
 */
.nav {
  width: 100%;
  padding: 0 5%;
  color: #fff;
  text-transform: uppercase; }
  .nav a {
    color: #225378; }
  .nav ul {
    width: 100%;
    margin: 0; }
    .nav ul li {
      display: inline-block;
      padding: 12px 16px;
      margin-bottom: 0;
      line-height: 48px;
      border-bottom: 4px solid transparent;
      cursor: pointer;
      -webkit-transition: 0.4s;
              transition: 0.4s; }
      .nav ul li .fa {
        padding: 0 10px; }
      .nav ul li:hover {
        border-color: #1695A3; }
        .nav ul li:hover > a {
          color: #1695A3;
          -webkit-transition: 0.4s;
                  transition: 0.4s; }
      .nav ul li:first-child {
        padding: 6px; }
      .nav ul li:nth-child(n+4):hover, .nav ul li:first-child:hover {
        border-color: transparent; }
      .nav ul li:nth-child(n+4) {
        float: right;
        font-weight: 700; }

/**
 * partials/footer
 * ---
 */
.footer {
  width: 100%;
  margin-top: 100px; }
  .footer .map {
    background: url(../img/map.jpg) no-repeat;
    background-size: cover;
    height: 160px;
    width: 100%; }
  .footer .social .icon {
    font-size: 2.2em;
    color: #fff;
    -webkit-transition: 0.4s;
            transition: 0.4s; }
    .footer .social .icon:hover {
      -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
              transform: scale(1.2); }
  .footer .social p {
    margin: 0; }

@media (max-width: 1000px) {
  .img-box {
    height: 140px; }
  .tablet-full {
    width: 100%; } }

@media (max-width: 800px) {
  .mobile-full {
    width: 100%; }
  .nav ul li:nth-child(2), .nav ul li:nth-child(3) {
    display: none; }
  .one-third {
    width: 50%; }
  .push-one-third {
    margin-left: 0; }
  .one-fifth {
    width: 33.333%; }
  .gallery .one-fifth:nth-child(4), .gallery .one-fifth:nth-child(5), .gallery .one-fifth:nth-child(11) {
    display: none; } }

@media (max-width: 600px) {
  .nav ul li:first-child {
    text-align: center;
    display: block; }
  .gallery .img-box {
    height: 100px; }
  .footer .blue, .footer .turquoise {
    height: auto; }
  .footer .one-half:nth-child(n+3), .one-third {
    width: 100%; }
  .footer .one-half .one-third {
    padding: 12px; }
  .one-third.btn.block {
    margin: 0; } }

/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }
/*# sourceMappingURL=style.css.map */