* {
  vertical-align: baseline;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  display: grid;
  font-family: "Work Sans", sans-serif;
  grid-gap: 3em 2.8em;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  padding: 30px;
  margin: 0 auto;
  max-width: 1920px;
}

header {
  border-bottom: 1px solid #000;
  height: 60px;
  grid-column: 1/-1;
  grid-row: 1;
  margin-bottom: 0.5em;
}

a.brand:link, a.sm_brand:link, a.brand:visited, a.sm_brand:visited {
  border-bottom: 2px #fff solid;
  color: #000;
  display: none;
  float: left;
  font-size: 1.4em;
  letter-spacing: 0.2em;
  margin: 1em 0 1.4em;
  padding-bottom: 0.8em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-bottom, color, padding-bottom 0.4s, 0.4s, 0.3s ease-out;
}
@media only screen and (min-width:400) {
  a.brand:link, a.sm_brand:link, a.brand:visited, a.sm_brand:visited {
    display: block;
  }
}
@media only screen and (min-width: 767px) {
  a.brand:link, a.sm_brand:link, a.brand:visited, a.sm_brand:visited {
    display: block;
  }
}
@media only screen and (min-width: 1224px) {
  a.brand:link, a.sm_brand:link, a.brand:visited, a.sm_brand:visited {
    display: block;
  }
}
@media only screen and (min-width: 1824px) {
  a.brand:link, a.sm_brand:link, a.brand:visited, a.sm_brand:visited {
    display: block;
  }
}

a.sm_brand:link, a.sm_brand:visited {
  display: block;
}
@media only screen and (min-width:400) {
  a.sm_brand:link, a.sm_brand:visited {
    display: none;
  }
}
@media only screen and (min-width: 767px) {
  a.sm_brand:link, a.sm_brand:visited {
    display: none;
  }
}
@media only screen and (min-width: 1224px) {
  a.sm_brand:link, a.sm_brand:visited {
    display: none;
  }
}
@media only screen and (min-width: 1824px) {
  a.sm_brand:link, a.sm_brand:visited {
    display: none;
  }
}

a.brand:hover, a.sm_brand:hover {
  border-bottom: 2px #900 solid;
  color: #900;
  padding-bottom: 0.6em;
  transition: border-bottom, color, padding-bottom 0.2s, 0.2s, 0.3s ease-out;
}

.work {
  display: grid;
  grid-column: 1/-1;
  grid-gap: 3em;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: auto;
}
.hero {
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
  grid-row: 2;
  height: 400px;
  margin-bottom: 1em;
  overflow: hidden;
}
@media only screen and (min-width: 767px) {
  .hero {
    grid-row: 3;
  }
}
@media only screen and (min-width: 1224px) {
  .hero {
    height: 600px;
  }
}
@media only screen and (min-width: 1824px) {
  .hero {
    height: 800px;
  }
}

.oml .hero {
  background: url("../assets/concrete_tile.jpg") repeat-x;
}
.oml .hero img.lg {
  display: none;
}
@media only screen and (min-width: 767px) {
  .oml .hero img.lg {
    display: inline-block;
    height: 100%;
  }
}
.oml .hero img.sm {
  display: inline-block;
  height: 65%;
}
@media only screen and (min-width: 767px) {
  .oml .hero img.sm {
    display: none;
  }
}

.eg .hero {
  background-color: #900;
  background: url("../assets/hero_edmonton-global.jpg") no-repeat;
  background-size: cover;
}
.eg .hero img.lg {
  display: none;
}
@media only screen and (min-width: 767px) {
  .eg .hero img.lg {
    display: inline-block;
    height: 100%;
  }
}
.eg .hero img.sm {
  display: inline-block;
  height: 65%;
}
@media only screen and (min-width: 767px) {
  .eg .hero img.sm {
    display: none;
  }
}

.arrow .hero {
  background: url("../assets/hero_arrow.jpg") no-repeat;
  background-position: center 2.4em;
  background-size: cover;
  display: block;
}
@media only screen and (min-width:400) {
  .arrow .hero {
    background-size: cover;
  }
}
@media only screen and (min-width: 767px) {
  .arrow .hero {
    background-position: center 4.5em;
    background-size: cover;
  }
}
@media only screen and (min-width: 1224px) {
  .arrow .hero {
    background-position: center 4.5em;
    background-size: cover;
  }
}
@media only screen and (min-width: 1824px) {
  .arrow .hero {
    background-position: center 4.5em;
    background-size: auto;
  }
}

.lumen .hero {
  background: url("../assets/hero_lumen.jpg") 30% 50%;
  background-size: cover;
}
.lumen .showcase article img {
  max-width: 1234px;
}

.hype .hero {
  background: url("../assets/hero_hype.jpg") 0%;
  background-size: cover;
}

.about .hero {
  background: url("../assets/hero_about.jpg") 20% 50%;
  background-size: cover;
}

.chrome {
  background: linear-gradient(#d2d2d2 50%, #e6e6e6 50%);
  border-radius: 1px 1px 0 0;
  height: 2.2em;
}
.chrome img {
  height: 2.2em;
}
@media only screen and (min-width: 767px) {
  .chrome {
    border-radius: 4px 4px 0 0;
    height: 4.5em;
  }
  .chrome img {
    height: 4.5em;
  }
}

.details {
  grid-column: 1/-1;
  grid-row: 4;
}
.details p strong {
  display: inline-block;
  min-width: 6em;
}
@media only screen and (min-width: 767px) {
  .details {
    grid-column: 1/5;
    grid-row: 5;
  }
}
@media only screen and (min-width: 1224px) {
  .details {
    grid-column: 1/4;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .details {
    grid-column: 1/4;
    grid-row: 4;
  }
}

.showcase {
  display: grid;
  grid-column: 1/-1;
  grid-row: auto;
  grid-gap: 3em;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  grid-template-rows: auto;
}
.showcase article {
  grid-row: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.collapse {
  grid-gap: 0;
}

.dark {
  background-color: black;
  height: 412px;
}

.contact {
  grid-column: 1/12;
  grid-row: 4;
}
@media only screen and (min-width: 767px) {
  .contact {
    grid-column: 1/5;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1224px) {
  .contact {
    grid-column: 1/3;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .contact {
    grid-column: 1/3;
    grid-row: 4;
  }
}

.copy {
  grid-column: 1/-1;
  grid-row: 5;
}
@media only screen and (min-width: 767px) {
  .copy {
    grid-column: 5/12;
    grid-row: 5;
  }
}
@media only screen and (min-width: 1224px) {
  .copy {
    grid-column: 4/11;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .copy {
    grid-column: 4/11;
    grid-row: 4;
  }
}

form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-row: auto;
  grid-column: 1/-1;
  grid-gap: 1.2em 3em;
}
@media only screen and (min-width: 767px) {
  form {
    grid-column: 5/12;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1224px) {
  form {
    grid-column: 4/9;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  form {
    grid-column: 4/9;
    grid-row: 4;
  }
}
form label {
  font-weight: 700;
  margin: 0.3em 0 0.3em;
}
form label.name {
  grid-column: 1/5;
  grid-row: 1;
}
@media only screen and (min-width: 767px) {
  form label.name {
    grid-column: 1/3;
    grid-row: 1;
  }
}
form label.email {
  grid-column: 1/5;
  grid-row: 3;
}
@media only screen and (min-width: 767px) {
  form label.email {
    grid-column: 3/5;
    grid-row: 1;
  }
}
form label.message {
  grid-column: 1/5;
  grid-row: 5;
}
@media only screen and (min-width: 767px) {
  form label.message {
    grid-row: 3;
  }
}
form input, form textarea {
  border: 1px solid #ccc;
  border-radius: 0.3em;
  font-size: 1.5em;
  font-family: "Work Sans", sans-serif;
  padding: 1em;
}
form input:focus, form textarea:focus {
  box-shadow: 0 1em 8em rgba(50, 50, 130, 0.1), 0 0.5em 1em rgba(50, 50, 130, 0.05);
}
form input.name-field {
  grid-column: 1/5;
  grid-row: 2;
}
@media only screen and (min-width: 767px) {
  form input.name-field {
    grid-column: 1/3;
    grid-row: 2;
  }
}
form input.email-field {
  grid-column: 1/5;
  grid-row: 4;
}
@media only screen and (min-width: 767px) {
  form input.email-field {
    grid-column: 3/5;
    grid-row: 2;
  }
}
form textarea.message-field {
  grid-column: 1/5;
  grid-row: 6;
  height: 6em;
}
@media only screen and (min-width: 767px) {
  form textarea.message-field {
    grid-row: 4;
  }
}
form button {
  grid-column: 1/5;
  max-width: 100%;
}
@media only screen and (min-width: 767px) {
  form button {
    max-width: 150px;
  }
}

.caption {
  grid-column: 4/-1;
  grid-row: auto;
}
@media only screen and (min-width: 767px) {
  .caption {
    grid-column: 5/-2;
  }
}
@media only screen and (min-width: 1224px) {
  .caption {
    grid-column: 11/-1;
  }
}
@media only screen and (min-width: 1824px) {
  .caption {
    grid-column: 11/-1;
  }
}

.about .details {
  grid-column: 1/-1;
  grid-row: 5;
}
@media only screen and (min-width: 767px) {
  .about .details {
    grid-column: 1/5;
    grid-row: 5;
  }
}
@media only screen and (min-width: 1224px) {
  .about .details {
    grid-column: 1/3;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .about .details {
    grid-column: 1/3;
    grid-row: 4;
  }
}
.about .copy {
  grid-column: 1/-1;
  grid-row: 4;
}
@media only screen and (min-width: 767px) {
  .about .copy {
    grid-column: 5/12;
    grid-row: 5;
  }
}
@media only screen and (min-width: 1224px) {
  .about .copy {
    grid-column: 4/10;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .about .copy {
    grid-column: 4/10;
    grid-row: 4;
  }
}
.about .caption {
  grid-column: 1/-1;
  grid-row: 6;
}
@media only screen and (min-width: 767px) {
  .about .caption {
    grid-column: 5/-1;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1224px) {
  .about .caption {
    grid-column: 11/-1;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .about .caption {
    grid-column: 11/-1;
    grid-row: 4;
  }
}

.contact .details {
  grid-column: 1/12;
  grid-row: 5;
}
@media only screen and (min-width: 767px) {
  .contact .details {
    grid-column: 1/5;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1224px) {
  .contact .details {
    grid-column: 1/3;
    grid-row: 4;
  }
}
@media only screen and (min-width: 1824px) {
  .contact .details {
    grid-column: 1/3;
    grid-row: 4;
  }
}

hr {
  border-top: #000 1px solid;
  grid-column: 1/-1;
}

footer {
  border-top: 1px solid #000;
  grid-column: 1/-1;
  margin-top: 0.8em;
  padding-top: 2em;
}
footer p {
  font-size: 1.2em;
  letter-spacing: 0.1em;
}

a {
  border-bottom: 1px solid #fff;
  color: #900;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}
a:hover {
  border-bottom: 1px solid #900;
  color: #660000;
  transition: border-bottom 0.6s ease-out;
}
a:hover .thumb {
  box-shadow: 0 1em 8em rgba(50, 50, 130, 0.1), 0 0.5em 1em rgba(50, 50, 130, 0.05);
  transform: scale(0.96);
  transition: 0.1s ease-out;
}
a:hover .overlay {
  transform: translateY(-30%);
  transition: 0.1s ease-out;
}
a:visited {
  color: #660000;
}
a .thumb {
  background-color: #ccc;
  border-radius: 0.3em;
  height: 420px;
  overflow: hidden;
  transition: 0.1s cubic-bezier(0.25, 0.13, 0.52, 1.95);
  width: 100%;
  will-change: transform;
}
a .thumb .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  padding: 3em;
  position: relative;
  transition: 0.2s ease-out;
}
a.locked {
  cursor: url(../assets/lock.svg) 22 22, not-allowed;
}

.work a:hover {
  border: none;
}

@-moz-document url-prefix() {
  a.locked .thumb::after {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url(../assets/lock.svg);
    background-position: center;
    background-size: 5em;
    background-repeat: no-repeat;
    border-radius: 0.3em;
    content: "";
    display: block;
    height: 420px;
    opacity: 0.85;
    transform: translateY(-215%);
  }
}
@media (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  a.locked .thumb::after {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url(../assets/lock.svg);
    background-position: center;
    background-size: 5em;
    background-repeat: no-repeat;
    border-radius: 0.3em;
    content: "";
    display: block;
    height: 420px;
    opacity: 0.85;
    transform: translateY(-215%);
  }
}
@media (-moz-touch-enabled: 1), (pointer: coarse) {
  a.locked .thumb::after {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url(../assets/lock.svg);
    background-position: center;
    background-size: 5em;
    background-repeat: no-repeat;
    border-radius: 0.3em;
    content: "";
    display: block;
    height: 420px;
    opacity: 0.85;
    transform: translateY(-215%);
  }

  .overlay {
    transform: translateY(-30%);
  }
}
a.button, button {
  background-color: #e6e6e6;
  border-bottom: none;
  border-radius: 0.3em;
  color: #666666;
  display: block;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1em 1.2em;
  margin-top: 2em;
  margin-bottom: 1em;
  max-width: 150px;
  transition: background-color 0.8s ease-out, color 1s ease-out;
}

a.button:hover, button:hover {
  background-color: #666666;
  color: #fff;
  transition: background-color 0.2s ease-out, color 0.5s ease-out;
}

ul {
  list-style: none;
  float: right;
}
ul li {
  float: left;
  padding-left: 2em;
}
ul a:link, ul a:visited {
  color: #000;
  border-bottom: 2px #fff solid;
  display: block;
  font-size: 1.4em;
  letter-spacing: 0.2em;
  padding-bottom: 0.8em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-bottom, color, padding-bottom 0.4s, 0.4s, 0.3s ease-out;
  margin: 1em 0 1.4em;
}
ul a:hover {
  border-bottom: 2px #900 solid;
  color: #900;
  padding-bottom: 0.6em;
  transition: border-bottom, color, padding-bottom 0.2s, 0.2s, 0.3s ease-out;
}
ul a.active {
  color: #900;
  font-weight: 700;
  letter-spacing: 0.15em;
}
ul.tags {
  float: left;
  margin-left: -1em;
}
ul.tags li {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2em;
  color: #000;
  float: left;
  letter-spacing: 0.2em;
  margin-right: 0.6em;
  padding: 0.8em 1em;
  text-transform: uppercase;
}

h1 {
  grid-column: 1/-1;
  font-size: 2.8em;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
}
@media only screen and (min-width: 767px) {
  h1 {
    grid-column: 1/-1;
  }
}
@media only screen and (min-width: 1224px) {
  h1 {
    grid-column: 1/-1;
    font-size: 4em;
    margin: 0 0 0.1em;
  }
}

h2, h3, label {
  font-size: 1.2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.3em 0 1em;
}

h2 {
  color: #990000;
  font-weight: 700;
}

h3 {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 0.5em #000;
}

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

.details p {
  font-size: 1.3em;
  padding-bottom: 0;
}

.caption p {
  font-size: 1.1em;
  font-style: italic;
  letter-spacing: 0.05em;
}

.copy p.intro {
  font-size: 1.8em;
  font-weight: 300;
  line-height: 1.5em;
}
@media only screen and (min-width: 1224px) {
  .copy p.intro {
    font-size: 2.4em;
  }
}

.copyright p {
  font-size: 1.2em;
}

.overlay p {
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  text-shadow: 0 0 0.5em #000;
}

/*# sourceMappingURL=style.css.map */
