/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/


/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */


/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/


/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */


/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/


/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to 'false':
 */


/**
 * Is this build mobile first? Setting to 'true' means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */


/**
 * Set the spacing between your grid items.
 */


/**
 * Would you like Sass' silent classes, or regular CSS classes?
 */


/**
 * Would you like push and pull classes enabled?
 */


/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */


/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */


/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to 'true'.
 */


/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin'!
 */


/*------------------------------------*\
    $MIXINS
\*------------------------------------*/


/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */


/**
 * Drop relative positioning into silent classes which can't take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */


/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/


/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns' gutters.
 */

.grid {
    list-style: none;
    /* [1] */
    margin: 0;
    /* [2] */
    padding: 0;
    /* [2] */
    margin-left: 0;
    /* [3] */
}

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */

.grid__item {
    display: inline-block;
    /* [1] */
    padding-left: 0;
    /* [2] */
    vertical-align: top;
    /* [3] */
    width: 100%;
    /* [4] */
    -webkit-box-sizing: border-box;
    /* [5] */
    -moz-box-sizing: border-box;
    /* [5] */
    box-sizing: border-box;
    /* [5] */
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */

.grid--rev {
    direction: rtl;
    text-align: left;
}
.grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
}

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */

.grid--full {
    margin-left: 0;
}
.grid--full > .grid__item {
    padding-left: 0;
    padding-right: 0;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */

.grid--right {
    text-align: right;
}
.grid--right > .grid__item {
    text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */

.grid--center {
    text-align: center;
}
.grid--center > .grid__item {
    text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */

.grid--middle > .grid__item {
    vertical-align: middle;
}
.grid--bottom > .grid__item {
    vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */


/* Overridden by actual narrow grid.
.grid--narrow{
    margin-left:-($gutter / 2);

    > .grid__item{
        padding-left:$gutter / 2;
    }
}
*/


/**
 * Create grids with wider gutters. Extends `.grid`.
 */

.grid--wide {
    margin-left: 0;
}
.grid--wide > .grid__item {
    padding-left: 0;
}

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/


/**
 * Create our width classes, prefixed by the specified namespace.
 */


/**
 * Our regular, non-responsive width classes.
 */


/**
 * Whole
 */

.one-whole {
    width: 100%;
}

/**
 * Halves
 */

.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
    width: 50%;
}

/**
 * Thirds
 */

.one-third, .two-sixths, .four-twelfths {
    width: 33.333%;
}
.two-thirds, .four-sixths, .eight-twelfths {
    width: 66.666%;
}

/**
 * Quarters
 */

.one-quarter, .two-eighths, .three-twelfths {
    width: 25%;
}
.three-quarters, .six-eighths, .nine-twelfths {
    width: 75%;
}

/**
 * Fifths
 */

.one-fifth, .two-tenths {
    width: 20%;
}
.two-fifths, .four-tenths {
    width: 40%;
}
.three-fifths, .six-tenths {
    width: 60%;
}
.four-fifths, .eight-tenths {
    width: 80%;
}

/**
 * Sixths
 */

.one-sixth, .two-twelfths {
    width: 16.666%;
}
.five-sixths, .ten-twelfths {
    width: 83.333%;
}

/**
 * Eighths
 */

.one-eighth {
    width: 12.5%;
}
.three-eighths {
    width: 37.5%;
}
.five-eighths {
    width: 62.5%;
}
.seven-eighths {
    width: 87.5%;
}

/**
 * Tenths
 */

.one-tenth {
    width: 10%;
}
.three-tenths {
    width: 30%;
}
.seven-tenths {
    width: 70%;
}
.nine-tenths {
    width: 90%;
}

/**
 * Twelfths
 */

.one-twelfth {
    width: 8.333%;
}
.five-twelfths {
    width: 41.666%;
}
.seven-twelfths {
    width: 58.333%;
}
.eleven-twelfths {
    width: 91.666%;
}

/**
 * Our responsive classes, if we have enabled them.
 */

@media only screen and (min-width: 600px) {
    /**
   * Whole
   */
    .tablet--one-whole {
        width: 100%;
    }
    /**
   * Halves
   */
    .tablet--one-half, .tablet--two-quarters, .tablet--three-sixths, .tablet--four-eighths, .tablet--five-tenths, .tablet--six-twelfths {
        width: 50%;
    }
    /**
   * Thirds
   */
    .tablet--one-third, .tablet--two-sixths, .tablet--four-twelfths {
        width: 33.333%;
    }
    .tablet--two-thirds, .tablet--four-sixths, .tablet--eight-twelfths {
        width: 66.666%;
    }
    /**
   * Quarters
   */
    .tablet--one-quarter, .tablet--two-eighths, .tablet--three-twelfths {
        width: 25%;
    }
    .tablet--three-quarters, .tablet--six-eighths, .tablet--nine-twelfths {
        width: 75%;
    }
    /**
   * Fifths
   */
    .tablet--one-fifth, .tablet--two-tenths {
        width: 20%;
    }
    .tablet--two-fifths, .tablet--four-tenths {
        width: 40%;
    }
    .tablet--three-fifths, .tablet--six-tenths {
        width: 60%;
    }
    .tablet--four-fifths, .tablet--eight-tenths {
        width: 80%;
    }
    /**
   * Sixths
   */
    .tablet--one-sixth, .tablet--two-twelfths {
        width: 16.666%;
    }
    .tablet--five-sixths, .tablet--ten-twelfths {
        width: 83.333%;
    }
    /**
   * Eighths
   */
    .tablet--one-eighth {
        width: 12.5%;
    }
    .tablet--three-eighths {
        width: 37.5%;
    }
    .tablet--five-eighths {
        width: 62.5%;
    }
    .tablet--seven-eighths {
        width: 87.5%;
    }
    /**
   * Tenths
   */
    .tablet--one-tenth {
        width: 10%;
    }
    .tablet--three-tenths {
        width: 30%;
    }
    .tablet--seven-tenths {
        width: 70%;
    }
    .tablet--nine-tenths {
        width: 90%;
    }
    /**
   * Twelfths
   */
    .tablet--one-twelfth {
        width: 8.333%;
    }
    .tablet--five-twelfths {
        width: 41.666%;
    }
    .tablet--seven-twelfths {
        width: 58.333%;
    }
    .tablet--eleven-twelfths {
        width: 91.666%;
    }
}
@media only screen and (min-width: 900px) {
    /**
   * Whole
   */
    .desk--one-whole {
        width: 100%;
    }
    /**
   * Halves
   */
    .desk--one-half, .desk--two-quarters, .desk--three-sixths, .desk--four-eighths, .desk--five-tenths, .desk--six-twelfths {
        width: 50%;
    }
    /**
   * Thirds
   */
    .desk--one-third, .desk--two-sixths, .desk--four-twelfths {
        width: 33.333%;
    }
    .desk--two-thirds, .desk--four-sixths, .desk--eight-twelfths {
        width: 66.666%;
    }
    /**
   * Quarters
   */
    .desk--one-quarter, .desk--two-eighths, .desk--three-twelfths {
        width: 25%;
    }
    .desk--three-quarters, .desk--six-eighths, .desk--nine-twelfths {
        width: 75%;
    }
    /**
   * Fifths
   */
    .desk--one-fifth, .desk--two-tenths {
        width: 20%;
    }
    .desk--two-fifths, .desk--four-tenths {
        width: 40%;
    }
    .desk--three-fifths, .desk--six-tenths {
        width: 60%;
    }
    .desk--four-fifths, .desk--eight-tenths {
        width: 80%;
    }
    /**
   * Sixths
   */
    .desk--one-sixth, .desk--two-twelfths {
        width: 16.666%;
    }
    .desk--five-sixths, .desk--ten-twelfths {
        width: 83.333%;
    }
    /**
   * Eighths
   */
    .desk--one-eighth {
        width: 12.5%;
    }
    .desk--three-eighths {
        width: 37.5%;
    }
    .desk--five-eighths {
        width: 62.5%;
    }
    .desk--seven-eighths {
        width: 87.5%;
    }
    /**
   * Tenths
   */
    .desk--one-tenth {
        width: 10%;
    }
    .desk--three-tenths {
        width: 30%;
    }
    .desk--seven-tenths {
        width: 70%;
    }
    .desk--nine-tenths {
        width: 90%;
    }
    /**
   * Twelfths
   */
    .desk--one-twelfth {
        width: 8.333%;
    }
    .desk--five-twelfths {
        width: 41.666%;
    }
    .desk--seven-twelfths {
        width: 58.333%;
    }
    .desk--eleven-twelfths {
        width: 91.666%;
    }
}
@media only screen and (min-width: 1900px) {
    /**
   * Whole
   */
    .wide--one-whole {
        width: 100%;
    }
    /**
   * Halves
   */
    .wide--one-half, .wide--two-quarters, .wide--three-sixths, .wide--four-eighths, .wide--five-tenths, .wide--six-twelfths {
        width: 50%;
    }
    /**
   * Thirds
   */
    .wide--one-third, .wide--two-sixths, .wide--four-twelfths {
        width: 33.333%;
    }
    .wide--two-thirds, .wide--four-sixths, .wide--eight-twelfths {
        width: 66.666%;
    }
    /**
   * Quarters
   */
    .wide--one-quarter, .wide--two-eighths, .wide--three-twelfths {
        width: 25%;
    }
    .wide--three-quarters, .wide--six-eighths, .wide--nine-twelfths {
        width: 75%;
    }
    /**
   * Fifths
   */
    .wide--one-fifth, .wide--two-tenths {
        width: 20%;
    }
    .wide--two-fifths, .wide--four-tenths {
        width: 40%;
    }
    .wide--three-fifths, .wide--six-tenths {
        width: 60%;
    }
    .wide--four-fifths, .wide--eight-tenths {
        width: 80%;
    }
    /**
   * Sixths
   */
    .wide--one-sixth, .wide--two-twelfths {
        width: 16.666%;
    }
    .wide--five-sixths, .wide--ten-twelfths {
        width: 83.333%;
    }
    /**
   * Eighths
   */
    .wide--one-eighth {
        width: 12.5%;
    }
    .wide--three-eighths {
        width: 37.5%;
    }
    .wide--five-eighths {
        width: 62.5%;
    }
    .wide--seven-eighths {
        width: 87.5%;
    }
    /**
   * Tenths
   */
    .wide--one-tenth {
        width: 10%;
    }
    .wide--three-tenths {
        width: 30%;
    }
    .wide--seven-tenths {
        width: 70%;
    }
    .wide--nine-tenths {
        width: 90%;
    }
    /**
   * Twelfths
   */
    .wide--one-twelfth {
        width: 8.333%;
    }
    .wide--five-twelfths {
        width: 41.666%;
    }
    .wide--seven-twelfths {
        width: 58.333%;
    }
    .wide--eleven-twelfths {
        width: 91.666%;
    }
}

/*------------------------------------*\
    $PUSH
\*------------------------------------*/


/**
 * Push classes, to move grid items over to the right by certain amounts.
 */


/**
 * Not a particularly great selector, but the DRYest way to do things.
 */

[class*="push--"] {
    position: relative;
}

/**
 * Whole
 */

.push--one-whole {
    left: 100%;
}

/**
 * Halves
 */

.push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
    left: 50%;
}

/**
 * Thirds
 */

.push--one-third, .push--two-sixths, .push--four-twelfths {
    left: 33.333%;
}
.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
    left: 66.666%;
}

/**
 * Quarters
 */

.push--one-quarter, .push--two-eighths, .push--three-twelfths {
    left: 25%;
}
.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
    left: 75%;
}

/**
 * Fifths
 */

.push--one-fifth, .push--two-tenths {
    left: 20%;
}
.push--two-fifths, .push--four-tenths {
    left: 40%;
}
.push--three-fifths, .push--six-tenths {
    left: 60%;
}
.push--four-fifths, .push--eight-tenths {
    left: 80%;
}

/**
 * Sixths
 */

.push--one-sixth, .push--two-twelfths {
    left: 16.666%;
}
.push--five-sixths, .push--ten-twelfths {
    left: 83.333%;
}

/**
 * Eighths
 */

.push--one-eighth {
    left: 12.5%;
}
.push--three-eighths {
    left: 37.5%;
}
.push--five-eighths {
    left: 62.5%;
}
.push--seven-eighths {
    left: 87.5%;
}

/**
 * Tenths
 */

.push--one-tenth {
    left: 10%;
}
.push--three-tenths {
    left: 30%;
}
.push--seven-tenths {
    left: 70%;
}
.push--nine-tenths {
    left: 90%;
}

/**
 * Twelfths
 */

.push--one-twelfth {
    left: 8.333%;
}
.push--five-twelfths {
    left: 41.666%;
}
.push--seven-twelfths {
    left: 58.333%;
}
.push--eleven-twelfths {
    left: 91.666%;
}
@media only screen and (min-width: 600px) {
    /**
   * Whole
   */
    .push--tablet--one-whole {
        left: 100%;
    }
    /**
   * Halves
   */
    .push--tablet--one-half, .push--tablet--two-quarters, .push--tablet--three-sixths, .push--tablet--four-eighths, .push--tablet--five-tenths, .push--tablet--six-twelfths {
        left: 50%;
    }
    /**
   * Thirds
   */
    .push--tablet--one-third, .push--tablet--two-sixths, .push--tablet--four-twelfths {
        left: 33.333%;
    }
    .push--tablet--two-thirds, .push--tablet--four-sixths, .push--tablet--eight-twelfths {
        left: 66.666%;
    }
    /**
   * Quarters
   */
    .push--tablet--one-quarter, .push--tablet--two-eighths, .push--tablet--three-twelfths {
        left: 25%;
    }
    .push--tablet--three-quarters, .push--tablet--six-eighths, .push--tablet--nine-twelfths {
        left: 75%;
    }
    /**
   * Fifths
   */
    .push--tablet--one-fifth, .push--tablet--two-tenths {
        left: 20%;
    }
    .push--tablet--two-fifths, .push--tablet--four-tenths {
        left: 40%;
    }
    .push--tablet--three-fifths, .push--tablet--six-tenths {
        left: 60%;
    }
    .push--tablet--four-fifths, .push--tablet--eight-tenths {
        left: 80%;
    }
    /**
   * Sixths
   */
    .push--tablet--one-sixth, .push--tablet--two-twelfths {
        left: 16.666%;
    }
    .push--tablet--five-sixths, .push--tablet--ten-twelfths {
        left: 83.333%;
    }
    /**
   * Eighths
   */
    .push--tablet--one-eighth {
        left: 12.5%;
    }
    .push--tablet--three-eighths {
        left: 37.5%;
    }
    .push--tablet--five-eighths {
        left: 62.5%;
    }
    .push--tablet--seven-eighths {
        left: 87.5%;
    }
    /**
   * Tenths
   */
    .push--tablet--one-tenth {
        left: 10%;
    }
    .push--tablet--three-tenths {
        left: 30%;
    }
    .push--tablet--seven-tenths {
        left: 70%;
    }
    .push--tablet--nine-tenths {
        left: 90%;
    }
    /**
   * Twelfths
   */
    .push--tablet--one-twelfth {
        left: 8.333%;
    }
    .push--tablet--five-twelfths {
        left: 41.666%;
    }
    .push--tablet--seven-twelfths {
        left: 58.333%;
    }
    .push--tablet--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 900px) {
    /**
   * Whole
   */
    .push--desk--one-whole {
        left: 100%;
    }
    /**
   * Halves
   */
    .push--desk--one-half, .push--desk--two-quarters, .push--desk--three-sixths, .push--desk--four-eighths, .push--desk--five-tenths, .push--desk--six-twelfths {
        left: 50%;
    }
    /**
   * Thirds
   */
    .push--desk--one-third, .push--desk--two-sixths, .push--desk--four-twelfths {
        left: 33.333%;
    }
    .push--desk--two-thirds, .push--desk--four-sixths, .push--desk--eight-twelfths {
        left: 66.666%;
    }
    /**
   * Quarters
   */
    .push--desk--one-quarter, .push--desk--two-eighths, .push--desk--three-twelfths {
        left: 25%;
    }
    .push--desk--three-quarters, .push--desk--six-eighths, .push--desk--nine-twelfths {
        left: 75%;
    }
    /**
   * Fifths
   */
    .push--desk--one-fifth, .push--desk--two-tenths {
        left: 20%;
    }
    .push--desk--two-fifths, .push--desk--four-tenths {
        left: 40%;
    }
    .push--desk--three-fifths, .push--desk--six-tenths {
        left: 60%;
    }
    .push--desk--four-fifths, .push--desk--eight-tenths {
        left: 80%;
    }
    /**
   * Sixths
   */
    .push--desk--one-sixth, .push--desk--two-twelfths {
        left: 16.666%;
    }
    .push--desk--five-sixths, .push--desk--ten-twelfths {
        left: 83.333%;
    }
    /**
   * Eighths
   */
    .push--desk--one-eighth {
        left: 12.5%;
    }
    .push--desk--three-eighths {
        left: 37.5%;
    }
    .push--desk--five-eighths {
        left: 62.5%;
    }
    .push--desk--seven-eighths {
        left: 87.5%;
    }
    /**
   * Tenths
   */
    .push--desk--one-tenth {
        left: 10%;
    }
    .push--desk--three-tenths {
        left: 30%;
    }
    .push--desk--seven-tenths {
        left: 70%;
    }
    .push--desk--nine-tenths {
        left: 90%;
    }
    /**
   * Twelfths
   */
    .push--desk--one-twelfth {
        left: 8.333%;
    }
    .push--desk--five-twelfths {
        left: 41.666%;
    }
    .push--desk--seven-twelfths {
        left: 58.333%;
    }
    .push--desk--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 1900px) {
    /**
   * Whole
   */
    .push--wide--one-whole {
        left: 100%;
    }
    /**
   * Halves
   */
    .push--wide--one-half, .push--wide--two-quarters, .push--wide--three-sixths, .push--wide--four-eighths, .push--wide--five-tenths, .push--wide--six-twelfths {
        left: 50%;
    }
    /**
   * Thirds
   */
    .push--wide--one-third, .push--wide--two-sixths, .push--wide--four-twelfths {
        left: 33.333%;
    }
    .push--wide--two-thirds, .push--wide--four-sixths, .push--wide--eight-twelfths {
        left: 66.666%;
    }
    /**
   * Quarters
   */
    .push--wide--one-quarter, .push--wide--two-eighths, .push--wide--three-twelfths {
        left: 25%;
    }
    .push--wide--three-quarters, .push--wide--six-eighths, .push--wide--nine-twelfths {
        left: 75%;
    }
    /**
   * Fifths
   */
    .push--wide--one-fifth, .push--wide--two-tenths {
        left: 20%;
    }
    .push--wide--two-fifths, .push--wide--four-tenths {
        left: 40%;
    }
    .push--wide--three-fifths, .push--wide--six-tenths {
        left: 60%;
    }
    .push--wide--four-fifths, .push--wide--eight-tenths {
        left: 80%;
    }
    /**
   * Sixths
   */
    .push--wide--one-sixth, .push--wide--two-twelfths {
        left: 16.666%;
    }
    .push--wide--five-sixths, .push--wide--ten-twelfths {
        left: 83.333%;
    }
    /**
   * Eighths
   */
    .push--wide--one-eighth {
        left: 12.5%;
    }
    .push--wide--three-eighths {
        left: 37.5%;
    }
    .push--wide--five-eighths {
        left: 62.5%;
    }
    .push--wide--seven-eighths {
        left: 87.5%;
    }
    /**
   * Tenths
   */
    .push--wide--one-tenth {
        left: 10%;
    }
    .push--wide--three-tenths {
        left: 30%;
    }
    .push--wide--seven-tenths {
        left: 70%;
    }
    .push--wide--nine-tenths {
        left: 90%;
    }
    /**
   * Twelfths
   */
    .push--wide--one-twelfth {
        left: 8.333%;
    }
    .push--wide--five-twelfths {
        left: 41.666%;
    }
    .push--wide--seven-twelfths {
        left: 58.333%;
    }
    .push--wide--eleven-twelfths {
        left: 91.666%;
    }
}

/*------------------------------------*\
    $PULL
\*------------------------------------*/


/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */


/**
 * Not a particularly great selector, but the DRYest way to do things.
 */

[class*="pull--"] {
    position: relative;
}

/**
 * Whole
 */

.pull--one-whole {
    right: 100%;
}

/**
 * Halves
 */

.pull--one-half, .pull--two-quarters, .pull--three-sixths, .pull--four-eighths, .pull--five-tenths, .pull--six-twelfths {
    right: 50%;
}

/**
 * Thirds
 */

.pull--one-third, .pull--two-sixths, .pull--four-twelfths {
    right: 33.333%;
}
.pull--two-thirds, .pull--four-sixths, .pull--eight-twelfths {
    right: 66.666%;
}

/**
 * Quarters
 */

.pull--one-quarter, .pull--two-eighths, .pull--three-twelfths {
    right: 25%;
}
.pull--three-quarters, .pull--six-eighths, .pull--nine-twelfths {
    right: 75%;
}

/**
 * Fifths
 */

.pull--one-fifth, .pull--two-tenths {
    right: 20%;
}
.pull--two-fifths, .pull--four-tenths {
    right: 40%;
}
.pull--three-fifths, .pull--six-tenths {
    right: 60%;
}
.pull--four-fifths, .pull--eight-tenths {
    right: 80%;
}

/**
 * Sixths
 */

.pull--one-sixth, .pull--two-twelfths {
    right: 16.666%;
}
.pull--five-sixths, .pull--ten-twelfths {
    right: 83.333%;
}

/**
 * Eighths
 */

.pull--one-eighth {
    right: 12.5%;
}
.pull--three-eighths {
    right: 37.5%;
}
.pull--five-eighths {
    right: 62.5%;
}
.pull--seven-eighths {
    right: 87.5%;
}

/**
 * Tenths
 */

.pull--one-tenth {
    right: 10%;
}
.pull--three-tenths {
    right: 30%;
}
.pull--seven-tenths {
    right: 70%;
}
.pull--nine-tenths {
    right: 90%;
}

/**
 * Twelfths
 */

.pull--one-twelfth {
    right: 8.333%;
}
.pull--five-twelfths {
    right: 41.666%;
}
.pull--seven-twelfths {
    right: 58.333%;
}
.pull--eleven-twelfths {
    right: 91.666%;
}
@media only screen and (min-width: 600px) {
    /**
   * Whole
   */
    .pull--tablet--one-whole {
        right: 100%;
    }
    /**
   * Halves
   */
    .pull--tablet--one-half, .pull--tablet--two-quarters, .pull--tablet--three-sixths, .pull--tablet--four-eighths, .pull--tablet--five-tenths, .pull--tablet--six-twelfths {
        right: 50%;
    }
    /**
   * Thirds
   */
    .pull--tablet--one-third, .pull--tablet--two-sixths, .pull--tablet--four-twelfths {
        right: 33.333%;
    }
    .pull--tablet--two-thirds, .pull--tablet--four-sixths, .pull--tablet--eight-twelfths {
        right: 66.666%;
    }
    /**
   * Quarters
   */
    .pull--tablet--one-quarter, .pull--tablet--two-eighths, .pull--tablet--three-twelfths {
        right: 25%;
    }
    .pull--tablet--three-quarters, .pull--tablet--six-eighths, .pull--tablet--nine-twelfths {
        right: 75%;
    }
    /**
   * Fifths
   */
    .pull--tablet--one-fifth, .pull--tablet--two-tenths {
        right: 20%;
    }
    .pull--tablet--two-fifths, .pull--tablet--four-tenths {
        right: 40%;
    }
    .pull--tablet--three-fifths, .pull--tablet--six-tenths {
        right: 60%;
    }
    .pull--tablet--four-fifths, .pull--tablet--eight-tenths {
        right: 80%;
    }
    /**
   * Sixths
   */
    .pull--tablet--one-sixth, .pull--tablet--two-twelfths {
        right: 16.666%;
    }
    .pull--tablet--five-sixths, .pull--tablet--ten-twelfths {
        right: 83.333%;
    }
    /**
   * Eighths
   */
    .pull--tablet--one-eighth {
        right: 12.5%;
    }
    .pull--tablet--three-eighths {
        right: 37.5%;
    }
    .pull--tablet--five-eighths {
        right: 62.5%;
    }
    .pull--tablet--seven-eighths {
        right: 87.5%;
    }
    /**
   * Tenths
   */
    .pull--tablet--one-tenth {
        right: 10%;
    }
    .pull--tablet--three-tenths {
        right: 30%;
    }
    .pull--tablet--seven-tenths {
        right: 70%;
    }
    .pull--tablet--nine-tenths {
        right: 90%;
    }
    /**
   * Twelfths
   */
    .pull--tablet--one-twelfth {
        right: 8.333%;
    }
    .pull--tablet--five-twelfths {
        right: 41.666%;
    }
    .pull--tablet--seven-twelfths {
        right: 58.333%;
    }
    .pull--tablet--eleven-twelfths {
        right: 91.666%;
    }
}
@media only screen and (min-width: 900px) {
    /**
   * Whole
   */
    .pull--desk--one-whole {
        right: 100%;
    }
    /**
   * Halves
   */
    .pull--desk--one-half, .pull--desk--two-quarters, .pull--desk--three-sixths, .pull--desk--four-eighths, .pull--desk--five-tenths, .pull--desk--six-twelfths {
        right: 50%;
    }
    /**
   * Thirds
   */
    .pull--desk--one-third, .pull--desk--two-sixths, .pull--desk--four-twelfths {
        right: 33.333%;
    }
    .pull--desk--two-thirds, .pull--desk--four-sixths, .pull--desk--eight-twelfths {
        right: 66.666%;
    }
    /**
   * Quarters
   */
    .pull--desk--one-quarter, .pull--desk--two-eighths, .pull--desk--three-twelfths {
        right: 25%;
    }
    .pull--desk--three-quarters, .pull--desk--six-eighths, .pull--desk--nine-twelfths {
        right: 75%;
    }
    /**
   * Fifths
   */
    .pull--desk--one-fifth, .pull--desk--two-tenths {
        right: 20%;
    }
    .pull--desk--two-fifths, .pull--desk--four-tenths {
        right: 40%;
    }
    .pull--desk--three-fifths, .pull--desk--six-tenths {
        right: 60%;
    }
    .pull--desk--four-fifths, .pull--desk--eight-tenths {
        right: 80%;
    }
    /**
   * Sixths
   */
    .pull--desk--one-sixth, .pull--desk--two-twelfths {
        right: 16.666%;
    }
    .pull--desk--five-sixths, .pull--desk--ten-twelfths {
        right: 83.333%;
    }
    /**
   * Eighths
   */
    .pull--desk--one-eighth {
        right: 12.5%;
    }
    .pull--desk--three-eighths {
        right: 37.5%;
    }
    .pull--desk--five-eighths {
        right: 62.5%;
    }
    .pull--desk--seven-eighths {
        right: 87.5%;
    }
    /**
   * Tenths
   */
    .pull--desk--one-tenth {
        right: 10%;
    }
    .pull--desk--three-tenths {
        right: 30%;
    }
    .pull--desk--seven-tenths {
        right: 70%;
    }
    .pull--desk--nine-tenths {
        right: 90%;
    }
    /**
   * Twelfths
   */
    .pull--desk--one-twelfth {
        right: 8.333%;
    }
    .pull--desk--five-twelfths {
        right: 41.666%;
    }
    .pull--desk--seven-twelfths {
        right: 58.333%;
    }
    .pull--desk--eleven-twelfths {
        right: 91.666%;
    }
}
@media only screen and (min-width: 1900px) {
    /**
   * Whole
   */
    .pull--wide--one-whole {
        right: 100%;
    }
    /**
   * Halves
   */
    .pull--wide--one-half, .pull--wide--two-quarters, .pull--wide--three-sixths, .pull--wide--four-eighths, .pull--wide--five-tenths, .pull--wide--six-twelfths {
        right: 50%;
    }
    /**
   * Thirds
   */
    .pull--wide--one-third, .pull--wide--two-sixths, .pull--wide--four-twelfths {
        right: 33.333%;
    }
    .pull--wide--two-thirds, .pull--wide--four-sixths, .pull--wide--eight-twelfths {
        right: 66.666%;
    }
    /**
   * Quarters
   */
    .pull--wide--one-quarter, .pull--wide--two-eighths, .pull--wide--three-twelfths {
        right: 25%;
    }
    .pull--wide--three-quarters, .pull--wide--six-eighths, .pull--wide--nine-twelfths {
        right: 75%;
    }
    /**
   * Fifths
   */
    .pull--wide--one-fifth, .pull--wide--two-tenths {
        right: 20%;
    }
    .pull--wide--two-fifths, .pull--wide--four-tenths {
        right: 40%;
    }
    .pull--wide--three-fifths, .pull--wide--six-tenths {
        right: 60%;
    }
    .pull--wide--four-fifths, .pull--wide--eight-tenths {
        right: 80%;
    }
    /**
   * Sixths
   */
    .pull--wide--one-sixth, .pull--wide--two-twelfths {
        right: 16.666%;
    }
    .pull--wide--five-sixths, .pull--wide--ten-twelfths {
        right: 83.333%;
    }
    /**
   * Eighths
   */
    .pull--wide--one-eighth {
        right: 12.5%;
    }
    .pull--wide--three-eighths {
        right: 37.5%;
    }
    .pull--wide--five-eighths {
        right: 62.5%;
    }
    .pull--wide--seven-eighths {
        right: 87.5%;
    }
    /**
   * Tenths
   */
    .pull--wide--one-tenth {
        right: 10%;
    }
    .pull--wide--three-tenths {
        right: 30%;
    }
    .pull--wide--seven-tenths {
        right: 70%;
    }
    .pull--wide--nine-tenths {
        right: 90%;
    }
    /**
   * Twelfths
   */
    .pull--wide--one-twelfth {
        right: 8.333%;
    }
    .pull--wide--five-twelfths {
        right: 41.666%;
    }
    .pull--wide--seven-twelfths {
        right: 58.333%;
    }
    .pull--wide--eleven-twelfths {
        right: 91.666%;
    }
}
#outer-container h1, #outer-container h2, #outer-container h3, #outer-container h1 b, #outer-container h1 span, #outer-container .see-all, #outer-container .callout, #outer-container .post-date, #outer-container .site-footer__item, #outer-container label, #outer-container .button, #outer-container .bubbles__section-name, #outer-container .story-item__date {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Modal text */
.modal-body p {
	font-size: 0.9em;
}


/* change border colour to suit your needs */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.center {
    margin: 0 auto;
}
.clear {
    clear: both;
}
.center-unknown-width {
    display: block;
    float: left;
    left: 50%;
    position: relative;
}
.center-unknown-width .center-unknown-width {
    left: -50%;
}
.fs-img {
    display: none;
    font-family: 'image-set( url({directory}{filename}.{ext}) 1x low-bandwidth, url({directory}{filename}_2x.{ext}) 2x high-bandwidth )';
}
.fluid-width-video-wrapper {
    margin-bottom: 1.5em;
}
.divider, .story-item--full {
    position: relative;
}
.divider:before, .story-item--full:before {
    background-color: #0faef0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0faef0), color-stop(100%, #094c80));
    background-image: -webkit-linear-gradient(-360deg, #0faef0, #094c80);
    background-image: linear-gradient(90deg, #0faef0, #094c80);
    content: "";
    height: 1em;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.divider--double:after {
    background-color: #0faef0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0faef0), color-stop(100%, #094c80));
    background-image: -webkit-linear-gradient(-360deg, #0faef0, #094c80);
    background-image: linear-gradient(90deg, #0faef0, #094c80);
    content: "";
    height: 1em;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.divider--thin:before, .story-item--full:before, .divider--thin:after, .story-item--full:after {
    background: #e2ebee;
    height: 0.14286em;
}
.divider--narrow:before, .story-item--full:before, .divider--narrow:after, .story-item--full:after {
    left: 33.33%;
    right: 33.33%;
    width: 33.33%;
}
.grid {
    margin: 0 auto;
    max-width: 66.66667em;
}
@media screen and (min-width: 600px) {
    .grid--outermost {
        padding: 0 2.77778em;
    }
}
@media screen and (min-width: 900px) {
    .grid--outermost {
        padding: 0 3.33333em;
    }
}
.mobile--grid--narrow {
    max-width: 600px;
}
@media screen and (min-width: 900px) {
    .mobile--grid--narrow {
        max-width: 1080px;
    }
}
.grid__item {
    padding: 0 20px;
}
.omega {
    padding: 0;
}
.v {
    margin-bottom: 0.5em;
}
@media screen and (min-width: 900px) {
    .v {
        margin-bottom: 1em;
    }
}
.v--2 {
    margin-bottom: 1em;
}
@media screen and (min-width: 900px) {
    .v--2 {
        margin-bottom: 2em;
    }
}
.v--3 {
    margin-bottom: 1.5em;
}
@media screen and (min-width: 900px) {
    .v--3 {
        margin-bottom: 3em;
    }
}
.v--4 {
    margin-bottom: 2em;
}
@media screen and (min-width: 900px) {
    .v--4 {
        margin-bottom: 4em;
    }
}
.v--5 {
    margin-bottom: 2.5em;
}
@media screen and (min-width: 900px) {
    .v--5 {
        margin-bottom: 5em;
    }
}
.v--6 {
    margin-bottom: 3em;
}
@media screen and (min-width: 900px) {
    .v--6 {
        margin-bottom: 6em;
    }
}
.centered-list-item {
    margin: 0 0.6em 1.2em;
}
.section {
    background-color: white;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e2ebee), color-stop(19.44444em, white));
    background-image: -webkit-linear-gradient(#e2ebee 0%, white 19.44444em);
    background-image: linear-gradient(#e2ebee 0%, white 19.44444em);
    padding-top: 0.93333em;
}
@media screen and (min-width: 900px) {
    .section {
        padding-top: 1.66667em;
    }
}
@media screen and (min-width: 900px) {
    .section--first {
        padding-top: 11.11111em;
    }
}
.inner-section {
    padding-bottom: 0.93333em;
    padding-top: 1.33333em;
}
@media screen and (min-width: 600px) {
    .inner-section {
        padding-top: 2.66667em;
    }
}
.ctcs_lowercase {
    text-transform: lowercase;
}
.get-silverlight {
    display: block;
    padding-top: 2em;
}
.get-silverlight img {
    margin: 0 auto;
    width: auto;
}
body {
    color: #222222;
    font-family: "Gotham XNarrow SSm A", "Gotham XNarrow SSm B", "Gotham XNarrow", "Helvetica", sans-serif;
    font-size: 0.9375em;
    font-weight: 300;
}
@media screen and (min-width: 900px) {
    body {
        font-size: 1.125em;
    }
}
img {
    display: block;
    height: auto;
}
a {
    color: #0f8ef0;
    font-weight: 700;
    text-decoration: none;
}
li {
    list-style: none;
}
.center-text {
    text-align: center;
    width: 100%;
}
@media screen and (min-width: 600px) {
    .right-text {
        text-align: right;
        width: 100%;
    }
}
h1, h2, h3 {
    /*float: left;*/
}
.righted {
    float: right;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, img, table, div {
    /*clear: both;*/
}
.centered {
    display: inline-block;
    float: none;
}
h1, h2, h3 {
    background: #e2ebee;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Arial Narrow", "Helvetica", sans-serif;
    font-weight: 400;
    line-height: 1.667;
    padding: 0.25em 1.33333em;
}
@media screen and (min-width: 900px) {
    h1, h2, h3 {
        padding: 0.25em 1.11111em;
    }
}
h1 {
    background: none;
    font-size: 4em;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.17391em;
    padding: 0 0.1087em;
}
@media screen and (min-width: 600px) {
    .modal-body .row-fluid h1 {
    	font-size: 3em !important;
    }

    h1 {
        line-height: 0.9;
        font-size: 8em;
    }
}
@media screen and (min-width: 900px) {
    .modal-body .row-fluid h1 {
        font-size: 3em !important;
    }
    h1 {
        font-size: 10.22222em;
        margin-bottom: 0.19565em;
        padding: 0 0.1087em;
    }
}
h1 b {
    font-weight: 500;
}
.h1 {
    display: block;
    float: none;
    font-size: 4em;
    padding: 0;
}
@media screen and (min-width: 600px) {
    .h1 {
        display: block;
        line-height: 0.9;
    }
}
@media screen and (min-width: 600px) {
    .h1--careers {
        font-size: 5.33333em;
    }
}
@media screen and (min-width: 900px) {
    .h1--careers {
        font-size: 7.33333em;
    }
}
@media screen and (min-width: 1200px) {
    .h1--careers {
        font-size: 8em;
    }
}
@media screen and (min-width: 600px) {
    .h1--what {
        font-size: 8.53333em;
        text-align: right;
    }
}
@media screen and (min-width: 900px) {
    .h1--what {
        font-size: 10.66667em;
    }
}
@media screen and (min-width: 1200px) {
    .h1--what {
        font-size: 11.55556em;
    }
}
@media screen and (min-width: 900px) {
    .h1--find span.segment {
        font-size: 1.6em;
    }
    .h1--find b.segment {
        font-size: 4.8em;
    }
}
.h1--story {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 0.5em;
}
@media screen and (min-width: 600px) {
    .h1--story {
        font-size: 3em;
    }
}
@media screen and (min-width: 900px) {
    .h1--story {
        font-size: 4em;
    }
}
@media screen and (min-width: 900px) {
    .h1--go span.segment {
        font-size: 1.8em;
    }
    .h1--go b.segment {
        display: block;
        font-size: 4em;
    }
}
@media screen and (min-width: 900px) {
    .h1--discover, .h1--save {
        font-size: 8em;
    }
}
h2 {
    font-size: 2.4em;
    line-height: 1;
    margin-bottom: 0.41667em;
    padding: 0.25em 0.41667em;
}
@media screen and (min-width: 900px) {
    h2 {
        font-size: 2.66667em;
        margin-bottom: 0.375em;
        padding-left: 0.41667em;
        padding-right: 0.41667em;
    }
}
h3 {
    font-size: 1.33333em;
    line-height: 1;
    margin-bottom: 0.75em;
    padding: 0.25em 0.75em;
}
@media screen and (min-width: 900px) {
    h3 {
        font-size: 1.33333em;
        margin-bottom: 0.75em;
        padding: 0.25em 0.83333em;
    }
}
h4 {
    font-family: "Gotham XNarrow SSm A", "Gotham XNarrow SSm B", "Gotham XNarrow", "Helvetica", sans-serif;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.33333em;
}
@media screen and (min-width: 900px) {
    h4 {
        font-size: 0.83333em;
    }
}
b {
    font-weight: 700;
}
.see-all {
    background: url("../../images/home/icon-arrow--tiny.png") no-repeat right 50%;
    color: #e2ebee;
    display: inline-block;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.33333em;
    font-weight: 400;
    padding: 0.66667em;
    padding-right: 1em;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .see-all {
        background-image: url("../../images/home/icon-arrow--tiny_2x.png");
        background-size: 20px;
    }
}
@media screen and (min-width: 900px) {
    .see-all {
        font-size: 1.33333em;
    }
}
.see-all b {
    color: #222222;
    font-weight: 400;
}
.colorized, .text h2 {
    background-color: #0f8ef0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f8ef0), color-stop(100%, #0faef0));
    background-image: -webkit-linear-gradient(-360deg, #0f8ef0, #0faef0);
    background-image: linear-gradient(90deg, #0f8ef0, #0faef0);
}
.colorized a, .text h2 a {
    color: #222222;
    font-weight: inherit;
}
.colorized-text, h1, .diag {
    background: -webkit-linear-gradient(315deg, #094c80 0%, #094c80 35%, #0faef0 65%, #0faef0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0faef0;
}
.text {
    line-height: 1.667;
}
.text a {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    border-bottom: 2px solid #0faef0;
    color: #222222;
}
.text a:hover {
    border-bottom-color: #094c80;
}
.text p, .text ul, .text ol {
    margin-bottom: 1.66667em;
}
.text ol {
    counter-reset: list;
}
.text ol ol {
    margin-bottom: 0em;
}
.text ol li {
    margin-left: 1.11111em;
}
.text ol li:before {
    color: #0faef0;
    content: counter(list);
    counter-increment: list;
    float: left;
    padding-right: 0.5em;
    width: 0.55556em;
}
.text ol li ol li:before {
    content: counter(list, lower-alpha);
}
.text ul li {
    margin-left: 1.11111em;
}
.text ul li:before {
    color: #0faef0;
    content: "\2022";
    float: left;
    width: 0.55556em;
}
.text img {
    display: block;
    height: auto;
    margin-bottom: 3em;
    width: 100%;
}
.text .left {
    float: left;
    margin-right: 1em;
    width: 50%;
}
.text .block-link {
    border-bottom: none;
    display: block;
    font-weight: 400;
    margin-bottom: 1.33333em;
}
@media screen and (min-width: 900px) {
    .text .block-link {
        margin-bottom: 1.77778em;
    }
}
.text .block-link h3 {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
}
.text .block-link p {
    line-height: 1.667;
}
.text .block-link span {
    border-bottom: 2px solid #0faef0;
    color: #222222;
}
.text .block-link:hover h3 {
    background: #0faef0;
    color: white;
}
.text .block-link:hover span {
    border-color: #e2ebee;
    color: #222222;
}
@media screen and (min-width: 900px) {
    .text--minor {
        font-size: 0.83333em;
    }
}
@media screen and (min-width: 900px) {
    .text--minor h3 {
        font-size: 1.6em;
        margin-bottom: 0.625em;
        padding: 0.25em 0.83333em;
    }
}
@media screen and (min-width: 900px) {
    .text--minor h4 {
        font-size: 1em;
    }
}
.callout {
    color: #0faef0;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.25;
    padding: 1em 0;
    text-align: center;
}
@media screen and (min-width: 900px) {
    .callout {
        font-size: 2.66667em;
    }
}
.callout a {
    font-weight: 400;
}
.callout *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.callout--minor {
    color: #222222;
    font-size: 1.33333em;
    padding: 1.2em;
}
@media screen and (min-width: 900px) {
    .callout--minor {
        font-size: 1.33333em;
        padding: 2em;
    }
}
.callout--blue {
    color: #e2ebee;
}
.caption {
    font-size: 0.75em;
    line-height: 1.25;
    padding-top: 0.5em;
    text-transform: uppercase;
}
.post-date {
    color: #93a5ad;
    display: block;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.2em;
    font-weight: medium;
    margin-bottom: 1.5em;
    text-align: center;
}
@media screen and (min-width: 900px) {
    .post-date {
        font-size: 1.33333em;
    }
}
input {
    background: none;
    border: 2px solid #e2ebee;
    border-radius: 5px;
    display: block;
    font-family: "Gotham XNarrow SSm A", "Gotham XNarrow SSm B", "Gotham XNarrow", "Helvetica", sans-serif;
    font-size: 1.125em;
    font-weight: 400;
    outline: none;
    padding: 0.33333em 0.55556em;
    width: 100%;
}
@media screen and (min-width: 900px) {
    input {
        font-size: 1.5em;
    }
}
input:focus {
    border-color: #0faef0;
}
input[type=submit] {
    cursor: pointer;
}
label {
    color: #93a5ad;
    display: block;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.28571em;
    font-weight: 400;
    margin-bottom: 0.44444em;
}
@media screen and (min-width: 900px) {
    label {
        font-size: 1.33333em;
    }
}
.form__field {
    margin-bottom: 1.5em;
}
button {
    background: none;
    border: none;
}
.button {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    border: 2px solid #0faef0;
    border-radius: 5px;
    color: #0faef0;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.14286em;
    font-weight: 500;
    padding: 0.5em 1em;
    display: inline-block;
}
@media screen and (min-width: 600px) {
    .button {
        font-size: 1.33333em;
    }
}
@media screen and (min-width: 900px) {
    .button {
        font-size: 1.33333em;
    }
}
.button:hover {
    background: #0faef0;
    color: white;
}
.button--stacked {
    float: left;
    clear: left;
}
.button--light {
    font-weight: 400;
    margin-bottom: 1em;
    border-color: #e2ebee;
    color: #93a5ad;
}
.button--active, .button--light:hover {
    background: none;
    border: 2px solid #0faef0;
    color: #0faef0;
}
.bubbles {
    display: none;
}
@media screen and (min-width: 600px) {
    .bubbles {
        -webkit-transition: all 0.15s ease-out 0;
        -moz-transition: all 0.15s ease-out 0;
        transition: all 0.15s ease-out 0;
        display: block;
        overflow: hidden;
        padding: 0.66667em;
        position: absolute;
        right: 0;
        top: 214px;
        width: 3em;
        z-index: 1000;
    }
    .bubbles:hover {
        background-color: #0f8ef0;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f8ef0), color-stop(100%, #0faef0));
        background-image: -webkit-linear-gradient(-360deg, #0f8ef0, #0faef0);
        background-image: linear-gradient(90deg, #0f8ef0, #0faef0);
        width: 16em;
    }
}
@media screen and (min-width: 900px) {
    .bubbles {
        padding: 0.83333em;
        top: 230px;
        width: 2.77778em;
    }
    .bubbles:hover {
        width: 17.77778em;
    }
}
.bubbles__list-item {
    display: block;
    line-height: 1.33333em;
    overflow: hidden;
    width: 16em;
}
@media screen and (min-width: 900px) {
    .bubbles__list-item {
        line-height: 1.38889em;
        width: 17.77778em;
    }
}
.bubbles__target {
    display: block;
    padding: 5px;
}
.bubbles__outline {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    border: 2px solid #93a5ad;
    border-radius: 0.66667em;
    cursor: pointer;
    display: block;
    float: left;
    height: 1em;
    width: 1em;
}
@media screen and (min-width: 900px) {
    .bubbles__outline {
        height: 1.11111em;
        width: 1.11111em;
    }
}
.bubbles__outline_is_filled {
    border-color: #0f8ef0;
    background-color: #0f8ef0;
}
.bubbles:hover .bubbles__outline {
    border-color: #e2ebee;
}
.bubbles__target:hover .bubbles__outline, .bubbles:hover .bubbles__outline_is_filled {
    border-color: white;
    background-color: white;
}
.bubbles__section-name {
    color: #04243e;
    float: left;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-weight: 500;
    padding-left: 1em;
}
.bubbles__target:hover .bubbles__section-name {
    color: white;
}
.slides {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0.75)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
    background-color: none;
    /*position: absolute;*/
    overflow: hidden;
    text-align: center;
    bottom: 0;
    width: 100%;
}
@media screen and (min-width: 900px) {
    .slides {
        margin-bottom: -50px;
    }
}
.no-cssgradients .slides {
    background: #04243e;
    background: rgba(0, 0, 0, 0.5);
}
.slides__list {
    display: table;
    width: 300%;
}
.slide {
    display: table-cell;
    padding: 0.85714em 3.42857em 1.71429em;
    vertical-align: bottom;
    width: 33.33333%;
}
@media screen and (min-width: 900px) {
    .slide {
        padding: 2.25em 7.8125em 4.5em;
    }
}
.slide__content {
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    transition: opacity 2s;
    text-align: center;
}
.slide__content H1 {
    background: -webkit-linear-gradient(315deg, #0faef0 0%, #0faef0 40%, #0f8ef0 60%, #0f8ef0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0faef0;
    float: none;
    font-weight: 500;
    font-size: 1.6em;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0.33333em;
    text-transform: uppercase;
    /*background: -webkit-linear-gradient(315deg, #094c80 0%, #094c80 35%, #0faef0 65%, #0faef0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
    color: #0faef0;
}
@media screen and (min-width: 600px) {
    .slide__content H1 {
        font-size: 2.66667em;
        line-height: 0.83333em;
    }
}
@media screen and (min-width: 900px) {
    .slide__content H1 {
        font-size: 4em;
    }
}
.slide__content p {
    color: white;
    font-family: "Gotham XNarrow SSm A", "Gotham XNarrow SSm B", "Gotham XNarrow", "Helvetica", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1em;
    padding: 0 0.8em;
}
.slide__content p:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 600px) {
    .slide__content p {
        font-size: 1em;
    }
}
.slide__content a {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    border: 2px solid #0faef0;
    border-radius: 5px;
    color: #0faef0;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    font-size: 1.14286em;
    font-weight: 500;
    padding: 0.5em 1em;
    display: inline-block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent none repeat scroll 0 0;
}
@media screen and (min-width: 600px) {
    .slide__content a {
        font-size: 1.33333em;
    }
}
@media screen and (min-width: 900px) {
    .slide__content a {
        font-size: 1.33333em;
    }
}
.slide__content a:hover {
    background: #0faef0;
    color: white;
}
.slides__nav {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 36px;
    bottom: 4.28571em;
    left: 0;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 3.42857em;
}
@media screen and (min-width: 900px) {
    .slides__nav {
        background-position: 50%;
        background-size: 75px;
        bottom: 8.125em;
        width: 7.8125em;
    }
}
.slides__nav:hover {
    opacity: 1;
}
.slides__nav--previous {
    background-image: url("../../images/home/icon-arrow--left.png");
    display: none;
}
.slides__nav--next {
    background-image: url("../../images/home/icon-arrow--right.png");
    left: auto;
    right: 0;
}
.js .slide .slide__content {
    opacity: 0;
}
.js .slide--active .slide__content {
    opacity: 1;
}
.slide__backgrounds {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.slide__background {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
}
.js .slide__backgrounds {
    display: none;
}
.js .slide__background {
    display: none;
}
.js .slide__background:first-child {
    display: block;
}
.section-header__title {
    text-align: center;
    width: 100%;
}
.sub-nav {
    text-align: center;
}
@media screen and (min-width: 900px) {
    .sub-nav--left {
        text-align: left;
    }
}
@media screen and (min-width: 900px) {
    .sub-nav--min {
        font-size: 0.83333em;
        padding-top: 0.53333em;
    }
}
.sub-nav__link {
    margin: 0 1.2em 1.2em 0;
}
.sub-nav__link:last-child {
    margin-right: 0;
}
.map {
    width: 100%;
}
.map iframe {
    display: block;
    width: 100%;
}
.flags {
    overflow: hidden;
    width: 100%;
}
.flags__list {
    line-height: 1px;
    text-align: center;
    width: 10000px;
}
.flags__list-item {
    display: inline-block;
    height: 200px;
    width: 200px;
}
.flag {
    font-family: 'image-set( {src}, url(-w200h200|-w400h400) 2x high-bandwidth )';
}
.story-list--alone {
    border-top: 2px solid #e2ebee;
}
.story-item {
    border-bottom: 2px solid #e2ebee;
}
.story-item--full {
    padding-top: 2em;
}
@media screen and (min-width: 900px) {
    .story-item--full {
        padding-top: 2.5em;
    }
}
.story-item__link {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    color: #222222;
    display: block;
    font-weight: 400;
}
.story-item__link:hover {
    background: #e2ebee;
}
.story-item__photo {
    margin-bottom: 0.66667em;
}
.story-item__date {
    color: #93a5ad;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", "Tungsten Narrow", "Helvetica", sans-serif;
    text-align: right;
    padding-top: 0.66667em;
}
.story-item__date time {
    display: block;
    line-height: 1.77333em;
}
@media screen and (min-width: 900px) {
    .story-item__date time {
        line-height: 1.77333em;
    }
}
.story-item__link:hover .story-item__date {
    color: #0faef0;
}
.story-item__headline {
    font-size: 1.33333em;
}
.story-item__text {
    padding: 0.66667em 0 0.75em;
}
.story-item__lede {
    line-height: 1.2;
    padding-top: 0.5em;
}
.mini--story-item .story-item__headline {
    font-size: 1em;
}
@media screen and (min-width: 900px) {
    .mini--story-item .story-item__headline {
        font-size: 0.83333em;
    }
}
@media screen and (min-width: 900px) {
    .mini--story-item .story-item__headline--featured {
        font-size: 1em;
    }
}
.mini--story-item .story-item__text {
    padding-left: 0.66667em;
    padding-right: 0.66667em;
}
@media screen and (min-width: 900px) {
    .mini--story-item .story-item__lede {
        font-size: 0.83333em;
    }
}
.arrow-nav {
    *zoom: 1;
    bottom: 0;
    position: absolute;
    width: 100%;
}
.arrow-nav:before, .arrow-nav:after {
    content: " ";
    display: table;
}
.arrow-nav:after {
    clear: both;
}
@media screen and (min-width: 480px) {
    .arrow-nav {
        bottom: auto;
        right: 25%;
        top: 5.33333em;
        width: 8.66667em;
    }
}
@media screen and (min-width: 480px) {
    .arrow-nav {
        top: 9em;
    }
}
@media screen and (min-width: 600px) {
    .arrow-nav {
        top: 9em;
        width: 12em;
    }
}
@media screen and (min-width: 900px) {
    .arrow-nav {
        top: 14.11111em;
        width: 10em;
    }
}
.arrow {
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 50px;
    float: left;
    height: 50px;
    margin-right: 10px;
    text-indent: -9999em;
    width: 50px;
}
.arrow:last-child {
    margin-right: 0;
}
@media screen and (min-width: 600px) {
    .arrow {
        background-size: 75px;
        height: 75px;
        width: 75px;
    }
}
.arrow[rel=prev] {
    background-image: url("../../images/home/icon-arrow--left.png");
    margin-left: 20px;
}
@media screen and (min-width: 480px) {
    .arrow[rel=prev] {
        margin: 0;
    }
}
.arrow[rel=next] {
    background-image: url("../../images/home/icon-arrow--right.png");
    float: right;
    margin-right: 20%;
}
@media screen and (min-width: 480px) {
    .arrow[rel=next] {
        margin-right: 0;
    }
}
.carousel-container {
    overflow: hidden;
    margin: 0 auto;
    max-width: 66.66667em;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 600px) {
    .carousel-container {
        padding: 0 2.77778em;
    }
}
@media screen and (min-width: 900px) {
    .carousel-container {
        padding: 0 3.33333em;
    }
}
.carousel-container:after {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(-540deg, white 0%, rgba(255, 255, 255, 0));
    background-image: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0));
    bottom: 0;
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    z-index: 100;
}
.carousel__item {
    clear: none;
    float: left;
    padding: 0 20px;
    width: 20%;
}
.carousel__item-images {
    *zoom: 1;
    margin-bottom: 1em;
}
.carousel__item-images:before, .carousel__item-images:after {
    content: " ";
    display: table;
}
.carousel__item-images:after {
    clear: both;
}
@media screen and (min-width: 900px) {
    .carousel__item-images {
        margin-bottom: 3em;
    }
}
.carousel__item-images img {
    clear: none;
    display: block;
    float: left;
    margin-right: 0.66667em;
    width: 4.33333em;
}
.carousel__item-images img:last-child {
    margin-right: 0;
}
@media screen and (min-width: 480px) {
    .carousel__item-images img {
        width: 6.66667em;
    }
}
@media screen and (min-width: 600px) {
    .carousel__item-images img {
        margin-right: 0.33333em;
        width: 8em;
    }
}
@media screen and (min-width: 900px) {
    .carousel__item-images img {
        margin-right: 2.22222em;
        width: 8.88889em;
    }
}
.carousel__item-text {
    width: 100%;
}
@media screen and (min-width: 480px) {
    .carousel__item-text {
        width: 48.07692%;
    }
}
.person__photo {
    font-family: 'image-set( {src}, url(-w500h333|-w1000h666) 2x high-bandwidth )';
}
@media screen and (min-width: 600px) {
    .h_name_technology span {
        font-size: 6em;
    }
    .h_name_technology b {
        font-size: 13.33333em;
    }
}
.graybox {
    background: #e2ebee;
    height: 22em;
    width: 100%;
}
.dots {
    background: url("../../images/home/dot-red.png") 50% 50% no-repeat, url("http://www.epicsciences.com/themes/epic_sciences_2015/images/home/dots.png") 50% top;
    height: 90px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .dots {
        background: url("../../images/home/dot-red_2x.png") 50% 50% no-repeat, url("http://www.epicsciences.com/themes/epic_sciences_2015/images/home/dots_2x.png") 50% top;
        background-size: 20px 10px, 40px 40px;
    }
}
@media screen and (min-width: 600px) {
    .dots {
        height: 170px;
    }
}
.circle {
    position: relative;
}
.circle:after {
    background: #222222;
    content: "";
    left: 0;
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: -50px;
    z-index: 0;
}
.circle div {
    position: relative;
    z-index: 100;
}
.circle-last:after {
    display: none;
}
.deepzoom-link {
    display: block;
    position: relative;
}
.overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}
.overlay img {
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    opacity: 0.8;
}
.deepzoom-link:hover .overlay img {
    opacity: 1;
}
.deepzoom-img {
    font-family: 'image-set( {src}, url(-w500h500|-w1000h1000) 2x high-bandwidth )';
    z-index: 50;
}
#outer-container {
    overflow: hidden;
}
.html-body--home {
    background: #000;
}
.cell-canvas {
    margin: 0px;
    padding: 0px;
    border: 0 none;
    overflow: hidden;
    background-color: black;
}
.image-preload {
    display: none;
}
.top-menu {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 50;
}
.globe {
    height: 50px;
    margin: 0 auto;
    position: relative;
    width: 224px;
    /* prev 194px */
    z-index: 190;
    top: -23px;
}
.globe:before {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0faef0), color-stop(100%, #0f8ef0));
    background-image: -webkit-linear-gradient(-360deg, #0faef0, #0f8ef0);
    background-image: linear-gradient(90deg, #0faef0, #0f8ef0);
    background-position: 50%;
    background-repeat: repeat-y;
    background-size: 1024px auto;
    border-radius: 50px;
    content: "";
    height: 100px;
    left: 61px;
    /* prev 47px */
    position: absolute;
    width: 100px;
    z-index: 100;
}
.no-cssgradients .globe:before {
    background: none;
}
.globe img {
    margin-top: 10px;
    position: relative;
    z-index: 200;
    width: 100%
}
.desk-visible {
    display: none;
}
@media screen and (min-width: 900px) {
    .desk-visible {
        display: block;
    }
}
.mobile-visible {
    display: block;
}
@media screen and (min-width: 900px) {
    .mobile-visible {
        display: none;
    }
}
.epic-footer {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0faef0), color-stop(100%, #0f8ef0));
    background-image: -webkit-linear-gradient(-360deg, #0faef0, #0f8ef0);
    background-image: linear-gradient(90deg, #0faef0, #0f8ef0);
    display: block;
    min-height: 60px;
    position: relative;
    width: 100%;
    z-index: 100;
}
@media screen and (min-width: 900px) {
    .epic-footer {
        background-color: #0faef0;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #0faef0), color-stop(49.99%, #0faef0), color-stop(50.01%, #0f8ef0), color-stop(100%, #0f8ef0));
        background-image: -webkit-linear-gradient(-360deg, #0faef0 50%, #0faef0 49.99%, #0f8ef0 50.01%, #0f8ef0);
        background-image: linear-gradient(90deg, #0faef0 50%, #0faef0 49.99%, #0f8ef0 50.01%, #0f8ef0);
        padding: 86px 0 1em;
        text-align: center;
    }
}
@media screen and (min-width: 900px) {
    .epic-footer-inner {
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0faef0), color-stop(100%, #0f8ef0));
        background-image: -webkit-linear-gradient(-360deg, #0faef0, #0f8ef0);
        background-image: linear-gradient(90deg, #0faef0, #0f8ef0);
        background-position: 50%;
        background-repeat: repeat-y;
        background-size: 1024px auto;
        top: 0;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 100;
    }
}
#prahalad_sig {
    background: transparent url("../../images/home/shp-mps.png") no-repeat scroll 0 0;
    width: 297px;
    height: 54px;
    margin-left: -30px;
    display: block;
    border: none;
    cursor: default;
}

/* General */

.outer-container {
    position: relative;
}
.clear-both {
    clear: both;
}

/* Main nav and Logo */

.epic-footer {
    position: relative;
    height: 78px;
    padding: 0;
}
.epic-footer-inner {
    text-align: left;
}
#top-menu-logo {
    width: 25%;
    float: left;
    padding-left: 1em;
    margin: 1em 0 0 0;
}
.outer-container .nav {
    white-space: nowrap;
}
.outer-container .navbar {
    text-align: right;
    float: right;
    width: 75%;
    padding-right: 1em;
    margin: 1em 0 0 0;
    z-index: 200;
}
.outer-container .navbar-inner {
    display: inline-block;
    z-index: 1000;
}
.outer-container .nav > li {
    float: none;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
.nav-toggle {
    display: none;
}
.outer-container .nav li {
    z-index: 1000;
}
.outer-container .nav > li > a {
    text-shadow: none;
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", sans-serif;
    color: white;
    letter-spacing: 2.5px;
    font-size: 1.4em;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 0 8px 0;
    margin: 11px 15px 7px 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.outer-container .nav > li > a:hover, .outer-container .nav > li > a:focus, .outer-container .nav > li > a:active {
    color: #fff;
    border-bottom: 2px solid #155789;
}
.outer-container .nav li a {
    z-index: 1000;
    color: #ffffff;
}
.outer-container .nav li a.nav-item-1 {
    display: none;
}
.outer-container .dropdown-menu {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: none;
}
.outer-container .dropdown-menu {
    padding: 0;
}
.outer-container .dropdown-menu li:first-of-type a {
    padding-top: 8px;
}
.outer-container .dropdown-menu li:last-of-type a {
    padding-bottom: 8px;
}
.outer-container .dropdown-menu li a {
    font-family: "Tungsten Narrow A", "Tungsten Narrow B", sans-serif;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #155789;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.3s;
}
.outer-container .dropdown-menu li a:hover, .outer-container .dropdown-menu li a:focus, .outer-container .dropdown-menu li a:active {
    background: none;
    color: #1faae1;
}
.outer-container .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
}

/* Social Media Icons */

.outer-container .nav a.twitter, .outer-container .nav a.linkedin, .outer-container .nav a.facebook {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    margin: 0;
    margin-bottom: 5px;
}
.outer-container .nav a.twitter, .outer-container .nav a.twitter:hover, .outer-container .nav a.twitter:focus, .outer-container .nav a.twitter:active {
    background: url(../../images/icon-hp-twitter.png) 50% 50% no-repeat;
    margin-right: 0;
    margin-left: 10px;
    border: none;
}
.outer-container .nav a.linkedin, .outer-container .nav a.linkedin:hover, .outer-container .nav a.linkedin:focus, .outer-container .nav a.linkedin:active {
    background: url(../../images/icon-hp-linkedin.png) 50% 50% no-repeat;
    margin-left: 10px;
    margin-right: 10px;
    border: none;
}
.outer-container .nav a.facebook, .outer-container .nav a.facebook:hover, .outer-container .nav a.facebook:focus, .outer-container .nav a.facebook:active {
    background: url(../../images/icon-hp-facebook.png) 50% 50% no-repeat;
    margin-left: 0;
    border: none;
}

/* Bottom */

.bottom {
    bottom: 0;
    position: fixed;
    z-index: 40;
    width: 100%;
}
.footer-anchor {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 20%;
    left: 50%;
    background-color: red;
}
@media screen and (min-width:1660px) {
    /* Nav */
    .epic-footer-inner {
        text-align: center;
    }
    /*.outer-container .navbar { width: 880px; }*/
    #top-menu-logo {
        width: 320px;
    }
}
@media screen and (max-width:1500px) {
    /* Nav */
    .epic-footer-inner .navbar li a {
        font-size: 1.3em;
        letter-spacing: 1.2px;
    }
    .epic-footer-inner .dropdown-menu li a {
        margin-top: 0;
        margin-bottom: 0;
    }
}
@media screen and (max-width:1300px) {
    /* Nav */
    .epic-footer-inner .nav li a {
        font-size: 1.1em;
        margin-left: 9px;
        margin-right: 9px;
    }
}
@media screen and (max-width:1100px) {
    /* Nav */
    .epic-footer-inner .nav li a {
        font-size: 1.05em;
        letter-spacing: 1px;
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media screen and (max-width:979px) {
    /* Header */
    .epic-footer {
        height: 80px;
    }
    #top-menu-logo {
        padding: 0 0 0 1em;
    }
    .outer-container .navbar {
        padding-top: 18px;
    }
    /* MOBILE NAV ------------------------*/
    /* Resetting Bootstrap Styles */
    .navbar .btn-navbar {
        display: none;
    }
    .nav-collapse .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        background-color: transparent !important;
    }
    .nav-collapse, .nav-collapse.collapse {
        overflow: visible;
    }
    .dropdown-menu>li>a {
        white-space: normal;
    }
    .epic-footer .nav > li > a {
        border-radius: 0;
    }
    .epic-footer .nav > li > a:hover {
        background-color: transparent;
        border-color: white;
    }
    /* Mobile Nav Button */
    .mobile-nav-btn-touch {
        width: 40px;
        height: 43px;
        position: absolute;
        right: 30px;
        transition: all 0.5s;
        cursor: pointer;
    }
    .mobile-nav-btn {
        position: absolute;
        height: 4px;
        width: 100%;
        top: 50%;
        margin-top: -2px;
        background-color: white;
        pointer-events: none;
    }
    .mobile-nav-btn:before, .mobile-nav-btn:after {
        content: '';
        background: white;
        position: absolute;
        right: 0;
        height: 4px;
        width: 100%;
    }
    .mobile-nav-btn:before {
        top: -10px;
    }
    .mobile-nav-btn:after {
        top: 10px;
    }
    /* Mobile Nav Button Animation */
    .mobile-nav-btn, .mobile-nav-btn:before, .mobile-nav-btn:after {
        transition: all 0.5s;
    }
    .cross-animate {
        background-color: transparent;
    }
    .cross-animate:before {
        -webkit-transform: rotate(45deg) translate(7px, 7px);
        transform: rotate(45deg) translate(7px, 7px);
    }
    .cross-animate:after {
        -webkit-transform: rotate(-45deg) translate(7px, -7px);
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .mobile-btn-push {
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }
    /* Mobile Nav */
    .outer-container .epic-footer .nav {
        background-color: #0f8ef0;
        position: absolute;
        top: -33px;
        right: 0;
        left: auto;
        box-sizing: border-box;
        width: 232px;
        padding: 40px 10px 40px;
        -webkit-transform: translateX(250px);
        transform: translateX(250px);
        transition: all 0.5s;
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .epic-footer .navbar {
        margin-top: 0;
        width: 74%;
    }
    .epic-footer .nav > li {
        display: block;
    }
    .epic-footer .nav li {
        max-width: 100%;
    }
    .epic-footer .nav > li > a {
        font-weight: bold;
        padding: 4px 0;
        margin: 0 9px;
    }
    .epic-footer .nav > .dropdown > .dropdown-menu {
        margin: 0 0 10px 25px;
    }
    .epic-footer .nav-collapse .dropdown-menu a {
        padding: 4px 0;
        margin: 0 9px;
        font-size: 1.1em;
        color: #fff;
    }
    .epic-footer .nav-collapse .dropdown-menu a:hover {
        color: #00adf3;
    }
    .outer-container .epic-footer a.facebook, .outer-container .epic-footer a.facebook:hover {
        margin-left: 10px;
    }
    .epic-footer .dropdown-menu .dropdown-menu {
        margin-left: 25px;
    }
    /* Mobile Nav Animation */
    .outer-container .epic-footer .nav.mobile-nav-reveal, .outer-container .epic-footer.mobile-nav-reveal {
        -webkit-transform: translateX(18px);
        transform: translateX(18px);
    }
    /* Header Logo */
    #top-menu-logo {
        margin-top: 23.4px;
    }
    #top-menu-logo img {
        min-width: 227px;
        transition: all 0.5s;
    }
}
@media screen and (max-width:567px) {
    .header-logo-push {
        -webkit-transform: translateX(-240px);
        transform: translateX(-240px);
    }
}