@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Typography

******************************************************************/
/*
"Web design is 95% typography" — Oliver Reichenstein

When that quote was made in 2006 it was before web fonts, auto-play video,
and animated pop-ups so even if it is 65 or 75% today that is still *most* 
of any web site's design. Understanding some of the basics of typography
(and web typography) will go a long way.

There are lots of web typographic systems out there however many are
overly complex and not intuitive. Thus, we've tried to set some good
defaults that aren't based on confounding mixins here but you may want
to explore web typography further:

https://www.smashingmagazine.com/2009/08/typographic-design-survey-best-practices-from-the-best-blogs/
https://www.smashingmagazine.com/2012/12/css-baseline-the-good-the-bad-and-the-ugly/
http://www.newnet-soft.com/blog/csstypography
http://typecast.com/blog/4-simple-steps-to-vertical-rhythm
https://github.com/StudioThick/megatype
https://sassline.com
http://matejlatin.github.io/Gutenberg/
https://zellwk.com/blog/responsive-typography/
https://github.com/zellwk/typi

Note that most of the typography styles are set in base.scss with
the html, body, and h1–h6 tags so adjust as needed. Set a good baseline
and consider your vertical rhythm.

*/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/* To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
  
  Also, you don't have to include a separate name for 
  each font style...just use the same name and
  declare each style separately. See here:
  http://www.newnet-soft.com/blog/csstypography
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'Styrene B Web';
  src: url("../../library/fonts/StyreneB-Light-Web.eot");
  src: url("../../library/fonts/StyreneB-Light-Web.eot?#iefix") format("embedded-opentype"), url("../../library/fonts/StyreneB-Light-Web.woff2") format("woff2"), url("../../library/fonts/StyreneB-Light-Web.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal; }
/*********************
FONT STACKS
*********************/
/*
 Commented out since WP uses system fonts now but if you can't let go I won't be upset. 
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/



******************************************************************/
/*********************
TINTS/SHADES
https://css-tricks.com/snippets/sass/tint-shade-functions/
*********************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*--------------------------------------------------
Flexbox SASS mixins
The spec: http://www.w3.org/TR/css3-flexbox
https://gist.github.com/richardtorres314/26b18e12958ba418bb37993fdcbfc1bd

Checkout this Flexbox guide for more info:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

2018: probably can remove these with autoprefixer(?)
---------------------------------------------------*/
/*@include flexbox(); */
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
      plan your menus and drop-downs wisely.
      */ }
      .menu ul li a {
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */ }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
    margin-top: 11px; }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
    margin-top: 11px; }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
    margin-top: 11px; }

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

This stylesheet will be used for tablets and larger devices
like desktops. The grid starts working here and you can get
busy with more stylings.

******************************************************************/
/*********************
GLOBAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
HEADER STYLES
*********************/
#mobileheader {
  display: none; }

#header {
  grid-template-columns: 11fr 19fr 8fr 2fr;
  width: 100%; }
  #header .sitetitle {
    margin-right: 12px; }
  #header .social {
    text-align: right;
    padding-right: 36px; }
  #header .mobilemenulink {
    display: none; }
  #header .mobilelocation {
    display: none; }

/*********************
NAVIGATION STYLES
*********************/
.headernav .main-menu {
  display: flex; }
  .headernav .main-menu li {
    padding-right: 1.6em; }

/*********************
SIDEBAR AND MAIN
*********************/
.sidebar {
  padding-left: 36px;
  padding-bottom: 36px; }
  .sidebar img {
    position: fixed;
    bottom: 36px;
    left: 36px; }

#main {
  margin: 36px;
  margin-left: 0px; }

/*********************
ARCHIVE - NEWS
*********************/
.newsmain article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "images content"; }
  .newsmain article .news-images {
    grid-area: images;
    padding-right: 36px; }
    .newsmain article .news-images img:last-child {
      padding-bottom: 0px; }
  .newsmain article .news-content {
    grid-area: content; }

/*********************
PAGE - ABOUT
*********************/
.aboutmain {
  max-width: 500px;
  letter-spacing: -0.02em;
  line-height: 20px; }

/*********************
ARCHIVE - WORKS
*********************/
.worklistsidebar {
  display: flex; }
  .worklistsidebar .categories {
    position: fixed;
    left: 36px;
    bottom: 36px;
    padding: 0px; }
    .worklistsidebar .categories li {
      display: block;
      width: 100%; }
      .worklistsidebar .categories li a {
        color: #969696;
        transition: 200ms color; }
        .worklistsidebar .categories li a:hover, .worklistsidebar .categories li a:focus {
          text-decoration: none;
          color: #000; }
      .worklistsidebar .categories li.current-cat a {
        text-decoration: none;
        color: #000; }

/* GRID VERSION */
/* #main.worklistmain{
    padding-left: 0;
    padding-right: $margin;
    // margin-left: -1.5em;
    padding-top: 0em;
    display: grid;
    // grid-template-columns: 1fr 1fr 1fr;
    // grid-gap:$margin;

    // display:flex;
    // flex-flow: row wrap;

    .work{
        // height: 100px;
        flex-basis: auto;

        width: 30%;
        height: 300px;
        // padding: 1em;
        padding-top:0;
        box-sizing: border-box;

        a{
            img{
                max-height:300px;//30vh;
                width:auto;
            }
        }
    }
} */
/* MASONRY VERSION */
#main.worklistmain {
  padding: 0px;
  margin-right: 1em;
  margin-left: -1em;
  margin-top: 1.5em;
  margin-bottom: 0; }
  #main.worklistmain .work {
    width: 33%;
    padding: 0 1em;
    box-sizing: border-box; }
    #main.worklistmain .work a {
      padding-bottom: 2em; }
      #main.worklistmain .work a img {
        height: auto;
        width: 100%; }

/*********************
SINGLE WORK
*********************/
#main.workmain {
  padding-left: 0em;
  cursor: url("../images/arrow.png") 53 21, default; }

.worksidebar {
  padding-top: 1.5em;
  padding-right: 1.5em; }
  .worksidebar .head .slidenb {
    display: none; }

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
#inner-header, #inner-footer {
  margin: 0 auto;
  max-width: 1170px; }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/

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