/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/


/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  border-style: none;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
input {
  line-height: normal;
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: hidden;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.banner-area .dnd-section, .banner-area .dnd-section > .row-fluid {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.dnd-section > .row-fluid, .page-center, .content-wrapper {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}


@media (max-width: 1499px) {
  .dnd-section > .row-fluid, .page-center, .content-wrapper {
    max-width: 100% !important;
    padding-left: 4vw;
    padding-right: 4vw;
  }


}




@media (max-width: 1199px){
  .body-container-wrapper {
    top: 60px;
    position: relative;
  }



}


@media(max-width: 767px){
  .dnd-section .dnd-module {
    margin-bottom: 30px;
  }
  .banner-area .dnd-section .dnd-module {
    margin-bottom: 0;
  }


}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: FontAwesome; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/fontawesome-webfont.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/FontAwesome/fontawesome-webfont.woff2) format("woff2"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/FontAwesome/fontawesome-webfont.woff) format("woff"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/FontAwesome/fontawesome-webfont.ttf) format("truetype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/FontAwesome/fontawesome-webfont.svg) format("svg");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: gt-sectra-medium; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/gt-sectra-medium.eot") format("embedded-opentype"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/gt-sectra-medium/gt-sectra-medium.woff) format("woff"); 
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: gt-sectra-regular; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/gt-sectra-regular.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/gt-sectra-regular/gt-sectra-regular.woff) format("woff");
  font-style: normal;
  font-weight: 400; 
}

@font-face {
  font-family:'PP Neue Montreal'; 
  src: url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal/PPNeueMontreal-Regular.eot) format('embedded-opentype'),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal/PPNeueMontreal-Regular.woff2) format("woff2"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal/PPNeueMontreal-Regular.woff) format('woff'),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal/PPNeueMontreal-Regular.ttf) format('truetype');
  font-style: normal;
  font-weight: 400; 
}
@font-face {
  font-family:'PP Neue Montreal'; 
  src: url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal-Medium/PPNeueMontreal-Medium.otf) format('otf'),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal-Medium/PPNeueMontreal-Medium.woff2) format("woff2"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal-Medium/PPNeueMontreal-Medium.woff) format('woff'),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Montreal-Medium/PPNeueMontreal-Medium.ttf) format('truetype');
  font-style: normal;
  font-weight: 500; 
}

@font-face {
  font-family: icomoon; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/icomoon.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/icomoon/icomoon.ttf) format("truetype"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/icomoon/icomoon.woff) format("woff"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/icomoon/icomoon.svg) format("svg");
  font-style: normal; 
  font-weight: 400;
}
@font-face { 
  font-family: styrene-bold; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/styrene-bold.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-bold/styrene-bold.woff2) format("woff2"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-bold/styrene-bold.woff) format("woff"); 
  font-style: normal;
  font-weight: 400; 
}
@font-face { 
  font-family: styrene-medium; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/styrene-medium.eot") format("embedded-opentype"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-medium/styrene-medium.woff2) format("woff2"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-medium/styrene-medium.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face { 
  font-family: styrene-medium-italic; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/styrene-medium-italic.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-medium-italic/styrene-medium-italic.woff2) format("woff2"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-medium-italic/styrene-medium-italic.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face { 
  font-family: styrene-regular; 
  src: url("https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/styrene-regular.eot") format("embedded-opentype"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-regular/styrene-regular.woff2) format("woff2"), 
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/styrene-regular/styrene-regular.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face { 
  font-family: font-awesome;
  src: url(https://9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/WSPAustralia_February2021/Fonts/font-awesome.eot) format("embedded-opentype"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Awesome/font-awesome.woff2) format("woff2"),
    url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/Fonts/Awesome/font-awesome.woff) format("woff"); 
  font-style: normal;
  font-weight: 400; 
}

body {
  overflow-x: hidden;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: styrene-medium;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 14px;
  line-height: 1.42857;
  color: #1e252b;
}

p {
  margin: 0 0 10px;
}
p {
  font-family: 'PP Neue Montreal',Arial;
  line-height: 1.62;
  margin-bottom: 15px;
}
.body-container p, .body-container ul, .body-container ul p,
.body-container ol, .body-container ol p{
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 13.94px);
}

/* Anchor Links */
a {
  color: #537898;
  text-decoration: none;
}
a:focus, a:hover {
  color: #385167;
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}
dl, ol, ul {
  margin-top: 0;
}
ol, ul {
  margin-bottom: 10px;
}
ul li,
ol li {

}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.hs_cos_wrapper_type_rich_text ul:not(.reset-list), .hs-richtext ul:not(.reset-list) {
  margin: 0;
  list-style: none;
  padding: 0 15px 15px 50px;
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 14px);
}
.hs_cos_wrapper_type_rich_text ul:not(.reset-list) li, .hs-richtext ul:not(.reset-list) li {
  position: relative;
}
.hs_cos_wrapper_type_rich_text ul:not(.reset-list) li:before, .hs-richtext ul:not(.reset-list) li:before {
  content: "\2014";
  position: absolute;
  left: -30px;
}
.hs_cos_wrapper_type_rich_text ol:not(.reset-list), .hs-richtext ol:not(.reset-list) {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 14px);
  padding: 0 15px 15px 40px;
  margin: 0;
}

blockquote {
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
  margin: 0 0 20px;
  font-size: 17.5px;
}

/* Horizontal Rules */
hr, img {
  border: 0;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #fff;
}
hr {
  border-top-color: #e4e4e6;
}
/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}
b, optgroup, strong {
  font-weight: 700;
}
:focus {
  outline: none;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

.hs_cos_wrapper_type_password_prompt,
.hs_cos_wrapper_type_email_simple_subscription,
.hs_cos_wrapper_type_form,
.hs_cos_wrapper_type_blog_subscribe,
.widget-type-google_search,
#comment-form,
.section.post-footer,
.hs-search-field,
.hs_cos_wrapper_type_member_login,
.hs_cos_wrapper_type_password_reset,
.hs_cos_wrapper_type_password_reset_request,
.hs_cos_wrapper_type_member_register{
  max-width: 767px;
  width: 100%;
  display: block;
  padding: 30px;
  float: none;
}

form {
  font-family: Lato, sans-serif;
}

.hs-button {
  text-decoration: none;
  line-height: 1.42857;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  white-space: normal;
  overflow: hidden;
  text-transform: none;
  font-weight: 400;
  font-family: styrene-regular,Arial;
  font-family: 'PP Neue Montreal',Arial;
  letter-spacing: .5px;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  background: #e4e4e6;
  border: 1px solid #e4e4e6;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: auto;
  margin-bottom: 0;
  margin-right: 0;
  background-color: #537898;
  padding: 12px 30px;
  color: #fff;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
  text-decoration: none !Important;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}

label {
  display: inline-block;
  max-width: 100%;
}
label {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 0;
}
.hs-form label {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 11.94px);
  color: #1e252b;
  line-height: 1.625;
  display: block;
  margin-bottom: 24px;
}

.hs-form .hs-error-msgs label, .hs-error-msgs label {
  color: #ff372f;
  display: block;
  font-family: 'PP Neue Montreal',Arial;
}

.hs-input, input[type="password"] {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  background-image: none;
  border: 1px solid #ccc;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  border-radius: 0;
  padding: 0;
  height: 42px;
  margin: 0;
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: calc(.18779vw + 11.3px);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #d5d5d5;
  color: rgba(51,62,72,.502);
  line-height: 2.357;
  margin-bottom: 0;
  padding-right: 42.5px;
  background-color: #fff;
}
input[type="password"]{
  height: 42px !important;
  margin: 0 0 25px !Important;
}
input[type="password"] {
  padding: 0 10px !important;
}
.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  padding: 0 10px;
  border-color: #66afe9;
}

textarea.hs-input {
  height: auto;
  border-width: 1px;  
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  min-height: 266px;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #E65757;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #843534;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
  padding-left: 0 !important;
}

.field, .hs-form-field, div#hs-search-module .hs-input {
  margin-bottom: 37px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  text-decoration: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */


body span{
  font-family: 'PP Neue Montreal',Arial !important; 
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */


body span{
  font-family: 'PP Neue Montreal',Arial !important; 
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

header.header {
  position: relative;
  z-index: 999999;
  width: 100%;
}
.header__container {
  margin: auto;
  border-bottom: 1px solid #e4e4e6;
}

.desktop-header, .mobileNavigation {
  height: calc(100vh - 60px);
  width: 100vw;
  background-color: #141212;
  overflow: hidden;
  position: fixed;
  left: -105%;
  top: 60px;
  -webkit-transition: left .5s ease;
  -o-transition: left .5s ease;
  transition: left .5s ease;
  -webkit-backface-visibility: hidden;
}
.desktop-header-inner {
  position: relative;
  -webkit-transition: left 1s ease;
  -o-transition: left 1s ease;
  transition: left 1s ease;
  left: 0;
}
.headerLogo {
  font-size: 0;
  padding: 26px 0 58px;
  float: left;
  width: 6.06061%;
  margin: 0 35px 0 0;
  max-width: 80px;
  display: block;
  height: 40px;
}
.headerLogo svg {
  fill: #ff372f;
  height: 40px;
}
.header .rightContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.desktop-header-inner:before, .desktop-header-inner:after {
  content: " ";
  display: table;
}
.desktop-header-inner:after {
  clear: both;
}

.headerMenu .hs-menu-wrapper > ul {
  margin: 0;
  padding: 0 4vw;
  list-style: none;
}

.headerMenu .hs-menu-wrapper > ul > li {
  border-bottom: 1px solid #e4e4e6;
}
.headerMenu .hs-menu-wrapper > ul > li > a {
  display: block;
  font-size: 18px;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  text-transform: uppercase;
  padding: 30px 0;
  width: 100%;
}
.custom-menu-secodary {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  display: block;
  width: 100%;
  float: right;
}
.custom-menu-secodary .hs-menu-wrapper > ul > li > a {
  text-transform: none;
}
header.header.fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.header-show header.header.fixedHeader {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.ms__btn:focus i, .ms__btn:focus svg, .ms__btn:hover i, .ms__btn:hover svg {
  color: #ff372f;
}



/******************************************* language *************************************/

.country-language-selector, .language-selector {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  padding: 0 20px;
}
.country-language-selector .cls__btn, .language-selector .cls__btn {
  position: relative;
  text-align: left;
  font-size: 18px;
  text-transform: uppercase;
  color: #1e252b;
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background: 0 0;
  margin: 0;
  font-weight: 700;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  padding: 30px 0;
  width: 100%;
}
.cl-a, .cl-c {
  fill: none;
}
.cl-a {
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}
.cl-b {
  stroke: none;
}
.cl-a, .cl-c {
  fill: none;
}
.main-search {
  float: right;
  margin-right: 3.48485%;
  margin-left: 2.27273%;
}
.desktop-header .main-search {
  display: none;
}
.ms__btn {
  background-color: transparent;
  border: 0;
  font-size: 0;
  padding: 7.5px 0;
}
.a-search2-icon {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
button.ms__btn {
  cursor: pointer;
}
.mobile-header .main-search {
  margin-right: 9vw;
  margin-left: 0;
}
.country-language-selector .cls__btn:after {
  font-family: icomoon!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""!important;
}
.a-search2-icon:hover {
  stroke: #ff372f;
}
.country-language-selector .cls__btn:hover{
  color: #ff372f;
}
.a-close0-icon:hover, .a-close1-icon:hover {
  stroke: #ff373f;
}
.a-search2-mob-icon:hover {
  stroke: #ff373f !important;
}

/**************************************** Desktop menu **********************************/

.headerMenu .hs-menu-wrapper > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease;
  padding: 0 4.861111vw;
}
.headerMenu .hs-menu-wrapper > ul > li:hover > ul{
  transform: scaleY(1);
}
.headerMenu .hs-menu-wrapper > ul > li > ul > .megaMenu {
  text-align: left;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.headerMenu .hs-menu-wrapper > ul > li > ul > .megaMenu:before, .headerMenu .hs-menu-wrapper > ul > li > ul > .megaMenu:after {
  content: "";
  display: table;
}
.headerMenu .hs-menu-wrapper > ul > li > ul > .megaMenu:after{
  clear: both:
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child {
  border-right: 1px solid #D9D9D9;
  padding: 35px 25px 55px 5px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) {
  padding: 35px 25px 55px;
  width: 28%;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) {
  border-left: 1px solid #D9D9D9;
  padding-top: 35px;
  padding-left: 25px;
  padding-bottom: 55px;
  width: 47%;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li > a {
  display: none;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:first-child > a {
  font-weight: 400;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  font-size: 18px!important;
  line-height: 1.4;
  margin-bottom: 15px;
  display: block;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(2) > a {
  margin: 0 0 10px;
  line-height: 1.62;
  font-family: 'PP Neue Montreal',Arial;
  font-size: 16px!important;
  margin-bottom: 0;
  display: block;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li > a{
  color: initial !Important;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul li a {
  width: auto;
  border-bottom: 0;
  height: 100%;
  padding: 0;
  text-decoration: none;
  text-transform: none;
  padding-top: 0;
  position: relative;
  font-family: styrene-bold,Arial;
  font-size: 14px;
  font-weight: 400;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  display: inline;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  float: left;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li:nth-child(2){
  margin-top: 0;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li:last-child(){
  margin-bottom: 0;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li.hs-item-has-children > a:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 12.06px;
  background-image: url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/images/rightRrrowNew.svg);
  z-index: 100;
  right: 7px;
  top: 5px;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  transition: all .2s ease-out;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li.hs-item-has-children > a:hover:after {
  background-image: url(//9315901.fs1.hubspotusercontent-na1.net/hubfs/9315901/raw_assets/public/WSPAustralia_February2021/images/redRightArrow.svg);
  right: 0;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li.hs-item-has-children > a {
  display: block;
  padding-right: 35px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li > ul {
  display: none;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul:not(.fetured_wrap) > li > a {
  color: #898C8F;
  font-size: 11px;
  line-height: 21px;
  text-transform: uppercase;
  padding: 0;
  text-decoration: none;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul:not(.fetured_wrap) > li > ul {
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-fill: auto;
  -moz-column-fill: auto;
  column-fill: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  margin-top: -12px;
  list-style: none;
  height: 410px;
  margin-left: 0;
  margin-right: 0;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul > li > ul:before, .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul > li > ul:after{
  content: "";
  display: table;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul:not(.fetured_wrap) > li > ul:after{
  clear: both;
}

.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul:not(.fetured_wrap) > li > ul > li {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  float: left;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) > ul:not(.fetured_wrap) > li > ul > li > a {
  width: auto;
  border-bottom: 0;
  height: 100%;
  padding: 0;
  text-decoration: none;
  text-transform: none;
  padding-top: 0;
  position: relative;
  text-align: left;
  display: inline;
  font-family: styrene-medium,Arial;
  font-size: 14px;
  font-weight: 400;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  letter-spacing: 0;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li:first-child > a {
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
  display: inline;
  width: auto;
  border-bottom: 0;
  height: 100%;
  padding: 0;
  text-decoration: none;
  color: #898C8F;
  font-size: 11px;
  line-height: 21px;
  text-transform: uppercase;
  text-align: left;
  display: inline;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li:first-child > a:after {
  display: none;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) > ul > li:first-child {
  color: #898C8F;
  font-size: 11px;
  line-height: 21px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
}

.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap {
  position: relative;
  min-height: 1px;
  width: 50%;
  float: left;
  padding-right: 10px !important;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:first-child > a {
  color: #898C8F;
  font-size: 11px;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
  font-family: 'PP Neue Montreal',Arial;
  font-weight: 500;
}
/* .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:not(:first-child) {
margin-right: 10px !important;
} */
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:nth-child(2) {
  line-height: 1.42857;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  max-width: 100%;
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0;
  height: 115px;
  overflow: hidden;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:nth-child(2) > a img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-bottom: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 115px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap:hover > li:nth-child(2) > a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:nth-child(3) > a {
  font-weight: 500;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  margin-top: 20px;
  font-family: 'PP Neue Montreal',Arial;
  font-size: 18px!important;
  line-height: 1.4;
  color: #ff372f;
  margin-bottom: 15px;
  display: block;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:nth-child(4) > a {
  line-height: 1.62;
  margin: 0 0 10px;
  font-family: 'PP Neue Montreal',Arial;
  font-size: 16px!important;
  margin-bottom: 0;
  display: block;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) .fetured_wrap > li:nth-child(4) > a:hover{
  color: initial !Important;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3):not(.hs-item-has-children) > a {
  background-image: none;
  text-decoration: none !important;
  line-height: 1.42857;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  border-bottom: 0;
  height: 100%;
  position: relative;
  text-transform: none;
  margin-top: 25px;
  white-space: normal;
  background-color: #ff372f;
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 20px;
  width: auto;
  margin-bottom: 0;
  margin-right: 0;
  display: inline-block;
  font-family: 'PP Neue Montreal',Arial;
  letter-spacing: .5px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3):not(.hs-item-has-children) > a:hover {
  background-color: #ff372f;
  color: #fff;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children {
  border-top: 1px solid #fff;
  border-top-color: #e4e4e6;
  margin-top: 25px;
  padding-top: 25px;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children > a {
  margin: 0 0 10px;
  line-height: 1.62;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  text-transform: uppercase;
  font-size: 12px;
  color: #1e252b;
  margin-bottom: 15px;
  display: block;
  cursor: initial;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children > a:hover{
  color: initial !important;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children > ul > li {
  width: 33.33333%;
  text-align: left;
}
.headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child > ul > li:nth-child(3).hs-item-has-children > ul > li > a {
  padding: 0;
  text-decoration: none;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  text-transform: none;
  font-size: 14px;
  word-break: break-word;
}





/***************************************** Header Search ******************************************/

.main-search--header {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  background-color: #fff;
  padding: 9px 0;
  z-index: 1;
  -webkit-transition: top .5s linear;
  -o-transition: top .5s linear;
  transition: top .5s linear;
}
.main-search--header form {
  width: 100%;
  display: block;
  padding: 0 20px;
  max-width: 100%;
}
.main-search--header .ms__btn {
  padding: 8px 0 0 10px;
}
.main-search--header .ms__btn.coveo-close {
  display: none;
}
.a-close-icon {
  fill: none;
  stroke: #1e252b;
  stroke-width: 2px;
}
.main-search--header .ms__input {
  line-height: normal;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  color: #1e252b;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
  float: left;
  margin: 0;
  font-size: 14px;
  padding: 10px;
  outline: 0;
  width: calc(100% - 31px);
  background: #fff;
}
.main-search--header .ms__input::-webkit-input-placeholder {
  color: #898C8F;
}
.CoveoSearchButton {
  border: none!important;
}
.main-search--header .ms__btn {
  padding: 8px 0 0 10px;
}
.main-search--header .CoveoSearchButton {
  color: #1e252b;
  width: auto;
}
.a-search-icon {
  fill: none;
  stroke: #ff372f;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.main-search--header .ms__btn-text {
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  text-transform: uppercase;
  font-size: 13px;
  color: #3D5F7A;
}
.a-search-mob-icon {
  fill: none;
  stroke: #ff372f;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.show-search .main-search--header {
  top: 100%;
}
.clear {
  clear: both;
}
header.show-search:after {
  background: #1E252B;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  content: '';
  opacity: .7;
  display: block;
  top: 85px;
  -webkit-transition: top .5s ease;
  -o-transition: top .5s ease;
  transition: top .5s ease;
}
.header-hide header.show-search:after{
  top: 0;
}
.show-search .main-search .ms__search-icon {
  padding-top: 2px;
}
.a-close-mob-nw-icon {
  fill: none;
  stroke: #1e252b;
  stroke-width: 2px;
}
.a-close-mob-nw-icon:hover {
  stroke: #ff373f;
}

.headerSocial{
  display: none;
}






@media (min-width: 768px){
  .mobile-header .main-search {
    margin-right: 8vw;
  }



}

@media (min-width: 1200px){
  .desktop-header, .mobileNavigation {
    height: auto;
    position: static;
    overflow: visible;
    width: auto;
  }
  .mobileNavigation{
    display: none !Important;
  }
  .desktop-header-inner {
    position: static;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .headerNavigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .custom-menu-primary {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .rightContainer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .header .rightContainer {
    display: block;
    padding: 0;
  }
  .headerMenu .hs-menu-wrapper > ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .headerMenu .hs-menu-wrapper > ul > li {
    margin-right: 5px;
    text-align: center;
    border-bottom: 0;
    height: 100%;
  }
  .headerMenu .hs-menu-wrapper > ul > li > a {
    font-size: 14px;
    position: relative;
    padding: 33px 0 35px;
    width: auto;
    border-bottom: 0;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .headerMenu .hs-menu-wrapper > ul > li > a:before {
    content: "";
    bottom: -1px;
    display: block;
    height: 5px;
    position: absolute;
    width: 0;
    left: 0;
    -webkit-transition: width .5s ease;
    -o-transition: width .5s ease;
    transition: width .5s ease;
  }
  .country-language-selector, .language-selector {
    padding: 0;
    width: auto;
    float: right;
  }
  .country-language-selector {
    padding: 0;
  }
  .country-language-selector .cls__btn, .language-selector .cls__btn {
    font-size: 11px;
    line-height: 3;
    vertical-align: middle;
    display: inline-block;
    border-bottom: 0;
    padding: 25px 0 20px 10px;
  }
  .hidden-lg {
    display: none!important;
  }

  .main-search {
    margin-right: 25px;
  }
  .desktop-header .main-search {
    display: block;
  }
  .desktop-header .main-search {
    margin-top: 20px;
  }
  .main-search .ms__close-icon {
    display: none;
  }
  .custom-menu-secodary {
    width: auto;
    display: block;
    margin-top: 0;
    height: 100%;
    border-left: 1px solid #D9D9D9;
    padding-left: 12px;
  }
  .headerMenu .hs-menu-wrapper > ul > li:hover > a:before, 
  .headerMenu .hs-menu-wrapper > ul > li.active > a:before,
  .headerMenu .hs-menu-wrapper > ul > li.active-branch > a:before{
    width: 100%;
  }
  .mobile-header {
    display: none;
  }
  .country-language-selector .cls__btn:after {
    font-size: 6px;
    display: inline-block;
    height: 6px;
    -webkit-transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease,-webkit-transform .3s ease;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .fixedHeader .desktop-header .main-search {
    margin-top: 20px;
  }


  /******************************************* Header search *****************************************/

  .main-search--header {
    height: 70px;
    padding: 18px 0;
    display: none;
    width: 25px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    top: 0;
  }
  .main-search--header form {
    float: right;
    padding: 0 0 0 3px;
    border-bottom: 1px solid #e4e4e6;
  }
  .main-search--header .ms__btn {
    padding: 12px 2px 4px 10px;
  }
  .main-search--header .ms__btn.coveo-close {
    display: block;
    float: right;
    margin-right: 0;
    margin-left: 15px;
  }
  .main-search--header .ms__input {
    width: calc(100% - 84px);
    float: right;
  }
  .main-search--header .CoveoSearchButton {
    float: right;
    padding: 10px 16px 0 0;
  }
  .show-search .main-search--header {
    top: 0;
    display: block;
  }
  .main-search--header .ms__close-icon svg.a-close-icon:hover {
    stroke: #ff372f;
  }

  /********************************* Header Menu *******************************/


  .headerMenu .hs-menu-wrapper > ul .megaMenu > li {
    float: left;
  }
  .headerMenu .hs-menu-wrapper > ul .megaMenu > li:first-child {
    width: 25%;
  }
  /*   .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) {
  width: 25%;
} */

  /*   .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) {
  width: 50%;
} */

  .result_hover .body-wrapper:before {
    background: #1E252B;
    opacity: .7;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 201;
  }







}






@media (min-width: 1500px){
  .custom-menu-primary {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .rightContainer {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .headerMenu .hs-menu-wrapper > ul > li > a {
    padding: 30px 0 35px;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .country-language-selector{
    font-size: 13px;
  }
  .country-language-selector .cls__btn, .language-selector .cls__btn {
    padding: 28px 0 20px 10px;
  }
  .desktop-header .main-search {
    margin-top: 24px;
  }
  .ms__btn {
    padding: 7px 0 0;
  }
  .header__container:before {
    content: " ";
    display: table;
    border-bottom: 1px solid #e4e4e6;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .fixedHeader .desktop-header .main-search {
    margin-top: 22px;
  }
  /****************************** Header menu *********************/
  .headerMenu .hs-menu-wrapper > ul > li > ul > .megaMenu {
    padding-left: 0;
    padding-right: 0;
    width: 1396px;
    max-width: 1396px;
    margin: auto!important;
  }

  .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(2) {
    width: 27%;
  }
  .headerMenu .hs-menu-wrapper > ul .megaMenu > li:nth-child(3) {
    width: 48%;
  }







}






@media(max-width: 1499px){

  .header__container {
    border-bottom: 1px solid #e4e4e6;
    padding-left: 4vw;
    padding-right: 4vw;
    max-width: 100% !important;
  }







}



@media (min-width: 1351px) and (max-width: 1499px){
  .ms__btn {
    padding: 6px 0 0;
  }




}



@media (min-width: 1200px) and (max-width: 1499px){
  .custom-menu-primary {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    height: inherit;
  }
  .rightContainer {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    height: inherit;
  }
  .headerMenu .hs-menu-wrapper > ul > li > a {
    font-size: 11px;
  }
  .country-language-selector {
    font-size: 11px;
  }






}


@media (min-width: 1200px) and (max-width: 1350px){
  .ms__btn {
    padding: 6px 0 0;
  }






}


@media(max-width: 1199px){
  .mobile-header {
    position: fixed;
    width: 100%;
    font-size: 0;
    padding: 0 4vw;
    border-bottom: 1px solid #e4e4e6;
    z-index: 999999;
    background-color: #fff;
  }
  .header__container {
    padding: 0;
    border: none;
  }
  .mobileLogo {
    font-size: 0;
    height: auto;
    width: 100%;
    max-width: 64px;
    margin: 18px 0 14px;
    float: left;
  }
  .mobileLogo svg {
    fill: #ff372f;
  }
  .mobileTrgger {
    float: right;
  }
  .mobileTrgger button {
    color: inherit;
    font: inherit;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    line-height: 0;
    padding: 20px 0 21px;
  }
  .a-close0-icon {
    fill: none;
    stroke: #1e252b;
    stroke-width: 2px;
  }
  .mobileTrgger svg {
    width: 24px;
    height: 18px;
    padding-left: 3px;
    padding-right: 2px;
  }
  .menu-mob-close, .sideNavIsOpen .menu-mob-open {
    display: none;
  }
  .a-close1-icon {
    fill: none;
    stroke: #1e252b;
    stroke-width: 2px;
  }
  .main-search .ms__close-icon{
    display: none;
  }

  .a-search2-icon {
    fill: none;
    stroke: #1e252b;
    stroke-miterlimit: 10;
    stroke-width: 2px;
  }
  .main-search button.ms__btn svg {
    width: 17px;
  }
  .a-search2-mob-icon {
    fill: none;
    stroke: #1e252b;
    stroke-miterlimit: 10;
    stroke-width: 2px;
  }
  .main-search:after {
    content: '';
    border-right: 1px solid #e4e4e6;
    position: absolute;
    top: 0;
    z-index: 5;
    height: 60px;
    margin-left: 2.5vw;
  }
  .mobile-header .ms__btn {
    padding: 21px 0 0;
  }


  /**********************************Mob menu **********************/
  .mobileNavigation {
    z-index: 99999;
  }
  .mobileNavigation.navOpen {
    overflow: auto;
    left: 0;
    overflow-x: hidden;
  }
  body.menuOpen {
    overflow: hidden;
  }
  .mobileNavigationInner {
    position: relative;
    -webkit-transition: left 1s ease;
    -o-transition: left 1s ease;
    transition: left 1s ease;
    left: 0;
  }
  .rightContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .headerMobMenu .hs-menu-wrapper > ul {
    margin: 0;
    padding: 0 4vw;
    list-style: none;
  }
  .country-language-selector, .language-selector {
    padding: 0 4vw;
    border-bottom: 1px solid #e4e4e6;
  }
  .country-language-selector .cls__btn, .language-selector .cls__btn {
    font-family: styrene-medium,Arial;
    font-size: 12px;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
    padding: 25px 0;
  }
  .country-language-selector .cls__btn .globe-svg-icon, .language-selector .cls__btn .globe-svg-icon {
    margin-right: 12px;
    float: left;
  }
  .country-language-selector .cls__btn.subnav-trigger:after, .language-selector .cls__btn.subnav-trigger:after {
    color: #1e252b;
    content: "\f105"!important;
    font-size: 22px;
    right: 5px;
    top: 26px!important;
    text-rendering: auto;
    font-family: font-awesome!important;
    z-index: 100;
    line-height: .7;
    height: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .country-language-selector svg, .language-selector svg {
    width: 20px;
    padding-left: 3px;
    margin-top: -2px;
    padding-right: 2px;
  }
  .country-language-selector .cls__btn:hover .globe-svg-icon>svg .cl-a, .language-selector .cls__btn:hover .globe-svg-icon>svg .cl-a {
    stroke: #ff372f;
  }
  .mob-secondary-menu {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    display: block;
    width: 100%;
    border-top: 1px solid #e4e4e6;
    border-bottom: 1px solid #e4e4e6;
  }
  .mob-primary-menu .hs-menu-wrapper > ul > li {
    border-bottom: 1px solid #e4e4e6;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > a {
    width: 100%;
    text-transform: uppercase;
    color: #ff372f;
    display: block;
    font-size: 14px;
    padding: 25px 2px;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > a {
    font-family: styrene-bold,Arial;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
    color: #1e252b;
    text-transform: none;
    padding: 20px 2px 15px;
  }
  /*   .headerMobMenu .hs-menu-wrapper > ul > li.hs-item-has-children > a {
  width: auto;
  margin-right: 20px;
} */
  .mob-primary-menu .hs-menu-wrapper > ul > li:last-child {
    border-bottom: none;
  }
  .mob-primary-menu .hs-menu-wrapper > ul > li > a:hover {
    text-decoration: underline;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul {
    padding-left: 2vw;
    display: none;
  }
  .headerMobMenu .hs-menu-wrapper > ul ul li a {
    width: 100%;
    display: block;
    padding: 25px 2px;
    font-family: styrene-bold,Arial;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
    color: #1e252b;
    text-transform: none;
    padding-top: 0;
    position: relative;
    font-size: 14px;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    height: calc(100vh - 60px)!important;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    right: 0;
    width: 0;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
    position: absolute;
    right: 4vw;
    width: 20px;
    text-align: center;
    text-rendering: auto;
    font-family: font-awesome;
    font-size: 22px;
    cursor: pointer;
    z-index: 100;
    line-height: .7;
    height: 20px;
    content: "\f107";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .child-trigger {
    position: absolute;
    width: 30px;
    height: 70px;
    overflow: hidden;
    margin-top: 0;
    right: 4vw;
    z-index: 9999;
    cursor: pointer;
  }
  .mobileTrgger.isActive .menu-mob-open {
    display: none;
  }
  .mobileTrgger.isActive .menu-mob-close {
    display: block;
  }
  .mob-primary-menu .hs-menu-wrapper > ul > li.clicked > a:after {
    content: "\f106";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li.hs-item-has-children > a:after {
    position: absolute;
    color: #1e252b;
    content: "\f105";
    font-size: 22px;
    right: 5px;
    top: 2px;
    text-rendering: auto;
    font-family: font-awesome;
    z-index: 100;
    line-height: .7;
    height: 20px;
  }

  .headerMobMenu .hs-menu-wrapper > ul > li > ul ul {
    display: block !important;
  }
  .mobileNavigation.sub-nav-opened {
    overflow: hidden;
  }
  .sub-nav-opened .mobileNavigationInner {
    -webkit-transform: translateX(-7px);
    -ms-transform: translateX(-7px);
    transform: translateX(-7px);
    left: -100%;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > a.mobile-opened + ul {
    width: 100vw;
    right: -100vw;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega{
    margin-left: -15px;
    margin-right: -15px;
    list-style: none;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 0;
    width: 100vw;
    height: calc(100vh - 60px)!important;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li {
    padding: 0 4vw;
    /*     position: relative;
    left: 15px; */
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:first-child > a {
    font-family: styrene-medium,Arial;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
    display: block;
    width: 100%;
    position: relative;
    font-size: 14px;
    color: #1e252b !Important;
    text-transform: uppercase;
    padding: 25px 0 25px 25px;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:first-child > a:before {
    content: "\f104";
    position: absolute;
    left: 0;
    top: 19px;
    font-family: font-awesome;
    font-size: 22px;
    color: #1e252b;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:nth-child(2) > a {
    text-transform: none;
    padding-top: 0;
    position: relative;
    font-size: 14px;
    color: #1e252b;
    display: block;
    width: 100%;
    padding-left: 25px;
    font-family: styrene-bold,Arial;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:nth-child(3) > a {
    display: none!important;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li > ul {
    margin-right: -15px;
    margin-left: 35px;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li > ul > li {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li > ul > li > a {
    color: #1e252b;
    text-transform: none;
    padding-top: 0;
    position: relative;
    font-size: 14px;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li > a {
    padding-top: 8px;
    padding-bottom: 20px;
    font-family: 'PP Neue Montreal',Arial;
    font-weight:500;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li.clicked > a:after {
    content: "\f106";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li.hs-item-has-children > a:after {
    top: 10px;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > a:hover {
    text-decoration: none;
    color: #3D5F7A;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li > a:hover {
    text-decoration: none;
    color: #3D5F7A;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:first-child > a {
    text-transform: none;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li:nth-child(2) > a:hover {
    text-decoration: none;
    color: #3D5F7A;
  }
  .mob-secondary-menu .hs-menu-wrapper > ul > li > ul > li > ul > .sub-mega > li > ul > li > a:hover{
    text-decoration: none;
    color: #3D5F7A;
  }
  .mob-primary-menu .hs-menu-wrapper > ul > li > ul li a:hover {
    color: #ff372f !important;
    text-decoration: none;
  }



  /************************************** Haeder Search *********************************************/

  .main-search--header {
    padding-left: 4vw;
  }
  .main-search--header {
    width: 83vw;
  }
  .show-search .main-search--header {
    z-index: 999999;
    top: 0;
  }
  .main-search--header form {
    padding: 0;
  }
  .main-search--header .ms__input {
    width: calc(100% - 29px);
  }
  #inputSearchBox.ms__input.CoveoQuerybox {
    float: right;
    padding-left: 0;
    padding-right: 0;
  }

  .main-search--header .CoveoSearchButton {
    float: right;
    padding: 12px 10px 0 0;
  }
  .main-search--header .CoveoSearchButton svg {
    width: 17px;
  }
  .show-search .main-search button.ms__btn .ms__close-icon {
    display: block;
  }
  .main-search .ms__close-icon, .show-search .main-search button.ms__btn .ms__search-icon {
    display: none;
  }
  header.show-search:after {
    top: 0;
  }

  header.header.fixedHeader {
    display: none !important;
  }

  .country-language-selector .cls__btn:hover span.hidden-lg {
    color: initial;
  }
  .country-language-selector .cls__btn:after {
    position: absolute;
    color: #1e252b;
    content: "\f105"!important;
    font-size: 22px;
    right: 5px;
    top: 26px!important;
    text-rendering: auto;
    font-family: font-awesome!important;
    z-index: 100;
    line-height: .7;
    height: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }








}

@media (min-width: 992px) and (max-width: 1199px){
  .hidden-md {
    display: none!important;
  }

}

@media (min-width: 768px) and (max-width: 1199px){

  .mobile-header .main-search {
    margin-right: 6vw;
  }





}


@media (min-width: 768px) and (max-width: 991px){
  .hidden-sm {
    display: none!important;
  }




}


@media(max-width: 991px){
  .main-search:after {
    margin-left: 3vw;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul {
    padding-left: 3vw;
  }
  .main-search--header {
    width: 75vw;
  }





}



@media (max-width: 767px){
  .hidden-xs {
    display: none!important;
  }
  .main-search:after {
    margin-left: 4vw;
  }
  .headerMobMenu .hs-menu-wrapper > ul > li > ul {
    padding-left: 5vw;
  }
  #inputSearchBox.ms__input.CoveoQuerybox {
    font-size: 13px;
  }
  .main-search--header {
    width: 70vw;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


footer.footer {
  padding-right: 4vw;
  padding-left: 4vw;
  margin-top: 30px;
  height: auto;
  position: relative;
  width: 100%;
  padding-bottom: 48px;
  color: #fff;
  padding-top: 65px;
}
.footer__container {
  position: relative;
  margin: 0 auto;
}
.footer__copyright {
  font-family: gt-sectra-medium,serif;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 16px;
  float: left;
}
.footer__copyright .hs_cos_wrapper_type_text {
  font-size: calc(.37559vw + 10.59px);
}
.legalMenu {
  width: 86%;
  float: right;
}
.copyrightFooterInner:before, .copyrightFooterInner:after {
  display: table;
  content: "";
}
.copyrightFooterInner:after {
  clear: both;
}
.legalMenu .hs-menu-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
.legalMenu .hs-menu-wrapper ul:before, .legalMenu .hs-menu-wrapper ul:after {
  display: table;
  content: "";
}
.legalMenu .hs-menu-wrapper ul:after {
  clear: both;
}
.legalMenu .hs-menu-wrapper ul li {
  position: relative;
  font-family: Arial;
  padding: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
}
.legalMenu .hs-menu-wrapper ul li a {
  display: block;
  position: relative;
  font-family: gt-sectra-medium,serif;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: calc(.37559vw + 10.59px);
  padding: 0;
}
.legalMenu .hs-menu-wrapper ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.clearfix:after, .clearfix:before, .maiFooter:before, .maiFooter:after{
  content: " ";
  display: table;
}
.clearfix:after, .maiFooter:after{
  clear: both;
}
.maiFooter {
  width: 100%;
  margin: calc(18px + 2.1vw) 0;
}
.footerColumn {
  position: relative;
  min-height: 1px;
}
.footerLogo {
  display: block;
  margin-bottom: 25px;
}
svg:not(:root) {
  overflow: hidden;
}
.footerLogo svg path {
  fill: #ff372f;
}
.footerSocial ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footerSocial ul li {
  display: block;
  position: relative;
  font-family: Arial;
  margin-bottom: 9px;
  float: left;
  margin-right: 15px;
}
.footerSocial ul li a {
  font-family: icomoon!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: relative;
  word-break: break-word;
  font-weight: 400;
  font-size: 12px;
  padding: 0;
}
.footerSocial ul li a i {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: normal normal normal 14px/1 FontAwesome;
  color: #1e252b;
  font-size: 21px;
  padding: 0;
  display: inline-block;
}
.fa-youtube:before {
  content: "";
}
.fa-instagram:before {
  content: "";
}
.fa-linkedin:before {
  content: "";
}
.fa-twitter:before {
  content: "";
}
.fa-facebook-f:before, .fa-facebook:before {
  content: "";
}
.footerSocial ul:before, .footerSocial ul:after{
  content: " ";
  display: table;
}
.footerSocial ul:after{
  clear: both;
}
.footerMenu .hs-menu-wrapper ul {
  margin: auto;
  padding: 0;
}
.footerMenu .hs-menu-wrapper ul li {
  display: block;
  position: relative;
  font-family: Arial;
  margin-bottom: 9px;
}
.footerMenu .hs-menu-wrapper ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  font-family: styrene-medium,Arial;
  word-break: break-word;
  font-weight: 400;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 12px;
  padding: 0;
}
.footerMenu .hs-menu-wrapper ul li a:hover {
  text-decoration: none;
}
.footerSocial ul li a:hover {
  text-decoration: none;
}
.footerMenu .hs-menu-wrapper ul li:first-child a {
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  word-break: break-word;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
}
.footerColumn.footerColumn1 {
  padding-left: 0;
}



.footer.no_nav .copyrightFooterInner {
  border: none;
  padding: 0;
}
.footer.no_nav .legalMenu .hs-menu-wrapper ul li:first-child {
  display: none;
}




@media (min-width: 992px){
  footer.footer {
    padding-bottom: 65px;
  }
  .copyrightFooterInner {
    padding-top: 20px;
    border-top: 2px solid #e5e5e5;
  }
  .legalMenu .hs-menu-wrapper ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .legalMenu .hs-menu-wrapper ul li a {
    font-size: 11px;
  }
  .footer__copyright .hs_cos_wrapper_type_text {
    font-size: 12px;
  }
  .maiFooter {
    margin: 0 0 65px;
  }
  .footerColumn {
    float: left;
    width: 16.66667%;
    padding-left: 15px;
    padding-right: 15px;
  }








}



@media (min-width: 1200px){
  .legalMenu .hs-menu-wrapper ul li a {
    font-size: 12px;
  }





}






@media screen and (max-width: 991px){

  footer.footer {
    padding-top: 0;
    margin-top: 65px;
  }
  .footerColumn:not(.footerColumn1) {
    display: none;
  }
  .copyrightFooterInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .copyrightFooterInner:before, .copyrightFooterInner:after {
    display: none;
  }
  .footer__copyright {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  .legalMenu {
    width: 100%;
    margin-bottom: -22px;
  }
  .legalMenu .hs-menu-wrapper ul {
    float: none;
  }
  .footerLogo {
    display: none;
  }
  .maiFooter {
    padding-top: 65px;
    margin: 0;
  }
  .footerSocial ul li {
    margin-bottom: 24px;
  }
  .footerSocial {
    margin-bottom: 19px;
  }
  .footer__copyright .hs_cos_wrapper_type_text {
    position: relative;
    z-index: 99;
  }
  footer.footer.no_nav {
    padding-top: 65px;
  }



}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */

.blog_header {
  position: relative;
}
.breadcrumb {
  position: relative;
  width: 100%;
  z-index: 100;
}
.breadcrumb ol {
  line-height: normal;
  margin: 0;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  display: block;
  padding-top: 30px!important;
  width: 75%;
  padding-right: 0;
}
.breadcrumb ol li {
  font-weight: 400;
  display: inline;
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 12px;
}
.breadcrumb ol li.active {
  color: #1e252b;
  font-weight: 400;
}
.breadcrumb ol li:first-child {
  display: none;
}
.breadcrumb ol li:last-child {
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 12px;
  text-transform: none;
}
.breadcrumb ol li a {
  color: #898C8F;
  font-size: 12px;
  text-decoration: none;
  font-weight: 400;
  text-transform: none;
}
.breadcrumb ol li a:hover {
  color: #1E252B;
}
.breadcrumb ol li.active a {
  color: #1E252B;
  font-size: 12px;
  font-weight: 400;
  pointer-events: none;
}
.blog-title h1 {
  line-height: 1.3;
  font-weight: 400;
  z-index: 100!important;
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 50px;
  text-transform: uppercase;
  color: #ff372f;
  margin-top: 60px;
  margin-bottom: 45px;
}
section.blog-content {
  width: 100%;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.blogColumn {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.blogColumn9 {
  padding-left: calc(4vw + 15px);
  padding-right: calc(4vw + 15px);
}
.blogColumn3 {
  padding-left: calc(4vw + 15px);
  padding-right: calc(4vw + 15px);
}
.row:after, .row:before, .content-wrapper:before, .content-wrapper:after {
  content: " ";
  display: table;
}
.row:after, .content-wrapper:after {
  clear: both;
}
.blogSubContent p {
  color: #1e252b;
  font-size: calc(.52vw + 14px);
  font-family: 'PP Neue Montreal',Arial;
}
.blogSubContentIn {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.52vw + 14px);
  line-height: 1.4;
  margin-bottom: 70px;
}
hr.blog-item-divider {
  margin-top: 70px;
  margin-bottom: 70px;
  border-top-color: #e4e4e6;
}
hr.blog-item-divider:first-child {
  margin-top: 0!important;
}
.blog-items-wrap {
  margin-top: 70px;
  margin-bottom: 70px;
}
h2.publications-title {
  font-weight: 500;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  line-height: 1.365;
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.75117vw + 17.18px);
  color: #ff372f;
}
.publications-content {
  margin-left: -15px;
  margin-right: -15px;
}
.publications-content div{

}
.publications-content div, .publications-content p {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 11.94px);
  color: #1e252b;
  line-height: 1.8;
}
.post-listing:before, .post-listing:after {
  content: " ";
  display: table;
}
.post-listing:after {
  clear: both;
}
.post-item {
  float: left;
  display: inline;
  width: 100%;
}
.post-item > div {
  padding: 15px;
}
.post-item-inner {
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
  margin-bottom: 30px;
  max-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
a.featured-image-link {
  display: block;
  overflow: hidden;
}
img.featured-image {
  margin-left: auto;
  margin-right: auto;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  max-width: none;
  width: 100%;
  height: auto;
}
.post-item > div:hover > .post-item-inner a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.post-item .post-item-content {
  padding: 0;
  color: #1e252b;
  margin: 0 auto;
}
.publications-content .date {
  display: block;
  margin: 35px 0 17px;
  text-transform: uppercase!important;
  color: #1e252b;
  font-size: 14px;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
}
a.entry_title h2 {
  font-weight: 400;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: calc(.37559vw + 14.59px);
  text-transform: none;
  color: #ff372f;
  line-height: 1.38em;
  margin-bottom: 15px;
}
.post-item a{
  text-decoration: none !important;
}
.more-info table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
  margin: 0;
  border: none;
}
.more-info td {
  vertical-align: top;
}
.more-info td:first-child {
  padding-right: 10px;
}
.more-info td {
  padding: 0;
  border: none;
  background: none;
}
img.svg-icon {
  margin-top: 5px;
  vertical-align: top;
}
.more-info a {
  font-size: 18px;
  color: #1E252B;
}
.more-info a:focus, .more-info a:hover {
  color: #537898;
  text-decoration: none;
}
.marT4 {
  margin-top: 4px;
}
.over-vis {
  overflow: visible!important;
}
.blog-pagination {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.blog-pagination a {
  text-decoration: none !important;
  line-height: 1.42857;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  margin-right: 15px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: none;
  font-family: styrene-regular,Arial;
  font-family: 'PP Neue Montreal',Arial;
  letter-spacing: .5px;
  border-radius: 0;
  border: 0;
  padding: 15px 20px;
  width: auto;
  white-space: normal;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  background-color: #537898;
  color: #fff;
  font-size: 14px;
}
.blog-pagination a:hover {
  background-color: #3D5F7A;
  color: #fff;
}

.relatedWrapper .slick-arrow {
  position: absolute;
  width: 98px;
  top: -88px;
  right: 0;
}
.relatedWrapper button.icon-chevron {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-appearance: button;
  cursor: pointer;
  font-family: icomoon!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  border: 0;
  background-color: transparent;
  font-size: 14px;
  padding: 0;
  width: 42px;
  height: 44px;
  border: 1px solid #3D5F7A;
}
.relatedWrapper .owl-prev.slick-arrow {
  right: 52px;
}

.relatedWrapper button.icon-chevron.right:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\e902";
  -webkit-transform: translate(-50%,-50%) rotate( 180deg);
  -ms-transform: translate(-50%,-50%) rotate(180deg);
  transform: translate(-50%,-50%) rotate( 180deg);
}
.relatedWrapper button.icon-chevron.left:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\e902";
  content: "\e902";
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.relatedWrapper button.icon-chevron:hover {
  background-color: #3D5F7A;
  color: #fff;
}
.relatedWrapper .owl-next.slick-arrow {
  right: -40px;
}
.relatedWrapper .owl-prev.slick-arrow {
  right: 12px;
}


/* .fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .15s linear;
} */
.modal, .modal-open, [data-show-more] {
  overflow: hidden;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal {
  background-color: rgba(255,255,255,.7);
}
.modal {
  background-color: rgb(255, 255, 255,0.91) !important;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0,-25%);
  -ms-transform: translate(0,-25%);
  -o-transform: translate(0,-25%);
  transform: translate(0,-25%);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.modal-content, .popover {
  background-color: #fff;
  background-clip: padding-box;
}
.modal-content {
  position: relative;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0;
  -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  outline: 0;
}
.modal .modal-content {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 15.48px 2.52px rgb(0 0 0 / 9%);
  box-shadow: 0 0 15.48px 2.52px rgb(0 0 0 / 9%);
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal .modal-body {
  padding: 50px 15px;
}

.modal .modal-close {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-appearance: button;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-color: #547898;
  border: 0;
  height: 50px;
  line-height: 14px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
}
.modal .modal-close svg {
  height: 14px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  width: 14px;
  fill: #fff;
}
.modal .modal-close:focus svg, .modal .modal-close:hover svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.U--mb--40 {
  margin-bottom: 40px!important;
}
.typo__15 {
  color: #1e252b;
  font-family: 'PP Neue Montreal',Arial !important;
  font-weight:500;
  font-size: calc(.18779vw + 17.3px) !Important;
}
.share-social, .share-social .ss__link {
  display: -webkit-box;
  display: -ms-flexbox;
}
.share-social {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.share-social .ss__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.share-social .ss__item {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0;
}
.share-social .ss__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #547898;
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 26px;
  height: 65px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 9px;
  width: 65px;
}
.share-social .ss__link:focus, .share-social .ss__link:hover {
  background-color: #3d5f7b;
  text-decoration: none;
}
.U--mb--20 {
  margin-bottom: 20px!important;
}
.U--flex {
  display: -webkit-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
}
.U--flex-justify-center {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important;
}
.U--flex-justify-center button{
  color: inherit;
  font: inherit;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.42857;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: normal;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  border: 0;
  padding: 15px 17px;
  letter-spacing: .5px;
  width: 100%;
  font-weight: 400;
  font-family: styrene-regular,Arial;
  font-family: 'PP Neue Montreal',Arial;
  margin-bottom: 15px;
  margin-right: 15px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: none;    padding: 15px 20px;
  width: auto;
  background-color: #e4e4e6;
  padding: 15px 25px;
  font-size: 14px;
  color: #537898;
  line-height: 1.143;
  text-align: center;
  margin-right: 0;
}
.U--flex-justify-center button:hover{
  background-color: #d8d7dc;
}
.hide {
  display: none!important;
}
.U--mb--10 {
  margin-bottom: 10px!important;
}
.btn input
{
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  line-height: normal;
  border: 0;
  padding: 4px;
  font-size: 12px;
}
body.modalOpen .modal.fade .modal-dialog {
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
.share-social .ss__link:before {
  font-family: font-awesome;
}
.share-social .ss__linkedin:before {
  content: "\f0e1";
}
.share-social .ss__facebook:before {
  content: "\f09a";
}
.share-social .ss__twitter:before {
  content: "\f099";
}
.share-social .ss__email:before {
  content: "\f0e0";
}





@media (min-width: 480px){
  .blogSubContentIn {
    margin-bottom: 35px;
  }
  hr.blog-item-divider {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .blog-items-wrap {
    margin-top: 45px;
    margin-bottom: 35px;
  }








}

@media (min-width: 768px){
  .blogSubContentIn {
    margin-bottom: 35px;
  }
  hr.blog-item-divider {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .blog-items-wrap {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }






}

@media (min-width: 992px){
  .blogColumn9 {
    width: 75%;
    float: left;
  }
  .blogColumn3 {
    float: left;
    width: 25%;
  }
  .blogColumn3 {
    padding-left: 15px;
  }
  .blogSubContentIn {
    margin-bottom: 45px;
  }
  hr.blog-item-divider {
    margin-top: 65px;
    margin-bottom: 45px;
  }
  .blog-items-wrap {
    margin-top: 65px;
    margin-bottom: 45px;
  }
  .post-item {
    width: 33.33333%;
  }
  .post-item:nth-of-type(n) {
    clear: none;
  }
  .post-item:nth-of-type(3n+1) {
    clear: both;
  }
  .modal .modal-dialog {
    width: 680px;
  }
  .modal .modal-body {
    padding: 50px 60px;
  }
  .share-social .ss__item {
    margin-bottom: 0;
  }





}


@media (min-width: 1200px){
  .blogColumn9 {
    padding-left: calc(4vw + 15px);
    padding-right: 0;
  }
  .blogColumn3 {
    float: left;
    width: 16.66667%;
    margin-left: 8.33333%;
  }
  .blogSubContentIn {
    margin-bottom: 55px;
  }
  hr.blog-item-divider {
    margin-top: 75px;
    margin-bottom: 55px;
  }
  .blog-items-wrap {
    margin-top: 75px;
    margin-bottom: 55px;
  }

  .modal {
    text-align: center;
  }

  .modal .modal-dialog {
    text-align: left;
    margin: 10px auto;
    vertical-align: middle;
    display: inline-block;
  }
  .modal:before {
    content: '';
    height: 100%;
    width: 1px;
    display: inline-block;
    vertical-align: middle;
  }



}

@media (min-width: 1500px){
  .blogColumn9 {
    padding-left: 1vw;
    padding-right: 0;
  }
  .blogColumn3 {
    padding-left: 0;
    padding-right: 1vw;
  }
  hr.blog-item-divider {
    margin-top: 75px;
  }
  .blog-items-wrap {
    margin-top: 75px;
  }










}





@media(max-width: 1499px){
  .content-wrapper.blogSubContent {
    padding: 0;
  }
  .blog-title h1 {
    font-size: calc(2.5vw + 12px);
  }
  .single-post-wrapper .content-wrapper {
    padding: 0 !important;
  }





}






@media(max-width: 1199px){
  .blog-title h1 {
    margin-bottom: 35px;
  }



}



@media(max-width: 991px){
  .blog-pagination a {
    width: 100%;
  }



}



@media(max-width: 767px){
  .breadcrumb ol {
    display: none;
  }
  .blog-title h1 {
    margin-bottom: 25px;
  }
.U--flex-justify-center button {
    width: 100%;
}

}


@media (max-width: 480px){
  hr.blog-item-divider {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .blogSubContentIn {
    margin-bottom: 35px;
  }
  .blog-items-wrap {
    margin-top: 45px;
    margin-bottom: 35px;
  }




}








/******************************************* Post Page ***********************************/

.blog-banner-wrapper {
  color: #ff372f;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 425px;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  height: 0;
  background-size: cover;
  background-position: center center;
}
.blog-banner-wrapper .banner-image {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  z-index: 1;
}
.blog-banner-wrapper .banner-image img {
  vertical-align: middle;
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
.blog-banner-wrapper:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-color: transparent;
  opacity: .6;
  display: block;
}

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

.breadcrumb ol li:nth-child(3):before {
  padding: 0 2px;
  content: '/';
  color: #898C8F!important;
  font-weight: 400;
  font-size: 14px;
}
.hs-blog-post .blog-title h1 {
  margin-top: 45px;
  text-transform: initial;
}
.page-summary {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.52vw + 14px);
  color: #1e252b;
  margin-top: 0!important;
  line-height: 1.4;
  margin-bottom: 15px;
}
.page-summary .hs_cos_wrapper_type_text {
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.52vw + 14px);
  color: #1e252b;
  width: 75%;
  display: block;
}
.postColumn {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.postColumnLeft, .postColumnRight {
  padding-left: calc(4vw + 15px);
  padding-right: calc(4vw + 15px);
}
.article-info {
  color: #1e252b;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 14px;
  margin-bottom: 70px;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-map-marker:before {
  content: "";
}
.blog-post__body, .related-publications {
  margin-top: 70px;
  margin-bottom: 70px;
}
.blog-comments {
  margin-bottom: 70px;
}
.relatedColumn {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.relatedColumn8 {
  float: left;
  width: 66.66667%;
}
.relatedColumn4 {
  float: left;
  width: 33.33333%;
}
h2.latest-news-title {
  font-weight: 400;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  line-height: 1.365;
  font-family: styrene-medium-italic,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: calc(.75117vw + 17.18px);
  margin-bottom: 0;
  color: #FF372F;
}
.related-publications > .row {
  margin-bottom: 40px;
}
.blog-comments .section.post-footer {
  max-width: 100%;
}
.custom_listing_comments {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
}
.comment.depth-0 {
  border-bottom: 1px solid #000 !important;
  border-top: medium none !important;
  margin: 0 10px 10px !important;
  padding: 0 15px !important;
}
.comment-body {
  border-bottom: medium none;
  display: block;
  padding: 0;
}
.comment-reply-to{
  margin-bottom: 15px;
}
.comment-from h4 {
  margin: 0;
  padding-top: 15px;
}
#comments-listing.no-comments{
  border: none;
}
.comment-date {
  display: block !important;
  text-align: left !important;
}
.comment-date {
  margin: 10px 0;
  font-size: 14px;
}
.related-post-in div, .related-post-in p{
  font-family: 'PP Neue Montreal',Arial;
  font-size: calc(.28169vw + 11.94px);
  color: #1e252b;
  line-height: 1.8;
}
.related-post-in .date{
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: 14px;
  color: #1e252b;
  display: block;
  margin: 35px 0 17px;
  text-transform: uppercase!important;
}
.relatedWrapper {
  margin: 0 -20px 0 0;
}
.related-post-item.post-item {
  display: block;
  width: 100%;
  float: left;
  /*   margin-left: 20px;  */
  margin-right: 20px;
  clear: none !Important;
}

.related-post-in {
  margin-left: -15px;
  margin-right: -15px;
}
.related-item-inner {
  margin-bottom: 30px;
  /*   max-width: 100%; */
  position: relative;
  display: block;
  overflow: hidden;

}
.related-post-in:hover img.featured-image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.related-post-in:before, .related-post-in:after {
  content: " ";
  display: table;
}
.related-post-in:after {
  clear: both;
}
hr.didebar-divider {
  margin: 0 4vw;
}
.sidebarButton button {
  font: inherit;
  margin: 0;
  line-height: 1.42857;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  white-space: normal;
  overflow: hidden;
  position: relative;
  width: 100%!important;
  display: block!important;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-transform: none;
  font-weight: 400;
  font-family: 'PP Neue Montreal',Arial;
  margin-bottom: 15px;
  letter-spacing: .5px;
  border-radius: 0;
  border: 0;
  padding: 15px 20px;
  background-color: #537898;
  color: #fff;
  font-size: 14px;
  margin-right: 0!important;
}
.sidebarButton button:hover {
  background-color: #3D5F7A;
  color: #fff;
}
.tagsFilter h2 {
  font-weight: 400;
  word-break: break-word;
  margin: 0 0 calc(16px + .5vw);
  color: #1e252b;
  font-family: styrene-bold,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  font-size: calc(.28169vw + 11.94px);
  line-height: 1.4;
}
.tagsFilter .block h3 {
  display: none;
}
.tagsFilter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tagsFilter ul li {
  font-family: styrene-medium,Arial;
  font-family: 'PP Neue Montreal',Arial;
  font-weight:500;
  margin-right: 0;
  font-size: 14px;
  margin-bottom: 23px;
  cursor: default;
}
.tagsFilter ul li a {
  display: block;
  margin-bottom: 6px;
  color: #3D5F7A;
}
.tagsFilter ul li a:hover {
  color: #bec9d4;
  text-decoration: none;
}




@media (min-width: 480px){
  .article-info {
    margin-bottom: 35px;
  }
  .blog-post__body, .related-publications {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  hr.didebar-divider {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .tagsFilter ul li {
    margin-bottom: 13px;
  }



}

@media (min-width: 768px){
  .article-info {
    margin-bottom: 35px;
  }
  .blog-post__body, .related-publications {
    margin-top: 45px;
    margin-bottom: 35px;
  }
  .blog-comments {
    margin-bottom: 35px;
  }
  hr.didebar-divider {
    margin-top: 35px;
    margin-bottom: 35px;
  }

}


@media (min-width: 992px){
  .postColumnLeft {
    float: left;
    width: 75%;
  }
  .postColumnRight {
    padding-left: 15px;
  }
  .postColumnRight {
    float: left;
    width: 25%;
  }
  .article-info {
    margin-bottom: 45px;
  }
  .blog-post__body, .related-publications {
    margin-top: 65px;
    margin-bottom: 45px;
  }
  .blog-comments {
    margin-bottom: 45px;
  }
  hr.didebar-divider {
    margin-top: 45px;
    margin-bottom: 45px;
  }

}



@media (min-width: 1010px){
  .blog-banner-wrapper {
    min-height: 425px;
  }


}




@media (min-width: 1200px){
  .blog-banner-wrapper {
    background-position: center top;
    background-attachment: fixed;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .blog-banner-wrapper {
    min-height: 385px;
  }
  .postColumnLeft {
    padding-left: calc(4vw + 15px);
    padding-right: 0;
  }
  .postColumnRight {
    float: left;
    width: 16.66667%;
    margin-left: 8.33333%;
  }
  .article-info {
    margin-bottom: 55px;
  }
  .blog-post__body, .related-publications {
    margin-top: 75px;
    margin-bottom: 55px;
  }
  .blog-comments {
    margin-bottom: 55px;
  }
  hr.didebar-divider {
    margin-top: 55px;
    margin-bottom: 55px;
  }



}



@media (min-width: 1250px){
  .blog-banner-wrapper {
    min-height: 410px;
  }


}


@media (min-width: 1280px){
  .relatedColumn4 {
    height: 44px;
  }





}


@media (min-width: 1300px){
  .blog-banner-wrapper {
    min-height: 425px;
  }


}

@media (min-width: 1350px){
  .blog-banner-wrapper {
    min-height: 445px;
  }


}

@media (min-width: 1366px){
  .relatedColumn4 {
    height: 45px;
  }

}

@media (min-width: 1400px){
  .blog-banner-wrapper {
    min-height: 474px;
  }


}

@media (min-width: 1500px){
  .blog-banner-wrapper {
    min-height: 500px;
  }
  .postColumnLeft {
    padding-left: 1vw;
    padding-right: 0;
  }
  .postColumnRight {
    padding-left: 0;
    padding-right: 1vw;
  }
  .related-publications {
    margin-top: 70px!important;
    margin-bottom: 70px!important;
  }
  .relatedColumn4 {
    height: 50px;
  }
  hr.didebar-divider {
    margin: 55px auto;
  }

}


@media (min-width: 1600px){
  .blog-banner-wrapper {
    min-height: 534px;
  }


}

@media (min-width: 1650px){
  .blog-banner-wrapper {
    min-height: 565px;
  }


}

@media (min-width: 1700px){
  .blog-banner-wrapper {
    min-height: 580px;
  }


}

@media (min-width: 1800px){
  .blog-banner-wrapper {
    min-height: 615px;
  }
  .relatedColumn4 {
    height: 51px;
  }

}

@media (min-width: 1900px){
  .blog-banner-wrapper {
    min-height: 659px;
  }


}
@media (min-width: 992px) and (max-width: 1199px){
  .blog-banner-wrapper {
    min-height: 375px!important;
  }



}


@media(max-width: 1199px){
  .blog-banner-wrapper .banner-image {
    display: none;
  }
  .blog-banner-wrapper {
    background-repeat: no-repeat;
    background-position: 50% 50%!important;
    overflow: hidden;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%;
    max-width: 100%;
    height: 0;
    background-size: cover;
    padding-top: 29%;
    min-height: 281px;
  }





}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 50px 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: auto;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: 5px 10px;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

input.email-edit.hs-input {
  width: 100% !important;
}


@media(max-width:767px){
  .systems-page h1{
    font-size: 26px;
  }
  .systems-page h2, .systems-page h3{
    font-size: 22px;
  }

}