@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name: Shemesh Automation 
Author: CBJ Digital
Version: 03052024

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,300italic,400italic,700,700italic";
@import "https://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,300,400,700";
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;
}
a.hide-focus:focus{
	outline: none;
	box-shadow: none;
}
/**
 * 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 {
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-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 */ /* 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;
}

* {
  box-sizing: border-box;
}

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

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

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

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

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

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

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

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url("library/fonts/font-name.eot");
      src: url("library/fonts/font-name.eot?#iefix") format('embedded-opentype'),
             url("library/fonts/font-name.woff") format('woff'),
             url("library/fonts/font-name.ttf") format('truetype'),
             url("library/fonts/font-name.svg#font-name") format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  margin: 0 0 1rem 0;
  -ms-word-wrap: normal;
  word-break: normal;
  word-wrap: normal;
  -webkit-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

ul {
  margin: 0 0 1em 0;
}

h4 + ul {
  margin-top: -0.5rem;
}

p + h3,
ul + h3 {
  margin-top: 2rem;
}

form h2 {
  margin-top: 0;
  color: #9b9da0;
}

/******************************************************************
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? */
/***********************
ADDITIONAL MIXINS BY CB 
***********************/
/* NOTE: Originally used on Zest by NT - ref CSS Tricks */
/******************************************************************
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%;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  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;
}

/******************************************************************
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, #submit, .comment-reply-link {
  display: inline-block;
  position: relative;
  font-family: "Roboto", 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;
  transition: background-color 0.14s ease-in-out;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.blue-btn:active, #submit:active, .comment-reply-link: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, #submit, .comment-reply-link {
  background-color: #00386c;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus {
  background-color: #002d58;
}
.blue-btn:active, #submit:active, .comment-reply-link:active {
  background-color: #002b53;
}

/******************************************************************
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;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #58595b;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  background-color: #d0d3d5;
  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: #d8dbdc;
  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;
}

.wpcf7-f986-p978-o1 textarea {
  height: 141px;
}

#marketing-acceptance {
  clear: both;
}

.side-button-block {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  z-index: 8000;
}

.side-button {
  width: 300px;
  margin-bottom: 2vh;
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
  border-width: 2px;
  border-style: solid;
  border-right-width: 0;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateX(calc(100% - 3.6rem));
          transform: translateX(calc(100% - 3.6rem));
  pointer-events: all;
}
.side-button:last-of-type {
  margin: 0;
}
.side-button.side-button--red {
  border-color: #d51b1f;
}
.side-button.side-button--red .side-button__inner {
  background-color: #d51b1f;
}
.side-button.side-button--blue {
  border-color: #00386c;
}
.side-button.side-button--blue .side-button__inner {
  background-color: #00386c;
}
.side-button.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.side-button__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 2px solid white;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  border-right-width: 0;
}

.side-button__icon {
  display: block;
  min-width: 2.2rem;
  min-height: 2.2rem;
  margin: 0.8rem;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.side-button__icon:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.side-button__icon.side-button__icon--choose-machine {
  background: transparent url("/source/b098a8c1da5171c9d4c5aa07cdf26f34/Choose_machine.svg") no-repeat center center;
  background-size: contain;
}
.side-button__icon.side-button__icon--ex-protection {
  background: transparent url("/source/ea4c6b748fa48c1f4da80fe0544ee081/Exp_Co.svg") no-repeat center center;
  background-size: contain;
}
.side-button__icon.side-button__icon--contact-24hr {
  background: transparent url("/source/db3d3b4039ad8c17290b7f2a00600d49/24hr.svg") no-repeat center center;
  background-size: contain;
}

.side-button__text {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1.1;
  margin-left: 0.8rem;
  padding: 0.8rem;
  flex: 1 1 100%;
}
.side-button__text:hover, .side-button__text:visited, .side-button__text:visited:hover {
  color: #fff !important;
}

.side-button__content {
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  margin-left: 0.8rem;
}
.side-button__content a {
  color: inherit;
}

.contact-24hr-side-button {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2vh;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateX(calc(100% - 3.6rem));
          transform: translateX(calc(100% - 3.6rem));
}
.contact-24hr-side-button.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.contact-24hr-side-button .contact-24hr-side-button__tab {
  border: 2px solid #00386c;
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
  border-right: 0 none;
  pointer-events: all;
}
.contact-24hr-side-button .contact-24hr-side-button__tab-inner {
  border: 2px solid #fff;
  border-right: 0 none;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  background-color: #00386c;
  position: relative;
}
.contact-24hr-side-button .contact-24hr-side-button__tab-inner:after {
  content: "";
  display: block;
  position: absolute;
  right: -4px;
  top: -2px;
  width: 4px;
  background-color: #00386c;
  height: 100%;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.contact-24hr-side-button .contact-24hr-side-button__content {
  width: 300px;
  border: 2px solid #00386c;
  border-top-left-radius: 0.4rem;
  pointer-events: all;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  width: 300px;
  padding: 0.8rem;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 100%;
  text-decoration: none;
  padding: 0.4rem;
  background-color: #d51b1f;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  border: 2px solid #fff;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a:hover {
  color: #fff;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a span {
  flex: 1;
  font-size: 0.9rem;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.meanda:before, .contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.ukande:before, .contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.usaandap:before {
  background: transparent url("/source/e6b5345ee7459beba13700010f6c0394/telephone.svg") no-repeat center center;
  background-size: contain;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.email:before {
  margin-right: 0.5rem;
  background: transparent url("/source/b227a80631185b368a2946f7011aef74/envelope.svg") no-repeat center center;
  background-size: contain;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.contactus:before {
  background: transparent url("/source/3bbb0a062d4b2cc81f38aa34aed75d4d/marker.svg") no-repeat center center;
  background-size: contain;
}
.contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.email, .contact-24hr-side-button .contact-24hr-side-button__content .side-button__content a.contactus {
  flex: 0 0 48%;
  margin-bottom: 0;
}
.contact-24hr-side-button .side-button__inner {
  background-color: #00386c;
  border-bottom-left-radius: 0;
}

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

Stylesheet: Base Mobile Stylesheet

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 93.75%;
  line-height: 1.5;
  color: #58595b;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body,
html {
  overflow-x: hidden;
}

.more-link {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
.home #content {
  margin-top: 0;
}
.home #content main {
  /*
  			background: url("/source/80914e5c3caa6cc75a84477b117ca612/bg-home.jpg") no-repeat 50% 10px;
  			background-size: 100%;
  */
}
.home [id*=metaslider_container] .caption-wrap {
  background: transparent;
  color: #9b9da0;
  font-size: 15px;
  width: 35%;
  padding-right: 0.5%;
  top: 0.25em;
  text-align: right;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}
.home [id*=metaslider_container] .caption-wrap span {
  font-size: 11px;
  display: block;
  text-transform: none;
}
.home aside {
  clear: both;
}
.home .hentry {
  margin-bottom: 0;
}
.home .hentry .article-header {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.home .entry-content {
  background-color: #00386c;
  padding: 0.5em 0 1em;
  /*
  		blockquote {
  			width: 82.95081967%;
  			padding: 0;
  			margin: 32px auto 0;
  			& + p {
  				margin-right: 8.524590165%;
  			}
  		}
  */
}
.home .entry-content::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #fff;
  position: relative;
  top: 2.5em;
}
.home .entry-content blockquote {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  border: 0 none;
  position: relative;
  width: 76%;
  padding: 0;
  margin: 1.5em auto;
}
.home .entry-content blockquote p {
  color: #fff;
  margin-bottom: 4px;
}
.home .entry-content blockquote::before {
  content: url("/source/07cbf8a92c18df9e0e87176ebf2d6e0a/icon_quotemark.png");
  display: block;
  position: absolute;
  top: -18px;
  left: -40px;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}
.home .entry-content blockquote + p {
  width: auto;
  float: right;
  margin: 0 8.524590165% 16px 0;
}
.home .service-links {
  background-color: #d0d3d5;
}
.home .service-links .inner {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #d0d3d5;
}
.home .service-links a {
  text-decoration: none;
}
.home .service-links a h2 {
  margin-top: 0.375em;
  font-size: 1.2em;
  font-weight: 300;
  text-align: center;
  color: #58595b;
}
.home .news-feed p,
.home .events-feed p {
  margin: 0.25em 0;
}
.home .news-feed li,
.home .events-feed li {
  margin-bottom: 1.5em;
}
.home .news-feed a,
.home .events-feed a {
  text-decoration: none;
}
.home .news-feed a h3,
.home .news-feed a .h3,
.home .news-feed a .footer2 section.service-and-support-text p,
.footer2 section.service-and-support-text .home .news-feed a p,
.home .events-feed a h3,
.home .events-feed a .h3,
.home .events-feed a .footer2 section.service-and-support-text p,
.footer2 section.service-and-support-text .home .events-feed a p {
  font-size: 1.125em;
  text-transform: none;
  color: #d51b1f;
  line-height: 1.3;
  margin: 0;
}
.home .news-feed a p.h3, .home .news-feed a .footer2 section.service-and-support-text p, .footer2 section.service-and-support-text .home .news-feed a p,
.home .events-feed a p.h3,
.home .events-feed a .footer2 section.service-and-support-text p,
.footer2 section.service-and-support-text .home .events-feed a p {
  text-transform: capitalize;
}
.home .news-feed a img,
.home .events-feed a img {
  width: 100%;
  margin-bottom: 4px;
}
.home .news-feed .inner {
  border-bottom: 1px solid #d0d3d5;
}
.home .careers-link {
  padding: 0.5em 0 1em;
  background-color: #d51b1f;
}
.home .careers-link::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #fff;
  position: relative;
  top: 2.5em;
}
.home .careers-link p {
  font-size: 18px;
  text-align: center;
  padding-top: 24px;
}
.home .careers-link a.more-link {
  float: right;
}
.home .entry-content,
.home .careers-link {
  color: #fff;
}
.home .entry-content a,
.home .careers-link a {
  color: #fff;
}
.home .entry-content a:hover, .home .entry-content a:focus,
.home .careers-link a:hover,
.home .careers-link a:focus {
  color: #fff;
}
.home .accreditations-partners {
  min-height: 150px;
  padding: 0.5em 0 0;
  /*
  		background: url("/source/80914e5c3caa6cc75a84477b117ca612/bg-home.jpg") no-repeat 50% 100%;
  		background-size: 100% 100%;
  */
  text-align: center;
}
.home .accreditations-partners h2 {
  text-align: left;
}
.home .accreditations-partners h2 + a {
  display: inline-block;
  margin-top: 2em;
}
.home .accreditations-partners .partner-logos,
.home .accreditations-partners .accreditation-logos {
  margin-top: 32px;
}
.home .news-feed,
.home .events-feed {
  padding-top: 1em;
}
.home .gallery-carousel {
  padding-top: 0.5em;
  position: relative;
}
.home .gallery-carousel::before {
  content: "";
  width: 100%;
  height: 3em;
  display: block;
  background-color: #d51b1f;
  position: absolute;
  top: 0;
  z-index: 1;
}
.home .gallery-carousel .gallery {
  margin: 24px 0;
}
.home .world-map {
  padding-top: 0.5em;
  position: relative;
  /*
  		background: url("/source/6915d1e8378e7ef2237d997ee0ca8500/bg-worldmap.jpg") no-repeat 50% 24px;
  		background-size: 100% 100%;
  */
}
.home .world-map::before {
  content: "";
  width: 100%;
  height: 3em;
  display: block;
  background-color: #00386c;
  position: absolute;
  top: 0;
  z-index: 1;
}

/* home page */
.blog .hentry {
  padding-left: 32.5%;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #d0d3d5;
}
.blog .hentry:last-of-type {
  border: 0 none;
}
.blog .hentry img {
  width: 45%;
  float: left;
  margin-left: -48%;
}
.blog .hentry header {
  padding: 0;
}
.blog .hentry header h1 a {
  color: #d51b1f;
  text-transform: none;
}
.blog .hentry .entry-content {
  padding: 0.5em 0 0;
}
.blog .hentry .entry-content p {
  margin-bottom: 0.75em;
}
.blog .hentry .entry-content > a {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

/* blog template page */
.archive h1.page-title {
  margin: 0.67em 0;
}
.archive .hentry {
  padding-left: 32.5%;
  border-bottom: 1px solid #d0d3d5;
}
.archive .hentry:last-of-type {
  border: 0 none;
}
.archive .hentry img {
  width: 45%;
  float: left;
  margin-left: -48%;
  height: 160px;
}
.archive .hentry header {
  padding: 0;
}
.archive .hentry header h1 {
  margin-bottom: 0;
}
.archive .hentry header h1 a {
  color: #d51b1f;
}
.archive .hentry header p.event-location {
  font-weight: 700;
  color: #d51b1f;
  margin: 0 0 0.5em;
}
.archive .hentry .entry-content {
  padding: 0.5em 0 0;
}
.archive .hentry .entry-content p {
  margin-bottom: 0.75em;
}
.archive .hentry .entry-content > a {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.archive .hentry footer {
  display: none;
}

/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
.single header.entry-header, .single-events header.entry-header,
.single header.article-header,
.single-events header.article-header {
  padding-top: 0;
}
.single header.entry-header .byline, .single-events header.entry-header .byline,
.single header.article-header .byline,
.single-events header.article-header .byline {
  margin-bottom: 0.75em;
}
.single header.entry-header img, .single-events header.entry-header img,
.single header.article-header img,
.single-events header.article-header img {
  width: 100%;
}

/* single post page */
.single-events p.event-location {
  font-weight: 700;
  color: #d51b1f;
  margin: 0 0 0.75em;
}

/* single events page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  max-width: 1220px;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a,
a:visited {
  color: #00386c;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus,
a:visited:hover,
a:visited:focus {
  color: #00203e;
}
a:link,
a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
.footer2 section.service-and-support-text p,
h4,
.h4,
h5,
.h5 {
  margin: 0;
  margin-bottom: 0.5rem;
  text-rendering: optimizelegibility;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  color: #00386c;
  text-transform: uppercase;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
.footer2 section.service-and-support-text p a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
  color: #00386c;
}
h1.main-headline,
.h1.main-headline,
h2.main-headline,
.h2.main-headline,
h3.main-headline,
.h3.main-headline,
.footer2 section.service-and-support-text p.main-headline,
h4.main-headline,
.h4.main-headline,
h5.main-headline,
.h5.main-headline {
  margin-top: 0;
  position: relative;
  z-index: 10;
}
h1.main-headline::after,
.h1.main-headline::after,
h2.main-headline::after,
.h2.main-headline::after,
h3.main-headline::after,
.h3.main-headline::after,
.footer2 section.service-and-support-text p.main-headline::after,
h4.main-headline::after,
.h4.main-headline::after,
h5.main-headline::after,
.h5.main-headline::after {
  content: ": ";
  font-size: inherit;
  position: relative;
  bottom: 1px;
}
h1.main-headline.light,
.h1.main-headline.light,
h2.main-headline.light,
.h2.main-headline.light,
h3.main-headline.light,
.h3.main-headline.light,
.footer2 section.service-and-support-text p.main-headline.light,
h4.main-headline.light,
.h4.main-headline.light,
h5.main-headline.light,
.h5.main-headline.light {
  color: #fff;
}

h1,
.h1 {
  font-size: 2em;
}
h1.light,
.h1.light {
  color: #fff;
}

h2,
.h2 {
  font-size: 1.5em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}
h2.light,
.h2.light {
  color: #fff;
}
h2.red,
.h2.red {
  color: #d51b1f;
}
h3,
.h3,
.footer2 section.service-and-support-text p {
  text-transform: initial;
  font-size: 1.625em;
}
h3.light,
.h3.light,
.footer2 section.service-and-support-text p.light {
  color: #fff;
}

h4,
.h4 {
  color: #9b9da0;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: initial;
}
h4.light,
.h4.light {
  color: #fff;
}

h5,
.h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h5.light,
.h5.light {
  color: #fff;
}

/*********************
HEADER STYLES
*********************/
.header {
  background-color: #fff;
  border-bottom: 1px solid #d0d3d5;
}
.header .header-supp {
  background-color: #00386c;
  overflow: hidden;
}
.header .header-supp .nav-supp {
  float: right;
  width: 88%;
  margin: 8px 0;
}
.header .header-supp .nav-supp a,
.header .header-supp .nav-supp button,
.header .header-supp .nav-supp ul {
  float: left;
  display: block;
  font-size: 0.8rem;
}
.header .header-supp .nav-supp ul.social-links li:nth-of-type(3), .header .header-supp .nav-supp ul.social-links li:nth-of-type(4) {
  display: none;
}
.header .header-supp .nav-supp ul.social-links li a {
  margin-left: 0;
}
.header .header-supp .nav-supp ul.social-links li:first-of-type a {
  margin-right: 2px;
}
.header .header-supp .nav-supp .contact-link {
  height: 26px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d51b1f;
  color: #fff;
  border-radius: 3px;
  padding: 0 6px;
}
.header .header-supp .nav-supp .search-toggle {
  width: 26px;
  height: 26px;
  border: 0 none;
  background: transparent url("/source/30d5394ea414cf8591ef8eb2b587a312/icon_search.png") no-repeat 50% 50%;
  background-size: 100%;
  margin: 0 8px 0 16px;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
}
.header .header-supp .nav-supp .search-box {
  display: none;
  clear: left;
  padding: 1.5em 0 0;
}
.header .header-supp .nav-supp .search-box label,
.header .header-supp .nav-supp .search-box button {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.header .header-supp .nav-supp .search-box input {
  box-sizing: border-box;
  background-color: #fff;
  color: #58595b;
  -webkit-appearance: none;
}

#logo {
  margin: 0.75em auto;
  width: 75%;
  max-width: 345px;
  display: block;
}
#logo h1,
#logo p {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

ul.social-links {
  margin: 0;
}
ul.social-links li {
  display: inline;
}
ul.social-links li a {
  display: block;
  float: left;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
}
ul.social-links li a:hover, ul.social-links li a:focus {
  background: green;
}
ul.social-links li a[href^="https://www.linkedin"] {
  background: transparent url("/source/ab50d182697860de47fa608b1a387cc5/icon_linkedin.png") no-repeat 50% 50%;
  background-size: 100%;
}
ul.social-links li a[href^="https://www.vimeo"] {
  background: transparent url("/source/79d771bf76088be955e9af5cad6e195c/icon_vimeo.png") no-repeat 50% 50%;
  background-size: 100%;
}
ul.social-links li a[href^="https://www.facebook"] {
  background: transparent url("/source/939dc283140f8da1967fa548b7a9f024/icon_facebook.png") no-repeat 50% 50%;
  background-size: 100%;
}
ul.social-links li a[href^="https://www.youtube"] {
  background: transparent url("/source/08e22a87cb5c2852e9ed54ddb64ca943/icon_youtube.png") no-repeat 50% 50%;
  background-size: 100%;
}

header img,
main img,
aside img,
.sidebar img,
footer img {
  max-width: 100%;
  height: auto;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.mobile-toggle {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0 none;
  padding: 0;
  text-indent: -9999px;
  background: transparent url("/source/020948d177266f3edfd252b1870220aa/menu.png") no-repeat center center;
  background-size: contain;
  float: left;
  top: 6px;
}

nav.top-level-navigation {
  position: absolute;
  top: 88px;
  left: -100%;
  width: 100%;
  background-color: #58595b;
  z-index: 9999;
  height: calc(100vh - 46px);
  overflow: scroll;
  border-right: 1px solid #58595b;
}
nav.top-level-navigation .mobile-nav-header {
  line-height: 1.9;
  text-transform: uppercase;
  padding: 0 0.5em;
  color: #ffffff;
  font-size: 0.9em;
  background-color: #d51b1f;
}
nav.top-level-navigation.is-visible {
  left: 0;
}
nav.top-level-navigation .mobile-nav-header {
  display: none;
}
nav.top-level-navigation > ul {
  margin-top: 0;
  background-color: #ffffff;
}
nav.top-level-navigation > ul > li {
  margin: 0;
  border-bottom: 1px solid #58595b;
}
nav.top-level-navigation > ul > li > a {
  position: relative;
  display: block;
  line-height: 1.3;
  padding: 0.7rem;
  color: #58595b;
  text-decoration: none;
  text-transform: uppercase;
}
nav.top-level-navigation > ul > li.menu-item-has-children > a span {
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
  width: 16px;
  height: 16px;
  background: transparent url("/source/e60a67f567c51ae21e1aeed71e960657/add.png") no-repeat center center;
}
nav.top-level-navigation > ul > li.menu-item-has-children.is-expanded > a span {
  background: transparent url("/source/8894bd4da0003f6d043010fa4fa5da1b/remove.png") no-repeat center center;
}
nav.top-level-navigation > ul > li > ul {
  display: none;
  margin: 0;
  background-color: #00386c;
}
nav.top-level-navigation > ul > li > ul > li {
  position: relative;
  margin: 0;
  border-bottom: #58595b;
}
nav.top-level-navigation > ul > li > ul > li > a {
  position: relative;
  display: block;
  line-height: 1.3;
  padding: 0.7rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 5px 10px;
  font-size: 0.875em;
  border-bottom: 1px solid #58595b;
}
nav.top-level-navigation > ul > li > ul > li.menu-item-has-children > a span {
  display: block;
  position: absolute;
  right: 15px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: transparent url("/source/e60a67f567c51ae21e1aeed71e960657/add.png") no-repeat center center;
}
nav.top-level-navigation > ul > li > ul > li.menu-item-has-children.is-expanded > a span {
  background: transparent url("/source/8894bd4da0003f6d043010fa4fa5da1b/remove.png") no-repeat center center;
}
nav.top-level-navigation > ul > li > ul > li:first-of-type a {
  border-top: 1px solid #58595b;
}
nav.top-level-navigation > ul > li > ul > li > ul {
  display: none;
  margin: 0;
  background-color: #767678;
}
nav.top-level-navigation > ul > li > ul > li > ul > li > a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.875em;
  border-bottom: 1px solid #58595b;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.hentry {
  margin-bottom: 2%;
}
.hentry footer {
  padding: 1.5em 0;
}
.hentry footer p {
  margin: 0;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

.page-title {
  font-size: 2em;
  font-weight: 700;
  color: #58595b;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  border-bottom: 1em solid #00386c;
}

.archive-title {
  font-size: 2em;
  font-weight: 700;
  color: #58595b;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  border-bottom: 1em solid #00386c;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content {
  padding: 0;
  /*
  	image alignment on a screen this size may be
  	a bit difficult. It's set to start aligning
  	and floating images at the next breakpoint,
  	but it's up to you. Feel free to change it up.
  	*/
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content table {
  width: 100%;
  border: 1px solid #9b9da0;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #9b9da0;
}
.entry-content tr:nth-child(even) {
  background-color: #d0d3d5;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #9b9da0;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #d0d3d5;
  border-bottom: 1px solid #9b9da0;
  border-right: 1px solid #9b9da0;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #323944;
  color: #d0d3d5;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

.service-links section {
  width: 100%;
}
.service-links section img {
  width: 100%;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #9b9da0;
}
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #00386c;
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: #00386c;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #58595b;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #58595b;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #d0d3d5;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #d0d3d5;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #d0d3d5;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
} /* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #d0d3d5;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #58595b;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #d0d3d5;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widgettitle {
  margin-bottom: 0.75em;
}

.widget ul {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  margin: 0;
}
.widget ul li {
  margin-bottom: 0.25em;
  /* deep nesting */
}
.widget ul li a {
  color: #58595b;
  text-decoration: none;
}
.widget ul li a:hover, .widget ul li a:focus {
  color: #00203e;
  text-decoration: underline;
}
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

.upw-posts article.hentry {
  padding: 0;
  border: 0 none;
  margin-bottom: 0;
}
.upw-posts article.hentry header {
  padding: 0;
  border: 0 none;
}
.upw-posts article.hentry header h4.entry-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0.25em;
  text-transform: capitalize;
}
.upw-posts article.hentry header h4.entry-title a {
  color: #58595b;
  text-decoration: none;
}
.upw-posts article.hentry header h4.entry-title a:hover, .upw-posts article.hentry header h4.entry-title a:focus {
  color: #00203e;
  text-decoration: underline;
}
.upw-posts article.hentry footer {
  display: none;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #002144;
  color: #fff;
  font-size: 14px;
  padding-bottom: 24px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer .widget_text h4.widgettitle {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.footer .vcard h3.org {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer .vcard .adr {
  margin-bottom: 1em;
}
.footer .vcard .adr span {
  display: block;
}
.footer .social-links {
  float: right;
  clear: right;
}
.footer .social-links li a {
  width: 38px;
  height: 38px;
  margin-left: 16px;
}
.footer .small-print {
  clear: both;
}
.footer .accreditations {
  float: right;
  width: 289px;
  clear: right;
  margin-top: 16px;
}

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
.footer-strap h3,
.footer-strap p {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

form.sa-support-form {
  max-width: 1120px;
  margin: 0 auto;
}
form.sa-support-form span.wpcf7-list-item {
  display: block;
}
form.sa-support-form label span,
form.sa-support-form p.note span {
  color: #d51b1f;
}
form.sa-support-form p.note {
  font-size: 13px;
  margin-top: -0.5em;
}
form.sa-support-form input[type=text],
form.sa-support-form input[type=tel],
form.sa-support-form input[type=email],
form.sa-support-form textarea {
  background-color: #f0f1f1;
  width: 100%;
  max-width: 100%;
}
form.sa-support-form input[type=submit] {
  width: 100%;
  height: 26px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d71920;
  color: white;
  border-radius: 3px;
  padding: 0 6px 2px;
  border: none;
}
form.sa-support-form #interest {
  clear: both;
}
form.sa-support-form #interest label {
  display: block;
}
form.sa-support-form #interest h3 {
  margin-bottom: -0.75em;
}
@media (min-width: 1020px) {
  form.sa-support-form #interest div {
    width: 48.5%;
    float: left;
    margin-bottom: 24px;
  }
  form.sa-support-form #interest div#categories {
    float: right;
  }
}
.page-template-page-about .entry-content img {
  display: block;
  width: 100%;
}

.page-template-page-support header.article-header,
.page-template-page-about header.article-header,
.page-template-page-about-testimonials header.article-header,
.page-template-page-publications header.article-header {
  padding: 0;
  background-color: #d0d3d5;
}

.entry-content img {
  display: block;
}
.entry-content .intro p {
  font-size: 1.1rem;
}
aside {
  clear: both;
}

.sub-content {
  position: relative;
  background-color: #d0d3d5;
}
.sub-content:before {
  content: "";
  width: 100%;
  height: 3em;
  display: block;
  background-color: #002144;
  position: absolute;
  top: 0;
  z-index: 1;
}
.sub-content .main-headline {
  font-size: 1.5em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
  padding-top: 0.3em;
}
.sub-content .section-content {
  padding: 1rem 0;
}
.sub-content .section-content p {
  margin-bottom: 1em;
}

.inner-sub {
  clear: both;
  background-size: 100% 100%;
  padding: 32px 0 24px;
}
.home .inner-sub {
  margin-top: 48px;
}

.shemesh-quote {
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #d51b1f;
}
.shemesh-quote blockquote {
  font-size: 1.3rem;
  width: 80%;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

img.ajax-loader {
  display: none;
}

.page-template-page-careers .careers-listing .career-post-full-details {
  margin-bottom: 20px;
}
.page-template-page-careers .careers-listing .career-post-full-details h3 {
  position: relative;
  padding: 5px 10px;
  background-color: #d51b1f;
  margin: 0;
  font-size: 1.125em;
  text-transform: uppercase;
}
.page-template-page-careers .careers-listing .career-post-full-details h3:hover {
  cursor: pointer;
}
.page-template-page-careers .careers-listing .career-post-full-details h3:after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 0;
  color: #fffff;
  font-size: 1.5em;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description {
  display: none;
  padding: 10px;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description ul {
  margin-top: 0;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description ul li {
  position: relative;
  padding-left: 0.6em;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description ul li:before {
  display: block;
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 0;
  top: 0.5em;
  background-color: #00386c;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description .post-details li {
  padding-left: 0;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description .post-details li:before {
  display: none;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description p.package {
  font-weight: bold;
  color: #00386c;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description span {
  color: #58595b;
  font-weight: bold;
}
.page-template-page-careers .careers-listing .career-post-full-details .careeer-post-full-description h4 {
  text-transform: capitalize;
  color: #58595b;
  margin: 0;
}
.page-template-page-careers .careers-listing .career-post-full-details.is-expanded h3:after {
  content: "-";
}
.page-template-page-careers .careers-listing .career-post-full-details.is-expanded .careeer-post-full-description {
  display: block;
}

form.wpcf7-form {
  padding: 20px;
}
form.wpcf7-form div {
  margin-bottom: 10px;
}
form.wpcf7-form div label {
  display: block;
  padding-left: 10px;
  text-transform: uppercase;
  line-height: 1.8;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
form.wpcf7-form div input[type=text],
form.wpcf7-form div input[type=email],
form.wpcf7-form div input[type=tel],
form.wpcf7-form div textarea,
form.wpcf7-form div select {
  display: block;
  width: 100%;
  border: 1px solid #9b9da0;
  padding: 5px;
  border-radius: 3px;
  max-width: 100% !important;
  background-color: #ffffff;
}
form.wpcf7-form div#privacy-acceptance [type=checkbox] {
  display: inline-block;
}
form.wpcf7-form div#privacy-acceptance label {
  display: inline-block;
  text-transform: capitalize;
}
form.wpcf7-form [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  border: 0 none;
  background-color: #00386c;
  width: 9em;
  line-height: 1.9;
  font-weight: bold;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
form.wpcf7-form p.note {
  margin-bottom: 0;
}

.sidebar {
  margin-top: 3.5em;
  padding-right: 10px !important;
}
.sidebar .support-sb-links a {
  display: block;
  padding: 0.5em;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d51b1f;
  margin-bottom: 1rem;
}
.sidebar .support-sb-links a.tech-advice-link {
  background-color: #00386c;
}
.sidebar .support-sb-links .brochure-download {
  position: relative;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
.sidebar .support-sb-links .brochure-download:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  background: transparent url("/source/3c04f3c449ea1817ddfe0dd5b6a4bec1/document.png") no-repeat right top;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
}
.sidebar .support-sb-hotline {
  padding: 0.4rem;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d51b1f;
  margin-bottom: 1rem;
}
.sidebar .support-sb-hotline h4 {
  color: #ffffff;
  font-size: 2.1em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 0.2em;
  border-bottom: 1px solid #ffffff;
  text-transform: uppercase;
}
.sidebar .support-sb-hotline h4 span {
  display: block;
}
.sidebar .support-sb-hotline p {
  margin: 0;
}

.enquiry-contacts div a.contact {
  display: block;
  min-height: 69px;
  font-size: 0.875em;
  padding: 0.95rem 0.4rem;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #00386c;
  vertical-align: middle;
}
.enquiry-contacts div a.contact:hover {
  background-color: #d51b1f;
}

.tax-machine_cat .type-machines {
  padding-left: 0 !important;
}

.page-template-page-multisteps-ebook-overview header.page-header,
.page-template-page-support header.page-header,
.page-template-page-support .main-headline,
.page-template-page-multisteps-ebook-overview header.page-header,
.page-template-page-multisteps-ebook-overview .main-headline,
.page-template-page-sectors-overview header.page-header,
.page-template-page-sectors-overview .main-headline, .page-template-page-sectors header.page-header,
.page-template-page-sectors .main-headline, .single-sectors header.page-header,
.single-sectors .main-headline,
.page-template-page-machines header.page-header,
.page-template-page-machines .main-headline,
.page-template-page-media-grid header.page-header,
.page-template-page-media-grid .main-headline,
.single-machines header.page-header,
.single-machines .main-headline,
.tax-machine_cat header.page-header,
.tax-machine_cat .main-headline,
.post-type-archive-case_studies header.page-header,
.post-type-archive-case_studies .main-headline,
.single-case_studies header.page-header,
.single-case_studies .main-headline {
  position: relative;
  padding: 0;
  background-color: #d0d3d5;
}
.page-template-page-support header.page-header:before,
.page-template-page-support .main-headline:before,
.page-template-page-sectors-overview header.page-header:before,
.page-template-page-multisteps-ebook-overview header.page-header:before,
.page-template-page-multisteps-ebook-overview .main-headline:before,
.page-template-page-sectors-overview .main-headline:before,
.page-template-page-sectors header.page-header:before,
.page-template-page-sectors .main-headline:before, .single-sectors header.page-header:before,
.single-sectors .main-headline:before,
.page-template-page-machines header.page-header:before,
.page-template-page-machines .main-headline:before,
.page-template-page-media-grid header.page-header:before,
.page-template-page-media-grid .main-headline:before,
.single-machines header.page-header:before,
.single-machines .main-headline:before,
.tax-machine_cat header.page-header:before,
.tax-machine_cat .main-headline:before,
.post-type-archive-case_studies header.page-header:before,
.post-type-archive-case_studies .main-headline:before,
.single-case_studies header.page-header:before,
.single-case_studies .main-headline:before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #d0d3d5;
  position: absolute;
  left: -100%;
}
.page-template-page-support header.page-header:after,
.page-template-page-support .main-headline:after,
.page-template-page-multisteps-ebook-overview header.page-header:after,
.page-template-page-multisteps-ebook-overview .main-headline:after,
.page-template-page-sectors-overview header.page-header:after,
.page-template-page-sectors-overview .main-headline:after, .page-template-page-sectors header.page-header:after,
.page-template-page-sectors .main-headline:after, .single-sectors header.page-header:after,
.single-sectors .main-headline:after,
.page-template-page-machines header.page-header:after,
.page-template-page-machines .main-headline:after,
.page-template-page-media-grid header.page-header:after,
.page-template-page-media-grid .main-headline:after,
.single-machines header.page-header:after,
.single-machines .main-headline:after,
.tax-machine_cat header.page-header:after,
.tax-machine_cat .main-headline:after,
.post-type-archive-case_studies header.page-header:after,
.post-type-archive-case_studies .main-headline:after,
.single-case_studies header.page-header:after,
.single-case_studies .main-headline:after {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #d0d3d5;
  position: absolute;
  right: -100%;
}
.page-template-page-support header.article-header,
.page-template-page-multisteps-ebook-overview header.article-header,
.page-template-page-sectors-overview header.article-header, .page-template-page-sectors header.article-header, .single-sectors header.article-header,
.page-template-page-machines header.article-header,
.page-template-page-media-grid header.article-header,
.single-machines header.article-header,
.tax-machine_cat header.article-header,
.post-type-archive-case_studies header.article-header,
.single-case_studies header.article-header {
  position: relative;
  background-color: transparent;
  margin-bottom: 1rem;
}
.page-template-page-support header.article-header h2,
.page-template-page-multisteps-ebook-overview header.article-header h2,
.page-template-page-sectors-overview header.article-header h2,
.page-template-page-sectors header.article-header h2, .single-sectors header.article-header h2,
.page-template-page-machines header.article-header h2,
.page-template-page-media-grid header.article-header h2,
.single-machines header.article-header h2,
.tax-machine_cat header.article-header h2,
.post-type-archive-case_studies header.article-header h2,
.single-case_studies header.article-header h2 {
  color: #58595b;
  font-size: 2em;
  font-weight: 700;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
.page-template-page-support .shemesh-quote blockquote,
.page-template-page-multisteps-ebook-overview .shemesh-quote blockquote,
.page-template-page-sectors-overview .shemesh-quote blockquote,
.page-template-page-sectors .shemesh-quote blockquote, .single-sectors .shemesh-quote blockquote,
.page-template-page-machines .shemesh-quote blockquote,
.page-template-page-media-grid .shemesh-quote blockquote,
.single-machines .shemesh-quote blockquote,
.tax-machine_cat .shemesh-quote blockquote,
.post-type-archive-case_studies .shemesh-quote blockquote,
.single-case_studies .shemesh-quote blockquote {
  width: 90%;
}

.post-type-archive-case_studies .article-header h1.h3,
.post-type-archive-case_studies .article-header h2.h3,
.single-case_studies .article-header h1.h3,
.single-case_studies .article-header h2.h3 {
  color: #d51b1f;
}
.post-type-archive-case_studies .article-header h1.h3 a,
.post-type-archive-case_studies .article-header h2.h3 a,
.single-case_studies .article-header h1.h3 a,
.single-case_studies .article-header h2.h3 a {
  color: inherit;
}

ul[id*=menu-sectors-sub-nav] > li,
ul[id*=menu-machines-sub-nav] > li,
ul[id*=menu-support-sub-nav] > li,
ul[id*=menu-cosmetics-sub-nav] > li,
ul[id*=menu-chemicals-sub-nav] > li,
ul[id*=menu-food-sub-nav] > li,
ul[id*=menu-nonwovens-sub-nav] > li,
ul[id*=menu-pharma-sub-nav] > li {
  margin-bottom: 0;
  border-bottom: 1px solid #9b9da0;
}
ul[id*=menu-sectors-sub-nav] > li:hover a,
ul[id*=menu-machines-sub-nav] > li:hover a,
ul[id*=menu-support-sub-nav] > li:hover a,
ul[id*=menu-cosmetics-sub-nav] > li:hover a,
ul[id*=menu-chemicals-sub-nav] > li:hover a,
ul[id*=menu-food-sub-nav] > li:hover a,
ul[id*=menu-nonwovens-sub-nav] > li:hover a,
ul[id*=menu-pharma-sub-nav] > li:hover a {
  text-decoration: none;
  background-color: #d0d3d5;
}
ul[id*=menu-sectors-sub-nav] > li > a,
ul[id*=menu-machines-sub-nav] > li > a,
ul[id*=menu-support-sub-nav] > li > a,
ul[id*=menu-cosmetics-sub-nav] > li > a,
ul[id*=menu-chemicals-sub-nav] > li > a,
ul[id*=menu-food-sub-nav] > li > a,
ul[id*=menu-nonwovens-sub-nav] > li > a,
ul[id*=menu-pharma-sub-nav] > li > a {
  display: block;
  position: relative;
  padding-left: 2rem;
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 5px;
  padding-bottom: 5px;
}
ul[id*=menu-sectors-sub-nav] > li > a:before,
ul[id*=menu-machines-sub-nav] > li > a:before,
ul[id*=menu-support-sub-nav] > li > a:before,
ul[id*=menu-cosmetics-sub-nav] > li > a:before,
ul[id*=menu-chemicals-sub-nav] > li > a:before,
ul[id*=menu-food-sub-nav] > li > a:before,
ul[id*=menu-nonwovens-sub-nav] > li > a:before,
ul[id*=menu-pharma-sub-nav] > li > a:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 16px;
  top: 6px;
  background: transparent url("/source/ff3325ae241797330d624f06372f4699/angle-double-right.png") no-repeat left center;
}

.packaging-examples {
  margin-bottom: 1rem;
}
.packaging-examples h3 {
  position: relative;
  margin-bottom: 0;
  padding: 0.45em 0.5em;
  background-color: #00386c;
}
.packaging-examples h3:hover {
  cursor: pointer;
}
.packaging-examples h3:after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 1px;
  color: #ffffff;
  font-size: 1.5em;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.packaging-examples .packaging-example-details {
  display: none;
  padding: 1rem;
}
.packaging-examples .packaging-example-details ul {
  margin: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.packaging-examples.is-visible h3:after {
  content: "-";
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.packaging-examples.is-visible .packaging-example-details {
  display: block;
}

.brochure-download {
  margin-bottom: 1rem;
}
.brochure-download a {
  display: block;
  padding: 0.45em 0.5em;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  background-color: #9b9da0;
}

.machinery-links h3 {
  background-color: #00386c;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.machinery-links .related-links {
  border: 1rem solid #d0d3d5;
}
.machinery-links .related-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
  margin: 0;
  background-color: #d0d3d5;
}
.machinery-links .related-links h4 {
  margin: 0;
  background-color: #00386c;
  color: #ffffff;
  line-height: normal;
  padding: 0.4em;
  min-height: 70px;
  vertical-align: middle;
  font-size: 1.125em;
  text-transform: uppercase;
}
.machinery-links .related-links img {
  display: block;
  margin: 0;
}
.machinery-links .related-links a {
  display: block;
  position: relative;
  margin: 0;
  background-color: #00386c;
  text-decoration: none;
}

.full-range-link {
  display: block;
  position: relative;
  padding: 0.45em 0.5em;
  background-color: #d51b1f;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.full-range-link:after {
  content: ">";
  position: absolute;
  right: 10px;
  top: 1px;
  color: #ffffff;
  font-size: 1.5em;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.full-range-link:hover {
  color: #ffffff;
}

.global-support-contacts {
  margin-bottom: 2rem;
}

.global-support-detail h4 {
  margin: 0;
  color: #58595b;
  text-transform: capitalize;
}
.global-support-detail ul {
  margin: 0;
}
.global-support-detail a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
}

.page-template-page-sectors-overview .article-header, .page-template-page-multisteps-ebook-overview .article-header, .page-template-page-sectors .article-header, .single-sectors .article-header,
.single-machines .article-header,
.tax-machine_cat .article-header {
  padding: 0;
}
.page-template-page-sectors-overview .entry-content, .page-template-page-multisteps-ebook-overview .entry-content, .page-template-page-sectors .entry-content, .single-sectors .entry-content,
.single-machines .entry-content,
.tax-machine_cat .entry-content {
  padding: 0;
}
.page-template-page-sectors-overview .entry-content ul, .page-template-page-multisteps-ebook-overview .entry-content ul, .page-template-page-sectors .entry-content ul, .single-sectors .entry-content ul,
.single-machines .entry-content ul,
.tax-machine_cat .entry-content ul {
  margin-top: 0;
}
.page-template-page-sectors-overview .entry-content ul li, .page-template-page-multisteps-ebook-overview .entry-content ul li, .page-template-page-sectors .entry-content ul li, .single-sectors .entry-content ul li,
.single-machines .entry-content ul li,
.tax-machine_cat .entry-content ul li {
  padding-left: 1em;
  position: relative;
}
.page-template-page-sectors-overview .entry-content ul li:before, .page-template-page-multisteps-ebook-overview .entry-content ul li:before, .page-template-page-sectors .entry-content ul li:before, .single-sectors .entry-content ul li:before,
.single-machines .entry-content ul li:before,
.tax-machine_cat .entry-content ul li:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: #00386c;
  left: 0;
  top: 0.35em;
  display: block;
  position: absolute;
}
.page-template-page-sectors-overview .entry-content .related-links ul li, .page-template-page-multisteps-ebook-overview .entry-content .related-links ul li, .page-template-page-sectors .entry-content .related-links ul li, .single-sectors .entry-content .related-links ul li,
.single-machines .entry-content .related-links ul li,
.tax-machine_cat .entry-content .related-links ul li {
  padding: 0;
}
.page-template-page-sectors-overview .entry-content .related-links ul li:before, .page-template-page-multisteps-ebook-overview .entry-content .related-links ul li:before,
.page-template-page-sectors .entry-content .related-links ul li:before, .single-sectors .entry-content .related-links ul li:before,
.single-machines .entry-content .related-links ul li:before,
.tax-machine_cat .entry-content .related-links ul li:before {
  display: none;
}
.page-template-page-sectors-overview .entry-content aside, .page-template-page-multisteps-ebook-overview .entry-content aside, .page-template-page-sectors .entry-content aside, .single-sectors .entry-content aside,
.single-machines .entry-content aside,
.tax-machine_cat .entry-content aside {
  margin-top: 2rem;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors,
.page-template-page-sectors-overview .entry-content .machinery-video,
.page-template-page-sectors-overview .entry-content .tech-capabilities,
.page-template-page-sectors-overview .entry-content .gallery-carousel,
.page-template-page-sectors-overview .entry-content .related-sectors, .page-template-page-sectors .entry-content .machinery-video,
.page-template-page-sectors .entry-content .tech-capabilities,
.page-template-page-sectors .entry-content .gallery-carousel,
.page-template-page-sectors .entry-content .related-sectors, .single-sectors .entry-content .machinery-video,
.single-sectors .entry-content .tech-capabilities,
.single-sectors .entry-content .gallery-carousel,
.single-sectors .entry-content .related-sectors,
.single-machines .entry-content .machinery-video,
.single-machines .entry-content .tech-capabilities,
.single-machines .entry-content .gallery-carousel,
.single-machines .entry-content .related-sectors,
.tax-machine_cat .entry-content .machinery-video,
.tax-machine_cat .entry-content .tech-capabilities,
.tax-machine_cat .entry-content .gallery-carousel,
.tax-machine_cat .entry-content .related-sectors {
  margin-bottom: 1rem;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video h3,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities h3,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors h3,
.page-template-page-sectors-overview .entry-content .machinery-video h3,
.page-template-page-sectors-overview .entry-content .tech-capabilities h3,
.page-template-page-sectors-overview .entry-content .gallery-carousel h3,
.page-template-page-sectors-overview .entry-content .related-sectors h3,
.page-template-page-sectors .entry-content .machinery-video h3,
.page-template-page-sectors .entry-content .tech-capabilities h3,
.page-template-page-sectors .entry-content .gallery-carousel h3,
.page-template-page-sectors .entry-content .related-sectors h3, .single-sectors .entry-content .machinery-video h3,
.single-sectors .entry-content .tech-capabilities h3,
.single-sectors .entry-content .gallery-carousel h3,
.single-sectors .entry-content .related-sectors h3,
.single-machines .entry-content .machinery-video h3,
.single-machines .entry-content .tech-capabilities h3,
.single-machines .entry-content .gallery-carousel h3,
.single-machines .entry-content .related-sectors h3,
.tax-machine_cat .entry-content .machinery-video h3,
.tax-machine_cat .entry-content .tech-capabilities h3,
.tax-machine_cat .entry-content .gallery-carousel h3,
.tax-machine_cat .entry-content .related-sectors h3 {
  position: relative;
  margin-bottom: 0;
  padding: 0.45em 0.5em;
  background-color: #00386c;
  font-size: 1.125em;
  text-transform: uppercase;
}

.page-template-page-multisteps-ebook-overview .entry-content .machinery-video h3:hover,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities h3:hover,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3:hover,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors h3:hover, 
.page-template-page-sectors-overview .entry-content .machinery-video h3:hover,
.page-template-page-sectors-overview .entry-content .tech-capabilities h3:hover,
.page-template-page-sectors-overview .entry-content .gallery-carousel h3:hover,
.page-template-page-sectors-overview .entry-content .related-sectors h3:hover, 
.page-template-page-sectors .entry-content .machinery-video h3:hover,
.page-template-page-sectors .entry-content .tech-capabilities h3:hover,
.page-template-page-sectors .entry-content .gallery-carousel h3:hover,
.page-template-page-sectors .entry-content .related-sectors h3:hover, .single-sectors .entry-content .machinery-video h3:hover,
.single-sectors .entry-content .tech-capabilities h3:hover,
.single-sectors .entry-content .gallery-carousel h3:hover,
.single-sectors .entry-content .related-sectors h3:hover,
.single-machines .entry-content .machinery-video h3:hover,
.single-machines .entry-content .tech-capabilities h3:hover,
.single-machines .entry-content .gallery-carousel h3:hover,
.single-machines .entry-content .related-sectors h3:hover,
.tax-machine_cat .entry-content .machinery-video h3:hover,
.tax-machine_cat .entry-content .tech-capabilities h3:hover,
.tax-machine_cat .entry-content .gallery-carousel h3:hover,
.tax-machine_cat .entry-content .related-sectors h3:hover {
  cursor: pointer;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors h3:after,
.page-template-page-sectors-overview .entry-content .machinery-video h3:after,
.page-template-page-sectors-overview .entry-content .tech-capabilities h3:after,
.page-template-page-sectors-overview .entry-content .gallery-carousel h3:after,
.page-template-page-sectors-overview .entry-content .related-sectors h3:after,
.page-template-page-sectors .entry-content .machinery-video h3:after,
.page-template-page-sectors .entry-content .tech-capabilities h3:after,
.page-template-page-sectors .entry-content .gallery-carousel h3:after,
.page-template-page-sectors .entry-content .related-sectors h3:after, .single-sectors .entry-content .machinery-video h3:after,
.single-sectors .entry-content .tech-capabilities h3:after,
.single-sectors .entry-content .gallery-carousel h3:after,
.single-sectors .entry-content .related-sectors h3:after,
.single-machines .entry-content .machinery-video h3:after,
.single-machines .entry-content .tech-capabilities h3:after,
.single-machines .entry-content .gallery-carousel h3:after,
.single-machines .entry-content .related-sectors h3:after,
.tax-machine_cat .entry-content .machinery-video h3:after,
.tax-machine_cat .entry-content .tech-capabilities h3:after,
.tax-machine_cat .entry-content .gallery-carousel h3:after,
.tax-machine_cat .entry-content .related-sectors h3:after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 1px;
  color: #ffffff;
  font-size: 1.5em;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.page-template-page-multisteps-ebook-overview .entry-content .machinery-video .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .machinery-video .machinery-video-details,
.page-template-page-sectors-overview .entry-content .machinery-video .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .tech-capabilities .machinery-video-details,
.page-template-page-sectors-overview .entry-content .tech-capabilities .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .gallery-carousel .machinery-video-details,
.page-template-page-sectors-overview .entry-content .gallery-carousel .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .related-sectors .machinery-video-details,
.page-template-page-sectors-overview .entry-content .related-sectors .tech-capabilities-details,
.page-template-page-sectors .entry-content .machinery-video .machinery-video-details,
.page-template-page-sectors .entry-content .machinery-video .tech-capabilities-details,
.page-template-page-sectors .entry-content .tech-capabilities .machinery-video-details,
.page-template-page-sectors .entry-content .tech-capabilities .tech-capabilities-details,
.page-template-page-sectors .entry-content .gallery-carousel .machinery-video-details,
.page-template-page-sectors .entry-content .gallery-carousel .tech-capabilities-details,
.page-template-page-sectors .entry-content .related-sectors .machinery-video-details,
.page-template-page-sectors .entry-content .related-sectors .tech-capabilities-details, .single-sectors .entry-content .machinery-video .machinery-video-details,
.single-sectors .entry-content .machinery-video .tech-capabilities-details,
.single-sectors .entry-content .tech-capabilities .machinery-video-details,
.single-sectors .entry-content .tech-capabilities .tech-capabilities-details,
.single-sectors .entry-content .gallery-carousel .machinery-video-details,
.single-sectors .entry-content .gallery-carousel .tech-capabilities-details,
.single-sectors .entry-content .related-sectors .machinery-video-details,
.single-sectors .entry-content .related-sectors .tech-capabilities-details,
.single-machines .entry-content .machinery-video .machinery-video-details,
.single-machines .entry-content .machinery-video .tech-capabilities-details,
.single-machines .entry-content .tech-capabilities .machinery-video-details,
.single-machines .entry-content .tech-capabilities .tech-capabilities-details,
.single-machines .entry-content .gallery-carousel .machinery-video-details,
.single-machines .entry-content .gallery-carousel .tech-capabilities-details,
.single-machines .entry-content .related-sectors .machinery-video-details,
.single-machines .entry-content .related-sectors .tech-capabilities-details,
.tax-machine_cat .entry-content .machinery-video .machinery-video-details,
.tax-machine_cat .entry-content .machinery-video .tech-capabilities-details,
.tax-machine_cat .entry-content .tech-capabilities .machinery-video-details,
.tax-machine_cat .entry-content .tech-capabilities .tech-capabilities-details,
.tax-machine_cat .entry-content .gallery-carousel .machinery-video-details,
.tax-machine_cat .entry-content .gallery-carousel .tech-capabilities-details,
.tax-machine_cat .entry-content .related-sectors .machinery-video-details,
.tax-machine_cat .entry-content .related-sectors .tech-capabilities-details {
  display: none;
  padding: 1rem;
  background-color: #d0d3d5;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video .machinery-video-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video .tech-capabilities-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities .machinery-video-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities .tech-capabilities-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .machinery-video-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .tech-capabilities-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .machinery-video-details iframe,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .tech-capabilities-details iframe,

.page-template-page-sectors-overview .entry-content .machinery-video .machinery-video-details iframe,
.page-template-page-sectors-overview .entry-content .machinery-video .tech-capabilities-details iframe,
.page-template-page-sectors-overview .entry-content .tech-capabilities .machinery-video-details iframe,
.page-template-page-sectors-overview .entry-content .tech-capabilities .tech-capabilities-details iframe,
.page-template-page-sectors-overview .entry-content .gallery-carousel .machinery-video-details iframe,
.page-template-page-sectors-overview .entry-content .gallery-carousel .tech-capabilities-details iframe,
.page-template-page-sectors-overview .entry-content .related-sectors .machinery-video-details iframe,
.page-template-page-sectors-overview .entry-content .related-sectors .tech-capabilities-details iframe, .page-template-page-sectors .entry-content .machinery-video .machinery-video-details iframe,
.page-template-page-sectors .entry-content .machinery-video .tech-capabilities-details iframe,
.page-template-page-sectors .entry-content .tech-capabilities .machinery-video-details iframe,
.page-template-page-sectors .entry-content .tech-capabilities .tech-capabilities-details iframe,
.page-template-page-sectors .entry-content .gallery-carousel .machinery-video-details iframe,
.page-template-page-sectors .entry-content .gallery-carousel .tech-capabilities-details iframe,
.page-template-page-sectors .entry-content .related-sectors .machinery-video-details iframe,
.page-template-page-sectors .entry-content .related-sectors .tech-capabilities-details iframe, .single-sectors .entry-content .machinery-video .machinery-video-details iframe,
.single-sectors .entry-content .machinery-video .tech-capabilities-details iframe,
.single-sectors .entry-content .tech-capabilities .machinery-video-details iframe,
.single-sectors .entry-content .tech-capabilities .tech-capabilities-details iframe,
.single-sectors .entry-content .gallery-carousel .machinery-video-details iframe,
.single-sectors .entry-content .gallery-carousel .tech-capabilities-details iframe,
.single-sectors .entry-content .related-sectors .machinery-video-details iframe,
.single-sectors .entry-content .related-sectors .tech-capabilities-details iframe,
.single-machines .entry-content .machinery-video .machinery-video-details iframe,
.single-machines .entry-content .machinery-video .tech-capabilities-details iframe,
.single-machines .entry-content .tech-capabilities .machinery-video-details iframe,
.single-machines .entry-content .tech-capabilities .tech-capabilities-details iframe,
.single-machines .entry-content .gallery-carousel .machinery-video-details iframe,
.single-machines .entry-content .gallery-carousel .tech-capabilities-details iframe,
.single-machines .entry-content .related-sectors .machinery-video-details iframe,
.single-machines .entry-content .related-sectors .tech-capabilities-details iframe,
.tax-machine_cat .entry-content .machinery-video .machinery-video-details iframe,
.tax-machine_cat .entry-content .machinery-video .tech-capabilities-details iframe,
.tax-machine_cat .entry-content .tech-capabilities .machinery-video-details iframe,
.tax-machine_cat .entry-content .tech-capabilities .tech-capabilities-details iframe,
.tax-machine_cat .entry-content .gallery-carousel .machinery-video-details iframe,
.tax-machine_cat .entry-content .gallery-carousel .tech-capabilities-details iframe,
.tax-machine_cat .entry-content .related-sectors .machinery-video-details iframe,
.tax-machine_cat .entry-content .related-sectors .tech-capabilities-details iframe {
  display: block;
  margin: 0 auto;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video.is-visible h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities.is-visible h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel.is-visible h3:after,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors.is-visible h3:after,
.page-template-page-sectors-overview .entry-content .machinery-video.is-visible h3:after,
.page-template-page-sectors-overview .entry-content .tech-capabilities.is-visible h3:after,
.page-template-page-sectors-overview .entry-content .gallery-carousel.is-visible h3:after,
.page-template-page-sectors-overview .entry-content .related-sectors.is-visible h3:after, .page-template-page-sectors .entry-content .machinery-video.is-visible h3:after,
.page-template-page-sectors .entry-content .tech-capabilities.is-visible h3:after,
.page-template-page-sectors .entry-content .gallery-carousel.is-visible h3:after,
.page-template-page-sectors .entry-content .related-sectors.is-visible h3:after, .single-sectors .entry-content .machinery-video.is-visible h3:after,
.single-sectors .entry-content .tech-capabilities.is-visible h3:after,
.single-sectors .entry-content .gallery-carousel.is-visible h3:after,
.single-sectors .entry-content .related-sectors.is-visible h3:after,
.single-machines .entry-content .machinery-video.is-visible h3:after,
.single-machines .entry-content .tech-capabilities.is-visible h3:after,
.single-machines .entry-content .gallery-carousel.is-visible h3:after,
.single-machines .entry-content .related-sectors.is-visible h3:after,
.tax-machine_cat .entry-content .machinery-video.is-visible h3:after,
.tax-machine_cat .entry-content .tech-capabilities.is-visible h3:after,
.tax-machine_cat .entry-content .gallery-carousel.is-visible h3:after,
.tax-machine_cat .entry-content .related-sectors.is-visible h3:after {
  content: "-";
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video.is-visible .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video.is-visible .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video.is-visible .gallery,
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video.is-visible .rel-sectors-details,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities.is-visible .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities.is-visible .gallery,
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel.is-visible .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel.is-visible .gallery,
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors.is-visible .machinery-video-details,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors.is-visible .tech-capabilities-details,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors.is-visible .gallery,
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors.is-visible .rel-sectors-details,
.page-template-page-sectors-overview .entry-content .machinery-video.is-visible .machinery-video-details,
.page-template-page-sectors-overview .entry-content .machinery-video.is-visible .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .machinery-video.is-visible .gallery,
.page-template-page-sectors-overview .entry-content .machinery-video.is-visible .rel-sectors-details,
.page-template-page-sectors-overview .entry-content .tech-capabilities.is-visible .machinery-video-details,
.page-template-page-sectors-overview .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .tech-capabilities.is-visible .gallery,
.page-template-page-sectors-overview .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.page-template-page-sectors-overview .entry-content .gallery-carousel.is-visible .machinery-video-details,
.page-template-page-sectors-overview .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .gallery-carousel.is-visible .gallery,
.page-template-page-sectors-overview .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.page-template-page-sectors-overview .entry-content .related-sectors.is-visible .machinery-video-details,
.page-template-page-sectors-overview .entry-content .related-sectors.is-visible .tech-capabilities-details,
.page-template-page-sectors-overview .entry-content .related-sectors.is-visible .gallery,
.page-template-page-sectors-overview .entry-content .related-sectors.is-visible .rel-sectors-details, .page-template-page-sectors .entry-content .machinery-video.is-visible .machinery-video-details,
.page-template-page-sectors .entry-content .machinery-video.is-visible .tech-capabilities-details,
.page-template-page-sectors .entry-content .machinery-video.is-visible .gallery,
.page-template-page-sectors .entry-content .machinery-video.is-visible .rel-sectors-details,
.page-template-page-sectors .entry-content .tech-capabilities.is-visible .machinery-video-details,
.page-template-page-sectors .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.page-template-page-sectors .entry-content .tech-capabilities.is-visible .gallery,
.page-template-page-sectors .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.page-template-page-sectors .entry-content .gallery-carousel.is-visible .machinery-video-details,
.page-template-page-sectors .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.page-template-page-sectors .entry-content .gallery-carousel.is-visible .gallery,
.page-template-page-sectors .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.page-template-page-sectors .entry-content .related-sectors.is-visible .machinery-video-details,
.page-template-page-sectors .entry-content .related-sectors.is-visible .tech-capabilities-details,
.page-template-page-sectors .entry-content .related-sectors.is-visible .gallery,
.page-template-page-sectors .entry-content .related-sectors.is-visible .rel-sectors-details, .single-sectors .entry-content .machinery-video.is-visible .machinery-video-details,
.single-sectors .entry-content .machinery-video.is-visible .tech-capabilities-details,
.single-sectors .entry-content .machinery-video.is-visible .gallery,
.single-sectors .entry-content .machinery-video.is-visible .rel-sectors-details,
.single-sectors .entry-content .tech-capabilities.is-visible .machinery-video-details,
.single-sectors .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.single-sectors .entry-content .tech-capabilities.is-visible .gallery,
.single-sectors .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.single-sectors .entry-content .gallery-carousel.is-visible .machinery-video-details,
.single-sectors .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.single-sectors .entry-content .gallery-carousel.is-visible .gallery,
.single-sectors .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.single-sectors .entry-content .related-sectors.is-visible .machinery-video-details,
.single-sectors .entry-content .related-sectors.is-visible .tech-capabilities-details,
.single-sectors .entry-content .related-sectors.is-visible .gallery,
.single-sectors .entry-content .related-sectors.is-visible .rel-sectors-details,
.single-machines .entry-content .machinery-video.is-visible .machinery-video-details,
.single-machines .entry-content .machinery-video.is-visible .tech-capabilities-details,
.single-machines .entry-content .machinery-video.is-visible .gallery,
.single-machines .entry-content .machinery-video.is-visible .rel-sectors-details,
.single-machines .entry-content .tech-capabilities.is-visible .machinery-video-details,
.single-machines .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.single-machines .entry-content .tech-capabilities.is-visible .gallery,
.single-machines .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.single-machines .entry-content .gallery-carousel.is-visible .machinery-video-details,
.single-machines .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.single-machines .entry-content .gallery-carousel.is-visible .gallery,
.single-machines .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.single-machines .entry-content .related-sectors.is-visible .machinery-video-details,
.single-machines .entry-content .related-sectors.is-visible .tech-capabilities-details,
.single-machines .entry-content .related-sectors.is-visible .gallery,
.single-machines .entry-content .related-sectors.is-visible .rel-sectors-details,
.tax-machine_cat .entry-content .machinery-video.is-visible .machinery-video-details,
.tax-machine_cat .entry-content .machinery-video.is-visible .tech-capabilities-details,
.tax-machine_cat .entry-content .machinery-video.is-visible .gallery,
.tax-machine_cat .entry-content .machinery-video.is-visible .rel-sectors-details,
.tax-machine_cat .entry-content .tech-capabilities.is-visible .machinery-video-details,
.tax-machine_cat .entry-content .tech-capabilities.is-visible .tech-capabilities-details,
.tax-machine_cat .entry-content .tech-capabilities.is-visible .gallery,
.tax-machine_cat .entry-content .tech-capabilities.is-visible .rel-sectors-details,
.tax-machine_cat .entry-content .gallery-carousel.is-visible .machinery-video-details,
.tax-machine_cat .entry-content .gallery-carousel.is-visible .tech-capabilities-details,
.tax-machine_cat .entry-content .gallery-carousel.is-visible .gallery,
.tax-machine_cat .entry-content .gallery-carousel.is-visible .rel-sectors-details,
.tax-machine_cat .entry-content .related-sectors.is-visible .machinery-video-details,
.tax-machine_cat .entry-content .related-sectors.is-visible .tech-capabilities-details,
.tax-machine_cat .entry-content .related-sectors.is-visible .gallery,
.tax-machine_cat .entry-content .related-sectors.is-visible .rel-sectors-details {
  display: block;
}
.page-template-page-multisteps-ebook-overview .entry-content .tech-capabilities h3, .page-template-page-sectors-overview .entry-content .tech-capabilities h3, .page-template-page-sectors .entry-content .tech-capabilities h3, .single-sectors .entry-content .tech-capabilities h3,
.single-machines .entry-content .tech-capabilities h3,
.tax-machine_cat .entry-content .tech-capabilities h3 {
  background-color: #d51b1f;
}
.page-template-page-multisteps-ebook-overview .entry-content .machinery-video p,
.page-template-page-sectors-overview .entry-content .machinery-video p, .page-template-page-sectors .entry-content .machinery-video p, .single-sectors .entry-content .machinery-video p,
.single-machines .entry-content .machinery-video p,
.tax-machine_cat .entry-content .machinery-video p {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3,
.page-template-page-sectors-overview .entry-content .gallery-carousel h3, .page-template-page-sectors .entry-content .gallery-carousel h3, .single-sectors .entry-content .gallery-carousel h3,
.single-machines .entry-content .gallery-carousel h3,
.tax-machine_cat .entry-content .gallery-carousel h3 {
  background-color: #d51b1f;
}
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3:before, .page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel h3:after,
.page-template-page-sectors-overview .entry-content .gallery-carousel h3:before, .page-template-page-sectors-overview .entry-content .gallery-carousel h3:after, .page-template-page-sectors .entry-content .gallery-carousel h3:before, .page-template-page-sectors .entry-content .gallery-carousel h3:after, .single-sectors .entry-content .gallery-carousel h3:before, .single-sectors .entry-content .gallery-carousel h3:after,
.single-machines .entry-content .gallery-carousel h3:before,
.single-machines .entry-content .gallery-carousel h3:after,
.tax-machine_cat .entry-content .gallery-carousel h3:before,
.tax-machine_cat .entry-content .gallery-carousel h3:after {
  display: none;
}
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .gallery,
.page-template-page-sectors-overview .entry-content .gallery-carousel .gallery, .page-template-page-sectors .entry-content .gallery-carousel .gallery, .single-sectors .entry-content .gallery-carousel .gallery,
.single-machines .entry-content .gallery-carousel .gallery,
.tax-machine_cat .entry-content .gallery-carousel .gallery {
  padding: 1rem;
  background-color: #d0d3d5;
}
.page-template-page-multisteps-ebook-overview .entry-content .gallery-carousel .gallery .gallery-cell img,
.page-template-page-sectors-overview .entry-content .gallery-carousel .gallery .gallery-cell img, .page-template-page-sectors .entry-content .gallery-carousel .gallery .gallery-cell img, .single-sectors .entry-content .gallery-carousel .gallery .gallery-cell img,
.single-machines .entry-content .gallery-carousel .gallery .gallery-cell img,
.tax-machine_cat .entry-content .gallery-carousel .gallery .gallery-cell img {
  display: block;
  width: 100%;
  margin: 0;
  border-left: 4px solid #d0d3d5;
  border-right: 4px solid #d0d3d5;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors h3:after,
.page-template-page-sectors-overview .entry-content .related-sectors h3:after, .page-template-page-sectors .entry-content .related-sectors h3:after, .single-sectors .entry-content .related-sectors h3:after,
.single-machines .entry-content .related-sectors h3:after,
.tax-machine_cat .entry-content .related-sectors h3:after {
  display: none;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details, .single-sectors .entry-content .related-sectors .rel-sectors-details,
.single-machines .entry-content .related-sectors .rel-sectors-details,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details {
  padding: 1rem;
  background-color: #d0d3d5;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details:after,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details:after, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details:after, .single-sectors .entry-content .related-sectors .rel-sectors-details:after,
.single-machines .entry-content .related-sectors .rel-sectors-details:after,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details:after {
  content: "";
  display: block;
  clear: both;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item, .single-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item,
.single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details .rel-sector-item {
  width: 100%;
  float: left;
  margin-bottom: 1rem;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item img,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item img, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item img, .single-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item img,
.single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item img,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details .rel-sector-item img {
  display: block;
  margin: 0;
  margin-bottom: 0.3rem;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4, .single-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4,
.single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details .rel-sector-item h4 {
  margin: 0;
  color: #00386c;
  font-size: 1.125em;
  text-transform: uppercase;
}
.page-template-page-multisteps-ebook-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item a,
.page-template-page-sectors-overview .entry-content .related-sectors .rel-sectors-details .rel-sector-item a, .page-template-page-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item a, .single-sectors .entry-content .related-sectors .rel-sectors-details .rel-sector-item a,
.single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item a,
.tax-machine_cat .entry-content .related-sectors .rel-sectors-details .rel-sector-item a {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
}

.post-template-default .entry-content ul {
  margin-top: 0;
}
.post-template-default .entry-content ul li {
  padding-left: 1em;
  position: relative;
}
.post-template-default .entry-content ul li:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: #00386c;
  left: 0;
  top: 0.35em;
  display: block;
  position: absolute;
}

.tax-machine_cat main ul li,
.page-template-page-machines main ul li {
  padding-left: 1em;
  position: relative;
}
.tax-machine_cat main ul li:before,
.page-template-page-machines main ul li:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: #00386c;
  left: 0;
  top: 0.35em;
  display: block;
  position: absolute;
}
.tax-machine_cat aside,
.page-template-page-machines aside {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 1rem;
}
.tax-machine_cat aside.grid-wrapper,
.page-template-page-machines aside.grid-wrapper {
  padding-bottom: 0 !important;
  background-color: #d0d3d5;
}
.tax-machine_cat aside:after,
.page-template-page-machines aside:after {
  content: "";
  display: block;
  clear: both;
}
.tax-machine_cat aside div,
.page-template-page-machines aside div {
  padding: 0;
}
.tax-machine_cat aside div a,
.page-template-page-machines aside div a {
  display: block;
  text-decoration: none;
}
.tax-machine_cat aside div h3,
.page-template-page-machines aside div h3 {
  margin: 0;
  background-color: #00386c;
  color: #ffffff;
  line-height: normal;
  padding: 0.4em;
  min-height: 80px;
}
.tax-machine_cat aside div img,
.page-template-page-machines aside div img {
  display: block;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.tax-machine_cat .machinery-links h3 {
  margin-bottom: 0;
  font-size: 1.125em;
  text-transform: uppercase;
}
.tax-machine_cat .machinery-links aside {
  margin-top: 0;
}

.page-template-page-machines .machines-filters {
  margin-bottom: 1rem;
}
.page-template-page-machines .options {
  margin-bottom: 2rem;
}
.page-template-page-machines .option-set {
  position: relative;
  margin-bottom: 1rem;
}
.page-template-page-machines .option-set.is-active h3 {
  color: #58595b;
  background-color: #d0d3d5;
}
.page-template-page-machines .option-set.is-active .option-set__header {
  border-bottom: 0;
}
.page-template-page-machines .option-set.is-active .option-set__detail {
  display: block;
}
.page-template-page-machines .option-set .option-set__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #002144;
}
.page-template-page-machines .option-set .option-set__header h4 {
  flex: 1 0 160px;
  align-self: flex-end;
  margin: 0;
  padding: 0.5rem;
  color: #00386c;
  background-color: transparent;
  min-height: auto;
  font-size: 1.125em;
  text-transform: uppercase;
}
.page-template-page-machines .option-set .option-set__header ul {
  flex: 0;
  margin: 0 1.5rem;
  flex-basis: 72%;
  margin-left: auto;
}
.page-template-page-machines .option-set .option-set__header ul li:before {
  display: none;
}
.page-template-page-machines .option-set .tag {
  display: inline-block;
  border-radius: 3px;
  text-align: left;
  font-size: 0.8rem;
  padding: 0.2rem;
  padding-right: 1.4rem;
  color: #002144;
  border: 1px solid #002144;
  background-color: #ffffff;
  position: relative;
  margin: 0 0.25rem 0.25rem 0;
}
.page-template-page-machines .option-set .tag .tag__close {
  position: absolute;
  top: 0.4rem;
  right: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  padding: 0;
  line-height: 100%;
  text-align: center;
  font-size: 0.9rem;
  background-color: #002144;
}
.page-template-page-machines .option-set .change-filters {
  position: relative;
  border: 0;
  color: #ffffff;
  background-color: #d51b1f;
  padding: 0.5em 1.4em;
  padding-right: 3.5em;
  font-size: 1rem;
  font-weight: 600;
}
.page-template-page-machines .option-set .change-filters:after {
  content: "+";
  display: block;
  position: absolute;
  right: 0.3em;
  top: 0;
  font-size: 2.1em;
  color: #fff;
  line-height: 1;
}
.page-template-page-machines .option-set .option-set__detail {
  display: none;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.5rem;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  background-color: #d0d3d5;
}
.page-template-page-machines .option-set .option-set__detail label {
  display: block;
}
.page-template-page-machines .option-set .option-set__detail label [type=checkbox] {
  margin-right: 0.5rem;
}

.machines-item {
  width: 100%;
  margin: 0;
  margin-bottom: 1rem;
}
.machines-item h3 {
  margin: 0;
  background-color: #00386c;
  color: #ffffff;
  line-height: normal;
  padding: 0.4em;
  min-height: 80px;
  vertical-align: middle;
  font-size: 1.125em;
  text-transform: uppercase;
}
.machines-item img {
  display: block;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.section-title {
  margin-top: 0;
  font-size: 2rem;
}

#breadcrumbs {
  margin: 0;
  padding: 1rem 0;
  text-transform: uppercase;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
#breadcrumbs .breadcrumb-separator {
  color: red;
}
#breadcrumbs a {
  text-decoration: none;
  color: #58595b;
}
#breadcrumbs .breadcrumb_last {
  font-weight: 700;
  color: #58595b;
}

.page-template-page-about-clients .clients-list li {
  float: left;
  width: 40%;
  margin-bottom: 1.5rem;
}
.page-template-page-about-clients .clients-list li:not(:nth-of-type(2n)) {
  margin-right: 10%;
}
.page-template-page-about-clients .clients-list li a {
  text-decoration: none;
  color: #58595b;
}
.page-template-page-about-clients .clients-list li img {
  display: block;
  width: 100%;
}
.page-template-page-about-clients .clients-list li h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #58595b;
  font-weight: normal;
  text-align: center;
  font-size: 1.125em;
}

.page-template-page-about-testimonials .main-content {
  margin-top: 1rem;
}
.page-template-page-about-testimonials .testimonials-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #9b9da0;
  padding-bottom: 10px;
}
.page-template-page-about-testimonials .testimonials-list li img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.page-template-page-about-testimonials .testimonials-list li cite {
  font-weight: bold;
}

.page-template-page-publications .publication-filters {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.page-template-page-publications .publication-filters li {
  display: inline-block;
  text-transform: uppercase;
  color: #002144;
  padding: 6px;
  line-height: 1;
}
.page-template-page-publications .publication-filters li:hover {
  cursor: pointer;
}
.page-template-page-publications .publication-filters li.is-active {
  color: #ffffff;
  background-color: #002144;
}
.page-template-page-publications .publications-list li {
  margin-bottom: 10px;
}
.page-template-page-publications .publications-list li a {
  display: block;
  text-decoration: none;
}
.page-template-page-publications .publications-list li.faded {
  opacity: 0.3;
}
.page-template-page-publications .publications-list li img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  border: 2px solid #9b9da0;
}
.page-template-page-publications .publications-list li h3 {
  color: #58595b;
  font-weight: normal;
  text-transform: normal;
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.2;
}

.post-type-archive-case_studies .case-study {
  padding-left: 0 !important;
  padding-bottom: 10px;
  border-bottom: 1px solid #9b9da0 !important;
  margin-bottom: 10px;
}
.post-type-archive-case_studies .case-study header h1 {
  margin-top: 0;
}
.post-type-archive-case_studies .case-study img {
  display: block;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.single-case_studies .case-study header {
  border-bottom: 0 none;
}
.single-case_studies .case-study footer {
  padding-top: 0;
}
.single-case_studies .gallery {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #9b9da0;
}

form.sa-support-form {
  padding: 0;
}
form.sa-support-form input,
form.sa-support-form textarea {
  color: #9b9da0;
  border: 0 none;
  background-color: #d0d3d5;
}
form.sa-support-form [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  border: 0 none;
  background-color: #00386c;
  width: 9em;
  line-height: 1.9;
  font-weight: bold;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
form.sa-support-form h2 {
  margin-top: 0;
  color: #9b9da0;
}

.home .gallery-cell img {
  display: block;
  width: 100%;
  margin: 0;
  border-left: 4px solid white;
  border-right: 4px solid white;
}

.video-brochure .inner h2 {
  padding-top: 1em;
}

header.article-header {
  margin-bottom: 1rem;
}

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

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  .header .header-supp .nav-supp {
    width: auto;
  }
  .header .header-supp .nav-supp a,
  .header .header-supp .nav-supp button,
  .header .header-supp .nav-supp ul {
    font-size: 1rem;
  }
  .header .header-supp .nav-supp ul.social-links {
    width: 110px;
  }
  .header .header-supp .nav-supp ul.social-links li:nth-of-type(3), .header .header-supp .nav-supp ul.social-links li:nth-of-type(4) {
    display: block;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  .tax-machine_cat aside div {
    float: left;
    width: 49%;
    margin-right: 2%;
  }
  .tax-machine_cat aside div:nth-of-type(2n) {
    margin-right: 0;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item {
    width: 49%;
    float: left;
    margin-right: 2%;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .inner-sub .inner.wrap {
    display: flex;
    justify-content: space-between;
  }
  .inner-sub .inner.wrap .sub-pic,
  .inner-sub .inner.wrap .brochure {
    flex: 0 0 40%;
  }
  .inner-sub .inner.wrap .sub-pic {
    margin-right: 2rem;
  }
  #machines-container {
    padding: 1% !important;
    background-color: #d0d3d5;
  }
  #machines-container .machines-item {
    width: 47%;
    margin: 1%;
  }
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  .page-template-page-about-testimonials .testimonials-list li:after {
    content: "";
    display: table;
    clear: both;
  }
  .page-template-page-about-testimonials .testimonials-list li img {
    display: block;
    float: left;
    width: 23%;
    margin-right: 2%;
    margin-bottom: 0;
  }
  .page-template-page-about-testimonials .testimonials-list li p {
    float: left;
    width: 75%;
  }
  .page-template-page-publications .publications-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .page-template-page-publications .publications-list li {
    float: left;
    width: 20%;
  }
  .page-template-page-publications .publications-list li:not(:nth-of-type(4n)) {
    margin-right: 6%;
  }
}
/*********************
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
  *********************/
  .home [id*=metaslider_container] .caption-wrap {
    background: transparent;
    color: #9b9da0;
    font-size: 28px;
    width: 30%;
    padding-right: 2%;
    top: 4em;
    bottom: auto;
    text-align: left;
  }
  .home [id*=metaslider_container] .caption-wrap span {
    font-size: 19px;
    display: block;
    text-transform: none;
  }
  .home .service-links section {
    float: left;
    width: 48%;
    margin: 0 1% 0.5em;
  }
  .home .entry-content blockquote {
    width: 82.95081967%;
    font-size: 22px;
  }
  .home .entry-content blockquote::before {
    left: -46px;
    -webkit-transform: none;
    transform: none;
  }
  .home .news-feed li,
  .home .events-feed li {
    float: left;
    width: 48%;
    margin: 0 1% 1.5em;
  }
  .home .news-feed li:first-child, .home .news-feed li:nth-child(3),
  .home .events-feed li:first-child,
  .home .events-feed li:nth-child(3) {
    clear: left;
  }
  .page-template-page-about .sub-content .section-content {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .page-template-page-about .main-content {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  HEADER STYLES
  *********************/
  #logo {
    float: left;
    margin: 0.75em 0;
  }
  nav {
    float: right;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  button.mobile-toggle {
    display: none !important;
  }
  nav.top-level-navigation {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    max-width: 100%;
    background-color: transparent;
    z-index: auto;
    height: auto;
    overflow: visible;
    border-right: 0 none;
  }
  nav.top-level-navigation .mobile-nav-header {
    display: none;
  }
  nav.top-level-navigation > ul {
    margin: 0;
    background-color: #ffffff;
  }
  nav.top-level-navigation > ul > li {
    float: left;
    position: relative;
    border-bottom: 0 none;
    margin-right: 1rem;
  }
  nav.top-level-navigation > ul > li.menu-item-has-children > a span {
    display: none;
  }
  nav.top-level-navigation > ul > li > a {
    padding: 3.2rem 0;
    border-bottom: 0 none;
  }
  nav.top-level-navigation > ul > li:hover > ul {
    display: block;
    top: auto;
    visibility: visible;
  }
  nav.top-level-navigation > ul > li > ul {
    margin-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    background-color: #ffffff;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    left: 50%;
  }
  nav.top-level-navigation > ul > li > ul:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #d51b1f transparent;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  nav.top-level-navigation > ul > li > ul > li {
    margin: 0;
    border-bottom: 1px solid #fff;
    background-color: #00386c;
  }
  nav.top-level-navigation > ul > li > ul > li:first-of-type a {
    border-top: 0 none;
  }
  nav.top-level-navigation > ul > li > ul > li:last-of-type a {
    border-bottom: 0 none;
  }
  nav.top-level-navigation > ul > li > ul > li.menu-item-has-children > a span {
    display: none;
  }
  nav.top-level-navigation > ul > li > ul > li > a {
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    border-right: 0;
    border-bottom: 0 none;
    display: block;
    width: 180px;
    text-transform: uppercase;
    color: #fff;
  }
  nav.top-level-navigation > ul > li > ul > li:hover {
    background-color: #d51b1f;
  }
  nav.top-level-navigation > ul > li > ul > li:hover a {
    color: #fff;
  }
  nav.top-level-navigation > ul > li > ul > li:hover > ul {
    display: block;
    top: 0;
    visibility: visible;
  }
  nav.top-level-navigation > ul > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #d51b1f;
  }
  nav.top-level-navigation > ul > li > ul > li > ul > li {
    background-color: #767678;
  }
  nav.top-level-navigation > ul > li > ul > li > ul > li > a {
    width: 180px;
    color: #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    line-height: 1.3;
  }
  nav.top-level-navigation > ul > li > ul > li > ul > li:last-of-type a {
    border-bottom: 0 none;
  }
  nav.top-level-navigation > ul > li > ul > li > ul > li:hover a {
    background-color: #b8babc;
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 0;
  }
  .widgettitle {
    margin-top: 0;
    color: #00386c;
    text-transform: uppercase;
    font-size: 1.125em;
  }
  .widget {
    margin: 0 0 1rem 0;
  }
  .widget ul li {
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
  .page-template-page-support main,
  .page-template-page-multisteps-ebook-overview main,
  .page-template-page-sectors-overview main,
  .page-template-page-sectors main, .single-sectors main,
  .page-template-page-machines main,
  .single-machines main,
  .tax-machine_cat main,
  .page-template-page-support main {
    float: right;
    padding-right: 0;
    padding-left: 0.75em;
  }
  .page-template-page-support .sidebar,
  .page-template-page-multisteps-ebook-overview .sidebar,
  .page-template-page-sectors-overview .sidebar,
  .page-template-page-sectors .sidebar, .single-sectors .sidebar,
  .page-template-page-machines .sidebar,
  .single-machines .sidebar,
  .tax-machine_cat .sidebar,
  .page-template-page-support .sidebar {
    float: left;
    margin-top: 3.5em;
  }
  .page-template-page-support .sidebar .widget_nav_menu,
  .page-template-page-multisteps-ebook-overview .sidebar .widget_nav_menu,
  .page-template-page-sectors-overview .sidebar .widget_nav_menu, .page-template-page-sectors .sidebar .widget_nav_menu, .single-sectors .sidebar .widget_nav_menu,
  .page-template-page-machines .sidebar .widget_nav_menu,
  .single-machines .sidebar .widget_nav_menu,
  .tax-machine_cat .sidebar .widget_nav_menu,
  .page-template-page-support .sidebar .widget_nav_menu {
    padding-left: 0;
  }
  .page-template-page-support .enquiry-contacts:after,
  .page-template-page-multisteps-ebook-overview .enquiry-contacts:after,
  .page-template-page-sectors-overview .enquiry-contacts:after, .page-template-page-sectors .enquiry-contacts:after, .single-sectors .enquiry-contacts:after,
  .page-template-page-machines .enquiry-contacts:after,
  .single-machines .enquiry-contacts:after,
  .tax-machine_cat .enquiry-contacts:after,
  .page-template-page-support .enquiry-contacts:after {
    clear: both;
    content: "";
    display: table;
  }
  .page-template-page-support .enquiry-contacts div,
  .page-template-page-multisteps-ebook-overview .enquiry-contacts div,
  .page-template-page-sectors-overview .enquiry-contacts div, .page-template-page-sectors .enquiry-contacts div, .single-sectors .enquiry-contacts div,
  .page-template-page-machines .enquiry-contacts div,
  .single-machines .enquiry-contacts div,
  .tax-machine_cat .enquiry-contacts div,
  .page-template-page-support .enquiry-contacts div {
    float: left;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 1rem;
  }
  .page-template-page-support .enquiry-contacts div:nth-of-type(2n),
  .page-template-page-multisteps-ebook-overview .enquiry-contacts div:nth-of-type(2n),
  .page-template-page-sectors-overview .enquiry-contacts div:nth-of-type(2n), .page-template-page-sectors .enquiry-contacts div:nth-of-type(2n), .single-sectors .enquiry-contacts div:nth-of-type(2n),
  .page-template-page-machines .enquiry-contacts div:nth-of-type(2n),
  .single-machines .enquiry-contacts div:nth-of-type(2n),
  .tax-machine_cat .enquiry-contacts div:nth-of-type(2n),
  .page-template-page-support .enquiry-contacts div:nth-of-type(2n) {
    margin-right: 0;
  }
  .page-template-page-support .enquiry-contacts div.repairs,
  .page-template-page-multisteps-ebook-overview .enquiry-contacts div.repairs,
  .page-template-page-sectors-overview .enquiry-contacts div.repairs, .page-template-page-sectors .enquiry-contacts div.repairs, .single-sectors .enquiry-contacts div.repairs,
  .page-template-page-machines .enquiry-contacts div.repairs,
  .single-machines .enquiry-contacts div.repairs,
  .tax-machine_cat .enquiry-contacts div.repairs,
  .page-template-page-support .enquiry-contacts div.repairs {
    clear: left;
  }
  .page-template-page-multisteps-ebook-overview .sidebar ,.page-template-page-sectors-overview .sidebar, .page-template-page-sectors .sidebar, .single-sectors .sidebar {
    margin-top: 2em;
  }
  .global-support-contacts .support-detail-wrapper:after {
    clear: both;
    content: "";
    display: table;
  }
  .global-support-contacts .global-support-detail {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 1rem;
  }
  .global-support-contacts .global-support-detail:nth-of-type(2n) {
    margin-right: 0;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item {
    width: 32%;
    float: left;
    margin-right: 2%;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item:nth-of-type(2n) {
    margin-right: 2%;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .single-machines .entry-content .related-sectors .rel-sectors-details .rel-sector-item:nth-of-type(4n) {
    clear: both;
  }
  #machines-container {
    padding: 1% !important;
    background-color: #d0d3d5;
  }
  #machines-container .machines-item {
    width: 30.6%;
    margin: 1%;
  }
  .page-template-page-about-clients .clients-list li {
    float: left;
    width: 20%;
  }
  .page-template-page-about-clients .clients-list li:not(:nth-of-type(2n)) {
    margin-right: 6%;
  }
  .post-type-archive-case_studies .case-study {
    padding-bottom: 10px;
    border-bottom: 1px solid #9b9da0 !important;
    margin-bottom: 10px;
    padding-left: 32.5% !important;
  }
  .post-type-archive-case_studies .case-study header h1 {
    margin-top: 0;
  }
  .post-type-archive-case_studies .case-study img {
    display: block;
    float: left !important;
    width: 45% !important;
    margin-left: -48% !important;
  }
  form.sa-support-form .columns-wrapper,
  form .columns-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  form.sa-support-form .columns-wrapper .col-1,
  form.sa-support-form .columns-wrapper .col-2,
  form .columns-wrapper .col-1,
  form .columns-wrapper .col-2 {
    flex: 0 1 50%;
  }
  form.sa-support-form small,
  form small {
    clear: both;
    display: block;
  }
  form.sa-support-form small p,
  form small p {
    margin: 0;
  }
  .accreditations-partners .partner-logos,
  .accreditations-partners .accreditation-logos {
    margin: 1.5em 0 3em;
  }
  .accreditations-partners .partner-logos ul,
  .accreditations-partners .accreditation-logos ul {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .accreditations-partners .partner-logos ul li,
  .accreditations-partners .accreditation-logos ul li {
    float: left;
    width: 23.5%;
    margin-left: 0;
    margin-right: 2%;
  }
  .accreditations-partners .partner-logos ul li:nth-of-type(4n),
  .accreditations-partners .accreditation-logos ul li:nth-of-type(4n) {
    margin-right: 0;
  }
  .accreditations-partners .partner-logos ul li:nth-of-type(4n + 1),
  .accreditations-partners .accreditation-logos ul li:nth-of-type(4n + 1) {
    clear: left;
  }
  .accreditations-partners .partner-logos h2,
  .accreditations-partners .accreditation-logos h2 {
    line-height: 20px;
    font-size: 23px;
  }
}
/*********************
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: 1020px) {
  /******************************************************************
  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.

  ******************************************************************/
  /********************
  WORDPRESS BODY CLASSES
  style a page via class
  ********************/
  .home [id*=metaslider_container] .caption-wrap {
    font-size: 36px;
    top: 5em;
  }
  .home [id*=metaslider_container] .caption-wrap span {
    font-size: 24px;
  }
  .home .entry-content blockquote {
    margin: 32px auto 0;
  }
  .home .service-links section {
    width: 18.1147541%;
    margin-left: 2.295081967%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .home .service-links section:first-of-type {
    margin-left: 1px;
  }
  .home .news-feed ul,
  .home .events-feed ul,
  .home .accreditation-logos ul,
  .home .partner-logos ul {
    width: 82.95081967%;
    margin: 0 auto;
  }
  .home .news-feed ul li,
  .home .events-feed ul li,
  .home .accreditation-logos ul li,
  .home .partner-logos ul li {
    width: 22.92490119%;
    margin-left: 2.766798419%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .home .news-feed ul li:first-child,
  .home .events-feed ul li:first-child,
  .home .accreditation-logos ul li:first-child,
  .home .partner-logos ul li:first-child {
    margin-left: 0;
    clear: none;
  }
  .home .news-feed ul li:nth-child(3),
  .home .events-feed ul li:nth-child(3),
  .home .accreditation-logos ul li:nth-child(3),
  .home .partner-logos ul li:nth-child(3) {
    clear: none;
  }
  .home .news-feed .inner {
    padding-bottom: 2.5em;
  }
  .home .world-map p.intro {
    width: 82.95081967%;
    margin: 32px auto -64px;
  }
  .page-template-page-about .inner-sub .wrap {
    width: 60%;
  }
  .shemesh-quote blockquote {
    width: 29%;
  }
  .footer {
    /*
    	#sidebar-address {
    		width: 596px;
    		float: left;
    		margin: 2em 0 1.5em;
    		.widget_text {
    			width: 284px;
    			float: left;
    			margin: 0 0 0 28px;
    			padding: 0;
    			&#text-4,
    			&:first-of-type {
    				margin-left: 0;
    			}
    			.vcard h3 {
    				margin-top: 0;
    			}
    		}
    	}
    */
  }
  .footer .small-print {
    clear: both;
  }
  .page-template-page-support main {
    float: right;
    padding-right: 0;
    padding-left: 0.75em;
  }
  .page-template-page-support .sidebar {
    float: left;
    margin-top: 3.5em;
  }
  .page-template-page-support .enquiry-contacts div {
    width: 24%;
    margin-right: 1.3%;
  }
  .page-template-page-support .enquiry-contacts div:nth-of-type(2n) {
    margin-right: 1.3%;
  }
  .page-template-page-support .enquiry-contacts div:last-of-type {
    margin-right: 0;
  }
  .page-template-page-support .enquiry-contacts div.repairs {
    clear: none;
  }
  .global-support-contacts .support-detail-wrapper:after {
    clear: both;
    content: "";
    display: table;
  }
  .global-support-contacts .global-support-detail {
    float: left;
    width: 30%;
    margin-right: 3.3%;
    margin-bottom: 1rem;
    min-height: 160px;
  }
  .global-support-contacts .global-support-detail:nth-of-type(2n) {
    margin-right: 3.3%;
  }
  .global-support-contacts .global-support-detail:nth-of-type(3n) {
    margin-right: 0;
  }
  .tax-machine_cat aside div {
    float: left;
    width: 32%;
    margin-right: 2%;
  }
  .tax-machine_cat aside div:nth-of-type(2n) {
    margin-right: 2%;
  }
  .tax-machine_cat aside div:nth-of-type(3n) {
    margin-right: 0;
  }
  .page-template-page-support .enquiry-contacts p:first-of-type {
    min-height: 112px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

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

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

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url("img/test.png") no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url("img/test@2x.png") no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
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;
    -webkit-filter: 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;
  }
}
/*********************
MIKE'S DIAGRAM
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
.diagram ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.diagram ul li h3 {
  font-size: 1.125em;
  text-transform: uppercase;
}
.diagram ul li:not(:first-of-type) h3 {
  margin-top: 1em;
}

.diagram > ul {
  width: 48%;
  margin-top: 24px;
}
.diagram > ul.cat1 {
  float: left;
  margin-right: 2%;
}
@media only screen and (min-width: 1020px) {
  .diagram > ul.cat1 {
    width: 15%;
    margin-right: 0;
  }
}
.diagram > ul.cat2 {
  float: left;
  margin-left: 2%;
}
@media only screen and (min-width: 1020px) {
  .diagram > ul.cat2 {
    width: 20%;
    margin-left: 0;
  }
}

.diagram > ul > li > a {
  display: block;
  text-decoration: none;
}
.diagram > ul > li > a:hover {
  cursor: pointer;
}

.diagram ul.items li {
  font-weight: normal;
  color: #58595b;
  text-decoration: none;
  padding-left: 12px;
  position: relative;
}
.diagram ul.items li::before {
  content: " ";
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 3px;
  background-color: #d71920;
  position: absolute;
  top: 9px;
  left: 0;
}

.diagram ul.categories li.hoverable.active h3 {
  color: #d71920;
}

.diagram ul.categories li.hoverable.active ul.items li {
  color: #00386c;
  cursor: default;
}

.diagram .whole-line {
  margin: 0 1%;
  position: relative;
  display: none;
  margin-top: 70px;
}
.home .diagram .whole-line {
  float: left;
  max-width: 63%;
}
@media only screen and (min-width: 1020px) {
  .diagram .whole-line {
    display: block;
  }
}
.diagram .whole-line svg {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 200;
}
.diagram .whole-line svg path {
  fill: none;
  pointer-events: all;
}
.diagram .whole-line svg path:hover {
  cursor: pointer;
}

.diagram .whole-line img {
  width: 100%;
}

.diagram ul.highlighted-sections {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 610px;
  list-style-type: none;
}

.diagram ul.highlighted-sections li {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 610px;
  padding: 0;
}
.diagram ul.highlighted-sections li:before {
  display: none;
}

.diagram ul.highlighted-items li img {
  width: 100%;
  height: 610px;
}

.tippy-box[data-theme~=shemesh] {
  background-color: #00386c;
  color: #ffffff;
}

.tippy-box[data-theme~=shemesh][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #00386c;
}

.tippy-box[data-theme~=shemesh][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #00386c;
}

.tippy-box[data-theme~=shemesh][data-placement^=left] > .tippy-arrow::before {
  border-left-color: #00386c;
}

.tippy-box[data-theme~=shemesh][data-placement^=right] > .tippy-arrow::before {
  border-right-color: #00386c;
}

.two-cols::after {
  clear: both;
  content: "";
  display: block;
}
.two-cols div {
  float: left;
  width: 48%;
}
.two-cols div:not(:last-of-type) {
  margin-right: 2%;
}

.side-bar-block {
  margin-bottom: 1rem;
  font-size: 1.025rem;
  background-color: #00386c;
}
.side-bar-block.brochure {
  background-color: transparent;
}
.side-bar-block.brochure header {
  background-color: #9b9da0;
}
.side-bar-block.brochure section {
  margin-top: 1rem;
  padding: 0;
}
.side-bar-block.brochure section img {
  border: 1px solid #9fa1a2;
}
.side-bar-block img {
  display: block;
}
.side-bar-block a {
  text-decoration: none;
}
.side-bar-block header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-bar-block header:hover {
  cursor: pointer;
}
.side-bar-block header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.5em;
  text-transform: uppercase;
}
.side-bar-block header span {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
  right: 0.5em;
  position: relative;
}
.side-bar-block.expanded header span {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.side-bar-block.expandable section {
  display: none;
}
.side-bar-block section {
  padding: 0.7rem;
}
.side-bar-block section ul {
  margin: 0;
}
.side-bar-block section ul li {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  padding: 0.5rem 0;
  padding-left: 1em;
  border-bottom: 1px solid #fff;
}
.side-bar-block section ul li a {
  color: inherit;
  text-decoration: none;
}
.side-bar-block section ul li a:hover {
  color: inherit;
}
.side-bar-block section ul li:before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}
.side-bar-block section ul li:last-of-type {
  border-bottom: 0;
}
.side-bar-block.videos a {
  text-decoration: underline;
}

.main-text-content {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  overflow: hidden;
}
.main-text-content h4,
.main-text-content h5 {
  text-transform: initial;
}
.main-text-content h5 {
  color: #9b9da0;
}
.main-text-content.concealed {
  max-height: 250px;
  overflow: hidden;
}
.main-text-content.concealed:after {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.main-text-content.concealed button {
  display: block;
  margin: 0 auto;
  color:   #fff;
  background-color: #cfcfcf;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main-text-content button {
  display: none;
}

footer.footer .addresses-and-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1000px) {
  footer.footer .addresses-and-logo {
    flex-direction: row;
  }
}
footer.footer .addresses-and-logo .footer-strap {
  width: auto;
  margin: 0;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}
footer.footer .addresses-and-logo .footer-strap img {
  width: 12rem;
  display: block;
  margin: 0 auto;
}
footer.footer #sidebar-address {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: auto;
  margin: 3.5em 0;
}
footer.footer #sidebar-address .widget_text {
  width: auto;
  margin: 0;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}
@media (min-width: 1000px) {
  footer.footer #sidebar-address .widget_text {
    padding: 0 1rem;
  }
}
footer.footer #sidebar-address .widget_text h3 {
  margin: 0;
}

.flickity-viewport {
  transition: height 0.2s;
}
.visibility-hidden{ 
  visibility: hidden;
}
.new-banner-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
}
.new-banner-slider .slide {
  position: relative;
  margin: 0;
  width: 100%;
}
.new-banner-slider .slide a {
  display: block;
  text-decoration: none;
}
.new-banner-slider .slide img {
  display: block;
  width: 100%;
}
.new-banner-slider .slide .slide-text-content {
  text-align: center;
  line-height: 1;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}
@media (min-width: 750px) {
  .new-banner-slider .slide .slide-text-content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30%;
    text-align: left;
  }
}
.new-banner-slider .slide .title {
  font-size: 36px;
  color: #BBBCBD;
  text-transform: uppercase;
}
.new-banner-slider .slide .content {
  font-size: 24px;
  color: #BBBCBD;
}
.new-banner-slider .slide .link-text {
  font-size: 24px;
  color: #597B9C;
}

@media (min-width: 850px) {
  body {
    padding-top: 155px;
  }
}

.header2 {
  position: relative;
  border-bottom: 1px solid #d0d3d5;
}
@media (min-width: 850px) {
  .header2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
}
.header2 .header2__meta-bar {
  background-color: #00386c;
}
.header2 .header2__meta-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}
.header2 .header2__meta-bar .mobile-nav-toggle {
  display: block;
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border: 0 none;
  padding: 0;
  text-indent: -9999px;
  background: transparent url("/source/020948d177266f3edfd252b1870220aa/menu.png") no-repeat center center;
  background-size: contain;
}
@media (min-width: 850px) {
  .header2 .header2__meta-bar .mobile-nav-toggle {
    display: none;
  }
}
.header2 .header2__meta-bar .excellence-graphic {
  display: none;
  margin-right: auto;
  max-height: 30px;
}
@media (min-width: 850px) {
  .header2 .header2__meta-bar .excellence-graphic {
    display: block;
  }
}
.header2 .header2__meta-bar .wet-wipes-link {
  display: block;
  margin-right: 1rem;
  margin-left: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 850px) {
  .header2 .header2__meta-bar .wet-wipes-link {
    font-size: 1.2rem;
  }
}
.header2 .header2__meta-bar .contact-us-link {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d71920;
  color: #fff;
  border-radius: 3px;
  padding: 0.25em;
}
@media (min-width: 850px) {
  .header2 .header2__meta-bar .contact-us-link {
    padding: 0.25em 0.75em;
  }
}
.header2 .header2__meta-bar .search-toggle {
  display: none;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 1rem;
  border: 0 none;
  background: transparent url("/source/d2278908697a8b9bf6c054e8ec9ddfc3/magnifier-white.svg") no-repeat 50% 50%;
  background-size: 100%;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
}
@media (min-width: 850px) {
  .header2 .header2__meta-bar .search-toggle {
    display: block;
  }
}
.header2 .header2__meta-bar .search-box {
  display: none;
  margin-right: 1rem;
}
.header2 .header2__meta-bar .search-box.is-visible {
  display: block;
}
.header2 .header2__meta-bar .search-box div {
  display: flex;
  justify-content: space-between;
}
.header2 .header2__meta-bar .search-box label {
  display: none;
}
.header2 .header2__meta-bar .search-box [type=search] {
  height: auto;
  margin: 0;
  padding: 0.4rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  line-height: 1;
}
.header2 .header2__meta-bar .search-box [type=submit] {
  margin: 0;
  border: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #fff;
  line-height: 1;
  background-color: #d71920;
}
.header2 .header2__meta-bar .french-site-link {
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 1rem;
  border: 0 none;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  background: transparent url("/source/45e7761c39d89bed24edabdce7a1d521/french-flag-icon.svg") no-repeat 50% 50%;
  background-size: contain;
}
.header2 .header2__meta-bar .wpml-ls {
  align-self: stretch;
  display: flex;
  padding: 0;
  border: 0;
  margin-right: 1rem;
}
.header2 .header2__meta-bar .wpml-ls .wpml-ls-item {
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  height: 100%;
}
.header2 .header2__meta-bar .wpml-ls .wpml-ls-item.wpml-ls-item-en {
  background: transparent url("/source/859a5e9bdcb68ea477b82894d9e7b02b/gb-lang-circle.svg") no-repeat center center;
  background-size: contain;
}
.header2 .header2__meta-bar .wpml-ls .wpml-ls-item.wpml-ls-item-de {
  background: transparent url("/source/8321ece90c10e890fe822d5937be482e/de-lang-circle.svg") no-repeat center center;
  background-size: contain;
}
.header2 .header2__meta-bar .wpml-ls .wpml-ls-item.wpml-ls-item-fr {
  background: transparent url("/source/305224ba2f9c514bbd7a4215e12ad40c/fr-lang-circle.svg") no-repeat center center;
  background-size: contain;
}
.header2 .header2__meta-bar .wpml-ls .wpml-ls-item a {
  display: block;
  width: 1.7rem;
  margin: 0;
  padding: 0;
}
.header2 .header2__main-bar {
  background-color: #fff;
}
.header2 .header2__main-bar .wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar .wrap {
    justify-content: space-between;
  }
}
.header2 .header2__main-bar #logo2 {
  display: block;
  width: 75%;
  max-width: 345px;
  margin: 0.75em 0;
}
.header2 .header2__main-bar #logo2 img {
  display: block;
}
.header2 .header2__main-bar nav.top-level-navigation-2 {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 9999;
  height: auto;
  overflow: scroll;
  box-shadow: 0 3px 11px #000;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 {
    display: block;
    position: static;
    width: auto;
    z-index: auto;
    overflow: visible;
    box-shadow: none;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2.is-visible {
  display: block;
}
.header2 .header2__main-bar nav.top-level-navigation-2 .search-box {
  padding: 0.5rem;
  background-color: #00386c;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 .search-box {
    display: none;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 .search-box div {
  display: flex;
  justify-content: space-between;
}
.header2 .header2__main-bar nav.top-level-navigation-2 .search-box label {
  display: none;
}
.header2 .header2__main-bar nav.top-level-navigation-2 .search-box [type=search] {
  height: auto;
  margin: 0;
  padding: 0.4rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  line-height: 1;
}
.header2 .header2__main-bar nav.top-level-navigation-2 .search-box [type=submit] {
  margin: 0;
  border: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #fff;
  line-height: 1;
  background-color: #d71920;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul {
  margin: 0;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #58595b;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li {
    height: 100%;
    border-bottom: 0;
  }
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li:not(:last-of-type) {
    margin-right: 1rem;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > a {
  position: relative;
  display: block;
  line-height: 1.3;
  padding: 0.7rem;
  color: #58595b;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fff;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    letter-spacing: 0.015px;
  }
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > a:hover {
    letter-spacing: 0;
    color: #00386c;
    font-weight: 700;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li.menu-item-has-children > a span {
  display: block;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li.menu-item-has-children > a span {
    display: none;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li.menu-item-has-children > a span:before {
  content: "×";
  font-size: 1.8rem;
  color: #58595b;
  line-height: 1;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li.menu-item-has-children.is-expanded > a span:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li:hover > ul {
    display: block;
    top: auto;
    visibility: visible;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul {
  display: none;
  margin: 0;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul {
    min-width: 180px;
    margin-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    background-color: #fff;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    left: 50%;
    border: 1px solid #fff;
    border-top: 0;
  }
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #d71920 transparent;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li {
  position: relative;
  margin: 0;
  border-bottom: #58595b;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li a {
    border-color: #fff !important;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li:not(:last-of-type) a {
  border-bottom: 1px solid #58595b;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > a {
  position: relative;
  display: block;
  line-height: 1.3;
  padding: 0.7rem;
  color: #fff;
  padding: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875em;
  background-color: #00386c;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > a {
    border-color: #fff !important;
  }
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > a:hover {
    background-color: #d71920;
  }
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li.menu-item-has-children:hover > ul {
    display: block;
    top: 0;
    visibility: visible;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li.menu-item-has-children > a span {
  display: block;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li.menu-item-has-children > a span {
    display: none;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li.menu-item-has-children > a span:before {
  content: "×";
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li.menu-item-has-children.is-expanded > a span:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li:first-of-type a {
  border-top: 1px solid #58595b;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul {
  display: none;
  margin: 0;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul {
    position: absolute;
    left: 0;
    top: -1px;
    min-width: 180px;
    background-color: #d51b1f;
    border: 1px solid #fff;
    -webkit-transform: translateX(calc(-100% - 1px));
            transform: translateX(calc(-100% - 1px));
  }
}
@media (min-width: 850px) and (min-width: 1500px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul {
    -webkit-transform: none;
            transform: none;
    left: 100%;
  }
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul > li:not(:last-of-type) a {
  border-bottom: 1px solid #767678;
}
.header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul > li > a {
  display: block;
  padding: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.3;
  background-color: #767678;
}
@media (min-width: 850px) {
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul > li > a {
    border-color: #fff !important;
    border-left: 1px solid #fff;
  }
  .header2 .header2__main-bar nav.top-level-navigation-2 > ul > li > ul > li > ul > li > a:hover {
    background-color: #b8babc;
  }
}
#site-lang-switcher {
  background-color: initial;
  color: white;
  padding-right: 1.35rem;
  font-weight: bold;
}

.lang-option span {
  display: none;
}

.lang-option span:before {
  content: "";
  display: none !important;
  width: 0;
  height: 0;
}

#menu-item-current {
  border-bottom: 0;
}

#menu-main-nav-lang .lang-option,
#menu-main-nav-lang .lang-option:hover,
#menu-main-nav-lang .lang-option:focus {
  text-decoration: none;
  color: white;
}

#menu-main-nav-lang .lang-option-button {
  background: none;
  color: white;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

@media (max-width: 849px) {
  #menu-main-nav-lang .sub-menu {
    position: fixed !important;
    left: 0;
    width: 100%;
    margin-top: 0.65rem;
  }
}

@media (min-width: 500px) {
  #menu-main-nav-lang .sub-menu {
    margin-top: 1.35rem;
  }
}
.footer2 {
  background-color: #002144;
}
.footer2 section {
  padding: 2.15rem 0;
}
.footer2 section:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
.footer2 section.newsletter-and-socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 850px) {
  .footer2 section.newsletter-and-socials {
    flex-direction: row;
  }
}
.footer2 section.newsletter-and-socials .newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 850px) {
  .footer2 section.newsletter-and-socials .newsletter {
    margin-bottom: 0;
    align-items: flex-start;
  }
}
@media (min-width: 1000px) {
  .footer2 section.newsletter-and-socials .newsletter {
    flex-direction: row;
    align-items: center;
  }
}
.footer2 section.newsletter-and-socials .newsletter h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media (min-width: 850px) {
  .footer2 section.newsletter-and-socials .newsletter h4 {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
}
@media (min-width: 1000px) {
  .footer2 section.newsletter-and-socials .newsletter h4 {
    flex: 1 1 44rem;
  }
}
.footer2 section.newsletter-and-socials .newsletter #mc_embed_signup {
  width: 100%;
  background-color: transparent;
}
.footer2 section.newsletter-and-socials .newsletter #mc_embed_signup form #mc_embed_signup_scroll {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}
@media (min-width: 850px) {
  .footer2 section.newsletter-and-socials .newsletter #mc_embed_signup form #mc_embed_signup_scroll {
    justify-content: flex-start;
  }
}
.footer2 section.newsletter-and-socials .newsletter #mc_embed_signup form [type=email] {
  border-radius: 0;
  border: 0;
  background-color: #fff;
  margin-right: 0.5rem;
  margin-bottom: 0;
}
.footer2 section.newsletter-and-socials .newsletter #mc_embed_signup form [type=submit].button {
  padding: 0.25em 0.75em;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #d71920;
  color: #fff;
  border-radius: 3px;
  line-height: auto;
  font-size: auto;
  border: 0;
}
.footer2 section.newsletter-and-socials .socials {
  display: flex;
  justify-content: space-between;
  margin: 0;
  margin-left: 1rem;
}
.footer2 section.newsletter-and-socials .socials li:not(:last-of-type) {
  margin-right: 0.5rem;
}
.footer2 section.newsletter-and-socials .socials li a {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  border: 0 none;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
}
.footer2 section.newsletter-and-socials .socials li a[href*=linkedin] {
  background: transparent url("/source/b00a49ef7c65b37790e08965c9ae4a4b/icon_linkedin.svg") no-repeat center center;
  background-size: contain;
}
.footer2 section.newsletter-and-socials .socials li a[href*=vimeo] {
  background: transparent url("/source/ac19f2e42d97a8e8a17cfb475c26ead8/icon_vimeo.svg") no-repeat center center;
  background-size: contain;
}
.footer2 section.newsletter-and-socials .socials li a[href*=facebook] {
  background: transparent url("/source/51003f84a05c701be82f691f65ac0590/icon_facebook.svg") no-repeat center center;
  background-size: contain;
}
.footer2 section.newsletter-and-socials .socials li a[href*=youtube] {
  background: transparent url("/source/4ba81f885c8e60ba4102333045c992d5/icon_youtube.svg") no-repeat center center;
  background-size: contain;
}
.footer2 section.newsletter-and-socials .socials li a[href*=twitter] {
  background: transparent url("/source/f2fc05b184d4b43b8a24d14294307448/icon_twitter.svg") no-repeat center center;
  background-size: contain;
}
.footer2 section.navigation-and-posts {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 850px) {
  .footer2 section.navigation-and-posts {
    flex-direction: row;
  }
}
.footer2 section.navigation-and-posts .menus {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 calc((100% - 4rem) / 5 * 3 + 2rem);
}
@media (min-width: 850px) {
  .footer2 section.navigation-and-posts .menus {
    flex-direction: row;
  }
}
.footer2 section.navigation-and-posts .menus nav {
  float: none;
  /*flex: 0 1 calc((100% - 2rem) / 3);*/
  margin-bottom: 1rem;
  color: #fff;
}
@media (min-width: 850px) {
  .footer2 section.navigation-and-posts .menus nav {
    margin-bottom: 0;
  }
}
.footer2 section.navigation-and-posts .menus nav:not(:last-of-type) {
  margin-right: 4rem;
}
.footer2 section.navigation-and-posts .menus nav h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}
.footer2 section.navigation-and-posts .menus nav ul {
  margin: 0;
}
.footer2 section.navigation-and-posts .menus nav ul li {
  padding: 0.15rem 0;
  color: #fff;
}
.footer2 section.navigation-and-posts .menus nav ul li a {
  text-decoration: none;
  color: inherit;
}
.footer2 section.navigation-and-posts .blogs {
  flex: 0 0 calc((100% - 4rem) / 5 * 2 + 1rem);
}
.footer2 section.navigation-and-posts .blogs h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.footer2 section.navigation-and-posts .blogs ul {
  margin: 0;
}
.footer2 section.navigation-and-posts .blogs ul li {
  padding: 0.15rem 0;
  color: #fff;
  border-bottom: 1px solid #495a6a;
}
.footer2 section.navigation-and-posts .blogs ul li a {
  text-decoration: none;
  color: inherit;
}
.footer2 section.service-and-support-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 850px) {
  .footer2 section.service-and-support-text {
    flex-direction: row;
  }
}
.footer2 section.service-and-support-text p {
  margin: 0 0 1rem 0;
  color: #fff;
  text-align: center;
  font-size: 1.225rem;
}
@media (max-width: 849px) {
  .footer2 section.service-and-support-text p {
    font-size: 1.2rem;
  }
}
@media (min-width: 850px) {
  .footer2 section.service-and-support-text p {
    margin: 0;
    text-align: left;
  }
}
.footer2 section.service-and-support-text p a {
  color: inherit;
}
.footer2 section.service-and-support-text .let-us-build-your-vision-logo {
  display: block;
  width: 14rem;
}
.footer2 section.offices > p {
  margin-bottom: 2rem;
  color: #fff;
}
.footer2 section.offices .office-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0;
}
@media (min-width: 850px) {
  .footer2 section.offices .office-list {
    flex-direction: row;
  }
}
.footer2 section.offices .office-list .office {
  flex: 0 0 calc((100% - 4rem) / 5);
  margin-bottom: 1rem;
  color: #fff;
}
.footer2 section.offices .office-list .office:not(:last-of-type) {
  margin-right: 1rem;
}
@media (min-width: 850px) {
  .footer2 section.offices .office-list .office {
    margin-bottom: 0;
  }
}
.footer2 section.offices .office-list .office .flag {
  display: block;
  width: 3.3rem;
  margin-bottom: 0.5rem;
  border: 1px solid #fff;
}
.footer2 section.offices .office-list .office h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}
.footer2 section.offices .office-list .office .telephone {
  font-weight: 700;
}
.footer2 section.offices .office-list .office p {
  margin: 0;
}
.footer2 section.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 850px) {
  .footer2 section.meta {
    flex-direction: row;
  }
}
.footer2 section.meta p {
  color: #fff;
}
.footer2 section.meta p a {
  color: inherit;
  text-decoration: none;
}
.footer2 section.meta .ppma-logo {
  width: 14rem;
}

.post-type-archive-events .event-filters h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.post-type-archive-events .event-filters ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.post-type-archive-events .event-filters ul::after {
  clear: both;
  content: "";
  display: block;
}
@media (min-width: 800px) {
  .post-type-archive-events .event-filters ul {
    flex-wrap: nowrap;
  }
}
.post-type-archive-events .event-filters ul li {
  flex: 0 0 49%;
}
.post-type-archive-events .event-filters ul li:nth-of-type(odd) {
  margin-right: 2%;
}
@media (min-width: 800px) {
  .post-type-archive-events .event-filters ul li {
    flex-grow: initial;
    flex-shrink: initial;
    flex-basis: initial;
  }
  .post-type-archive-events .event-filters ul li:not(:last-of-type) {
    margin-right: 1rem;
  }
}
.post-type-archive-events .title-bar {
  display: none;
}
@media (min-width: 850px) {
  .post-type-archive-events .title-bar {
    display: flex;
    margin-bottom: 1rem;
    border: 1px solid #9b9da0;
    border-left: 0;
    border-right: 0;
  }
}
.post-type-archive-events .title-bar h4 {
  flex: 0 1 25%;
  margin: 0;
  padding: 1rem 0;
}
.post-type-archive-events .title-bar h4:first-of-type {
  flex: 0 1 70%;
}
.post-type-archive-events .title-bar h4:not(:last-of-type) {
  margin-right: 1rem;
}
.post-type-archive-events .listed-event:first-of-type {
  border-top: 0;
}
.post-type-archive-events .past-event-split {
  color: #00386c;
  border-top: 1px solid #9b9da0;
  border-bottom: 1px solid #9b9da0;
  background-color: #f0f1f1;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.listed-event {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-top: 1px solid #9b9da0;
}
@media (min-width: 850px) {
  .listed-event {
    flex-direction: row;
  }
}
.listed-event div {
  flex: 0 1 25%;
}
.listed-event div:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .listed-event div:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.listed-event div .flag {
  margin-bottom: 1rem;
  width: 3rem;
}
.listed-event div.listed-event-col--name-tags-description {
  flex: 0 1 45%;
}
.listed-event div.listed-event-col--name-tags-description .read-more {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #00386c;
  font-weight: 700;
  text-decoration: none;
}
.listed-event [type=submit] {
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  width: 9rem;
  height: 2.3rem;
  display: block;
  border: 0;
  background: transparent url("/source/018b92c0ca61527c0a404111e9b704dc/add_to_calendar.svg") no-repeat center center;
  background-size: contain;
}
.listed-event .make-an-appointment {
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  width: 11rem;
  height: 2.3rem;
  display: block;
  border: 0;
  background: transparent url("/source/419a76bb081663db5a5d47fcf37fbc59/make_an_appointment.svg") no-repeat center center;
  background-size: contain;
}
.listed-event .tag-list li {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.listed-event .tag {
  padding: 0.2rem 0.5rem;
  color: #fff;
  background-color: #9b9da0;
  display: block;
}
.listed-event .event-date {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #00386c;
}

.media-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 3rem 0;
  width: calc(100% + 5rem);
  margin-left: -2.5rem;
  border-top: 1px solid #b8babc;
}
.media-grid:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #b8babc;
}
.media-grid .media-item {
  padding: 2rem 6rem;
  border-bottom: 1px solid #b8babc;
}
@media (min-width: 500px) {
  .media-grid .media-item {
    padding: 2rem 2.5rem;
  }
}
.media-grid .media-item a {
  text-decoration: none;
}
.media-grid .media-item .media-item__title {
  height: 75px;
  font-size: 1.3rem;
  overflow: hidden;
  line-height: 1.2;
}
.media-grid .media-item .media-item__image {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  border: 1px solid #b8babc;
}
.media-grid .media-item .media-item__date {
  margin: 0;
  font-size: 1rem;
  color: #767678;
}

.paginator {
  display: none;
  color: #d71920;
  font-weight: 700;
  font-size: 1.1rem;
}
.paginator a {
  color: inherit;
}
@media (min-width: 800px) {
  .paginator {
    display: block;
  }
}

.view-more-button {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.5rem 2.5rem;
  border-radius: 5px;
  border: 0;
  text-transform: uppercase;
  background-color: #b8babc;
}
@media (min-width: 800px) {
  .view-more-button {
    display: none;
  }
}

.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
@media (min-width: 800px) {
  .pagination-bar {
    justify-content: flex-end;
  }
}

.partner-logos-2 {
  margin: 1.5rem 0;
}
.partner-logos-2 ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 500px) {
  .partner-logos-2 ul {
    align-items: normal;
  }
}
@media (min-width: 500px) {
  .partner-logos-2 ul {
    flex-direction: row;
  }
}
.partner-logos-2 ul li {
  margin: 1rem 2rem;
}
@media (min-width: 500px) {
  .partner-logos-2 ul li {
    flex: 0 1 250px;
  }
}
.partner-logos-2 ul li a {
  display: block;
}
.partner-logos-2 ul li a img {
  display: block;
  width: 100%;
  height: 100%;
}

/*********************
WORLDMAPS FIX...
*********************/
.iwm_map_canvas .google-visualization-tooltip {
  pointer-events: visiblePainted !important;
}
.iwm_map_canvas .google-visualization-tooltip h4 {
  text-transform: uppercase;
  font-size: 1rem;
  color: #00386c;
}

/*
#map_canvas_1 div {
	overflow: hidden;
}
#map_canvas_1 svg {
	margin-left: -60px;
}
*/
/*****************************
  NEILS STYLES ARE THESE!!!
*****************************/
.gallery-cell {
  width: 252px;
}

.gallery-cell img {
  display: block;
  width: 100%;
  border-left: 4px solid #9b9da0;
  border-right: 4px solid #9b9da0;
}

/******************************
  MIKE TEMPORARY STYLES
******************************/
.diagram img.twentyfiveyears,
.diagram img.thirtyyears {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-top: 32px;
  margin-bottom: 2rem;
}

a.wipes-link {
  position: relative;
  left: 9px;
  top: 2px;
  color: #fff;
  text-decoration: none;
}

a.wipes-link:hover {
  color: #fff;
  text-decoration: underline;
}

/************************************
  COLORBOX STYLEs FOR CONTACT FORM
************************************/
#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
  height: 0;
  width: 0;
  background: none;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
  border: 1px solid #9b9da0;
}

#cboxClose {
  top: 8px;
  right: 8px;
  bottom: auto;
}

.global-support-detail {
  margin-bottom: 15px;
}

.video-brochure {
  background: #ffffff url("/source/a1569ff1a0f3e57b5ecca414cdaa083c/sh_backgrounds_rollers.jpg") no-repeat center center;
  background-size: cover;
}
.video-brochure .video {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .video-brochure .video {
    margin: 0;
  }
}
.video-brochure .video iframe {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .video-brochure .video {
    margin-right: 5%;
  }
}
.video-brochure .brochure a {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
.video-brochure .brochure img {
  display: block;
}

.home-diagram,.accreditations-become-a-partner {
  padding: 2rem 0;
  min-height: 150px;
}
.become-a-partner-text{
	color:#002144;
	width: 60%;
	display: inline-block;
	font-weight: 600;
}
.become-a-partner-button-div{
	display:contents;
}
.become-a-partner-button {
	float: right;
	padding: 0.25em 0.75em;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #d71920;
	color: #fff!important;
	border-radius: 3px;
	line-height: auto;
	font-size: auto;
	border: 0;
}
#parallax {
    background-attachment: scroll;
}
.statement-content ol{
  padding: revert!important;
  list-style-type: decimal!important;
}
.statement-content ul{
  padding: revert!important;
list-style-type: square!important;
}

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