/******************************************************************
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/
*/
/******************************
 * Custom Styles Muscle Beaver
 ******************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
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.
*/
/*  @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;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
body {
  font-family: "Akzidenz Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4em; }

h1 {
  font-family: "Fortescue", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 2em;
  line-height: 1.4em;
  text-transform: uppercase; }

h2 {
  font-size: 2em;
  line-height: 1.4em;
  font-weight: normal !important; }

h3 {
  font-family: "Fortescue", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 1em;
  line-height: 1.4em;
  text-transform: uppercase; }

p {
  font-size: 1em;
  line-height: 1.4em;
  -ms-word-break: normal;
  -ms-word-wrap: break-word;
  word-break: normal;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3; }

/******************************************************************
Site Name: Musclebeaver
Author: Moby Digg
Stylesheet: Mixin Stylesheet
******************************************************************/
/*********************
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? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
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.
*/
/*********************
 * h1, h2, h3,... Styles
 ********************/
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

/*********************
HEADER STYLES
*********************/
/*********************
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; }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right; }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both; }

/* end .entry-content */
#main.news {
  padding: 0 10%; }

.news-headline-wrapper h2 {
  line-height: 54vw; }

/*********************
PROJECT SINGLE
*********************/
/*********************
ABOUT
*********************/
.about-text {
  max-width: 480px;
  float: left;
  padding-top: 50px; }
  .about-text ul {
    margin: 0;
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 20px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;
    /* Firefox */
    column-gap: 20px; }

section.teammember div {
  display: inline-block; }

.member-desc {
  width: 50%;
  height: 41vw; }
  .member-desc h2 {
    margin: 11vw 0; }

.member-img {
  width: 50%; }

/******************************
 * Contact
 ******************************/
.mb-contact-info {
  font-size: 1.5em;
  line-height: 1.3em; }

/*********************
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

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/********************* 
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 760px; }

/*********************
HEADER STYLES
*********************/
/*********************
NAVIGATION STYLES
*********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav ul {
    background: #333;
    margin-top: 0; }
  .nav li {
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */ }
    .nav li a {
      border-bottom: 0;
      /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      .nav li a:hover, .nav li a:focus {
        color: #fff;
        text-decoration: underline; }
    .nav li ul.sub-menu, .nav li ul.children {
      margin-top: 0;
      border: 1px solid #ccc;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999;
      /* highlight sub-menu current page */ }
      .nav li ul.sub-menu li, .nav li ul.children li {
        /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
        .nav li ul.sub-menu li a, .nav li ul.children li a {
          padding-left: 10px;
          border-right: 0;
          display: block;
          width: 180px;
          border-bottom: 1px solid #ccc; }
        .nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .nav li ul.sub-menu li ul, .nav li ul.children li ul {
          top: 0;
          left: 100%; }
    .nav li:hover > ul {
      top: auto;
      visibility: visible; }

/* end .nav */
#main-nav-wrapper {
  width: 50%; }
  #main-nav-wrapper.active {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  #main-nav-wrapper #main-nav {
    margin-top: 100px;
    margin-left: 60px; }
  #main-nav-wrapper .main-nav-address {
    position: absolute;
    bottom: 50px;
    left: 60px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-family: "Fortescue", "Georgia", Cambria, Times New Roman, Times, serif; }
    #main-nav-wrapper .main-nav-address a {
      color: #fff; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em; }

.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em; }

.widget {
  padding: 0 10px;
  margin: 2.2em 0; }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
HOME
*********************/
/* Moved to 900up
.project-img {
  //max-height: 500px;
}

.entry-content img {
  min-width: 100%;
  width: auto; // resetting width
  height: inherit;
}

.home .hentry {
  width: auto; // resetting width
}

.landscape-link {
  width: auto; // resetting width
}
*/
/*********************
PROJECT SINGLE
*********************/
.hentry header {
  width: 580px; }

.making-of, .project-of {
  border: 10px solid transparent; }
  .making-of:hover, .project-of:hover {
    border: 10px solid #1d1d1b; }
  .making-of .making-of-txt, .making-of .project-of-txt, .project-of .making-of-txt, .project-of .project-of-txt {
    width: 50%;
    height: 185px;
    padding-right: 10px; }
    .making-of .making-of-txt .making-of-txt-inner, .making-of .making-of-txt .project-of-txt-inner, .making-of .project-of-txt .making-of-txt-inner, .making-of .project-of-txt .project-of-txt-inner, .project-of .making-of-txt .making-of-txt-inner, .project-of .making-of-txt .project-of-txt-inner, .project-of .project-of-txt .making-of-txt-inner, .project-of .project-of-txt .project-of-txt-inner {
      padding: 0 50px; }
  .making-of .making-of-img, .making-of .project-of-img, .project-of .making-of-img, .project-of .project-of-img {
    float: right;
    height: 185px; }
    .making-of .making-of-img img, .making-of .project-of-img img, .project-of .making-of-img img, .project-of .project-of-img img {
      padding: 0;
      height: 100%;
      width: auto; }

.post-navigation .previous-link {
  height: 200px;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms; }
  .post-navigation .previous-link .icon-previous {
    top: 87px;
    font-size: 1em;
    text-indent: 50px;
    margin-left: 40px; }
.post-navigation .prev-img {
  opacity: 1;
  -webkit-transition: ease-in-out 150ms;
  transition: ease-in-out 150ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
  margin-left: 150px;
  display: block; }
.post-navigation .next-link {
  height: 200px;
  -webkit-transition: ease-in-out 500ms;
  transition: ease-in-out 500ms; }
  .post-navigation .next-link .icon-next {
    top: 87px;
    font-size: 1em;
    text-indent: -40px;
    margin-right: 40px; }
.post-navigation .next-img {
  opacity: 1;
  -webkit-transition: ease-in-out 150ms;
  transition: ease-in-out 150ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
  margin-right: 112px;
  float: right;
  display: block; }

.previous-link.inactive, .next-link.inactive {
  background: none !important; }

.previous-link.inactive .prev-img {
  opacity: 0; }

.next-link.inactive .next-img {
  opacity: 0; }

/*********************
ABOUT
*********************/
.about-headline {
  float: left; }

.about-text {
  max-width: 680px;
  float: left;
  padding-top: 50px; }
  .about-text ul {
    width: 760px;
    margin: 0;
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 20px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;
    /* Firefox */
    column-gap: 20px; }

.member-desc h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin: 11vw 0; }

/******************************
 * Contact
 ******************************/
.contact-page-bg {
  width: 100%;
  height: 100%;
  position: relative; }
  .contact-page-bg #content {
    background-color: transparent;
    z-index: 1; }
  .contact-page-bg::after {
    content: '\A';
    position: absolute;
    background: #fafafa;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%; }

#main.contact article {
  width: 100%; }

section.mb-contact {
  display: flex; }

.mb-mascot-wrapper {
  display: inline-block;
  width: 50%;
  overflow: hidden;
  margin-top: 62px;
  padding: 10% 0%; }

#clipping-bg {
  position: relative;
  width: 400px;
  height: 300px;
  margin: 80px auto;
  background-image: url(../images/contact01.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 400px 300px; }

#clipping-ol {
  position: absolute;
  width: 400px;
  height: 300px;
  top: 0;
  left: 0;
  -webkit-clip-path: circle(30px at 35px 35px);
  clip-path: circle(30px at 35px 35px); }

.mb-contact-info {
  display: inline-block;
  width: 50%;
  text-align: left;
  padding: 10% 4%; }
  .mb-contact-info .mb-contact-info-inner {
    margin-top: 115px;
    margin-left: 5%; }

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.footer-links ul li {
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }

/* end .footer-links */
/*********************
POSTS & CONTENT STYLES
*********************/
#main.news {
  padding: 0; }

.news-post .article-header {
  width: 100%;
  height: 100%; }

.news-post:nth-child(odd) {
  margin-right: 10px;
  overflow: hidden; }

.news-post:nth-child(even) {
  margin-left: 10px;
  overflow: hidden; }

.news-post section.entry-content {
  max-height: 378px; }
  .news-post section.entry-content .gif-size-adjust-landscape, .news-post section.entry-content .gif-size-adjust-portrait {
    width: 100%; }

/******************************************************************
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.

******************************************************************/
.wrap {
  max-width: 1180px; }

/*********************
HEADER STYLES
*********************/
#logo a img {
  width: auto;
  height: inherit; }

#nav-top-right ul {
  padding: 2em 0; }

#loading-screen img {
  margin: 40vh auto; }

#top-up-btn {
  background: url(../images/sprite_icons_V2.png) -15px -496px;
  width: 21px;
  height: 50px;
  position: fixed;
  bottom: -2em;
  right: 3.5em;
  opacity: 0;
  z-index: 10;
  text-decoration: none;
  -webkit-transition: ease-in-out 250ms;
  transition: ease-in-out 250ms;
  display: block; }
  #top-up-btn.active {
    opacity: 1;
    cursor: pointer;
    bottom: 3em; }
    #top-up-btn.active:hover {
      opacity: 0.6; }

/*********************
NAVIGATION STYLES
*********************/
/*********************
HOME
*********************/
.project-hover-wrap {
  width: 100%;
  height: 100%;
  max-height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: block;
  -webkit-transition: cubic-bezier(0.5, 0.66, 0.21, 0.99) 300ms;
  transition: cubic-bezier(0.5, 0.66, 0.21, 0.99) 300ms; }
  .project-hover-wrap:hover {
    opacity: 1;
    cursor: pointer; }
  .project-hover-wrap .project-hover {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    margin-top: 240px;
    padding: 0 50px; }
    .project-hover-wrap .project-hover h3 {
      margin: 0; }
      .project-hover-wrap .project-hover h3 a:hover {
        text-decoration: none; }

/*********************
POSTS & CONTENT STYLES
*********************/
.news-post .article-header {
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  -webkit-transition: ease-in-out 250ms;
  transition: ease-in-out 250ms; }
.news-post .article-header:hover {
  opacity: 1; }

/*********************
CONTACT
*********************/
.mb-contact-info .mb-contact-info-inner {
  margin-left: 10%; }

/*********************
ABOUT
*********************/
.about-text {
  padding-top: 50px; }

.about-text ul {
  width: 760px; }

.member-desc {
  width: 50%; }
  .member-desc h2 {
    margin: 92px 0; }

/*********************
FOOTER STYLES
*********************/
.footer-left, .footer-right {
  height: 200px;
  display: table;
  margin: 30px 0 30px 0;
  float: left;
  width: 50%; }

.footer-left-inner, .footer-right-inner {
  padding-left: 30px; }
  .footer-left-inner span:first-child, .footer-right-inner span:first-child {
    display: block; }

.footer-left-fu {
  margin-top: 9px;
  float: left;
  display: block; }

.footer-social-icon {
  margin: 5px; }
  .footer-social-icon:hover .social-icon-hover {
    left: 0;
    -webkit-transition: left 250ms ease-in-out;
    transition: left 250ms ease-in-out;
    z-index: 4; }
  .footer-social-icon:hover .social-icon-std {
    left: 30px;
    -webkit-transition: left 250ms ease-in-out;
    transition: left 250ms ease-in-out; }
  .footer-social-icon .social-icon-std {
    height: inherit;
    left: 0;
    -webkit-transition: left 250ms ease-in-out;
    transition: left 250ms ease-in-out;
    position: relative;
    background-color: black; }
  .footer-social-icon .social-icon-hover {
    height: inherit;
    position: relative;
    top: -30px;
    left: -30px;
    transition: left 250ms ease-in-out; }

.footer-right-txt {
  float: left; }

.copyright {
  clear: both; }

#inner-footer .copyright {
  text-align: center;
  font-size: 0.8em;
  color: #6b6b6b;
  margin-bottom: 2em; }

/*
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 { ... }

*/