/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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 {}
/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * 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
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * 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
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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;
}
/* 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 */
  margin: 0; /* 2 */
}
/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}
/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
  padding: 0;
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * 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 and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/


/* CSS variables */
:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}
/* Mobile layout */
.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}
/* Desktop layout */
@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper{margin:0 auto;padding:0 1rem}@media screen and (min-width:1380px){.content-wrapper{padding:0}}.dnd-section>.row-fluid{margin:0 auto}@media (max-width:767px){.dnd-section .dnd-column{padding:0}}.slick-slider{outline:0}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
@font-face {
  font-family: 'Satoshi';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Light.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Light.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Light.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Regular.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Regular.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Regular.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Medium.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Medium.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Medium.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi-MediumItalic';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-MediumItalic.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-MediumItalic.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-MediumItalic.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-MediumItalic.ttf) format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Bold.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Bold.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Bold.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi-BoldItalic';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BoldItalic.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BoldItalic.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BoldItalic.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BoldItalic.ttf) format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Black.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Black.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Black.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-Black.ttf) format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi-BlackItalic';
  src: url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BlackItalic.eot) format('eot'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BlackItalic.woff2) format('woff2'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BlackItalic.woff) format('woff'),
    url(https://7692624.fs1.hubspotusercontent-na1.net/hubfs/7692624/raw_assets/public/Oxford_Theme_2025/fonts/Satoshi-BlackItalic.ttf) format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
html{
  scroll-behavior: smooth;
}
body {
  line-height: 1.33333333333;
  transition: background-color 1s ease;
}
/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
/* Paragraphs */

p {
  margin: 0 0 15px;
}
/* Anchors */
a {
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: underline;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}
h1, .h1 {
  line-height: 1.17307692308;
  letter-spacing: -0.52px;
}
h2, .h2 {
  line-height: 1.22222222222;
}
h3, .h3 {
  line-height: 1.13333333333;
  line-height: 1.46666666667;
}
h4, .h4 {
  line-height: 1.4;
}
h5 {
  line-height: 1.3;
}
h6 {
  line-height: 1.71;
  letter-spacing: 3.6px;
}
/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}
ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* Code blocks */
pre {
  overflow: auto;
}
code {
  vertical-align: bottom;
}
/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}
/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}
/* Image alt text */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}
button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}
/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Form */
.contact-banner-wrp .hbspt-form,
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_blog_subscribe, 
.hs_cos_wrapper_type_google_search, 
.hs_cos_wrapper_type_email_simple_subscription, 
.hs_cos_wrapper_type_password_prompt, 
.hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
.hs_cos_wrapper_type_member_login, 
.hs_cos_wrapper_type_member_register, 
.hs_cos_wrapper_type_password_reset_request, 
.hs_cos_wrapper_type_password_reset{
  width: 100%;
  margin-bottom: 25px;
}
@media(max-width: 767px) {
  .contact-banner-wrp .hbspt-form,
  .hs_cos_wrapper_type_form, 
  .hs_cos_wrapper_type_blog_subscribe, 
  .hs_cos_wrapper_type_google_search, 
  .hs_cos_wrapper_type_email_simple_subscription, 
  .hs_cos_wrapper_type_password_prompt, 
  .hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
  .hs_cos_wrapper_type_member_login, 
  .hs_cos_wrapper_type_member_register, 
  .hs_cos_wrapper_type_password_reset_request, 
  .hs_cos_wrapper_type_password_reset{
    padding: 27px 24px 25px;
  }
}
form select {
  background-image: url(https://8192336.fs1.hubspotusercontent-na1.net/hubfs/8192336/Rhea_and_Kaiser_September2024/images/arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 8px;
  background-position: 95% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
h3.form-title:empty {
  display: none;
}
form {
  max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field:first-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 {
  display: flex;
  column-gap: 24px;
}
form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
  width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
  vertical-align: middle;
}
@media(max-width: 767px) {
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:479px) {
  form fieldset.form-columns-2 .hs-form-field:first-child .input,
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0 !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}
/* Form fields */
.hs-form-field {
  margin-bottom: 30px;
}
@media(max-width:991px) {
  .hs-form-field {
    margin-bottom: 24px;
  } 
}
/* Labels */
.hs-form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}
.hs-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 6px;
}
.hs-form-field > label {
  margin-bottom: 6px;
}
.inputs-list.hs-error-msgs label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: .5rem;
  color: #ef6b51;
}
.hs-error-msgs label {
  color: #ef6b51;
}
/* Help text - legends */
form legend {
  font-size: 0.875rem;
}
/* Inputs */
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  min-height: 61px;
  padding: 0 15px;
  width: 100%;
  font-size: 16px;
  line-height: 1.375;
  box-sizing: border-box;
  outline: none;
}
textarea.hs-input {
  height: auto;
}
.hs-input:focus {
  outline: none;
}
form fieldset {
  max-width: 100% !important;
}
/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}
form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto;
}
textarea.hs-input {
  min-height: 138px;
  padding: 15px;
}
/* Inputs - datepicker */
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.fn-date-picker .pika-table thead th {
  color: #FFF;
}
.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}
.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}
/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}
/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}
form .hs-richtext img {
  max-width: 100% !important;
}
/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
/* Validation */
.hs-form-required {
  color: red;
  margin-left: 4px;
}
.hs-input.invalid.error {
  border-color: #ff2a00;
}
.hs-error-msg {
  color: #ff2a00;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: #EF6B51;
}


.hs-button {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}
.hs-button:hover {
/*   font-weight: 900; */
}
/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
#hs-search-module .hs-input {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}

.oxformForm .hs-form-field > label {
    margin-bottom: 6px;
    color: #731932;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.oxformForm form input[type=text],
.oxformForm form input[type=email],
.oxformForm form input[type=password],
.oxformForm form input[type=tel],
.oxformForm form input[type=number],
.oxformForm form input[type=file],
.oxformForm form select,
.oxformForm form textarea {
    background-color: unset;
    border-color: unset;
    color: unset;
    border-radius: 0px;
    border-width: 0px;
    border-style: solid;
    font-size: 1em;
    border: 1px solid rgba(0, 0, 0, .25);
    padding: 0.15em 0.1em 0.15em 0.2em;
    margin: 3px 0;
    min-height: 0;
}
table{border-collapse:collapse;margin-bottom:1.4rem;overflow-wrap:break-word}td,th{vertical-align:top}thead th{vertical-align:bottom}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.close-icon-wrp .close:after,
.close-icon-wrp .close:before {
    height: 3.5px;
    width: 44px;
    background-color: #000;
    transition: 0.3s;
}
.custom-header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 12px #1e252b1a;
}
.custom-header.lp-header {
    padding: 15px 0 14px;
}
.header__container {
    margin: 0 auto;
    width: 100%;
}

.header-bottom-in {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.custom-header.lp-header .header-bottom-in {
    justify-content: center;
}
.custom-menu-wrap {
    display: flex;
    padding-left: 0;
    width: 100%;
    justify-content: flex-start;
}
.custom-menu-primary.desktop {
    width: 100%;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.close-icon-wrp,
.mobile-trigger {
    align-items: center;
    cursor: pointer;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    position: relative;
    padding: 0 24px 0 8px;
    height: 100%;
    max-height: 85px;
    line-height: 65px;
    padding: 10px 20px;
}
/* .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(.hs-item-has-children) {
    padding: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child {
    padding-left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:last-child {
    padding-right: 0;
} */
/* .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:after {
    bottom: -17px;
    content: "";
    height: 27px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 100%;
} */
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    display: inline-block;
    padding: 25px 16px;
    position: relative;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
    padding: 25px 18px;
}
.custom-menu-primary.desktop .hs-menu-wrapper>ul>li:hover {
    background: #11391f;
}
/* .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:before {
    position: absolute;
    top: 50%;
    margin-top: 10px;
    height: 1px;
    width: 0%;
    z-index: 3;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    left: 16px;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li > a:before {
    content: "";
    height: 1px;
    margin-top: 10px;
    position: absolute;
    top: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 0;
    z-index: 3;
    left: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active-branch > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.active > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > a:before {
    left: 16px;
    width: calc(100% - 32px);
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li.active > a:before,
.custom-menu-primary.desktop .hs-menu-wrapper > ul ul > li:hover > a:before {
    left: 0;
    width: calc(100% - 18px);
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li > a:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 0 5px 5px;
    height: 0;
    border-color: transparent transparent #1e252b;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: 0.4s ease-in-out;
    margin-left: 8px;
    position: absolute;
    right: 0;
    bottom: 30px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li:not(.hs-item-has-children) > a:after {
    border-bottom-color: transparent;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li.active-branch > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul li.active > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul li:hover > a:after,
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover > a:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: right;
} */
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    min-width: 100%;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
    top: 100%;
    transform: translateY(-12px);
    z-index: 2;
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 0px);
    transform: translateY(0);
}
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children > ul li:not(:last-child) {
    margin-bottom: 0;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
    text-decoration: none;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li > a:after {
    border-color: transparent;
    bottom: 4px;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover > a:after {
    border-color: transparent transparent #ebb23c;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li a {
    display: inline-block;
    padding-right: 18px;
  padding: 10px 20px;
    position: relative;
      width: 100%;
    height: 100%;
    display: block;
}
.custom-menu-primary.desktop .hs-menu-wrapper ul ul li:hover a {
  background-color: #731932;
}
.mobile-trigger {
    height: 48px;
    position: relative;
    transition-duration: 0.5s;
    width: 48px;
    display: flex;
    justify-content: center;
}
.mobile-trigger .icon {
    position: relative;
    cursor: pointer;
    display: inline-block;
    height: 38px;
    width: 42px;
}
.mobile-trigger span {
    background-color: #333;
    position: absolute;
    transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.mobile-trigger span:first-child {
    width: 100%;
    height: 5px;
    display: block;
    top: 0;
    left: 0;
}
.mobile-trigger span:nth-child(2) {
    width: 100%;
    height: 5px;
    display: block;
    left: 0;
    top: 16px;
}
.mobile-trigger span:nth-child(3) {
    bottom: 0;
    display: block;
    height: 5px;
    left: 0;
    width: 100%;
    border-left: 5px solid #ebb23c;
}
.mobile-trigger span:nth-child(3):before {
    border-left: 4px solid #fff;
    content: "";
    display: inline-block;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 8px;
}
.mobile-trigger:hover span:nth-child(3) {
    border-left: 31px solid #ebb23c;
}
.close-icon-wrp:hover .close:after,
.close-icon-wrp:hover .close:before,
.mobile-trigger:hover span {
    background-color: #ebb23c;
}
.close-icon-wrp {
    position: absolute;
    top: 12px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #fff;
    padding: 7px;
    display: flex;
    justify-content: center;
    transition: 0.5s;
}
.actions .menu-icon .vertical,
.close-icon-wrp:hover,
.hs-button .vertical {
    transform: rotate(90deg);
}
.close-icon-wrp .close {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-icon-wrp .close:before {
    content: "";
    position: absolute;
    transform: rotate(-45deg);
}
.close-icon-wrp .close:after {
    content: "";
    position: absolute;
    transform: rotate(45deg);
}
.close-icon-wrp span.sq {
    width: 8px;
    height: 8px;
    position: absolute;
    z-index: 2;
    border: 6px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.close-icon-wrp span.sq:before {
    position: absolute;
    content: "";
    width: 4.5px;
    height: 4.5px;
    background-color: #1a7138;
    transition: 0.3s;
}
.close-icon-wrp:hover span.sq:before {
    background-color: #000;
}
.actions .menu-icon,
.hs-button .menu-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.actions .menu-icon .bar,
.hs-button .bar {
    position: absolute;
    width: 20px;
    height: 2px;
    transition: 0.4s ease-in-out;
}
.actions .menu-icon .horizontal,
.hs-button .horizontal {
    transform: rotate(0);
}
.actions:hover .menu-icon .horizontal,
.hs-button:hover .horizontal {
    transform: rotate(45deg);
    transform-origin: right;
    width: 14px;
}
.actions:hover .menu-icon .vertical,
.hs-button:hover .vertical {
    transform: rotate(-45deg);
    transform-origin: right;
    width: 14px;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
    overflow: hidden;
    overflow-x: auto;
}
/* body.no-banner {
    margin-top: 72px;
} */
.body-wrapper:not(.hs-blog-post),
.overflow-hidden,
body.mobile-open {
    overflow: hidden;
}
.hs-cta-embed a {
    display: inline-block;
}
@media (min-width: 992px) and (min-width: 768px) {
    .custom-menu-mobile,
    .mobile-trigger {
        display: none;
    }
}
@media (min-width: 992px) {
    .bg-overlay {
        display: none;
    }
}
@media (max-width: 991px) {
    .custom-header.lp-header {
        padding: 3px 0 2px;
    }
    .custom-header {
      top: 0;
    }
    .custom-menu-wrap {
        display: none;
    }
    .header-bottom {
        padding: 12px 0;
    }
    .mobile-menu-header {
        padding: 14px 24px 14px 32px;
        background-color: #1a7138;
        position: relative;
    }
    .bg-overlay,
    .custom-menu-mobile {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
    .bg-overlay {
        left: 0;
        background-color: #59595b;
        opacity: 0.75;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
        transition: 0.3s;
    }
    body.mobile-open .bg-overlay {
        visibility: visible;
        pointer-events: auto;
    }
    .custom-menu-mobile {
        overflow: hidden;
        background-color: #fff;
        overflow-y: auto;
        transform: translateX(100%);
        max-width: 472px;
        z-index: 9999;
        transition: 0.5s;
    }
    .mobile-open .custom-menu-mobile {
        transform: translateX(0);
    }
    .custom-menu-primary.mobile {
        padding: 40px 32px 89px;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul {
        display: block;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
        margin-bottom: 32px;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:last-child {
        margin-bottom: 0;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
        display: inline-block;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.41666666667;
        padding-bottom: 16px;
        text-decoration: none;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li > a {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.375;
        padding-bottom: 16px;
        text-decoration: none;
    }
    .custom-menu-primary.mobile .hs-menu-wrapper ul ul > li:last-child > a,
    .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.hs-item-has-children) > a {
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .header__container {
        padding: 0 20px;
    }
}
.footer{padding:60px 0 56px}.footer .row{display:flex;margin-left:-24px;margin-right:-24px}.footer-logo{padding:0 24px;width:58%}.copyright-col{padding:0 24px;font-weight:400;text-align:right;width:42%}.footer-info{margin-bottom:40px}.footer-info p{margin-bottom:12px}.footer-info p:last-child{margin-bottom:0}.hr-line{height:4px;margin-bottom:56px;width:100%;margin-top:56px}.footer-menu .hs-menu-wrapper>ul{column-gap:40px;display:flex;flex-direction:row;justify-content:space-between}.footer-menu .hs-menu-wrapper>ul>li{width:25%}.footer-menu .hs-menu-wrapper ul ul li:not(:last-child){margin-bottom:16px}.footer-menu .hs-menu-wrapper ul ul li a{font-size:20px;font-weight:500;line-height:1.35;display:inline-block;text-decoration:none}.footer-menu .hs-menu-wrapper ul li a:hover{text-decoration:none}.footer-soc{margin-bottom:62px}.footer-soc .footer-social{margin-top:0!important}.footer-soc ul{column-gap:32px!important;justify-content:flex-end!important}.copyright-wrp{display:flex;flex-wrap:wrap;column-gap:6px;justify-content:flex-end;row-gap:15px}.copyright-wrp.mobile{display:none}.lp-footer .footer-soc{height:32px}@media(min-width:992px){.copyright.mobile{display:none}}@media (max-width:991px) and (min-width:768px){.footer-menu .hs-menu-wrapper ul ul li a{font-size:16px;line-height:22px}}@media (max-width:991px){.footer{padding:57px 0 56px}.footer-info{display:none}.footer-soc{margin-bottom:39px}.copyright-col,.footer-logo{width:50%}.footer-logo img{width:376px!important}.copyright .hs_cos_wrapper{display:flex;flex-wrap:wrap;flex-direction:column}}@media(max-width:767px){.footer{padding:56px 0}.footer-logo img{width:166px!important}.copyright{text-align:right}.footer-menu .hs-menu-wrapper>ul{flex-wrap:wrap;column-gap:20px;row-gap:56px}.footer-menu .hs-menu-wrapper>ul>li{width:calc(50% - 20px)}.footer-logo{padding-right:20px}.copyright-col{padding-left:20px}.copyright-wrp,.lp-footer .footer-soc{display:none}.copyright-wrp.mobile{display:block;margin-top:56px;text-align:right}.footer-soc{margin-bottom:0}.footer .footer-bottom{overflow:hidden}.lp-footer .copyright-wrp.mobile{margin-top:16px}}@media(max-width:350px){.footer .row{flex-wrap:wrap;row-gap:30px}.copyright-col,.footer-logo{width:100%;text-align:center}.footer-soc ul{justify-content:center!important}.copyright,.copyright-wrp.mobile{text-align:center}.footer-menu .hs-menu-wrapper>ul>li{width:100%}}
/* Menu and simple menu */
.hs-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}
.dnd-section[class*="full-width-section"]>.row-fluid {
  padding-left: 0;
  padding-right: 0;
}
.banner-section .dnd-section {
  padding: 0;
}
/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}