/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
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/
*********************/
/******************************************************************
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)
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

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

/*
Small Mobile Grid
*/
@media (max-width: 481px) {
  .sm-hide {
    display: none; }
  .sm-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .sm-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .sm-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.66%; }
  .sm-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .sm-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .sm-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .sm-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .sm-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .sm-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .sm-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .sm-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.33%; }
  .sm-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-hide {
    display: none; }
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .m-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.66%; }
  .m-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .m-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .m-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .m-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.33%; }
  .m-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-hide {
    display: none; }
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .t-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.66%; }
  .t-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .t-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .t-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.33%; }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-hide {
    display: none; }
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.66%; }
  .d-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .d-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .d-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.33%; }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/* Big desktops! */
@media (min-width: 1500px) {
  .bd-hide {
    display: none; }
  .bd-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .bd-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .bd-2of12 {
    float: left;
    padding-right: 0.75em;
    width: 16.66%; }
  .bd-3of12 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .bd-4of12 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .bd-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .bd-6of12 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .bd-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .bd-8of12 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .bd-9of12 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .bd-10of12 {
    float: left;
    padding-right: 0.75em;
    width: 83.33%; }
  .bd-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: arial;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img, iframe {
  max-width: 100%; }

* {
  vertical-align: middle; }

span {
  vertical-align: top; }

#main * {
  vertical-align: top; }

.nonLink {
  color: inherit;
  text-decoration: none; }
  .nonLink:hover {
    color: inherit;
    text-decoration: none; }

.wrap {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(37, 43, 43, 0.6); }

#container {
  border-bottom: 40px solid #252B2B; }

.btn {
  border: 0;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  padding: 8px 40px;
  display: inline-block;
  border-radius: 30px; }

.grnBtn {
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#129E88), to(#71F79F));
  background: -webkit-linear-gradient(left, #129E88, #71F79F);
  background: -o-linear-gradient(left, #129E88, #71F79F);
  background: linear-gradient(to right, #129E88, #71F79F); }

.blueBtn {
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#6610F2), to(#00E6FF));
  background: -webkit-linear-gradient(left, #6610F2, #00E6FF);
  background: -o-linear-gradient(left, #6610F2, #00E6FF);
  background: linear-gradient(to right, #6610F2, #00E6FF); }

.redBtn {
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#D11149), to(#735298));
  background: -webkit-linear-gradient(left, #D11149, #735298);
  background: -o-linear-gradient(left, #D11149, #735298);
  background: linear-gradient(to right, #D11149, #735298); }

/*********************
HEADER STYLES
*********************/
.header {
  margin: .75em 0;
  text-align: center; }

/*********************
TRI STYLES
*********************/
.tai-pop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  -o-transition: transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }
  .tai-pop .taip-inner {
    position: relative;
    z-index: 9;
    text-align: center;
    padding: 1em; }
  .tai-pop .taip-close {
    text-align: left;
    cursor: pointer; }
  .tai-pop .taip-content {
    max-width: 800px;
    margin: 0 auto; }
    .tai-pop .taip-content p {
      margin: .5em 0; }
    .tai-pop .taip-content strong {
      font-weight: 400;
      font-size: 22px; }
  .tai-pop .taip-sm img {
    margin: 15px 15px; }
  .tai-pop .taip-btn {
    margin: 1em 0; }

.taip-active {
  -webkit-transform: translateX(0%) !important;
  -ms-transform: translateX(0%) !important;
  transform: translateX(0%) !important; }

#tri-area {
  position: relative; }
  #tri-area .ta-ind {
    padding: 70px 20px;
    position: relative;
    cursor: pointer;
    text-align: center; }
    #tri-area .ta-ind .tai-inner {
      position: relative;
      z-index: 9; }
      #tri-area .ta-ind .tai-inner .tai-content {
        display: none; }

#mdpm-sb, #mdpmsb-pop {
  background: url("../images/banners/bm-mobi.jpg") center center no-repeat;
  background-size: cover; }

#mdpm-dm, #mdpmdm-pop {
  background: url("../images/banners/dm-mobi.jpg") center center no-repeat;
  background-size: cover; }

#mdpm-np, #mdpmnp-pop {
  background: url("../images/banners/np-mobi.jpg") center center no-repeat;
  background-size: cover; }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
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
*********************/
  body {
    font-size: 18px; }
  /*********************
TRI STYLES
*********************/
  #tri-area .ta-ind {
    padding: 100px 20px; }
  #mdpm-sb, #mdpmsb-pop {
    background: url("../images/banners/bm-tab.jpg") center center no-repeat;
    background-size: cover; }
  #mdpm-dm, #mdpmdm-pop {
    background: url("../images/banners/dm-tab.jpg") center center no-repeat;
    background-size: cover; }
  #mdpm-np, #mdpmnp-pop {
    background: url("../images/banners/np-tab.jpg") center center no-repeat;
    background-size: cover; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
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.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  body {
    font-size: 16px; }
  #container {
    border-bottom: 30px solid #252B2B; }
  /*********************
TRI STYLES
*********************/
  #tri-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 180px); }
    #tri-area .ta-ind {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 20px 1%; }
  /******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
  /*********************
HEADER STYLES
*********************/
  .header {
    margin: 0;
    padding: 15px 0; }
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  /*********************
FOOTER STYLES
*********************/ }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  body {
    font-size: 18px; }
  /*********************
TRI STYLES
*********************/
  .tai-pop {
    display: none; }
  #tri-area .ta-ind {
    padding: 20px 2%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 20%;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    text-align: center;
    cursor: auto; }
    #tri-area .ta-ind:hover .tai-inner {
      height: 530px; }
      #tri-area .ta-ind:hover .tai-inner .tai-content {
        opacity: 1;
        -webkit-transition: opacity ease .3s .5s;
        -o-transition: opacity ease .3s .5s;
        transition: opacity ease .3s .5s; }
    #tri-area .ta-ind .tai-inner {
      -webkit-transition: height ease .5s;
      -o-transition: height ease .5s;
      transition: height ease .5s;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      height: 120px;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      #tri-area .ta-ind .tai-inner .tai-logo {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%; }
      #tri-area .ta-ind .tai-inner .tai-content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        display: block;
        opacity: 0;
        -webkit-transition: opacity ease .3s 0s;
        -o-transition: opacity ease .3s 0s;
        transition: opacity ease .3s 0s; }
        #tri-area .ta-ind .tai-inner .tai-content .taic-content {
          max-width: 700px;
          margin: 0 auto; }
          #tri-area .ta-ind .tai-inner .tai-content .taic-content p {
            margin: .5em 0; }
          #tri-area .ta-ind .tai-inner .tai-content .taic-content strong {
            font-weight: 400;
            font-size: 22px; }
        #tri-area .ta-ind .tai-inner .tai-content .taic-sm img {
          margin: 15px 15px; }
        #tri-area .ta-ind .tai-inner .tai-content .taic-btn {
          margin: 1em 0; }
  #mdpm-dm {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  #mdpm-sb {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  #mdpm-np {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; } }

/*********************
VERY LARGE VIEWING SIZE
This is for the normal monitors at this point.
*********************/
@media only screen and (min-width: 1500px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Regular Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  #container {
    border-bottom: 70px solid #252B2B; }
  /*********************
TRI STYLES
*********************/
  #tri-area {
    height: calc(100vh - 220px); }
  /*********************
INTERNAL STYLES
*********************/
  /******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
  /*********************
HEADER STYLES
*********************/
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  /*********************
FOOTER STYLES
*********************/ }
