/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */









































::selection {
    background: #2b3990;
    color: #efefef;
    text-shadow: none;
}



/* ******************************************************************************
*********************************************************************************
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 {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* 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.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* 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; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

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

/**
 * 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.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}


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

}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: icomoon;
  src: url("//5007592.fs1.hubspotusercontent-na1.net/hubfs/5007592/Playcore_June2020/Fonts/icomoon.woff2") format("woff2"),
    url("//5007592.fs1.hubspotusercontent-na1.net/hubfs/5007592/Playcore_June2020/Fonts/icomoon.woff") format("woff"),
    url("//5007592.fs1.hubspotusercontent-na1.net/hubfs/5007592/Playcore_June2020/Fonts/icomoon.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}


html {
  font-size: 62.5%;
}

body {
  font-family: adelle-sans,sans-serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.75;
      -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: adelle-sans,sans-serif;
     line-height: 1.74;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
  transition: color .2s ease-in-out 0s;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: adelle-sans,sans-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: adelle-sans,sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

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

h6 {
  font-size: 20px;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {
     line-height: 1.74;
}

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

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
      line-height: 1.74;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* 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;
}

:focus {
  outline: auto;
  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.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 500px;
  font-family: adelle-sans,sans-serif;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1.1;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-size: .92rem;
  padding: 15px 53px;

  text-decoration: none;
      border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    padding: 12px 24px;
  margin: 0;
  height:auto;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    line-height: 12px;
    position: relative;
  margin:10px 0 20px;
  width:auto;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;

  color: #fff;
  text-decoration:none;
}

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


.hs-form label {
  font-size: .83rem;
  color: #33475b;
font-size: 14px;
    text-align: right;
    color: #33475b;
    display: block;   
    float: none;
    width: auto;
    font-weight: 500;
    text-align: left;
    line-height: 20px;
    padding-top: 0;
    margin-bottom: 4px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b !important;
  font-family: helvetica;
}

.hs-input ,
form input{
  display: inline-block;
  width: 100%;
  height: 58px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
background-color: #f5f8fa;
    height: 40px;
    padding: 9px 10px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.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;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

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: #c87872;
}
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: #b9554d;
}

.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;
}

.field {
  margin-bottom: 18px;
}

.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%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.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: adelle-sans,sans-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;
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */


ul.social-nav.custom-header-social-icon {
    margin: 0;
}

.header__sub-nav {
    display: block;
    border-bottom: 1px solid #efefef;
    padding-top: 1.8rem;
    padding-right: 3rem;
    padding-bottom: 1.7rem;
    padding-left: 3rem;
}

ul.social-nav.custom-header-social-icon {
    padding: 0;
    list-style: none;
    vertical-align: top;
    display: inline-block;
    width: 50%;
    float: left;
}

.custom-header-top-menu {
    text-align: right;
    height: 2rem;
    display: inline-block;
    line-height: 2rem;
    margin-bottom: 0;
    list-style: none;
    width: 50%;
    float: left;
}

ul.social-nav.custom-header-social-icon li {
    line-height: 1em;
    margin-right: 2rem;
    margin-bottom: 0;
    display: inline-block;
    list-style: none;
}

ul.social-nav.custom-header-social-icon li a {
    line-height: 1em;
    color: transparent;
    font-size: 0;
}

ul.social-nav.custom-header-social-icon li a:before {
    vertical-align: top;
    color: #d6d6d6;
    font-size: 2rem;
    transition: color .2s ease-in-out 0s;
}

.custom-header-top-menu .hs-menu-wrapper > ul {
    display: block;
    margin: 0;
}

.custom-header-top-menu .hs-menu-wrapper > ul > li {
    display: inline-block;
    line-height: 2rem;
    margin-right: 3rem;
    margin-bottom: 0;
}

.custom-header-top-menu .hs-menu-wrapper > ul > li:last-child {
    margin: 0;
}

.custom-header-top-menu .hs-menu-wrapper > ul > li > a {
    color: #313132;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 0;
    transition: color .2s ease-in-out 0s;
}

.custom-header-top-menu .hs-menu-wrapper > ul > li > a:hover {
    color: #d6d6d6;
    text-decoration: none;
}


.custom-header-bottom {
    padding-top: 2rem;
    padding-bottom: 1.9rem;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    transition: top .2s ease-in-out 0s;
    width: 100%;
}

.custom-logo {
    display: inline-block;
    transition: opacity .2s ease-in-out 0s;
    margin-left: 3rem;
}

.header__logo-img {
    height: 5.1rem;
    width: 19.4rem;
    vertical-align: top;
}

.header__triggers {
    float: right;
    margin-top: 1.5rem;
    margin-right: 3rem;
    position: relative;
    z-index: 175;
}

.header__triggers-search {
    position: absolute;
    top: .4rem;
    left: -2rem;
    color: #5a5a5b;
    cursor: pointer;
    display: inline-block;
    transition: color .2s ease-in-out 0s;
}

.header__triggers-search::before {
    font-variant: normal;
    speak: none;
    content: '\e90a';
    font-family: icomoon;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    line-height: 1em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}


.custom-menu-primary {
    position: absolute;
    top: 3.6rem;
    background: #fff;
    border-left: 0;
    bottom: inherit;
    overflow: hidden;
    font-size: 1.7rem;
    line-height: 1em;
    margin-top: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 2.4rem;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 100%;
    z-index: 150;
}

.custom-menu-primary .hs-menu-wrapper > ul {
    margin: 0;
    text-align: center;
    background: #fff;
    line-height: 1em;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;

}

.custom-menu-primary .hs-menu-wrapper > ul > li {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    position: relative;
    margin-bottom: 0;
    z-index: 200;
    vertical-align: top;
    display: inline-block;
}



.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    color: #313132;
    font-size: 1.7rem;
    margin-bottom: 0;
}

.custom-logo {
    position: relative;
    z-index: 9999;
}


.search-bar__search {}

.search-bar__overlay {
    background-color: rgba(0,0,0,0);
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background .2s ease-in-out 0s;
    z-index: 275;
    background-color: rgba(0,0,0,.2);
    overflow: hidden;
}

.search-bar__search {
    background: #fff;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: none;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    padding-top: 1.3rem;
    padding-right: 1.5rem;
    padding-bottom: 1.3rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0;
    width: 100%;
    z-index: 300;
    width: 100%;
    max-width: 100%;
}

.search-bar .search-input {
    border: 1px solid #e0e0e0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    min-height: auto;
    padding-top: .9rem;
    padding-right: 1.5rem;
    padding-bottom: .9rem;
    padding-left: 1.5rem;
    margin-bottom: 0;
    width: auto;
    background: #fff;
    height: auto;
    color: rgb(49, 49, 50);
    cursor:text;
    display:block;
    font-family: adelle-sans, sans-serif;
    font-size:17px;
    line-height: normal;
}

.search-bar .search-clear {
    background-color: #d6d6d6;
    border: none;
    height: 2rem;
    background-clip: border-box;
    border-radius: 1rem;
    width: 2rem;
    display: block;
    font-size: 2rem;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-left: -3rem;
    padding: 0;
    position: relative;
}

.search-bar .search-controls {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding-left: 1.8rem;
    padding-top: .2rem;
    padding-bottom: .2rem;
}

.search-bar .search-submit {
    background: #2b3990;
    border: 1px solid #2b3990;
    font-size: 1.5rem;
    display: none;
    padding-top: 1rem;
    padding-right: 1.95rem;
    padding-bottom: 1rem;
    padding-left: 1.95rem;
}

.search-bar .search-cancel {
    border: 2px solid #fff;
    color: #adadad;
    font-size: 1.7rem;
    padding-top: .8rem;
    padding-right: 1.5rem;
    padding-bottom: .8rem;
    padding-left: 1.5rem;
    background: transparent;
}

.search-bar .search-input:focus {
    outline: none;
}

.search-bar.search-open {}

.search-bar.search-open .search-submit {
    background: #2b3990;
    border: 1px solid #2b3990;
    font-size: 1.5rem;
    display: inline-block;
    padding-top: 1rem;
    padding-right: 1.95rem;
    padding-bottom: 1rem;
    padding-left: 1.95rem;
    color: #fff;
    transition: all .2s ease-in-out 0s;
    border-radius: 26rem;
}

.search-bar.search-open  .button.search-cancel {
    display: inline-block;
}

.custom-menu-primary .hs-menu-wrapper>ul>li {
    line-height: 1;
}
.search-bar .search-input::placeholder {
    color: 
    #d6d6d6;
}

button.button.search-clear.js-hide {
    display: none;
}

.button.search-cancel {
    cursor: pointer;
}

a.header__logo:hover {
    opacity: .6;
    text-decoration: none;
}

.header__triggers-mobile-nav:hover, .header__triggers-search:hover {
    color: #d6d6d6;
  transition: all .2s ease-in-out 0s;
}

.search-bar .search-cancel:hover {
    background: 0 0;
    border: 2px solid #fff;
    color: #d6d6d6;
  transition: all .2s ease-in-out 0s;
}

.search-bar .search-submit:hover {
    background: #fff;
    color: #2b3990;
}

.search-bar.search-open .search-submit {
    cursor: pointer;
}


@media (min-width: 999px){
  .nav-menu__mobile.nav-contact {
    display: none;
}

ul.social-nav.custom-header-social-icon.mobile-social-icon-menu {
    display: none;
}
  
.header__triggers-mobile-nav {
    display: none;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.who-we-are {
    max-width: 146px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > ul {

}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    text-align: left;
    background: #fff;
    overflow: hidden;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-top: 3rem;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 2rem;
    -webkit-transition: ,,;
    transition: max-height .3s ease-in-out 0s,margin .3s ease-in-out 0s,padding .4s ease-in-out 0s;
    width: 25rem;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul >li {
    display: block;
    margin-bottom: 2.9rem;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul >li > a {
    line-height: 1.5em;
    color: #313132;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul >li:last-child {
    margin-bottom: 0;
}
  
  .custom-menu-primary.sub-menu-open {
    border-bottom: 1px solid #e0e0e0;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.explore {
    width: 109px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.product-brands {
    width: 168px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.research-in-action {
    width: 192px;
}
  
.custom-menu-primary .hs-menu-wrapper>ul>li.core {
    width: 100px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.more-tools {
    width: 133px;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul {
    display: flex;
    justify-content: center;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul:after {content: "";background: #e0e0e0;height: 1px;display: block;position: absolute;z-index: 9999;left: -454%;right: -791%;bottom: -24px;}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    transform: scaleY(0);
    transition: all ease-in-out;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover>ul {
    transform: scaleY(1);
}
  
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    overflow: visible;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li a:hover {
    text-decoration: none;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    overflow: visible;
    transition: all ease-in-out;
    transform: scaleY(0);
    transition: all 0.3s ease !important;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover>ul {
    transform: scaleY(1);
    margin-bottom: 1.5rem;
    margin-left: -2rem;
    padding-top: 3rem;
    opacity: 1;
    visibility: visible;
    height: auto;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    margin-left: 0 !important;
}
  
  
}

@media (max-width: 1254px){
.custom-menu-primary {
    padding-left: 8%;
}
}

@media (max-width: 998px){
.header__sub-nav {
    display: none;
}

.header__triggers-mobile-nav, .header__triggers-search {
    color: #5a5a5b;
    cursor: pointer;
    display: inline-block;
    transition: color .2s ease-in-out 0s;
}

.header__triggers-mobile-nav-bar, .header__triggers-mobile-nav::after, .header__triggers-mobile-nav::before {
    background-color: #5a5a5b;
    display: block;
    content: '';
    height: .2rem;
    margin-top: .5rem;
    width: 2.9rem;
}

.header__triggers-mobile-nav {
    margin-left: 2.8rem;
}



.custom-header-bottom {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.custom-logo {}

.header__logo-img {
    vertical-align: top;
    height: 3.7rem;
    width: 14rem;
}

.header__triggers {
    margin-top: .8rem;
}
  
  .custom-menu-primary {
    background: #fff;
    border-left: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin-top: 6.1rem;
    padding-top: 5rem;
    padding-right: 3rem;
    padding-bottom: 5rem;
    padding-left: 3rem;
    overflow: scroll;
    -ms-transform: translateX(38rem);
    -webkit-transform: translateX(38rem);
    transform: translateX(38rem);
    width: 38rem;
    z-index: 200;
    -webkit-transition: -webkit-transform .4s ease-in-out 0s;
    transition: transform .4s ease-in-out 0s;
    margin-top: 6.8rem;
    overflow-x: hidden;
}

.mobile-open .custom-menu-primary {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.custom-menu-primary .hs-menu-wrapper>ul {
    display: block;
    padding: 0;
    text-align: left;
}

.custom-menu-primary .hs-menu-wrapper>ul>li {
    display: block;
    padding: 0;
    margin-bottom: 6rem;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
    display: block;
}

.custom-menu-primary .hs-menu-wrapper>ul>li > a {
    color: #2b3990;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    line-height: 30.005px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul > li {
    margin-bottom: 2rem;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul > li  > a {
    color: #313132;
    font-size: 18px;
    line-height: 20px;
}
  
  .nav-menu__mobile.nav-contact a {
    display: inline-block;
    line-height: 1em;
    text-align: center;
    text-shadow: none;
    background: #fff;
    border: 1px solid #2b3990;
    font-family: adelle-sans,sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    padding-top: 1.8rem;
    padding-right: 6.2rem;
    padding-bottom: 1.8rem;
    padding-left: 6.2rem;
    background-clip: border-box;
    border-radius: 26rem;
    border-width: 2px;
    color: #2b3990;
    transition: all .2s ease-in-out 0s;
    font-size: 1.9rem;
    margin-bottom: 3.8rem;
    width: 100%;
}

.nav-menu__mobile.nav-contact a:hover {
    text-decoration: none;
    background-color: #2b3990;
    color: #fff;
}
  
  
  ul.social-nav.custom-header-social-icon {
    width: 100%;
    text-align: center;
}
  .mobile-open .custom-header-bottom {
    position: fixed;
    top: 0;
}

header.header {
    min-height: 61px;
}


  .mobile-open main.body-container-wrapper, .mobile-open footer.footer {
    -ms-transform: translateX(-38rem);
    -webkit-transform: translateX(-38rem);
    transform: translateX(-38rem);
}

main.body-container-wrapper, footer.footer {
    -webkit-transition: -webkit-transform .4s ease-in-out 0s;
    transition: transform .4s ease-in-out 0s;
    position: relative;
}
  
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li {
    line-height: 1;
}
  
  .mobile-open .header__triggers-mobile-nav::before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s ease-in-out 0s;
}

.mobile-open .header__triggers-mobile-nav-bar {
    display: none;
}

.mobile-open .header__triggers-mobile-nav::after {
    margin-top: -.2rem;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .2s ease-in-out 0s;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>a:hover {
    text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul>li>a:hover,
  .custom-menu-primary .hs-menu-wrapper>ul>li>a:hover{
    color: #d6d6d6;
    text-decoration: none;
}
  
  
  }




@media (max-width: 743px){
.custom-header-bottom {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 1.1rem;
    padding-bottom: 1.2rem;
    transition: top .2s ease-in-out 0s;
    width: 100%;
}

.custom-logo {
    display: inline-block;
    margin-left: 1.5rem;
    transition: opacity .2s ease-in-out 0s;
}

.header__triggers {
    margin-top: .8rem;
    margin-right: 1.5rem;
    position: relative;
    float: right;
}
  
  .custom-menu-primary {
    margin-top: 6.1rem;
}
  .custom-menu-primary {
    max-width: 100%;
}
  


.search-bar.search-open .search-submit {
    display: none;
}
  
  button.button.search-clear.js-hide:before {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-variant: normal;
    speak: none;
    content: '\e90c';
    font-family: icomoon;
    font-size: .8rem;
    font-weight: 400;
    line-height: 0;
    font-style: normal;
    display: inline-block;
    line-height: 1em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    padding-top: .6rem;
    height: 2rem;
    width: 2rem;
    display: inherit;
}

button.button.search-clear.js-hide {
    display: inline-block;
}
  
}
.search-bar .search-input {
    border-radius: 0;
}

@media (max-width: 413px){
.search-bar .search-controls {
    padding: 5px 0;
    width: auto;
    position: relative;
    right: -15px;
}

.search-bar .search-cancel {
    padding: 5px;
    font-size: 12px;
}

.search-bar .search-input {

    margin-right: -6%;

    width: auto;
}

.search-bar .search-input {
    margin: 0;
    max-width: 80%;
}
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer .page-center {
    margin-top: 7.1rem;
    margin-bottom: 2.2rem;
    padding-left: 6%;
    padding-right: 6%;
      max-width: 162rem;
}

.custom_footer_legal {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
}

.custom-privacy-menu .hs-menu-wrapper > ul {
    display: flex;
    margin: 0;
    text-align: center;
}

.custom-privacy-menu .hs-menu-wrapper > ul > li {
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1.9rem;
}

.custom-copyright {
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1.9rem;
}

.custom-privacy-menu .hs-menu-wrapper > ul > li > a {
    color: #adadad;
    text-decoration: none;
    transition: color .2s ease-in-out 0s;
}



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

.custom_footer_contact {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    max-width: 100%;
    padding-top: 4.45rem;
    margin-bottom: 2.4rem;
}


ul.social-nav.custom-footer-social-icon {
    width: auto;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 5.1rem;
    display: flex;
    list-style: none;
    padding: 0;
    line-height: 1.765em;
}

.custom_footer_contact {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

ul.social-nav.custom-footer-social-icon .social-nav__item {
    display: inline-block;
    list-style: none;
}

ul.social-nav.custom-footer-social-icon .social-nav__item a {
    color: transparent;
    font-size: 0;
}

.social-nav__link::before {
    font-variant: normal;
    speak: none;
    content: '\e903';
    font-family: icomoon;
    font-size: 2.6rem;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    line-height: 1em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    transition: color .3s ease-in-out .1s;
    color: #2b3990;
}

.social-nav.-footer .social-nav__link::before {
    color: #2b3990;
}



.custom_footer_contact_num {
    display: block;
    font-size: 1.7rem;
    letter-spacing: .089rem;
    margin-bottom: 5.1rem;
    transition: color .2s ease-in-out 0s;
}

.custom_footer_contact_num  a::before {
    font-variant: normal;
    speak: none;
    content: '\e908';
    font-family: icomoon;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    line-height: 1em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding-right: .8rem;
    vertical-align: middle;
}

.custom_footer_contact_num {}

.custom_footer_contact_num a {
    color: #2b3990;
    text-decoration: none;
}

.custom-footer-contact a {
    display: inline-block;
    line-height: 1em;
    text-align: center;
    text-shadow: none;
    background: #fff;
    border: 1px solid #2b3990;
    font-family: adelle-sans,sans-serif;
    border-width: 2px;
    color: #2b3990;
    transition: all .2s ease-in-out 0s;
    font-size: 1.8rem;
    width: auto;
    margin-bottom: 4.5rem;
    font-weight: 400;
    padding-top: 1.8rem;
    padding-right: 6.2rem;
    padding-bottom: 1.8rem;
    padding-left: 6.2rem;
    background-clip: border-box;
    border-radius: 26rem;
}




.social-nav__link.-instagram::before {
    content: '\e904';
}

.social-nav__link.-twitter::before {
    content: '\e90d';
}

.social-nav__link.-youtube::before {
    content: '\e90e';
}

.social-nav__link.-linkedin::before {
    content: '\e907';
}

.social-nav.-footer .social-nav__link::before {
    padding-right: 2rem;
}

ul.social-nav.custom-footer-social-icon .social-nav__item a {
    padding-right: 2rem;
}



.custom-footer-navigation .hs-menu-wrapper > ul {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    max-width: 100%;
    margin-bottom: 4.1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.custom-footer-navigation .hs-menu-wrapper > ul > li {
    -webkit-flex-basis: 18%;
    -ms-flex-preferred-size: 18%;
    flex-basis: 18%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 4.1rem;
    margin-left: 0;
}

.custom-footer-navigation .hs-menu-wrapper > ul  li > a {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #5a5a5b;
    text-transform: capitalize;
    transition: color .2s ease-in-out 0s;
}

.custom-footer-navigation .hs-menu-wrapper > ul li > a:hover {
    text-decoration: none;
    color: #adadad;
}


.custom-footer-contact a:hover {
    text-decoration: none;
    background-color: #2b3990;
    color: #fff;
}



.custom-footer-logo a {
    width: 23.8rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8.7rem;
}

.custom-footer-logo a img {
    width: 100% !important;
}


.custom_footer_legal {
    line-height: 17px;
}



ul.social-nav.custom-footer-social-icon {
    margin-top: 0;
}

.custom-footer-navigation .hs-menu-wrapper>ul li>a {
    line-height: 25.5px;
}
.custom-footer-navigation .hs-menu-wrapper>ul > li>a {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: capitalize;
    color: #2b3990;
    text-decoration: none;
    color: #2b3990;
    text-decoration: none;
    line-height: 30.005px;
}





.custom_footer_contact_num a:hover {
    color: rgba(43,57,144,.5);
}


@media (max-width: 998px){

.custom_footer_legal {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #adadad;
}

.custom-copyright {
    font-size: 15px;
}

.custom-privacy-menu .hs-menu-wrapper>ul>li {
    display: block;
}

.custom-privacy-menu .hs-menu-wrapper>ul {
    display: block;
}

.custom-privacy-menu .hs-menu-wrapper>ul>li>a {
    font-size: 15px;
    line-height: 17px;
}

.custom_footer_contact {
    display: block;
    max-width: 28.6rem;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    border: 0;
    padding: 0;
    text-align: center;
}

.custom-footer-contact a {
    width: 100%;
}

.custom-footer-navigation {
    margin: 0 auto;
    max-width: 55rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    max-width: 67.2rem;
    margin-bottom: 4.5rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul > li {
    -webkit-flex-basis: 33.33%;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    margin-bottom: 7.9rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul li>a {
    font-size: 15px;
    font-weight:400;
    line-height:25.5px;
}
  
  .custom-privacy-menu .hs-menu-wrapper>ul>li {
    line-height: 17px;
    display: block;
}

.footer .page-center {
    margin-bottom: 0;
}

.custom-privacy-menu .hs-menu-wrapper>ul>li>a {
}

.custom-footer-contact a {
    margin-bottom: 3.8rem;
    font-size: 1.9rem;
}

.custom_footer_contact_num {
    display: block;
    font-size: 2rem;
    letter-spacing: .089rem;
    margin-bottom: 5.1rem;
}

.social-nav__link::before {
    font-size: 2.6rem;
}

ul.social-nav.custom-footer-social-icon {
    margin-bottom: 5.1rem;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    /* margin-bottom: 5.1rem; */
    width: 100%;
}

ul.social-nav.custom-footer-social-icon .social-nav__item {
    margin-bottom: 1rem;
}

ul.social-nav.custom-footer-social-icon .social-nav__item {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    /* margin-bottom: 5.1rem; */
    width: auto;
    line-height: 30.005px;
}

ul.social-nav.custom-footer-social-icon .social-nav__item a {
    padding-right: 0;
}
  
  
  .custom-privacy-menu .hs-menu-wrapper>ul>li a {
    display: list-item;
}
  
}




@media (max-width: 743px){
footer.footer {
    margin-bottom: 3.7rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 40.5rem;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.custom-footer-navigation .hs-menu-wrapper>ul>li {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-bottom: 0;
    margin-bottom: 5rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul li>a {
    font-size: 1.7rem;
    line-height: 25.5px;
    margin-bottom: 1.6rem;
}
}



@media (max-width: 454px){
.custom_footer_contact {
    max-width: 28rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: none;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    margin-bottom: 3rem;
}

.custom-footer-navigation .hs-menu-wrapper>ul li>a {
    color: #5a5a5b;
    text-transform: capitalize;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
}

.custom-footer-logo a {
    display: block;
    margin: 0;
    margin-bottom: 5.1rem;
    width: 23.8rem;
}
  
}
/* ******************************************************************************
*********************************************************************************
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 */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}



.custom-post-by-topic h3 {
  display: none;
}

ul.l_tinynav1 {
  display: none;
}

.custom-post-by-month h3 {
  display: none;
}

ul.l_tinynav2 {
  image-rendering: n;
}

ul.l_tinynav2 {
  display: none;
}

.custom-post-filter-group {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  max-width: 83rem;
  padding-top: 2rem;
}


.news-filter__select {
  margin-left: 2rem;
  position: relative;
}

.news-filter__select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #5a5a5b;
  height: 4rem;
  padding-top: 0;
  padding-right: 4.6rem;
  padding-bottom: 0;
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
  min-width: 14rem;
  max-width: 20rem;
  border: 1px solid #d6d6d6;
  min-height: 3rem;
  background: #fff;
  background-clip: border-box;
  border-radius: 3px;
  font-family: adelle-sans,sans-serif;
  font-size: 1.7rem;
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  letter-spacing: normal;
  font-size: 17px;
  font-weight:400;
}

.news-filter__select:after {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  bottom: auto;
  left: auto;
  content: ' ';
  height: 0;
  width: 0;
  border-left: .8rem solid transparent;
  border-right: .8rem solid transparent;
  border-top: .8rem solid #adadad;
  content: '';
  cursor: pointer;
  pointer-events: none;
}


.custom-blog-index {
  padding-top: 6.2rem;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90rem;
}

h1.custom_blog-header__title {
  font-size: 4.8rem;
  line-height: 1.05em;
  color: #2b3990;
  font-family: adelle-sans,sans-serif;
  font-weight: 500;
  margin-bottom: 2rem;
}

.news__group {
  margin-bottom: 3rem;
}

.news__flag {
  position: absolute;
  text-align: center;
  background: #2b3990;
  display: block;
  font-size: 1.4rem;
  height: 3.4rem;
  padding-top: .8rem;
  color: #fff;
  width: 8.2rem;
}

.news__featured .news__image {
  margin-right: 3rem;
  width: 39.9rem;
  float: left;
  margin-bottom: 0;
  vertical-align: middle;
}

.news__text-category {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}

.news__text-category a {
  color: #2b3990;
  text-decoration: none;
}

.news__text-category a:hover {
  color: rgba(43,57,144,.5);
}

.news__featured .news__text-title {
  font-size: 3rem;
  margin-bottom: .8rem;
  line-height: 3rem;
  color: #313132;
}

.news__featured .news__text-title a {
  color: inherit;
  text-decoration: none;
  color: #313132;
}

.news__featured .news__text-title a:hover {
  color: #2b3990;
}

.news__text-summary {
  font-size: 1.7rem;
  line-height: 3rem;
  margin-top: .4rem;
  color: #313132;
  font-weight: 400;
  margin-bottom: 2rem;
}

.news__group {
  overflow: auto;
}

.news__image {
  width: 25.6rem;
  float: left;
  margin-right: 3rem;
  margin-bottom: 0;
}


.news__text-title {
  line-height: 3rem;
  color: #313132;
  font-size: 2.4rem;
  line-height: 3rem;
}

.news__text-title a {
  color: #313132;
  text-decoration: none;
}

.news__text-title a:hover {
  color: #2b3990;
}





.custom-blog-pagination {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 35rem;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.custom-blog-pagination ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  /* margin-left: auto; */
  /* margin-right: auto; */
  list-style: none;
  padding: 0;
}

.custom-blog-pagination ul li a {
  text-align: center;
  color: #5a5a5b;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: .5rem;
  height: 4.1rem;
  background-clip: border-box;
  border-radius: 2.05rem;
  width: 4.1rem;
  display: block;
  font-family: adelle-sans, sans-serif;
  font-size:17px;
  font-weight:400;
  line-height:30.005px;
}

.custom-blog-pagination ul li a.active {
  border: .2rem solid #2b3990;
  color: #2b3990;
  margin-left: .5rem;
  margin-right: .5rem;
  padding-top: .3rem;
  font-family: adelle-sans, sans-serif;
  font-size:17px;
  font-weight:400;
  line-height:30.005px;
}

.custom-blog-pagination a.next-link {
  text-align: center;
  color: #5a5a5b;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: .5rem;
  height: 4.1rem;
  background-clip: border-box;
  border-radius: 2.05rem;
  width: 4.1rem;
  display: block;
}

.custom-blog-pagination a.next-link:hover {
  color: rgba(43,57,144,.5);
  outline: none;
}






.custom-detail {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.detail__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 89.6rem;
  width: 100%;
}

.detail__wrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 74.4rem;
  padding-left: 0;
  padding-right: 0;
}

.detail__socials {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  list-style: none;
  margin-top: 3rem;
  margin-bottom: 4.2rem;
  line-height: 1.765em;
  padding: 0;
}

li.detail__socials-item {
  margin-bottom: 1rem;
}

.detail__socials-link {
  margin-right: 1.2rem;
}

.detail__socials-link::after{
  background: #efefef;
  color: #2b3990;
  padding: 1.2rem;
  background-clip: border-box;
  border-radius: 50%;
}

.detail__socials-link.-facebook:after {
  background: #3a5a97;
  font-variant: normal;
  speak: none;
  content: '\e903';
  font-family: icomoon;
  font-size: inherit;
  font-weight: 400;
  line-height: 0;
  font-style: normal;
  display: inline-block;
  line-height: 1em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #fff;
  padding: 1.2rem;
}

.detail__socials-link.-twitter:after {
  background: #16a2f4;
  font-variant: normal;
  speak: none;
  content: '\e90d';
  font-family: icomoon;
  font-size: inherit;
  font-weight: 400;
  line-height: 0;
  font-style: normal;
  display: inline-block;
  line-height: 1em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #fff;
}

.detail__socials-link.-email:after {
  font-variant: normal;
  speak: none;
  content: '\e90f';
  font-family: icomoon;
  font-size: inherit;
  font-weight: 400;
  line-height: 0;
  font-style: normal;
  display: inline-block;
  line-height: 1em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.detail__socials-link:hover {
  color: rgba(43,57,144,.5);
}

.detail__socials-link:hover::after {
  background: #d6d6d6;
}

.detail__info {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: 0;
  padding: 0;
}

.detail__info-item {
  color: #838384;
  margin-right: 1.6rem;
  margin-bottom: 1rem;
}

.detail__info-item a {
  color: #2b3990;
  text-decoration: none;
}

.detail__info-half {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.detail__info-item {
  color: #838384;
  margin-right: 1.6rem;
  margin-bottom: 1rem;
}

.detail__title {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 4.8rem;
  line-height: 1.05em;
  color: #2b3990;
  font-family: adelle-sans,sans-serif;
  font-weight: 500;
}

.block-page-content {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.page-content__wrapper {
  max-width: 74.4rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.block-rich {
  margin-bottom: 5rem;
  color: #313132;
  font-weight: 400;
  line-height: 1.765em;
  margin-bottom: 2rem;
}

.detail__news {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
}

.detail__news-headline {
  border-bottom: #e0e0e0 solid 1px;
  color: #2b3990;
  font-size: 1.3rem;
  margin-top: 8rem;
  padding-bottom: .7rem;
  text-transform: uppercase;
}

.detail__news-group {
  margin-bottom: 3rem;
  overflow: hidden;
}

.detail__news-photo {
  float: left;
  margin-right: 2rem;
  margin-bottom: 0;
  width: 20rem;
}

.detail__news-info {
  overflow: auto;
}

.detail__news-category {
  color: #2b3990;
  font-size: 1.5rem;
}

.detail__news-date {
  font-size: 1.5rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  color: #313132;
  font-weight: 400;
  line-height: 1.765em;
}

.detail__news-title {
  font-size: 2.4rem;
  line-height: 1.2em;
  margin-bottom: .5rem;
  color: #313132;
  font-weight: 400;
}

.detail__news-summary {
  margin-bottom: 0;
  color: #313132;
  font-weight: 400;
  line-height: 1.765em;
}

.detail__news-info a {
  text-decoration: none;
}


.blog-sidebar.span3 {
  padding: 3.3rem 0;
}

.post-item .page-center .span8 {
  padding-left: 15px;
}
.news-filter__select select:focus {
  border-color: #adadad;
  outline: none;
}

.news__flag {
  width: auto;
  padding: 0 5px;
  padding-top: .8rem;
}



@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: adelle-sans,sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: adelle-sans,sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: adelle-sans,sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #F8FAFC;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .hs-button {
}
.blog-comments .hs-button:hover {

}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

.custom_listing_comments {
  border: 1px solid #e2e2e2;
  display: block;
  line-height: 165%;
  padding: 15px;
}

#comments-listing {
  border: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}
#comments-listing.no-comments {
  border: none;
}
.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;
}
.comment-date {
  display: block !important;
  text-align: left;
}
.section.post-body p img {
  width: 100% !important;
  margin: 10px 0 !important;
}

.replying {
  padding: 0 15px !important;
}


.custom-blog-pagination a.prev-link:hover {
    text-decoration: none;
}

.custom-blog-pagination a.prev-link {
    text-align: center;
    color: #5a5a5b;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: .5rem;
    height: 4.1rem;
    background-clip: border-box;
    border-radius: 2.05rem;
  
    display: block;
}

.custom-blog-pagination ul li a:hover {
    text-decoration: none;
    color: rgba(43,57,144,.5);
}

.custom-blog-pagination a.next-link:hover {
    text-decoration: none;
}





/*             Blog Listing with Sidebar            */
.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

@media (max-width: 998px){
  .custom-post-filter-group {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: none;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 83rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  .custom-blog-index {
    margin: 0;
    padding: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  .news__featured .news__text-title {
    color: #313132;
    font-size: 2.4rem;
  }

  .news__image {}

  .news__featured .news__image {
    float: left;
    margin-right: 3rem;
    margin-bottom: 0;
    width: 25.6rem;
  }
} 



@media (max-width: 998px){
  .detail__wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 65.1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .block-page-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .page-content__wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 65.1rem;
  }

}


@media (max-width: 743px){

  .post-item .page-center {
    flex-wrap: wrap;
  }

  h1.custom_blog-header__title {
    font-size: 3.6rem;
    color: #2b3990;
    font-family: adelle-sans,sans-serif;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 2rem;
  }

  .post-item .page-center .span4, .post-item .page-center .span8 {
    padding: 0;
    width: 100%;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    margin:0 0 15px;
  }


  .custom-post-filter-group {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: none;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    padding-top: 2rem;
    padding-right: 6%;
    padding-left: 6%;
    margin-bottom: 0;
  }

  .news-filter__select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #5a5a5b;
    height: 4rem;
    padding-top: 0;
    padding-right: 4.6rem;
    padding-bottom: 0;
    padding-left: 1.6rem;
    margin-bottom: 1.6rem;
    width: 100%;
    max-width: 100%;
  }

  .custom-post-filter-group {}

  .news-filter__select {
    margin: 0;
  }

  .news__featured .news__image {
    margin: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .news__image {
    width: 100%;
    margin: 0;
    margin-bottom: 1.5rem;
  }

  .detail__wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 65.1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .block-page-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .page-content__wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 65.1rem;
  }

  .block-rich {
    /* padding-left: 6%; */
    /* padding-right: 6%; */
    margin-bottom: 5rem;
  }

  .detail__title {
    font-size: 3.6rem;
    color: #2b3990;
    font-family: adelle-sans,sans-serif;
    font-weight: 500;
    line-height: 1.1em;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .block-page-content {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0;
  }

  .page-content__wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90rem;
  }

  .block-rich {
    padding-left: 6%;
    padding-right: 6%;
    margin-bottom: 5rem;
  }

  .detail__wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: none;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    padding-left: 6%;
    padding-right: 6%;
    max-width: 100%;
  }

  .detail__news-photo {
    width: 100%;
    margin: 0;
    margin-bottom: 1.2rem;
    float: none;
  }

.detail__info {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-align-content: stretch;
    align-content: stretch;
    list-style: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    margin-left: 0;
}
  


}

@media (max-width: 479px){
.block-rich img {
    float: none !important;
    max-width: 100%;
    margin: 0 0 20px !important;
}
}
/* ******************************************************************************
*********************************************************************************
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: adelle-sans,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;
}

[type="checkbox"], [type="radio"] {
    width: auto;
    vertical-align: middle;
}

input#hs-pwd-widget-password {
    height: auto !important;
}

ul.no-list.hs-error-msgs {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

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

.systems-page .hs-input {
    margin: 10px 0;
}


.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size:14px;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: adelle-sans,sans-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;
}