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

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: 'Body';
  src: url("../fonts/aperculight3.eot");
  src: url("../fonts/aperculight3-.eot#iefix") format("embedded-opentype"), url("../fonts/aperculight3.woff") format("woff"), url("../fonts/aperculight3.ttf") format("truetype"), url("../fonts/aperculight3.svg#aperculight3") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Mono';
  src: url("../fonts/ocrb10bt.eot");
  src: url("../fonts/ocrb10bt-.eot#iefix") format("embedded-opentype"), url("../fonts/ocrb10bt.woff") format("woff"), url("../fonts/ocrb10bt.ttf") format("truetype"), url("../fonts/ocrb10bt.svg#ocrb10bt") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Maison Neue';
  src: url("../fonts/maisonneuelight.eot");
  src: url("../fonts/maisonneuelight-.eot#iefix") format("embedded-opentype"), url("../fonts/maisonneuelight.woff") format("woff"), url("../fonts/maisonneuelight.ttf") format("truetype"), url("../fonts/maisonneuelight.svg#maisonneuelight") 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.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -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/

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

******************************************************************/
.d-all {
  float: left;
  padding-right: 0.75em;
  width: 100%;
  padding-right: 0; }

.d-1of2 {
  float: left;
  padding-right: 0.75em;
  width: 50%; }

.d-1of3 {
  float: left;
  padding-right: 0.75em;
  width: 33.33%; }

.d-2of3 {
  float: left;
  padding-right: 0.75em;
  width: 66.66%; }

.d-1of4 {
  float: left;
  padding-right: 0.75em;
  width: 25%; }

.d-3of4 {
  float: left;
  padding-right: 0.75em;
  width: 75%; }

.d-1of5 {
  float: left;
  padding-right: 0.75em;
  width: 20%; }

.d-2of5 {
  float: left;
  padding-right: 0.75em;
  width: 40%; }

.d-3of5 {
  float: left;
  padding-right: 0.75em;
  width: 60%; }

.d-4of5 {
  float: left;
  padding-right: 0.75em;
  width: 80%; }

.d-1of6 {
  float: left;
  padding-right: 0.75em;
  width: 16.6666666667%; }

.d-1of7 {
  float: left;
  padding-right: 0.75em;
  width: 14.2857142857%; }

.d-2of7 {
  float: left;
  padding-right: 0.75em;
  width: 28.5714286%; }

.d-3of7 {
  float: left;
  padding-right: 0.75em;
  width: 42.8571429%; }

.d-4of7 {
  float: left;
  padding-right: 0.75em;
  width: 57.1428572%; }

.d-5of7 {
  float: left;
  padding-right: 0.75em;
  width: 71.4285715%; }

.d-6of7 {
  float: left;
  padding-right: 0.75em;
  width: 85.7142857%; }

.d-1of8 {
  float: left;
  padding-right: 0.75em;
  width: 12.5%; }

.d-1of9 {
  float: left;
  padding-right: 0.75em;
  width: 11.1111111111%; }

.d-1of10 {
  float: left;
  padding-right: 0.75em;
  width: 10%; }

.d-1of11 {
  float: left;
  padding-right: 0.75em;
  width: 9.09090909091%; }

.d-1of12 {
  float: left;
  padding-right: 0.75em;
  width: 8.33%; }

.full {
  width: 100%;
  float: left;
  overflow: hidden; }

.last-col {
  float: right;
  padding-right: 0 !important; }

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

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

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: 87%; }

.inner {
  width: 98%;
  margin: 0 auto;
  overflow: hidden; }

/*********************
HEADER STYLES
*********************/
/*********************
NAVIGATION STYLES
*********************/
.nav {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */ }
    .nav li a {
      /*
      you can use hover styles here even though this size
      has the possibility of being a mobile device.
      */ }
    .nav li ul.sub-menu,
    .nav li ul.children {
      /* 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.
        */ }

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

/* 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 */
/*********************
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 */
@media screen and (max-height: 620px) {
  #hero #hero_content {
    padding-top: 2%; }
    #hero #hero_content .button {
      margin-top: 4%; }
  #hero #top .wrap {
    padding: 40px 0; } }
#mobile_menu_toggle {
  margin: 50px 0px; }

#mobile_menu ul {
  margin: 60px; }

#nav {
  -webkit-transition: background 0.4s ease-in-out;
  -moz-transition: background 0.4s ease-in-out;
  -o-transition: background 0.4s ease-in-out;
  transition: background 0.4s ease-in-out;
  border-bottom: 1px solid transparent; }
  #nav.fade {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    padding-bottom: 0; }
    #nav.fade ul li a {
      color: #000; }
  #nav.fixed {
    position: fixed;
    top: 0;
    z-index: 100;
    bottom: auto; }
    #nav.fixed .wrap {
      padding: 10px 0; }
    #nav.fixed #extended_logo {
      float: left;
      position: relative;
      top: 15px; }
      #nav.fixed #extended_logo img {
        width: 120px;
        height: auto; }
  #nav.up {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin-bottom: 0; }

@media screen and (min-height: 1000px) {
  #hero #top .wrap {
    padding: 75px 0; }
  #hero.internal_hero #hero_content {
    padding-top: 30px; }
  #hero #hero_content {
    padding-top: 10%; }
    #hero #hero_content .button {
      margin-top: 14%; } }
.home_section h2, .about_section h2, .section h2 {
  font-size: 1.5em; }
.home_section.center, .about_section.center, .section.center {
  text-align: center; }
.home_section .wrap, .about_section .wrap, .section .wrap {
  padding: 100px 0; }

.quote {
  margin: 0 auto 30px auto; }

#header_internal .menu {
  float: right;
  z-index: 100;
  position: relative;
  top: 5px; }
  #header_internal .menu li {
    display: inline-block;
    font-family: "Mono";
    text-transform: uppercase; }
    #header_internal .menu li a {
      -webkit-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      color: #000;
      display: block;
      padding: 0 30px 0 0; }

.blog_item {
  padding: 40px; }
  .blog_item.last-col {
    padding: 40px;
    padding-right: 40px !important; }
  .blog_item.d-1of2 h1 {
    height: 106px; }
  .blog_item.d-1of3 h1 {
    height: 159px; }
  .blog_item h1 {
    overflow: hidden;
    font-size: 2em; }
  .blog_item h5 {
    font-size: 0.8em; }

#work_grid .work_grid_item .work_grid_item_info h1 {
  overflow: hidden;
  font-size: 2em; }
#work_grid .work_grid_item .work_grid_item_info h5 {
  font-size: 0.8em; }

.case_study_intro .button {
  margin-top: 60px; }
.case_study_intro .last-col {
  padding-left: 50px; }
.case_study_intro .wrap {
  padding: 120px 0; }
.case_study_intro h2 {
  font-size: 2.5em; }

.early_explorations .early_exploration {
  width: 25%;
  padding-bottom: 25%; }

.title_wrap {
  padding: 60px 0; }
  .title_wrap h5 {
    margin: 0;
    line-height: 1; }

.about_section h5 {
  margin-bottom: 60px; }

#about_intro .wrap {
  max-width: 0 auto; }

.case_study_section .wrap {
  padding: 120px 0; }

.customer_quote .customer_quote_content {
  font-size: 1.5em; }
.customer_quote h5 {
  margin-top: 60px; }

.final_logo img {
  width: 70%;
  max-width: 500px; }
.final_logo .wrap {
  padding: 220px 0; }

.early_explorations .title_wrap {
  padding: 60px 0; }

.desktop_designs .title_wrap {
  padding: 60px 0 0 0; }
.desktop_designs .desktop_container {
  width: 80% !important;
  margin: 80px auto; }
  .desktop_designs .desktop_container .prev, .desktop_designs .desktop_container .next {
    top: -60px;
    display: block; }

.ipad_designs .inner {
  width: 85%;
  padding-bottom: 0; }
.ipad_designs .ipad_shot {
  float: left;
  width: 46% !important;
  margin: 120px 2%; }

.rotate {
  display: block; }

.mobile_designs .rotate {
  top: 135px; }
.mobile_designs .inner {
  width: 90%; }
.mobile_designs .mobile_shot {
  width: 23% !important;
  margin: 120px 1%; }
.mobile_designs .title_wrap {
  padding: 60px 0 0 0; }

.internal_title {
  padding: 70px 0; }
  .internal_title .title {
    width: 70%;
    float: left;
    overflow: hidden; }
  .internal_title h5 {
    margin-bottom: 30px;
    line-height: 1; }
  .internal_title h1 {
    font-family: "kepler-std-display", Cambria, Times New Roman, Times, serif;
    font-size: 3em;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0; }
  .internal_title .subtitle {
    width: 80%;
    overflow: hidden; }
    .internal_title .subtitle h2 {
      font-weight: 200;
      font-size: 1.4em;
      color: #7f7f7f;
      margin-top: 5px; }

.single_title {
  height: 400px; }
  .single_title h1 {
    font-size: 3em;
    width: 50%; }

.single_content .wrap {
  width: 80%;
  margin: 80px auto; }
  .single_content .wrap h1 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 2.5em; }
  .single_content .wrap h2 {
    font-size: 1.75em; }
  .single_content .wrap blockquote {
    margin: 100px 0 100px -5%;
    border: 0; }

#reply_div .respond-form {
  padding: 80px 0; }

.comment ul.children .comment {
  margin-top: 60px;
  padding: 30px;
  margin-left: 10px; }

.comments_container .wrap {
  padding: 80px 0; }

#contact_title h1 span {
  color: #c76c5d;
  display: inline-block; }
  #contact_title h1 span #cursor {
    height: 50px;
    width: 2px;
    background: #cecece;
    position: relative;
    top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block; }

#contact_form_container .wrap {
  padding: 20px 0; }

#map {
  height: 500px; }

#hero_content_container {
  height: 700px; }

#hero_container {
  height: 100%; }

.frame_top, .frame_bottom {
  height: 5px; }

.frame_right, .frame_left {
  width: 5px; }

#hero {
  height: 700px; }
  #hero #hero_bg {
    position: absolute;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    -ms-behavior: url(../backgroundsize.min.htc);
    z-index: 2; }
  #hero #blackbg2 {
    width: 100%;
    height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    background: #000; }
  #hero #top .wrap {
    padding: 60px 0; }
  #hero #hero_content {
    padding-top: 10%; }
    #hero #hero_content h2 {
      font-size: 3em;
      width: 500px; }

.ipad_up {
  display: block; }

#logo {
  width: 70px;
  height: 70px; }

#services #services_content {
  padding-left: 60px;
  position: relative;
  top: -10px; }

.home_section, .about_section {
  padding: 0px 0; }
  .home_section h2, .about_section h2 {
    margin-top: 30px;
    font-size: 2.3em; }
  .home_section h5, .about_section h5 {
    margin-bottom: 30px; }
  .home_section .button, .about_section .button {
    margin-top: 60px; }

.services_engaged {
  margin: 0; }

#home_gallery, #project_gallery {
  height: 500px; }
  #home_gallery ul, #project_gallery ul {
    width: 100%;
    height: 500px; }

#studio_shot {
  height: 500px; }

.mobile {
  display: none; }

#latest_projects .slider li {
  height: 500px; }

#latest_blog {
  height: 340px;
  overflow: hidden; }

.prev, .next {
  position: absolute;
  top: 340px;
  height: 20px;
  width: auto;
  z-index: 3;
  text-indent: -10000px; }

#home_services {
  background: #fff; }
  #home_services .value {
    width: 25%;
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0; }
  #home_services h2 {
    font-size: 2em; }
  #home_services .button {
    margin: 100px auto 0 auto; }

#footer .wrap {
  padding: 80px 0 50px 0; }
  #footer .wrap .social {
    display: block;
    float: right;
    top: -7px;
    margin-left: 20px;
    width: auto; }
    #footer .wrap .social li a {
      margin: 0 0 0 15px;
      opacity: 1; }
      #footer .wrap .social li a img {
        width: 15px; }
  #footer .wrap #logo {
    float: right; }
  #footer .wrap #legal {
    margin-top: 120px;
    font-size: 0.8em; }

#about_intro .wrap {
  padding: 50px 0 100px 0; }

#about_intro .d-1of2 {
  font-size: 1.2em;
  padding-right: 40px; }
  #about_intro .d-1of2.last-col {
    padding-left: 40px; }

#about_section_2 {
  height: 400px; }
  #about_section_2 .d-1of3 {
    height: 400px; }

.larger_text {
  font-size: 1.2em; }

#team .wrap {
  padding: 50px 0 50px 0; }
#team .d-1of5 {
  height: 220px; }

#team .d-1of5 {
  background-size: 100% auto;
  background-position: bottom; }

.grid_list {
  width: 105%; }
  .grid_list li {
    width: 33.3333%;
    float: left;
    padding-right: 50px;
    margin-bottom: 30px; }
    .grid_list li h2 {
      font-family: "kepler-std-display", Cambria, Times New Roman, Times, serif;
      font-size: 1.8em; }
  .grid_list#main_services li {
    width: 50%; }

#instafeed div {
  width: 25%;
  padding-bottom: 25%; }

#work_grid .work_grid_item {
  padding-bottom: 33.333%;
  width: 50%; }
  #work_grid .work_grid_item .work_grid_item_info {
    padding: 40px; }

.case_study_title {
  height: 400px; }
  .case_study_title .services_engaged {
    display: block; }
  .case_study_title .case_study_title_info {
    z-index: 3;
    position: absolute;
    bottom: 35%;
    width: 100%;
    left: 0; }
    .case_study_title .case_study_title_info h1 {
      font-size: 4.3em; }

#services {
  background: #fff; }

.studio_gallery_item {
  width: 33.333333%;
  padding-bottom: 40%;
  float: left;
  overflow: hidden;
  position: relative;
  background-size: cover;
  -ms-behavior: url(../backgroundsize.min.htc);
  background-position: center; }
  .studio_gallery_item#studio_gallery_4 {
    width: 100%;
    padding-bottom: 66.666%; }
  .studio_gallery_item#studio_gallery_5 {
    width: 50%;
    padding-bottom: 50%; }
  .studio_gallery_item#studio_gallery_3 {
    width: 33.333333%;
    padding-bottom: 40%; }
  .studio_gallery_item#studio_gallery_6 {
    width: 50%;
    padding-bottom: 50%; }
  .studio_gallery_item.w_1 {
    width: 100%; }
  .studio_gallery_item.h_2 {
    padding-bottom: 66.6666%; }
  .studio_gallery_item.h_1 {
    padding-bottom: 50%; }
  .studio_gallery_item.w_2 {
    width: 50%; }

.description .wrap {
  padding: 60px 0; }

.single_career ul {
  margin-bottom: 60px;
  margin-top: 0; }
.single_career .button {
  float: left; }
.single_career h2 {
  margin-top: 60px;
  margin-bottom: 30px; }
.single_career .no_agencies {
  float: left;
  font-size: 0.8em;
  font-style: italic;
  margin: 35px 0 0 40px;
  opacity: 0.6; }

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

******************************************************************/
.desktop_up {
  display: block; }

#hero_content_container {
  position: fixed;
  height: 100%; }

#hero_container {
  display: none;
  height: 100%; }

#hero {
  height: 100%; }
  #hero #hero_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    background-size: cover;
    background-position: center;
    z-index: 1; }
  #hero #hero_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2; }
  #hero #blackbg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    z-index: 3; }
  #hero #blackbg2 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000; }
  #hero #top .wrap {
    padding: 60px 0; }
  #hero #hero_content {
    padding-top: 10%; }
    #hero #hero_content h2 {
      font-size: 4em;
      width: 600px; }

#body_container, #internal_container {
  top: 100%; }

.ipad {
  display: none; }

#services #services_content {
  padding-left: 160px; }

#latest_blog {
  height: auto; }

#latest_projects .prev, #latest_projects .next {
  position: absolute;
  top: 330px;
  width: 20px;
  height: 20px;
  z-index: 3;
  text-indent: -10000px; }
#latest_projects .prev {
  background: url(../images/arrow_left.png);
  -ms-behavior: url(http://new.brightbyte.co.uk/wp-content/themes/brightbyte/library/backgroundsize.min.htc);
  left: 0;
  margin-left: 5%;
  background-size: 20px auto;
  background-repeat: no-repeat; }
#latest_projects .next {
  background: url(../images/arrow_right.png);
  -ms-behavior: url(http://new.brightbyte.co.uk/wp-content/themes/brightbyte/library/backgroundsize.min.htc);
  right: 0;
  background-size: 20px auto;
  background-repeat: no-repeat;
  margin-right: 5%; }

.quote {
  width: 70%; }
  .quote .quote_slides li {
    height: 300px; }

.blog_item {
  padding: 80px; }
  .blog_item.last-col {
    padding: 80px;
    padding-right: 80px !important; }
  .blog_item h1 {
    font-size: 2.5em; }

#work_grid .work_grid_item .work_grid_item_info h1 {
  overflow: hidden;
  font-size: 2.5em;
  line-height: 1.5em; }
#work_grid .work_grid_item .work_grid_item_info h5 {
  font-size: 0.8em; }

.internal_title {
  padding: 100px 0;
  width: 100%; }
  .internal_title .subtitle {
    width: 60%;
    float: right; }
    .internal_title .subtitle h2 {
      font-size: 1.5em; }
  .internal_title .title {
    width: 30%; }

#about_intro {
  padding-top: 0; }
  #about_intro .wrap {
    padding: 100px 0 100px 0; }

.larger_text {
  font-size: 1.5em; }

.grid_list li {
  padding-right: 70px;
  margin-bottom: 50px; }
  .grid_list li h2 {
    font-size: 2em; }

.frame_top, .frame_bottom {
  height: 15px; }

.frame_right, .frame_left {
  width: 15px; }

.case_study_title {
  height: 600px; }
  .case_study_title .case_study_title_info {
    bottom: 30%; }
    .case_study_title .case_study_title_info .button {
      margin: 50px auto 0 auto; }

#team .wrap {
  padding: 100px 0 50px 0; }
#team .d-1of5 {
  background-size: auto 100%;
  height: 365px; }

.case_study_intro .last-col {
  padding-left: 0px; }

.desktop_designs .title_wrap {
  padding: 60px 0 0 0; }
.desktop_designs .desktop_container {
  width: 70% !important;
  margin: 120px auto; }
  .desktop_designs .desktop_container .prev, .desktop_designs .desktop_container .next {
    top: -60px; }

.customer_quote .customer_quote_content {
  width: 90%;
  margin: 0 auto;
  font-size: 1.5em; }

.single_title {
  height: 600px; }
  .single_title h1 {
    font-size: 4em; }

.single_content .wrap {
  width: 70%; }

#invite {
  font-size: 1.5em; }
  #invite p {
    float: none;
    width: 90%;
    margin: 0 auto; }

#footer .wrap {
  padding: 80px 0;
  padding-bottom: 150px; }
  #footer .wrap ul {
    padding-right: 90px; }

@media only screen and (max-height: 678px) {
  #hero #hero_content {
    padding-top: 0; } }
@media only screen and (min-height: 678px) and (max-height: 768px) {
  #hero #hero_content {
    padding-top: 4%; }

  .internal_title {
    padding-top: 50px; } }
@media only screen and (max-height: 900px) {
  #hero #hero_content h2 {
    font-size: 3.5em;
    width: 65%; }

  .frame_top, .frame_bottom {
    height: 10px; }

  .frame_right, .frame_left {
    width: 10px; } }
.single_career .internal_title {
  padding-bottom: 70px; }

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

*/

/* Localized */