@charset "UTF-8";
/*------------------------------------*\
    #CREDITS
\*------------------------------------*/
/**
 * Author   --  Fishtank Creative
 * Project  --  Chicopee Solutions
 * Credit   --  Fishtank Creative
*/
/**
  * CONTENTS
  *
  * SETTINGS
  * Helpers...........Mixins and variables
  * Base..............Base SASS files - resets, layout, print styles, fonts etc
  * Components........Individual elements such as navigations, footer, header, buttons
  * Templates.........Template files i.e. Home template, inner, contact
*/
/**
  * #Helpers
*/
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
/**
  * Clear after floats
*/
/**
  * Convert font-size from px to rem with px fallback
  * @param $size - the value in pixel you want to convert
  * Credit - http://bit.ly/1H7jo0n
  * e.g. p { @include fontSize(12px); }
*/
/**
  * Function for converting a px based font-size to rem.
*/
/**
  * Mixin that will include the fall back px declaration
  * as well as the calculated rem value.
*/
/**
  * Apply clearfix to this classes by default
*/
.clear, .group {
  zoom: 1;
}
.clear:before, .clear:after, .group:before, .group:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clear:after, .group:after {
  clear: both;
}

/**
  * Responsive mixins
*/
.clearfix, .group {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .group:before, .group:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after, .group:after {
  clear: both;
}

/*------------------------------------*\
    #FUNCTIONS
\*------------------------------------*/
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/**
* 1. bp-small is mainly for devices below 480px (mainly iPhones etc)
* 2. bp-med is for tablet devices i.e. iPad / iPad Mini
* 3. bp-large is for laptops
*/
/*------------------------------------*\
    #COLOUR-VARIABLES
\*------------------------------------*/
/**
  * One of the best reasons to use Sass is variables.
  * They help keep your code DRY, which makes it easy to maintain and change.
  * However, with colors, it’s easy for your variables to get out of hand.
  *
  * Solution - Use Name that colour - http://bit.ly/1KCISUE
  * Name your variables after colors like you were trying to do, but without the naming difficulty
  * Suggestion by David Walsh - http://bit.ly/1I62ZLL
*/
/**
  * Colours used for the Product Selector. Taken from Chicopee Americas website
*/
/**
  * Other Random Colour Options
*/
/**
* 1. Primary colour is the red colour
* 2. Secondary colour is the Yellow colour
* 3. Tertiary colour is the Grey colour
* 4. Light colour is the main colour for backgrounds
* 5. Foreground colour is the designs alternate colour for backgrounds
* 6. Body colour is the colour of the main body text
*/
/**
* Chicopee's own specific colour theme for their product sections
* Industry | Foodservice | Building Care | Health Care | Speciality | Innovation
*/
/*------------------------------------*\
    #FONT-SIZES
\*------------------------------------*/
/**
  * 1. Default font size is 16px.
  * 2. The rest are various font sizes used throughout the site
*/
/*------------------------------------*\
    #FONT-FAMILIES
\*------------------------------------*/
/**
 * 1. Our main font is Avenir and we have two variants (Book and Light)
 * 2. The other font is Circular this is used for headings.
*/
/**
  * #BASE
*/
/*------------------------------------*\
    #RESET
\*------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*------------------------------------*\
    #BASE
\*------------------------------------*/
.r-symbol {
  font-size: 40%;
  position: relative;
  top: -20px;
}
@media screen and (min-width: 1200px) {
  .r-symbol {
    top: -30px;
  }
}

*,
*:before,
*:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.js #flash {
  display: none;
}

body {
  font-size: 100%;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #22272f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  border: none;
}

a {
  transition: all 0.19s linear;
}

main {
  display: block;
}

img,
video,
audio,
iframe,
object {
  max-width: 100%;
  height: auto;
}

button {
  padding: 0;
  margin: 0;
}

ol,
ul {
  margin-bottom: 35px;
}

li {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 16px;
}

sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -7px;
}

button {
  outline: none;
}

object {
  display: block;
}

strong {
  font-weight: bold;
}

.inline-block {
  display: inline-block;
}

.hide {
  display: none;
}

.show {
  display: block;
}
.show--inline {
  display: inline-block;
}

.background-size {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.break {
  clear: both;
}

.fullheight {
  height: 100%;
}

.overflow-h {
  overflow: hidden;
}

@media screen and (min-width: 65.5em) {
  .flex {
    display: flex;
    /* equal height of the children */
  }
}

.equal-height {
  flex: 1;
  /* additionally, equal width */
}

.border-top1 {
  border-top: 1px solid #D4D3D3;
}

.border-top2 {
  border-top: 2px solid #D4D3D3;
}

.border-top3 {
  border-top: 3px solid #D4D3D3;
}

.border-top4 {
  border-top: 4px solid #D4D3D3;
}

.border-top5 {
  border-top: 5px solid #D4D3D3;
}

.border-top-2-light {
  border-top: 2px solid #ffffff;
}

.border-bottom-2-light {
  border-bottom: 2px solid #ffffff;
}

/**
  * So to avoid duplicate CSS declarations we have decided to add some single classes
  * Its all for the BEM methodology
*/
.primary {
  color: #e61e26;
}

.secondary {
  color: #e7c11e;
}

.tertiary {
  color: #404041;
}

.light {
  color: #ffffff;
}

.industry {
  color: #253d74;
}

.industrial {
  color: #253d74;
}

.foodservice {
  color: #ed1c24;
}

.buildingcare {
  color: #93b13d;
}

.buildingcare {
  color: #93b13d;
}

.healthcare {
  color: #25aae1;
}

.health-care {
  color: #25aae1;
}

.speciality {
  color: #e7c11d;
}

.innovation {
  color: #a1a5ac;
}

.automotive {
  color: #e7c11f;
}

.aerospace {
  color: #e7c11f;
}

.shark {
  color: #22272f;
}

.silver {
  color: #bebebe;
}

.aluminium {
  color: #a2a5ae;
}

.scorpion {
  color: #585858;
}

.alto {
  color: #D4D3D3;
}

.graychateau {
  color: #A1A5AD;
}

.desertstorm {
  color: #f1f1ef;
}

.twitter {
  color: #25AAE1;
}

.facebook {
  color: #253d74;
}

.linkedin {
  color: #3f444b;
}

.emperor {
  color: #555555;
}

.foreground {
  background: #f5f6f7;
}

.foreground__alt {
  background: #f3f6fb;
}

.background {
  background: #ffffff;
}
.background__primary {
  background: #e61e26;
}
.background__primary--grad {
  background: #b3141a;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #b3141a), color-stop(100%, #e61e26));
  background: linear-gradient(to bottom, #b3141a 0%, #e61e26 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$primary-colour-dark", endColorstr="$primary-colour", GradientType=0);
}
.background__tertiary {
  background: #404041;
}
.background__facebook {
  background: #253d74;
}
.background__aluminium {
  background: #a2a5ae;
}
.background__sushi {
  background: #93B13D;
}
.background__shark {
  background: #22272f;
}
.background__industry, .background__industrial {
  background: #253d74;
}
.background__industry--grad, .background__industrial--grad {
  background: #162546;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #162546), color-stop(100%, #ed1c24));
  background: linear-gradient(to bottom, #162546 0%, #253d74 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$industry-colour-dark", endColorstr="$industry-colour", GradientType=0);
}
.background__foodservice {
  background: #ed1c24;
}
.background__foodservice--grad {
  background: #bd0f16;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #bd0f16), color-stop(100%, #ed1c24));
  background: linear-gradient(to bottom, #bd0f16 0%, #ed1c24 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$foodservice-colour-dark", endColorstr="$foodservice-colour", GradientType=0);
}
.background__buildingcare {
  background: #93b13d;
}
.background__buildingcare--grad {
  background: #6d832d;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #6d832d), color-stop(100%, #93b13d));
  background: linear-gradient(to bottom, #6d832d 0%, #93b13d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$buildingcare-colour-dark", endColorstr="$buildingcare-colour", GradientType=0);
}
.background__healthcare {
  background: #25aae1;
}
.background__healthcare--grad {
  background: #1884b1;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1884b1), color-stop(100%, #25aae1));
  background: linear-gradient(to bottom, #1884b1 0%, #25aae1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$healthcare-colour-dark", endColorstr="$healthcare-colour", GradientType=0);
}
.background__speciality {
  background: #e7c11d;
}
.background__speciality--grad {
  background: #b49513;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #b49513), color-stop(100%, #e7c11d));
  background: linear-gradient(to bottom, #b49513 0%, #e7c11d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$speciality-colour-dark", endColorstr="$speciality-colour", GradientType=0);
}
.background__innovation {
  background: #a1a5ac;
}
.background__innovation--grad {
  background: #80868f;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #80868f), color-stop(100%, #a1a5ac));
  background: linear-gradient(to bottom, #80868f 0%, #a1a5ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$innovation-colour-dark", endColorstr="$innovation-colour", GradientType=0);
}
.background__automotive {
  background: #e7c11f;
}
.background__automotive--grad {
  background: #d6b117;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #d6b117), color-stop(100%, #e7c11f));
  background: linear-gradient(to bottom, #d6b117 0%, #e7c11f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$automotive-colour-dark", endColorstr="$automotive-colour", GradientType=0);
}
.background__aerospace {
  background: #e7c11f;
}
.background__aerospace--grad {
  background: #d6b117;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #d6b117), color-stop(100%, #e7c11f));
  background: linear-gradient(to bottom, #d6b117 0%, #e7c11f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$aerospace-colour-dark", endColorstr="$aerospace-colour", GradientType=0);
}
.background__digital {
  background: #3aabdf;
}
.background__alto {
  background: #D4D3D3;
}
.background__desertstorm {
  background: #f1f1ef;
}
.background__linkedin {
  background-color: #0077b5;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.left {
  float: left;
}

.right {
  float: right;
}

.no-float {
  float: none !important;
}

.auto {
  margin: auto;
}

.relative {
  position: relative;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-top {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.marginb20 {
  margin-bottom: 20px;
}

.marginb23 {
  margin-bottom: 23px;
}

.marginb35 {
  margin-bottom: 35px;
}

.margint18 {
  margin-top: 18px;
}

.margint30 {
  margin-top: 30px;
}

.copyright {
  width: 100%;
  clear: both;
  margin: 60px 0 0 0;
  padding: 20px 0 0 0;
  display: inline-block;
}
.copyright p {
  margin-bottom: 0;
}
@media screen and (max-width: 39.8125em) {
  .copyright p {
    width: 100%;
    text-align: center;
  }
}

.twitter-block ul,
.twitter-block li {
  margin-bottom: 0;
}

.tweet {
  margin-bottom: 0;
  font-family: "AvenirLTStd-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: -0.04em;
  color: #ffffff;
  padding: 25px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  height: 236px;
}
@media screen and (min-width: 26.5625em) {
  .tweet {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 34px;
    line-height: 2.125rem;
  }
}
@media screen and (min-width: 87.8125em) {
  .tweet {
    padding: 0;
  }
}
.tweet a {
  color: #25AAE1;
  word-break: break-word;
}
.tweet a:hover, .tweet a:active, .tweet a:focus {
  color: #ffffff;
}
.tweet img {
  display: none;
}

.display-table {
  display: table;
}

.display-cell {
  display: table-cell;
  vertical-align: middle;
}

.section__tabs--cbtm {
  margin-bottom: 55px;
}

.section__tabs--10 {
  margin-bottom: 10px;
}

.embed-container {
  position: relative;
  padding-bottom: 62.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swatch-option {
  width: 100%;
  min-height: 229px;
  margin-bottom: 19px;
}

/*------------------------------------*\
    #FONTFACE
\*------------------------------------*/
@font-face {
  font-family: "Circular-Book";
  src: url("../../assets/fonts/circular/Circular-Book_gdi.eot");
  src: url("../../assets/fonts/circular/Circular-Book_gdi.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/circular/Circular-Book_gdi.woff") format("woff"), url("../../assets/fonts/circular/Circular-Book_gdi.ttf") format("truetype"), url("../../assets/fonts/circular/Circular-Book_gdi.svg#Circular-Book") format("svg");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-25CA;
}
@font-face {
  font-family: "Circular-Medium";
  src: url("../../assets/fonts/circular/Circular-Medium_gdi.eot");
  src: url("../../assets/fonts/circular/Circular-Medium_gdi.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/circular/Circular-Medium_gdi.woff") format("woff"), url("../../assets/fonts/circular/Circular-Medium_gdi.ttf") format("truetype"), url("../../assets/fonts/circular/Circular-Medium_gdi.svg#Circular-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-25CA;
}
@font-face {
  font-family: "Circular-Bold";
  src: url("../../assets/fonts/circular/Circular-Bold_gdi.eot");
  src: url("../../assets/fonts/circular/Circular-Bold_gdi.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/circular/Circular-Bold_gdi.woff") format("woff"), url("../../assets/fonts/circular/Circular-Bold_gdi.ttf") format("truetype"), url("../../assets/fonts/circular/Circular-Bold_gdi.svg#Circular-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-25CA;
}
@font-face {
  font-family: "AvenirLTStd-Book";
  src: url("../../assets/fonts/avenir/AvenirLTStd-Book_gdi.eot");
  src: url("../../assets/fonts/avenir/AvenirLTStd-Book_gdi.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/avenir/AvenirLTStd-Book_gdi.woff") format("woff"), url("../../assets/fonts/avenir/AvenirLTStd-Book_gdi.ttf") format("truetype"), url("../../assets/fonts/avenir/AvenirLTStd-Book_gdi.svg#AvenirLTStd-Book") format("svg");
  font-weight: 350;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-25CA;
}
@font-face {
  font-family: "AvenirLTStd-Light";
  src: url("../../assets/fonts/avenir/AvenirLTStd-Light_gdi.eot");
  src: url("../../assets/fonts/avenir/AvenirLTStd-Light_gdi.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/avenir/AvenirLTStd-Light_gdi.woff") format("woff"), url("../../assets/fonts/avenir/AvenirLTStd-Light_gdi.ttf") format("truetype"), url("../../assets/fonts/avenir/AvenirLTStd-Light_gdi.svg#AvenirLTStd-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-25CA;
}
@font-face {
  font-family: "chicopee";
  src: url("../../assets/fonts/chicopee/chicopee.eot");
  src: url("../../assets/assets/fonts/chicopee/chicopee.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/chicopee/chicopee.woff") format("woff"), url("../../assets/fonts/chicopee/chicopee.ttf") format("truetype"), url("../../assets/fonts/chicopee/chicopee.svg#chicopee") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "chicopee" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "chicopee" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-musica-searcher:before {
  content: "a";
}

.icon-like:before {
  content: "c";
}

.icon-linkedin:before {
  content: "d";
}

.icon-facebook:before {
  content: "e";
}

.icon-twitter:before {
  content: "f";
}

.icon-chevron-down:before {
  content: "g";
}

.icon-chevron-left:before {
  content: "h";
}

.icon-chevron-right:before {
  content: "i";
}

.icon-chevron-up:before {
  content: "j";
}

.icon-check-mark:before {
  content: "k";
}

.icon-search-find:before {
  content: "l";
}

.icon-arrow-right:before {
  content: "m";
}

.icon-menu:before {
  content: "n";
}

.icon-press-play-button-circle:before {
  content: "o";
}

.icon-contactus:before {
  content: "v";
}

.icon-world-map:before {
  content: "w";
}

.icon-play:before {
  content: "x";
}

.icon-aerospace:before {
  content: "p";
}

.icon-automotive:before {
  content: "q";
}

.icon-aerospace:before {
  content: "p";
}

.icon-automotive:before {
  content: "q";
}

.icon-buildingcare:before {
  content: "r";
}

.icon-foodservice:before {
  content: "s";
}

.icon-healthcare:before {
  content: "t";
}

.icon-health-care:before {
  content: "t";
}

.icon-industry:before {
  content: "u";
}

.icon-industrial:before {
  content: "u";
}

.icon-rounded-glasses:before {
  content: "y";
}

.icon-request-sample:before {
  content: "z";
}

.icon-pantone:before {
  content: "A";
}

.icon-gears:before {
  content: "B";
}

.icon-stack-papers:before {
  content: "C";
}

.icon-sunshine:before {
  content: "D";
}

.icon-play-btn:before {
  content: "E";
}

.icon-remove:before {
  content: "G";
}

.icon-clock:before {
  content: "b";
}

.icon-newspaper:before {
  content: "F";
}

.icon-pencilruler:before {
  content: "H";
}

.icon-principles:before {
  content: "I";
}

.icon-story:before {
  content: "J";
}

.icon-users:before {
  content: "K";
}

.icon-value:before {
  content: "L";
}

.icon-arrow-left:before {
  content: "M";
}

.icon-arrow-left-news:before {
  content: "N";
}

.icon-youtube-play:before {
  content: "P";
}

/*------------------------------------*\
    #GRID
\*------------------------------------*/
/**
  * 12 Column fluid and responsive grid
*/
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  zoom: 1;
}
.container:before, .container:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.container:after {
  clear: both;
}
.container__inner {
  max-width: 1340px;
}
.container__slidedown {
  max-width: 975px;
  padding: 0;
  margin: 0 auto;
}
.container--rel {
  position: relative;
}
@media screen and (min-width: 110.9375em) {
  .container--flow {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    zoom: 1;
  }
}
.container--digital {
  max-width: 1440px;
  margin: 0 auto;
}
.container--digital-contact {
  max-width: 1190px;
}
.container--news {
  max-width: 1280px;
}

.nm-left {
  margin-left: 0 !important;
}

.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10,
.span11,
.span12 {
  display: block;
  margin-bottom: 20px;
}

/**
  * Grid columns are stacked until the display size is greater than min-width
*/
@media screen and (min-width: 25.0625em) {
  .group {
    margin-left: -2.1277%;
  }
  .group__inner {
    margin-left: 0;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 62em) {
  .group__fixed {
    margin-right: 483px;
  }
}
@media screen and (min-width: 25.0625em) {
  .span4__fixed {
    width: 100%;
    float: right;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 62em) {
  .span4__fixed {
    width: 483px;
    margin-right: -483px;
  }
}
@media screen and (min-width: 25.0625em) {
  .span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10,
.span11,
.span12 {
    float: left;
    margin-left: 2.1277%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 25.0625em) {
  .span__full {
    float: left;
    width: 100%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span1 {
    width: 6.2056333%;
  }
  .span1.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset1 {
    margin-left: 10.4610333%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center1 {
    margin: 0 auto;
    width: 6.2056333%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span2 {
    width: 14.5389666%;
  }
  .span2.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset2 {
    margin-left: 18.7943666%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center2 {
    margin: 0 auto;
    width: 14.5389666%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span3 {
    width: 22.8722999%;
  }
  .span3.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset3 {
    margin-left: 27.1276999%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center3 {
    margin: 0 auto;
    width: 22.8722999%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span4 {
    width: 31.2056332%;
  }
  .span4.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset4 {
    margin-left: 35.4610332%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center4 {
    margin: 0 auto;
    width: 31.2056332%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span5 {
    width: 39.5389665%;
  }
  .span5.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset5 {
    margin-left: 43.7943665%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center5 {
    margin: 0 auto;
    width: 39.5389665%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span6 {
    width: 47.8722998%;
  }
  .span6.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset6 {
    margin-left: 52.1276998%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center6 {
    margin: 0 auto;
    width: 47.8722998%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span7 {
    width: 56.2056331%;
  }
  .span7.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset7 {
    margin-left: 60.4610331%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center7 {
    margin: 0 auto;
    width: 56.2056331%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span8 {
    width: 64.5389664%;
  }
  .span8.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset8 {
    margin-left: 68.7943664%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center8 {
    margin: 0 auto;
    width: 64.5389664%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span9 {
    width: 72.8722997%;
  }
  .span9.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset9 {
    margin-left: 77.1276997%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center9 {
    margin: 0 auto;
    width: 72.8722997%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span10 {
    width: 81.205633%;
  }
  .span10.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset10 {
    margin-left: 85.461033%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center10 {
    margin: 0 auto;
    width: 81.205633%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span11 {
    width: 89.5389663%;
  }
  .span11.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset11 {
    margin-left: 93.7943663%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center11 {
    margin: 0 auto;
    width: 89.5389663%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span12 {
    width: 97.8722996%;
  }
  .span12.break {
    float: none;
  }
}
@media screen and (min-width: 25.0625em) {
  .offset12 {
    margin-left: 102.1276996%;
  }
}
@media screen and (min-width: 25.0625em) {
  .center12 {
    margin: 0 auto;
    width: 97.8722996%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span8__inner {
    width: 100%;
    float: left;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 50em) {
  .span8__inner--bp-large {
    width: 54.642857142%;
    margin-left: 3.571428571%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span8__flush {
    margin-left: 0;
    width: 65.5%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span4__flush {
    margin-left: 0;
    width: 34.5%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span4__inner {
    width: 100%;
    float: left;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 50em) {
  .span4__inner--bp-large {
    width: 34.571428571%;
    margin-left: 3.571428571%;
  }
}
@media screen and (min-width: 25.0625em) {
  .span4__inner img {
    width: 100%;
  }
}
@media screen and (min-width: 25.0625em) {
  .slides__holder {
    width: 100%;
    float: left;
    margin-left: 0;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 65.5em) {
  .slides__holder {
    margin-left: 10%;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 96.875em) {
  .slides__holder {
    margin-left: 0;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 50em) {
  .slides__holder {
    width: 75%;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 62em) {
  .slides__holder {
    width: 60%;
  }
}
@media screen and (min-width: 25.0625em) and (min-width: 85.3125em) {
  .slides__holder {
    width: 47.8723%;
  }
}
@media screen and (min-width: 30em) {
  .span6__product {
    width: 100%;
    margin-left: 0;
  }
}
/*------------------------------------*\
    #CUSTOM GRID
\*------------------------------------*/
/**
  * Custom grid style which is suited more for the chicopee design
  * These are used on most master pages
*/
@media screen and (min-width: 50em) {
  .group__outer {
    zoom: 1;
    margin-left: -3.448275862%;
  }
  .group__outer:before, .group__outer:after {
    content: " ";
    display: block;
    height: 0;
    overflow: hidden;
  }
  .group__outer:after {
    clear: both;
  }
}

@media screen and (min-width: 50em) {
  .col__three {
    float: left;
    margin-left: 3.448275862%;
    width: 29.862068965%;
  }
}
@media screen and (min-width: 50em) {
  .col__three--spilt {
    width: 46.5%;
  }
}
@media screen and (min-width: 87.8125em) {
  .col__three--spilt {
    width: 29.862068965%;
  }
}
@media screen and (min-width: 50em) {
  .col__three--full {
    float: none;
    width: 96.45%;
    clear: both;
  }
}
@media screen and (min-width: 87.8125em) {
  .col__three--full {
    float: left;
    margin-left: 3.448275862%;
    width: 29.862068965%;
    clear: none;
  }
}

.col__two {
  margin-bottom: 48px;
}
@media screen and (min-width: 50em) {
  .col__two {
    float: left;
    margin-left: 3.448275862%;
    width: 46.5%;
  }
}

.fullbox__holder--banner .col__two {
  margin-bottom: 0;
}

.section__btm__mobile {
  margin-bottom: 48px;
}

/*------------------------------------*\
    #PRODUCT FILTERS
\*------------------------------------*/
/**
  * Grid column for the slidedown product filter. Because of the design we are having a
  * a left column, a main column and a right column
*/
.col-filter__eu {
  float: left;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-filter__eu {
    width: 45%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__eu {
    width: 30.769230769%;
  }
}

.col-filter {
  float: left;
  width: 100%;
  /**
       * Left Filter column
     */
  /**
       * Equal columns throughout the product filter
     */
  /**
       * Right Filter column
     */
}
@media screen and (min-width: 30em) {
  .col-filter {
    width: 45%;
    margin-left: 2.051282051%;
    margin-right: 2.051282051%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter {
    width: 30.769230769%;
  }
}
.col-filter__left {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-filter__left {
    width: 45%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__left {
    width: 21.538461538%;
    margin-right: 7.179487179%;
  }
}
.col-filter__equal {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-filter__equal {
    width: 45%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__equal {
    width: 27.564103%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__equal--left {
    width: 23.769231%;
    margin-right: 9%;
  }
}
.col-filter__equal--right {
  float: none;
}
@media screen and (min-width: 970px) {
  .col-filter__equal--right {
    margin-left: 9%;
    margin-right: 0;
    float: left;
  }
}
.col-filter__equal--center {
  margin-left: 0;
  margin-right: 0;
}
.col-filter__right {
  width: 100%;
}
@media screen and (min-width: 970px) {
  .col-filter__right {
    width: 23.179487179%;
    float: right;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 570px) {
  .col-filter__right .option {
    width: 50%;
    float: left;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__right .option {
    width: 100%;
    float: none;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__rightfs {
    margin-right: 2.051282051%;
  }
}
.col-filter__wrap {
  width: 100%;
}
.col-filter__wrap--outer {
  width: 100%;
}
@media screen and (min-width: 970px) {
  .col-filter__wrap--outer {
    width: 69.4%;
    margin-left: 2.051282051%;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__wrap {
    width: 70.3%;
    margin-left: 2.051282051%;
    margin-right: 1.2%;
  }
}
.col-filter__wrap .col-filter {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-filter__wrap .col-filter {
    width: 40.31%;
  }
}
.col-filter__wrap--left {
  margin-left: 0;
  margin-right: 10.538462%;
}
.col-filter__euleft {
  margin-left: 0;
}
.col-filter__euright {
  width: 100%;
}
@media screen and (min-width: 970px) {
  .col-filter__euright {
    width: 23.179487179%;
    margin-left: 2.7%;
  }
}
@media screen and (min-width: 570px) {
  .col-filter__euright .option {
    width: 100%;
    float: left;
  }
}
@media screen and (min-width: 970px) {
  .col-filter__euright .option {
    width: 100%;
    float: none;
  }
}

/*------------------------------------*\
    #SEGMENT PRODUCT GRID
\*------------------------------------*/
/**
  * Product Master Pages using these sets of classes as the grid is different
  * Mainly used on the product listing master page.
*/
.col-product {
  width: 100%;
  float: right;
}
@media screen and (min-width: 66.875em) {
  .col-product {
    width: 73.572%;
  }
}
.col-product__filter {
  width: 100%;
  float: left;
  margin-bottom: 48px;
}
@media screen and (min-width: 66.875em) {
  .col-product__filter {
    width: 21.429%;
  }
}
.col-product__filter .col-filter,
.col-product__filter .col-filter__eu {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-product__filter .col-filter,
.col-product__filter .col-filter__eu {
    width: 45%;
    margin-left: 2.051282051%;
    margin-right: 2.051282051%;
  }
}
@media screen and (min-width: 66.875em) {
  .col-product__filter .col-filter,
.col-product__filter .col-filter__eu {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.col-product__filter .col-filter--nav,
.col-product__filter .col-filter__eu--nav {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .col-product__filter .col-filter--nav,
.col-product__filter .col-filter__eu--nav {
    width: inherit;
    margin-left: 2.051282051%;
    margin-right: 2.051282051%;
  }
}
@media screen and (min-width: 66.875em) {
  .col-product__filter .col-filter--nav,
.col-product__filter .col-filter__eu--nav {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.col-product__filter .col-filter__right,
.col-product__filter .col-filter__eu__right {
  width: 100%;
}
.col-product__filter .option {
  margin-bottom: 36px;
}
.col-product__filter .btn {
  display: none;
}

/*------------------------------------*\
    #MAP SECTION
\*------------------------------------*/
/**
  * Select a region section needed a different column grid to support the custom
  * Design made after final sign off, please only use this on the map section
*/
.col-map {
  width: 100%;
}
@media screen and (min-width: 65.5em) {
  .col-map {
    width: 66%;
    float: right;
  }
}
.col-map__regions {
  width: 100%;
}
@media screen and (min-width: 65.5em) {
  .col-map__regions {
    width: 34%;
    float: left;
  }
}
.col-map__regions--spilt {
  width: 100%;
  float: left;
}
@media screen and (min-width: 30em) {
  .col-map__regions--spilt {
    width: 50%;
  }
}
@media screen and (min-width: 50em) {
  .col-map__regions--spilt {
    width: 33.333%;
  }
}
@media screen and (min-width: 65.5em) {
  .col-map__regions--spilt {
    width: 50%;
  }
}

/*------------------------------------*\
    #NEWS POST SECTION
\*------------------------------------*/
.colgrid {
  width: 100%;
}

.news-article-sidebar {
  vertical-align: top;
  padding-top: 0;
  padding-bottom: 2.962962963%;
}

@media screen and (min-width: 56.25em) {
  .colgrid--news-view {
    display: table-row;
  }
  .colgrid--news-view .colgrid__item {
    display: table-cell;
  }
  .colgrid--news-view .colgrid__item--main {
    width: 60.5%;
  }
}
.colgrid--news-view .colgrid__item--aside {
  padding-right: 2.76%;
  padding-left: 2.76%;
}
@media screen and (min-width: 56.25em) {
  .colgrid--news-view .colgrid__item--aside {
    width: 31.85185%;
  }
}
@media screen and (min-width: 56.25em) {
  .colgrid--news-view .colgrid__item--news {
    width: 31.85185%;
  }
}

/*------------------------------------*\
    #TESTING
\*------------------------------------*/
.grid-style-helper {
  background: blue;
  height: 50px;
  margin-bottom: 10px;
}

.region {
  width: 100%;
  background: #f1f1ef;
  clear: both;
}
@media screen and (min-width: 50em) {
  .region {
    margin-top: 100px;
  }
}

.pop-up {
  float: right;
}

.fixed-detail {
  overflow: hidden;
}
.fixed-detail__wrap {
  position: absolute;
  top: 30%;
  width: 100%;
  left: 0;
}
.fixed-detail__main {
  margin-bottom: 35px;
}
.fixed-detail__title {
  margin-bottom: 25px;
}
.fixed-detail__text-wrap {
  float: left;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .fixed-detail__text-wrap--indent {
    padding-left: 176px;
  }
}

@media screen and (min-width: 62em) {
  .strip {
    position: absolute;
    left: 3%;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 3;
  }
  .strip span.ic {
    display: block;
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .strip span.ic i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 54px;
    left: 49px;
  }
  .strip span.ic i.buildingcare {
    top: 56px;
  }
  .strip span.ic i.industry {
    top: 55px;
    left: 51px;
  }
  .strip span.ic i.healthcare {
    top: 59px;
    left: 50px;
  }
  .strip span.ic i.automotive {
    top: 56px;
  }
  .strip span.ic i.aerospace {
    top: 57px;
  }
  .strip:before, .strip:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 1px;
    height: 50%;
    background: #fff;
  }
  .strip:before {
    margin-top: -64px;
  }
  .strip:after {
    margin-top: 128px;
  }
}
.faqs {
  width: 100%;
}

.notice-bar {
  background: #e61e26;
  height: auto;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
  position: relative;
}
.notice-bar p {
  margin: 0;
  padding: 0;
}
.notice-bar a.close {
  color: #ffffff;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.notice-bar a.link {
  color: #ffffff;
  text-decoration: underline;
}
.notice-bar a.link:hover, .notice-bar a.link:active, .notice-bar a.link:focus {
  text-decoration: none;
}
.notice-bar span {
  background: #404041;
  border-radius: 3px;
  margin-right: 0;
  text-decoration: none;
  padding: 4px 20px;
  color: #ffffff;
}

@media screen and (min-width: 87.8125em) {
  .notice-bar.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
}
/*------------------------------------*\
    #LINKS
\*------------------------------------*/
a {
  text-decoration: none;
  outline: none;
  color: #e61e26;
}

.segment-link {
  width: 100%;
  text-align: left;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 30em) {
  .segment-link {
    width: 49%;
  }
}
@media screen and (min-width: 53.125em) {
  .segment-link {
    width: 23%;
  }
}
@media screen and (min-width: 65.5em) {
  .segment-link {
    width: 19%;
  }
}
.segment-link i {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 75em) {
  .segment-link i {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}

.body-primary {
  color: #22272f;
}
.body-primary:hover, .body-primary:active, .body-primary:focus {
  color: #e61e26;
}

.hover--secondary:hover, .hover--secondary:active, .hover--secondary:focus {
  color: #e7c11e;
}
.hover--primary:hover, .hover--primary:active, .hover--primary:focus {
  color: #e61e26;
}
.hover--tertiary:hover, .hover--tertiary:active, .hover--tertiary:focus {
  color: #404041;
}
.hover--opacity:hover, .hover--opacity:active, .hover--opacity:focus {
  opacity: 0.8;
  filter: alpha(opacity=80%);
  zoom: 1;
}

/*------------------------------------*\
    #TYPE
\*------------------------------------*/
p {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 26px;
  line-height: 1.625rem;
  letter-spacing: -0.015em;
  margin-bottom: 15px;
}

.caps {
  text-transform: uppercase;
}

/*------------------------------------*\
    #FONT-STYLES
\*------------------------------------*/
/**
  * Unique Font-Family Names, Matching Weights and Styles
  * To reduce duplicate code we want to separate font styles into their own classes
  * Based on an article here - http://bit.ly/1OUqwGs
*/
.c400, .holder-offset__answer p, .news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.c500, .split-form, .contact-form textarea, .contact-form input[type=text],
.contact-form input[type=url],
.contact-form input[type=tel],
.contact-form input[type=email], .keyword {
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.c700, #cookie-bar, .jqvmap-label, thead, .pagination a,
.pagination .page-numbers, .notice-bar, .notice-bar span {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.a350 {
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 350;
  font-style: normal;
}

.a300, .table td, .selectboxit-text, .selectboxit-container *, .input__select, .form-select select, .results li h2, .ticklist__inline li, .slider-list-text p,
.slider-list-text li, .news-article h2, .content h3 {
  font-family: "AvenirLTStd-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}

/*------------------------------------*\
    #FONT-SIZING
\*------------------------------------*/
/**
  * Assigning a class for each heading style
  * We now have those styles attached to a very flexible selector that can be moved anywhere
  * Instead of using the .hN notation (i.e .h1) use abstrat classes of the first six letters of
  * Greek alphabet. More information here - http://bit.ly/1P2tXJz
  * Read from an article on CSS Wizary here  - http://bit.ly/1kLpGPM
*/
.alpha {
  font-size: 41px;
  font-size: 2.5625rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 50em) {
  .alpha {
    font-size: 58.5px;
    font-size: 3.65625rem;
  }
}
@media screen and (min-width: 75em) {
  .alpha {
    font-size: 65px;
    font-size: 4.0625rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}

.beta, .holder-offset__answer p {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 75em) {
  .beta, .holder-offset__answer p {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gamma, .selectboxit-text, .selectboxit-container *, .form-select select, .results li h2, .news-article h2, .content h3 {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 75em) {
  .gamma, .selectboxit-text, .selectboxit-container *, .form-select select, .results li h2, .news-article h2, .content h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.delta, .ticklist__inline li, .slider-list-text p,
.slider-list-text li {
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 75em) {
  .delta, .ticklist__inline li, .slider-list-text p,
.slider-list-text li {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.delta__title {
  margin-bottom: 21px;
  line-height: 33px;
  line-height: 2.0625rem;
}
@media screen and (min-width: 75em) {
  .delta__title {
    line-height: 37px;
    line-height: 2.3125rem;
  }
}
.delta__lrg {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 75em) {
  .delta__lrg {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.epsilon, .table td, thead, .news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
  line-height: 16px;
  line-height: 1rem;
}
@media screen and (min-width: 75em) {
  .epsilon, .table td, thead, .news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.zeta, #cookie-bar p, .jqvmap-label, .pagination a,
.pagination .page-numbers, .notice-bar p {
  font-size: 13.5px;
  font-size: 0.84375rem;
}
@media screen and (min-width: 75em) {
  .zeta, #cookie-bar p, .jqvmap-label, .pagination a,
.pagination .page-numbers, .notice-bar p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.zetapara {
  font-size: 13.5px;
  font-size: 0.84375rem;
  line-height: 19px;
  line-height: 1.1875rem;
}
@media screen and (min-width: 75em) {
  .zetapara {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
}

.eta {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 75em) {
  .eta {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.theta {
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 75em) {
  .theta {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/**
  * Abstract classes, this time borrowing SI prefixes.
  * These classes are the ones above h1 and are the seldom used ones that make stuff massive!
  * Please use with !!Caution
*/
.tera {
  font-size: 135px;
  font-size: 8.4375rem;
}

.giga, .sales-block__footer i {
  font-size: 97px;
  font-size: 6.0625rem;
}

.mega {
  font-size: 87px;
  font-size: 5.4375rem;
}

.kilo, .feature-icons__image--2col i {
  font-size: 65px;
  font-size: 4.0625rem;
}

/*------------------------------------*\
    #CONTENT STYLING
\*------------------------------------*/
/**
  * Styles used for elements wrapped inside a .content div
  * Mainly used within a CMS. To give flexiblity to clients we wrap everything in a .content div
  * So the styles are ready and waiting for the client to use within content editors
*/
.content h3 {
  color: #e61e26;
  margin-bottom: 20px;
  line-height: 35px;
  line-height: 2.1875rem;
}
@media screen and (min-width: 75em) {
  .content h3 {
    line-height: 35px;
    line-height: 2.1875rem;
  }
}
.content p {
  color: #585858;
}
.content p strong {
  color: #22272f;
}
.content a:hover, .content a:active, .content a:focus {
  color: #22272f;
}
.content ul {
  width: 100%;
  margin-top: 20px;
}
.content ul li {
  background-image: url("../..//assets/img/bullet.png");
  background-repeat: no-repeat;
  background-position: 0px 10px;
  padding: 2px 0 2px 25px;
  margin-bottom: 10px;
  line-height: 25px;
  line-height: 1.5625rem;
  margin-top: 0;
  color: #e61e26;
  border-bottom: none;
}
.content ul li:before {
  display: none;
}
.content ol {
  padding: 0 0 0px 20px;
  width: 100%;
  margin-top: 20px;
}
.content ol li {
  list-style-type: decimal;
  padding: 2px 0 2px 10px;
  margin-bottom: 10px;
  line-height: 25px;
  line-height: 1.5625rem;
  margin-top: 0;
  color: #e61e26;
  border-bottom: none;
}
.content ol li:before {
  display: none;
}

.content__buildingcare h3 {
  color: #93b13d;
}
.content__buildingcare ul li {
  color: #93b13d;
  background-image: url("../..//assets/img/bullet-buildingcare.png");
}
.content__buildingcare ol li {
  color: #93b13d;
}

.content__industry h3 {
  color: #253d74;
}
.content__industry ul li {
  color: #253d74;
  background-image: url("../..//assets/img/bullet-industry.png");
}
.content__industry ol li {
  color: #253d74;
}

.content__healthcare h3 {
  color: #25aae1;
}
.content__healthcare ul li {
  color: #25aae1;
  background-image: url("../..//assets/img/bullet-healthcare.png");
}
.content__healthcare ol li {
  color: #25aae1;
}

.content__automotive h3 {
  color: #e7c11f;
}
.content__automotive ul li {
  color: #e7c11f;
  background-image: url("../..//assets/img/bullet-automotive.png");
}
.content__automotive ol li {
  color: #e7c11f;
}

.content__aerospace h3 {
  color: #e7c11f;
}
.content__aerospace ul li {
  color: #e7c11f;
  background-image: url("../..//assets/img/bullet-aerospace.png");
}
.content__aerospace ol li {
  color: #e7c11f;
}

.product-title {
  margin-bottom: 26px;
  padding-bottom: 29px;
  border-bottom: 1px solid #a2a5ae;
}
.product-title__kicker {
  display: block;
  margin: 0 0 8px;
  color: #e61e26;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.product-title__heading {
  display: block;
  margin-bottom: 15px;
}

.product-desc p {
  margin-bottom: 39px;
  letter-spacing: -0.015em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  .product-desc p {
    line-height: 26px;
    line-height: 1.625rem;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 85.125em) {
  .product-desc .btn {
    width: 100%;
  }
}
.product-desc .html-block h1 {
  font-size: 24px;
  margin-bottom: 50px;
  color: #000;
}

.product-btn-lead {
  margin-bottom: 14px;
}
@media screen and (min-width: 85.125em) {
  .product-btn-lead {
    margin-right: 14px;
  }
}

.title__banner {
  border-bottom: 1px solid #ffffff;
  padding: 0 0 37px;
  margin: -12px 0 33px;
  line-height: 38px;
  line-height: 2.375rem;
}
@media screen and (min-width: 75em) {
  .title__banner {
    line-height: 49px;
    line-height: 3.0625rem;
  }
}

.page-title {
  width: 100%;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  margin-top: 3px;
}
@media screen and (min-width: 30em) {
  .page-title {
    width: 49%;
  }
}
@media screen and (min-width: 53.125em) {
  .page-title {
    width: 23%;
  }
}
@media screen and (min-width: 65.5em) {
  .page-title {
    width: 19%;
  }
}

/*------------------------------------*\
    #NEWS ARTICLE STYLING
\*------------------------------------*/
.news-article p {
  color: #585858;
}
.news-article p strong {
  color: #22272f;
}
.news-article a {
  word-wrap: break-word;
}
.news-article a:hover, .news-article a:active, .news-article a:focus {
  color: #22272f;
}
.news-article em {
  font-style: italic;
  color: #585858;
}
.news-article h2:first-of-type {
  margin-top: 0;
}
.news-article h2,
.news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
  color: #e61e26;
  margin-top: 36px;
}
.news-article h2 {
  line-height: 36px;
}
.news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
  margin-bottom: -5px;
}
.news-article ul {
  width: 100%;
}
.news-article ul li {
  background-image: url("../..//assets/img/bullet.png");
  background-repeat: no-repeat;
  background-position: 0px 10px;
  padding: 2px 0 2px 25px;
  margin-bottom: 10px;
  line-height: 25px;
  line-height: 1.5625rem;
  margin-top: 0;
}
.news-article ol {
  padding: 0 0 18px 18px;
  width: 100%;
}
.news-article ol li {
  list-style-type: decimal;
  padding: 2px 0 2px 3px;
  margin-bottom: 3px;
}
.news-article--white p {
  color: #ffffff;
}
.news-article--white ul li,
.news-article--white ol li {
  color: #ffffff;
  background-image: none;
}

.keyword {
  color: #404041;
}

.slider-list-text p,
.slider-list-text li {
  color: #ffffff;
}
.slider-list-text ul {
  list-style: disc;
  margin-left: 25px;
}
.slider-list-text ul li {
  margin-bottom: 8px;
}

/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
body.admin-bar .header {
  top: 32px;
}
body.admin-bar .breadcrumbs__sticky {
  top: 132px;
}

.main-content {
  background: #ffffff;
}

/*------------------------------------*\
    #PAGE SECTIONS
\*------------------------------------*/
.section {
  padding: 50px 0;
}
@media screen and (min-width: 30em) {
  .section {
    padding: 100px 0;
  }
}
.section__full {
  padding: 50px 20px;
}
@media screen and (min-width: 30em) {
  .section__full {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 46.8125em) {
  .section__full {
    padding: 80px 60px;
  }
}
.section__half {
  padding: 60px 0;
}
.section__text {
  margin-bottom: 33px;
}
.section__tabs {
  padding: 100px 0 44px 0;
}
.section__nobottom {
  padding: 100px 0 0;
}
.section__notop {
  padding: 0 0 100px;
}
.section--no-image-top {
  padding: 100px 0 80px;
}
.section__xsm {
  padding: 25px 0 25px 0;
}
.section__sm {
  padding: 35px 0 35px 0;
}

/**
  * On specific segment pages there is a sticky header being used
  * which is causing problems when a user opens up either the product finder and the select region
  * dropdowns. To solve this i've added a body class to the segment page. and added a separate
  * class which is below.
*/
.section__btm--bp-large {
  padding: 0 0 48px 0;
}
@media screen and (min-width: 50em) {
  .section__btm--bp-large {
    padding: 0;
  }
}

.border-top {
  border-top: 1px solid #dcdcdd;
}

.fullbox__holder {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.fullbox__holder img,
.fullbox__holder iframe {
  width: 100%;
}
.fullbox__holder--relative {
  position: relative;
}
.fullbox__holder--banner {
  padding: 80px 0;
}
@media screen and (min-width: 64em) {
  .fullbox__holder--banner {
    padding: 120px 0;
  }
}
@media screen and (min-width: 90em) {
  .fullbox__holder--banner {
    padding: 211px 0;
  }
}

.faqs .fullbox {
  padding: 80px 0;
}
@media screen and (min-width: 64em) {
  .faqs .fullbox {
    padding: 120px 0;
  }
}
@media screen and (min-width: 65.5em) {
  .faqs .fullbox {
    padding: 0;
  }
}

@media screen and (min-height: 900px) {
  .hero .fullbox {
    padding: 80px 0;
  }
}
@media screen and (min-height: 900px) and (min-width: 64em) {
  .hero .fullbox {
    padding: 120px 0;
  }
}
@media screen and (min-height: 900px) and (min-width: 65.5em) {
  .hero .fullbox {
    padding: 0;
  }
}

.hero .fullbox__holder {
  padding: 80px 0px 95px 0px;
}
@media screen and (min-width: 65.5em) {
  .hero .fullbox__holder {
    padding: 0;
  }
}

.fullbox {
  display: table;
  width: 100%;
}
@media screen and (min-width: 65.5em) {
  .fullbox {
    padding: 80px 0;
  }
}
@media screen and (min-height: 900px) {
  .fullbox {
    height: 100%;
  }
}

.faqs .fullbox {
  height: 100%;
}

.banner .fullbox {
  padding: 0;
}

.sales-block {
  padding: 35px;
}
@media screen and (min-width: 88.375em) {
  .sales-block {
    padding: 35px 45px;
  }
}
.sales-block span {
  display: block;
  margin-bottom: 10px;
}
.sales-block span:last-of-type {
  margin-bottom: 0;
}

.option {
  margin-bottom: 60px;
}

.option__bottom-full {
  margin-bottom: 37px;
}

.option__bottom-half {
  margin-bottom: 28px;
}

.option__bottom-third {
  margin-bottom: 25px;
}

.option__bottom-quater {
  margin-bottom: 15px;
}

.option-title {
  margin: 0 auto 20px;
  width: 100%;
}
.option-title__indent {
  width: 97%;
}
.option-title__mainindent {
  width: 99%;
}
.option-title__region {
  margin: 0 auto 8px;
}

.slidedown {
  width: 100%;
  background: #f1f1ef;
  clear: both;
}

.tab-ct {
  min-height: 375px;
  position: relative;
  clear: both;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

/*------------------------------------*\
     #HEADER
 \*------------------------------------*/
.page-head {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
}

.site-logo {
  float: left;
  padding: 22px 0 0;
}
@media screen and (min-width: 22.5em) {
  .site-logo {
    padding: 19px 0;
  }
}
@media screen and (min-width: 25.0625em) {
  .site-logo {
    padding: 32px 0;
  }
}
@media screen and (min-width: 39.8125em) {
  .site-logo {
    padding: 28px 0;
  }
}
.site-logo img {
  width: 100px;
}
@media screen and (min-width: 22.5em) {
  .site-logo img {
    width: 150px;
  }
}
@media screen and (min-width: 25.0625em) {
  .site-logo img {
    width: 180px;
  }
}
@media screen and (min-width: 39.8125em) {
  .site-logo img {
    width: inherit;
  }
}
.site-logo__static {
  padding: 31px 0;
}
@media screen and (min-width: 22.5em) {
  .site-logo__static {
    padding: 28px 0;
  }
}

/*------------------------------------*\
     #FOOTER
 \*------------------------------------*/
.sales-block__footer {
  margin-bottom: 48px;
}
@media screen and (min-width: 39.8125em) {
  .sales-block__footer {
    width: 50%;
    float: left;
    margin-right: 5.928571428%;
  }
}
@media screen and (min-width: 62em) {
  .sales-block__footer {
    margin-right: 2.857143%;
  }
}
@media screen and (min-width: 87.8125em) {
  .sales-block__footer {
    margin-right: 3.928571%;
  }
}
@media screen and (min-width: 89em) {
  .sales-block__footer {
    margin-right: 5.928571428%;
  }
}
.sales-block__footer span {
  line-height: 35px;
  line-height: 2.1875rem;
}
@media screen and (min-width: 88.375em) {
  .sales-block__footer span {
    line-height: 1;
  }
}
.sales-block__footer span a {
  color: #ffffff;
}
.sales-block__footer i {
  display: none;
}
@media screen and (min-width: 88.375em) {
  .sales-block__footer i {
    display: block;
    bottom: 10px;
    position: relative;
  }
}

.btn__page-footer {
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 39.8125em) {
  .btn__page-footer {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 62em) {
  .btn__page-footer {
    margin-bottom: 56px;
  }
}

.page-footer {
  position: relative;
}
.page-footer .col {
  width: 50%;
  float: left;
  margin-bottom: 48px;
}
@media screen and (min-width: 39.8125em) {
  .page-footer .col {
    width: 20%;
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 62em) {
  .page-footer .col {
    margin-bottom: 0;
    width: 11.714286%;
  }
}
@media screen and (min-width: 87.8125em) {
  .page-footer .col {
    width: 12.714285714%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 39.8125em) {
  .page-footer .col__inner {
    margin-left: 2.857142857%;
  }
}
@media screen and (min-width: 62em) {
  .page-footer .col__inner {
    margin-left: 0;
  }
}
@media screen and (min-width: 87.8125em) {
  .page-footer .col__inner {
    margin-left: 0.857143%;
  }
}
@media screen and (min-width: 89em) {
  .page-footer .col__inner {
    margin-left: 1.857143%;
  }
}
.page-footer .col__outer {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 39.8125em) {
  .page-footer .col__outer {
    width: 43%;
  }
}
@media screen and (min-width: 62em) {
  .page-footer .col__outer {
    width: 220px;
  }
}

.copyright__item {
  display: block;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .copyright__item {
    float: left;
    text-align: left;
  }
}
.copyright__item:last-of-type {
  display: block;
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 48em) {
  .copyright__item:last-of-type {
    float: right;
    text-align: left;
    margin-top: 0;
  }
}

.footer-berry p {
  width: initial;
  display: inline-block;
  padding-bottom: 5px;
  padding-right: 10px;
  vertical-align: bottom;
}
@media screen and (min-width: 48em) {
  .footer-berry p {
    padding-bottom: 9px;
  }
}
.footer-berry svg {
  display: inline-block;
  width: 94px;
  height: 49px;
}
@media screen and (min-width: 48em) {
  .footer-berry svg {
    width: 124px;
    height: 65px;
  }
}

/*------------------------------------*\
    #NEWS
\*------------------------------------*/
.zigzag__inner {
  width: 100%;
  float: left;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 56.25em) {
  .zigzag__inner {
    display: flex;
    flex-flow: row wrap;
    float: none;
    max-width: 100%;
  }
}

.zigzag__box--small {
  width: 100%;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (min-width: 31.25em) {
  .zigzag__box--small {
    min-height: 300px;
  }
}
@media screen and (min-width: 56.25em) {
  .zigzag__box--small {
    min-height: 400px;
  }
}
@media screen and (min-width: 68.75em) {
  .zigzag__box--small {
    min-height: 490px;
  }
}
.zigzag__box--large {
  position: relative;
  z-index: 1;
  width: 100%;
}

.zigzag--with-arrows .zigzag__box--small {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 56.25em) {
  .zigzag--with-arrows .zigzag__box--small {
    width: 35%;
  }
}
.zigzag--with-arrows .zigzag__box--small:after {
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  bottom: 0;
  border: solid transparent;
  border-bottom-color: #D4D3D3;
  position: absolute;
  pointer-events: none;
  border-width: 28px;
  margin-top: 0;
  margin-left: -28px;
  z-index: 2;
}
@media screen and (min-width: 56.25em) {
  .zigzag--with-arrows .zigzag__box--small:after {
    top: 50%;
    left: auto;
    bottom: auto;
    border-bottom-color: transparent;
    border-left-color: #ffffff;
    margin-top: -28px;
    margin-left: 0;
  }
}
.zigzag--with-arrows .zigzag__box--large {
  width: 100%;
}
@media screen and (min-width: 56.25em) {
  .zigzag--with-arrows .zigzag__box--large {
    width: 65%;
    height: auto;
  }
}
@media screen and (min-width: 56.25em) {
  .zigzag--with-arrows .zigzag__inner:nth-child(2n) .zigzag__box--small {
    order: 2;
  }
  .zigzag--with-arrows .zigzag__inner:nth-child(2n) .zigzag__box--large {
    order: 1;
  }
}
@media screen and (min-width: 56.25em) {
  .zigzag--with-arrows .zigzag__inner:nth-child(2n-1) .zigzag__box--small:after {
    left: auto;
    right: 0;
    border-right-color: #ffffff;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}
.zigzag--with-arrows .zigzag__text-container {
  height: auto;
  padding-top: 25px;
  padding-bottom: 35px;
  margin-right: 30px;
  margin-left: 30px;
  position: relative;
  color: #7b7b7d;
}
@media screen and (min-width: 68.75em) {
  .zigzag--with-arrows .zigzag__text-container {
    padding-bottom: 94px;
    padding-top: 35px;
    margin-right: 48px;
    margin-left: 48px;
  }
}

.zigzag--news {
  margin-bottom: 48px;
  margin-top: 48px;
  display: block;
}
.zigzag--news .zigzag__text-container {
  margin-bottom: 20px;
}
@media screen and (min-width: 56.25em) {
  .zigzag--news .zigzag__text-container {
    padding-bottom: 80px;
  }
}
.zigzag--news .zigzag__text-container p {
  margin-bottom: inherit;
}
@media screen and (min-width: 56.25em) {
  .zigzag--news .zigzag__text-container p {
    margin-bottom: 50px;
  }
}

footer.news-date {
  height: 58px;
  padding-top: 20px;
  margin-right: 30px;
  margin-left: 30px;
  border-top: solid 1px #dcdcdd;
}
@media screen and (min-width: 68.75em) {
  footer.news-date {
    margin-right: 48px;
    margin-left: 48px;
    padding-bottom: 50px;
  }
}

.block-heading {
  color: #565a5c;
  height: 2.667em;
  line-height: 2.667em;
}
.block-heading--grey {
  background-color: #D4D3D3;
}
.block-heading--primary {
  background: #e61e26;
}

.block-heading__icon {
  width: 3.33334em;
  height: 100%;
  line-height: 2.667em;
  margin-right: 15px;
  text-align: center;
  vertical-align: top;
  display: inline-block;
  position: relative;
}
.block-heading__icon i {
  font-size: 30px;
  font-size: 1.875rem;
  top: 2px;
}
@media screen and (min-width: 85.3125em) {
  .block-heading__icon i {
    font-size: 40px;
    font-size: 2.5rem;
    top: 0;
  }
}

.block-heading__twitter {
  color: #ffffff;
  background-color: #25AAE1;
}
.block-heading__twitter a {
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (min-width: 39.8125em) {
  .block-heading__twitter a {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.block-heading__facebook {
  color: #ffffff;
  background-color: #253d74;
}

.block-heading__aluminium {
  color: #ffffff;
  background-color: #a2a5ae;
}

.block-heading--news {
  height: auto;
  line-height: 33px;
  position: relative;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  overflow: hidden;
}
@media screen and (min-width: 68.75em) {
  .block-heading--news {
    line-height: 40px;
    line-height: 2.5rem;
    padding-top: 26px;
    padding-bottom: 23px;
    padding-left: 48px;
  }
}
.block-heading--news a {
  color: #22272f;
}
.member {
  box-sizing: border-box;
  margin-bottom: 15px;
  width: 100%;
  vertical-align: top;
}
@media screen and (min-width: 30em) {
  .member {
    width: 49.5%;
    padding-left: 1%;
    padding-right: 1%;
  }
}
@media screen and (min-width: 50em) {
  .member {
    width: 32.9%;
  }
}
@media screen and (min-width: 65.5em) {
  .member {
    width: 24.7%;
  }
}
.member__image {
  position: relative;
  min-height: 150px;
  background: #e2e2e2;
}
.member__image img {
  width: 100%;
  height: 100%;
}
.member__image:hover .member__location {
  transition: all 0.3s ease-out;
  background: rgba(230, 30, 38, 0);
}
.member__image:hover .member__contacts {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.member__location {
  background: #e61e26;
  position: absolute;
  bottom: 0;
  padding: 10px;
  margin: 10px;
  transition: all 0.3s ease-out;
  z-index: 1;
}
.member__contacts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(230, 30, 38, 0.75);
  transition: all 0.3s ease-out;
}
.member__contacts .contactbtn {
  position: relative;
  width: 200px;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
  transition: all 0.3s ease-out;
}
.member__contacts .contactbtn:hover {
  background: #fff;
  color: #e61e26;
}
.member__info {
  background: #fff;
  padding: 18px 18px 25px 18px;
}
.member__info span {
  display: block;
  margin-bottom: 8px;
}
.member__info p {
  margin-bottom: 10px;
}

.member__contacts-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.member__contacts-links i {
  padding-right: 10px;
}

.spaced-top {
  margin-top: 30px;
}

.mix,
.gap {
  display: inline-block;
}

.mix {
  display: none;
}

.mix:after {
  content: attr(data-myorder);
}

.mix:before {
  content: "";
  display: inline-block;
}

/*------------------------------------*\
     #MISC
 \*------------------------------------*/
.heading {
  margin-bottom: 48px;
}
.heading__section {
  margin-bottom: 48px;
}
@media screen and (min-width: 50em) {
  .heading__section {
    margin-bottom: 80px;
  }
}
.heading__subtitle {
  margin-top: 9px;
  line-height: 18px;
  line-height: 1.125rem;
}
.heading__subtitle--alpha {
  margin-top: 8px;
  line-height: 18px;
  line-height: 1.125rem;
}
@media screen and (min-width: 65.5em) {
  .heading__subtitle--alpha {
    margin-top: 4px;
  }
}

.heading--top {
  margin-top: 48px;
}

.title-banner {
  width: 100%;
  float: left;
}
@media screen and (min-width: 48em) {
  .title-banner {
    width: 85.714285714%;
  }
}
.title-banner--full {
  width: 100%;
}
.title-banner__noline {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.title-banner__line {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.title-banner__line--dark {
  border-bottom: 1px solid #dcdcdd;
  padding-bottom: 32px;
  margin-bottom: 36px;
}
.title-banner__line--dark-thin {
  border-bottom: 1px solid #dcdcdd;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.title-icon {
  display: none;
}
@media screen and (min-width: 48em) {
  .title-icon {
    display: block;
    width: 7.857142857%;
    float: right;
    color: #ffffff;
    margin-top: 50px;
  }
}

.digital-header__item {
  display: block;
  float: none;
  text-align: center;
  margin: 19px 0;
}
@media screen and (min-width: 0) and (max-width: 480) {
  .digital-header__item:first-of-type {
    margin: 19px 0 0 0;
  }
}
@media screen and (min-width: 30em) {
  .digital-header__item {
    margin: 28px 0;
  }
}
@media screen and (min-width: 50em) {
  .digital-header__item {
    margin: 32px 0;
  }
  .digital-header__item:first-of-type {
    float: left;
    text-align: left;
  }
  .digital-header__item:last-of-type {
    float: right;
    text-align: right;
  }
}
.digital-header__logo {
  display: block;
  min-height: 46px;
}
@media screen and (min-width: 50em) {
  .digital-header__logo {
    margin-top: 5px;
  }
}
.digital-header__btn {
  display: block !important;
  max-width: 272px;
  margin: 0 auto;
}
@media screen and (min-width: 39.8125em) {
  .digital-header__btn {
    display: inline-block !important;
  }
}
.digital-header__btn:first-of-type {
  margin: 0 auto 20px;
}
@media screen and (min-width: 39.8125em) {
  .digital-header__btn:first-of-type {
    margin: 0 20px 0 0;
  }
}

.digital {
  display: block;
  zoom: 1;
}
.digital:before, .digital:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.digital:after {
  clear: both;
}
@media screen and (min-width: 62em) {
  .digital {
    /* OLD - iOS 6-, Safari 3.1-6 */
    /* OLD - Firefox 19- (buggy but mostly works) */
    /* TWEENER - IE 10 */
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: stretch;
    /* Match Height */
  }
}
.digital__item {
  width: 100%;
  /* For old syntax, otherwise collapses. */
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- */
  /* Chrome */
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@media screen and (min-width: 62em) {
  .digital__item {
    width: 50%;
  }
}
@media screen and (min-width: 62em) {
  .digital__item--full {
    width: 100%;
  }
}
.digital__image {
  width: 100%;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 62em) {
  .digital__image {
    min-height: 420px;
  }
}
.digital__heading {
  margin-bottom: 20px;
}
.digital__heading--leading {
  line-height: 38px;
  line-height: 2.375rem;
}
@media screen and (min-width: 75em) {
  .digital__heading--leading {
    line-height: 49px;
    line-height: 3.0625rem;
  }
}
.digital__text {
  max-width: 430px;
}
.digital__text--leading {
  line-height: 36px;
  line-height: 2.25rem;
}
@media screen and (min-width: 75em) {
  .digital__text--leading {
    line-height: 42px;
    line-height: 2.625rem;
  }
}
.digital__contact {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 50px;
}

.block-text {
  width: 100%;
  height: 236px;
  min-height: 236px;
  padding-top: 0;
  display: table;
}
@media screen and (min-width: 25.0625em) {
  .block-text {
    padding-right: 7%;
    padding-left: 7%;
  }
}
@media screen and (min-width: 30em) {
  .block-text {
    background-image: url("../../assets/img/twitter_quotes.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
}

.imageblock {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center center;
  position: relative;
}
.imageblock__section {
  padding: 175px 0;
}
@media screen and (min-width: 65.5em) {
  .imageblock__section {
    padding: 250px 0;
  }
}
.imageblock__section--small {
  padding: 101px 0 129px;
}
.imageblock--region {
  margin-bottom: 2px;
}
.imageblock__overlay {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.imageblock__overlay--grid {
  background: url(../../assets/img/bg-grid.png) repeat;
}
.imageblock__overlay-nobg-mobile {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 87.8125em) {
  .imageblock__overlay-nobg-mobile {
    background: url(../../assets/img/bg.png) repeat;
  }
}

.segment-nav {
  margin-bottom: 0;
  width: 100%;
}
.segment-nav li {
  margin-bottom: 0;
  border-bottom: 1px solid #464c4e;
}
@media screen and (min-width: 87.8125em) {
  .segment-nav li {
    border-bottom: none;
  }
}
.segment-nav i {
  display: none;
}
@media screen and (min-width: 87.8125em) {
  .segment-nav i {
    display: block;
    font-size: 87px;
    font-size: 5.4375rem;
  }
}
.segment-nav span {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 42px;
  line-height: 2.625rem;
}
@media screen and (min-width: 87.8125em) {
  .segment-nav span {
    font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    font-size: 0.9375rem;
    text-transform: uppercase;
    color: #A1A5AD;
  }
}

.segment-nav__block {
  margin-bottom: 0;
}
@media screen and (min-width: 87.8125em) {
  .segment-nav__block {
    float: left;
    width: 16.6666666667%;
    padding: 37px 0;
    display: table;
    border-left: 1px solid #ffffff;
  }
  .segment-nav__block:last-of-type {
    border-right: 1px solid #ffffff;
  }
}
.segment-nav__block a {
  width: 100%;
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 87.8125em) {
  .segment-nav__block a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0;
  }
}

.segment-block {
  background-color: #ffffff;
  clear: both;
  width: 100%;
  vertical-align: top;
}
.segment-block__relative {
  position: relative;
  top: 12px;
  bottom: initial;
}
.segment-block i {
  display: block;
  font-size: 87px;
  font-size: 5.4375rem;
}
.segment-block ul,
.segment-block li {
  margin-bottom: 0;
}
.segment-block li {
  float: left;
  width: 50%;
  height: 171px;
  display: table;
}
@media screen and (min-width: 30em) {
  .segment-block li {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 50em) {
  .segment-block li {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 65.5em) {
  .segment-block li {
    border-left: 1px solid #f1f1ef;
  }
  .segment-block li:last-of-type {
    border-right: 1px solid #f1f1ef;
  }
}
.segment-block li a {
  width: 100%;
  height: 171px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.segment-block li a .segment-block__reveal {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  cursor: pointer;
  overflow: hidden;
  color: #ffffff;
}
.segment-block li a .segment-block__reveal div {
  margin-bottom: 0;
  line-height: 20px;
  line-height: 1.25rem;
}
.segment-block li a:hover .segment-block__reveal, .segment-block li a:active .segment-block__reveal, .segment-block li a:focus .segment-block__reveal {
  top: 0;
  height: 171px;
  padding: 10%;
  z-index: 10;
}

@media screen and (min-width: 50em) {
  .segment-block__off {
    position: relative;
    bottom: 0;
  }
}

.widget {
  position: relative;
  display: block;
  width: 100%;
}
.widget a {
  display: block;
}
.widget img {
  width: 100%;
  display: block;
}

.widget__multiply {
  background: url(../../assets/img/bg.png) repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.widget__multiply--relative {
  position: relative;
}

.widget__group {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.widget__group--height {
  height: 100%;
}
@media screen and (max-width: 62em) {
  .widget__group--relative {
    position: relative;
  }
}

.widget__overlay {
  padding: 22px 35px 0px 35px;
}
.widget__overlay--title {
  margin-bottom: 14px;
  display: block;
  line-height: 36px;
  line-height: 2.25rem;
}
.widget__overlay .btn__bottomleft {
  bottom: 28px;
  left: 35px;
}

.widget__overlay--primary {
  background: #e61e26;
  color: #ffffff;
}

.youtube_link {
  padding-bottom: 28px;
}
.youtube_link i {
  top: 1px;
}

.curve {
  display: none;
}
@media screen and (min-width: 50em) {
  .curve {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 200;
  }
  .curve__reversed {
    top: 0;
  }
}

.curve__pos {
  position: relative;
}
.curve__pos--top {
  top: 18px;
}

.border-curve {
  height: 18px;
  width: 100%;
  background: #404041;
  position: absolute;
  bottom: 0;
  z-index: 100;
}
.border-curve span {
  width: calc(50% + 21px);
  background: #e61e26;
  height: 18px;
  display: block;
  position: relative;
}
.border-curve span svg {
  position: absolute;
  top: 0;
  right: -1px;
}
.border-curve__reversed {
  top: 0;
}

.video-frame {
  position: relative;
}

.caption {
  left: 0;
  z-index: 500;
}
@media screen and (min-width: 87.8125em) {
  .caption {
    width: 50%;
    text-align: center;
    padding: 49px 41px;
  }
}
.caption__title {
  margin-bottom: 9px;
  line-height: 34px;
  line-height: 2.125rem;
}
.caption__title a:hover, .caption__title a:active, .caption__title a:focus {
  color: #22272f;
}
.caption__container {
  margin-bottom: 48px;
}

@media screen and (min-width: 87.8125em) {
  .holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
.holder__section {
  padding: 48px 0 100px;
}
@media screen and (min-width: 87.8125em) {
  .holder__section {
    padding: 120px 0;
  }
}
.holder__nohide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.faq-slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.faq-slideshow__images {
  position: relative;
  z-index: 1;
}
.faq-slideshow__images li {
  min-height: 600px;
}
@media screen and (min-width: 46.8125em) {
  .faq-slideshow__images li {
    min-height: 715px;
  }
}
@media screen and (min-width: 87.8125em) {
  .faq-slideshow__images li {
    min-height: 975px;
  }
}

@media screen and (min-width: 87.8125em) {
  .menu-slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
}
.menu-slideshow__images {
  position: relative;
  z-index: 1;
}
.menu-slideshow__images li {
  min-height: 280px;
}
@media screen and (min-width: 87.8125em) {
  .menu-slideshow__images li {
    min-height: 683px;
  }
}

.product-slider {
  margin-bottom: -48px;
  position: relative;
}
@media screen and (min-width: 50em) {
  .product-slider {
    width: 87.659192746%;
    float: right;
  }
}
.product-slider img {
  width: 100%;
}
.product-slider .slides {
  display: block;
}

.product-slider.loading {
  min-height: 400px;
  background: url("../../assets/img/ajax-loader.gif") no-repeat center center;
}
.product-slider.loading .slides {
  display: none;
}

.blockquote__cite {
  margin-top: 29px;
  display: block;
  margin-bottom: 30px;
}

.blockquote .flex-control-nav {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}
.blockquote .flex-control-paging li a {
  background: #a2a5ae;
}

.blockquote__closequote {
  position: absolute;
  right: 50px;
  bottom: 65px;
}

.contact-details {
  position: relative;
  top: -8px;
  padding: 0 15px;
  display: block;
  float: left;
}
.contact-details__region {
  display: block;
}
.contact-details__phone {
  display: block;
}

/*------------------------------------*\
    #ARTICLE POST LAYOUT
\*------------------------------------*/
.news-article * ~ * {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.newsletter-form {
  padding-top: 60px;
  margin-right: 5.23%;
  margin-left: 5.23%;
  padding-bottom: 60px;
  border-bottom: 1px solid #dcdcdd;
}

.colgrid--news-view .news-article {
  padding-top: 0;
  margin-right: 5.23%;
  margin-left: 5.23%;
  padding-bottom: 60px;
  border-bottom: 1px solid #dcdcdd;
}
.colgrid--news-view .news-article .news-date {
  height: 82px;
  line-height: 82px;
  padding-top: 0;
  margin-right: 0;
  margin-left: 0;
  display: block;
  border-top: 0;
}

.news-article__subtitle {
  line-height: 36px;
}

.news-article__image {
  margin-top: 0;
  margin-bottom: 42px;
}

.news-article-sidebar {
  padding-right: 0;
  padding-left: 0;
}

.news-article__search {
  margin-top: 42px;
}

.page__image {
  margin-top: 55px;
  margin-bottom: 42px;
}

.social-sharing {
  padding-top: 28px;
  padding-bottom: 48px;
  margin-right: 5.23%;
  margin-left: 5.23%;
}
.social-sharing h3 {
  margin-bottom: 15px;
}

.fixed-image {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

.fixed-image.fixed-height {
  height: 975px;
}

.v-center-wrap {
  position: relative;
  height: 100%;
}

.v-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.holder-offset {
  width: 90%;
  padding: 0 20px;
}
@media screen and (min-width: 62em) {
  .holder-offset {
    width: 75%;
    margin-left: 16%;
  }
}
@media screen and (min-width: 74.375em) {
  .holder-offset {
    margin-left: 13%;
    width: 54%;
  }
}
@media screen and (min-width: 103.125em) {
  .holder-offset {
    margin-left: 11%;
  }
}
@media screen and (min-width: 110.9375em) {
  .holder-offset {
    padding: 0;
    margin-left: 0;
  }
}

.holder-offset__answer p {
  color: #ffffff;
  line-height: 37px;
  line-height: 2.3125rem;
}
@media screen and (min-width: 75em) {
  .holder-offset__answer p {
    line-height: 43.5px;
    line-height: 2.71875rem;
  }
}
.holder-offset__answer p a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
}
.holder-offset__answer p a:hover {
  border-bottom: 1px solid #ffffff;
}

.product-toggle {
  display: none;
  position: fixed;
  right: 0;
  top: 90px;
  z-index: 600;
  padding: 15px 20px 13px 20px;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: none;
  background: #e61e26;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 39.8125em) {
  .product-toggle {
    display: block;
  }
}
.product-toggle__text {
  margin-right: 10px;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 26px;
  line-height: 1.625rem;
}
.product-toggle .icon__circle {
  vertical-align: inherit;
  top: 1px;
  left: auto;
}
.product-toggle .icon__circle i.i-left {
  display: block;
  padding: 6px 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  top: auto;
  left: auto;
}

.product-selector {
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  padding-top: 100px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  background: #ffffff;
  z-index: 599;
  transition: all 0.4s ease;
}
@-webkit-keyframes fastFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fastFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
.product-selector--active {
  opacity: 1;
  transform: translateX(0);
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: fastFade;
  animation-name: fastFade;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.product-selector__inner {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  overflow-y: scroll;
}

.product-finder-close {
  position: absolute;
  top: 6px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.product-finder-close:hover {
  transform: rotate(180deg);
}
.product-finder-close:before, .product-finder-close:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #585858;
}
.product-finder-close:before {
  transform: rotate(45deg);
}
.product-finder-close:after {
  transform: rotate(-45deg);
}

.no-scroll {
  overflow: hidden;
}

.regions {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.regions.active {
  visibility: visible;
  opacity: 1;
}
.regions .region-options li a span {
  width: 65%;
  line-height: 1.2;
  font-size: 16px;
}
@media screen and (min-width: 48em) {
  .regions .region-options li a span {
    font-size: 19px;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(34, 39, 47, 0.4);
}
.overlay .close-overlay {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 20px;
}
.overlay .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #ffffff;
  padding: 40px;
  width: 800px;
  max-width: calc(100% - 40px);
}
.overlay .overlay-content-title {
  margin-bottom: 30px;
}
.overlay .overlay-content-text {
  margin-bottom: 30px;
}
.overlay .overlay-content .region-options {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0;
}
.overlay .overlay-content .region-options li {
  display: block;
  position: relative;
  margin: 5px;
  width: 150px;
  height: 150px;
  max-width: 100%;
}
.overlay .overlay-content .region-options li:before {
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: 0;
}
@media screen and (min-width: 48em) {
  .overlay .overlay-content .region-options li {
    width: 280px;
    height: 280px;
    margin: 10px;
  }
}
.overlay .overlay-content .region-options li a {
  display: block;
  width: 100%;
  height: 100%;
  border: 10px solid #a2a5ae;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media screen and (min-width: 48em) {
  .overlay .overlay-content .region-options li a {
    border: 20px solid #a2a5ae;
  }
}
.overlay .overlay-content .region-options li a img {
  max-width: calc(100% - 40px);
}
.overlay .overlay-content .region-options li a img,
.overlay .overlay-content .region-options li a > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.overlay .overlay-content .region-options li a img span,
.overlay .overlay-content .region-options li a > span span {
  display: block;
}
.overlay .overlay-content .region-options li a:hover {
  background-color: #e61e26;
}
.overlay .overlay-content .region-options li a:hover img {
  opacity: 0.1;
}
.overlay .overlay-content .region-options li a:hover > span {
  color: #ffffff;
}

body.home.blog-id-1 .overlay {
  background-color: #22272f !important;
}
body.home.blog-id-1 .overlay .close-overlay {
  display: none;
}

/*------------------------------------*\
    #RESPONSIVE
\*------------------------------------*/
/*------------------------------------*\
    #PRINT
\*------------------------------------*/
@media print {
  header, nav, footer, .product-disclaimer {
    display: none;
  }

  img {
    max-width: 500px;
  }

  body {
    font: 12pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.3em;
  }
}
/**
  * #Components
*/
/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: 0;
  padding: 15px 37px 13px;
  background: #e61e26;
  color: #ffffff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
}
.btn__round {
  border-radius: 50px;
}
.btn__shark {
  background: #22272f;
}
.btn--digital {
  background: none;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: inherit;
  padding: 9px 27px 9px 27px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26px;
  line-height: 1.625rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 75em) {
  .btn--digital {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.btn__nocursor {
  cursor: default;
}
.btn__icon-circle {
  padding: 9px 27px 9px 37px;
  line-height: 26px;
}
.btn__icon-circle--pad {
  padding: 9px 27px 9px 27px;
}
@media screen and (min-width: 30em) {
  .btn__icon-circle--pad {
    padding: 9px 27px 9px 37px;
  }
}
.btn__bottomleft {
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn__find {
  margin: 26px 0 29px 7px;
}
@media screen and (min-width: 33.125em) {
  .btn__find {
    margin: 26px 0 29px 17px;
  }
}
.btn__postbtn {
  margin: 50px 0 0 0;
}
.btn__header {
  float: right;
  padding: 10px 21px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 23.75em) {
  .btn__header {
    margin: 18px 0 29px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.btn__header span {
  display: none;
}
@media screen and (min-width: 33.125em) {
  .btn__header {
    padding: 9px 27px 9px 27px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .btn__header span {
    display: inline-block;
  }
}
@media screen and (min-width: 46.5em) {
  .btn__header {
    padding: 9px 17px;
  }
  .btn__header span {
    display: none;
  }
}
@media screen and (min-width: 52.8125em) {
  .btn__header {
    padding: 9px 27px 9px 27px;
  }
  .btn__header span {
    display: inline-block;
  }
}
@media screen and (min-width: 87.8125em) {
  .btn__header {
    padding: 9px 17px;
  }
  .btn__header span {
    display: none;
  }
}
@media screen and (min-width: 77.0625em) {
  .btn__header {
    padding: 9px 27px 9px 27px;
  }
  .btn__header span {
    display: inline-block;
  }
}
.btn__industry {
  background: #253d74;
}
.btn__foodservice {
  background: #ed1c24;
}
.btn__buildingcare {
  background: #93b13d;
}
.btn__healthcare {
  background: #25aae1;
}
.btn__speciality {
  background: #e7c11d;
}
.btn__innovation {
  background: #a1a5ac;
}
.btn__automotive {
  background: #e7c11f;
}
.btn__aerospace {
  background: #e7c11f;
}
.btn .icon {
  margin-left: 11px;
  transition: left 0.15s linear;
}
.btn:hover .icon, .btn:active .icon, .btn:focus .icon {
  left: 5px;
}
.btn--hide {
  display: none;
}
@media screen and (min-width: 48em) {
  .btn--hide {
    display: block;
  }
}

.section-btn {
  margin-top: 24px;
  display: block;
}
@media screen and (min-width: 50em) {
  .section-btn {
    float: right;
    margin-top: 48px;
  }
}

.btn__alto {
  background: #D4D3D3;
}
.btn__alto:hover, .btn__alto:active, .btn__alto:focus {
  background: #e61e26;
}

.btn__primary-alto {
  background: #e61e26;
}
.btn__primary-alto:hover, .btn__primary-alto:active, .btn__primary-alto:focus {
  background: #D4D3D3;
}

.btn__secondary-alto {
  background: #e7c11e;
}
.btn__secondary-alto:hover, .btn__secondary-alto:active, .btn__secondary-alto:focus {
  background: #D4D3D3;
}

.btn__industry-shark {
  background: #253d74;
}
.btn__industry-shark:hover, .btn__industry-shark:active, .btn__industry-shark:focus {
  background: #22272f;
}
.btn__industry-shark--switch {
  background: #22272f;
}
.btn__industry-shark--switch:hover, .btn__industry-shark--switch:active, .btn__industry-shark--switch:focus {
  background: #253d74;
}
.btn__foodservice-shark {
  background: #ed1c24;
}
.btn__foodservice-shark:hover, .btn__foodservice-shark:active, .btn__foodservice-shark:focus {
  background: #22272f;
}
.btn__foodservice-shark--switch {
  background: #22272f;
}
.btn__foodservice-shark--switch:hover, .btn__foodservice-shark--switch:active, .btn__foodservice-shark--switch:focus {
  background: #ed1c24;
}
.btn__buildingcare-shark {
  background: #93b13d;
}
.btn__buildingcare-shark:hover, .btn__buildingcare-shark:active, .btn__buildingcare-shark:focus {
  background: #22272f;
}
.btn__buildingcare-shark--switch {
  background: #22272f;
}
.btn__buildingcare-shark--switch:hover, .btn__buildingcare-shark--switch:active, .btn__buildingcare-shark--switch:focus {
  background: #93b13d;
}
.btn__healthcare-shark {
  background: #25aae1;
}
.btn__healthcare-shark:hover, .btn__healthcare-shark:active, .btn__healthcare-shark:focus {
  background: #22272f;
}
.btn__healthcare-shark--switch {
  background: #22272f;
}
.btn__healthcare-shark--switch:hover, .btn__healthcare-shark--switch:active, .btn__healthcare-shark--switch:focus {
  background: #25aae1;
}
.btn__speciality-shark {
  background: #e7c11d;
}
.btn__speciality-shark:hover, .btn__speciality-shark:active, .btn__speciality-shark:focus {
  background: #22272f;
}
.btn__speciality-shark--switch {
  background: #22272f;
}
.btn__speciality-shark--switch:hover, .btn__speciality-shark--switch:active, .btn__speciality-shark--switch:focus {
  background: #e7c11d;
}
.btn__innovation-shark {
  background: #a1a5ac;
}
.btn__innovation-shark:hover, .btn__innovation-shark:active, .btn__innovation-shark:focus {
  background: #22272f;
}
.btn__innovation-shark--switch {
  background: #22272f;
}
.btn__innovation-shark--switch:hover, .btn__innovation-shark--switch:active, .btn__innovation-shark--switch:focus {
  background: #a1a5ac;
}
.btn__automotive-shark {
  background: #e7c11f;
}
.btn__automotive-shark:hover, .btn__automotive-shark:active, .btn__automotive-shark:focus {
  background: #22272f;
}
.btn__automotive-shark--switch {
  background: #22272f;
}
.btn__automotive-shark--switch:hover, .btn__automotive-shark--switch:active, .btn__automotive-shark--switch:focus {
  background: #e7c11f;
}
.btn__aerospace-shark {
  background: #e7c11f;
}
.btn__aerospace-shark:hover, .btn__aerospace-shark:active, .btn__aerospace-shark:focus {
  background: #22272f;
}
.btn__aerospace-shark--switch {
  background: #22272f;
}
.btn__aerospace-shark--switch:hover, .btn__aerospace-shark--switch:active, .btn__aerospace-shark--switch:focus {
  background: #e7c11f;
}

.btn__industry-shark {
  background: #253d74;
}
.btn__industry-shark:hover, .btn__industry-shark:active, .btn__industry-shark:focus {
  background: #22272f;
}
.btn__industry-shark--switch {
  background: #22272f;
}
.btn__industry-shark--switch:hover, .btn__industry-shark--switch:active, .btn__industry-shark--switch:focus {
  background: #253d74;
}

.btn__primary-shark {
  background: #e61e26;
}
.btn__primary-shark:hover, .btn__primary-shark:active, .btn__primary-shark:focus {
  background: #22272f;
}
.btn__primary-shark--switch {
  background: #22272f;
}
.btn__primary-shark--switch:hover, .btn__primary-shark--switch:active, .btn__primary-shark--switch:focus {
  background: #e61e26;
}

.icon {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}
.icon__circle {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  vertical-align: baseline;
  position: relative;
}
.icon__circle i {
  position: relative;
}
.icon__circle i.up {
  top: 2px;
}
.icon__circle i.down {
  top: 3px;
}
.icon__circle i.i-left {
  top: 4px;
}
.icon--rotate-active {
  transform: rotate(270deg);
  transition: all 0.15s ease;
}
.icon--height:before {
  line-height: 26px;
}
.icon--font {
  font-size: 15px;
  font-size: 0.9375rem;
}

.icon__spacing--beta {
  margin-right: 15px;
  font-size: 40px;
  font-size: 2.5rem;
}

.iconbtn {
  border: 0;
  cursor: pointer;
}
.iconbtn .icon {
  position: relative;
  margin-left: 7px;
}
.iconbtn .icon--textcenter {
  top: -2px;
}

.iconbtn__nobg {
  background: none;
}

.playbtn {
  width: 90px;
  height: 90px;
  position: relative;
  color: #ffffff;
  background: #e61e26;
  display: inline-block;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-align: center;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.playbtn i {
  position: absolute;
  top: 54%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-size: 44px;
  font-size: 2.75rem;
}
.playbtn__industry {
  background: #253d74;
}
.playbtn__foodservice {
  background: #ed1c24;
}
.playbtn__buildingcare {
  background: #93b13d;
}
.playbtn__healthcare {
  background: #25aae1;
}
.playbtn__speciality {
  background: #e7c11d;
}
.playbtn__innovation {
  background: #a1a5ac;
}
.playbtn__automotive {
  background: #e7c11f;
}
.playbtn__aerospace {
  background: #e7c11f;
}

.playbtn__noflow {
  position: absolute;
}

.circlebtn {
  width: 46px;
  height: 46px;
  color: #ffffff;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
  border: 0;
}
.circlebtn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circlebtn i.icon {
  font-size: 26px;
  font-size: 1.625rem;
}
.circlebtn__secondary {
  background: #e7c11e;
}
.circlebtn__search {
  margin-left: 25px;
}

.squarebtn {
  color: #ffffff;
  display: block;
  position: relative;
  cursor: pointer;
  text-align: center;
  border: 0;
}
.squarebtn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-size: 1.625rem;
}
.squarebtn__primary {
  background: #e61e26;
}
.squarebtn__widgetplay {
  width: 102px;
  height: 80px;
}
.squarebtn__widgetplay i {
  line-height: 25px;
}
.squarebtn__widgetplay i.icon {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 62em) {
  .squarebtn__widgetplay--relative {
    position: absolute;
    top: -80px;
  }
}

@media screen and (max-width: 43.125em) {
  .btn-full__690 {
    width: 100%;
  }
}

.contactbtn {
  border: 1px solid #fff;
  color: #fff;
}

.btnhide__large2 {
  display: none;
}
@media screen and (min-width: 62em) {
  .btnhide__large2 {
    display: inline-block;
  }
}

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
.listblock {
  width: 100%;
  display: table;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.listblock-item {
  width: 100%;
  height: 100%;
  display: table-row;
  background: #ffffff;
}
.listblock-item:nth-child(2n) {
  background: #f5f6f7;
}

.listblock-icon {
  color: #A1A5AD;
  right: 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-size: 1.875rem;
  transition: right 0.3s linear;
}

.listblock-link {
  width: 100%;
  padding-top: 48px;
  padding-right: 115px;
  padding-bottom: 47px;
  padding-left: 46px;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.listblock-link:hover .listblock-icon, .listblock-link:active .listblock-icon, .listblock-link:focus .listblock-icon {
  right: 30px;
}

.listblock-date {
  display: block;
  margin-bottom: 12px;
}

.listblock-title {
  color: #585858;
}

.ticklist li {
  padding-left: 37px;
  line-height: 24px;
  line-height: 1.5rem;
}
.ticklist li:before {
  margin-left: -37px;
  float: left;
  font-family: "chicopee";
  content: "k";
  display: inline-block;
  color: #93B13D;
  vertical-align: middle;
  position: relative;
}
.ticklist__inline {
  margin-bottom: 10px;
  display: inline-block;
}
.ticklist__inline li {
  width: 33.333%;
  float: left;
  color: #e61e26;
}
.ticklist__inline li:before {
  color: #e61e26;
}

.crosslist li {
  padding-left: 37px;
  line-height: 24px;
  line-height: 1.5rem;
}
.crosslist li:before {
  margin-left: -37px;
  float: left;
  font-family: "chicopee";
  content: "G";
  display: inline-block;
  color: #e61e26;
  vertical-align: middle;
  position: relative;
}

.list-box {
  background: #ffffff;
  padding: 40px 25px 20px 25px;
}
@media screen and (min-width: 30em) {
  .list-box {
    padding: 50px 50px 20px 47px;
  }
}
.list-box li {
  border-bottom: 1px solid #f5f6f7;
  padding-bottom: 28px;
  margin-bottom: 33px;
}
.list-box--digital {
  padding: 0;
  background: none;
  color: #ffffff;
  margin-top: 70px;
}
.list-box--digital li:before {
  color: #ffffff;
}

.slider-box {
  background: #ffffff;
  padding: 65px 50px;
  margin-bottom: 55px;
}
.slider-box__title {
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f1ef;
  padding-bottom: 35px;
}
.slider-box__notab {
  margin-bottom: 0;
}
.slider-box img {
  display: none;
}
@media screen and (min-width: 87.8125em) {
  .slider-box img {
    display: inline-block;
  }
}
.slider-box .center8 {
  width: 100%;
}
@media screen and (min-width: 87.8125em) {
  .slider-box .center8 {
    width: 64.53897%;
  }
}

.list-box__title {
  padding-bottom: 30px;
  background: #f5f6f7;
}

.tight-list {
  margin-bottom: 0;
}
.tight-list li {
  margin-bottom: 7px;
}
.tight-list li a {
  font-family: "AvenirLTStd-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #585858;
  font-size: 15px;
  font-size: 0.9375rem;
}
.tight-list li a:hover, .tight-list li a:active, .tight-list li a:focus {
  color: #e61e26;
}

.tight-list__heading {
  margin-bottom: 7px;
}

.slideshow-nav-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
}
@media screen and (min-width: 22.5em) {
  .slideshow-nav-wrapper {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}
@media screen and (min-width: 39.8125em) {
  .slideshow-nav-wrapper {
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 87.8125em) {
  .slideshow-nav-wrapper {
    justify-content: center;
  }
}

.slideshow-nav {
  position: relative;
  display: flex;
  flex-flow: column;
  margin: 25px 0 35px;
}
@media screen and (min-width: 22.5em) {
  .slideshow-nav {
    flex-flow: row;
    justify-content: center;
    padding: 6px;
    border: 1px solid #e61e26;
    border-radius: 30px;
  }
}
.slideshow-nav li {
  position: relative;
  margin: 0;
}
.slideshow-nav li:not(:last-child) {
  margin: 0 0 10px 0;
}
@media screen and (min-width: 22.5em) {
  .slideshow-nav li:not(:last-child) {
    margin: 0 6px 0 0;
  }
}
.slideshow-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 43px;
  margin: 0;
  padding: 8px 15px;
  color: #e61e26;
  background: #f1f1ef;
  border-radius: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13.5px;
  font-size: 0.84375rem;
  transition: all 0.2s linear;
}
@media screen and (min-width: 22.5em) {
  .slideshow-nav li a {
    width: auto;
    background: none;
  }
}
@media screen and (min-width: 39.8125em) {
  .slideshow-nav li a {
    min-height: initial;
    padding: 15px 30px;
  }
}
.slideshow-nav li.flex-active a {
  color: #ffffff;
  background: #e61e26;
}

.tablist {
  zoom: 1;
  width: 100%;
  margin: 0 auto 56px;
  text-align: center;
}
.tablist:before, .tablist:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.tablist:after {
  clear: both;
}
.tablist .current a {
  color: #e61e26;
}
.tablist__item {
  line-height: 45px;
  margin-bottom: 0;
  display: inline-block;
}
.tablist__item--divide {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  text-indent: -9999px;
}
@media screen and (min-width: 30em) {
  .tablist__item--divide {
    margin-left: 14px;
    margin-right: 14px;
  }
}
@media screen and (min-width: 50em) {
  .tablist__item--divide {
    border-left: 1px solid #b4b7bd;
  }
}
@media screen and (min-width: 87.8125em) {
  .tablist__item--divide {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.tablist__link {
  vertical-align: middle;
  color: #A1A5AD;
}
.tablist__link span {
  display: none;
}
@media screen and (min-width: 50em) {
  .tablist__link span {
    display: inline-block;
  }
}
@media screen and (min-width: 50em) {
  .tablist__link i {
    display: none;
  }
}
.tablist__link:hover, .tablist__link:active, .tablist__link:focus {
  color: #e61e26;
}
@media screen and (min-width: 801px) and (max-width: 991px) {
  .tablist .gamma, .tablist .selectboxit-text, .tablist .selectboxit-container *, .selectboxit-container .tablist *, .tablist .form-select select, .form-select .tablist select, .tablist .results li h2, .results li .tablist h2, .tablist .content h3, .content .tablist h3, .tablist .news-article h2, .news-article .tablist h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.lang__title {
  margin-bottom: 16px;
}

.lang-list {
  vertical-align: top;
  margin-bottom: 0;
}

.lang-list__item {
  width: 100%;
  margin-bottom: 4px;
  float: left;
}
.lang-list__item--single {
  float: none;
  width: 100%;
}

.lang-list__link-ds {
  line-height: 26px;
  line-height: 1.625rem;
}

.lang-list__link {
  line-height: 26px;
  line-height: 1.625rem;
}
.lang-list__link:hover, .lang-list__link:active, .lang-list__link:focus {
  color: #e61e26;
}

.breadcrumbs {
  padding: 12px 0;
  width: 100%;
}

@media screen and (min-width: 87.8125em) {
  .breadcrumbs__sticky {
    position: fixed;
    z-index: 200;
    top: 99px;
  }
}
@media screen and (min-width: 87.8125em) and (min-width: 77em) {
  .breadcrumbs__sticky {
    top: 100px;
  }
}
.breadcrumbs--fixed {
  position: fixed;
  z-index: 999;
  top: 0px;
  width: 100%;
}

.jump {
  padding-top: 55px;
}

.breadcrumbs__list {
  margin-bottom: 0;
}
.breadcrumbs__list--segment {
  display: none;
  text-align: right;
}
@media screen and (min-width: 35.3125em) {
  .breadcrumbs__list--segment {
    display: inline-block;
    width: 49%;
  }
}
@media screen and (min-width: 53.125em) {
  .breadcrumbs__list--segment {
    width: 76%;
  }
}
@media screen and (min-width: 62.3125em) {
  .breadcrumbs__list--segment {
    width: 30%;
  }
}
@media screen and (min-width: 65.5em) {
  .breadcrumbs__list--segment {
    width: 28%;
  }
}
.breadcrumbs__list li {
  display: inline-block;
  margin-bottom: 0;
  color: #ffffff;
}
.breadcrumbs__list li span.light {
  padding: 0 3px;
}
.breadcrumbs__list li strong {
  font-weight: normal;
  color: #ffffff;
}
.breadcrumbs__list a {
  color: #ffffff;
}
.breadcrumbs__list a .icon {
  padding: 0 10px 0 0;
  top: 1px;
}
.breadcrumbs__list a:hover, .breadcrumbs__list a:active, .breadcrumbs__list a:focus {
  color: #404041;
}

.segment-sections {
  text-align: center;
  margin-bottom: 0;
  display: none;
}
@media screen and (min-width: 62.3125em) {
  .segment-sections {
    display: inline-block;
    width: 45%;
  }
}
@media screen and (min-width: 65.5em) {
  .segment-sections {
    width: 52%;
  }
}

.segment-sections__item {
  display: inline-block;
  margin-bottom: 0;
  line-height: 30px;
  margin: 0 3.4%;
}

.segment-sections__link:hover, .segment-sections__link:active, .segment-sections__link:focus {
  color: #404041;
}

.product-list {
  margin-bottom: 0;
}

.product-list__item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 48px;
}
@media screen and (min-width: 30em) {
  .product-list__item {
    width: 44%;
    margin-left: 2.634245187%;
    margin-right: 2.634245187%;
  }
}
@media screen and (min-width: 48em) {
  .product-list__item {
    width: 29.613%;
    margin-left: 1.650485436%;
    margin-right: 1.650485436%;
  }
}
.product-list__item .attachment-post-thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top -25px center;
     object-position: top -25px center;
  height: 225px;
}

.product-list__thumb {
  display: block;
  width: 100%;
  margin-bottom: 25px;
}
.product-list__thumb img {
  width: 100%;
}

.product-list__group {
  display: block;
}
.product-list__group--link {
  line-height: 27px;
  line-height: 1.6875rem;
  margin-bottom: 11px;
  display: block;
  word-break: break-word;
}
.product-list__group--link:hover, .product-list__group--link:active, .product-list__group--link:focus {
  color: #404041;
}
.product-list__nomin {
  display: block;
  margin-bottom: 27px;
}

.product-list__btn {
  display: block;
  width: 100%;
  padding: 8px 0 5px 0;
  border-top: 1px solid #A1A5AD;
  border-bottom: 1px solid #A1A5AD;
}
@media screen and (min-width: 25em) {
  .product-list__btn {
    padding: 15px 0 14px 0;
  }
}
@media screen and (min-width: 34.0625em) {
  .product-list__btn {
    padding: 8px 0 5px 0;
  }
}
.product-list__btn .icon-request-sample {
  margin-right: 7px;
}
@media screen and (min-width: 25em) {
  .product-list__btn .icon-request-sample {
    display: none;
  }
}
@media screen and (min-width: 34.0625em) {
  .product-list__btn .icon-request-sample {
    display: inline-block;
  }
}
.product-list__btn .icon-chevron-right {
  margin-left: 3px;
}
@media screen and (min-width: 30em) {
  .product-list__btn .icon-chevron-right {
    display: none;
  }
}
@media screen and (min-width: 34.0625em) {
  .product-list__btn .icon-chevron-right {
    display: inline-block;
  }
}
@media screen and (min-width: 65.5em) {
  .product-list__btn .icon-chevron-right {
    display: none;
  }
}
@media screen and (min-width: 67.25em) {
  .product-list__btn .icon-chevron-right {
    display: inline-block;
  }
}
.product-list__btn:hover, .product-list__btn:active, .product-list__btn:focus {
  color: #e61e26;
}
.product-list__btn--foodservice:hover, .product-list__btn--foodservice:active, .product-list__btn--foodservice:focus {
  color: #ed1c24;
}

.product-list__btn--option {
  margin-bottom: 56px;
}

.product-option__image {
  margin-bottom: 19px;
  width: 100%;
}

.product-option__title {
  float: left;
}

.product-option__art {
  float: right;
  margin-top: 6px;
}

.speclist__content {
  border-top: 1px solid #D4D3D3;
}

.speclist__sectionbtm {
  margin-bottom: 56px;
}

.speclist {
  display: block;
  margin-bottom: 0;
  position: relative;
  border-left: 1px solid #D4D3D3;
}
@media screen and (min-width: 53.125em) {
  .speclist {
    top: 1px;
  }
}
.speclist li {
  margin-bottom: 0;
}
.speclist .current {
  background: #f5f6f7;
  color: #e61e26;
  border-bottom: 1px solid #f5f6f7;
  border-top: 6px solid #e61e26;
  padding: 11px 0 10px;
}

.speclist__noicon .current {
  border-bottom: 0px solid #f5f6f7;
  padding: 27px 0 28px 0;
}
.speclist__noicon .current a {
  color: #e61e26;
}
@media screen and (max-width: 53.125em) {
  .speclist__noicon .current {
    background: #ffffff;
  }
}

.speclist__item {
  float: left;
  width: 20%;
  color: #A1A5AD;
  border-top: 1px solid #D4D3D3;
  border-right: 1px solid #D4D3D3;
  padding: 17px 0 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.speclist__item:hover, .speclist__item:active, .speclist__item:focus {
  color: #e61e26;
}
.speclist__item a {
  color: #A1A5AD;
}
.speclist__item a:hover, .speclist__item a:active, .speclist__item a:focus {
  color: #e61e26;
}
.speclist__item span {
  display: none;
}
@media screen and (min-width: 53.125em) {
  .speclist__item span {
    display: inline-block;
  }
}

.speclist__item--industry:hover, .speclist__item--industry:active, .speclist__item--industry:focus, .speclist__item--industrial:hover, .speclist__item--industrial:active, .speclist__item--industrial:focus {
  color: #253d74;
}
.speclist__item--industry.current, .speclist__item--industrial.current {
  border-top: 6px solid #253d74;
  color: #253d74;
}
.speclist__item--industry.current:hover, .speclist__item--industry.current:active, .speclist__item--industry.current:focus, .speclist__item--industrial.current:hover, .speclist__item--industrial.current:active, .speclist__item--industrial.current:focus {
  color: #253d74;
}
.speclist__item--foodservice:hover, .speclist__item--foodservice:active, .speclist__item--foodservice:focus {
  color: #ed1c24;
}
.speclist__item--foodservice.current {
  border-top: 6px solid #ed1c24;
  color: #ed1c24;
}
.speclist__item--foodservice.current:hover, .speclist__item--foodservice.current:active, .speclist__item--foodservice.current:focus {
  color: #ed1c24;
}
.speclist__item--buildingcare:hover, .speclist__item--buildingcare:active, .speclist__item--buildingcare:focus {
  color: #93b13d;
}
.speclist__item--buildingcare.current {
  border-top: 6px solid #93b13d;
  color: #93b13d;
}
.speclist__item--buildingcare.current:hover, .speclist__item--buildingcare.current:active, .speclist__item--buildingcare.current:focus {
  color: #93b13d;
}
.speclist__item--healthcare:hover, .speclist__item--healthcare:active, .speclist__item--healthcare:focus {
  color: #25aae1;
}
.speclist__item--healthcare.current {
  border-top: 6px solid #25aae1;
  color: #25aae1;
}
.speclist__item--healthcare.current:hover, .speclist__item--healthcare.current:active, .speclist__item--healthcare.current:focus {
  color: #25aae1;
}
.speclist__item--speciality:hover, .speclist__item--speciality:active, .speclist__item--speciality:focus {
  color: #e7c11d;
}
.speclist__item--speciality.current {
  border-top: 6px solid #e7c11d;
  color: #e7c11d;
}
.speclist__item--speciality.current:hover, .speclist__item--speciality.current:active, .speclist__item--speciality.current:focus {
  color: #e7c11d;
}
.speclist__item--automotive:hover, .speclist__item--automotive:active, .speclist__item--automotive:focus {
  color: #e7c11f;
}
.speclist__item--automotive.current {
  border-top: 6px solid #e7c11f;
  color: #e7c11f;
}
.speclist__item--automotive.current:hover, .speclist__item--automotive.current:active, .speclist__item--automotive.current:focus {
  color: #e7c11f;
}
.speclist__item--aerospace:hover, .speclist__item--aerospace:active, .speclist__item--aerospace:focus {
  color: #e7c11f;
}
.speclist__item--aerospace.current {
  border-top: 6px solid #e7c11f;
  color: #e7c11f;
}
.speclist__item--aerospace.current:hover, .speclist__item--aerospace.current:active, .speclist__item--aerospace.current:focus {
  color: #e7c11f;
}

#news-tabs {
  display: none;
}
@media screen and (min-width: 900px) {
  #news-tabs {
    display: block;
  }
}

#news-dropdown {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 900px) {
  #news-dropdown {
    display: none;
  }
}
#news-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../../assets/img/drop-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  pointer-events: none;
  z-index: 0;
}
#news-dropdown select {
  position: relative;
  z-index: 10;
  padding: 20px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ddd;
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  font-size: 16px;
}

.speclist__item--noicon {
  padding: 32px 0 28px;
  border-bottom: none;
}
.speclist__item--noicon span {
  display: inline-block;
}

.speclist__item--nopadding {
  padding: 0;
}

.speclist__item--left {
  float: left;
}

/* one item */
.speclist__item--noicon:first-child:nth-last-child(1),
.speclist__item:first-child:nth-last-child(1) {
  width: 100%;
}

/* two items */
.speclist__item--noicon:first-child:nth-last-child(2),
.speclist__item--noicon:first-child:nth-last-child(2) ~ li,
.speclist__item:first-child:nth-last-child(2),
.speclist__item:first-child:nth-last-child(2) ~ li {
  width: 50%;
}

/* three items */
.speclist__item--noicon:first-child:nth-last-child(3),
.speclist__item--noicon:first-child:nth-last-child(3) ~ li,
.speclist__item:first-child:nth-last-child(3),
.speclist__item:first-child:nth-last-child(3) ~ li {
  width: 33.3333%;
}

/* four items */
.speclist__item--noicon:first-child:nth-last-child(4),
.speclist__item--noicon:first-child:nth-last-child(4) ~ li,
.speclist__item:first-child:nth-last-child(4),
.speclist__item:first-child:nth-last-child(4) ~ li {
  width: 25%;
}

/* five items */
.speclist__item--noicon:first-child:nth-last-child(5),
.speclist__item--noicon:first-child:nth-last-child(5) ~ li,
.speclist__item:first-child:nth-last-child(5),
.speclist__item:first-child:nth-last-child(5) ~ li {
  width: 20%;
}

/* six items */
.speclist__item--noicon:first-child:nth-last-child(6),
.speclist__item--noicon:first-child:nth-last-child(6) ~ li {
  width: 16.6666666667%;
}

/* seven items */
.speclist__item--noicon:first-child:nth-last-child(7),
.speclist__item--noicon:first-child:nth-last-child(7) ~ li {
  width: 14.2857142857%;
}

/* eight items */
.speclist__item--noicon:first-child:nth-last-child(8),
.speclist__item--noicon:first-child:nth-last-child(8) ~ li {
  width: 12.5%;
}

/* nine items */
.speclist__item--noicon:first-child:nth-last-child(9),
.speclist__item--noicon:first-child:nth-last-child(9) ~ li {
  width: 11.1111111111%;
}

/* ten items */
.speclist__item--noicon:first-child:nth-last-child(10),
.speclist__item--noicon:first-child:nth-last-child(10) ~ li {
  width: 10%;
}

.col-three {
  width: 30.036%;
  float: left;
  margin-left: 3.2959%;
}

.col-four {
  width: 100%;
  float: left;
  margin-bottom: 56px;
}
@media screen and (min-width: 30em) {
  .col-four {
    margin-left: 3.2959%;
    width: 46%;
  }
}
@media screen and (min-width: 50em) {
  .col-four {
    margin-left: 3.2959%;
    width: 30%;
  }
}
@media screen and (min-width: 65.5em) {
  .col-four {
    width: 21.682%;
    margin-left: 3.2959%;
  }
}

.col-four__alt {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 56px;
}
@media screen and (min-width: 30em) {
  .col-four__alt {
    margin-left: 3.2959%;
    width: 46%;
  }
}
@media screen and (min-width: 50em) {
  .col-four__alt {
    margin-left: 3%;
    width: 29.9%;
  }
}
@media screen and (min-width: 65.5em) {
  .col-four__alt {
    width: 21.65%;
    margin-left: 3%;
  }
}

.feature-icons {
  margin-bottom: 0;
}
.feature-icons li {
  margin-bottom: 56px;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 30em) {
  .feature-icons li {
    margin-left: 3.2959%;
    width: 46%;
  }
}
@media screen and (min-width: 65.5em) {
  .feature-icons li {
    margin-left: 3.2959%;
    width: 29.7%;
    display: inline-block;
  }
}

.feature-icons__image {
  width: 33.103448275%;
  margin-right: 7.126436781%;
  float: left;
}
.feature-icons__image img {
  width: 100%;
}

.feature-icons__desc {
  width: 59.770114942%;
  float: left;
}

.feature-icons__title {
  margin-bottom: 7px;
}

.feature-icons--2col {
  margin-right: 5.23%;
  margin-left: 5.23%;
}
.feature-icons--2col li {
  margin-bottom: 56px;
  vertical-align: top;
}
@media screen and (min-width: 48em) {
  .feature-icons--2col li {
    width: 49%;
    display: inline-block;
  }
}
.feature-icons--2col li img {
  width: 100%;
}
.feature-icons--2col--list {
  margin-bottom: 26px;
  vertical-align: top;
}
@media screen and (min-width: 48em) {
  .feature-icons--2col--list {
    width: 49%;
    display: inline-block;
  }
}
.feature-icons--2col--list img {
  width: 100%;
}
.feature-icons--2col__segments {
  margin-top: 60px;
  margin-bottom: 0;
}

.feature-icons__image--2col {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 48em) {
  .feature-icons__image--2col i {
    font-size: 78px;
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 90em) {
  .feature-icons__image--2col i {
    font-size: 97px;
    font-size: 6.0625rem;
  }
}

.feature-icons__desc--2col {
  width: 70%;
  margin-left: 5px;
  display: inline-block;
}
@media screen and (min-width: 26.5625em) {
  .feature-icons__desc--2col {
    width: 78%;
  }
}
@media screen and (min-width: 48em) {
  .feature-icons__desc--2col {
    width: 70%;
    margin-left: 3%;
  }
}
@media screen and (min-width: 64em) {
  .feature-icons__desc--2col {
    width: 61%;
  }
}
@media screen and (min-width: 90em) {
  .feature-icons__desc--2col {
    width: 65%;
  }
}

.pagination {
  position: relative;
  width: 100%;
  height: 70px;
  float: left;
  border: 1px solid #D4D3D3;
  color: #A1A5AD;
  margin-top: 0;
  line-height: 70px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.35s ease-in-out, margin-top 0.35s ease-in-out;
}
.pagination ul,
.pagination li {
  margin-bottom: 0;
  color: #A1A5AD;
}
.pagination a,
.pagination .page-numbers {
  color: #A1A5AD;
}
.pagination a:hover, .pagination a:active, .pagination a:focus,
.pagination .page-numbers:hover,
.pagination .page-numbers:active,
.pagination .page-numbers:focus {
  color: #585858;
}

.pagination ul,
.pagination li {
  display: inline-block;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pagination li {
  margin-right: 3px;
  margin-left: 3px;
  position: relative;
}

.pagination li.active a {
  color: #e61e26;
}
.pagination li.active a:hover, .pagination li.active a:active, .pagination li.active a:focus {
  color: #585858;
}

.pagination .current {
  color: #e61e26;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pagination .prev {
  left: 0;
  border-right: solid 1px #D4D3D3;
}
.pagination .prev:before {
  content: "M";
}

.pagination .next {
  right: 0;
  border-left: solid 1px #D4D3D3;
}
.pagination .next:before {
  content: "m";
}

.pagination .prev,
.pagination .next {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 45px;
  height: 70px;
  color: #A1A5AD;
}
@media screen and (min-width: 30em) {
  .pagination .prev,
.pagination .next {
    width: 155px;
  }
}
.pagination .prev i,
.pagination .next i {
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (min-width: 30em) {
  .pagination .prev i,
.pagination .next i {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.pagination .prev:before,
.pagination .next:before {
  display: block;
  width: 45px;
  font-family: "chicopee" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 70px;
}
@media screen and (min-width: 30em) {
  .pagination .prev:before,
.pagination .next:before {
    width: 155px;
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.popular-news-articles {
  margin: 0 0 20px 0;
  padding: 0 7.5% 0 7.5%;
  display: inline-block;
  width: 100%;
}
.popular-news-articles li {
  margin-bottom: 0;
  width: 100%;
  line-height: 25px;
  list-style: none;
  float: left;
  padding: 25px 0 25px 0;
  border-bottom: solid 1px #dcdcdd;
}
.popular-news-articles li a {
  color: #ffffff;
}
.popular-news-articles li a:hover, .popular-news-articles li a:active, .popular-news-articles li a:focus {
  color: #dcdcdd;
}
.popular-news-articles .popular-news-article__img {
  width: 142px;
  height: 94px;
  float: right;
  margin-left: 10px;
  overflow: hidden;
  transition: all 0.19s linear;
}
.popular-news-articles .popular-news-article__img:hover, .popular-news-articles .popular-news-article__img:active, .popular-news-articles .popular-news-article__img:focus {
  opacity: 0.8;
  filter: alpha(opacity=80%);
  zoom: 1;
}
.popular-news-articles .news-date {
  display: block;
  color: #a2a5ae;
}

.product-search {
  margin: 0 0 48px 0;
  display: inline-block;
  width: 96%;
}
.product-search li {
  margin-bottom: 0;
  width: 100%;
  line-height: 25px;
  list-style: none;
  float: right;
  padding: 25px 0 25px 0;
  border-bottom: solid 1px #dcdcdd;
}
.product-search li a {
  margin-bottom: 7px;
  display: block;
}
.product-search li a:hover, .product-search li a:active, .product-search li a:focus {
  color: #404041;
}
.product-search li p {
  margin-bottom: 0;
}
.product-search .product-search__img {
  width: 122px;
  height: 81px;
  float: left;
  margin-right: 20px;
  transition: all 0.19s linear;
}
.product-search .product-search__img:hover, .product-search .product-search__img:active, .product-search .product-search__img:focus {
  opacity: 0.8;
  filter: alpha(opacity=80%);
  zoom: 1;
}
.product-search .news-date {
  display: block;
  color: #a2a5ae;
}

.product-search--other li {
  border-bottom: none;
  padding: 25px 0 7px 0;
}

.listed-logos {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: -30px;
}
.listed-logos li {
  float: left;
  margin: 0px 20px 30px 20px;
  text-align: center;
}
.listed-logos li a {
  transition: all 0.5s ease-in;
}
.listed-logos li a:hover, .listed-logos li a:active, .listed-logos li a:focus {
  opacity: 0.5;
  filter: alpha(opacity=50%);
  zoom: 1;
}

.sitemap {
  margin-top: 35px;
}
.sitemap li {
  margin-bottom: 5px !important;
}
.sitemap ul,
.sitemap ul ul {
  margin-top: 10px;
}

.results li {
  padding: 2px 0 2px 0;
  margin-bottom: 10px;
  line-height: 25px;
  line-height: 1.5625rem;
  margin-top: 0;
}
.results li p {
  color: #585858;
}
.results li p strong {
  color: #22272f;
}
.results li h2:first-of-type {
  margin-top: 0;
}
.results li h2,
.results li h3,
.results li h4,
.results li h5,
.results li h6 {
  color: #e61e26;
  margin-top: 36px;
}
.results li h2 {
  line-height: 36px;
  margin-bottom: 12px;
}
.results li h2 a:hover, .results li h2 a:active, .results li h2 a:focus {
  color: #404041;
}

/*------------------------------------*\
    #SLIDERS
\*------------------------------------*/
/*
 * jQuery FlexSlider v2.5.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/*------------------------------------*\
     #FONTFACE
 \*------------------------------------*/
@font-face {
  font-family: "flexslider-icon";
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------*\
    #RESETS
\*------------------------------------*/
.loading {
  min-height: 431px;
  background: url("../../assets/img/ajax-loader.gif") no-repeat center center;
}

.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/*------------------------------------*\
    #BASE-STYLES
\*------------------------------------*/
.page-slider {
  margin: 0;
  padding: 0;
}

.page-slider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
}

.page-slider .slides img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 50em) {
  .slides__panel {
    width: 47.8723%;
    float: left;
    margin-left: 2.1277%;
  }
}

.page-slider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .page-slider .slides {
  display: block;
}

* html .page-slider .slides {
  height: 1%;
}

.no-js .page-slider .slides > li:first-child {
  display: block;
}

/*------------------------------------*\
    #DEFAULT-THEME
\*------------------------------------*/
.page-slider {
  position: relative;
  zoom: 1;
}

.page-slider .slides {
  zoom: 1;
}

.page-slider .slides img {
  height: auto;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.carousel li {
  margin-right: 5px;
}

.hero .flex-direction-nav {
  display: none;
}
@media screen and (min-width: 65.5em) {
  .hero .flex-direction-nav {
    display: block;
  }
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav li {
  margin-bottom: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 46px;
  height: 85px;
  position: absolute;
  top: 43%;
  z-index: 10;
  overflow: hidden;
  background-color: transparent;
  opacity: 1;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  text-indent: -9999px;
}
.flex-direction-nav a:hover, .flex-direction-nav a:active, .flex-direction-nav a:focus {
  opacity: 0.35;
  filter: alpha(opacity=35%);
  zoom: 1;
}

.product-slider .flex-direction-nav a {
  width: 40px;
  height: 40px;
  top: 50%;
  background-color: #f5f6f7;
}
.product-slider .flex-direction-nav a:before {
  float: left;
  font-family: "chicopee";
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-slider .flex-direction-nav a:hover, .product-slider .flex-direction-nav a:active, .product-slider .flex-direction-nav a:focus {
  background-color: #22272f;
  opacity: 1;
  filter: alpha(opacity=100%);
  zoom: 1;
}
.product-slider .flex-direction-nav a:hover:before, .product-slider .flex-direction-nav a:active:before, .product-slider .flex-direction-nav a:focus:before {
  color: #ffffff;
}

.flex-direction-nav .flex-prev {
  left: 2%;
  background-image: url("../../assets/img/prev-btn.png");
  background-repeat: no-repeat;
}

.product-slider .flex-direction-nav .flex-prev {
  left: 0;
  background-image: none;
}
.product-slider .flex-direction-nav .flex-prev:before {
  content: "h";
  text-indent: 0px;
}

.flex-direction-nav .flex-next {
  right: 2%;
  background-image: url("../../assets/img/next-btn.png");
  background-repeat: no-repeat;
}

.product-slider .flex-direction-nav .flex-next {
  right: 0;
  background-image: none;
}
.product-slider .flex-direction-nav .flex-next:before {
  content: "i";
  text-indent: 0px;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 45px;
  z-index: 10;
  text-align: center;
}
@media screen and (min-width: 65.5em) {
  .flex-control-nav {
    bottom: 73px;
  }
}

.faqs .flex-control-nav {
  width: 20px;
  position: absolute;
  right: 3%;
  z-index: 3;
  height: 100%;
  text-align: center;
  top: 50%;
}

.flex-control-nav li,
.flex-control-nav-vertical li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

.faqs .flex-control-nav li,
.flex-control-nav-vertical li {
  margin: 6px 0;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #ffffff;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #e61e26;
}

.faqs--buildingcare .flex-control-paging li a:hover,
.slider-box__buildingcare .flex-control-paging li a:hover {
  background: #93b13d;
}

.slider-box__buildingcare p a {
  color: #93b13d;
}

.faqs--industry .flex-control-paging li a:hover,
.slider-box__industry .flex-control-paging li a:hover,
.faqs--industrial .flex-control-paging li a:hover,
.slider-industrial .flex-control-paging li a:hover {
  background: #253d74;
}

.slider-box__industry p a {
  color: #253d74;
}

.faqs--healthcare .flex-control-paging li a:hover,
.slider-box__healthcare .flex-control-paging li a:hover {
  background: #25aae1;
}

.slider-box__healthcare p a {
  color: #25aae1;
}

.faqs--automotive .flex-control-paging li a:hover,
.slider-box__automotive .flex-control-paging li a:hover {
  background: #e7c11f;
}

.slider-box__automotive p a {
  color: #e7c11f;
}

.faqs--aerospace .flex-control-paging li a:hover,
.slider-box__aerospace .flex-control-paging li a:hover {
  background: #e7c11f;
}

.slider-box__aerospace p a {
  color: #e7c11f;
}

.flex-control-paging li a.flex-active {
  background: #e61e26;
  cursor: default;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  top: 1px;
}

.faqs--buildingcare .flex-control-paging li a.flex-active,
.slider-box__buildingcare .flex-control-paging li a.flex-active {
  background: #93b13d;
}

.faqs--industry .flex-control-paging li a.flex-active,
.slider-box__industry .flex-control-paging li a.flex-active {
  background: #253d74;
}

.faqs--healthcare .flex-control-paging li a.flex-active,
.slider-box__healthcare .flex-control-paging li a.flex-active {
  background: #25aae1;
}

.faqs--automotive .flex-control-paging li a.flex-active,
.slider-box__automotive .flex-control-paging li a.flex-active {
  background: #e7c11f;
}

.faqs--aerospace .flex-control-paging li a.flex-active,
.slider-box__aerospace .flex-control-paging li a.flex-active {
  background: #e7c11f;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/*------------------------------------*\
    #RESPONSIVE
\*------------------------------------*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*------------------------------------*\
    #CUSTOM-STYLES
\*------------------------------------*/
@media screen and (min-height: 900px) and (min-width: 65.5em) {
  .fullscreen {
    width: 100%;
    height: calc(100vh - 100px);
  }
}
@media screen and (min-height: 900px) and (min-width: 65.5em) {
  .fullscreen .flex-viewport,
.fullscreen .slides,
.fullscreen .slides li {
    height: 100% !important;
  }
}

@media screen and (min-width: 65.5em) {
  .fullscreen__off {
    margin-top: 0;
  }
}

@media screen and (min-height: 900px) and (min-width: 65.5em) {
  .fullscreen .page-slider {
    display: block;
    width: 100%;
    height: calc(100% - 171px);
  }
}

/*------------------------------------*\
    #FAQS CUSTOM STYLES
\*------------------------------------*/
.fullview {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 65.5em) {
  .fullview .flex-viewport,
.fullview .slides,
.fullview .slides li {
    height: 100% !important;
  }
}

.fullview__off {
  margin-top: 0;
}

.fullview .faqs {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 750px;
  overflow: hidden;
}

.page-slider .slides > li {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 1;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.faqs .slides > li {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 1;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.slides__title {
  border-bottom: 1px solid #ffffff;
  padding: 0 0 37px;
  margin: -12px 0 33px;
}

.slides__text {
  margin: 0 0 47px 0;
  line-height: 32px;
  line-height: 2rem;
}

.slides__link {
  margin: 0 0 18px 0;
}

.flex-direction-nav .flex-disabled {
  display: none;
}

/*------------------------------------*\
    #FILTERS
\*------------------------------------*/
/*------------------------------------*\
    #SWATCHES
\*------------------------------------*/
/**
  * On Chicopee products there may be multiples of the same product in different colours
  * So on the product filter we have created a style for colour swatches
  * If you have a new swatch for a product please add it to this section
*/
.swatch {
  width: 40px;
  height: 40px;
  position: relative;
  float: left;
  margin-right: 7px;
  margin-bottom: 9px;
}

/**
  * Create the box for the checkbox
*/
.swatch label {
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.35);
}

.swatch__white label {
  background: #ffffff;
}

.swatch__red label {
  background: #e0191b;
}

.swatch__blue label {
  background: #4eb9e3;
}

.swatch__beige label {
  background: #e9dbc4;
}

.swatch__yellow label {
  background: #eac200;
}

.swatch__pink label {
  background: #f7ced4;
}

.swatch__green label {
  background: #31a836;
}

.swatch__industrygreen label {
  background: #779ea4;
}

.swatch__yelloworange label {
  background: url(../../assets/img/swatches/yellow-orange.jpg) no-repeat top left;
}

.swatch__orange label {
  background: #f7941d;
}

/**
  * Display the tick inside the checkbox
*/
.swatch label:after {
  opacity: 0;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../../assets/img/swatches/colour-checkbox-tick.png) no-repeat center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: none;
  border-right: none;
}

/**
  * Create the hover event of the tick
*/
.swatch label:hover::after {
  opacity: 0;
}

/**
  * Create the checkbox state for the tick
*/
.swatch input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/*------------------------------------*\
    #FEATURED-CHECKBOXES
\*------------------------------------*/
/**
  * Style used for options that are featured, mainly used for Best for and Speciality Task options
  * Only to be used within the filters framework
  * This has been taken from a previous project on Chicopee Americas and brought in line with here
*/
.featured-check {
  margin-bottom: 9px;
  min-height: 58px;
}
.featured-check label {
  display: flex;
  align-items: center;
}

.featured-check input[type=checkbox] {
  display: none;
}

.featured-check input[type=checkbox] + label span {
  display: block;
  float: left;
  width: 64px;
  height: 58px;
  margin: -1px 4px 0 0;
  vertical-align: top;
  cursor: pointer;
  box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.35);
}

.featured-check__antimicrobial input[type=checkbox] + label span {
  background: url(../../assets/img/options/antimicrobial-option.jpg) left top no-repeat;
}

.featured-check__antimicrobial input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/antimicrobial-option.jpg) left -58px no-repeat;
}

.featured-check__stain-resistant input[type=checkbox] + label span {
  background: url(../../assets/img/options/stain-resistant-option.jpg) left top no-repeat;
}

.featured-check__stain-resistant input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/stain-resistant-option.jpg) left -58px no-repeat;
}

.featured-check__polishing input[type=checkbox] + label span {
  background: url(../../assets/img/options/polishing-option.jpg) left top no-repeat;
}

.featured-check__polishing input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/polishing-option.jpg) left -58px no-repeat;
}

.featured-check__maintenance input[type=checkbox] + label span {
  background: url(../../assets/img/options/maintenance-option.jpg) left top no-repeat;
}

.featured-check__maintenance input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/maintenance-option.jpg) left -58px no-repeat;
}

.featured-check__dual_sided_dusting input[type=checkbox] + label span {
  background: url(../../assets/img/options/dual_sided_dusting-option.jpg) left top no-repeat;
}

.featured-check__dual_sided_dusting input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/dual_sided_dusting-option.jpg) left -58px no-repeat;
}

.featured-check__floor_surface input[type=checkbox] + label span {
  background: url(../../assets/img/options/floor_surface-option.jpg) left top no-repeat;
}

.featured-check__floor_surface input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/floor_surface-option.jpg) left -58px no-repeat;
}

.featured-check__reusable input[type=checkbox] + label span {
  background: url(../../assets/img/options/reusable-option.jpg) left top no-repeat;
}

.featured-check__reusable input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/reusable-option.jpg) left -58px no-repeat;
}

.featured-check__antibacterial input[type=checkbox] + label span {
  background: url(../../assets/img/options/antibacterial-option.jpg) left top no-repeat;
}

.featured-check__antibacterial input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/antibacterial-option.jpg) left -58px no-repeat;
}

.featured-check__biodegradable input[type=checkbox] + label span {
  background: url(../../assets/img/options/biodegradable-option.jpg) left top no-repeat;
}

.featured-check__biodegradable input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/biodegradable-option.jpg) left -58px no-repeat;
}

.featured-check__heat-resistance input[type=checkbox] + label span {
  background: url(../../assets/img/options/heat-resistance-option.jpg) left top no-repeat;
}

.featured-check__heat-resistance input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/heat-resistance-option.jpg) left -58px no-repeat;
}

.featured-check__microfibre input[type=checkbox] + label span {
  background: url(../../assets/img/options/microfibre-option.jpg) left top no-repeat;
}

.featured-check__microfibre input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/microfibre-option.jpg) left -58px no-repeat;
}

.featured-check__silicon-free input[type=checkbox] + label span {
  background: url(../../assets/img/options/silicon-free-option.jpg) left top no-repeat;
}

.featured-check__silicon-free input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/silicon-free-option.jpg) left -58px no-repeat;
}

.featured-check__low-lint input[type=checkbox] + label span {
  background: url(../../assets/img/options/low-lint-option.jpg) left top no-repeat;
}

.featured-check__low-lint input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/low-lint-option.jpg) left -58px no-repeat;
}

.featured-check__bacterial-removal input[type=checkbox] + label span {
  background: url(../../assets/img/options/99.99-bacteria-removal-option.jpg) left top no-repeat;
}

.featured-check__bacterial-removal input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/99.99-bacteria-removal-option.jpg) left -58px no-repeat;
}

.featured-check__impregnated input[type=checkbox] + label span {
  background: url(../../assets/img/options/impregnated-option.jpg) left top no-repeat;
}

.featured-check__impregnated input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/impregnated-option.jpg) left -58px no-repeat;
}

.featured-check__solvent-compatible input[type=checkbox] + label span {
  background: url(../../assets/img/options/solvent-compatible-option.jpg) left top no-repeat;
}

.featured-check__solvent-compatible input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/solvent-compatible-option.jpg) left -58px no-repeat;
}

.featured-check__negligible-static input[type=checkbox] + label span {
  background: url(../../assets/img/options/negligible-static-option.jpg) left top no-repeat;
}

.featured-check__negligible-static input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/negligible-static-option.jpg) left -58px no-repeat;
}

.featured-check__fcc input[type=checkbox] + label span {
  background: url(../../assets/img/options/fcc-option.jpg) left top no-repeat;
}

.featured-check__fcc input[type=checkbox]:checked + label span {
  background: url(../../assets/img/options/fcc-option.jpg) left -58px no-repeat;
}

.featured-check input[type=checkbox] + label em {
  display: inline-block;
  width: 62.831858407%;
  color: #8e8e8e;
  margin-left: 14px;
  line-height: 1;
}

.featured-check input[type=checkbox] + label em strong {
  display: block;
  color: black;
  font-weight: 100;
  margin-bottom: 2px;
}

/*------------------------------------*\
    #INDUSTRY-SERIES-CHECKBOXES
\*------------------------------------*/
/**
  * Style used for options that are within Industry, mainly used
  * for Series options within Industry
*/
.series-check {
  margin-bottom: 9px;
  min-height: 58px;
  position: relative;
  float: left;
  margin-right: 5px;
}

.series-check input[type=checkbox] {
  display: none;
}

.series-check input[type=checkbox] + label span {
  display: block;
  float: left;
  width: 64px;
  height: 58px;
  margin: -1px 4px 0 0;
  vertical-align: top;
  cursor: pointer;
  box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.35);
}

.series-check__heavy-industry input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/heavy-industry.jpg) left top no-repeat;
}

.series-check__heavy-industry input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/heavy-industry.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__light-industry input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/light-industry.jpg) left top no-repeat;
}

.series-check__light-industry input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/light-industry.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__metal-working input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/metal-working.jpg) left top no-repeat;
}

.series-check__metal-working input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/metal-working.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__construction input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/construction.jpg) left top no-repeat;
}

.series-check__construction input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/construction.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__auto-aero-general-tasks input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/auto-aero-general-tasks.jpg) left top no-repeat;
}

.series-check__auto-aero-general-tasks input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/auto-aero-general-tasks.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__food-manufacturing input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/food-manufacturing.jpg) left top no-repeat;
}

.series-check__food-manufacturing input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/food-manufacturing.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__semi-conductor input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/semi-conductor.jpg) left top no-repeat;
}

.series-check__semi-conductor input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/semi-conductor.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__electronics input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/electronics.jpg) left top no-repeat;
}

.series-check__electronics input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/electronics.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__pharmaceutical input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/pharmaceutical.jpg) left top no-repeat;
}

.series-check__pharmaceutical input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/pharmaceutical.jpg) left -58px no-repeat;
}

/*---------*/
.series-check__auto-aero-specialized-tasks input[type=checkbox] + label span {
  background: url(../../assets/img/industry-type/auto-aero-specialized-tasks.jpg) left top no-repeat;
}

.series-check__auto-aero-specialized-tasks input[type=checkbox]:checked + label span {
  background: url(../../assets/img/industry-type/auto-aero-specialized-tasks.jpg) left -58px no-repeat;
}

.series-check input[type=checkbox] + label em {
  display: inline-block;
  width: 62.831858407%;
  color: #8e8e8e;
  margin-left: 14px;
  line-height: 58px;
}

.series-check input[type=checkbox] + label em strong {
  display: block;
  color: black;
  font-weight: 100;
  margin-bottom: 2px;
}

/*------------------------------------*\
    #EXTRA CHECKBOXES
\*------------------------------------*/
/**
  * Style used for options that are normal with the text still showing, mainly used for all other
  * options on Chicopee products. Only to be used on Filtering options on Chicopee
*/
.extra-check {
  width: 64px;
  height: 58px;
  position: relative;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

/**
  * Create the box for the checkbox
*/
.extra-check label {
  cursor: pointer;
  position: absolute;
  width: 62px;
  height: 56px;
  top: 0;
  left: 0;
  background: #E3e3e3;
  border: 1px solid #D4D3D3;
  z-index: 1;
}

.extra-check label span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-weight: 400;
  line-height: 14px;
}

/**
  * Display the tick inside the checkbox
*/
.extra-check label:after {
  opacity: 0.2;
  content: "";
  position: absolute;
  width: 62px;
  height: 56px;
  background: #ffffff;
  border-top: none;
  border-right: none;
}

/**
  * Create the hover event of the tick
*/
.extra-check label:hover::after {
  opacity: 0.5;
}

/**
  * Create the checkbox state for the tick
*/
.extra-check input[type=checkbox]:checked + label:after {
  opacity: 1;
  box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.35);
}

/*------------------------------------*\
    #UI SLIDERS
\*------------------------------------*/
/**
  * Sliders used for the product filter
  * The slider background styles below
*/
.slider {
  width: 89%;
  height: 14px;
  position: relative;
  background: #5F5F5D;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 64.0625em) {
  .slider {
    width: 90%;
  }
}
.slider a {
  transition-property: none;
}

.slider-options {
  width: 100%;
  margin: 0 auto;
}
.slider-options li {
  width: 33.3333%;
  float: left;
  list-style-type: none;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #404041;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
.slider-options .good {
  text-align: left;
  width: 25%;
}
.slider-options .better {
  text-align: center;
  width: 23%;
}
.slider-options .best {
  text-align: right;
  width: 23%;
}
.slider-options .off {
  width: 29%;
  text-align: left;
  padding-left: 0%;
}
.slider-options .half {
  width: 50%;
}
.slider-options .align-left {
  text-align: left;
}
.slider-options .align-right {
  text-align: right;
}

.slider-options__nodefault .off {
  width: 33.3333%;
}
.slider-options__nodefault .better {
  width: 33.3333%;
}
.slider-options__nodefault .best {
  width: 33.3333%;
}

/**
  * Style for the slider button
*/
.ui-slider-handle {
  width: 27px;
  height: 27px;
  position: absolute;
  top: -7px;
  margin-left: -14px;
  z-index: 200;
  background: url(../../assets/img/slider-button.png);
}

.grid {
  margin: 0 auto 15px;
  width: 89%;
  position: relative;
  text-align: center;
  height: 10px;
}
@media screen and (min-width: 64.0625em) {
  .grid {
    width: 90%;
  }
}
.grid3 li {
  width: 33.32%;
}
.grid3 li.first-child {
  text-align: left;
}
.grid3 li.last-child {
  text-align: right;
}
.grid6 li {
  width: 16.6666666667%;
}
.grid6 li:first-child {
  text-align: left;
}
.grid6 li:last-child {
  text-align: right;
}
.grid6 .one {
  width: 11.5%;
}
.grid6 .two {
  width: 17%;
}
.grid6 .three {
  width: 22%;
}
.grid6 .four {
  width: 18%;
}
.grid6 .five {
  width: 22%;
}
.grid6 .six {
  width: 9%;
}
.grid li {
  position: relative;
  float: left;
}
.grid li img {
  vertical-align: top;
}

.col-product__filter .grid3 li {
  width: 33.335%;
}

.good__grid {
  text-align: left;
  width: 20.8%;
}

.better__grid {
  text-align: center;
  width: 24%;
}

.best__grid {
  text-align: right;
  width: 22%;
}

.off__grid {
  width: 33%;
  text-align: left;
  padding-left: 0%;
}

.product__filters-applied {
  margin-bottom: 48px;
}
.product__filters-applied h3 {
  margin-bottom: 10px;
  display: block;
}
.product__filters-applied li {
  float: left;
  margin-right: 20px;
}
.product__filters-applied li a {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #22272f;
  transition: all 0.2s ease-in-out;
}
.product__filters-applied li a:after {
  font-family: "chicopee";
  content: "G";
  display: inline-block;
  position: relative;
  top: 2px;
  padding-left: 5px;
  color: #A1A5AD;
  font-size: 14px;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
}
.product__filters-applied li a:hover:after, .product__filters-applied li a:active:after, .product__filters-applied li a:focus:after {
  color: #e61e26;
}
.product__filters-applied li .reset {
  margin-left: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
.product__filters-applied li .reset:after {
  display: none;
}
.product__filters-applied li .reset:hover, .product__filters-applied li .reset:active, .product__filters-applied li .reset:focus {
  color: #e61e26;
}

/*
 *  webui popover plugin  - v1.1.3
 *  A lightWeight popover plugin with jquery ,enchance the  popover plugin of bootstrap with some awesome new features. It works well with bootstrap ,but bootstrap is not necessary!
 *  https://github.com/sandywalker/webui-popover
 *
 *  Made by Sandy Duan
 *  Under MIT License
 */
/*  webui popover  */
.webui-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  padding: 20px;
  text-align: left;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  transform: translate3d(0, 0, 0);
}

.webui-popover.top,
.webui-popover.top-left,
.webui-popover.top-right {
  margin-top: -10px;
}

.webui-popover.right,
.webui-popover.right-top,
.webui-popover.right-bottom {
  margin-left: 10px;
}

.webui-popover.bottom,
.webui-popover.bottom-left,
.webui-popover.bottom-right {
  margin-top: 10px;
}

.webui-popover.left,
.webui-popover.left-top,
.webui-popover.left-bottom {
  margin-left: -10px;
}

.webui-popover.pop {
  transform: scale(0.8);
  transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
}

.webui-popover.fade {
  transition: opacity 0.15s linear;
}

.webui-popover.in {
  transform: none;
  opacity: 1;
}

.webui-popover-inner .close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  filter: alpha(opacity=20);
  text-decoration: none;
}

.webui-popover-inner .close:hover,
.webui-popover-inner .close:focus {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.webui-popover-title {
  margin: 0 0 10px 0;
  color: #404041;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  background-color: #ffffff;
}

.webui-popover-content {
  overflow: auto;
}
.webui-popover-content .pop-left {
  width: 50%;
  float: left;
  margin-right: 0%;
}
.webui-popover-content .pop-right {
  width: 50%;
  float: right;
}
.webui-popover-content ul {
  list-style-type: none;
}
.webui-popover-content li {
  margin-bottom: 3px;
  list-style-type: none;
}
.webui-popover-content li img {
  margin-right: 10px;
}
.webui-popover-content li span {
  font-size: 15px;
  font-size: 0.9375rem;
  vertical-align: top;
}

.webui-popover-inverse {
  background-color: #333333;
  color: #eeeeee;
}

.webui-popover-inverse .webui-popover-title {
  background: #333333;
  border-bottom: 1px solid #3b3b3b;
  color: #eeeeee;
}

.webui-no-padding .webui-popover-content {
  padding: 0;
}

.webui-no-padding .list-group-item {
  border-right: none;
  border-left: none;
}

.webui-no-padding .list-group-item:first-child {
  border-top: 0;
}

.webui-no-padding .list-group-item:last-child {
  border-bottom: 0;
}

.webui-popover > .arrow,
.webui-popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.webui-popover > .arrow {
  border-width: 11px;
}

.webui-popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.webui-popover.top > .arrow,
.webui-popover.top-right > .arrow,
.webui-popover.top-left > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.webui-popover.top > .arrow:after,
.webui-popover.top-right > .arrow:after,
.webui-popover.top-left > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
}

.webui-popover.right > .arrow,
.webui-popover.right-top > .arrow,
.webui-popover.right-bottom > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.webui-popover.right > .arrow:after,
.webui-popover.right-top > .arrow:after,
.webui-popover.right-bottom > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}

.webui-popover.bottom > .arrow,
.webui-popover.bottom-right > .arrow,
.webui-popover.bottom-left > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
}

.webui-popover.bottom > .arrow:after,
.webui-popover.bottom-right > .arrow:after,
.webui-popover.bottom-left > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
}

.webui-popover.left > .arrow,
.webui-popover.left-top > .arrow,
.webui-popover.left-bottom > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.webui-popover.left > .arrow:after,
.webui-popover.left-top > .arrow:after,
.webui-popover.left-bottom > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}

.webui-popover-inverse.top > .arrow,
.webui-popover-inverse.top-left > .arrow,
.webui-popover-inverse.top-right > .arrow,
.webui-popover-inverse.top > .arrow:after,
.webui-popover-inverse.top-left > .arrow:after,
.webui-popover-inverse.top-right > .arrow:after {
  border-top-color: #333333;
}

.webui-popover-inverse.right > .arrow,
.webui-popover-inverse.right-top > .arrow,
.webui-popover-inverse.right-bottom > .arrow,
.webui-popover-inverse.right > .arrow:after,
.webui-popover-inverse.right-top > .arrow:after,
.webui-popover-inverse.right-bottom > .arrow:after {
  border-right-color: #333333;
}

.webui-popover-inverse.bottom > .arrow,
.webui-popover-inverse.bottom-left > .arrow,
.webui-popover-inverse.bottom-right > .arrow,
.webui-popover-inverse.bottom > .arrow:after,
.webui-popover-inverse.bottom-left > .arrow:after,
.webui-popover-inverse.bottom-right > .arrow:after {
  border-bottom-color: #333333;
}

.webui-popover-inverse.left > .arrow,
.webui-popover-inverse.left-top > .arrow,
.webui-popover-inverse.left-bottom > .arrow,
.webui-popover-inverse.left > .arrow:after,
.webui-popover-inverse.left-top > .arrow:after,
.webui-popover-inverse.left-bottom > .arrow:after {
  border-left-color: #333333;
}

.webui-popover i.icon-refresh:before {
  content: "";
}

.webui-popover i.icon-refresh {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-left: -15px;
  margin-right: -15px;
  background: url(../img/loading.gif) no-repeat;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
/*------------------------------------*\
    #MAGNIFIC POPUP CSS
\*------------------------------------*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
     * Remove all paddings around the image on small screen
     */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/**
   * Simple fade transition,
   */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/**
* Fade-zoom animation
*/
/* start state */
.my-mfp-zoom-in .mfp-content {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .mfp-content {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.2s ease-in-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.91;
  filter: alpha(opacity=91);
  transition: opacity 0.2s ease-in-out;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 499px) {
  #geo-popup-inner {
    padding: 30px;
    height: 410px;
    width: 320px;
    margin-left: -160px;
    left: 50%;
    bottom: 0px;
    background-color: rgb(230, 30, 38);
    z-index: 999;
    color: white;
    position: fixed;
    text-align: center;
  }
}
@media screen and (min-width: 500px) {
  #geo-popup-inner {
    padding: 30px;
    height: 290px;
    margin-top: -150px;
    width: 500px;
    margin-left: -250px;
    left: 50%;
    top: 50%;
    background-color: rgb(230, 30, 38);
    z-index: 999;
    color: white;
    position: fixed;
    text-align: center;
  }
}
#closemessage {
  cursor: pointer;
}

#closemessage:hover {
  text-decoration: underline;
}

.geo-select {
  margin-bottom: 25px;
  margin-top: 25px;
}

#geo-popup {
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
  position: fixed;
  z-index: 99999999999;
  width: 100%;
  top: 0px;
}

/*------------------------------------*\
    #NAVIGATION
\*------------------------------------*/
.page-nav {
  padding: 28px 0;
  margin-left: 24px;
  margin-right: 93px;
  float: left;
}
.page-nav ul,
.page-nav li {
  margin-bottom: 0;
}
.page-nav li {
  float: left;
}
.page-nav a {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #22272f;
  line-height: 42px;
  line-height: 2.625rem;
  padding: 0 13px;
  display: inline-block;
}
.page-nav a:hover, .page-nav a:active, .page-nav a:focus {
  color: #e61e26;
}

.header__nostick {
  position: relative;
  top: 0;
  width: 100%;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
}
@media screen and (min-width: 87.8125em) {
  .header {
    position: fixed;
    height: 100px;
  }
}
.header__block {
  float: right;
  margin-right: 38px;
}
@media screen and (min-width: 25.0625em) {
  .header__block {
    margin-right: 52px;
  }
}
@media screen and (min-width: 30em) {
  .header__block {
    margin-right: 56px;
  }
}
@media screen and (min-width: 39.8125em) {
  .header__block {
    margin-right: 63px;
  }
}
@media screen and (min-width: 87.8125em) {
  .header__block {
    margin-right: 0;
  }
}
.header__actions {
  display: flex;
  flex-flow: row;
  align-items: center;
  height: 80px;
}
@media screen and (min-width: 25.0625em) {
  .header__actions {
    height: 85px;
  }
}
@media screen and (min-width: 39.8125em) {
  .header__actions {
    height: 95px;
  }
}
@media screen and (min-width: 87.8125em) {
  .header__actions {
    height: 100px;
  }
}
.header__actions .iconbtn {
  margin: 0;
  display: flex;
  align-items: center;
}
.header__actions .iconbtn .icon {
  top: 0;
}
.header__actions .iconbtn .world-map-icon {
  margin: 0;
  width: auto;
  height: 36px;
}
@media screen and (min-width: 30em) {
  .header__actions .iconbtn .world-map-icon {
    width: auto;
    height: 46px;
  }
}
@media screen and (min-width: 48em) {
  .header__actions .iconbtn .world-map-icon {
    width: 90px;
    height: 56px;
  }
}
.header__actions .iconbtn .icon-chevron-down {
  display: none;
}
@media screen and (min-width: 30em) {
  .header__actions .iconbtn .icon-chevron-down {
    display: block;
  }
}
.header__actions .iconbtn .icon-chevron-down:before {
  display: block;
  font-size: 15px;
  line-height: 15px;
  height: 15px;
}
.header__actions .custom-select__country {
  top: 0;
  width: 55px;
  margin-top: 1px;
}
@media screen and (min-width: 30em) {
  .header__actions .custom-select__country {
    margin-left: 10px;
  }
}
.header__actions .custom-select__country select {
  width: 100%;
  padding: 7px 15px 7px 10px;
  font-size: 15px;
  line-height: 20px;
}
.header__actions .custom-select__country:after {
  display: block;
  font-size: 15px;
  line-height: 15px;
  height: 15px;
  margin: 0;
  top: 10px;
  right: 0;
}

.header-container {
  max-width: 1400px;
  display: block;
  margin: auto;
  zoom: 1;
}
.header-container:before, .header-container:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.header-container:after {
  clear: both;
}

.logo {
  max-width: 200px;
  float: left;
  padding-left: 2.1277%;
}
@media screen and (min-width: 87.8125em) {
  .logo {
    box-sizing: border-box;
    max-width: 250px;
    width: 100%;
  }
}
@media screen and (min-width: 81.25em) {
  .logo {
    max-width: 300px;
    margin-right: 70px;
  }
}

@media screen and (min-width: 87.8125em) {
  .nav {
    padding: 28px 0;
    margin-left: 1.666666666%;
    float: left;
    max-width: 840px;
  }
  .nav .selected {
    color: #e61e26;
  }
}
.nav__list {
  list-style-type: none;
  display: block;
}
.nav__list-item,
.nav__list li {
  border-bottom: 1px solid #464c4e;
  margin-bottom: 0;
}
@media screen and (min-width: 87.8125em) {
  .nav__list-item,
.nav__list li {
    border-bottom: none;
    float: left;
    text-align: center;
    display: block;
  }
}
.nav__list-item.no-border,
.nav__list li.no-border {
  background: none;
  padding: 20px 30px;
}
.nav__list-item.map,
.nav__list li.map {
  padding: 0 35px 0 30px;
  background: none;
  display: none;
}
@media screen and (min-width: 87.8125em) {
  .nav__list-item.map,
.nav__list li.map {
    display: block;
  }
}
.nav__list-item.search-icon,
.nav__list li.search-icon {
  padding: 20px 0 0;
  background: none;
}
.nav__list-link,
.nav__list a {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 42px;
  line-height: 2.625rem;
  display: inline-block;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 85.3125em) {
  .nav__list-link,
.nav__list a {
    padding: 0 13px;
  }
}
@media screen and (min-width: 87.8125em) {
  .nav__list-link,
.nav__list a {
    padding: 0 10px;
    color: #22272f;
  }
}
@media screen and (min-width: 87.8125em) {
  .nav__list-link--heading,
.nav__list a--heading {
    font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #e7c11e;
    letter-spacing: 0em;
    font-size: 20px;
    font-size: 1.25rem;
    border-bottom: 4px solid #e61e26;
    margin-bottom: 20px;
    height: auto;
    line-height: 1;
    padding: 0 0 15px;
  }
}
.nav__list-link .icon,
.nav__list a .icon {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #ffffff;
  background: #e61e26;
  letter-spacing: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  border-radius: 25px;
  padding: 5px;
  position: relative;
  top: -10px;
}
.nav__list-link:hover, .nav__list-link:active, .nav__list-link:focus,
.nav__list a:hover,
.nav__list a:active,
.nav__list a:focus {
  color: #e61e26;
}

.fill g {
  fill: #e61e26;
}

.fill:hover svg {
  fill: black;
}

.cd-header-buttons {
  box-sizing: border-box;
  float: right;
  margin-bottom: 0;
}

.cd-header-buttons li {
  display: block;
  float: left;
}

.search {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.search__box {
  position: relative;
  width: 100%;
  display: block;
}
.search__box button {
  position: absolute;
  right: 0;
  top: 0;
}
.search__bar {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  background: #f1f1ef;
  border-bottom: 5px solid #dcdcdd;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  color: #585858;
  outline: none;
  font-size: 65px;
  font-size: 4.0625rem;
  letter-spacing: -2px;
}
.search__bar.placeholder {
  color: #585858;
}
.search__bar:-moz-placeholder {
  color: #585858;
}
.search__bar::-moz-placeholder {
  color: #585858;
}
.search__bar:-ms-input-placeholder {
  color: #585858;
}
.search__bar::-webkit-input-placeholder {
  color: #585858;
}
.search__barinner {
  background: #ffffff;
}
.search__btn {
  cursor: pointer;
  border: none;
  background: none;
}
.search.is-visible {
  opacity: 1;
  visibility: visible;
  background: #f1f1ef;
  padding: 90px 0;
  transition: all 0.3s ease;
}

body.search {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 100px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.dropdown-menu.is-visible {
  opacity: 1;
  visibility: visible;
  background: #f1f1ef;
  transition: all 0.3s ease;
}

.nav-is-fixed .search {
  position: fixed;
}

/* --------------------------------

Main components

-------------------------------- */
@media screen and (max-width: 87.8125em) {
  .main-content,
.header {
    /* Force Hardware Acceleration in WebKit */
    transform: translateZ(0);
    will-change: transform;
  }

  .main-content {
    position: relative;
    transition: transform 0.3s;
  }

  .header {
    transition: transform 0.3s;
  }
}
@media only screen and (max-width: 1405px) {
  .main-content.nav-is-visible,
.header.nav-is-visible {
    transform: translateX(-260px);
  }

  .nav-on-left .main-content.nav-is-visible,
.nav-on-left .header.nav-is-visible {
    transform: translateX(260px);
  }
}
.main-content {
  z-index: 500;
  height: 100%;
}
@media screen and (min-width: 87.8125em) {
  .main-content {
    margin-top: 100px;
  }
  .main-content__region {
    padding-top: 100px;
    margin-top: 0;
  }
}

@media screen and (min-width: 87.8125em) {
  .segments .main-content {
    margin-top: 155px;
  }
  .segments .main-content__region {
    padding-top: 100px;
    margin-top: 0;
  }
}

.nav-is-fixed .header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1405px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 1405px) {
  .header::after {
    clear: both;
    content: "";
    display: table;
  }
}
object {
  pointer-events: none;
}

.wpml-custom-select {
  margin-left: 10px;
}
@media screen and (min-width: 39.8125em) {
  .wpml-custom-select {
    margin-left: 25px;
  }
}
.wpml-custom-select > div {
  width: unset;
}
.wpml-custom-select .wpml-ls-native,
.wpml-custom-select .wpml-ls-display {
  display: inline;
}
@media screen and (max-width: 39.8125em) {
  .wpml-custom-select .wpml-ls-native,
.wpml-custom-select .wpml-ls-display {
    font-size: 14px;
  }
}
@media screen and (max-width: 39.8125em) {
  .wpml-custom-select .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
    padding: 3px 30px 5px 3px;
  }
}

.cd-search-trigger,
.cd-nav-trigger {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  white-space: nowrap;
  /* hide text */
  color: transparent;
  z-index: 3;
}

.cd-nav-trigger {
  position: absolute;
  right: 11px;
  top: 18px;
}
@media screen and (min-width: 25.0625em) {
  .cd-nav-trigger {
    right: 20px;
    top: 20px;
  }
}
@media screen and (min-width: 39.8125em) {
  .cd-nav-trigger {
    top: 27px;
  }
}

.cd-map-trigger {
  color: transparent;
  display: none;
  line-height: 0;
  z-index: 1;
}
@media only screen and (min-width: 1405px) {
  .cd-map-trigger {
    padding-right: 35px;
    color: #22272f;
    display: block;
  }
}
.cd-map-trigger:hover object .fill {
  fill: #e61e26;
}

.cd-search-trigger i {
  font-size: 26px;
  font-size: 1.625rem;
  padding-top: 3px;
}

.cd-search-trigger span {
  /* container for the X icon */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.cd-search-trigger span::before,
.cd-search-trigger span::after {
  /* close icon */
  content: "";
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 22px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -11px;
  background: #ffffff;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
}

.cd-search-trigger span::before {
  transform: rotate(45deg);
}

.cd-search-trigger span::after {
  transform: rotate(-45deg);
}

.cd-search-trigger.search-is-visible::before,
.cd-search-trigger.search-is-visible::after {
  /* hide search icon */
  opacity: 0;
}

.cd-search-trigger.search-is-visible span::before,
.cd-search-trigger.search-is-visible span::after {
  /* show close icon */
  opacity: 1;
}

.cd-search-trigger.search-is-visible span::before {
  transform: rotate(135deg);
}

.cd-search-trigger.search-is-visible span::after {
  transform: rotate(45deg);
}

.cd-nav-trigger span,
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #404041;
}

.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  transition: background 0.3s 0.3s;
}

.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  /* other 2 lines */
  content: "";
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 0% 50%;
  transition: transform 0.3s 0.3s;
}

.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}

.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}

.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(230, 30, 38, 0);
}

.cd-nav-trigger.nav-is-visible span::before,
.cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #404041;
}

.cd-nav-trigger.nav-is-visible span::before {
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}

.cd-nav-trigger.nav-is-visible span::after {
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}

@media only screen and (min-width: 1405px) {
  .cd-nav-trigger {
    display: none;
  }
}
.nav__list,
.nav__list ul {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  margin-bottom: 0;
  background: #404041;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  transform: translateX(0);
  transition: transform 0.3s;
}
.nav__list .sub-menu,
.nav__list ul .sub-menu {
  display: block;
}
@media only screen and (min-width: 1405px) {
  .nav__list .sub-menu,
.nav__list ul .sub-menu {
    display: none;
  }
}
.nav__list .cd-secondary-nav,
.nav__list ul .cd-secondary-nav {
  width: 260px;
}

@media screen and (min-width: 87.8125em) {
  .is-hidden .nav__list-link--second {
    color: #828282;
    text-transform: none;
    letter-spacing: 0em;
    font-size: 16px;
    font-size: 1rem;
    font-family: "Circular-Book", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1;
    height: auto;
    padding: 0 0 10px 0;
  }
}

.nav__list.is-hidden,
.nav__list ul.is-hidden {
  /* secondary navigations hidden by default */
  transform: translateX(100%);
}

.nav__list.moves-out > li > a,
.nav__list ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1405px) {
  .nav-on-left .nav__list,
.nav-on-left .nav__list ul {
    right: auto;
    left: 0;
  }
}
.nav__list .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #69aa6f;
}

.nav__list .cd-nav-gallery .cd-nav-item,
.nav__list .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}

.nav__list .cd-nav-gallery .cd-nav-item h3,
.nav__list .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__list .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}

.nav__list .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}

.nav__list .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}

.nav__list .cd-nav-icons .cd-nav-item p {
  color: #2e3233;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}

.nav__list .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

.nav__list .cd-nav-icons .cd-nav-item.item-1::before {
  background-image: url("../img/line-icon-1.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-2::before {
  background-image: url("../img/line-icon-2.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-3::before {
  background-image: url("../img/line-icon-3.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-4::before {
  background-image: url("../img/line-icon-4.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-5::before {
  background-image: url("../img/line-icon-5.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-6::before {
  background-image: url("../img/line-icon-6.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-7::before {
  background-image: url("../img/line-icon-7.svg");
}

.nav__list .cd-nav-icons .cd-nav-item.item-8::before {
  background-image: url("../img/line-icon-8.svg");
}

@media only screen and (max-width: 1405px) {
  .nav__list {
    /* by default .nav__list is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    transition: visibility 0s 0.3s;
  }

  .nav__list.nav-is-visible {
    visibility: visible;
    transition: visibility 0s 0s;
  }
}
@media only screen and (min-width: 1405px) {
  .nav__list {
    position: relative;
    height: auto;
    width: auto;
    overflow: visible;
    background: transparent;
  }

  .nav__list::after {
    clear: both;
    content: "";
    display: table;
  }

  .nav__list.moves-out > li > a {
    /* reset mobile style */
    transform: translateX(0);
    opacity: 1;
  }

  .nav__list ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }

  .nav__list ul.is-hidden {
    /* reset mobile style */
    transform: translateX(0);
  }

  .nav__list ul.moves-out > li > a {
    /* reset mobile style */
    transform: translateX(0);
    opacity: 1;
  }

  .go-back,
.see-all {
    display: none;
  }

  .nav__list .cd-secondary-nav,
.nav__list .cd-nav-gallery,
.nav__list .cd-nav-icons {
    /* dropdown menu style */
    position: absolute;
    top: 80px;
    width: 100%;
    background: #f2f2f2;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }

  .nav__list .cd-secondary-nav::after,
.nav__list .cd-nav-gallery::after,
.nav__list .cd-nav-icons::after {
    clear: both;
    content: "";
    display: table;
  }

  .nav__list .cd-secondary-nav.is-hidden,
.nav__list .cd-nav-gallery.is-hidden,
.nav__list .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
  }

  .nav__list .cd-secondary-nav > .see-all,
.nav__list .cd-nav-gallery > .see-all,
.nav__list .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
  }

  .nav__list .cd-secondary-nav > .see-all a,
.nav__list .cd-nav-gallery > .see-all a,
.nav__list .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }

  .nav__list .cd-secondary-nav > .see-all a:hover,
.nav__list .cd-nav-gallery > .see-all a:hover,
.nav__list .cd-nav-icons > .see-all a:hover {
    background: #2e3233;
    border-color: #2e3233;
    color: #ffffff;
  }

  .nav__list .cd-secondary-nav > li {
    /* change the height according to your needs - you can even set height: auto */
    height: 340px;
    /* here you set the number of columns - use width percentage */
    width: 23%;
    float: left;
    margin-right: 2.66%;
    border-right: 1px solid #e2e3df;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__list .cd-secondary-nav > li:nth-child(4n+2) {
    /* +2 because we have 2 list items with display:none */
    margin-right: 0;
    border-right: none;
  }

  .nav__list .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #69aa6f;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 0.6em;
  }

  .nav__list .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 0;
    color: #2e3233;
    border-bottom: none;
    font-size: 1.4rem;
  }

  .nav__list .cd-secondary-nav a:hover {
    color: #69aa6f;
  }

  .nav__list .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    transform: translateZ(0);
  }

  .nav__list .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .nav__list .cd-secondary-nav ul ul.is-hidden {
    transform: translateX(100%);
  }

  .go-back {
    display: block;
  }

  .go-back a {
    color: transparent;
  }

  .nav__list .cd-secondary-nav ul ul .see-all {
    display: block;
  }

  .nav__list .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    transform: translateX(-100%);
  }

  .nav__list .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }

  .nav__list .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }

  .nav__list .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }

  .nav__list .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: 0.6em;
  }

  .nav__list .cd-nav-gallery .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
    padding: 0 0.4em;
  }

  .nav__list .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }

  .nav__list .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }

  .nav__list .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
    position: relative;
  }

  .nav__list .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }

  .nav__list .cd-nav-icons .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
  }

  .nav__list .cd-nav-icons .cd-nav-item p {
    display: block;
  }

  .nav__list .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
.has-children {
  margin-bottom: 0;
}

.has-children > a,
.go-back a {
  position: relative;
}

.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #464c4e;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.nav .has-children > a::before,
.nav .has-children > a::after,
.nav .go-back a::before,
.nav .go-back a::after {
  background: #fff;
}

.has-children > a::before,
.go-back a::before {
  transform: rotate(45deg);
}

.has-children > a::after,
.go-back a::after {
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1405px) {
  .has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
    display: none;
  }

  .has-children > a:hover::before,
.has-children > a:hover::after,
.go-back a:hover::before,
.go-back a:hover::after {
    display: none;
  }

  .go-back {
    display: none;
  }
}
.has-children > a::before,
.has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  transform-origin: 9px 50%;
}

.nav__list .go-back a {
  padding-left: 40px;
}

.nav__list .go-back a::before,
.nav__list .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  transform-origin: 1px 50%;
}

/* --------------------------------

support for no js

-------------------------------- */
.no-js .nav__list {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}

.no-js .cd-search {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1405px) {
  .no-js .nav__list {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
    top: 0;
    right: 150px;
    padding: 0;
  }

  .no-js .nav-is-fixed .nav__list {
    position: fixed;
  }
}
.nav .col2 {
  width: 100%;
}

.cd-secondary-nav {
  width: 100%;
}

.hide-to-bp-small-2 {
  display: none;
}
@media screen and (min-width: 30em) {
  .hide-to-bp-small-2 {
    display: block;
  }
}

.hide-to-bp-small-3 {
  display: none;
}
@media screen and (min-width: 39.8125em) {
  .hide-to-bp-small-3 {
    display: block;
  }
}

.hide-to-bp-med {
  display: none;
}
@media screen and (min-width: 46.8125em) {
  .hide-to-bp-med {
    display: block;
  }
}

.filter-container {
  display: none;
}
@media screen and (min-width: 48em) {
  .filter-container {
    display: block;
  }
}

.product-nav {
  display: none;
}
@media screen and (min-width: 48em) {
  .product-nav {
    display: block;
  }
}
.product-nav__title {
  display: none;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .product-nav__title {
    display: block;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__title {
    text-align: left;
  }
}
.product-nav__btn {
  display: block;
}
@media screen and (min-width: 48em) {
  .product-nav__btn {
    display: none;
  }
}
.product-nav__item {
  display: block;
  float: left;
  width: 220px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b4b7bd;
}
@media screen and (min-width: 30em) {
  .product-nav__item {
    width: 50%;
    border-bottom: none;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item {
    width: 33.33333%;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__item {
    width: 243px;
    padding: 18px 0;
    border-bottom: 1px solid #b4b7bd;
  }
}
@media screen and (min-width: 30em) {
  .product-nav__item:nth-of-type(odd) {
    border-right: 1px solid #b4b7bd;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item:nth-of-type(odd) {
    border-right: none;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item:nth-of-type(-n + 3) {
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__item:nth-of-type(-n + 3) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item:nth-child(-n+2) {
    border-right: 1px solid #b4b7bd;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__item:nth-child(-n+2) {
    border-right: none;
  }
}
@media screen and (min-width: 48em) {
  .product-nav__item:nth-child(n+4):nth-child(-n+5) {
    border-right: 1px solid #b4b7bd;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__item:nth-child(n+4):nth-child(-n+5) {
    border-right: none;
  }
}
.product-nav__item:last-of-type {
  border-bottom: none;
}
.product-nav__link {
  display: flex;
  align-items: center;
  text-align: left;
}
@media screen and (min-width: 30em) {
  .product-nav__link {
    padding: 0 20px;
  }
}
@media screen and (min-width: 66.875em) {
  .product-nav__link {
    text-align: left;
    padding: 0;
  }
}
.product-nav__icon::before {
  font-size: 58px;
}
.product-nav__text {
  color: #585858;
  vertical-align: middle;
  margin-left: 14px;
  transition: all 0.2s ease;
}
.product-nav__text:hover, .product-nav__text:active, .product-nav__text:focus {
  color: #e61e26;
  transition: all 0.2s ease;
}

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
@media screen and (min-width: 87.8125em) {
  .headroom-quick {
    transition: transform 200ms linear;
  }

  .headroom {
    transition: transform 200ms linear;
    /**
      * .pinheader - pin to the header match the size of the header height
    */
  }
  .headroom--pinned {
    transform: translateY(0%);
  }
  .headroom--unpinned {
    transform: translateY(-100%);
  }
  .headroom--pinheader {
    transform: translateY(0);
  }
  .headroom--unpinheader {
    transform: translateY(-101px);
  }

  .headroom__stop--stick {
    transform: translateY(0);
  }
}
/*------------------------------------*\
    #SIDEBAR
\*------------------------------------*/
/*------------------------------------*\
    #FORMS
\*------------------------------------*/
input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

select,
textarea,
input[type=text],
input[type=url],
input[type=tel],
input[type=email] {
  width: 100%;
  border: none;
  background: #f5f6f7;
  padding: 18px;
  outline: none;
  font-size: 19px;
  font-size: 1.1875rem;
  font-family: "AvenirLTStd-Light", Helvetica, Arial, sans-serif;
  margin-bottom: 13px;
}
select.placeholder,
textarea.placeholder,
input[type=text].placeholder,
input[type=url].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder {
  color: #a2a5ae;
}
select:-moz-placeholder,
textarea:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder {
  color: #a2a5ae;
}
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder {
  color: #a2a5ae;
}
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder {
  color: #a2a5ae;
}
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder {
  color: #a2a5ae;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
}

.subform {
  width: 100%;
}
.subform input[type=text],
.subform input[type=url],
.subform input[type=tel],
.subform input[type=email] {
  background: #ffffff;
}
.subform__title {
  margin-bottom: 10px;
}
.subform__button {
  margin-top: 7px;
  -webkit-appearance: none;
}

.searches input[type=search] {
  width: 100%;
  border: none;
  background: #f5f6f7;
  padding: 18px;
  outline: none;
  font-size: 19px;
  font-size: 1.1875rem;
  font-family: "AvenirLTStd-Light", Helvetica, Arial, sans-serif;
  margin-bottom: 13px;
}
.searches input[type=search].placeholder {
  color: #a2a5ae;
}
.searches input[type=search]:-moz-placeholder {
  color: #a2a5ae;
}
.searches input[type=search]::-moz-placeholder {
  color: #a2a5ae;
}
.searches input[type=search]:-ms-input-placeholder {
  color: #a2a5ae;
}
.searches input[type=search]::-webkit-input-placeholder {
  color: #a2a5ae;
}

/*------------------------------------*\
	#CONTACT FORM
\*------------------------------------*/
.radio-btn-label {
  display: block;
  position: relative;
  padding: 5px 12px 5px 33px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.radio-btn {
  position: absolute;
  visibility: hidden;
}

i.radio-btn {
  display: block;
  position: absolute;
  border: 4px solid #5F5F5D;
  border-radius: 100%;
  height: 24px;
  width: 24px;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

i.radio-btn.check:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 8px;
  width: 8px;
  top: 4px;
  left: 4px;
}

.radio-btn-label input[type=radio]:checked ~ .check::before {
  background: #5F5F5D;
}

.radio-options {
  width: 100%;
  margin: 0 auto;
}
.radio-options li {
  width: 33.3333%;
  float: left;
  list-style-type: none;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #404041;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}

.form-select {
  position: relative;
  display: block;
  padding: 0;
}

.form-select select {
  margin: 0;
  background: none;
  border: 1px solid transparent;
  outline: none;
  /* Prefixed box-sizing rules necessary for older browsers */
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /* Remove select styling */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: #e61e26;
  float: right;
  margin-right: 40px;
}

/**
	* Custom arrow sits on top of the select - could be an image, SVG, icon font, etc. or the arrow
	* could just baked into the bg image on the select. Note this si a 2x image so it will look bad
	* in browsers that don't support background-size. In production, you'd handle this resolution
	* switch via media query but this is a demo.
*/
.form-select::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 5px;
  right: 0;
  background-image: url(/assets/img/drop-down.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 2;
  /* This hack make the select behind the arrow clickable in some browsers */
  pointer-events: none;
}

.contact-form input[type=text],
.contact-form input[type=url],
.contact-form input[type=tel],
.contact-form input[type=email] {
  color: #22272f;
  background: transparent;
  border-bottom: 1px solid #dcdcdd;
  padding: 18px 18px 9px 0px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: -2px;
  margin-bottom: 0;
  margin-top: 30px;
}
.contact-form textarea {
  color: #22272f;
  background: transparent;
  border: none;
  border-bottom: 1px solid #dcdcdd;
  width: 100%;
  padding: 18px 18px 9px 0px;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: -2px;
  margin-bottom: 30px;
  margin-top: 30px;
  outline: none;
}
.contact-form::-webkit-input-placeholder {
  color: #dcdcdd;
}

.contact-form:-moz-placeholder {
  color: #dcdcdd;
}

.contact-form::-moz-placeholder {
  color: #dcdcdd;
}

.contact-form:-ms-input-placeholder {
  color: #dcdcdd;
}

.contact-form .select {
  float: right;
}

.split-form {
  width: 100%;
  border-bottom: 1px solid #dcdcdd;
  padding: 23px 23px 14px 0px;
  margin-top: 30px;
  font-size: 40px;
  font-size: 2.5rem;
  position: relative;
  color: #22272f;
  clear: both;
}
.split-form input[type=text],
.split-form input[type=url],
.split-form input[type=tel],
.split-form input[type=email] {
  margin-top: 0;
}
.split-form .input__select {
  position: relative;
  float: right;
  top: 0;
  clear: none;
}
@media screen and (min-width: 57.375em) {
  .split-form {
    width: 49%;
    margin-right: 2%;
    float: left;
    clear: none;
  }
  .split-form.last {
    margin-right: 0;
  }
}
.split-form label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
@media screen and (min-width: 57.375em) {
  .split-form label {
    width: auto;
    float: left;
    margin-bottom: 0;
  }
}

.split-form__notop {
  padding: 0px;
}

.split-form__noborder {
  border-bottom: none;
}

.input__select {
  position: absolute;
  right: 0;
  max-width: 400px;
  top: 75px;
  direction: rtl;
}

.input__select {
  clear: both;
  float: none;
  display: block;
  color: #e61e26;
  background: none;
  border: none;
  font-size: 26px;
  font-size: 1.625rem;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 0;
  margin: 0;
}
.input__select--filter {
  border: none !important;
}

.vacancy {
  padding: 40px 0;
  color: #22272f;
  display: block;
  background: #e9eaea;
  cursor: pointer;
  margin-top: 40px;
  transition: all 0.5s ease;
}
.vacancy h3 {
  display: block;
  float: left;
  margin-top: 10px;
}
@media screen and (min-width: 46.8125em) {
  .vacancy h3 {
    margin-top: 0px;
  }
}
.vacancy .small-heading {
  text-align: left;
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 25.0625em) {
  .vacancy .small-heading {
    text-align: right;
    float: right;
    width: auto;
    margin-top: 10px;
  }
}
.vacancy:hover {
  background: #e61e26;
  color: #fff;
}
.vacancy:hover p {
  color: #fff;
}

.checkbox input {
  position: relative;
  top: -2px;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-left: 35px;
}
.checkbox input[type=checkbox]:checked + label:after {
  content: "✓";
  color: #e61e26;
  text-align: center;
  line-height: 15px;
}
.checkbox label:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: -35px;
  bottom: -2px;
  border: 2px solid #e61e26;
}

.vacancy__drop-down {
  display: none;
  padding-top: 30px;
  clear: both;
}

.region-heading {
  float: left;
}

.region-header {
  border-bottom: 1px solid #dcdcdd;
  padding-bottom: 20px;
}

.region-header h3 {
  float: left;
}

.spaced-top {
  margin-top: 20px;
}

.members {
  margin-top: 40px;
}

/*------------------------------------*\
	#CUSTOM STYLED SELECT
\*------------------------------------*/
/**
	* If you are wanting to use a custom styled dropdown for the Chicopee now use this below
*/
.select {
  border: 1px solid #D4D3D3;
  background: #ffffff;
}
.select__clean {
  border: none;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}

.custom-select {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .custom-select {
    width: 96%;
  }
}
@media screen and (min-width: 1015px) {
  .custom-select {
    width: 100%;
  }
}
.custom-select select {
  margin: 0;
  background: none;
  border: 1px solid transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 134%;
  padding: 0.5em 1em;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.custom-select option {
  font-weight: normal;
}
.custom-select:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 7px;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  background-image: url("../..//assets/img/select-arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 2;
  pointer-events: none;
}
.custom-select__downloads select {
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  padding: 13px 30px 11px 5px;
  border-bottom: 1px solid #D4D3D3;
  color: #a1a5ad;
  width: 100%;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  border-radius: 0;
}
.custom-select__downloads::after {
  font-family: "chicopee";
  content: "g";
  vertical-align: middle;
  background-image: none;
  width: initial;
  height: 100%;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 5px;
  color: #22272f;
}
@media screen and (min-width: 80em) {
  .custom-select__downloads::after {
    font-size: 16px;
    font-size: 1rem;
  }
}
.custom-select__country {
  width: 50px;
  display: inline-block;
  top: 16px;
  position: relative;
}
@media screen and (min-width: 80em) {
  .custom-select__country {
    width: 70px;
  }
}
@media screen and (min-width: 25.0625em) {
  .custom-select__country {
    top: 25px;
  }
}
.custom-select__country select {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-size: 13.5px;
  font-size: 0.84375rem;
  font-weight: 100;
  color: #22272f;
  padding: 0.5em 0px 0.5em 6px;
}
@media screen and (min-width: 80em) {
  .custom-select__country select {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 80em) {
  .custom-select__country select {
    padding: 0.5em 1em;
    width: 110px;
  }
}
.custom-select__country::after {
  font-family: "chicopee";
  content: "g";
  vertical-align: middle;
  background-image: none;
  width: initial;
  height: 100%;
  position: absolute;
  top: 11px;
  margin-right: -9px;
}
@media screen and (min-width: 80em) {
  .custom-select__country::after {
    font-size: 16px;
    font-size: 1rem;
    top: 12px;
    margin-right: -7px;
  }
}

.product-sheets .span6 {
  margin-bottom: 10px;
  margin-left: 0;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 62.5em) {
  .product-sheets .span6 {
    width: 47.8723%;
    margin-left: 4.1277%;
  }
}

/**
	* START OF UGLY BROWSER-SPECIFIC HACKS
	* Credit - https://github.com/filamentgroup/select-css
	* --------------------------------------------------------
*/
/**
	* OPERA - Pre-Blink nix the custom arrow, go with a native select button to keep it simple.
	* Targeted via this hack http://browserhacks.com/#hack-a3f166304aafed524566bc6814e1d5c7
*/
x:-o-prefocus,
.form-select::after {
  display: none;
}

/**
	* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance, IE
	* 9 and earlier get a native select - targeting media query hack via >>
	* http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5
	* looking for better ways to achieve this targeting
	*
	* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11
	* and sets the text color to match the focus style's - fix via http://bit.ly/1zAjMH9
*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-select select::-ms-expand {
    display: none;
  }

  .form-select select:focus::-ms-value {
    background: transparent;
    color: #222;
  }
}
/**
	* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and
	* clip it via overflow on the parent container. The percentage width is a fallback since FF 4+
	* supports calc() so we can just add a fixed amount of extra width to push the native arrow out
	* of view. We're applying this hack across all FF versions because all the previous hacks were
	* too fragile and complex. You might want to consider not using this hack and using the native
	* select arrow in FF. Note this makes the menus wider than the select button because they display
	* at the specified width and aren't clipped. Targeting hack via >> http://bit.ly/1clAjF2
*/
/* Show only the native arrow */
@-moz-document url-prefix() {
  .form-select {
    overflow: hidden;
  }

  .form-select select {
    width: 120%;
    width: calc(100% + 3em);
  }
}
/**
	* Firefox focus has odd artifacts around the text, this kills that.
	* See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring
*/
.form-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/**
	* --------------------------------------------------------
	* END OF UGLY BROWSER-SPECIFIC HACKS
	* Thanks Filament Group - http://www.filamentgroup.com/
*/
/*
* jquery.selectBoxIt.css 3.8.1
* Author: @gregfranko
*/
/*
	Common CSS Properties
	---------------------
	These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 57.375em) {
  .selectboxit-container {
    float: right;
  }
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  width: 270px !important;
  /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}
@media screen and (min-width: 75em) {
  .selectboxit-container .selectboxit {
    width: 350px !important;
  }
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span,
.selectboxit-container .selectboxit-options a {
  height: 40px;
  /* Height of the drop down */
  line-height: 40px;
  /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled,
.selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  padding-right: 40px;
  color: #e61e26;
}
@media screen and (min-width: 57.375em) {
  .selectboxit-text {
    float: right;
  }
}

/* Options List */
.selectboxit-container .selectboxit-options {
  box-sizing: border-box;
  min-width: 100%;
  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  box-shadow: none;
}

/* Individual options */
.selectboxit-option .selectboxit-option-anchor {
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option,
.selectboxit-optgroup-header {
  text-indent: 5px;
  /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 15%;
  right: 0;
  left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
	Default Theme
	-------------
	Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  width: 28px;
  height: 28px;
  background: url("../../assets/img/drop-down-2.png");
}

.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
  color: #8e8e8e;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #e61e26;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #8e8e8e;
}

.selectboxit.chooseoptions.chooseoptions--sheets {
  width: auto !important;
  text-align: center;
  border: 0;
  border-radius: 40px;
  background: #e61e26;
  padding: 15px 37px 13px;
}
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-text {
  color: #fff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  height: auto;
  line-height: 1;
}
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-arrow-container,
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-container span,
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-container .selectboxit-options a {
  height: auto;
  line-height: 1;
}
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-arrow-container,
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-container span,
.selectboxit.chooseoptions.chooseoptions--sheets .selectboxit.chooseoptions.chooseoptions--sheets .selectboxit-container .selectboxit-options a {
  right: 10px;
  top: 7px;
}

.chooseoptions.chooseoptions--sheets + .selectboxit-container {
  float: left;
  border-radius: 40px;
}

.form-success,
.form-error {
  display: none;
}

.form-error {
  color: #c50f0f;
}

/* Newsletter Form */
.news-article .form.newsletter {
  margin-top: 30px;
}
.news-article .form.newsletter fieldset {
  margin-top: 0.5rem;
}
.news-article .form.newsletter fieldset p {
  margin: 0;
}

.hbspt-form form {
  /**
         * Edit to make look like normal button style
         */
}
.hbspt-form form > fieldset {
  max-width: 100%;
}
.hbspt-form form > fieldset.form-columns-2 {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 75em) {
  .hbspt-form form > fieldset.form-columns-2 {
    gap: 30px;
  }
}
.hbspt-form form > fieldset.form-columns-2 > div {
  width: calc(50% - 10px);
}
@media screen and (min-width: 75em) {
  .hbspt-form form > fieldset.form-columns-2 > div {
    width: calc(50% - 15px);
  }
}
.hbspt-form form > fieldset .field {
  margin-bottom: 20px;
}
.hbspt-form form > fieldset .input {
  margin-right: 0;
}
.hbspt-form form > fieldset label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.hbspt-form form > fieldset legend.hs-field-desc {
  margin-bottom: 5px;
}
.hbspt-form form > fieldset ul.hs-error-msgs {
  margin-top: 5px;
  color: #e61e26;
}
.hbspt-form form > fieldset.form-columns-1 .input select,
.hbspt-form form > fieldset.form-columns-1 .input textarea,
.hbspt-form form > fieldset.form-columns-1 .input input[type=number],
.hbspt-form form > fieldset.form-columns-1 .input input[type=tel],
.hbspt-form form > fieldset.form-columns-1 .input input[type=email],
.hbspt-form form > fieldset.form-columns-1 .input input[type=text] {
  width: 100%;
}
.hbspt-form form > fieldset li.hs-form-booleancheckbox label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hbspt-form form > fieldset li.hs-form-booleancheckbox label input[type=checkbox] {
  width: 20px;
  height: 20px;
  float: none;
}
.hbspt-form form > fieldset li.hs-form-booleancheckbox label span {
  margin-left: 0;
}
.hbspt-form form > fieldset li.hs-form-booleancheckbox label p {
  all: unset;
}
.hbspt-form form input[type=submit].hs-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: 0;
  padding: 15px 37px 13px;
  background: #e61e26;
  color: #ffffff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  border-radius: 50px;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 48em) {
  .hbspt-form form input[type=submit].hs-button {
    margin: 40px 0 0 0;
  }
}
.hbspt-form form .hs-richtext a {
  color: #e61e26;
}

.enquiry-form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.enquiry-form input[type=text],
.enquiry-form input[type=email],
.enquiry-form input[type=password],
.enquiry-form input[type=tel],
.enquiry-form input[type=number],
.enquiry-form input[type=date],
.enquiry-form select,
.enquiry-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 20px;
  color: #22272f;
  background: #ffffff;
  border: 2px solid #A1A5AD;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
}
.enquiry-form input[type=text]::-webkit-input-placeholder,
.enquiry-form input[type=email]::-webkit-input-placeholder,
.enquiry-form input[type=password]::-webkit-input-placeholder,
.enquiry-form input[type=tel]::-webkit-input-placeholder,
.enquiry-form input[type=number]::-webkit-input-placeholder,
.enquiry-form input[type=date]::-webkit-input-placeholder,
.enquiry-form select::-webkit-input-placeholder,
.enquiry-form textarea::-webkit-input-placeholder {
  color: #22272f;
}
.enquiry-form input[type=text]::-moz-placeholder,
.enquiry-form input[type=email]::-moz-placeholder,
.enquiry-form input[type=password]::-moz-placeholder,
.enquiry-form input[type=tel]::-moz-placeholder,
.enquiry-form input[type=number]::-moz-placeholder,
.enquiry-form input[type=date]::-moz-placeholder,
.enquiry-form select::-moz-placeholder,
.enquiry-form textarea::-moz-placeholder {
  color: #22272f;
}
.enquiry-form input[type=text]:-ms-input-placeholder,
.enquiry-form input[type=email]:-ms-input-placeholder,
.enquiry-form input[type=password]:-ms-input-placeholder,
.enquiry-form input[type=tel]:-ms-input-placeholder,
.enquiry-form input[type=number]:-ms-input-placeholder,
.enquiry-form input[type=date]:-ms-input-placeholder,
.enquiry-form select:-ms-input-placeholder,
.enquiry-form textarea:-ms-input-placeholder {
  color: #22272f;
}
.enquiry-form input[type=text]:-webkit-autofill, .enquiry-form input[type=text]:-webkit-autofill:hover, .enquiry-form input[type=text]:-webkit-autofill:focus,
.enquiry-form input[type=email]:-webkit-autofill,
.enquiry-form input[type=email]:-webkit-autofill:hover,
.enquiry-form input[type=email]:-webkit-autofill:focus,
.enquiry-form input[type=password]:-webkit-autofill,
.enquiry-form input[type=password]:-webkit-autofill:hover,
.enquiry-form input[type=password]:-webkit-autofill:focus,
.enquiry-form input[type=tel]:-webkit-autofill,
.enquiry-form input[type=tel]:-webkit-autofill:hover,
.enquiry-form input[type=tel]:-webkit-autofill:focus,
.enquiry-form input[type=number]:-webkit-autofill,
.enquiry-form input[type=number]:-webkit-autofill:hover,
.enquiry-form input[type=number]:-webkit-autofill:focus,
.enquiry-form input[type=date]:-webkit-autofill,
.enquiry-form input[type=date]:-webkit-autofill:hover,
.enquiry-form input[type=date]:-webkit-autofill:focus,
.enquiry-form select:-webkit-autofill,
.enquiry-form select:-webkit-autofill:hover,
.enquiry-form select:-webkit-autofill:focus,
.enquiry-form textarea:-webkit-autofill,
.enquiry-form textarea:-webkit-autofill:hover,
.enquiry-form textarea:-webkit-autofill:focus {
  background: none;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-text-fill-color: #22272f;
  -webkit-transition: none;
  transition: none;
}
.enquiry-form input[type=text]:focus,
.enquiry-form input[type=email]:focus,
.enquiry-form input[type=password]:focus,
.enquiry-form input[type=tel]:focus,
.enquiry-form input[type=number]:focus,
.enquiry-form input[type=date]:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
}
.enquiry-form textarea {
  max-width: 100%;
  min-height: 100px;
}
.enquiry-form select::-ms-expand {
  display: none;
}
.enquiry-form select {
  width: 100%;
  padding: 14px 60px 14px 20px;
}
.enquiry-form .select-box, .enquiry-form .hbspt-form form > fieldset.hs-fieldtype-select .input, .hbspt-form form > fieldset.hs-fieldtype-select .enquiry-form .input {
  position: relative;
  display: block;
  width: 100%;
}
.enquiry-form .select-box:after, .enquiry-form .hbspt-form form > fieldset.hs-fieldtype-select .input:after, .hbspt-form form > fieldset.hs-fieldtype-select .enquiry-form .input:after {
  content: "";
  position: absolute;
  top: 23px;
  right: 25px;
  display: block;
  width: 15px;
  height: 10px;
  background: url("/wp-content/themes/chicopee/assets/img/select-arrow.svg") no-repeat;
  background-size: 15px 10px;
  pointer-events: none;
}
.enquiry-form .input-label {
  display: block;
}
.enquiry-form .checkboxes-row .checkbox {
  margin: 0 40px 20px 0;
}
.enquiry-form .checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.enquiry-form .checkbox__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2px solid #A1A5AD;
  border-radius: 0;
  cursor: pointer;
}
.enquiry-form .checkbox__icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background: none;
  transition: all 0.2s ease;
}
.enquiry-form .checkbox input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.enquiry-form .checkbox input[type=checkbox]:checked ~ .checkbox__icon:before {
  background: url("/wp-content/themes/chicopee/assets/img/tick.svg") no-repeat;
}
.enquiry-form .checkbox__label {
  display: inline-block;
  color: #22272f;
  padding-left: 30px;
  text-transform: uppercase;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
}
.enquiry-form .checkbox-text {
  margin-top: 6px;
  color: #A1A5AD;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
}
.enquiry-form .checkbox-text a {
  color: #A1A5AD;
  text-decoration: underline;
}
.enquiry-form__item {
  width: 100%;
}
.enquiry-form__item:not(:last-child) {
  margin-bottom: 28px;
}
@media screen and (min-width: 48em) {
  .enquiry-form__item--split {
    width: calc(50% - 15px);
  }
}
.enquiry-form__item--actions {
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media screen and (min-width: 30em) {
  .enquiry-form__item--actions {
    align-items: flex-start;
  }
}
@media screen and (min-width: 48em) {
  .enquiry-form__item--actions {
    flex-flow: row;
    align-items: center;
  }
}
@media screen and (min-width: 48em) {
  .enquiry-form__item--actions .form-recaptcha {
    order: 2;
  }
}
.enquiry-form__item--actions .btn {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 48em) {
  .enquiry-form__item--actions .btn {
    order: 1;
    margin: 0 40px 0 0;
  }
}
.enquiry-form__label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
}

/*------------------------------------*\
    #TABLES
\*------------------------------------*/
table caption {
  padding: 12px 8px;
  text-align: left;
  border-right: 2px solid #ffffff;
}

.table th {
  padding: 12px;
}

thead th {
  background: #404041;
  color: #ffffff;
}
thead tr {
  background: transparent;
}

td,
th {
  border-right: 2px solid #ffffff;
}

.table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

.table .alginleft {
  text-align: center;
}
@media screen and (min-width: 47.5625em) {
  .table .alginleft {
    text-align: left;
  }
}

.table tr {
  background: #c7c8ca;
}
.table tr:nth-child(even) {
  background: #dcdddf;
}

.stacktable {
  width: 100%;
}

.st-head-row {
  background: #404041;
  color: #ffffff;
  text-align: center !important;
}

.st-head-row.st-head-row-main {
  background: #c7c8ca;
  color: #22272f;
}

.st-key {
  width: 49%;
  text-align: right;
  padding-right: 1%;
}

.st-val {
  width: 49%;
  padding-left: 1%;
}

/* RESPONSIVE EXAMPLE */
.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media screen and (max-width: 47.5em) {
  .stacktable.large-only {
    display: none;
  }

  .stacktable.small-only {
    display: table;
  }
}
.product-disclaimer {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.disclaimer-table {
  pointer-events: none;
  width: 100%;
  zoom: 80%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (min-width: 900px) {
  .disclaimer-table {
    zoom: 100%;
  }
}
.disclaimer-table td {
  border: 2px solid #ffffff;
  padding: 5px 10px;
  vertical-align: middle;
  line-height: 1.3em;
}
.disclaimer-table td.nobreak {
  white-space: nowrap;
}
.disclaimer-table tr {
  background-color: #E3e3e3;
}
.disclaimer-table tr:nth-child(odd) {
  background-color: #f5f6f7;
}

/*------------------------------------*\
    #TABLES
\*------------------------------------*/
.jqvmap-label {
  padding: 10px;
  color: #ffffff;
  background: #e61e26;
  position: absolute;
  display: none;
  text-transform: uppercase;
  margin: -8px;
}

.jqvmap-zoomin, .jqvmap-zoomout {
  position: absolute;
  left: 10px;
  border-radius: 3px;
  background: #000000;
  padding: 3px;
  color: white;
  width: 10px;
  height: 10px;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
}

.jqvmap-zoomin {
  top: 10px;
}

.jqvmap-zoomout {
  top: 30px;
}

.jqvmap-region {
  cursor: pointer;
}

.jqvmap-ajax_response {
  width: 100%;
  height: 500px;
}

.map {
  display: none;
}
@media screen and (min-width: 75em) {
  .map {
    display: block;
    width: 924px;
    height: 600px;
  }
  .map svg {
    max-height: 100%;
    width: 100%;
    margin: 0;
  }
}

/*------------------------------------*\
    #FILTERS
\*------------------------------------*/
.clock-circle {
  display: none;
}
@media screen and (min-width: 62.5em) {
  .clock-circle {
    width: 120px;
    height: 120px;
    margin: 0;
    right: 15px;
    position: absolute;
    border: 8px solid #fff;
    border-radius: 50%;
    display: block;
  }
}

.clock-face {
  width: 100%;
  height: 100%;
}

.clock-line--hour {
  margin: -6px 0 -1px -28%;
  padding: 1px 0 1px 25%;
  transform-origin: 100% 50%;
  width: 32px !important;
  /* height: 10px !important; */
}

.clock-line {
  width: 6px;
  height: 6px;
  background: #ffffff;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  border-radius: 4px;
}

.clock-line--minute {
  margin: -42% 0px 0px;
  padding: 42% 1px 0;
  transform-origin: 50% 100%;
}

.clock-line--second {
  margin: -40% -1px 0 0;
  padding: 40% 1px 0;
  transform-origin: 50% 100%;
  opacity: 0.5;
}

/*!--------------------------------------------------------------------
STYLES "Outdated Browser"
Version:    1.1.0 - 2014
author:     Burocratik
website:    http://www.burocratik.com
* @preserve
-----------------------------------------------------------------------*/
#outdated {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  text-align: center;
  text-transform: uppercase;
  z-index: 1500;
  background-color: #f25648;
  color: #ffffff;
}
#outdated h6 {
  font-size: 25px;
  line-height: 25px;
  margin: 30px 0 10px;
}
#outdated p {
  font-size: 12px;
  line-height: 12px;
  margin: 0;
}
#outdated #btnUpdateBrowser {
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 30px auto 0;
  width: 230px;
  /*need for IE*/
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #ffffff;
  cursor: pointer;
}
#outdated #btnUpdateBrowser:hover {
  color: #f25648;
  background-color: #ffffff;
}
#outdated .last {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 20px;
  height: 20px;
}
#outdated .last[dir=rtl] {
  right: auto !important;
  left: 25px !important;
}
#outdated #btnCloseUpdateBrowser {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 36px;
}
* html #outdated {
  position: absolute;
}

#cookie-bar {
  background: #e61e26;
  height: auto;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
}

#cookie-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

#cookie-bar.fixed.bottom {
  bottom: 0;
  top: auto;
}

#cookie-bar p {
  margin: 0;
  padding: 0;
}

#cookie-bar a {
  color: #ffffff;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  padding: 4px 20px;
  margin-left: 12px;
}

#cookie-bar .cb-enable {
  background: #22272f;
}

#cookie-bar .cb-enable:hover {
  background: #080a0b;
}

#cookie-bar .cb-disable {
  background: #990000;
}

#cookie-bar .cb-disable:hover {
  background: #bb0000;
}

#cookie-bar .cb-policy {
  background: #404041;
}

#cookie-bar .cb-policy:hover {
  background: #222222;
}

.news-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 20px;
}
@media screen and (min-width: 30em) {
  .news-section {
    padding: 100px 0 60px;
  }
}
@media screen and (min-width: 87.8125em) {
  .news-section {
    padding: 100px 0 40px;
  }
}

.news-title {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.news-title__text h2 {
  font-size: 26px;
  line-height: 38px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 48em) {
  .news-title__text h2 {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (min-width: 80em) {
  .news-title__text h2 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.23px;
  }
}
@media screen and (max-width: 29.9375em) {
  .news-title__cta .btn {
    display: inline-flex;
    align-items: center;
    height: 37px;
    font-size: 12px;
    padding: 0 18px;
  }
  .news-title__cta .btn .mob-hide {
    display: none;
  }
}

.news {
  display: flex;
  flex-flow: row wrap;
  margin-top: 60px;
}
@media screen and (min-width: 37.5em) {
  .news {
    margin-top: 90px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (min-width: 87.8125em) {
  .news {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.news--archive {
  margin-top: 60px;
  margin-bottom: 30px;
}
@media screen and (min-width: 37.5em) {
  .news--archive {
    margin-top: 90px;
  }
}
.news--home {
  margin-top: 30px;
}
@media screen and (min-width: 37.5em) {
  .news--home {
    margin-top: 60px;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 61.875em) {
  .news--home .news__item:nth-child(3) {
    display: none;
  }
}
.news__item {
  width: 100%;
  margin: 0 0 60px;
  text-decoration: none;
}
@media screen and (min-width: 37.5em) {
  .news__item {
    width: calc(50% - 40px);
    margin: 0 20px 60px;
  }
}
@media screen and (min-width: 61.9375em) {
  .news__item {
    width: calc(33.33333% - 40px);
  }
}
@media screen and (min-width: 87.8125em) {
  .news__item {
    width: calc(33.33333% - 80px);
    margin: 0 40px 80px;
  }
}
.news__item--slide {
  display: block;
  width: 100%;
  margin: 0;
}
.news__item:hover .news__img:before {
  opacity: 0.8;
}
.news__item:hover .news__title {
  color: #e61e26;
}
.news__img {
  position: relative;
  overflow: hidden;
  max-width: 360px;
  border-radius: 14px;
  margin-bottom: 30px;
}
.news__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222222;
  opacity: 0;
  transition: all 0.3s ease;
}
.news__img img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
.news__cat {
  margin-bottom: 5px;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
}
.news__title {
  margin-bottom: 30px;
  color: #22272f;
  font-size: 18px;
  line-height: 25px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 37.5em) {
  .news__title {
    font-size: 21px;
    line-height: 28px;
  }
}
@media screen and (min-width: 80em) {
  .news__title {
    font-size: 24px;
    line-height: 35px;
  }
}
.news__link {
  position: relative;
  padding-bottom: 4px;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}
.news__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e61e26;
  transition: all 0.15s linear;
}

.footer-cta-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-bottom: -50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 48em) {
  .footer-cta-wrapper {
    margin-bottom: -69px;
    padding-bottom: 69px;
  }
}

.footer-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 48em) {
  .footer-separator {
    height: 69px;
  }
}
@media screen and (max-width: 25em) {
  .footer-separator {
    left: 50%;
    transform: translateX(-50%);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    min-width: 400px;
  }
}
.footer-separator__light {
  display: block;
  width: calc(50% + 14px);
  height: 12px;
  background: #f0eff3;
}
@media screen and (min-width: 48em) {
  .footer-separator__light {
    width: calc(50% + 20px);
    height: 17px;
  }
}
.footer-separator__grey {
  position: relative;
  display: block;
  width: calc(50% - 184px);
  height: 12px;
  background: #a1a5ad;
}
@media screen and (min-width: 48em) {
  .footer-separator__grey {
    width: calc(50% - 255px);
    height: 17px;
  }
}
.footer-separator__middle {
  display: block;
  position: absolute;
  top: 0;
  left: -19px;
}
@media screen and (max-width: 47.9375em) {
  .footer-separator__middle {
    left: -13px;
    width: 14px;
    height: 12px;
  }
}
.footer-separator__middle path {
  fill: #a1a5ad;
}
.footer-separator__end {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .footer-separator__end {
    width: 170px;
    height: 50px;
  }
}
.footer-separator__end .separator-path-bg {
  fill: #e61e26;
}

.footer-cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (min-width: 30em) {
  .footer-cta-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 85em) {
  .footer-cta-section {
    padding: 90px 0;
  }
}

.footer-cta-wavy-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1844px;
  max-width: none;
  opacity: 0.5;
}

.footer-cta-sub-title {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
}
@media screen and (min-width: 61.9375em) {
  .footer-cta-sub-title {
    margin-bottom: 15px;
  }
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media screen and (min-width: 61.9375em) {
  .footer-cta {
    grid-template-columns: 1fr 290px;
  }
}
.footer-cta__text {
  margin: 0 0 30px 0;
}
@media screen and (min-width: 61.9375em) {
  .footer-cta__text {
    margin: 0 60px 0 0;
  }
}
.footer-cta__text p {
  max-width: 760px;
  font-size: 24px;
  line-height: 30px;
}
@media screen and (min-width: 30em) {
  .footer-cta__text p {
    font-size: 38px;
    line-height: 48px;
  }
}
@media screen and (min-width: 48em) {
  .footer-cta__text p {
    font-size: 55px;
    line-height: 65px;
  }
}
@media screen and (min-width: 80em) {
  .footer-cta__text p {
    font-size: 65px;
    line-height: 80px;
    letter-spacing: -2px;
  }
}
.footer-cta__arrow .arrow-icon {
  transition: all 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .footer-cta__arrow .arrow-icon {
    width: 160px;
    height: 57px;
  }
}
.footer-cta:hover .footer-cta__arrow .arrow-icon {
  transform: translateX(20px);
}

.footer {
  position: relative;
  background: #3f3f40;
}
.footer--parallax {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.footer-to-top {
  position: absolute;
  right: 30px;
  bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 30em) {
  .footer-to-top {
    right: 60px;
  }
}
@media screen and (min-width: 48em) {
  .footer-to-top {
    bottom: 60px;
  }
}
@media screen and (min-width: 61.9375em) {
  .footer-to-top {
    right: 60px;
  }
}
@media screen and (min-width: 80em) {
  .footer-to-top {
    bottom: 240px;
  }
}
@media screen and (min-width: 100em) {
  .footer-to-top {
    right: 6vw;
  }
}
.footer-to-top:hover .arrow-up-icon {
  transform: translateY(-6px);
}
.footer-to-top .arrow-up-icon {
  display: block;
  transition: all 0.15s linear;
}

.footer-top {
  padding: 60px 0;
}
@media screen and (min-width: 30em) {
  .footer-top {
    padding: 90px 0 70px;
  }
}
@media screen and (min-width: 67.5em) {
  .footer-top {
    padding: 130px 0 100px;
  }
}

.footer-logo {
  margin-bottom: 40px;
}
@media screen and (min-width: 67.5em) {
  .footer-logo {
    margin-bottom: 60px;
  }
}

.footer-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footer-row__nav {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .footer-row__nav {
    width: calc(100% - 305px);
  }
}
@media screen and (min-width: 75.5em) {
  .footer-row__nav {
    width: calc(100% - 500px);
  }
}
.footer-row__links {
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 48em) {
  .footer-row__links {
    width: 305px;
    margin-top: 0;
  }
}
@media screen and (min-width: 80em) {
  .footer-row__links {
    width: 500px;
  }
}

.footer-nav {
  display: flex;
  flex-flow: row wrap;
}
.footer-nav h4 {
  margin-bottom: 15px;
  font-size: 16px;
}
@media screen and (min-width: 67.5em) {
  .footer-nav h4 {
    margin-bottom: 20px;
  }
}
.footer-nav__explore {
  order: 2;
  width: 50%;
  padding: 0 20px 0 0;
}
@media screen and (min-width: 61.9375em) {
  .footer-nav__explore {
    order: inherit;
    width: 25%;
  }
}
@media screen and (min-width: 100em) {
  .footer-nav__explore {
    width: 200px;
  }
}
.footer-nav__markets {
  order: 1;
  width: 100%;
  padding: 0 0 20px;
}
@media screen and (min-width: 61.9375em) {
  .footer-nav__markets {
    order: inherit;
    width: 50%;
  }
}
@media screen and (min-width: 100em) {
  .footer-nav__markets {
    width: 375px;
  }
}
.footer-nav__legal {
  order: 3;
  width: 50%;
}
@media screen and (min-width: 61.9375em) {
  .footer-nav__legal {
    order: inherit;
    width: 25%;
  }
}
@media screen and (min-width: 100em) {
  .footer-nav__legal {
    width: 200px;
  }
}

.footer-menu {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
}
.footer-menu--2-columns {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 48em) {
  .footer-menu--2-columns {
    padding: 0 20px 0 0;
  }
}
.footer-menu__col {
  width: 50%;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 47.9375em) {
  .footer-menu__col:last-child {
    padding: 0;
  }
}
.footer-menu__item,
.footer-menu .menu-item {
  width: 100%;
  margin-bottom: 0;
}
.footer-menu__item:not(:last-child),
.footer-menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 67.5em) {
  .footer-menu__item:not(:last-child),
.footer-menu .menu-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer-menu__item a,
.footer-menu .menu-item a {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 23px;
}
@media screen and (min-width: 30em) {
  .footer-menu__item a,
.footer-menu .menu-item a {
    font-size: 16px;
    line-height: 25px;
  }
}
.footer-menu__item a:hover,
.footer-menu .menu-item a:hover {
  color: #e61e26;
}

.newsletter-cta {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 80em) {
  .newsletter-cta {
    flex-flow: row;
    align-items: center;
  }
}
.newsletter-cta__title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 35px;
}
@media screen and (min-width: 80em) {
  .newsletter-cta__title {
    margin-bottom: 0;
  }
}
.newsletter-cta .btn {
  padding: 15px 15px 13px;
  color: #e61e26;
  background: #ffffff;
}
@media screen and (min-width: 30em) {
  .newsletter-cta .btn {
    padding: 15px 20px 13px;
  }
}
@media screen and (min-width: 80em) {
  .newsletter-cta .btn {
    width: 100%;
    max-width: 150px;
  }
}

.social-cta {
  margin-top: 25px;
}
@media screen and (min-width: 80em) {
  .social-cta {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 46px;
  }
}
.social-cta .btn {
  justify-content: center;
  max-width: 270px;
  margin-top: 25px;
}
@media screen and (min-width: 80em) {
  .social-cta .btn {
    width: calc(100% - 138px);
    max-width: initial;
    margin-top: 0;
  }
}

.social {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin: 0;
}
.social__item {
  display: block;
  margin-bottom: 0;
}
.social__item:not(:last-child) {
  margin-right: 22px;
}
.social__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  background: #ffffff;
  border-radius: 50%;
}
.social__item a .social-icon path {
  transition: all 0.15s linear;
}
.social__item a:hover {
  background: #22272f;
}
.social__item a:hover .social-icon path {
  fill: #ffffff;
}
.social__item .social-icon {
  display: block;
  fill: #ffffff;
  transition: all 0.15s linear;
}
.social__item .social-icon.linkedin {
  width: 20px;
  height: 20px;
}
.social__item .social-icon.vimeo {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding: 0 0 90px 0;
}
@media screen and (min-width: 48em) {
  .footer-bottom {
    padding: 60px 0;
    border-top: 1px solid #6f6f6e;
  }
}

.footer-copy {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 67.5em) {
  .footer-copy {
    flex-flow: row wrap;
    justify-content: space-between;
    padding-right: 100px;
  }
}
@media screen and (min-width: 80em) {
  .footer-copy {
    padding-right: 0;
  }
}
.footer-copy__item:first-child {
  margin: 0 0 15px;
}
@media screen and (min-width: 67.5em) {
  .footer-copy__item:first-child {
    margin: 0;
  }
}
@media screen and (min-width: 80em) {
  .footer-copy__item:first-child {
    margin: 10px 0 0;
  }
}
.footer-copy__links {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 10px;
}
.footer-copy__links li {
  margin-bottom: 0;
}
@media screen and (max-width: 79.9375em) {
  .footer-copy__links li:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer-copy__links li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (min-width: 80em) {
  .footer-copy__links li:not(:last-child) {
    position: relative;
    margin-right: 20px;
  }
  .footer-copy__links li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    display: block;
    width: 1px;
    height: 100%;
    background: #a1a5ad;
  }
}
.footer-copy p,
.footer-copy li,
.footer-copy a {
  color: #a1a5ad;
  font-size: 13px;
  line-height: 13px;
}
.footer-copy a {
  text-decoration: underline;
}
.footer-copy .grecaptcha-policy {
  margin: 0;
}
.footer-copy .berry-logo {
  width: 172px;
  height: 50px;
}
@media screen and (min-width: 48em) {
  .footer-copy .berry-logo {
    width: 212px;
    height: 61px;
  }
}

.btn--sample {
  display: inline-flex;
  align-items: center;
  padding: 11px 30px;
}
.btn--sample svg {
  margin-left: 10px;
}
.btn--sample:hover {
  background: #22272f;
}

/**
  * #Templates
*/
/*------------------------------------*\
    #MICROFIBRE
\*------------------------------------*/
@font-face {
  font-family: "Calibre";
  src: url("../../fonts/calibre/Calibre-Regular.eot");
  src: url("../../fonts/calibre/Calibre-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/calibre/Calibre-Regular.woff2") format("woff2"), url("../../fonts/calibre/Calibre-Regular.woff") format("woff"), url("../../fonts/calibre/Calibre-Regular.ttf") format("truetype"), url("../../fonts/calibre/Calibre-Regular.svg#Calibre-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Calibre-Semibold";
  src: url("../../fonts/calibre/Calibre-Semibold.eot");
  src: url("../../fonts/calibre/Calibre-Semibold.eot?#iefix") format("embedded-opentype"), url("../../fonts/calibre/Calibre-Semibold.woff2") format("woff2"), url("../../fonts/calibre/Calibre-Semibold.woff") format("woff"), url("../../fonts/calibre/Calibre-Semibold.ttf") format("truetype"), url("../../fonts/calibre/Calibre-Semibold.svg#Calibre-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Calibre-Bold";
  src: url("../../fonts/calibre/Calibre-Bold.eot");
  src: url("../../fonts/calibre/Calibre-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/calibre/Calibre-Bold.woff2") format("woff2"), url("../../fonts/calibre/Calibre-Bold.woff") format("woff"), url("../../fonts/calibre/Calibre-Bold.ttf") format("truetype"), url("../../fonts/calibre/Calibre-Bold.svg#Calibre-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}
.microsite-primary {
  color: #61A4D4;
}

.microsite-secondary {
  color: #A2A5A5;
}

.microsite {
  padding-top: 70px;
}
@media screen and (min-width: 48em) {
  .microsite {
    padding-top: 100px;
  }
}

.microsite-main {
  position: relative;
  overflow: hidden;
  display: block;
  background: #F1F5F6;
}

.microsite-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (min-width: 30em) {
  .microsite-container {
    padding: 0 60px;
  }
}
@media screen and (min-width: 61.9375em) {
  .microsite-container {
    padding: 0 100px;
  }
}

.microsite-section {
  padding: 90px 0;
}
@media screen and (min-width: 30em) {
  .microsite-section {
    padding: 120px 0;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite-section {
    padding: 200px 0;
  }
}

.microsite .bottom {
  margin-bottom: 25px;
}
@media screen and (min-width: 67.5em) {
  .microsite .bottom {
    margin-bottom: 30px;
  }
}
.microsite .bottom--xxs {
  margin-bottom: 5px;
}
.microsite .bottom--xs {
  margin-bottom: 10px;
}
.microsite .bottom--sm {
  margin-bottom: 10px;
}
@media screen and (min-width: 30em) {
  .microsite .bottom--sm {
    margin-bottom: 15px;
  }
}
.microsite .bottom--md {
  margin-bottom: 15px;
}
@media screen and (min-width: 67.5em) {
  .microsite .bottom--md {
    margin-bottom: 20px;
  }
}
.microsite .bottom--lg {
  margin-bottom: 35px;
}
@media screen and (min-width: 67.5em) {
  .microsite .bottom--lg {
    margin-bottom: 50px;
  }
}
.microsite .link {
  position: relative;
  text-decoration: none;
}
.microsite .link:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #61A4D4;
  transition: all 0.19s linear;
}
.microsite .link:hover {
  color: #A2A5A5;
}
.microsite .link:hover:before {
  background: #A2A5A5;
}
.microsite .link--light {
  color: #ffffff;
}
.microsite .link--light:before {
  background: #ffffff;
}
.microsite .link--light:hover {
  color: #22272f;
}
.microsite .link--light:hover:before {
  background: #22272f;
}
.microsite p {
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 23px;
}
@media screen and (min-width: 30em) {
  .microsite p {
    font-size: 20px;
    line-height: 30px;
  }
}
.microsite .cal400 {
  font-family: "Calibre", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.microsite .cal600 {
  font-family: "Calibre-Semibold", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.microsite .cal700 {
  font-family: "Calibre-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.microsite .beta, .microsite .holder-offset__answer p, .holder-offset__answer .microsite p {
  font-size: 30px;
  line-height: 36px;
}
@media screen and (min-width: 48em) {
  .microsite .beta, .microsite .holder-offset__answer p, .holder-offset__answer .microsite p {
    font-size: 35px;
    line-height: 42px;
  }
}
.microsite .delta, .microsite .slider-list-text p, .slider-list-text .microsite p,
.microsite .slider-list-text li,
.slider-list-text .microsite li, .microsite .ticklist__inline li, .ticklist__inline .microsite li {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: inherit;
}
.microsite .zeta, .microsite .notice-bar p, .notice-bar .microsite p, .microsite .pagination a, .pagination .microsite a,
.microsite .pagination .page-numbers,
.pagination .microsite .page-numbers, .microsite .jqvmap-label, .microsite #cookie-bar p, #cookie-bar .microsite p {
  font-size: 16px;
  line-height: 22px;
}
.microsite .base {
  font-size: 17px;
  line-height: 23px;
}
@media screen and (min-width: 30em) {
  .microsite .base {
    font-size: 20px;
    line-height: 30px;
  }
}
.microsite .tracking--214 {
  letter-spacing: 1.79px;
}
@media screen and (min-width: 30em) {
  .microsite .tracking--214 {
    letter-spacing: 2.14px;
  }
}
.microsite .list li {
  position: relative;
  padding-left: 20px;
  font-family: "Calibre", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 23px;
}
@media screen and (min-width: 30em) {
  .microsite .list li {
    font-size: 20px;
    line-height: 26px;
  }
}
.microsite .list li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: #61A4D4;
  border-radius: 50%;
}
@media screen and (min-width: 30em) {
  .microsite .list li:before {
    top: 12px;
  }
}
.microsite .list li:not(:last-child) {
  margin-bottom: 10px;
}
.microsite .list--light li {
  color: #ffffff;
}
.microsite .list--light li:before {
  background: #ffffff;
}
.microsite .btn {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 16px 20px;
  color: #ffffff;
  background: #61A4D4;
  border: none;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Calibre-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  transition: all 0.2s ease;
}
@media screen and (min-width: 30em) {
  .microsite .btn {
    padding: 16px 35px;
  }
}
.microsite .btn:hover {
  color: #22272f;
  background: #A2A5A5;
}
.microsite .btn--light {
  color: #61A4D4;
  background: #ffffff;
}
.microsite .to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  text-decoration: none;
  text-align: center;
}
.microsite .to-top__icon {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto 10px;
  background: #e61e26;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.microsite .to-top__icon .chevron-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% - 1px);
  display: block;
  width: 17px;
  height: 10px;
}
.microsite .to-top__text {
  transition: all 0.2s linear;
}
.microsite .to-top:hover .to-top__icon {
  background: #A2A5A5;
}
.microsite .to-top:hover .to-top__text {
  color: #A2A5A5;
}
.microsite .logo-icon {
  display: none;
}
@media screen and (min-width: 48em) {
  .microsite .logo-icon {
    position: absolute;
    top: -90px;
    right: -200px;
    display: block;
    width: 1106px;
    height: 1106px;
    opacity: 0.2;
  }
}
.microsite .hero-section {
  position: relative;
  padding: 80px 0 60px;
}
@media screen and (min-width: 30em) {
  .microsite .hero-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite .hero-section {
    padding: 120px 0 110px;
  }
}
.microsite .hero {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
.microsite .hero__img {
  width: 100%;
}
@media screen and (min-width: 80em) {
  .microsite .hero__img {
    width: 55%;
  }
}
.microsite .hero__img img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 80em) {
  .microsite .hero__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.microsite .hero__content {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}
@media screen and (min-width: 80em) {
  .microsite .hero__content {
    width: calc(45% + 90px);
    margin-left: -90px;
    padding-left: 90px;
    background: none;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite .hero__content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 220%;
    height: 220%;
    background: #ffffff;
    border-radius: 50%;
  }
}
.microsite .hero__content-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 35px 25px;
}
@media screen and (min-width: 30em) {
  .microsite .hero__content-inner {
    padding: 55px 40px;
  }
}
@media screen and (min-width: 48em) {
  .microsite .hero__content-inner {
    padding: 90px 60px;
  }
}
@media screen and (min-width: 80em) {
  .microsite .hero__content-inner {
    max-width: 495px;
    padding: 80px 60px 60px 40px;
  }
}
@media screen and (min-width: 100em) {
  .microsite .hero__content-inner {
    padding: 80px 60px 70px;
  }
}
.microsite .hero__content-inner .btn {
  margin-top: 30px;
}
@media screen and (min-width: 48em) {
  .microsite .hero__content-inner .btn {
    display: none;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite .body-spacing {
    padding: 0 40px 0 0;
  }
}
@media screen and (min-width: 100em) {
  .microsite .body-spacing {
    padding: 0 40px 0 120px;
  }
}
.microsite .body-row {
  display: flex;
  flex-flow: row wrap;
}
.microsite .body-row__content {
  width: 100%;
}
@media screen and (min-width: 80em) {
  .microsite .body-row__content {
    width: 55%;
  }
}
@media screen and (min-width: 100em) {
  .microsite .body-row__content {
    width: calc(55% + 60px);
    margin-right: -60px;
  }
}
.microsite .body-row__list {
  width: 100%;
}
@media screen and (min-width: 80em) {
  .microsite .body-row__list {
    width: 45%;
  }
}
@media screen and (min-width: 80em) {
  .microsite .body-row__list-inner {
    max-width: 495px;
    margin: 0 auto;
    padding: 0 60px 0 40px;
  }
}
@media screen and (min-width: 100em) {
  .microsite .body-row__list-inner {
    padding: 0 60px;
  }
}
.microsite .body-products-row {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (min-width: 37.5em) {
  .microsite .body-products-row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.microsite .body-products-row__item {
  width: 100%;
  margin: 0 0 40px;
  text-align: center;
}
@media screen and (min-width: 37.5em) {
  .microsite .body-products-row__item {
    width: inherit;
    margin: 0 20px 40px;
  }
}
.microsite .body-products-row__img {
  display: flex;
  align-items: center;
  height: 200px;
}
.microsite .body-products-row__img img {
  display: block;
  margin: 0 auto;
}
.microsite .body-products-row__title {
  font-size: 20px;
  line-height: 25px;
}
@media screen and (min-width: 30em) {
  .microsite .body-products-row__title {
    font-size: 24px;
    line-height: 30px;
  }
}
.microsite .icons-row {
  display: flex;
  flex-flow: row wrap;
}
.microsite .icons-row__item {
  width: 50%;
  margin: 0 0 20px;
}
@media screen and (min-width: 37.5em) {
  .microsite .icons-row__item {
    width: 25%;
  }
}
@media screen and (min-width: 80em) {
  .microsite .icons-row__item {
    width: 14.28571%;
  }
}
.microsite .icons-row__item p {
  max-width: 100px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 18px;
}
@media screen and (min-width: 30em) {
  .microsite .icons-row__item p {
    font-size: 20px;
    line-height: 21px;
  }
}
.microsite .icons-row__icon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100px;
  height: 90px;
  margin: 0 auto 20px;
}
.microsite .icons-row__icon svg {
  display: block;
}
.microsite .cards-section {
  padding: 60px 0 0;
}
@media screen and (min-width: 30em) {
  .microsite .cards-section {
    padding: 70px 0 0;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite .cards-section {
    padding: 100px 0 0;
  }
}
.microsite .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  min-height: 545px;
}
@media screen and (min-width: 80em) {
  .microsite .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: skewX(-11deg);
    transform-origin: bottom;
    width: 50%;
    height: 100%;
    background: #61A4D4;
  }
}
.microsite .card__img {
  width: 100%;
}
@media screen and (min-width: 80em) {
  .microsite .card__img {
    width: calc(50% + 140px);
    margin-right: -140px;
  }
}
.microsite .card__img img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .microsite .card__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.microsite .card__content {
  position: relative;
  width: 100%;
  background: #61A4D4;
}
@media screen and (min-width: 80em) {
  .microsite .card__content {
    width: 50%;
    background: none;
  }
}
.microsite .card__content-inner {
  padding: 35px 25px;
}
@media screen and (min-width: 30em) {
  .microsite .card__content-inner {
    padding: 55px 40px;
  }
}
@media screen and (min-width: 48em) {
  .microsite .card__content-inner {
    padding: 70px 60px;
  }
}
@media screen and (min-width: 80em) {
  .microsite .card__content-inner {
    max-width: 500px;
    margin-left: 140px;
    padding: 90px 60px 90px 20px;
  }
}
@media screen and (min-width: 100em) {
  .microsite .card__content-inner {
    padding: 90px 60px;
  }
}
@media screen and (min-width: 80em) {
  .microsite .card--reverse:before {
    left: auto;
    right: 50%;
    transform: skewX(-11deg);
    transform-origin: top;
  }
}
@media screen and (min-width: 80em) {
  .microsite .card--reverse .card__img {
    order: 2;
    margin-right: inherit;
    margin-left: -140px;
  }
}
@media screen and (min-width: 80em) {
  .microsite .card--reverse .card__content {
    order: 1;
  }
}
@media screen and (min-width: 80em) {
  .microsite .card--reverse .card__content-inner {
    margin-left: 70px;
  }
}
.microsite .card--chicopee:before {
  background: #e61e26;
}
.microsite .card--chicopee .card__content {
  background: #e61e26;
}
@media screen and (min-width: 80em) {
  .microsite .card--chicopee .card__content {
    background: none;
  }
}
.microsite .contact-section {
  padding: 60px 0 0;
}
@media screen and (min-width: 30em) {
  .microsite .contact-section {
    padding: 80px 0 0;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite .contact-section {
    padding: 120px 0 0;
  }
}
.microsite input[type=text], .microsite input[type=email], .microsite input[type=password], .microsite input[type=tel], .microsite input[type=number], .microsite input[type=date], .microsite input[type=search], .microsite select, .microsite textarea {
  margin: 0;
  padding: 15px 30px;
  background: #ffffff;
  border: 1px solid #888888;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: "Calibre", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 23px;
}
@media screen and (min-width: 30em) {
  .microsite input[type=text], .microsite input[type=email], .microsite input[type=password], .microsite input[type=tel], .microsite input[type=number], .microsite input[type=date], .microsite input[type=search], .microsite select, .microsite textarea {
    font-size: 20px;
    line-height: 30px;
  }
}
.microsite input[type=text]:focus, .microsite input[type=email]:focus, .microsite input[type=password]:focus, .microsite input[type=tel]:focus, .microsite input[type=number]:focus, .microsite input[type=date]:focus, .microsite input[type=search]:focus, .microsite select:focus, .microsite textarea:focus {
  outline: none;
  border-color: #61A4D4;
}
.microsite textarea {
  width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
}
.microsite input[type=submit] {
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.microsite input[type=submit]:focus {
  outline: none;
}
.microsite .form {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 48em) {
  .microsite .form {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.microsite .form__item {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 48em) {
  .microsite .form__item {
    width: calc(50% - 17px);
    margin-top: 30px;
  }
}
.microsite .form__item:nth-child(1) {
  margin-top: 0;
}
@media screen and (min-width: 48em) {
  .microsite .form__item:nth-child(2) {
    margin-top: 0;
  }
}
.microsite .form__item--full {
  width: 100%;
}
.microsite .form__item > label {
  display: block;
  margin-bottom: 10px;
  color: #22272f;
  text-transform: uppercase;
  font-family: "Calibre-Semibold", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 23px;
}
.microsite .form__item .btn {
  min-width: 215px;
}
.microsite .form .checkbox-label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.microsite .form .checkbox-label .check-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  background: #ffffff;
  border: 1px solid #888888;
  border-radius: 0;
  cursor: pointer;
}
.microsite .form .checkbox-label .check-icon:before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
.microsite .form .checkbox-label input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.microsite .form .checkbox-label input[type=checkbox]:checked ~ .check-icon:before {
  background: url(../../assets/img/microsite/tick.svg) no-repeat;
}
.microsite .form .checkbox-label__text {
  display: inline-block;
  color: #22272f;
  padding-left: 28px;
  font-family: "Calibre", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
.microsite .form .checkbox-label:not(:last-child) {
  margin: 0 20px 20px 0;
}
.microsite .form select {
  width: 100%;
  padding: 15px 70px 15px 30px;
}
.microsite .form .select-box, .microsite .form .hbspt-form form > fieldset.hs-fieldtype-select .input, .hbspt-form form > fieldset.hs-fieldtype-select .microsite .form .input {
  position: relative;
  display: block;
  width: 100%;
}
.microsite .form .select-box:after, .microsite .form .hbspt-form form > fieldset.hs-fieldtype-select .input:after, .hbspt-form form > fieldset.hs-fieldtype-select .microsite .form .input:after {
  content: "";
  position: absolute;
  top: 23px;
  right: 30px;
  display: block;
  width: 17px;
  height: 10px;
  background: url(../../assets/img/microsite/select-icon.svg) no-repeat;
  background-size: 17px 10px;
  pointer-events: none;
}
@media screen and (min-width: 30em) {
  .microsite .form .select-box:after, .microsite .form .hbspt-form form > fieldset.hs-fieldtype-select .input:after, .hbspt-form form > fieldset.hs-fieldtype-select .microsite .form .input:after {
    top: 26px;
  }
}
.microsite .form .not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #F54B5E;
  text-transform: none;
  font-family: "Calibre", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
.microsite .lang {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 10;
}
.microsite .lang select {
  width: 100%;
  padding: 10px 45px 10px 15px;
  font-size: 17px;
  line-height: 17px;
}
.microsite .lang .select-box, .microsite .lang .hbspt-form form > fieldset.hs-fieldtype-select .input, .hbspt-form form > fieldset.hs-fieldtype-select .microsite .lang .input {
  position: relative;
  display: block;
  width: 100%;
}
.microsite .lang .select-box:after, .microsite .lang .hbspt-form form > fieldset.hs-fieldtype-select .input:after, .hbspt-form form > fieldset.hs-fieldtype-select .microsite .lang .input:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: 17px;
  height: 10px;
  background: url(../../assets/img/microsite/select-icon.svg) no-repeat;
  background-size: 17px 10px;
  pointer-events: none;
}

.microsite-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #ffffff;
}
@media screen and (min-width: 48em) {
  .microsite-header {
    height: 100px;
  }
}
.microsite-header__logo {
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .microsite-header__logo {
    padding-left: 40px;
  }
}
@media screen and (min-width: 100em) {
  .microsite-header__logo {
    padding-left: 70px;
  }
}
.microsite-header__logo svg {
  display: block;
  width: 200px;
  height: 22px;
}
@media screen and (min-width: 23.4375em) {
  .microsite-header__logo svg {
    width: 250px;
    height: 27px;
  }
}
@media screen and (min-width: 48em) {
  .microsite-header__logo svg {
    width: 320px;
    height: 34px;
  }
}
@media screen and (min-width: 100em) {
  .microsite-header__logo svg {
    width: 358px;
    height: 38px;
  }
}
.microsite-header__title {
  display: none;
}
@media screen and (min-width: 80em) {
  .microsite-header__title {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.microsite-header__title p {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
}
@media screen and (min-width: 48em) {
  .microsite-header__title p {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (min-width: 100em) {
  .microsite-header__title p {
    font-size: 35px;
    line-height: 42px;
  }
}
.microsite-header__btn {
  display: none;
}
@media screen and (min-width: 48em) {
  .microsite-header__btn {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    padding-left: 50px;
  }
}
@media screen and (min-width: 100em) {
  .microsite-header__btn {
    padding-left: 60px;
  }
}
.microsite-header__btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 315px;
  height: 100%;
  padding: 0 30px 0 0;
  color: #ffffff;
  background: #61A4D4;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Calibre-Semibold", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 23px;
  transition: all 0.2s ease;
}
@media screen and (min-width: 100em) {
  .microsite-header__btn a {
    width: 385px;
    padding: 0 30px;
  }
}
.microsite-header__btn a:before {
  content: "";
  position: absolute;
  top: -14px;
  left: -50px;
  display: block;
  width: 198px;
  height: 198px;
  background: #61A4D4;
  border-radius: 50%;
  transition: all 0.2s ease;
}
@media screen and (min-width: 100em) {
  .microsite-header__btn a:before {
    left: -60px;
    width: 228px;
    height: 228px;
  }
}
.microsite-header__btn a span {
  position: relative;
  z-index: 10;
}
.microsite-header__btn a:hover {
  background: #A2A5A5;
}
.microsite-header__btn a:hover:before {
  background: #A2A5A5;
}

.microsite-footer {
  padding: 60px 0 80px;
  text-align: center;
  background: #F1F5F6;
}
@media screen and (min-width: 30em) {
  .microsite-footer {
    padding: 80px 0 80px;
  }
}
@media screen and (min-width: 67.5em) {
  .microsite-footer {
    padding: 90px 0 120px;
    text-align: right;
  }
}

.microsite-footer-row {
  display: flex;
  flex-flow: column-reverse;
}
@media screen and (min-width: 67.5em) {
  .microsite-footer-row {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.microsite-footer-row .copy {
  margin: 15px 0 0;
}
@media screen and (min-width: 67.5em) {
  .microsite-footer-row .copy {
    margin: 0 0 13px;
  }
}
@media screen and (min-width: 30em) {
  .microsite-footer-row .copy br {
    display: none;
  }
}
.microsite-footer-row .copy sup {
  font-size: 22px;
  top: -1px;
}
.microsite-footer-row .berry-logo {
  width: 210px;
  height: 67px;
}
@media screen and (min-width: 48em) {
  .microsite-footer-row .berry-logo {
    width: 285px;
    height: 90px;
  }
}

@media screen and (min-width: 85.125em) {
  .product-template .product-btn-lead {
    margin-left: 14px;
  }
}
.product-template .sticky-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 25px 0;
  transition: padding 0.2s ease;
  background-color: #ffffff;
  border-top: 1px solid #404041;
  border-bottom: 1px solid #404041;
}
.product-template .sticky-nav__wrapper {
  position: relative;
  z-index: 1;
}
.product-template .quick-links {
  width: calc(100% - 60px);
  padding: 10px 30px;
  background: #ffffff;
  border: 1px solid #e61e26;
  border-radius: 7px;
  cursor: pointer;
}
@media screen and (min-width: 30em) {
  .product-template .quick-links {
    width: 360px;
  }
}
@media screen and (min-width: 48em) {
  .product-template .quick-links {
    width: auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    cursor: default;
  }
}
.product-template .quick-links-title-wrapper {
  position: relative;
  display: block;
}
@media screen and (min-width: 48em) {
  .product-template .quick-links-title-wrapper {
    display: none;
  }
}
.product-template .quick-links-title {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}
.product-template .quick-links-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.product-template .quick-links-menu {
  display: none;
  padding: 20px 0 10px;
  margin: 0;
}
@media screen and (min-width: 48em) {
  .product-template .quick-links-menu {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    padding: 0;
    margin: 0;
  }
}
.product-template .quick-links-menu__item {
  display: block;
}
.product-template .quick-links-menu__item:not(:last-child) {
  margin: 0 0 15px 0;
}
@media screen and (min-width: 48em) {
  .product-template .quick-links-menu__item:not(:last-child) {
    margin: 0 83px 0 0;
  }
}
.product-template .quick-links-menu__item a {
  color: #e61e26;
  text-decoration: none;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}
.product-template .quick-links-menu__item a:hover {
  color: #404041;
}
.product-template .quick-links-menu__btn {
  display: flex;
  justify-content: center;
  margin: 0;
}
.product-template .quick-links-menu__btn a {
  display: inline-block;
  color: #ffffff;
  background: #e61e26;
  text-decoration: none;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}
.product-template .quick-links-menu__btn a:hover {
  background: #404041;
}
.product-template .banner-image {
  padding: 0 0 60px;
}
@media screen and (min-width: 48em) {
  .product-template .banner-image {
    padding: 0 0 80px;
  }
}
@media screen and (min-width: 85.3125em) {
  .product-template .banner-image {
    padding: 0 0 100px;
  }
}
.product-template .benefits-block {
  padding: 0 0 48px;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block {
    padding: 0 0 72px;
  }
}
@media screen and (min-width: 85.3125em) {
  .product-template .benefits-block {
    padding: 0 0 96px;
  }
}
.product-template .benefits-block__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 40px;
  color: #e61e26;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
}
.product-template .benefits-block__heading::before, .product-template .benefits-block__heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #8e8e8e;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__heading {
    gap: 24px;
    margin-bottom: 56px;
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 85.3125em) {
  .product-template .benefits-block__heading {
    margin-bottom: 72px;
    font-size: 48px;
    font-size: 3rem;
  }
}
.product-template .benefits-block__heading-text {
  flex: 0 0 auto;
  padding: 0 4px;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__heading-text {
    padding: 0 12px;
  }
}
.product-template .benefits-block__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 30em) {
  .product-template .benefits-block__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 24px;
  }
}
@media screen and (min-width: 65.5em) {
  .product-template .benefits-block__list {
    flex-wrap: nowrap;
    gap: 28px;
  }
}
.product-template .benefits-block__item {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 30em) {
  .product-template .benefits-block__item {
    width: calc(50% - 12px);
    max-width: none;
    margin: 0;
  }
}
@media screen and (min-width: 65.5em) {
  .product-template .benefits-block__item {
    width: 25%;
  }
}
.product-template .benefits-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }
}
.product-template .benefits-block__icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.product-template .benefits-block__title {
  margin: 0 0 12px;
  color: #e61e26;
  font-weight: 700;
  line-height: 1.25;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__title {
    margin-bottom: 14px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.product-template .benefits-block__text {
  color: #222;
  line-height: 1.45;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.product-template .benefits-block__text p {
  margin: 0 0 0.6em;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 48em) {
  .product-template .benefits-block__text p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.product-template .benefits-block__text p:last-child {
  margin-bottom: 0;
}
.product-template .benefits-block__text strong,
.product-template .benefits-block__text b {
  font-weight: 700;
}
.product-template .benefits-block__text sub,
.product-template .benefits-block__text sup {
  font-size: 0.75em;
  line-height: 0;
}
.product-template .intro-section {
  padding: 60px 0 0;
}
@media screen and (min-width: 48em) {
  .product-template .intro-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 85.3125em) {
  .product-template .intro-section {
    padding: 100px 0 0;
  }
}
.product-template .content-section {
  padding: 50px 0 0;
}
@media screen and (min-width: 48em) {
  .product-template .content-section {
    padding: 75px 0 0;
  }
}
@media screen and (min-width: 85.3125em) {
  .product-template .content-section {
    padding: 100px 0 0;
  }
}
.product-template .text-image {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
@media screen and (min-width: 65.5em) {
  .product-template .text-image.text-image--flex-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 65.5em) {
  .product-template .text-image {
    flex-direction: row;
  }
  .product-template .text-image > div {
    width: 50%;
  }
}
.product-template .text-image__text {
  max-width: 650px;
  margin: auto;
  padding: 20px;
}
@media screen and (min-width: 65.5em) {
  .product-template .text-image__text {
    padding: 50px;
  }
}
.product-template .text-image__text-textarea {
  margin-bottom: 15px;
}
.product-template .text-image__text-textarea i,
.product-template .text-image__text-textarea em {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 12px;
  line-height: 0.75rem;
}
.product-template .text-image__text-heading {
  padding-bottom: 15px;
}
.product-template .text-image__image {
  display: flex;
}
.product-template .text-image__image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  margin-bottom: 0;
}
.product-template .text-image__scroller {
  padding: 50px;
  max-width: 650px;
  margin: 0 auto;
}
.product-template .accordion {
  border-top: 1px solid #404041;
  padding-bottom: 15px;
}
.product-template .accordion.text-image--flex-reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 65.5em) {
  .product-template .accordion.text-image--flex-reverse {
    flex-direction: row-reverse;
  }
}
.product-template .accordion__item {
  border-bottom: 1px solid #404041;
}
.product-template .accordion__trigger {
  position: relative;
  width: 100%;
  padding: 12px 35px 12px 0;
  text-align: left;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  cursor: pointer;
  color: black;
}
.product-template .accordion__trigger:focus {
  background: rgba(64, 64, 65, 0.1);
}
.product-template .accordion__trigger .accordion-icon {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 10px;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
.product-template .accordion__trigger .accordion-icon:before, .product-template .accordion__trigger .accordion-icon:after,
.product-template .accordion__trigger .accordion-icon span {
  display: block;
  position: absolute;
  background: #e61e26;
}
.product-template .accordion__trigger .accordion-icon:before, .product-template .accordion__trigger .accordion-icon:after {
  content: "";
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.product-template .accordion__trigger .accordion-icon:before,
.product-template .accordion__trigger .accordion-icon span {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
}
.product-template .accordion__trigger .accordion-icon:after {
  content: "";
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
}
.product-template .accordion__trigger .accordion-icon span {
  width: 0%;
  transition: all 0.3s ease-in-out;
}
.product-template .accordion__trigger.active .accordion-icon:before {
  width: 0%;
  transition: all 0.3s ease-in-out;
}
.product-template .accordion__trigger.active .accordion-icon:after {
  height: 0%;
  transition: all 0.3s ease-in-out;
}
.product-template .accordion__trigger.active .accordion-icon span {
  width: 100%;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.product-template .accordion__content {
  display: none;
  padding-top: 10px;
  padding-bottom: 35px;
}
.product-template .accordion__content img {
  display: block;
}
.product-template .accordion--first .accordion__item:first-child .accordion__content {
  display: block;
}
.product-template .technical-tables__block {
  margin-bottom: 48px;
}
@media screen and (min-width: 48em) {
  .product-template .technical-tables__block {
    margin-bottom: 64px;
  }
}
.product-template .technical-tables__block:last-child {
  margin-bottom: 0;
}
.product-template .technical-tables__title {
  margin: 0 0 16px;
  color: #e61e26;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.25;
}
@media screen and (min-width: 48em) {
  .product-template .technical-tables__title {
    margin-bottom: 20px;
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.product-template .technical-tables__table {
  margin-bottom: 0;
}
.product-template .technical-data__image {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.product-template .technical-data__swatch-option {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
}
.product-template .technical-data__colour-cell {
  min-width: 120px;
  text-align: center;
  vertical-align: middle;
}
.product-template .technical-data__colour-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.product-template .technical-data__colour-dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
}
@media screen and (min-width: 48em) {
  .product-template .technical-data__colour-dot {
    width: 20px;
    height: 20px;
  }
}
.product-template .technical-data__colour-dot--light {
  border-color: #d0d0d0;
}
.product-template .scrolling-stat {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.product-template .scrolling-stat__icon {
  margin-bottom: 50px;
}
.product-template .scrolling-stat__image {
  display: block;
  max-width: min(100%, 500px);
}

.product-tabs .main-content {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.product-tabs .a350,
.product-tabs .table td,
.product-tabs .product-desc,
.product-tabs .benefits-block__text {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.product-tabs .html-block {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.product-tabs .product-title__heading {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.product-tabs .a300, .product-tabs .content h3, .content .product-tabs h3, .product-tabs .news-article h2, .news-article .product-tabs h2, .product-tabs .slider-list-text p, .slider-list-text .product-tabs p,
.product-tabs .slider-list-text li,
.slider-list-text .product-tabs li, .product-tabs .ticklist__inline li, .ticklist__inline .product-tabs li, .product-tabs .results li h2, .results li .product-tabs h2, .product-tabs .form-select select, .form-select .product-tabs select, .product-tabs .input__select, .product-tabs .selectboxit-container *, .selectboxit-container .product-tabs *, .product-tabs .selectboxit-text, .product-tabs .table td, .table .product-tabs td {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #22272f;
}
.product-tabs .product-title .a300.delta, .product-tabs .product-title .content h3.delta, .content .product-tabs .product-title h3.delta, .product-tabs .product-title .news-article h2.delta, .news-article .product-tabs .product-title h2.delta, .product-tabs .product-title .results li h2.delta, .results li .product-tabs .product-title h2.delta, .product-tabs .product-title .form-select select.delta, .form-select .product-tabs .product-title select.delta, .product-tabs .product-title .delta.input__select, .product-tabs .product-title .selectboxit-container .delta, .selectboxit-container .product-tabs .product-title .delta, .product-tabs .product-title .delta.selectboxit-text, .product-tabs .product-title .table td.delta, .table .product-tabs .product-title td.delta, .product-tabs .product-title .slider-list-text p, .slider-list-text .product-tabs .product-title p,
.product-tabs .product-title .slider-list-text li,
.slider-list-text .product-tabs .product-title li, .product-tabs .product-title .ticklist__inline li, .ticklist__inline .product-tabs .product-title li {
  color: #404143;
}
.product-tabs .product-desc p {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-tabs .product-title__kicker {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.product-tabs .heading__subtitle,
.product-tabs .related-products__kicker,
.product-tabs .product-tabs-acc__label,
.product-tabs .enquiry-form-title {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.product-tabs .benefits-block__title,
.product-tabs .benefits-block__heading,
.product-tabs .technical-tables__title,
.product-tabs .product-tabs-card__title,
.product-tabs .product-tabs-credentials__title,
.product-tabs .product-tabs-applications__title,
.product-tabs .html-block h1,
.product-tabs .html-block h2,
.product-tabs .html-block h3,
.product-tabs .html-block h4,
.product-tabs .heading h2,
.product-tabs .product-list__group h3,
.product-tabs .related-products__title .product-list__group--link {
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.product-tabs .benefits-block--tabs .benefits-block__title,
.product-tabs .product-tabs-credentials__title,
.product-tabs .product-tabs-applications__title {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .benefits-block--tabs .benefits-block__title,
.product-tabs .product-tabs-credentials__title,
.product-tabs .product-tabs-applications__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .benefits-block--tabs .benefits-block__title,
.product-tabs .product-tabs-credentials__title,
.product-tabs .product-tabs-applications__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.product-tabs .benefits-block--tabs .benefits-block__text,
.product-tabs .benefits-block--tabs .benefits-block__text p,
.product-tabs .benefits-block--tabs .benefits-block__text span,
.product-tabs .product-tabs-applications__text,
.product-tabs .product-tabs-credentials__text,
.product-tabs .product-tabs-credentials__text p,
.product-tabs .product-tabs-credentials__text li {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .benefits-block--tabs .benefits-block__text,
.product-tabs .benefits-block--tabs .benefits-block__text p,
.product-tabs .benefits-block--tabs .benefits-block__text span,
.product-tabs .product-tabs-applications__text,
.product-tabs .product-tabs-credentials__text,
.product-tabs .product-tabs-credentials__text p,
.product-tabs .product-tabs-credentials__text li {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .benefits-block--tabs .benefits-block__text,
.product-tabs .benefits-block--tabs .benefits-block__text p,
.product-tabs .benefits-block--tabs .benefits-block__text span,
.product-tabs .product-tabs-applications__text,
.product-tabs .product-tabs-credentials__text,
.product-tabs .product-tabs-credentials__text p,
.product-tabs .product-tabs-credentials__text li {
    font-size: 16px;
    font-size: 1rem;
  }
}
.product-tabs strong,
.product-tabs b {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.product-tabs .breadcrumbs strong {
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 350;
}
.product-tabs .section.background:has(.product-slider) {
  padding: 48px 0 56px;
}
@media screen and (min-width: 30em) {
  .product-tabs .section.background:has(.product-slider) {
    padding: 64px 0 64px;
  }
}
@media screen and (min-width: 50em) {
  .product-tabs .section.background:has(.product-slider) {
    padding: 80px 0 56px;
  }
}
.product-tabs .section.background:has(.product-slider) .product-title {
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.product-tabs .section.background:has(.product-slider) .product-desc p {
  margin-bottom: 32px;
}
.product-tabs .section.background:has(.product-slider) .product-desc .html-block h1 {
  margin-bottom: 28px;
}
.product-tabs .section.background:has(.product-slider) .col__two {
  margin-bottom: 24px;
}
@media screen and (min-width: 50em) {
  .product-tabs .section.background:has(.product-slider) .col__two {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 49.9375em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) {
    display: flex;
    flex-direction: column;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider)::before, .product-tabs .section.background > .container > .group__outer:has(.product-slider)::after {
    display: none;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .col__two--last {
    order: -1;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 50em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider)::before, .product-tabs .section.background > .container > .group__outer:has(.product-slider)::after {
    display: none;
  }
}
@media screen and (min-width: 50em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .col__two--last {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider {
  margin-bottom: 0;
}
@media screen and (min-width: 50em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider {
    float: none;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-direction-nav {
    display: none;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-control-nav {
    position: static;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    bottom: auto;
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-control-paging li {
    margin: 0 4px;
    display: inline-block;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-control-paging li a {
    width: 7px;
    height: 7px;
    background: #c8ccd2;
    box-shadow: none;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-control-paging li a.flex-active {
    background: #e61e26;
    width: 8px;
    height: 8px;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__controls {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    box-sizing: border-box;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__pill {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    min-height: 44px;
    padding: 4px 6px;
    background: #eceef1;
    border-radius: 999px;
    box-sizing: border-box;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #22272f;
    cursor: pointer;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__nav .icon:before {
    font-size: 11px;
    line-height: 11px;
    font-weight: normal !important;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #eceef1;
    color: #22272f;
    cursor: pointer;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__zoom .icon:before {
    font-size: 14px;
    line-height: 14px;
    font-weight: normal !important;
  }
}
@media screen and (min-width: 48em) {
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .product-slider__controls {
    display: none;
  }
  .product-tabs .section.background > .container > .group__outer:has(.product-slider) .product-slider .flex-control-nav {
    display: none;
  }
}
.product-tabs .tab-ct {
  min-height: 0;
}
.product-tabs .tab-content.current {
  display: block;
}
.product-tabs .tab-content {
  padding: 24px 0 20px;
}
@media screen and (min-width: 48em) {
  .product-tabs .tab-content {
    padding: 40px 0 32px;
  }
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-acc {
    overflow: hidden;
  }
}
.product-tabs .product-tabs-acc__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #D4D3D3;
}
.product-tabs .product-tabs-acc__item {
  border-bottom: 1px solid #D4D3D3;
}
.product-tabs .product-tabs-acc__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.product-tabs .product-tabs-acc__trigger:hover, .product-tabs .product-tabs-acc__trigger:active, .product-tabs .product-tabs-acc__trigger:focus {
  color: #e61e26;
}
.product-tabs .product-tabs-acc__trigger:hover .product-tabs-acc__toggle, .product-tabs .product-tabs-acc__trigger:active .product-tabs-acc__toggle, .product-tabs .product-tabs-acc__trigger:focus .product-tabs-acc__toggle {
  color: inherit;
}
.product-tabs .product-tabs-acc__trigger.is-current {
  color: #e61e26;
}
.product-tabs .product-tabs-acc__trigger.is-current .product-tabs-acc__toggle {
  color: inherit;
  transform: rotate(180deg);
}
.product-tabs .product-tabs-acc__label {
  flex: 1 1 auto;
  min-width: 0;
}
.product-tabs .product-tabs-acc__toggle {
  flex: 0 0 auto;
  margin-left: auto;
  line-height: 1;
  color: #A1A5AD;
  transition: transform 0.2s ease;
}
.product-tabs .product-tabs-acc__toggle:before {
  display: block;
  font-size: 11px;
  line-height: 11px;
  height: 11px;
  font-weight: normal !important;
}
.product-tabs .product-tabs-acc__icon {
  display: none;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-acc__list {
    display: grid;
    grid-template-columns: repeat(var(--tab-count, 4), minmax(0, 1fr));
    border-top: 0;
    border-left: 1px solid #D4D3D3;
  }
  .product-tabs .product-tabs-acc__item {
    display: contents;
    border: 0;
  }
  .product-tabs .product-tabs-acc__trigger {
    display: block;
    grid-row: 1;
    padding: 17px 0 10px;
    border-top: 1px solid #D4D3D3;
    border-right: 1px solid #D4D3D3;
    color: #A1A5AD;
    text-align: center;
    transition: all 0.15s ease;
  }
  .product-tabs .product-tabs-acc__trigger.is-current {
    background: #f5f6f7;
    color: #e61e26;
    border-bottom: 1px solid #f5f6f7;
    border-top: 6px solid #e61e26;
    padding: 11px 0 10px;
  }
  .product-tabs .product-tabs-acc__icon {
    display: inline-block;
    margin: 0 8px 0 0;
    vertical-align: middle;
  }
  .product-tabs .product-tabs-acc__label {
    display: inline-block;
    flex: none;
    vertical-align: middle;
  }
  .product-tabs .product-tabs-acc__toggle {
    display: none;
  }
  .product-tabs .product-tabs-acc__panel {
    grid-column: 1/-1;
  }
  .product-tabs .product-tabs-acc__panel.current {
    position: relative;
    z-index: 0;
    background: #f5f6f7;
  }
  .product-tabs .product-tabs-acc__panel.current::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #f5f6f7;
    z-index: -1;
    pointer-events: none;
  }
}
.product-tabs .speclist__sectionbtm {
  margin-bottom: 0;
}
.product-tabs .technical-tables__title {
  text-align: center;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.product-tabs .benefits-block--tabs {
  padding: 0;
}
.product-tabs .benefits-block--tabs .benefits-block__list {
  justify-content: center;
}
@media screen and (min-width: 65.5em) {
  .product-tabs .benefits-block--tabs .benefits-block__list {
    flex-wrap: wrap;
  }
}
.product-tabs .benefits-block--tabs .benefits-block__item {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 30em) {
  .product-tabs .benefits-block--tabs .benefits-block__item {
    margin: 0;
  }
}
@media screen and (min-width: 65.5em) {
  .product-tabs .benefits-block--tabs .benefits-block__item {
    width: calc(50% - 14px);
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .benefits-block--tabs .benefits-block__item {
    width: calc(25% - 21px);
  }
}
.product-tabs .benefits-block--tabs .benefits-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 2.7px solid #555555;
  border-radius: 10px;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .product-tabs .benefits-block--tabs .benefits-block__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }
}
.product-tabs .benefits-block--tabs .benefits-block__icon img {
  display: block;
  width: 58%;
  height: 58%;
  max-width: 58%;
  max-height: 58%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product-tabs .benefits-block--tabs .benefits-block__title {
  overflow-wrap: break-word;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
.product-tabs .benefits-block--tabs .benefits-block__text {
  overflow-wrap: break-word;
  line-height: 1.5;
}
@media screen and (min-width: 75em) {
  .product-tabs .benefits-block--tabs .benefits-block__text {
    line-height: 1.45;
  }
}
.product-tabs .benefits-block--tabs .benefits-block__text p,
.product-tabs .benefits-block--tabs .benefits-block__text span {
  line-height: inherit;
}
.product-tabs .benefits-block--tabs .benefits-block__text strong,
.product-tabs .benefits-block--tabs .benefits-block__text b {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.product-tabs .product-tabs-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-cards {
    gap: 24px;
  }
}
.product-tabs .product-tabs-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e4e6e8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  text-align: left;
  box-sizing: border-box;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-card {
    flex: 0 1 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    padding: 32px 28px;
  }
}
.product-tabs .product-tabs-card__title {
  margin: 0 0 12px;
  color: #22272f;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.25;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-card__title {
    margin-bottom: 14px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .product-tabs-card__title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.product-tabs .product-tabs-card__text {
  margin: 0;
  color: #59616b;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 75em) {
  .product-tabs .product-tabs-card__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.product-tabs .product-tabs-card__text p {
  margin: 0;
}
.product-tabs .product-tabs-card__text p + p {
  margin-top: 0.75em;
}
.product-tabs .product-tabs-card__text sup {
  font-size: 0.65em;
  vertical-align: super;
  line-height: 0;
}
.product-tabs .product-tabs-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.product-tabs .product-tabs-card__list li {
  margin: 0 0 12px;
  color: #59616b;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  line-height: 1.45;
  font-size: 15px;
  font-size: 0.9375rem;
}
.product-tabs .product-tabs-card__list li:last-child {
  margin-bottom: 0;
}
.product-tabs .product-tabs-card__list li strong {
  display: block;
  margin-bottom: 4px;
  color: #22272f;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.product-tabs .product-tabs-card__btn {
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-start;
}
.product-tabs .product-tabs-credentials {
  margin-top: 0;
  padding-bottom: 8px;
}
.product-tabs .product-tabs-credentials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 36px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-credentials__list {
    gap: 40px 28px;
  }
}
.product-tabs .product-tabs-credentials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (min-width: 65.5em) {
  .product-tabs .product-tabs-credentials__item {
    width: calc(50% - 14px);
    max-width: calc(50% - 14px);
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .product-tabs-credentials__item {
    width: calc(25% - 21px);
    max-width: calc(25% - 21px);
  }
}
.product-tabs .product-tabs-credentials__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 12px 16px;
  min-height: 80px;
  margin: 0 0 20px;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-credentials__logos {
    min-height: 88px;
    margin-bottom: 24px;
  }
}
.product-tabs .product-tabs-credentials__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 72px;
  height: 72px;
  max-width: 100%;
  border: 2.7px solid #555555;
  border-radius: 10px;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-credentials__logo {
    width: 88px;
    height: 88px;
  }
}
.product-tabs .product-tabs-credentials__logo img {
  display: block;
  width: 58%;
  height: 58%;
  max-width: 58%;
  max-height: 58%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
.product-tabs .product-tabs-credentials__logo figcaption {
  margin: 6px 0 0;
  color: #6b7380;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
}
.product-tabs .product-tabs-credentials__title {
  margin: 0 0 12px;
  color: #e61e26;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: break-word;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-credentials__title {
    margin-bottom: 14px;
  }
}
.product-tabs .product-tabs-credentials__text {
  color: #222;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.product-tabs .product-tabs-credentials__text p,
.product-tabs .product-tabs-credentials__text ul {
  margin: 0;
}
.product-tabs .product-tabs-credentials__text ul {
  display: inline-block;
  padding: 0;
  list-style: none;
  text-align: left;
}
.product-tabs .product-tabs-credentials__text li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: #222;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}
.product-tabs .product-tabs-credentials__text li:last-child {
  margin-bottom: 0;
}
.product-tabs .product-tabs-credentials__text li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e61e26;
}
.product-tabs .product-tabs-credentials__text li sup {
  position: relative;
  top: -4px;
  font-size: 0.5em;
  vertical-align: super;
  line-height: 0;
}
.product-tabs .product-tabs-credentials__text strong,
.product-tabs .product-tabs-credentials__text b {
  color: inherit;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.product-tabs .product-tabs-credentials__text sup {
  position: relative;
  top: -1px;
  font-size: 0.5em;
  vertical-align: super;
  line-height: 0;
}
.product-tabs .product-tabs-credentials__footnote {
  margin: 28px 0 0;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid #ece7e7;
  color: #8a9099;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-credentials__footnote {
    margin-top: 32px;
    padding-top: 18px;
    padding-bottom: 8px;
  }
}
.product-tabs .product-tabs-credentials__footnote sup {
  position: relative;
  top: 0;
  font-size: 0.85em;
  vertical-align: super;
  line-height: 0;
}
.product-tabs .product-tabs-credentials__footnote-line {
  display: block;
}
.product-tabs .product-tabs-credentials__footnote-line + .product-tabs-credentials__footnote-line {
  margin-top: 6px;
}
.product-tabs .product-tabs-page-footnotes {
  margin-top: 32px;
  padding: 24px 0 40px;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-page-footnotes {
    margin-top: 0;
    padding: 32px 0 48px;
  }
}
.product-tabs .product-tabs-page-footnotes .product-tabs-credentials__footnote {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: #6b7380;
  font-size: 11px;
  font-size: 0.6875rem;
}
.product-tabs .product-tabs-footnotes {
  margin: 8px 0 0;
  color: #6b7380;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-footnotes {
    margin-top: 12px;
  }
}
.product-tabs .product-tabs-footnotes p {
  margin: 0;
}
.product-tabs .product-tabs-footnotes p + p {
  margin-top: 0.4em;
}
.product-tabs .product-tabs-footnotes sup {
  font-size: 0.85em;
  vertical-align: super;
  line-height: 0;
}
.product-tabs .product-tabs-applications__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-applications__list {
    gap: 32px 36px;
  }
}
.product-tabs .product-tabs-applications__item {
  position: relative;
  flex: 0 1 100%;
  width: 100%;
  max-width: 320px;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 30em) {
  .product-tabs .product-tabs-applications__item {
    flex: 0 1 calc(50% - 14px);
    width: calc(50% - 14px);
    max-width: none;
  }
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-applications__item {
    flex: 1 1 260px;
    width: auto;
    max-width: 320px;
  }
}
.product-tabs .product-tabs-applications__link {
  position: relative;
  display: block;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 32px;
  line-height: 0;
  cursor: default;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-applications__link {
    border-radius: 48px;
  }
}
.product-tabs .product-tabs-applications__link[href] {
  cursor: zoom-in;
}
.product-tabs .product-tabs-applications__link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.product-tabs .product-tabs-applications__count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 5px 8px 4px;
  border-radius: 999px;
  background: rgba(17, 20, 24, 0.75);
  color: #fff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .product-tabs-applications__count {
    right: 22px;
    bottom: 22px;
  }
}
.product-tabs .product-tabs-applications__gallery-extra {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.product-tabs .product-tabs-applications__title {
  margin: 0 0 6px;
  color: #e61e26;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.25;
}
.product-tabs .product-tabs-applications__text {
  margin: 0;
  color: #222;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.product-tabs .product-tabs-applications__text p {
  color: #222;
}
.product-tabs .product-tabs-applications__text strong,
.product-tabs .product-tabs-applications__text b {
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.product-tabs .related-products .related-products__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-tabs .related-products .related-products__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  background: transparent;
  border-radius: 32px;
}
@media screen and (min-width: 48em) {
  .product-tabs .related-products .related-products__thumb {
    border-radius: 48px;
  }
}
.product-tabs .related-products .related-products__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.product-tabs .related-products .related-products__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-tabs .related-products .related-products__kicker {
  display: block;
  margin: 0 0 6px;
  color: #222;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .related-products .related-products__kicker {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .related-products .related-products__kicker {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.product-tabs .related-products .related-products__title {
  margin: 0;
}
.product-tabs .related-products .related-products__title .product-list__group--link {
  display: block;
  margin-bottom: 0;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
}
@media screen and (min-width: 48em) {
  .product-tabs .related-products .related-products__title .product-list__group--link {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 32px;
    line-height: 2rem;
  }
}
@media screen and (min-width: 75em) {
  .product-tabs .related-products .related-products__title .product-list__group--link {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
    line-height: 2.125rem;
  }
}
.product-tabs .related-products .related-products__actions {
  display: none;
}
.product-tabs .related-products--slider .related-products__card {
  border-radius: 32px;
}
@media screen and (min-width: 48em) {
  .product-tabs .related-products--slider .related-products__card {
    border-radius: 48px;
  }
}
.product-tabs .related-products--slider .related-products__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 8px;
}
.product-tabs .related-products--slider .related-products__progress {
  flex: 1 1 auto;
  position: relative;
  height: 2px;
  background: #D4D3D3;
  border-radius: 2px;
  overflow: hidden;
}
.product-tabs .related-products--slider .related-products__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 30%;
  background: #e61e26;
  border-radius: 2px;
  will-change: width, transform;
}
.product-tabs .related-products--slider .related-products__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.product-tabs .related-products--slider .related-products__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #A1A5AD;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.product-tabs .related-products--slider .related-products__arrow .icon:before {
  font-size: 12px;
  line-height: 12px;
  font-weight: normal !important;
}
.product-tabs .related-products--slider .related-products__arrow:hover, .product-tabs .related-products--slider .related-products__arrow:focus {
  color: #e61e26;
}
.product-tabs .related-products--slider .related-products__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 47.9375em) {
  .product-tabs .related-products--slider .related-products__actions {
    display: none;
  }
  .product-tabs .related-products--slider .related-products__viewport {
    overflow: hidden;
    margin-right: -16px;
  }
  .product-tabs .related-products--slider .related-products__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
    padding-right: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-tabs .related-products--slider .related-products__track::-webkit-scrollbar {
    display: none;
  }
  .product-tabs .related-products--slider .related-products__track::before, .product-tabs .related-products--slider .related-products__track::after {
    display: none;
  }
  .product-tabs .related-products--slider .related-products__slide {
    float: none;
    flex: 0 0 78%;
    width: 78%;
    max-width: 78%;
    margin: 0;
    margin-bottom: 0;
    scroll-snap-align: start;
  }
  .product-tabs .related-products--slider .related-products__card {
    background: #fff;
    border: 1px solid #D4D3D3;
    border-radius: 32px;
    overflow: hidden;
    padding: 16px 16px 20px;
    box-sizing: border-box;
  }
  .product-tabs .related-products--slider .related-products__thumb {
    background: #fff;
  }
  .product-tabs .related-products--slider .related-products__title .product-list__group--link {
    font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}
@media screen and (min-width: 48em) {
  .product-tabs .related-products--slider .related-products__controls {
    display: none;
  }
  .product-tabs .related-products--slider .related-products__viewport {
    overflow: visible;
    margin-right: 0;
  }
  .product-tabs .related-products--slider .related-products__track {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .product-tabs .related-products--slider .related-products__track::before, .product-tabs .related-products--slider .related-products__track::after {
    display: none;
  }
  .product-tabs .related-products--slider .related-products__slide {
    display: flex;
    float: none;
    margin-bottom: 40px;
  }
  .product-tabs .related-products--slider .related-products__card {
    width: 100%;
    background: #fff;
    border: 1px solid #D4D3D3;
    border-radius: 48px;
    overflow: hidden;
    padding: 20px 20px 24px;
    box-sizing: border-box;
  }
  .product-tabs .related-products--slider .related-products__thumb {
    background: #fff;
  }
}

/*------------------------------------*\
    #rMICROFIBRE LANDING
\*------------------------------------*/
.rmicrofibre-landing {
  overflow: hidden;
}
.rmicrofibre-landing .btn,
.rmicrofibre-landing .btn.btn__round,
.rmicrofibre-landing .wpcf7-submit,
.rmicrofibre-landing input[type=submit] {
  text-transform: none !important;
  letter-spacing: normal;
}

.rml-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 56px 0;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .rml-hero {
    min-height: 640px;
    padding: 96px 0;
  }
}
@media screen and (min-width: 85.3125em) {
  .rml-hero {
    min-height: 720px;
  }
}
.rml-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}
.rml-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
}
.rml-hero__content {
  max-width: 100%;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .rml-hero__content {
    max-width: 620px;
  }
}
@media screen and (min-width: 65.5em) {
  .rml-hero__content {
    max-width: 700px;
  }
}
.rml-hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  .rml-hero__title {
    margin-bottom: 22px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.18;
  }
}
@media screen and (min-width: 75em) {
  .rml-hero__title {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.15;
  }
}
.rml-hero__separator {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.55);
}
@media screen and (min-width: 48em) {
  .rml-hero__separator {
    margin-bottom: 22px;
  }
}
.rml-hero__subtitle {
  margin: 0 0 24px;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48em) {
  .rml-hero__subtitle {
    margin-bottom: 28px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-hero__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.rml-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 48em) {
  .rml-hero__highlights {
    gap: 14px;
    margin-bottom: 32px;
  }
}
.rml-hero__highlight {
  display: block;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.rml-hero__highlight img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}
@media screen and (min-width: 48em) {
  .rml-hero__highlight img {
    height: 72px;
  }
}
@media screen and (min-width: 85.3125em) {
  .rml-hero__highlight img {
    height: 80px;
  }
}
.rml-hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.rml-hero__btn {
  width: auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  text-transform: none !important;
  letter-spacing: normal;
}
.rml-hero__btn--primary {
  background: #e61e26;
  color: #fff;
}
.rml-hero__btn--primary:hover, .rml-hero__btn--primary:focus {
  background: #e61e26;
  color: #fff;
}
.rml-hero__btn--secondary {
  background: rgba(30, 30, 30, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.rml-hero__btn--secondary:hover, .rml-hero__btn--secondary:focus {
  background: rgba(30, 30, 30, 0.55);
  color: #fff;
}
.rml-hero__btn .icon {
  position: relative;
}

.rml-value {
  padding: 48px 0 56px;
  background: #f4f5f6;
}
@media screen and (min-width: 48em) {
  .rml-value {
    padding: 64px 0 80px;
  }
}
.rml-value__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 28px;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .rml-value__intro {
    margin-bottom: 36px;
  }
}
.rml-value__logo {
  margin: 0 0 20px;
}
.rml-value__logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .rml-value__logo img {
    max-width: 280px;
  }
}
.rml-value__products {
  width: 100%;
  max-width: 720px;
}
.rml-value__products img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.rml-value__title {
  margin: 0 0 28px;
  color: #22272f;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 48em) {
  .rml-value__title {
    margin-bottom: 40px;
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-value__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
.rml-value__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 30em) {
  .rml-value__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 48em) {
  .rml-value__grid {
    gap: 24px;
  }
}
.rml-value__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e4e6e8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  text-align: left;
}
@media screen and (min-width: 48em) {
  .rml-value__card {
    padding: 36px 32px;
  }
}
.rml-value__card-title {
  margin: 0 0 12px;
  color: #22272f;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  .rml-value__card-title {
    margin-bottom: 14px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-value__card-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.rml-value__card-text {
  margin: 0;
  color: #59616b;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48em) {
  .rml-value__card-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-value__card-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.rml-value__card-text p {
  margin: 0;
}
.rml-value__card-text p + p {
  margin-top: 0.75em;
}
.rml-value__card-text sup {
  font-size: 0.65em;
  vertical-align: super;
  line-height: 0;
}
.rml-value__card-footnote {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e4e6e8;
  color: #6b7380;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 48em) {
  .rml-value__card-footnote {
    margin-top: 18px;
    padding-top: 14px;
  }
}

.rml-brochure {
  padding: 40px 0 48px;
  background: #e61e26;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .rml-brochure {
    padding: 48px 0 56px;
  }
}
.rml-brochure__eyebrow {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 48em) {
  .rml-brochure__eyebrow {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-brochure__eyebrow {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.rml-brochure__title {
  margin: 0 0 24px;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 48em) {
  .rml-brochure__title {
    margin-bottom: 28px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-brochure__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.rml-brochure__form {
  color: #fff;
}
.rml-brochure__form .wpcf7-form p {
  margin: 0;
}
.rml-brochure__form .wpcf7-form br {
  display: none;
}
.rml-brochure__form label,
.rml-brochure__form .gform_wrapper label,
.rml-brochure__form .hs-form-field > label,
.rml-brochure__form .wpcf7-form label,
.rml-brochure__form .form-label,
.rml-brochure__form .privacy {
  color: #fff;
}
.rml-brochure__form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}
@media screen and (min-width: 48em) {
  .rml-brochure__form .row {
    gap: 16px;
    margin-bottom: 20px;
  }
}
.rml-brochure__form .col-12,
.rml-brochure__form .col-md-4 {
  flex: 1 1 100%;
  min-width: 0;
}
@media screen and (min-width: 48em) {
  .rml-brochure__form .col-md-4 {
    flex: 1 1 calc(50% - 8px);
  }
}
@media screen and (min-width: 62em) {
  .rml-brochure__form .col-md-4 {
    flex: 1 1 calc(33.333% - 11px);
  }
}
.rml-brochure__form .form-label {
  display: block;
  margin-bottom: 6px;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 75em) {
  .rml-brochure__form .form-label {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.rml-brochure__form input[type=text],
.rml-brochure__form input[type=email],
.rml-brochure__form input[type=tel],
.rml-brochure__form select,
.rml-brochure__form textarea,
.rml-brochure__form .form-control,
.rml-brochure__form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not([type=checkbox]) {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  background: #fff;
  border: 0;
  border-radius: 4px;
  color: #222;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48em) {
  .rml-brochure__form input[type=text],
.rml-brochure__form input[type=email],
.rml-brochure__form input[type=tel],
.rml-brochure__form select,
.rml-brochure__form textarea,
.rml-brochure__form .form-control,
.rml-brochure__form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not([type=checkbox]) {
    padding: 10px 12px;
  }
}
@media screen and (min-width: 75em) {
  .rml-brochure__form input[type=text],
.rml-brochure__form input[type=email],
.rml-brochure__form input[type=tel],
.rml-brochure__form select,
.rml-brochure__form textarea,
.rml-brochure__form .form-control,
.rml-brochure__form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not([type=checkbox]) {
    font-size: 16px;
    font-size: 1rem;
  }
}
.rml-brochure__form .form-bottom {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 62em) {
  .rml-brochure__form .form-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}
.rml-brochure__form .checks-accept {
  flex: 1 1 auto;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .rml-brochure__form .checks-accept {
    width: auto;
    max-width: 65%;
  }
}
.rml-brochure__form .checks-accept p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rml-brochure__form input[type=checkbox] {
  margin: 0;
  flex: 0 0 auto;
}
.rml-brochure__form span.wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rml-brochure__form .privacy {
  margin: 0 0 8px;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 48em) {
  .rml-brochure__form .privacy {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-brochure__form .privacy {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.rml-brochure__form .privacy + .privacy {
  margin-top: 10px;
}
.rml-brochure__form .wpcf7-checkbox,
.rml-brochure__form .wpcf7-form-control.wpcf7-checkbox,
.rml-brochure__form span.wpcf7-list-item,
.rml-brochure__form span.wpcf7-list-item.first.last {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.rml-brochure__form span.wpcf7-list-item.first.last span,
.rml-brochure__form span.wpcf7-list-item.first.last .wpcf7-list-item-label {
  font-size: 0.875rem;
}
.rml-brochure__form .btn-form {
  flex: 0 0 auto;
  width: auto;
  margin-left: 0;
  align-self: flex-start;
  text-align: left;
}
@media screen and (min-width: 62em) {
  .rml-brochure__form .btn-form {
    margin-left: auto;
    align-self: flex-end;
    text-align: right;
  }
}
.rml-brochure__form .btn-form p {
  margin: 0;
  display: inline-block;
  width: auto;
}
.rml-brochure__form input[type=submit],
.rml-brochure__form button[type=submit],
.rml-brochure__form .wpcf7-submit,
.rml-brochure__form .hs-button,
.rml-brochure__form .gform_button {
  width: auto;
  max-width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='11' viewBox='0 0 8 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 9.75H6.75M3.75 0.75V7.75M1.25 5.25L3.75 7.75L6.25 5.25' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 8px 11px;
  color: #222;
  border: 0;
  border-radius: 50px;
  padding: 15px 44px 13px 28px;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  text-transform: none !important;
  cursor: pointer;
  font-size: 15px;
  font-size: 0.9375rem;
}
.rml-brochure__form a {
  display: contents;
  color: #fff;
  text-decoration: underline;
}
.rml-brochure__form .wpcf7-not-valid-tip,
.rml-brochure__form .wpcf7-response-output {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 48em) {
  .rml-brochure__form .wpcf7-not-valid-tip,
.rml-brochure__form .wpcf7-response-output {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.rml-brochure__pdfs {
  display: none;
  margin-top: 20px;
}
@media screen and (min-width: 48em) {
  .rml-brochure__pdfs {
    margin-top: 24px;
  }
}
.rml-brochure--sent .rml-brochure__pdfs, .rml-brochure:has(.wpcf7-form.sent) .rml-brochure__pdfs, .rml-brochure:has(form.sent) .rml-brochure__pdfs {
  display: block;
}
.rml-brochure--sent .rml-brochure__intro, .rml-brochure--sent .rml-brochure__form, .rml-brochure:has(.wpcf7-form.sent) .rml-brochure__intro, .rml-brochure:has(.wpcf7-form.sent) .rml-brochure__form, .rml-brochure:has(form.sent) .rml-brochure__intro, .rml-brochure:has(form.sent) .rml-brochure__form {
  display: none;
}
.rml-brochure__pdfs-label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 75em) {
  .rml-brochure__pdfs-label {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.rml-brochure__pdfs-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 48em) {
  .rml-brochure__pdfs-row {
    flex-direction: row;
    align-items: center;
  }
}
.rml-brochure__pdfs-select {
  flex: 1 1 auto;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-size: 15px;
  font-size: 0.9375rem;
}
.rml-brochure__pdfs-btn {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='11' viewBox='0 0 8 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 9.75H6.75M3.75 0.75V7.75M1.25 5.25L3.75 7.75L6.25 5.25' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 8px 11px;
  color: #222;
  padding: 15px 44px 13px 28px;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  text-transform: none !important;
  letter-spacing: normal;
}

.rml-range {
  padding: 56px 0 64px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .rml-range {
    padding: 72px 0 80px;
  }
}
.rml-range__header {
  max-width: 820px;
  margin: 0 auto 36px;
}
@media screen and (min-width: 48em) {
  .rml-range__header {
    margin-bottom: 48px;
  }
}
.rml-range__title {
  margin: 0 0 12px;
  color: #22272f;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 48em) {
  .rml-range__title {
    margin-bottom: 14px;
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
.rml-range__subtitle {
  margin: 0;
  color: #a2a5ae;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.45;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 48em) {
  .rml-range__subtitle {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__subtitle {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.rml-range__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
@media screen and (min-width: 30em) {
  .rml-range__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 65.5em) {
  .rml-range__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.rml-range__card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 28px;
  background: #fff;
  border: 1px solid #e5e8ed;
  box-shadow: 0 4px 16px 0 rgba(13, 20, 41, 0.06);
}
@media screen and (min-width: 48em) {
  .rml-range__card {
    padding: 28px 26px 32px;
  }
}
.rml-range__badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 16px;
  padding: 6px 12px;
  background: rgba(230, 30, 38, 0.1);
  border-radius: 50px;
  color: #e61e26;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 48em) {
  .rml-range__badge {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.rml-range__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 0 0 20px;
}
.rml-range__media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 240px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.rml-range__body {
  flex: 1 1 auto;
}
.rml-range__card-title {
  margin: 0 0 10px;
  color: #1b1f29;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.25;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 48em) {
  .rml-range__card-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__card-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.rml-range__card-text {
  margin: 0 0 14px;
  color: #59616b;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48em) {
  .rml-range__card-text {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__card-text {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
.rml-range__features {
  margin: 0 0 18px;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid #e5e8ed;
}
.rml-range__features li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: #1b1f29;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .rml-range__features li {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__features li {
    font-size: 16px;
    font-size: 1rem;
  }
}
.rml-range__features li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e61e26;
}
.rml-range__recommended {
  margin: 0 0 20px;
}
.rml-range__recommended-label {
  display: block;
  margin: 0 0 6px;
  color: #22272f;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .rml-range__recommended-label {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__recommended-label {
    font-size: 16px;
    font-size: 1rem;
  }
}
.rml-range__recommended-text {
  margin: 0;
  color: #59616b;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .rml-range__recommended-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-range__recommended-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.rml-range__cta {
  margin-top: auto;
  padding-top: 8px;
}
.rml-range__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 37px 13px;
  background: #e61e26;
  color: #fff;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal;
  font-size: 15px;
  font-size: 0.9375rem;
}
.rml-range__btn:hover, .rml-range__btn:focus {
  background: #e61e26;
  color: #fff;
}
.rml-range__btn .icon {
  position: relative;
}

.rml-compare {
  padding: 56px 0 64px;
  background: #f3f6f9;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .rml-compare {
    padding: 72px 0 80px;
  }
}
.rml-compare__title {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #22272f;
  font-family: "Circular-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.25;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 48em) {
  .rml-compare__title {
    margin-bottom: 28px;
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-compare__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.rml-compare__actions {
  margin: 0 0 36px;
}
@media screen and (min-width: 48em) {
  .rml-compare__actions {
    margin-bottom: 44px;
  }
}
.rml-compare__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 37px 13px;
  background: #e61e26;
  color: #fff;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal;
  font-size: 15px;
  font-size: 0.9375rem;
}
.rml-compare__btn:hover, .rml-compare__btn:focus {
  background: #e61e26;
  color: #fff;
}
.rml-compare__btn .icon {
  position: relative;
}
.rml-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e5e8ed;
}
.rml-compare__table {
  width: 100%;
  min-width: 560px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
  text-align: center;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .rml-compare__table {
    min-width: 640px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 62em) {
  .rml-compare__table {
    font-size: 1.188rem;
  }
}
.rml-compare__table thead th {
  padding: 12px 14px;
  background: #8eb057;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: inherit;
  vertical-align: middle;
  border: 0;
}
@media screen and (min-width: 48em) {
  .rml-compare__table thead th {
    padding: 16px 18px;
  }
}
@media screen and (min-width: 62em) {
  .rml-compare__table thead th {
    padding: 18px 22px;
  }
}
.rml-compare__table .rml-compare__corner {
  background: #8eb057;
  min-width: 110px;
}
@media screen and (min-width: 48em) {
  .rml-compare__table .rml-compare__corner {
    min-width: 140px;
  }
}
.rml-compare__table tbody th,
.rml-compare__table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e8ed;
  vertical-align: middle;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: inherit;
}
@media screen and (min-width: 48em) {
  .rml-compare__table tbody th,
.rml-compare__table tbody td {
    padding: 16px 18px;
  }
}
@media screen and (min-width: 62em) {
  .rml-compare__table tbody th,
.rml-compare__table tbody td {
    padding: 18px 22px;
  }
}
.rml-compare__table tbody th {
  width: 18%;
  min-width: 110px;
  color: #22272f;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-align: left;
  background: #fff;
}
@media screen and (min-width: 48em) {
  .rml-compare__table tbody th {
    min-width: 140px;
  }
}
.rml-compare__table tbody td {
  color: #59616b;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  background: #fff;
}
.rml-compare__table tbody tr:nth-child(even) th,
.rml-compare__table tbody tr:nth-child(even) td {
  background: #f8f9fa;
}
.rml-compare__table tbody tr:nth-child(odd) th,
.rml-compare__table tbody tr:nth-child(odd) td {
  background: #fff;
}
.rml-compare__table tbody tr:last-child th,
.rml-compare__table tbody tr:last-child td {
  border-bottom: 0;
}
.rml-compare__cell--colours {
  text-align: center;
}
.rml-compare__colours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  list-style: none;
}
.rml-compare__dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 48em) {
  .rml-compare__dot {
    width: 18px;
    height: 18px;
  }
}
.rml-compare__dot--light {
  border-color: #c8ccd2;
}
.rml-compare__footnote {
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0 auto;
  color: #8a9099;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: right;
  line-height: 1.45;
}
@media screen and (min-width: 48em) {
  .rml-compare__footnote {
    width: 50%;
    max-width: 50%;
    margin-top: 18px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.rml-sectors {
  position: relative;
  background: #1a1a1a;
}
.rml-sectors__slider {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.rml-sectors__slider .flex-direction-nav {
  display: none;
}
.rml-sectors__slider .flex-control-nav {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  list-style: none;
}
@media screen and (min-width: 48em) {
  .rml-sectors__slider .flex-control-nav {
    right: 28px;
    gap: 12px;
  }
}
.rml-sectors__slider .flex-control-nav li {
  margin: 0;
  padding: 0;
}
.rml-sectors__slider .flex-control-nav a {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: none;
  text-indent: -9999px;
  opacity: 1;
}
.rml-sectors__slider .flex-control-nav a.flex-active {
  background: #e61e26;
}
.rml-sectors__slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rml-sectors__slide {
  position: relative;
  display: none;
  min-height: 480px;
  padding: 64px 0;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 48em) {
  .rml-sectors__slide {
    min-height: 560px;
    padding: 80px 0;
  }
}
@media screen and (min-width: 85.3125em) {
  .rml-sectors__slide {
    min-height: 640px;
    padding: 96px 0;
  }
}
.rml-sectors__slide--active, .rml-sectors__slide.flex-active-slide {
  display: block;
}
.rml-sectors__slider:not(.rml-sectors__slider--multi) .rml-sectors__slide {
  display: block;
}
.rml-sectors__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.rml-sectors__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  width: 100%;
}
.rml-sectors__content {
  max-width: 560px;
  padding: 64px 0;
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 48em) {
  .rml-sectors__content {
    max-width: 620px;
    padding: 80px 0;
  }
}
@media screen and (min-width: 85.3125em) {
  .rml-sectors__content {
    padding: 96px 0;
  }
}
.rml-sectors__title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 48em) {
  .rml-sectors__title {
    margin-bottom: 14px;
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-sectors__title {
    font-size: 56px;
    font-size: 3.5rem;
  }
}
.rml-sectors__subtitle {
  margin: 0 0 14px;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.35;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 48em) {
  .rml-sectors__subtitle {
    margin-bottom: 16px;
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-sectors__subtitle {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.rml-sectors__text {
  margin: 0 0 28px;
  color: #fff;
  font-family: "AvenirLTStd-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48em) {
  .rml-sectors__text {
    margin-bottom: 32px;
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 75em) {
  .rml-sectors__text {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
.rml-sectors__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 37px 13px;
  background: #e61e26;
  color: #fff;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal;
  font-size: 15px;
  font-size: 0.9375rem;
}
.rml-sectors__btn:hover, .rml-sectors__btn:focus {
  background: #e61e26;
  color: #fff;
}
.rml-sectors__btn .icon {
  position: relative;
}

/*------------------------------------*\
    #SEGMENTS PROMO BANNER
\*------------------------------------*/
.segment-promo {
  position: relative;
  overflow: hidden;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
}
.segment-promo .container {
  position: relative;
  z-index: 1;
}
.segment-promo__inner {
  position: relative;
  z-index: 1;
}
.segment-promo__kicker {
  margin: 0 0 16px;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 48em) {
  .segment-promo__kicker {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.segment-promo__kicker--pill {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px 7px;
  border-radius: 999px;
  background: #fff;
  color: #e61e26;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 48em) {
  .segment-promo__kicker--pill {
    padding: 8px 20px 7px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo__kicker--pill {
    padding: 9px 20px 8px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.segment-promo__kicker--brand {
  color: #e61e26;
}
.segment-promo__kicker--light {
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 48em) {
  .segment-promo__kicker--light {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.segment-promo__logo {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  margin: 0 0 16px;
}
.segment-promo__title {
  margin: 0 0 12px;
  color: #22272f;
  font-family: "Circular-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  .segment-promo__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
.segment-promo__subtitle {
  margin: 0 0 20px;
  color: #4a5160;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 48em) {
  .segment-promo__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.segment-promo__icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media screen and (min-width: 48em) {
  .segment-promo__icons {
    gap: 8px 10px;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo__icons {
    gap: 12px 16px;
  }
}
.segment-promo__icon {
  flex: 1 1 0;
  min-width: 0;
  height: 32px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.segment-promo__icon img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 48em) {
  .segment-promo__icon {
    height: 40px;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo__icon {
    height: 56px;
  }
}
.segment-promo .btn,
.segment-promo .btn.btn__round {
  text-transform: none;
  box-sizing: border-box;
}
@media screen and (max-width: 62em) {
  .segment-promo .btn,
.segment-promo .btn.btn__round {
    width: 100%;
  }
}
.segment-promo__btn {
  margin-top: 4px;
  text-transform: none;
}
.segment-promo__image {
  display: block;
  width: 100%;
  height: auto;
}
.segment-promo--foodservice .segment-promo__kicker--pill,
.segment-promo--foodservice .segment-promo__kicker--brand {
  color: #ed1c24;
}
.segment-promo--foodservice .segment-promo__kicker--pill {
  background: #ffe8ea;
}
.segment-promo--healthcare .segment-promo__kicker--pill,
.segment-promo--healthcare .segment-promo__kicker--brand {
  color: #25aae1;
}
.segment-promo--healthcare .segment-promo__kicker--pill {
  background: #e4f5fc;
}
.segment-promo--industry .segment-promo__kicker--pill,
.segment-promo--industry .segment-promo__kicker--brand, .segment-promo--industrial .segment-promo__kicker--pill,
.segment-promo--industrial .segment-promo__kicker--brand {
  color: #253d74;
}
.segment-promo--industry .segment-promo__kicker--pill, .segment-promo--industrial .segment-promo__kicker--pill {
  background: #e6ebf4;
}
.segment-promo--buildingcare .segment-promo__kicker--pill,
.segment-promo--buildingcare .segment-promo__kicker--brand {
  color: #93b13d;
}
.segment-promo--buildingcare .segment-promo__kicker--pill {
  background: #eef5de;
}
.segment-promo--speciality .segment-promo__kicker--pill,
.segment-promo--speciality .segment-promo__kicker--brand {
  color: #e7c11d;
}
.segment-promo--speciality .segment-promo__kicker--pill {
  background: #fbf6d9;
}
.segment-promo--innovation .segment-promo__kicker--pill,
.segment-promo--innovation .segment-promo__kicker--brand {
  color: #a1a5ac;
}
.segment-promo--innovation .segment-promo__kicker--pill {
  background: #eceef1;
}
.segment-promo--automotive .segment-promo__kicker--pill,
.segment-promo--automotive .segment-promo__kicker--brand, .segment-promo--aerospace .segment-promo__kicker--pill,
.segment-promo--aerospace .segment-promo__kicker--brand {
  color: #e7c11f;
}
.segment-promo--automotive .segment-promo__kicker--pill, .segment-promo--aerospace .segment-promo__kicker--pill {
  background: #fbf6d9;
}

.segment-promo--1 {
  padding: 0;
  background: #e6e8ec;
}
@media screen and (min-width: 62em) {
  .segment-promo--1 {
    background: linear-gradient(to right, #e6e8ec 50%, #fff 50%);
  }
}
.segment-promo--1 .segment-promo__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.segment-promo--1 .segment-promo__visual,
.segment-promo--1 .segment-promo__copy {
  flex: 1 1 50%;
  min-width: 0;
  box-sizing: border-box;
}
.segment-promo--1 .segment-promo__visual {
  padding: 40px 0;
  background: #e6e8ec;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .segment-promo--1 .segment-promo__visual {
    padding: 56px 0;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__visual {
    padding: 64px 0;
    background: transparent;
  }
}
.segment-promo--1 .segment-promo__copy {
  margin: 0 -20px;
  padding: 40px 20px;
  background: #fff;
}
@media screen and (min-width: 48em) {
  .segment-promo--1 .segment-promo__copy {
    padding: 56px 20px;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__copy {
    margin: 0;
    padding: 64px 0 64px 48px;
    background: transparent;
  }
}
.segment-promo--1 .segment-promo__logo {
  max-width: 320px;
  margin-bottom: 4px;
}
.segment-promo--1 .segment-promo__image {
  max-width: 600px;
  margin-top: 0;
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__image {
    max-width: 960px;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--1 .segment-promo__image {
    max-width: 1100px;
  }
}
.segment-promo--1 .segment-promo__title {
  width: 100%;
  max-width: 100%;
  margin-bottom: 4px;
  white-space: normal;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  .segment-promo--1 .segment-promo__title {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__title {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--1 .segment-promo__title {
    font-size: 38px;
    font-size: 2.375rem;
  }
}
.segment-promo--1 .segment-promo__subtitle {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 24px;
  color: #8b929c;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  .segment-promo--1 .segment-promo__subtitle {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--1 .segment-promo__subtitle {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.segment-promo--1 .segment-promo__icons {
  justify-content: flex-start;
}
@media screen and (min-width: 75em) {
  .segment-promo--1 .segment-promo__icons {
    gap: 12px 16px;
  }
}
.segment-promo--1 .segment-promo__icon {
  justify-content: flex-start;
}
.segment-promo--1 .segment-promo__icon img {
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (min-width: 62em) {
  .segment-promo--1 .segment-promo__icon {
    flex: 0 1 auto;
  }
}

.segment-promo--2 {
  display: flex;
  align-items: stretch;
  min-height: 380px;
  padding: 40px 0;
  background-color: #060e28;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (min-width: 48em) {
  .segment-promo--2 {
    min-height: 480px;
    padding: 56px 0;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--2 {
    min-height: 560px;
    padding: 64px 0;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--2 {
    min-height: 640px;
    padding: 80px 0;
  }
}
.segment-promo--2 .container {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.segment-promo--2 .segment-promo__shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 40, 0.36);
  pointer-events: none;
}
.segment-promo--2 .segment-promo__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: 280px;
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__inner {
    min-height: 400px;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--2 .segment-promo__inner {
    min-height: 480px;
  }
}
.segment-promo--2 .segment-promo__copy {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__copy {
    width: 58%;
    max-width: 58%;
  }
}
.segment-promo--2 .segment-promo__kicker--light {
  margin-bottom: 16px;
}
.segment-promo--2 .segment-promo__title {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  color: #fff;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  .segment-promo--2 .segment-promo__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--2 .segment-promo__title {
    font-size: 48px;
    font-size: 3rem;
  }
}
.segment-promo--2 .segment-promo__line {
  width: 100%;
  max-width: 100%;
  height: 0;
  margin: 0 0 24px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__line {
    margin-bottom: 28px;
  }
}
.segment-promo--2 .segment-promo__icons {
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}
.segment-promo--2 .segment-promo__cta {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 28px;
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__cta {
    position: absolute;
    right: 0;
    top: 50%;
    width: auto;
    margin-top: 0;
    transform: translateY(-50%);
  }
}
.segment-promo--2 .segment-promo__btn {
  width: 100%;
}
@media screen and (min-width: 62em) {
  .segment-promo--2 .segment-promo__btn {
    width: auto;
    min-width: 280px;
  }
}

.segment-promo--3 {
  overflow: hidden;
  background: #e8eaee;
}
.segment-promo--3 .segment-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--3 .segment-promo__inner {
    min-height: 360px;
  }
}
.segment-promo--3 .segment-promo__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0 28px;
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__copy {
    flex: 0 0 58%;
    max-width: none;
    padding: 36px 24px 36px 0;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--3 .segment-promo__copy {
    flex: 0 0 54%;
    padding: 40px 28px 40px 0;
  }
}
.segment-promo--3 .segment-promo__visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0 -20px;
  line-height: 0;
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__visual {
    flex: 1 1 auto;
    min-height: 320px;
    margin-left: 0;
    margin-right: calc((100% - 100vw) / 2);
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--3 .segment-promo__visual {
    min-height: 360px;
  }
}
.segment-promo--3 .segment-promo__kicker--brand {
  margin-bottom: 12px;
}
.segment-promo--3 .segment-promo__logo {
  max-width: 240px;
  margin-bottom: 14px;
}
.segment-promo--3 .segment-promo__title {
  margin: 0 0 22px;
  color: #1b2430;
  font-family: "Circular-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.35;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 48em) {
  .segment-promo--3 .segment-promo__title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--3 .segment-promo__title {
    font-size: 32px;
    font-size: 2rem;
  }
}
.segment-promo--3 .segment-promo__btn {
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding-left: 22px;
  padding-right: 22px;
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__btn {
    align-self: flex-start;
    width: 72%;
  }
}
@media screen and (min-width: 75em) {
  .segment-promo--3 .segment-promo__btn {
    width: 68%;
  }
}
.segment-promo--3 .segment-promo__image {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 62em) {
  .segment-promo--3 .segment-promo__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left center;
       object-position: left center;
  }
}

/*# sourceMappingURL=main.min.css.map*/