@charset "UTF-8";
:root {
  --font-family-brand: "industry", sans-serif;
  --font-family-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family-serif: "Georgia", Cambria, Times New Roman, Times, serif;
  --font-weight-brand-light: 300;
  --font-weight-brand-black: 800;
}

/* 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;
  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;
  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: "“" "”" "‘" "’";
}

/**
 * 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] {
  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, .guide-item, .guide-nav__list {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .guide-item:before, .guide-nav__list:before, .cf:after, .guide-item:after, .guide-nav__list:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .guide-item:after, .guide-nav__list: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;
}

/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/* Font variables */
.cf:after, .guide-item:after, .guide-nav__list:after {
  content: "";
  display: table;
  clear: both;
}

.img-responsive, div#header .site-logo img, .social img, .section--values .values .value__icon, .motivation__image, .learn__media img, .fiftyfifty__media img, .section--community-partners .detail__image, .commnunity__image, .brand__logo img, .modal--basic .modal-content img, .modal--partner .modal__image, .hero__image, .guide-item__media img, .footer-tower .footer__logo, .employees__media img, .section--carousel .carousel__image {
  display: block;
  width: 100%;
  height: auto;
}

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.v-align, div#headerDesktop div.menu-wrap .menu-dealer-menu-container, div#headerDesktop div.menu-wrap .menu-main-menu-container, div#headerDesktop div.image-wrap, .learn__content, .site-hero .hero__header h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.more-link {
  color: #383838;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.more-link:hover {
  color: #000;
  text-decoration: underline;
}

.contact-link {
  color: #383838;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-link:hover {
  color: #000;
  text-decoration: underline;
}

.page-back-link {
  float: right;
  width: auto;
  margin-top: -2em;
}

html, body {
  font-size: 15px;
}

body {
  color: #383838;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .popover-trigger .trigger__title, .h3, .h4, .page-template-page-careerslisting .listings .content > h3, .partner__title, .h5, .h6 {
  color: #383838;
  font-family: var(--font-family-brand);
  font-style: italic;
  margin: 0;
}

h1, .h1 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: var(--font-weight-brand-black);
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 54px;
  }
}

h2, .h2, .popover-trigger .trigger__title {
  font-size: 20px;
  line-height: 25px;
  font-weight: var(--font-weight-brand-black);
}
h2.employees__title, .h2.employees__title, .popover-trigger .employees__title.trigger__title {
  font-size: 20px;
  line-height: 25px;
}
@media (min-width: 768px) {
  h2, h2.employees__title, .h2, .popover-trigger .trigger__title, .h2.employees__title {
    font-size: 38px;
    line-height: 44px;
  }
}

h3, .h3 {
  color: #006c96;
  font-size: 20px;
  font-weight: var(--font-weight-brand-black);
  line-height: 20px;
  margin-bottom: 15px;
  padding-bottom: 0.5em;
  position: relative;
}
h3:after, .h3:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 1px;
  background-color: #006c96;
  height: 3px;
  width: 20px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

h4, .h4, .page-template-page-careerslisting .listings .content > h3, .partner__title {
  color: #383838;
  font-size: 18px;
  font-style: normal;
  font-weight: var(--font-weight-brand-black);
  margin-bottom: 10px;
}
.section__copy h4, .section__copy .h4, .section__copy .page-template-page-careerslisting .listings .content > h3, .page-template-page-careerslisting .listings .section__copy .content > h3, .section__copy .partner__title {
  margin-top: 20px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  h4, .h4, .page-template-page-careerslisting .listings .content > h3, .partner__title {
    font-size: 22px;
    line-height: 25px;
  }
}

h5, .h5 {
  color: #383838;
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-brand-black);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 18px;
    line-height: 23px;
  }
}

.lead {
  color: #00a3da;
  font-family: var(--font-family-brand);
  font-weight: var(--font-weight-brand-light);
  font-size: 20px;
  font-style: italic;
  line-height: 25px;
}
@media (min-width: 768px) {
  .lead {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .lead {
    font-size: 30px;
    line-height: 36px;
  }
}

/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: normal;
  word-break: normal;
  word-wrap: normal;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

.section__copy p {
  margin-top: 0;
}

a {
  color: #383838;
}

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

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: 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;
  padding-right: 0 !important;
}

/*
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-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
.site-alerts {
  margin-top: 20px;
  padding: 0 5%;
}
@media (min-width: 1224px) {
  .site-alerts {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.alert--info, .alert-success, .alert-error, .alert-info, .alert-help {
  margin: 30px 0;
  padding: 2em;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

.alert--info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

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

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  -moz-transition: background-color 0.14s ease-in-out;
  -ms-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}
.blue-btn:active {
  background-color: #2472a4;
}

.btn--popover {
  background: #fff url("../png/left-circle-arrow.png") 0 0 no-repeat;
  background-size: 100% auto;
  border-radius: 100%;
  box-shadow: 0 0 20px #000;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  text-indent: -9999em;
}
.section--employees .btn--popover {
  display: none;
}
@media (min-width: 768px) {
  .section--employees .btn--popover {
    display: block;
  }
}

.btn--ghost, .page-template-page-contact .location-button .btn {
  border: 2px solid #55aa44;
  color: #fff;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0.78em 1.5em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn--ghost .extra-content, .page-template-page-contact .location-button .btn .extra-content {
  display: none;
}
@media (min-width: 768px) {
  .btn--ghost, .page-template-page-contact .location-button .btn {
    padding: 0.78em 2em;
  }
  .btn--ghost .extra-content, .page-template-page-contact .location-button .btn .extra-content {
    display: inline;
  }
}

.btn--viewall {
  border: 2px solid #55aa44;
  color: #323944;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  padding: 1em 2em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn--viewall .extra-content {
  display: none;
}
@media (min-width: 768px) {
  .btn--viewall {
    padding: 1em 2.5em;
  }
  .btn--viewall .extra-content {
    display: inline;
  }
}

.section--carousel .slide-container {
  position: relative;
}
.section--carousel .carousel__arrow {
  display: none;
}
.section--carousel .slick-dots {
  display: none !important;
}
.section--carousel .slide-inner {
  position: relative;
}
.section--carousel .carousel__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.section--carousel .carousel__content .content-inner {
  color: #fff !important;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section--carousel .carousel__content h2 {
  color: #fff;
  margin-bottom: 10px;
}
.section--carousel .carousel__content p {
  margin: 0 auto 20px;
  width: 90%;
}
.section--carousel .carousel__content .extra-content {
  display: none;
}
@media (min-width: 768px) {
  .section--carousel .carousel__arrow {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    width: 24px;
    height: auto;
  }
  .section--carousel .carousel__arrow.arrow--left {
    left: 5%;
  }
}
@media (min-width: 768px) and (min-width: 1224px) {
  .section--carousel .carousel__arrow.arrow--left {
    left: 5%;
  }
}
@media (min-width: 768px) {
  .section--carousel .carousel__arrow.arrow--right {
    right: 5%;
  }
}
@media (min-width: 768px) and (min-width: 1224px) {
  .section--carousel .carousel__arrow.arrow--right {
    right: 5%;
  }
}
@media (min-width: 768px) {
  .section--carousel .slick-dots {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .section--carousel .slide-inner {
    position: relative;
  }
}
@media (min-width: 768px) {
  .section--carousel .carousel__content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
  .section--carousel .carousel__content .content-inner {
    color: #fff !important;
    width: 50%;
    margin: 0 auto;
    position: relative;
  }
  .section--carousel .carousel__content h2 {
    margin-bottom: 15px;
  }
  .section--carousel .carousel__content p {
    margin: 0 auto 20px;
    width: 60%;
  }
  .section--carousel .carousel__content .extra-content {
    display: inline;
  }
}

.section--contact {
  background-color: #fff; /* fallback color if gradients are not supported */
  background-image: -webkit-linear-gradient(right, #fff 60%, #ececec); /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
  background-image: -moz-linear-gradient(right, #fff 60%, #ececec); /* For Firefox (3.6 to 15) */
  background-image: -o-linear-gradient(right, #fff 60%, #ececec); /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(to right, #fff 60%, #ececec); /* Standard syntax; must be last */
  padding: 100px 5%;
}
@media (min-width: 1224px) {
  .section--contact {
    padding: 100px 5%;
  }
}

/* ================================================
*
* Employees widget.
*
* ================================================ */
.employees-widget {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .employees-widget {
    padding-top: 0;
  }
}

.employees__media {
  padding: 0;
}
@media (min-width: 768px) {
  .employees__media {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .employees__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.employees__title {
  padding: 0 5% 20px 5%;
}
@media (min-width: 600px) {
  .employees__title {
    padding: 0 0 20px 5%;
    width: 80%;
  }
}
@media (min-width: 768px) {
  .employees__title {
    padding-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1224px) {
  .employees__title {
    padding: 0 0 0 5%;
    width: 60%;
  }
}

.more-block-container .more-block {
  display: none;
}
@media (max-width: 767px) {
  .more-block-container .more-block {
    display: block;
  }
}

.more-overlay {
  background-color: rgba(48, 48, 48, 0.95);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.more-overlay .more-content {
  position: relative;
  display: block;
}
.more-overlay .white-wrap {
  display: flex;
  flex-direction: row-reverse;
  padding: 40px;
}
.more-overlay .white-wrap img {
  width: 25px;
  height: 25px;
}
.more-overlay .line {
  border-bottom: 1px solid #eaeaea;
  margin: 0px 40px;
}
.more-overlay h2 {
  color: #0dace3;
  font-weight: 300;
  padding: 15px 40px;
  font-size: 32px;
}
.more-overlay h4 {
  color: white;
  font-weight: 300;
  font-size: 24px;
  padding: 0px 40px;
}
.more-overlay .social-icons {
  position: relative;
  left: 40px;
}
.more-overlay .social-icons li {
  display: inline-block;
  margin-right: 5px;
}
.more-overlay .social-icons li a {
  display: block;
}
.more-overlay .social-icons li a img {
  width: 30px;
}
.more-overlay img.social {
  display: block;
  width: 200px;
  padding: 20px 40px;
}
.more-overlay p {
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 0px 40px;
}

.footer-tower {
  margin: 0 auto;
  width: 220px;
}
.page-template-page-dealerguide .footer-tower {
  width: auto;
}
.footer-tower .footer__header {
  padding: 25px 15px;
}
.page-template-page-dealerguide .footer-tower .footer__header {
  width: 220px;
}
.footer-tower .footer__links {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  display: flex;
  align-items: center;
  position: relative;
}
.footer-tower .footer__links .social {
  padding: 12px 0;
  width: 50%;
}
.footer-tower .footer__links .contact-link {
  text-align: center;
  width: 50%;
}
.footer-tower .footer__links:after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  top: 8px;
  bottom: 8px;
  transform: skewX(-15deg);
  border-right: 1px solid #ccc;
}
.footer-tower .location__select {
  margin: 25px 0 0;
}
.footer-tower .location__select select {
  margin: 0;
}
.footer-tower .footer__footer {
  font-size: 11px;
  line-height: 18px;
  padding: 25px 12px;
  text-align: center;
}
.footer-tower .footer__footer a {
  color: #383838;
  text-decoration: none;
  white-space: nowrap;
}
.footer-tower .footer__footer a:hover {
  text-decoration: underline;
}
.page-template-page-dealerguide .footer-tower .footer__footer {
  padding-left: 15px;
  padding-top: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .footer-tower {
    margin: 0;
  }
}

.footer__menu {
  padding: 40px 0;
}
.footer__menu .menu {
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  margin: 0;
}
.footer__menu .menu > li {
  width: 33%;
}
.footer__menu .menu > li > a {
  color: #383838;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__menu .menu > li > a:hover {
  text-decoration: underline;
}
.footer__menu .sub-menu {
  margin: 8px 0 0 0;
}
.footer__menu .sub-menu li {
  margin: 0 0 5px;
}
.footer__menu .sub-menu a {
  color: #383838;
  text-decoration: none;
}
.footer__menu .sub-menu a:hover {
  text-decoration: underline;
}
.footer__menu .sub-menu .footer-menu__press-room {
  margin-top: 30px;
}
.footer__menu .sub-menu .footer-menu__press-room a {
  color: #383838;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__menu .sub-menu .footer-menu__press-room a:hover {
  text-decoration: underline;
}

.footer__careers-menu {
  padding: 40px 0;
}
.footer__careers-menu .menu {
  background-color: #F8F9FA;
  font-size: 15px;
  margin: 0;
  padding: 10px;
  width: 220px;
}
.footer__careers-menu .menu:before {
  content: "Browse Jobs";
  display: block;
  color: #383838;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 8px;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__careers-menu .menu > li {
  margin: 0 0 5px;
}
.footer__careers-menu .menu > li > a {
  color: #383838;
  text-decoration: none;
}
.footer__careers-menu .menu > li > a:hover {
  text-decoration: underline;
}

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

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  -moz-transition: background-color 0.24s ease-in-out;
  -ms-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #f7f8fa;
  outline: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

.guide-header .dealer-specific {
  background-color: #d5edf8;
  display: inline-block;
  margin-bottom: 30px;
  padding: 20px;
  width: auto;
}
.guide-header .dealer-specific p {
  margin: 0;
  width: 100%;
}
.guide-header .lead {
  margin-bottom: 30px;
}
.guide-header .h5 strong {
  color: #18455d;
}
.guide-header .h4, .guide-header .page-template-page-careerslisting .listings .content > h3, .page-template-page-careerslisting .listings .guide-header .content > h3, .guide-header .partner__title {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .guide-header .dealer-specific,
.guide-header .lead {
    margin-bottom: 60px;
  }
}

.guide-pagenav {
  margin: 30px 0 0;
  padding-top: 0 !important;
}
@media (min-width: 768px) {
  .guide-pagenav {
    margin-top: 60px;
  }
}

.guide-pagenav__list {
  background-color: #efefef;
  margin: 30px 0 0;
  padding: 15px;
}

.guide-pagenav__list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.guide-pagenav__list-item .bullet {
  display: inline-block;
  font-weight: bold;
  padding: 0 10px 0 20px;
}

.guide-pagenav__link {
  color: #00a3da;
  display: inline-block;
  font-family: var(--font-family-brand);
  font-weight: var(--font-weight-black);
  font-style: italic;
  font-size: 16px;
  padding: 12px 20px;
  text-decoration: none;
  position: relative;
}
.guide-pagenav__link:before {
  content: "";
  background-color: #ccc;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  transform: rotate(20deg);
}
.guide-pagenav__link:hover {
  text-decoration: underline;
}

.guide-nav {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 30px 0 0;
}

.guide-nav__list-item {
  position: relative;
  text-align: center;
}

.guide-nav__link {
  color: #00a3da;
  display: block;
  font-family: var(--font-family-brand);
  font-weight: var(--font-weight-black);
  font-size: 18px;
  padding: 12px 20px;
  text-decoration: none;
}

@media (min-width: 920px) {
  .guide-nav {
    margin-top: 50px;
    padding: 15px 0;
    text-align: center;
  }
  .guide-nav__list {
    display: table-row;
    width: 100%;
  }
  .guide-nav__list-item {
    display: table-cell;
    vertical-align: middle;
    width: 33.33%;
  }
  .guide--orders .guide-nav__list-item {
    width: 20%;
  }
  .guide-nav__list-item:not(:last-of-type):after {
    content: "";
    background-color: #ccc;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
    width: 1px;
    height: 50px;
    transform: rotate(20deg);
  }
}
.guide__header {
  max-width: 925px;
}

.section--guide .guide__header h2 {
  color: #006c96;
}
.section--guide .guide__header h2 small {
  font-size: 0.5em;
}

.guide-item {
  padding: 20px 0;
}

.guide-item__info p.small {
  font-size: 13px;
  line-height: 1.6;
  padding-right: 2em;
}

.guide-item__info--full {
  max-width: 800px;
}

@media (min-width: 768px) {
  .guide-item__info:not(.guide-item__info--full) {
    float: left;
    width: 48%;
  }
  .guide-item__media {
    float: right;
    width: 48%;
  }
}
@media (min-width: 1024px) {
  .guide-item__info:not(.guide-item__info--full) {
    width: 38%;
  }
  .guide-item__media {
    width: 58%;
  }
}
.guide-item--column .guide-item__info, .guide-item--column .guide-item__media {
  float: none;
  width: 100%;
}
@media (min-width: 768px) {
  .guide-item--column {
    float: left;
    width: 48%;
  }
  .guide-item--column:last-of-type {
    float: right;
  }
}

.guide-totop {
  text-align: center;
}
.guide-totop .btn--ghost, .guide-totop .page-template-page-contact .location-button .btn, .page-template-page-contact .location-button .guide-totop .btn {
  color: #383838;
}
.guide-totop .btn--ghost:hover, .guide-totop .page-template-page-contact .location-button .btn:hover, .page-template-page-contact .location-button .guide-totop .btn:hover {
  text-decoration: underline;
}

.guide-contents__item {
  margin: 0 0 30px;
}
.guide-contents__item h2 {
  font-weight: var(--font-weight-black);
  font-style: italic;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .guide-contents__item h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 920px) {
  .guide-contents__item h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
.guide-contents__item h2 a, .guide-contents__item h3 a, .guide-contents__item h4 a {
  color: #00a3da;
  text-decoration: none;
}
.guide-contents__item img {
  display: block;
  width: 100%;
  height: auto;
}
.guide-contents__item p {
  margin: 0 0 0.5em;
}
.guide-contents__item ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.3em;
}
.guide-contents__item ul li {
  margin: 0 0 1em;
}
.guide-contents__item .btn--ghost, .guide-contents__item .page-template-page-contact .location-button .btn, .page-template-page-contact .location-button .guide-contents__item .btn {
  color: #383838;
}
.guide-contents__item .btn--ghost:hover, .guide-contents__item .page-template-page-contact .location-button .btn:hover, .page-template-page-contact .location-button .guide-contents__item .btn:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .guide-contents__item {
    float: left;
    padding-top: 20px;
    padding-bottom: 50px;
    position: relative;
    width: 33.33%;
  }
  .guide-contents__item .item {
    position: relative;
    padding: 0;
  }
  .guide-contents__item .item.item--title {
    margin-bottom: 20px;
  }
  .guide-contents__item .item.item--button {
    margin-top: 30px;
  }
}
@media (min-width: 920px) {
  .guide-contents__item:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    transform: skewX(15deg);
    border-right: 1px solid #ccc;
  }
  .guide-contents__item:last-of-type:after {
    display: none;
  }
  .guide-contents__item .inner {
    padding: 0 20px;
  }
  .guide-contents__item .item.item--title {
    text-indent: -10px;
  }
  .guide-contents__item .item-1 {
    left: -10px;
  }
  .guide-contents__item .item-2 {
    left: 0px;
  }
  .guide-contents__item .item-3 {
    left: 10px;
  }
  .guide-contents__item .item-4 {
    left: 20px;
  }
  .guide-contents__item .item-5 {
    left: 40px;
  }
}
.hero {
  position: relative;
}
@media (min-width: 768px) {
  .hero.main-hero {
    min-height: 83vw;
  }
}

@media (min-width: 768px) {
  .main-hero .hero__media {
    position: absolute;
    height: 83vw;
    width: 100%;
  }
}

.hero__content {
  padding: 15px 5%;
}
.site-hero .hero__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.base-hero .hero__content {
  padding-top: 25px;
  padding-bottom: 30px;
}
.mini-hero .hero__content {
  padding-top: 25px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .main-hero .hero__content {
    background-color: #1B455C;
    color: #fff;
  }
  .base-hero .hero__content {
    background-color: #52ab3d;
    color: #fff;
  }
  .page-template-page-contact .base-hero .hero__content {
    background-color: #1B455C;
  }
  .mini-hero .hero__content {
    background-color: #1B455C;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .hero__content {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent !important;
  }
  .main-hero .hero__content {
    position: relative;
    z-index: 2;
  }
  .base-hero .hero__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mini-hero .hero__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1224px) {
  .hero__content {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.hero__header h1 {
  color: #fff;
}
.hero__header .lead {
  margin: 0;
}
.site-hero .hero__header h1 {
  position: absolute;
}
.main-hero .hero__header {
  margin-bottom: 30px;
}
.main-hero .hero__header h1 {
  margin: 0 0 20px;
}
.base-hero .hero__header h1 {
  color: #fff;
  margin: 0 0 10px;
  width: 70%;
}
.base-hero .hero__header h1:only-child {
  margin-bottom: 0;
}
.base-hero .hero__header .lead {
  margin: 0;
}
.mini-hero .hero__header h1 {
  color: #fff;
  margin: 0;
}
.mini-hero .hero__header .lead {
  margin: 0;
}
@media (max-width: 767px) {
  .hero__header h1, .hero__header h2, .hero__header p:not(.lead) {
    color: #fff;
  }
  .page-template-page-contact .base-hero .hero__header h1 {
    color: #30b4e2;
  }
  .base-hero .hero__header p.lead {
    color: #fff;
  }
}
@media (min-width: 375px) {
  .site-hero .hero__header h1 {
    width: 85%;
  }
}
@media (min-width: 768px) {
  .site-hero .hero__header h1 {
    width: 65%;
    max-width: 790px;
  }
  .main-hero .hero__header {
    height: 54vw;
    margin: 0;
  }
  .main-hero .hero__header .header-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .main-hero .hero__header h1 {
    width: 55%;
  }
  .main-hero .hero__header .lead {
    width: 50%;
  }
  .base-hero .hero__header {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .base-hero .hero__header h1 {
    margin: 0 0 20px;
    width: 55%;
  }
  .base-hero .hero__header .lead {
    width: 50%;
  }
  .mini-hero .hero__header {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 50%;
  }
  .mini-hero .hero__header h1 {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .main-hero .hero__header .lead {
    width: 45%;
  }
}

.hero__article h3 {
  margin: 0 0 15px;
}
.hero__article p:last-of-type {
  margin: 0;
}
@media (max-width: 767px) {
  .hero__article h3, .hero__article p {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .main-hero .hero__article .article-inner {
    padding: 30px 0 0 52%;
  }
}
@media (min-width: 1024px) {
  .main-hero .hero__article .article-inner {
    padding-top: 50px;
  }
}

.listings {
  margin-bottom: 90px;
}

.listing {
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
}
.listing h4 {
  color: #383838;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin: 0 0 5px;
}
.listing .apply p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 10px;
  padding-right: 20px;
}
.listing .apply .modal-switch-lever {
  border: 1px solid #0099d5;
  color: #000;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  margin: 0;
  padding: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.listing .apply .modal-switch-lever:hover {
  background-color: #0099d5;
  color: #fff;
}
.listing .clearfix {
  display: none !important;
}
@media (min-width: 768px) {
  .listing h4 {
    margin-bottom: 20px;
  }
  .listing .apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .listing .apply p {
    margin: 0;
  }
}
@media (min-width: 920px) {
  .listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .listing h4 {
    margin-bottom: 0;
  }
  .listing .apply {
    justify-content: flex-end;
    width: auto;
  }
  .listing .apply p {
    text-align: right;
  }
}

.location__content {
  width: 100%;
}

.location__details {
  background-color: #F8F9FA;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: var(--font-family-brand);
  font-style: italic;
  line-height: 1.8;
  margin: 35px 0;
  width: 100%;
  padding: 0 20px;
}
.location__details dt, .location__details dd {
  margin: 1.5em 0;
}
.location__details dt {
  font-weight: var(--font-weight-black);
  width: 40%;
}
.location__details dd {
  width: 60%;
}
.location__details a {
  color: #00A3DA;
  text-decoration: none;
}
.location__details a:hover {
  text-decoration: underline;
}
.location__details a .fa {
  font-size: 14px;
  margin-right: 5px;
}

@media (min-width: 1024px) {
  .location__content {
    max-width: 680px;
  }
  .location__details {
    max-width: 560px;
  }
}
.jobs-modal__overlay {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal--partner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(24, 69, 93, 0.9);
  z-index: 999999;
}
.modal--partner .modal-inner {
  background: #18455d;
  width: 100%;
  height: 100%;
  display: block;
  overflow-y: auto;
}
.modal--partner .modal-close {
  background-image: url("../png/modal-close.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  cursor: pointer;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-indent: -9999em;
  width: 30px;
  z-index: 9999;
}
.modal--partner .modal__media {
  padding: 20px 20px 0;
}
.modal--partner .modal__content {
  color: #fff;
  padding: 20px;
}
.modal--partner .modal__content h2, .modal--partner .modal__content h3, .modal--partner .modal__content h4, .modal--partner .modal__content p {
  color: #fff;
}
.modal--partner .modal__content p.title {
  line-height: 1.4;
  margin-top: 10px;
}
.modal--partner .modal__image {
  border-radius: 100%;
  width: 35%;
}
.modal--partner header {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.modal--partner header p {
  font-family: var(--font-family-brand);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}
.modal--partner article .column {
  margin: 0 0 20px;
}
.modal--partner article h4 {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
}
.modal--partner article p {
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 920px) {
  .modal--partner .modal-inner {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    height: auto;
  }
  .modal--partner .modal__media {
    padding: 0;
    position: relative;
    width: 35%;
  }
  .modal--partner .modal__media:after {
    content: "";
    display: block;
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: -100px;
    background-color: #18455d;
    transform: skewX(-15deg);
  }
  .modal--partner .modal__content {
    padding: 50px 20px 20px 0;
    position: relative;
    width: 65%;
    z-index: 999;
  }
  .modal--partner .modal__content p.title {
    line-height: 1.4;
    margin-top: 10px;
  }
  .modal--partner .modal__image {
    border-radius: 0;
    width: 100%;
  }
  .modal--partner header {
    margin-bottom: 15px;
  }
  .modal--partner article {
    display: flex;
    justify-content: space-between;
  }
  .modal--partner article .column {
    margin: 0;
    width: 33%;
  }
  .modal--partner article .column:not(:last-of-type) {
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .modal--partner .modal__media:after {
    width: 200px;
    right: -100px;
  }
  .modal--partner .modal__content {
    padding: 50px 50px 50px 0;
  }
  .modal--partner article {
    margin-top: 50px;
  }
  .modal--partner article .column:not(:last-of-type) {
    padding-right: 25px;
  }
}
@media (min-width: 1966px) {
  .modal--partner .modal__media:after {
    width: 300px;
    right: -150px;
  }
}

.modal--basic {
  background-color: rgba(24, 69, 93, 0.9);
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99999999;
  /* Modal Content/Box */
}
.modal--basic .modal-close {
  background-image: url("../png/modal-close-blue.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  cursor: pointer;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-indent: -9999em;
  width: 30px;
  z-index: 9999;
}
.modal--basic .modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  top: 50px;
  width: 80%;
  max-width: 820px;
  max-height: calc(90vh - 70px);
  overflow-y: auto;
  overflow-x: hidden;
}
.modal--basic .modal-content h4 {
  margin-top: 30px;
}
.modal--basic.modal--large .modal-content {
  max-height: calc(98vh - 70px);
}

.partner {
  padding: 0 0 20px;
}

.partner__name {
  color: #00a3da;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .partner__name {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1024px) {
  .partner__name {
    font-size: 28px;
    line-height: 36px;
  }
}

.partner__title {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  margin: 0;
  line-height: 22px;
}
@media (min-width: 768px) {
  .partner__title {
    margin: 0 0 0 0.5em;
  }
}

/* ================================================
*
* Popover.
*
* ================================================ */
.popover-group {
  background-color: #19465d;
}
@media (min-width: 768px) {
  .popover-group {
    background-color: transparent;
    position: absolute;
  }
}

.popover-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #30596e;
}
.popover-trigger .trigger__title {
  color: white;
  font-family: var(--font-family-brand);
  font-size: 18px;
  font-weight: 500;
}
.popover-trigger .trigger__arrow {
  background: url("../png/arrow.png") 0 0 no-repeat;
  background-size: 100% 100%;
  display: block;
  height: 13px;
  width: 25px;
  text-indent: -9999em;
}
@media (min-width: 768px) {
  .popover-trigger {
    background: #fff url("../png/left-circle-arrow.png") 0 0 no-repeat;
    background-size: 100% auto;
    border-radius: 100%;
    border: none;
    box-shadow: 0 0 20px #000;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    text-indent: -9999em;
  }
  .popover-trigger .trigger__arrow, .popover-trigger .trigger__title {
    display: none;
  }
}

.popover {
  background-color: rgba(45, 45, 45, 0.95);
  color: #fff;
  display: none;
  padding: 30px;
  width: 100%;
  z-index: 999999;
}
@media (max-width: 767px) {
  .popover {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .popover.in {
    display: flex !important;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .popover {
    background-color: #fff;
    color: #383838;
    padding: 45px;
    position: absolute;
    width: 430px;
  }
  .from-right .popover {
    right: -30px;
  }
}
.popover .social-icons li {
  display: inline-block;
  width: 22px;
}
.popover .social-icons li img {
  width: 100%;
  height: auto;
}
.popover h5 {
  color: white;
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 768px) {
  .popover h5 {
    color: #383838;
    margin: 10px 0 5px;
  }
}
.popover p {
  color: white;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .popover p {
    color: #383838;
  }
}

.popover__close {
  background: url("../png/white_exit.png") 0 0 no-repeat;
  background-size: 100% auto;
  border-radius: 100%;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 36px;
  height: 36px;
  text-indent: -9999em;
}
@media (min-width: 768px) {
  .popover__close {
    background: #00a3da url("../png/exit.png") 0 0 no-repeat;
    background-size: 100% 100%;
    top: -15px;
    right: -15px;
  }
}

.popover__title {
  color: #00a3da;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 0.25em;
  padding: 0;
}
.popover__title:after {
  display: none;
}
@media (min-width: 768px) {
  .popover__title {
    font-size: 28px;
    font-weight: 300;
  }
}

.popover__subtitle {
  color: white;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .popover__subtitle {
    color: #383838;
    font-size: 16px;
    margin: 0 0 0.25em;
  }
}

/* ================================================
*
* Posts.
*
* ================================================ */
.post--news {
  margin: 0;
  padding: 30px 0;
}
.post--news:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.post--news:hover {
  background-color: #f5fbfe;
}
.post--news .excerpt__title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}
.post--news .excerpt__title a {
  color: #383838;
  text-decoration: none;
}
.post--news .excerpt__title a:hover {
  text-decoration: underline;
}
.post--news .excerpt__date {
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .press-listings--subpage .post--news {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .press-listings--subpage .post--news .excerpt__title {
    margin: 0;
  }
  .press-listings--subpage .post--news .excerpt__date {
    min-width: 150px;
    margin-left: 20px;
    text-align: right;
  }
}

/* ================================================
*
* Press.
*
* ================================================ */
.press-listings--index {
  padding-top: 50px;
}
.press-listings--index .press-listing {
  margin: 0 0 100px;
}
@media (min-width: 960px) {
  .press-listings--index {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .press-listings--index .press-listing {
    margin: 0;
    width: 45%;
  }
  .press-listings--index .press-listing h3 {
    margin-bottom: 30px;
  }
  .press-listings--index .press-listing .viewall {
    margin-top: 30px;
  }
}
@media (min-width: 1220px) {
  .press-listings--index .press-listing {
    width: 48%;
  }
}
@media (min-width: 1440px) {
  .press-listings--index .press-listing {
    width: 45%;
  }
}

.press-listings--subpage .press-listing {
  margin: 30px 0;
}

.promo {
  position: relative;
  background-color: #fff; /* fallback color if gradients are not supported */
  background-image: -webkit-linear-gradient(right, #fff 60%, #e6e6e6); /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
  background-image: -moz-linear-gradient(right, #fff 60%, #e6e6e6); /* For Firefox (3.6 to 15) */
  background-image: -o-linear-gradient(right, #fff 60%, #e6e6e6); /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(to right, #fff 60%, #e6e6e6); /* Standard syntax; must be last */
  padding: 50px 5%;
}
@media (min-width: 1224px) {
  .promo {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.promo__header h2 {
  font-weight: var(--font-weight-brand-light);
}

.promo__link {
  color: #383838;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .promo {
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .promo__header, .promo__body {
    width: 50%;
  }
  .promo__header {
    position: relative;
    padding-right: 1em;
  }
  .promo__header:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: skewX(-15deg);
    border-right: 1px solid #383838;
  }
  .promo__body {
    padding-left: 50px;
  }
  .promo__body p {
    margin-top: 0;
  }
}
.section:not(.hero), .guide-pagenav:not(.hero) {
  padding: 100px 5% 0;
}
@media (min-width: 768px) {
  .section:not(.hero), .guide-pagenav:not(.hero) {
    padding-top: 150px;
  }
}
@media (min-width: 1224px) {
  .section:not(.hero), .guide-pagenav:not(.hero) {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.section:not(.hero).section--community, .guide-pagenav:not(.hero).section--community, .section:not(.hero).section--carousel, .guide-pagenav:not(.hero).section--carousel, .section:not(.hero).section--focus, .guide-pagenav:not(.hero).section--focus, .section:not(.hero).section--guide, .guide-pagenav:not(.hero).section--guide {
  padding-left: 0;
  padding-right: 0;
}
.section:not(.hero).section--community, .guide-pagenav:not(.hero).section--community {
  padding-top: 0;
  margin-top: 70px;
}
.section:not(.hero).section--fiftyfifty, .guide-pagenav:not(.hero).section--fiftyfifty, .section:not(.hero).section--employees, .guide-pagenav:not(.hero).section--employees, .section:not(.hero).section--motivation, .guide-pagenav:not(.hero).section--motivation, .section:not(.hero).section--learn, .guide-pagenav:not(.hero).section--learn, .section:not(.hero).section--simplecarousel, .guide-pagenav:not(.hero).section--simplecarousel {
  padding: 0;
}
.section:not(.hero).section--employees, .guide-pagenav:not(.hero).section--employees, .section:not(.hero).section--listings, .guide-pagenav:not(.hero).section--listings, .section:not(.hero).section--page, .guide-pagenav:not(.hero).section--page, .section:not(.hero).section--press-listings, .guide-pagenav:not(.hero).section--press-listings {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section:not(.hero).section--learn, .guide-pagenav:not(.hero).section--learn, .section:not(.hero).section--press-listings, .guide-pagenav:not(.hero).section--press-listings {
    padding-top: 50px;
  }
  .section:not(.hero).section--community, .guide-pagenav:not(.hero).section--community {
    margin-top: 100px;
  }
}
.section__copy {
  margin: 0 0 50px;
}

/*
*
* Brands Section
* ======================================
*/
.section--brands {
  position: relative;
}

.brands__content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.brand__logo {
  padding: 10px;
  width: 50%;
}
@media (min-width: 768px) {
  .brand__logo {
    padding: 20px;
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .brand__logo {
    width: 16.6666667%;
  }
}
/*
*
* Focused, GUIDE Section
* ======================================
*/
.section--focus .focus__header, .section--focus .guide__header, .section--focus .guide-totop, .section--guide .focus__header, .section--guide .guide__header, .section--guide .guide-totop {
  padding: 0 5% 20px;
}
@media (min-width: 768px) {
  .section--focus .focus__header, .section--focus .guide__header, .section--focus .guide-totop, .section--guide .focus__header, .section--guide .guide__header, .section--guide .guide-totop {
    padding-bottom: 50px;
  }
}
@media (min-width: 1224px) {
  .section--focus .focus__header, .section--focus .guide__header, .section--focus .guide-totop, .section--guide .focus__header, .section--guide .guide__header, .section--guide .guide-totop {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.section--focus .focus__header h2, .section--focus .guide__header h2, .section--focus .guide-totop h2, .section--guide .focus__header h2, .section--guide .guide__header h2, .section--guide .guide-totop h2 {
  color: #00a3db;
  font-style: italic;
  font-size: 38px;
  font-weight: var(--font-weight-brand-black);
  line-height: 44px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .section--focus .focus__header h2, .section--focus .guide__header h2, .section--focus .guide-totop h2, .section--guide .focus__header h2, .section--guide .guide__header h2, .section--guide .guide-totop h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.section--focus .focus__group, .section--focus .guide-item, .section--guide .focus__group, .section--guide .guide-item {
  padding: 50px 5%;
}
@media (min-width: 1224px) {
  .section--focus .focus__group, .section--focus .guide-item, .section--guide .focus__group, .section--guide .guide-item {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.section--focus .focus__group:nth-child(even), .section--focus .guide-item:nth-child(even), .section--guide .focus__group:nth-child(even), .section--guide .guide-item:nth-child(even) {
  background: #f5fbfe;
}
.section--focus .focus__group .grid, .section--focus .guide-item .grid, .section--guide .focus__group .grid, .section--guide .guide-item .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section--focus .focus__group .grid .item, .section--focus .guide-item .grid .item, .section--guide .focus__group .grid .item, .section--guide .guide-item .grid .item {
  width: 100%;
  padding: 25px 0;
}
.section--focus .focus__group .grid .item:not(:last-of-type), .section--focus .guide-item .grid .item:not(:last-of-type), .section--guide .focus__group .grid .item:not(:last-of-type), .section--guide .guide-item .grid .item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
}
.section--focus .focus__group .grid .item p, .section--focus .guide-item .grid .item p, .section--guide .focus__group .grid .item p, .section--guide .guide-item .grid .item p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section--focus .focus__group .grid .item, .section--focus .guide-item .grid .item, .section--guide .focus__group .grid .item, .section--guide .guide-item .grid .item {
    border: none !important;
    padding: 15px 0px;
    width: 48%;
  }
}

/*
*
* Listings Section
* ======================================
*/
.section--listings h3 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section--listings h3 {
    margin-bottom: 80px;
  }
}

.page-template-page-careerslisting .listings .content {
  padding: 0;
}
.page-template-page-careerslisting .listings .content > h3 {
  border-bottom: 2px solid #ccc;
  color: #00a3da;
  padding-bottom: 10px;
}
.page-template-page-careerslisting .listings .content > h3:after {
  display: none;
}
.page-template-page-careerslisting .listings .listing {
  border-bottom: 1px solid #ccc;
}

/*
*
* Community Sections
* ======================================
*/
.section--community {
  position: relative;
}
.section--community h3 {
  margin-left: 5%;
  margin-right: 5%;
}
@media (min-width: 768px) {
  .section--community h3 {
    display: none;
  }
}

.community__content {
  padding-left: 5%;
  padding-right: 5%;
}
.community__content h2 {
  display: none;
}
@media (min-width: 768px) {
  .community__content {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .community__content .content-inner {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45%;
    right: 5%;
  }
  .community__content h2 {
    color: #fff;
    display: block;
  }
  .community__content p {
    color: #fff;
  }
}

/*
*
* Community Partners Section
* ======================================
*/
.section--community-partners {
  position: relative;
}
.section--community-partners .detail__image {
  max-width: 235px;
}
.section--community-partners .detail__link a {
  color: #00a3da;
}
.section--community-partners .list__body {
  margin-top: 30px;
}
.section--community-partners .list__body ul {
  margin: 0;
  -webkit-columns: 100px 2;
  -moz-columns: 100px 2;
  columns: 100px 2;
}
.section--community-partners .list__body li {
  margin-bottom: 1em;
}
.section--community-partners .list__title {
  display: none;
}
.section--community-partners .list__link {
  color: #383838;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
}
.section--community-partners .list__link.active {
  color: #00a3da;
}
@media (min-width: 768px) {
  .section--community-partners {
    display: flex;
    justify-content: space-between;
  }
  .section--community-partners .community-partners__detail {
    padding-right: 20px;
    width: 50%;
  }
  .section--community-partners .community-partners__list {
    padding-left: 20px;
    width: 50%;
  }
  .section--community-partners .list__body {
    margin: 0;
  }
  .section--community-partners .section__title {
    display: none;
  }
  .section--community-partners .list__title {
    border-bottom: 1px solid #eaeaea;
    display: block;
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}

/*
*
* Department Section
* ======================================
*/
.section--departments .departments {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section--departments .department {
  background-color: #006c96;
  height: 70px;
  margin-bottom: 2vw;
  width: 49%;
}
.section--departments .department p {
  display: none;
}
.section--departments .department .more-link {
  display: none;
}
@media (max-width: 767px) {
  .section--departments .department .department__content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.section--departments .department__title {
  font-size: 16px;
  margin: 0;
}
.section--departments .department__title a {
  color: #fff;
  display: block;
  padding: 0 15px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .section--departments .departments {
    justify-content: flex-start;
  }
  .section--departments .department {
    background-color: transparent;
    height: auto;
    margin-bottom: 50px;
    width: 33.3333%;
  }
  .section--departments .department p {
    display: block;
    line-height: 25px;
    margin: 0 0 8px;
  }
  .section--departments .department .more-link {
    display: block;
  }
  .section--departments .department__title {
    border-bottom: 1px solid #ccc;
    font-size: 22px;
    height: 60px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    position: relative;
  }
  .section--departments .department__title a {
    color: #383838;
    padding: 0;
    position: absolute;
    bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section--departments .department:not(:nth-child(3n)) .department__content {
    padding-right: 25px;
  }
}
@media (min-width: 1024px) {
  .section--departments .department {
    width: 25%;
  }
  .section--departments .department:not(:nth-child(4n)) .department__content {
    padding-right: 25px;
  }
}

/*
*
* Fifty/Fifty Sections
* ======================================
*/
.section--fiftyfifty {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .section--fiftyfifty {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section--fiftyfifty.fiftyfifty--first {
    flex-direction: row-reverse;
    position: relative;
    z-index: 2;
  }
  .section--fiftyfifty.fiftyfifty--second {
    flex-direction: row;
    margin-top: -20px;
  }
}
@media (min-width: 728px) {
  .section--fiftyfifty.fiftyfifty--second {
    margin-top: -60px;
  }
}

.fiftyfifty__media {
  display: none;
  position: absolute;
  right: -30%;
  width: 65%;
}
@media (min-width: 600px) {
  .fiftyfifty__media {
    display: block;
    position: static;
    right: auto;
    width: 55%;
  }
}

.fiftyfifty__content {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}
.section--fiftyfifty.fiftyfifty--first .fiftyfifty__content {
  padding-top: 50px;
  padding-bottom: 0;
}
.section--fiftyfifty.fiftyfifty--second .fiftyfifty__content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 600px) {
  .fiftyfifty__content {
    width: 45%;
  }
  .section--fiftyfifty.fiftyfifty--first .fiftyfifty__content {
    padding-top: 0;
    padding-bottom: 60px;
    padding-right: 0;
  }
  .section--fiftyfifty.fiftyfifty--second .fiftyfifty__content {
    padding-top: 60px;
    padding-bottom: 0;
    padding-left: 0;
  }
}
@media (min-width: 1224px) {
  .section--fiftyfifty.fiftyfifty--first .fiftyfifty__content {
    padding-left: 5%;
  }
  .section--fiftyfifty.fiftyfifty--second .fiftyfifty__content {
    padding-right: 5%;
  }
}

.section--fiftyfifty {
  font-size: 13px;
}
.section--fiftyfifty h2 {
  color: #383838;
  font-size: 20px;
  font-style: italic;
  margin: 0 0 0.5em;
}
.section--fiftyfifty p {
  line-height: 1.8;
}
@media (min-width: 600px) {
  .section--fiftyfifty {
    font-size: 15px;
  }
  .section--fiftyfifty h2 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .section--fiftyfifty {
    font-size: 15px;
  }
  .section--fiftyfifty h2 {
    font-size: 38px;
  }
}

/*
*
* Learn Sections
* ======================================
*/
.section--learn {
  position: relative;
}
.learn__content {
  position: absolute;
  padding: 0 5%;
  text-align: center;
  width: 100%;
}
@media (min-width: 1224px) {
  .learn__content {
    padding: 0 5%;
  }
}

.learn__title {
  color: #fff;
  margin: 0 auto;
  margin-bottom: 1em;
}
@media (min-width: 375px) {
  .learn__title {
    width: 65%;
  }
}
@media (min-width: 768px) {
  .learn__title {
    width: 75%;
    max-width: 790px;
  }
}

/*
*
* Motivation Sections
* ======================================
*/
.section--motivation {
  position: relative;
}

.motivation__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.motivation__content .content-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5%;
  left: 5%;
  text-align: center;
}
.motivation__content h2 {
  color: #fff;
  display: block;
  margin: 0 auto 20px;
}
.motivation__content p {
  color: #fff;
}
@media (min-width: 768px) {
  .motivation__content .content-inner {
    text-align: center;
    margin: 0 auto;
  }
  .motivation__content h2 {
    width: 60%;
  }
  .motivation__content p {
    margin: 0 auto;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .motivation__content h2 {
    width: 40%;
  }
  .motivation__content p {
    width: 50%;
  }
}

/*
*
* Partners Section
* ======================================
*/
.section--partners {
  position: relative;
}
@media (min-width: 768px) {
  .section--partners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
  }
}
@media (min-width: 768px) {
  .partners__column {
    position: relative;
    width: 33.33%;
  }
  .partners__column:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    transform: skewX(15deg);
    border-right: 1px solid #ccc;
  }
  .partners__column:last-of-type:after {
    display: none;
  }
  .partners__column .partner {
    margin: 0 0 20px;
    position: relative;
    padding: 0;
  }
  .partners__column .partner .partner__name {
    font-size: 20px;
    padding: 0 10px 0 0;
  }
  .partners__column .partner .partner__title {
    padding: 0 30px 0 0;
  }
  .partners__column .partner-1 {
    left: -30px;
  }
  .partners__column .partner-2 {
    left: -10px;
  }
  .partners__column .partner-3 {
    left: 10px;
  }
  .partners__column .partner-4 {
    left: 30px;
  }
  .partners__column .partner-5 {
    left: 50px;
  }
}
@media (min-width: 1024px) {
  .partners__column .partner {
    padding: 0 10px;
  }
  .partners__column .partner .partner__name {
    font-size: 22px;
  }
}

/*
*
* Values Section
* ======================================
*/
.section--values .values {
  margin: 50px 0 0 0;
}
.section--values .values .value {
  margin-bottom: 50px;
}
.section--values .values .value p {
  line-height: 25px;
  margin: 0 0 8px;
}
.section--values .values .value__title {
  border-bottom: 1px solid #ccc;
  font-size: 22px;
  height: 60px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}
.section--values .values .value__title span {
  color: #383838;
  padding: 0;
  position: absolute;
  bottom: 8px;
}
.section--values .values .value__media {
  margin: 0;
  width: 60px;
}
@media (min-width: 768px) {
  .section--values .values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0 0 0;
  }
  .section--values .values .value {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section--values .values .value:not(:nth-child(2n)) .value__content {
    padding-right: 25px;
  }
}
@media (min-width: 1024px) {
  .section--values .values .value {
    width: 25%;
  }
  .section--values .values .value:not(:nth-child(4n)) .value__content {
    padding-right: 25px;
  }
  .section--values .values .value__media {
    margin-bottom: 20px;
  }
}

/*
*
* locations Section
* ======================================
*/
.section--location.section:not(.hero), .section--location.guide-pagenav:not(.hero) {
  padding-top: 20px;
}
.section--location .location__select {
  margin-bottom: 45px;
}
@media (min-width: 1024px) {
  .section--location {
    display: flex;
    justify-content: flex-start;
  }
  .section--location.section:not(.hero), .section--location.guide-pagenav:not(.hero) {
    padding-top: 100px;
  }
  .section--location .location__select {
    margin-right: 120px;
    margin-bottom: 0;
    width: 325px;
  }
  .section--location .location__content {
    width: calc(100% - 345px);
  }
}

.site-footer {
  margin-top: 50px;
  padding: 0 5% 100px;
}
@media (min-width: 1224px) {
  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.footer-inner {
  border-top: 1px solid #ccc;
}

.footer__content {
  margin: 0 auto;
}

.footer__menu {
  display: none;
}

.footer__careers-menu {
  display: none;
}

.dealerguide__footer {
  font-size: 11px;
  line-height: 18px;
  padding: 0 12px;
  width: auto;
}
.dealerguide__footer p {
  margin-top: 0;
}
.dealerguide__footer .copy {
  font-size: 11px;
}

@media (min-width: 768px) {
  .site-footer {
    margin-top: 100px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
  }
  .footer__content {
    margin: 0;
    width: 220px;
  }
  .footer__menu {
    display: block;
    width: calc(100% - 250px);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    width: 25%;
  }
  .footer__menu {
    width: 50%;
  }
  .footer__careers-menu {
    display: block;
    width: 25%;
  }
}
#header, #headerMenu, #headerDesktop, #headerDesktopMenu {
  display: none !important;
}

.site-header {
  background-color: #303030;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 5%;
  position: fixed;
  width: 100%;
  z-index: 9996;
}
@media (min-width: 768px) {
  .site-header {
    height: 100px;
    overflow: hidden;
    padding-right: 0;
  }
}

.site-logo {
  width: 170px;
}

.site-nav {
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: calc(100vh - 70px);
  padding: 40px 5%;
  position: fixed;
  top: 70px;
  right: 0;
  left: 0;
  text-align: right;
  width: 100%;
  z-index: 99999;
}
.site-nav a {
  color: #fff;
  display: block;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.03em;
  padding: 0 0 10px;
  text-decoration: none;
  width: 100%;
}
.site-nav a:hover {
  color: #00a3da;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-nav {
    background: none;
    display: flex !important;
    height: auto;
    padding: 0;
    position: static;
    width: auto;
  }
  .site-nav a {
    display: inline-block;
    font-size: 15px;
    padding: 0;
    width: auto;
  }
  .site-nav .current-menu-item a {
    color: #00a3da;
  }
  .site-nav .menu-main-menu-container > .menu,
.site-nav .menu-dealer-menu-container > .menu,
.site-nav .menu-dealer-login-container > .menu {
    display: flex;
    align-items: center;
    height: 100px;
    margin: 0;
    padding: 0 25px;
  }
  .site-nav .menu-main-menu-container > .menu > li,
.site-nav .menu-dealer-menu-container > .menu > li,
.site-nav .menu-dealer-login-container > .menu > li {
    white-space: nowrap;
  }
  .site-nav .menu-main-menu-container > .menu > li:not(:first-of-type):before,
.site-nav .menu-dealer-menu-container > .menu > li:not(:first-of-type):before,
.site-nav .menu-dealer-login-container > .menu > li:not(:first-of-type):before {
    content: "|";
    color: #828282;
    display: inline-block;
    font-size: 12px;
    padding: 0 10px;
  }
  .site-nav .menu-main-menu-container > .menu > li.main-menu__press-room,
.site-nav .menu-dealer-menu-container > .menu > li.main-menu__press-room,
.site-nav .menu-dealer-login-container > .menu > li.main-menu__press-room {
    display: none;
  }
  .site-nav .menu-main-menu-container {
    position: relative;
    z-index: 1;
  }
  .site-nav .menu-dealer-menu-container > .menu,
.site-nav .menu-dealer-login-container > .menu {
    background-color: #4f4f4f;
    position: relative;
  }
  .site-nav .menu-dealer-menu-container > .menu *,
.site-nav .menu-dealer-login-container > .menu * {
    z-index: 2;
  }
  .site-nav .menu-dealer-menu-container > .menu:before,
.site-nav .menu-dealer-login-container > .menu:before {
    border-top: 100px solid #303030;
    border-right: 100px solid #4f4f4f;
    border-right-width: 30px;
    content: "";
    height: 0;
    position: absolute;
    left: -15px;
    width: 0;
    z-index: 0;
  }
}

.careers-nav {
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 40px 5%;
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  text-align: right;
  width: 100%;
  z-index: 99999;
}
.careers-nav .menu-item {
  padding: 0 0 10px;
}
.careers-nav a {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-decoration: none;
  width: 100%;
}
.careers-nav a:hover {
  color: #00a3da;
  text-decoration: none;
}

.menu-toggle {
  appearance: none;
  background: none;
  border: 0;
  display: block;
  outline: none;
  height: 25px;
  position: relative;
  width: 25px;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.icon-bar {
  background-color: #fff;
  border-radius: 1px;
  display: block;
  height: 3px;
  opacity: 1;
  position: absolute;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s;
  width: 100%;
}
.icon-bar:nth-child(1), .icon-bar:nth-child(2) {
  top: 0;
}
.icon-bar:nth-child(3), .icon-bar:nth-child(4) {
  top: 9px;
}
.icon-bar:nth-child(5) {
  top: 18px;
}
.in .icon-bar:nth-child(1), .in .icon-bar:nth-child(2), .in .icon-bar:nth-child(5) {
  left: 50%;
  top: 9px;
  width: 0%;
}
.in .icon-bar:nth-child(3) {
  transform: rotate(45deg);
}
.in .icon-bar:nth-child(4) {
  transform: rotate(-45deg);
}

.menu-dealer-menu-container .menu-item-206 {
  display: none;
}
@media (min-width: 768px) {
  .menu-dealer-menu-container .menu-item-206 {
    display: block;
  }
  .menu-dealer-menu-container .menu-item-206 a.in {
    color: #00a3da;
  }
}
@media (max-width: 767px) {
  .menu-dealer-menu-container .menu {
    margin: 50px 0 0 0;
  }
  .site-nav .menu-dealer-menu-container a {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px 8px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: auto;
  }
}

.social {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}
.social li:not(:last-of-type) {
  margin-right: 0.5em;
}
.social a {
  background-color: #00A3DA;
  border-radius: 100%;
  display: block;
  text-align: center;
  width: 23px;
  height: 23px;
}
.social a:hover {
  background-color: #006C96;
}
/*********************
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.
*********************/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}
body *.easing {
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
body.fixed {
  overflow: hidden;
}

p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

a, img {
  outline: none;
}

.site-main {
  padding-top: 70px;
}
@media (min-width: 768px) {
  .site-main {
    padding-top: 100px;
  }
}

.page__header {
  margin-bottom: 25px;
}

.page-header, .guide-header {
  padding: 50px 5% 0;
}
@media (min-width: 1224px) {
  .page-header, .guide-header {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (min-width: 768px) {
  .guide-header p {
    max-width: 925px;
  }
}

.page-header p + h3 {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .page-header p {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .page-header p {
    width: 50%;
  }
}

.page-content {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .page-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-content h1 {
  font-size: 25px !important;
  color: #0f6d96 !important;
}
.page-content .dash {
  border-bottom: 2px solid #0f6d96;
  width: 25px;
  margin-bottom: 25px;
}
.page-content p {
  font-size: 15px !important;
  line-height: 28px;
  margin-bottom: 20px !important;
  color: #383838;
}

.press-header {
  width: 100%;
  padding: 50px 15px 40px 15px;
  background-image: url("../jpg/press-release-header.jpg");
  background-size: cover;
}
@media (max-width: 820px) {
  .press-header {
    background-position: 20% 0;
  }
}
@media (max-width: 690px) {
  .press-header {
    background-position: 40% 0;
  }
}
@media (max-width: 480px) {
  .press-header {
    background-position: 47% 0;
  }
}

.page-template-page-press .page-content {
  padding-top: 70px;
}
.page-template-page-press .page-content h1 {
  color: #fff !important;
  font-size: 40px !important;
  position: relative;
  top: 20px;
}
.page-template-page-press .page-content .press-releases {
  padding-top: 0px;
}
.page-template-page-press .page-content .press-releases .press-release {
  width: 100%;
  padding: 40px 0 25px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .page-template-page-press .page-content .press-releases .press-release {
    width: 95%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.page-template-page-press .page-content .press-releases .press-release a {
  text-decoration: none;
}
.page-template-page-press .page-content .press-releases .press-release a p {
  width: 50%;
  font-weight: bold;
  font-size: 16px !important;
}
.page-template-page-press .page-content .press-releases .press-release .date {
  float: right;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px !important;
}
@media (max-width: 767px) {
  .page-template-page-press .page-content .press-releases .press-release .date {
    margin-top: -37px;
  }
}
@media (max-width: 350px) {
  .page-template-page-press .page-content .press-releases .press-release .date {
    margin-top: 0px;
    float: left;
  }
}
.page-template-page-press .page-content .press-releases .press-release:hover {
  background-color: #f5fbfe;
}

*.desktop-only {
  display: none;
}

*.mobile-only {
  display: block;
}

@media (min-width: 769px) {
  *.desktop-only {
    display: block;
  }
  *.mobile-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  *.mobile-only {
    display: block;
  }
  *.desktop-only {
    display: none !important;
  }
}
div#header {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #303030;
  z-index: 999;
  padding: 0 5%;
}
@media (min-width: 1224px) {
  div#header {
    padding-left: 5%;
    padding-right: 5%;
  }
}
div#header .site-logo {
  width: 170px;
}
@media (min-width: 768px) {
  div#header {
    display: none;
  }
}

div#headerMenu {
  position: fixed;
  left: 0px;
  top: 70px;
  height: calc(100vh - 70px);
  width: 100vw;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px;
  display: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div#headerMenu a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: 0.03em;
  padding: 0px 0 10px 0;
  font-weight: 300;
  text-align: right;
  cursor: pointer;
  outline: none;
}
div#headerMenu a:hover {
  color: #00a3da;
}
div#headerMenu div.dash {
  width: 100%;
  padding-top: 20px;
  margin-bottom: 20px;
  padding-right: 10px;
  display: flex;
  flex-direction: row-reverse;
}
div#headerMenu div.dash div.dash-wrap {
  border-bottom: 2px solid white;
  width: 30px;
}
div#headerMenu #menu-item-206 {
  display: none;
}

div#headerDesktop {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100px;
  background: #303030;
  z-index: 99999;
  overflow: hidden;
}
@media (max-width: 767px) {
  div#headerDesktop {
    display: none;
  }
}
div#headerDesktop .container {
  width: 100%;
  height: 100%;
  padding: 0 0 0 5%;
}
@media (min-width: 1224px) {
  div#headerDesktop .container {
    padding: 0 0 0 5%;
  }
}
div#headerDesktop div.image-wrap {
  padding: 0;
  height: auto;
  float: left;
}
div#headerDesktop div.image-wrap img {
  width: 170px;
  height: auto;
}
div#headerDesktop div.menu-wrap {
  float: right;
  width: 60%;
  height: 100%;
  padding: 0;
}
div#headerDesktop div.menu-wrap .menu-main-menu-container {
  position: absolute;
  right: 250px;
}
div#headerDesktop div.menu-wrap .edge {
  width: 400px;
  height: 80px;
  position: absolute;
  right: -130px;
  top: 0;
  background-image: url("../png/light_bg.png");
}
div#headerDesktop div.menu-wrap .menu {
  float: none;
  line-height: 1;
  margin: 0;
}
div#headerDesktop div.menu-wrap .menu li {
  border: 0;
  float: left;
}
div#headerDesktop div.menu-wrap .menu li:not(:last-of-type):after {
  content: "|";
  color: #828282;
  display: inline-block;
  font-size: 12px;
}
div#headerDesktop div.menu-wrap .menu-dealer-menu-container {
  padding-right: 10px;
  z-index: 2;
  float: right;
}
div#headerDesktop div.menu-wrap .edge {
  height: 100%;
}
div#headerDesktop div.menu-wrap .current-menu-item a {
  color: #00a3da;
}
div#headerDesktop div.menu-wrap a {
  color: #ece9e9;
  border-right: 1px solid white;
  text-decoration: none;
  font-family: Helvetica, sans-serif;
  padding: 0 10px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media (max-width: 850px) {
  div#headerDesktop div.menu-wrap a {
    padding: 3px 10px;
  }
}
div#headerDesktop div.menu-wrap a.active {
  color: #00a3da;
}
div#headerDesktop div.menu-wrap a:hover {
  color: #00a3da;
}
div#headerDesktop div.menu-wrap a:last-of-type {
  border: none;
}
div#headerDesktop div.menu-wrap div.spaced {
  position: relative;
  padding-left: 40px;
}
@media (max-width: 850px) {
  div#headerDesktop div.menu-wrap div.spaced {
    padding-left: 20px;
  }
}
div#headerDesktop img.special {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 200%;
  z-index: 0;
}
@media (max-width: 850px) {
  div#headerDesktop img.special {
    right: -150px;
  }
}

div#headerDesktopMenu {
  position: fixed;
  left: 0px;
  top: 70px;
  height: auto;
  width: 100vw;
  background: rgba(48, 48, 48, 0.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px;
  padding-right: 15%;
  display: none;
}
div#headerDesktopMenu a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: 0px;
  padding: 0px 0 10px 0;
  font-weight: 300;
  text-align: right;
  cursor: pointer;
}
div#headerDesktopMenu a:hover {
  color: #00a3da;
}
div#headerDesktopMenu div.dash {
  width: 100%;
  padding-top: 20px;
  margin-bottom: 20px;
  padding-right: 10px;
  display: flex;
  flex-direction: row-reverse;
}
div#headerDesktopMenu div.dash div.dash-wrap {
  border-bottom: 2px solid white;
  width: 30px;
}

.hamburger-icon {
  width: 25px;
  height: 22px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
  top: 0px;
}
.hamburger-icon span:nth-child(2), .hamburger-icon span:nth-child(3) {
  top: 9px;
}
.hamburger-icon span:nth-child(4) {
  top: 18px;
}
.hamburger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.hamburger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

div.footer {
  width: 100%;
  max-width: 240px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
div.footer img.logo-type {
  width: 170px;
  display: block;
  margin: auto;
}
div.footer div.line {
  border-bottom: 1px solid #383838;
  padding-top: 30px;
}
div.footer div.line.inverse {
  padding-top: 0px;
  margin-bottom: 30px;
}
div.footer div.items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}
div.footer div.items div.image-wrap.one {
  width: 100px;
}
div.footer div.items div.image-wrap img {
  width: 100%;
}
div.footer div.items div.slash {
  border-right: 1px solid #383838;
  height: 50px;
  transform: rotate(15deg);
}
div.footer div.items a {
  color: #383838;
  text-decoration: none;
}
div.footer .center {
  text-align: center;
}

.footer.mobile-only .contact-link {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  right: 10px;
}
.footer.mobile-only .center {
  text-align: center;
}
.footer.mobile-only .copyright {
  font-size: 11px;
  color: #383838;
}
.footer.mobile-only .copyright a {
  color: #383838;
  text-decoration: none;
}

div.footer-desktop {
  margin: 50px 0 0 0;
  padding-left: 5%;
  padding-right: 5%;
}
div.footer-desktop .footer-content {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  padding-bottom: 80px;
}
@media (min-width: 1224px) {
  div.footer-desktop {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 1000px) {
  div.footer-desktop {
    padding-top: 20px;
    padding-bottom: 80px;
  }
}
@media (max-width: 970px) {
  div.footer-desktop {
    width: 100%;
  }
}
div.footer-desktop a {
  color: #383838;
  text-decoration: none;
}
div.footer-desktop div.column {
  width: 17.5%;
  padding: 0px 0px 0 20px;
}
div.footer-desktop div.column:first-of-type {
  width: 24%;
  margin-right: 40px;
  padding: 0;
}
@media (max-width: 1000px) {
  div.footer-desktop div.column:first-of-type {
    margin-right: 20px;
  }
}
@media (max-width: 900px) {
  div.footer-desktop div.column:first-of-type {
    width: 205px;
  }
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu {
  list-style-type: none;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  div.footer-desktop .menu-footer-menu-container #menu-footer-menu {
    padding-left: 20px;
  }
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu li {
  display: inline-block;
  padding-right: 70px;
  vertical-align: top;
}
@media (max-width: 1000px) {
  div.footer-desktop .menu-footer-menu-container #menu-footer-menu li {
    padding-right: 50px;
  }
}
@media (max-width: 845px) {
  div.footer-desktop .menu-footer-menu-container #menu-footer-menu li {
    padding-right: 30px;
  }
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu li a {
  padding: 5px 0px 0 0;
  text-decoration: none;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: uppercase;
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu li .sub-menu {
  margin: 0;
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu li .sub-menu li {
  display: block;
  padding: 0;
}
div.footer-desktop .menu-footer-menu-container #menu-footer-menu li .sub-menu li a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-transform: none;
  color: #383838;
  text-decoration: none;
}
div.footer-desktop img.logo-type {
  width: 170px;
  display: block;
  margin: auto;
}
div.footer-desktop div.line {
  border-bottom: 1px solid #ccc;
  padding-top: 30px;
}
div.footer-desktop div.line.inverse {
  padding-top: 0px;
  margin-bottom: 25px;
}
div.footer-desktop div.items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
}
div.footer-desktop div.items div.image-wrap.one {
  width: 100px;
}
div.footer-desktop div.items div.image-wrap img {
  width: 100%;
  margin-top: 5px;
}
div.footer-desktop div.items div.slash {
  border-right: 1px solid #ccc;
  height: 50px;
  transform: rotate(15deg);
}
div.footer-desktop div.items .contact-link {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  right: 10px;
}
div.footer-desktop div.items a {
  color: #383838;
  text-decoration: none;
}
div.footer-desktop .center {
  text-align: center;
}
div.footer-desktop .copyright {
  font-size: 11px;
  color: #333;
}
@media (min-width: 768px) {
  div.footer-desktop {
    padding-top: 40px;
  }
}

div.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 40px 0px;
}
@media (max-width: 767px) {
  div.buttons {
    padding-bottom: 0px;
  }
}
div.buttons.nopadding {
  padding: 15px 0px;
}
div.buttons div.button {
  margin: 3px;
  padding: 5px;
  background: white;
  border-radius: 5px;
  opacity: 0.5;
}
div.buttons div.button.active {
  opacity: 1;
}

.container {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  .container {
    width: 100%;
  }
}

div.content, div.wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 40px 0px 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  div.content, div.wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  div.content, div.wrap {
    width: 100%;
    padding: 0;
  }
}
div.content.no-justify, div.wrap.no-justify {
  display: block;
  padding: 40px;
}
@media (max-width: 767px) {
  div.content.no-justify, div.wrap.no-justify {
    padding: 50px 25px 35px 25px;
  }
}
div.content.blue, div.wrap.blue {
  height: 370px;
  background: #0dace3;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  div.content.blue, div.wrap.blue {
    padding: 0;
    height: auto;
  }
}
div.content.blue h1, div.content.blue h2, div.content.blue p, div.wrap.blue h1, div.wrap.blue h2, div.wrap.blue p {
  color: white;
}
@media (max-width: 767px) {
  div.content.blue .title, div.wrap.blue .title {
    background-color: #0dace3;
    padding: 25px 25px;
  }
}
@media (max-width: 767px) {
  div.content.blue .title h1, div.wrap.blue .title h1 {
    margin: 10px 0;
    padding: 0;
  }
}
@media (max-width: 767px) {
  div.content.blue .slide-area, div.wrap.blue .slide-area {
    background-color: #22b3e5;
    padding: 25px 25px;
  }
}
div.content.blue h2, div.wrap.blue h2 {
  font-weight: var(--font-weight-brand-light);
  font-size: 38px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 0px;
  margin-left: 180px;
  display: block;
  font-style: italic;
  width: 330px;
  padding: 0;
  text-align: right;
  margin-top: -20px;
}
@media (max-width: 1199px) {
  div.content.blue h2, div.wrap.blue h2 {
    margin-left: 60px;
  }
}
@media (max-width: 970px) {
  div.content.blue h2, div.wrap.blue h2 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  div.content.blue h2, div.wrap.blue h2 {
    text-align: left;
    font-size: 25px;
    line-height: 1em;
    padding: 20px 0 0px 0;
  }
}
div.content.blue p, div.wrap.blue p {
  margin-bottom: 30px;
}
div.content.blue img.fade, div.wrap.blue img.fade {
  display: none;
}
@media (max-width: 767px) {
  div.content.blue img.white-arrow, div.wrap.blue img.white-arrow {
    display: none !important;
  }
}
div.content.blue div.wrap-container, div.wrap.blue div.wrap-container {
  overflow: hidden;
}
@media (min-width: 768px) {
  div.content.blue, div.wrap.blue {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  div.content.blue img.fade, div.wrap.blue img.fade {
    display: block;
    position: absolute;
    left: 45%;
    top: -4%;
    height: 400px;
  }
  div.content.blue div.wrap, div.wrap.blue div.wrap {
    width: 50%;
    padding-right: 5%;
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
    left: 10%;
  }
  div.content.blue div.wrap div.wrap-container, div.wrap.blue div.wrap div.wrap-container {
    width: 80%;
  }
  div.content.blue div.wrap img.white-arrow, div.wrap.blue div.wrap img.white-arrow {
    display: block;
    width: 100%;
    height: auto;
  }
  div.content.blue div.wrap .simplecarousel__arrow, div.wrap.blue div.wrap .simplecarousel__arrow {
    cursor: pointer;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 22px;
  }
  div.content.blue div.buttons, div.wrap.blue div.buttons {
    justify-content: flex-start;
  }
}
div.content.less-space, div.wrap.less-space {
  padding-right: 80px;
}
div.content.special-bg, div.wrap.special-bg {
  background-size: 100%;
  background-position: 0% -52.5%;
  height: 125vw;
}
div.content.special-bg div.btn, div.wrap.special-bg div.btn {
  display: none;
}
div.content.special-bg div.special-popup, div.wrap.special-bg div.special-popup {
  display: none;
}
div.content.special-bg .social-icons li, div.wrap.special-bg .social-icons li {
  display: inline-block;
  margin-right: 5px;
}
div.content.special-bg .social-icons li img, div.wrap.special-bg .social-icons li img {
  width: 30px;
}
@media (min-width: 768px) {
  div.content.special-bg, div.wrap.special-bg {
    background-size: 100%;
    background-position: 0% -10%;
    background-repeat: no-repeat;
    height: 60vw;
    padding: 90px;
    position: relative;
  }
  div.content.special-bg div.special-popup, div.wrap.special-bg div.special-popup {
    display: block;
    background: white;
    padding: 40px;
    width: 30vw;
    display: none;
    position: absolute;
    z-index: 999;
  }
  div.content.special-bg div.special-popup img.exit, div.wrap.special-bg div.special-popup img.exit {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  div.content.special-bg div.special-popup div.line, div.wrap.special-bg div.special-popup div.line {
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 15px;
  }
  div.content.special-bg div.special-popup h2, div.wrap.special-bg div.special-popup h2 {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    color: #0dace3 !important;
    font-size: 27px !important;
    font-weight: 300 !important;
  }
  div.content.special-bg div.special-popup p, div.wrap.special-bg div.special-popup p {
    font-size: 16px;
  }
  div.content.special-bg div.special-popup img.social, div.wrap.special-bg div.special-popup img.social {
    width: 100px;
    margin: 15px 0px;
    display: block;
  }
  div.content.special-bg div.btn, div.wrap.special-bg div.btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: block;
    position: absolute;
    box-shadow: 0px 0px 150px #303030;
    background-size: 100% auto;
    cursor: pointer;
  }
  div.content.special-bg div.btn div.top-line, div.wrap.special-bg div.btn div.top-line {
    position: absolute;
    top: 12.5px;
    left: 22.5px;
    border-right: 0.5px solid #19465d;
    height: 15px;
    transform: rotate(45deg);
  }
  div.content.special-bg div.btn div.bottom-line, div.wrap.special-bg div.btn div.bottom-line {
    position: absolute;
    bottom: 12.5px;
    left: 22.5px;
    height: 15px;
    border-right: 0.5px solid #19465d;
    transform: rotate(-45deg);
  }
  div.content.special-bg div.btn.button1, div.wrap.special-bg div.btn.button1 {
    top: 30vw;
    left: 10%;
    background-image: url("../png/left-circle-arrow.png");
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  div.content.special-bg div.btn.button1, div.wrap.special-bg div.btn.button1 {
    top: 250px;
  }
}
@media (min-width: 768px) {
  div.content.special-bg div.btn.button2, div.wrap.special-bg div.btn.button2 {
    top: 35vw;
    right: 38%;
    background-image: url("../png/left-circle-arrow.png");
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  div.content.special-bg div.btn.button2, div.wrap.special-bg div.btn.button2 {
    top: 285px;
  }
}
@media (min-width: 768px) {
  div.content.special-bg div.btn.button3, div.wrap.special-bg div.btn.button3 {
    top: 31vw;
    right: 80px;
    background-image: url("../png/left-circle-arrow.png");
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  div.content.special-bg div.btn.button3, div.wrap.special-bg div.btn.button3 {
    top: 235px;
  }
}
div.content.special-bg2, div.wrap.special-bg2 {
  background-size: 100%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  color: white;
  display: block;
  padding: 40px;
  margin-top: 30px;
}
div.content.special-bg2 h1, div.wrap.special-bg2 h1 {
  color: white;
}
@media (max-width: 767px) {
  div.content.special-bg2, div.wrap.special-bg2 {
    margin-top: 0px;
    margin-bottom: 40px;
    padding: 80px 40px 220px 40px;
  }
}
@media (min-width: 768px) {
  div.content.special-bg2, div.wrap.special-bg2 {
    background-size: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    height: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  div.content.special-bg2 h1, div.wrap.special-bg2 h1 {
    width: 50%;
    margin: auto;
  }
}
div.content.center h1, div.wrap.center h1 {
  text-align: center;
}
div.content.right-padding, div.wrap.right-padding {
  z-index: 2;
}
@media (min-width: 768px) {
  div.content.right-padding div.pad, div.wrap.right-padding div.pad {
    padding-top: 10%;
    padding-right: 50%;
  }
}
@media (min-width: 768px) {
  div.content.left-padding div.pad, div.wrap.left-padding div.pad {
    padding-top: 30%;
    padding-left: 45%;
  }
}
@media (max-width: 767px) {
  div.content.left-padding, div.wrap.left-padding {
    padding: 25px 25px 60px 25px;
  }
}
@media (min-width: 768px) {
  div.content.special-content, div.wrap.special-content {
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 0% 100%;
    height: 70vw;
  }
}
@media (max-width: 767px) {
  div.content.special-content2, div.wrap.special-content2 {
    padding: 120px 40px;
  }
  div.content.special-content2 div.pad, div.wrap.special-content2 div.pad {
    padding-right: 30%;
  }
}
@media (min-width: 768px) {
  div.content.special-content2 img.bg, div.wrap.special-content2 img.bg {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 55%;
    height: 50vw;
  }
}
div.content h1, div.wrap h1 {
  font-size: 20px;
  color: #383838;
  margin-bottom: 15px;
  font-style: italic;
}
@media (min-width: 768px) {
  div.content h1, div.wrap h1 {
    font-size: 42px;
  }
}
div.content h2, div.wrap h2 {
  font-size: 12px;
  color: black;
  margin-bottom: 5px;
  font-weight: 500;
}
@media (min-width: 768px) {
  div.content h2, div.wrap h2 {
    display: inline;
    font-size: 18px;
  }
}
div.content p, div.wrap p {
  font-size: 12px;
  color: #383838;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  div.content p, div.wrap p {
    display: inline;
    font-size: 18px;
  }
}
div.content img.bg, div.wrap img.bg {
  position: absolute;
  right: 0px;
  top: 30vw;
  width: 30vw;
}
@media (min-width: 768px) {
  div.content img.bg, div.wrap img.bg {
    display: none;
  }
}
div.content a.green-btn, div.wrap a.green-btn {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 2px solid #55aa44;
  padding: 10px;
  max-width: 300px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  display: block;
  position: relative;
  top: 50px;
  color: #fff;
  text-decoration: none;
}

.home div.carousel {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  left: 0%;
}
.home div.carousel div.slide {
  width: 25%;
  border-top: 1px solid #3db9e6;
  padding-top: 15px;
  overflow: hidden;
}
.home div.carousel div.slide h2 {
  width: 100%;
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-align: left;
  margin-bottom: 5px;
  line-height: 1em;
  font-size: 15px;
  line-height: 28px;
  font-style: normal;
}
.home div.carousel div.slide p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
  color: #fff;
  font-style: normal;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.home div.carousel div.slide a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.home div.carousel .slick-dots {
  bottom: -35px;
}
@media (max-width: 767px) {
  .home div.carousel .slick-dots {
    bottom: -65px;
  }
}
.home div.carousel .slick-dots li {
  float: left;
  margin: 0 5px 0 0;
}
@media (max-width: 767px) {
  .home div.carousel .slick-dots li {
    float: none;
  }
}
.home div.carousel .slick-dots li button:before {
  color: #fff;
  font-size: 9px;
}
.home div#section5 {
  position: relative;
  height: 59vw;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .home div#section5 {
    padding: 0 25px;
    height: 310px;
    margin-top: 0px;
  }
}
.home div#section5 h2 {
  width: 540px;
  text-align: center;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
  font-style: italic;
  margin: 0px auto 0 auto;
}
@media (max-width: 1199px) {
  .home div#section5 h2 {
    font-size: 25px;
    line-height: 28px;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .home div#section5 h2 {
    position: relative;
    top: 100px;
    font-size: 20px;
    line-height: 1em;
  }
}
@media (max-width: 630px) {
  .home div#section5 h2 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .home div#section5 a {
    position: relative;
    top: 125px;
  }
}

.page-template-page-whoweare div.blurb {
  padding: 20px;
  position: relative;
  height: 100vw;
  background-position: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
  border-bottom: none;
}
@media (max-width: 1199px) {
  .page-template-page-whoweare div.blurb {
    height: 1110px;
  }
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.blurb {
    height: 94vw;
    background-position: 0;
  }
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.blurb {
    height: 110vw;
  }
}
@media (max-width: 450px) {
  .page-template-page-whoweare div.blurb {
    height: 120vw;
  }
}
.page-template-page-whoweare div.blurb h1 {
  color: white;
  font-size: 25px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 28px;
}
.page-template-page-whoweare div.blurb div.big-blurb {
  display: none;
}
.page-template-page-whoweare div.blurb div.pad {
  position: absolute;
  top: 240px;
  width: 470px;
  left: 100px;
}
@media (max-width: 1199px) {
  .page-template-page-whoweare div.blurb div.pad {
    top: 210px;
    left: 50px;
  }
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.blurb div.pad {
    width: 300px;
    top: 160px;
  }
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.blurb div.pad {
    top: 85vw;
    left: 25px;
  }
}
@media (max-width: 420px) {
  .page-template-page-whoweare div.blurb div.pad {
    width: 80%;
  }
}
.page-template-page-whoweare div.blurb div.pad h1 {
  color: #fff;
  font-size: 54px;
  line-height: 62px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 15px;
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.blurb div.pad h1 {
    font-size: 25px;
    line-height: 1em;
  }
}
@media (max-width: 450px) {
  .page-template-page-whoweare div.blurb div.pad h1 {
    font-size: 18px;
    line-height: 21px;
  }
}
.page-template-page-whoweare div.blurb div.pad p {
  font-family: var(--font-family-brand);
  color: #00a3da;
  font-size: 30px;
  line-height: 36px;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 100;
  line-height: 1.2em;
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.blurb div.pad p {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .page-template-page-whoweare div.blurb div.pad p {
    font-size: 15px;
  }
}
.page-template-page-whoweare div.blurb div.big-blurb {
  width: 610px;
  display: block;
  position: absolute;
  right: 6%;
  bottom: 10%;
}
@media (max-width: 1520px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    width: 600px;
  }
}
@media (max-width: 1420px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    right: 4%;
  }
}
@media (max-width: 1299px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    width: 510px;
  }
}
@media (max-width: 1199px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    width: 37%;
  }
}
@media (max-width: 1180px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    right: 5%;
  }
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    top: 62%;
  }
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.blurb div.big-blurb {
    display: none;
  }
}
.page-template-page-whoweare div.blurb div.big-blurb h2 {
  color: #006c96;
  font-size: 28px;
  line-height: 1em;
  font-style: italic;
  margin-bottom: 5px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.blurb div.big-blurb h2 {
    font-size: 20px;
  }
}
.page-template-page-whoweare div.blurb div.big-blurb div.dash {
  border-bottom: 3px solid #006c96;
  width: 25px;
  margin-bottom: 25px;
}
.page-template-page-whoweare div.blurb div.big-blurb p {
  color: #383838;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 15px;
  font-size: 15px !important;
  line-height: 28px !important;
  font-style: normal;
}
@media (max-width: 1299px) {
  .page-template-page-whoweare div.blurb div.big-blurb p {
    font-size: 13px !important;
    line-height: 1.5em !important;
  }
}
.page-template-page-whoweare div.blurb2 {
  background: #19465d;
  padding: 30px 25px;
  border-bottom: 1px solid #30596e;
}
.page-template-page-whoweare div.blurb2 h2 {
  color: white;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 500;
}
.page-template-page-whoweare div.blurb2 div.dash {
  border-bottom: 3px solid white;
  width: 25px;
  margin-bottom: 15px;
}
.page-template-page-whoweare div.blurb2 p {
  color: white;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 28px;
  font-style: normal;
}
@media (min-width: 768px) {
  .page-template-page-whoweare div.blurb2 {
    display: none;
  }
}
.page-template-page-whoweare div.partners {
  padding: 30px 25px;
}
.page-template-page-whoweare div.partners h2 {
  color: #19465d;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 600;
}
.page-template-page-whoweare div.partners div.dash {
  border-bottom: 3px solid #19465d;
  width: 25px;
  margin-bottom: 15px;
}
.page-template-page-whoweare div.partners div.peoples {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-template-page-whoweare div.partners div.peoples div.person {
  width: 50%;
  cursor: pointer;
}
@media (max-width: 430px) {
  .page-template-page-whoweare div.partners div.peoples div.person {
    width: 100%;
  }
}
.page-template-page-whoweare div.partners div.peoples div.person h2 {
  color: #0dace3;
  font-size: 14px;
  margin-bottom: 5px;
  font-style: italic;
}
.page-template-page-whoweare div.partners div.peoples div.person p {
  color: #383838;
  font-size: 12px;
  width: 260px;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.partners div.peoples div.person p {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .page-template-page-whoweare div.partners {
    display: none;
  }
}
.page-template-page-whoweare div.partners-big {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 100px 5%;
}
@media (min-width: 1224px) {
  .page-template-page-whoweare div.partners-big {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.page-template-page-whoweare div.partners-big div.column {
  width: 33.33%;
  position: relative;
}
@media (max-width: 1160px) {
  .page-template-page-whoweare div.partners-big div.column {
    width: 315px;
  }
}
.page-template-page-whoweare div.partners-big div.column div.line {
  position: absolute;
  left: 0%;
  top: -7%;
  height: 120%;
  border-right: 1px solid #ccc;
  transform: rotate(-12deg);
}
.page-template-page-whoweare div.partners-big div.column h2 {
  color: #006c96;
  font-size: 28px;
  line-height: 1em;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: bold;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.partners-big div.column h2 {
    font-size: 20px;
  }
}
.page-template-page-whoweare div.partners-big div.column div.dash {
  border-bottom: 3px solid #006c96;
  width: 25px;
  margin-bottom: 15px;
}
.page-template-page-whoweare div.partners-big div.column div.person {
  width: 70%;
  cursor: pointer;
}
.page-template-page-whoweare div.partners-big div.column div.person h2 {
  color: #0dace3;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 5px;
  font-style: italic;
  font-weight: bold;
}
@media (max-width: 1160px) {
  .page-template-page-whoweare div.partners-big div.column div.person h2 {
    font-size: 17px;
    line-height: 1em;
  }
}
.page-template-page-whoweare div.partners-big div.column div.person p {
  font-family: var(--font-family-brand);
  color: #383838;
  font-size: 15px;
  line-height: 22px;
  font-style: italic;
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.partners-big div.column div.person p {
    font-size: 10px;
  }
}
.page-template-page-whoweare div.partners-big div.column div.person:nth-of-type(2) {
  position: relative;
  left: -10px;
}
.page-template-page-whoweare div.partners-big div.column div.person:nth-of-type(3) {
  position: relative;
  left: 20px;
}
.page-template-page-whoweare div.partners-big div.column div.person:nth-of-type(4) {
  position: relative;
  left: 40px;
}
.page-template-page-whoweare div.partners-big div.column div.person:nth-of-type(5) {
  position: relative;
  left: 60px;
}
.page-template-page-whoweare div.partners-big div.column div.person:nth-of-type(6) {
  position: relative;
  left: 80px;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.partners-big {
    display: none;
  }
}
.page-template-page-whoweare .section5_header {
  color: #19465d;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 25px;
  display: none;
}
@media (max-width: 767px) {
  .page-template-page-whoweare .section5_header {
    display: block;
  }
}
.page-template-page-whoweare .section5_header_dash {
  border-bottom: 2px solid #19465d;
  width: 25px;
  margin-bottom: 55px;
  margin-left: 25px;
  display: none;
}
@media (max-width: 767px) {
  .page-template-page-whoweare .section5_header_dash {
    display: block;
  }
}
.page-template-page-whoweare img.community-banner {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .page-template-page-whoweare img.community-banner {
    display: none;
  }
}
.page-template-page-whoweare div.community-banner-big {
  background-size: 100%;
  background-repeat: no-repeat;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
}
@media (max-width: 1170px) {
  .page-template-page-whoweare div.community-banner-big {
    height: 430px;
  }
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.community-banner-big {
    height: 330px;
  }
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-banner-big {
    display: none;
  }
}
.page-template-page-whoweare div.community-banner-big .section-content {
  position: absolute;
  top: 25%;
  right: 170px;
  width: 410px;
}
@media (max-width: 1199px) {
  .page-template-page-whoweare div.community-banner-big .section-content {
    right: 50px;
    top: 150px;
  }
}
@media (max-width: 970px) {
  .page-template-page-whoweare div.community-banner-big .section-content {
    top: 80px;
    width: 290px;
  }
}
.page-template-page-whoweare div.community-banner-big .section-content h2 {
  color: white;
  font-size: 38px;
  line-height: 44px;
  font-style: italic;
  margin-bottom: 15px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-banner-big .section-content h2 {
    font-size: 20px;
    color: #000;
  }
}
.page-template-page-whoweare div.community-banner-big .section-content p {
  color: white;
  font-size: 15px;
  line-height: 28px;
  font-style: normal;
  width: 100%;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-banner-big .section-content p {
    font-size: 13px;
  }
}
.page-template-page-whoweare div.community {
  padding: 30px 25px;
}
.page-template-page-whoweare div.community p {
  font-size: 14px;
  color: #19465d;
}
@media (min-width: 768px) {
  .page-template-page-whoweare div.community {
    display: none;
  }
}
.page-template-page-whoweare div.community-values {
  padding: 50px 100px;
}
@media (max-width: 768px) {
  .page-template-page-whoweare div.community-values {
    padding: 30px 25px;
  }
}
.page-template-page-whoweare div.community-values div.comm h2 {
  color: #000;
  padding: 15px 0px;
  border-bottom: 3px solid #eaeaea;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-template-page-whoweare div.community-values div.comm h2 {
    margin-bottom: 30px;
  }
}
.page-template-page-whoweare div.community-values div.comm div.pcontain {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-values div.comm div.pcontain {
    height: 325px;
  }
}
.page-template-page-whoweare div.community-values div.comm img {
  width: 100%;
  display: block;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-values div.comm img {
    width: 245px;
  }
}
@media (max-width: 768px) {
  .page-template-page-whoweare div.community-values .list-header {
    display: none;
  }
}
.page-template-page-whoweare div.community-values .list-header h2 {
  font-size: 18px;
}
@media (max-width: 768px) {
  .page-template-page-whoweare div.community-values .list {
    padding-top: 40px;
  }
}
.page-template-page-whoweare div.community-values .list p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-values .list p {
    width: 50%;
    float: left;
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .page-template-page-whoweare div.community-values .list p {
    width: 100%;
  }
}
.page-template-page-whoweare div.community-values .list p a {
  display: block;
  color: #000;
  text-decoration: none;
  float: left;
}
.page-template-page-whoweare div.community-values .list p a.active {
  color: #0dace3;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .page-template-page-whoweare div.community-values .list p a {
    color: #000;
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .page-template-page-whoweare div.community-values div.comm {
    width: 50%;
    display: block;
    float: left;
    align-items: center;
    font-size: 12px;
  }
  .page-template-page-whoweare div.community-values div.comm h2 {
    display: none;
  }
  .page-template-page-whoweare div.community-values div.comm img {
    width: 50%;
    display: block;
    margin: 100px auto 0px auto;
  }
  .page-template-page-whoweare div.community-values div.comm p {
    width: 65%;
    font-size: 15px;
    margin: 10px auto 0px auto;
    line-height: 28px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .page-template-page-whoweare div.community-values div.lists {
    width: 50%;
    display: block;
    float: left;
    position: relative;
    top: 70px;
  }
  .page-template-page-whoweare div.community-values div.lists div.list-header {
    width: 100%;
  }
  .page-template-page-whoweare div.community-values div.lists div.list-header h2 {
    color: #383838;
    padding: 15px 0px 10px 0;
    border-bottom: 3px solid #eaeaea;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .page-template-page-whoweare div.community-values div.lists div.list p {
    width: 50%;
    float: left;
    text-align: left;
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .page-template-page-whoweare div.community-values div.lists div.list p {
    width: 100%;
  }
}

.page-template-page-careers-php div.green-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-template-page-careers-php div.green-content {
    height: 110vw;
    padding: 25px;
  }
}
@media (max-width: 550px) {
  .page-template-page-careers-php div.green-content {
    height: 116vw;
    background-size: cover !important;
  }
}
@media (max-width: 410px) {
  .page-template-page-careers-php div.green-content {
    height: 127vw;
  }
}
@media (max-width: 390px) {
  .page-template-page-careers-php div.green-content {
    height: 135vw;
  }
}
@media (max-width: 330px) {
  .page-template-page-careers-php div.green-content {
    height: 490px;
    background-size: 100% auto !important;
    background-repeat: no-repeat;
    background-color: #4faa4c;
    padding-bottom: 100px;
  }
}
.page-template-page-careers-php div.green-content h1 {
  color: white;
  font-style: italic;
  font-size: 54px;
  line-height: 62px;
  position: absolute;
  top: 200px;
  left: 100px;
  width: 510px;
}
@media (max-width: 1199px) {
  .page-template-page-careers-php div.green-content h1 {
    top: 150px;
    left: 50px;
    line-height: 1em;
    font-size: 32px;
  }
}
@media (max-width: 970px) {
  .page-template-page-careers-php div.green-content h1 {
    font-size: 28px;
    line-height: 34px;
    width: 340px;
    top: 170px;
    line-height: 1em;
  }
}
@media (max-width: 767px) {
  .page-template-page-careers-php div.green-content h1 {
    left: 25px;
    top: 90vw;
    width: 80%;
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .page-template-page-careers-php div.green-content h1 {
    position: relative;
    left: 0;
    padding-left: 25px;
    top: 87vw;
    width: 100%;
    font-size: 25px;
    line-height: 28px;
  }
}
@media (max-width: 550px) {
  .page-template-page-careers-php div.green-content h1 {
    position: relative;
    left: 0;
    padding-left: 0px;
    top: 86vw;
    width: 100%;
  }
}
@media (max-width: 330px) {
  .page-template-page-careers-php div.green-content h1 {
    top: 265px;
  }
}
@media (min-width: 768px) {
  .page-template-page-careers-php div.green-content {
    background-size: 100%;
    background-repeat: no-repeat;
    height: 630px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page-template-page-careers-php div.green-content {
    height: 57vw;
  }
}
.page-template-page-careers-php div.departments-big {
  padding: 150px 100px;
}
@media (max-width: 1199px) {
  .page-template-page-careers-php div.departments-big {
    padding: 150px 50px;
  }
}
.page-template-page-careers-php div.departments-big div.dash {
  border-bottom: 3px solid #006c96;
  width: 25px;
  margin-bottom: 35px;
}
.page-template-page-careers-php div.departments-big div.depts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-template-page-careers-php div.departments-big div.depts div.dept {
  margin: 5px;
  width: calc(25% - 10px);
  padding-bottom: 60px;
  padding-right: 30px;
}
.page-template-page-careers-php div.departments-big div.depts div.dept h4 {
  padding: 10px 0px;
  font-size: 22px;
  line-height: 25px;
  color: #383838;
  font-style: normal;
  border-bottom: 3px solid #eaeaea;
  margin-bottom: 15px;
  font-weight: 500;
}
.page-template-page-careers-php div.departments-big div.depts div.dept p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
  color: #383838;
  font-style: normal;
  margin-bottom: 15px;
  font-weight: 300;
}
.page-template-page-careers-php div.departments-big div.depts div.dept a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 767px) {
  .page-template-page-careers-php div.departments-big {
    display: none;
  }
}

.page-template-page-contact div.drop-line {
  margin-top: 70px;
  padding: 40px 40px 40px 40px;
  background-size: 100% auto;
  height: 630px;
  position: relative;
}
@media (max-width: 1199px) {
  .page-template-page-contact div.drop-line {
    height: 520px;
  }
}
@media (max-width: 970px) {
  .page-template-page-contact div.drop-line {
    height: 420px;
    background-color: #14455a;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact div.drop-line {
    height: 110vw;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media (max-width: 500px) {
  .page-template-page-contact div.drop-line {
    height: 500px !important;
  }
}
@media (max-width: 350px) {
  .page-template-page-contact div.drop-line {
    height: 120vw;
  }
}
.page-template-page-contact div.drop-line .pad-content {
  display: block;
  position: absolute;
  top: 180px;
  left: 100px;
  width: 450px;
}
@media (max-width: 1199px) {
  .page-template-page-contact div.drop-line .pad-content {
    width: 300px;
    left: 50px;
    top: 150px;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact div.drop-line .pad-content {
    top: 74vw;
    left: 25px;
  }
}
@media (max-width: 350px) {
  .page-template-page-contact div.drop-line .pad-content {
    width: 90%;
    top: 78vw;
  }
}
.page-template-page-contact div.drop-line .pad-content h1 {
  color: #00a3da;
  font-size: 54px;
  line-height: 62px;
  font-style: italic;
}
@media (max-width: 1199px) {
  .page-template-page-contact div.drop-line .pad-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact div.drop-line .pad-content h1 {
    font-size: 25px;
    line-height: 1em;
    margin-bottom: 10px;
  }
}
.page-template-page-contact div.drop-line .pad-content h2 {
  color: white;
  font-size: 30px;
  font-weight: 36px;
  font-style: italic;
  font-weight: var(--font-weight-brand-light);
}
@media (max-width: 1199px) {
  .page-template-page-contact div.drop-line .pad-content h2 {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact div.drop-line .pad-content h2 {
    font-size: 17px;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .page-template-page-contact div.drop-line {
    margin-top: 0px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
.page-template-page-contact div.contact h2 {
  color: #00a3db;
  font-style: italic;
  font-size: 38px !important;
  line-height: 44px;
  text-align: center;
  margin-bottom: 5px;
  font-weight: var(--font-weight-brand-light);
}
.page-template-page-contact div.contact p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
  color: #383838;
  text-align: center;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .page-template-page-contact div.contact p {
    font-size: 13px;
  }
}
.page-template-page-contact div.contact input {
  background: #f2f5f6;
  text-align: center;
  width: 100%;
  border: 0px;
  margin: 8px 0px;
  font-size: 18px;
}
.page-template-page-contact div.contact input:focus {
  border: 1px solid #0dace3;
  color: #19465d !important;
}
.page-template-page-contact div.contact .wpcf7-submit {
  background: #0dace3;
  color: white;
  text-align: center;
  width: 100%;
  padding: 15px 0px;
  border: none;
  margin: 0 auto;
  outline: none;
  font-weight: 600;
  font-size: 18px;
}
.page-template-page-contact div.contact .wpcf7-not-valid-tip {
  text-align: center;
}
@media (min-width: 768px) {
  .page-template-page-contact div.contact h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .page-template-page-contact div.contact input {
    max-width: 400px;
    display: block;
    margin: 8px auto;
  }
  .page-template-page-contact div.contact button {
    max-width: 400px;
    display: block;
    margin: 8px auto;
  }
}
.page-template-page-contact .location-button {
  padding: 0 100px 50px 100px;
  text-align: center;
}
.page-template-page-contact .location-button .btn {
  color: #383838;
}
@media (max-width: 767px) {
  .page-template-page-contact .location-button {
    padding: 25px;
  }
}
.page-template-page-contact div.headquarters {
  padding: 100px;
  color: #383838;
}
.page-template-page-contact div.headquarters .columns {
  display: flex;
  flex-direction: row;
}
.page-template-page-contact div.headquarters div.column {
  width: 33.33%;
  position: relative;
}
@media (max-width: 767px) {
  .page-template-page-contact div.headquarters div.column {
    width: 100%;
    margin-bottom: 50px;
  }
}
.page-template-page-contact div.headquarters div.column h2 {
  line-height: 28px;
  font-style: italic;
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
  color: #00a3db;
}
.page-template-page-contact div.headquarters div.column div.dash {
  border-bottom: 3px solid #1ba5d9;
  width: 20px;
  margin-bottom: 15px;
}
.page-template-page-contact div.headquarters div.column p {
  font-style: italic;
  position: relative;
  font-family: var(--font-family-brand);
  font-size: 20px;
  line-height: 28px;
}
.page-template-page-contact div.headquarters div.column p:nth-child(1) {
  left: 5px;
}
.page-template-page-contact div.headquarters div.column div.line {
  position: absolute;
  border-right: 1px solid #1ba5d9;
  height: 150%;
  left: -10%;
  top: -25%;
  transform: rotate(-10deg);
}
@media (max-width: 767px) {
  .page-template-page-contact div.headquarters div.column div.line {
    display: none;
  }
}
@media (max-width: 970px) {
  .page-template-page-contact div.headquarters {
    padding: 100px 25px;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact div.headquarters {
    padding: 50px 25px 0;
    display: block;
  }
  .page-template-page-contact div.headquarters .columns {
    display: block;
  }
  .page-template-page-contact div.headquarters div.column:last-of-type {
    margin-bottom: 0;
  }
  .page-template-page-contact div.headquarters div.column p {
    margin: 0;
  }
}
.page-template-page-contact div.distro {
  height: auto;
}
@media (max-width: 767px) {
  .page-template-page-contact div.distro {
    overflow: hidden;
  }
}
.page-template-page-contact div.distro h2 {
  font-size: 28px;
  line-height: 28px;
  font-style: italic;
  margin-bottom: 5px;
  font-weight: 600;
  color: #006c96;
  padding-left: 100px;
}
@media (max-width: 970px) {
  .page-template-page-contact div.distro h2 {
    padding-left: 25px;
  }
}
.page-template-page-contact div.distro div.dash {
  border-bottom: 3px solid #136e96;
  width: 25px;
  margin-bottom: 45px;
  margin-left: 100px;
}
@media (max-width: 970px) {
  .page-template-page-contact div.distro div.dash {
    margin-left: 25px;
  }
}
.page-template-page-contact div.distro img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .page-template-page-contact div.distro img {
    width: auto;
    height: 100%;
  }
}
.page-template-page-contact div.distro .mapbox {
  width: 100%;
  height: 550px;
}
@media (max-width: 450px) {
  .page-template-page-contact div.distro .mapbox {
    height: 350px;
  }
}
.page-template-page-contact .motivation {
  width: 100%;
  display: block;
  height: 480px;
  margin-top: -30px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .page-template-page-contact .motivation {
    height: 400px;
  }
}
@media (max-width: 970px) {
  .page-template-page-contact .motivation {
    height: 310px;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact .motivation {
    background-size: 100% 100%;
  }
}
.page-template-page-contact .motivation h2 {
  color: #fff;
  text-align: center;
  position: relative;
  top: 215px;
  width: 550px;
  margin: 0 auto;
  font-size: 38px;
  line-height: 44px;
  font-weight: bold;
  font-style: italic;
}
@media (max-width: 1199px) {
  .page-template-page-contact .motivation h2 {
    top: 155px;
  }
}
@media (max-width: 970px) {
  .page-template-page-contact .motivation h2 {
    top: 120px;
    font-size: 25px;
    line-height: 1em;
  }
}
@media (max-width: 767px) {
  .page-template-page-contact .motivation h2 {
    top: 140px;
    width: 90%;
  }
}
@media (max-width: 450px) {
  .page-template-page-contact .motivation h2 {
    width: 90%;
    font-size: 18px;
  }
}

div.careers-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(25, 62, 84, 0.9);
  z-index: 999;
}
div.careers-modal .modal-content {
  width: 100%;
  top: 25%;
  position: relative;
}
div.careers-modal .modal-content .modal-close {
  width: 30px;
  height: 30px;
  background-image: url("../png/modal-close.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: -25px;
  right: 30px;
  cursor: pointer;
  z-index: 99;
}
div.careers-modal .modal-content .content {
  padding: 0;
}
div.careers-modal .modal-content h2 {
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  display: block;
  padding-left: 30px;
}
div.careers-modal .modal-content .divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0 0 0;
}
div.careers-modal .modal-content p {
  color: #fff;
  padding-left: 30px;
  margin: 20px 0 0 0;
}
div.careers-modal .modal-content .learn-more {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  margin: 20px 0 0 0;
  padding-left: 30px;
  font-size: 12px;
  font-weight: 500;
}

section.careers_listing_header {
  background: url("../jpg/listings-header.jpg");
  background-size: cover;
}
@media (max-width: 767px) {
  section.careers_listing_header {
    background: url("../careers-listing-header-mobile.html");
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    height: 110vw;
    padding: 25px;
  }
}
section.careers_listing_header .content {
  min-height: 300px;
  padding: 0 25px;
}
section.careers_listing_header .content h1 {
  margin: 60px 0 5px 0;
  color: #fff;
  font-weight: 600;
  font-size: 54px;
  line-height: 62px;
  font-style: italic;
}
@media (max-width: 767px) {
  section.careers_listing_header .content h1 {
    margin-top: 75vw;
    font-size: 25px;
    line-height: 28px;
  }
}

section.listings_head .content {
  padding: 50px 25px;
}
section.listings_head .content p {
  font-size: 15px;
  line-height: 28px;
  color: #383838;
  font-style: normal;
  width: 50%;
  margin: 0 0 50px 0;
  font-weight: 300;
}
@media (max-width: 767px) {
  section.listings_head .content p {
    width: 100%;
  }
}
section.listings_head .content h2 {
  color: #006c96;
  font-weight: bold;
  margin: 0 0 10px 0;
  font-size: 28px;
  line-height: 1em;
  font-style: italic;
}
@media (max-width: 767px) {
  section.listings_head .content h2 {
    font-size: 20px;
  }
}
section.listings_head .content .border {
  width: 25px;
  height: 3px;
  background-color: #006c96;
  margin: 0 0 30px 5px;
}
section.listings_head .content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section.listings_head .content ul li {
  display: inline-block;
  padding-right: 10px;
}
section.listings_head .content .listings_select {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  float: left;
  width: 145px;
  outline: none;
  padding-right: 30px;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #00a4db;
  background-color: #fff;
  background-image: url("../png/select-arrow.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 91% center;
}

.single-press .page-content .container {
  width: 1170px;
}
@media (max-width: 1199px) {
  .single-press .page-content .container {
    width: 990px;
  }
}
@media (max-width: 992px) {
  .single-press .page-content .container {
    width: 760px;
  }
}
@media (max-width: 768px) {
  .single-press .page-content .container {
    width: 100%;
    padding: 0 25px;
  }
}
.single-press .page-content .dash {
  margin-bottom: 60px;
}
.single-press .page-content h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 25px;
}
.single-press .page-content .border {
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #ccc;
  display: block;
  margin-bottom: 35px;
}
.single-press .page-content .share_icons {
  width: 100%;
  display: block;
  position: relative;
  text-align: right;
  list-style-type: none;
  margin-top: -50px;
  top: -20px;
}
@media (max-width: 450px) {
  .single-press .page-content .share_icons {
    text-align: left;
    margin-top: 0;
    top: 0;
  }
}
.single-press .page-content .share_icons li {
  display: inline-block;
  padding: 0 2px;
}
.single-press .page-content .share_icons li.sharenow {
  padding: 0 9px 0 2px;
}
.single-press .page-content .share_icons .fb-icon {
  width: 25px;
  height: 24px;
  background-image: url("../png/fb-icon.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  top: 6px;
}
.single-press .page-content .share_icons .linkedin-icon {
  width: 25px;
  height: 24px;
  background-image: url("../png/linkedin-icon.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  top: 6px;
}
.single-press .page-content .share_icons .twitter-icon {
  width: 25px;
  height: 24px;
  background-image: url("../png/twitter-icon.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  top: 6px;
}

div.white-overlay {
  padding: 40px;
}
div.white-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  div.white-overlay {
    display: none;
  }
}

.blocker {
  z-index: 999999 !important;
}

.modal.dt-requisition-modal {
  max-width: 70%;
  padding: 100px 100px 50px 100px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .modal.dt-requisition-modal {
    max-width: 95%;
    padding: 100px 25px 50px 25px;
  }
}
.modal.dt-requisition-modal .close-modal {
  top: 25px;
  right: 25px;
  background-image: url("../png/exit.png");
  background-size: 100% auto;
}
.modal.dt-requisition-modal h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.modal.dt-requisition-modal p {
  margin-bottom: 25px !important;
}
.modal.dt-requisition-modal a.apply-here {
  width: 95px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  margin: 30px auto;
  display: block;
  text-decoration: none;
  color: #000;
  border: 1px solid #0099d5;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
/*
@media only screen and (min-width: 481px) {

	// styles in 481up.scss
	@import "breakpoints/481up";

} // end of media query
*/
/*********************
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
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 760px;
  }
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
}
/*********************
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: 960px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

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

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

	// styles in 1240up.scss
	@import "breakpoints/1240up";

} // end of media query
*/
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5) {

	// styles in 2x.scss
	@import "breakpoints/2x";

} // end of media query
*/
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}

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