/* Theme base styles */

/* Theme variable settings
This is where the theme settings are pulled into css variables to be used across the rest of the theme css
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap');







:root {
  /* Theme Variable Styles */
  --body: #999999;
  --body1: #666666;
  --body2: #8A8A8A;
  --primary: #961914;
  --secondary: #FF9902;
  --tertiary: #0AC762;
  --quaternary: #313131;
  --white: #fff;
  --black: #000;
  --bold: 600;
  --medium: 500;
  --regular: 400;
  --light: 300;
  --header-bg-color:rgba(255, 255, 255, 0%);
  --header-link-color:#ffffff;
  --footer-bg-color:;
  --footer-text-color:;
  --error-text-color: #FF0201;
  --h1-color: var(--quaternary);
  --h2-color: var(--quaternary);
  --h3-color: var(--quaternary);
  --h4-color: var(--quaternary);
  --h5-color: var(--quaternary);
  --h6-color: var(--quaternary);
  --h1-weight: 900;
  --h2-weight: 800;
  --h3-weight: 800;
  --h4-weight: 800;
  --h5-weight: 800;
  --h6-weight: 800;
  --body-size: 1.0rem;
  --h1-size: 4.0rem;
  --h1-mobile-size: 2.5rem;
  --h2-size: 3.0rem;
  --h2-mobile-size: 2.0rem;
  --h3-size: 2.25rem;
  --h3-mobile-size: 2.0rem;
  --h4-size: 2.0rem;
  --h4-mobile-size: 2.0rem;
  --h5-size: 1.5rem;
  --h5-mobile-size: 1.5rem;
  --h6-size: 1.125rem;
  --h6-mobile-size: 1.125rem;
  --label-color: #222222;
  --help-color: #FF0201;
  --form-background-color: #F4F7F9;
  --form-border-color: #E6ECEF;
  --container: 1306px;
  --container-small: 1112px;
}

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

/* 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 */
  line-height: 1.15; /* 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));
    }
  
}


/* Padding overwrites */
.baseModuleStyle:not(.home-banner-container,.footer-top,.overlap-above,.is-hero){
  margin-top: 32px !important;
  margin-bottom: 32px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.baseModuleStyle.site-inner-hero-banner-wrap,
.baseModuleStyle.two-col-hero-inner,
.baseModuleStyle.blog-hero-sections{
  padding-top: 128px !important;
}


@media(max-width: 992px){
  .baseModuleStyle.site-inner-hero-banner-wrap,
  .baseModuleStyle.two-col-hero-inner{
    padding-top: 64px !important;
  }
}

.private-labeling-row-1-force-full-width-section{
  max-width: var(--container-small);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 1340px){
.private-labeling-row-1-force-full-width-section{
    max-width: var(--container);
}
}

body #hubspot-messages-iframe-container {
  z-index: 10000 !important;
}
.container,.container-small {
  max-width: var(--container-small);
  margin: 0 auto;
  padding: 0 16px;
}
.left-container {
  padding-left: calc(50% - (var(--container-small) - 32px) / 2);
  max-width: 100%;
  padding-right:0;
  margin: 0;
}
.right-container {
  padding-right: calc(50% - (var(--container-small) - 32px) / 2);
  max-width: 100%;
  padding-left:0;
  margin: 0;
}




@media screen and (min-width:1340px){
  .container {
    max-width: var(--container);
  }
  .left-container {
    padding-left: calc(50% - (var(--container) - 32px) / 2);
    max-width: 100%;
  }
  .right-container {
    padding-right: calc(50% - (var(--container) - 32px) / 2);
    max-width: 100%;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
@media screen and (max-width:1116px) and (min-width:992px){
  .left-container {
    padding-left:16px;
  }
  .right-container {
    padding-right:16px;
  }
}
@media screen and (max-width:991px){
  .left-container {
    padding-left:16px;
    padding-right:16px;
  }
  .right-container {
    padding-right:16px;
    padding-left:16px;
  }
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  line-height: 1.4;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
  font-size: var(--body-size);
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Custom Font Family */


/* Paragraphs */

p {
  font-size: var(--body-size);
  color: var(--body);
  line-height: 2;
  margin: 0 0 1.5rem;
}
.site-three-col-text p {
    line-height: 1.4;
}
p:last-child{
  margin:0;
}
/* Anchors */

a {
  color: var(--secondary);
  cursor: pointer;
  text-decoration: none;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--quaternary);
}

h1, .h1 { 
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.21;
  margin:0 0 32px;
  color:var(--h1-color);
}
h2, .h2 { 
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.21;
  margin:0 0 24px;
  color:var(--h2-color);
}

h3, .h3 { 
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: 1.21;
  margin:0 0 16px;
  color:var(--h3-color);
}

h4, .h4 { 
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: 1.21;
  margin:16px 0 16px;
  color:var(--h4-color);
}

h5, .h5 { 
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: 1.21;
  margin:0 0 8px;
  color:var(--h5-color);
}

h5 a{
    color:var(--h5-color);
}
h6, .h6 { 
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  line-height: 1.21;
  margin:0 0 8px;
  color:var(--h6-color);
}

@media screen and (max-width: 991px) {
  h1, .h1 { font-size: var(--h1-mobile-size);line-height: 54px; }
  h2, .h2 { font-size: var(--h2-mobile-size);margin-bottom:18px; }
  h3, .h3 { font-size: var(--h3-mobile-size); }
  h4, .h4 { font-size: var(--h4-mobile-size); }
  h5, .h5 { font-size: var(--h5-mobile-size); }
  h6, .h6 { font-size: var(--h6-mobile-size); }
}

/* Lists */

ul,
ol {
  color: var(--body);
  margin: 0 0 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}
.btn a{
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 16.94px;
  letter-spacing: 0px;
  background: var(--primary);
  border: 0;
  padding: 16px 32px;
  color:var(--white);
  text-align: center;
  text-decoration: none;
  /*   -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; */
  white-space: normal;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  
  border-radius:100px;
  
}
.main-header .btn a{
    padding: 12px 32px;
}

.main-header {
    transition: all ease 350ms; 
}

/* Primary Button Styles*/
.btn.btn--primary a{
  background: var(--primary);
}

.btn.btn--primary a:hover,
.btn.btn--primary a:focus,
.btn.btn--primary a:active{
  background: linear-gradient(141.76deg, #DC0032 -14.14%, var(--primary) 77.97%);
  text-decoration: none;
}

/* .btn.btn--primary:after {
content: '';
position: absolute;
left: 0;
top: 100%;
background: linear-gradient(141.76deg, #DC0032 -14.14%, var(--primary) 77.97%);
width: 100%;
height: 100%;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.btn.btn--primary:hover:after,
.btn.btn--primary:focus:after,
.btn.btn--primary:active:after{
top: 0%;
} */


/* Secondary Button Styles */

.btn.btn--secondary a{
  background: var(--secondary);
}

.btn.btn--secondary a:hover,
.btn.btn--secondary a:focus,
.btn.btn--secondary a:active{
  text-decoration: none;
  background: linear-gradient(151.58deg, #FFC702 -13.43%, var(--secondary) 82.44%);
}

/* Tertiary Button Styles */

.btn.btn--tertiary a{
  background: var(--tertiary);
}
.btn.btn--tertiary a:hover,
.btn.btn--tertiary a:focus,
.btn.btn--tertiary a:active{
  background: linear-gradient(326.84deg, var(--tertiary) 18.48%, #0AD72B 101.67%);
  text-decoration: none;
}


/* Quaternary Button Styles */

.btn--quaternary a {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid #ffffff;
  font-size: 16px;
  line-height: 19px;
  border-radius: 30px;
}
.btn--quaternary a:hover,
.btn--quaternary a:focus,
.btn--quaternary a:active{
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
}
/* Form fields */
 form .hs-form-field {position: relative;}
form ul.hs-error-msgs.inputs-list { position: absolute; top:82px; right: 0; list-style-type: none; padding: 1px 5px;background:#ff0000;margin:0; z-index: 1;}
 form ul.hs-error-msgs.inputs-list > li > label {color: #fff; font-weight: 500; position: relative; z-index: 9; font-size: 12px; line-height: 1; padding: 0; }
form ul.hs-error-msgs.inputs-list:after { content: ''; width: 8px; height: 8px; position: absolute; display: inline-block; left: 50%; background:#ff0000; margin-left: -6px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); margin-top: -4px; top: 0;}
.site-newsletter-row form ul.hs-error-msgs.inputs-list { top:89px;}
.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form .hs-form-field {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 12px 0;
}

.hs-form-field > label > span:first-child {
  color: var(--label-color);
}

/* Label Styles for Fields that can shift the label when filled */
.hs-form-field > label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 26px;
  color: var(--label-color);
  text-transform: capitalize;
}

.hs-form-field > label span:first-child {
  color: var(--label-color);
}




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 {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--form-background-color);
  border:1px solid var(--form-border-color);
  width: 100%!important;
  height: 48px;
  outline:0;
  color:var(--body);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding:10px 15px;
  font-family: 'Inter', sans-serif;
  
  border-radius: .5rem;
  
}



form select{
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(https://20377429.fs1.hubspotusercontent-na1.net/hubfs/20377429/HAC-2023/images/chevron-down-arrow.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  color:rgba(153, 153, 153, 1);
  border-radius:.5rem;
  line-height: 21px;
}
form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form textarea::placeholder{
  color:#333333;
}
form textarea,.hs-fieldtype-textarea.hs-input {
  height: 80px;
  padding: 6px 0;
  resize:none !important;
}

form fieldset {
  max-width: 100% !important;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--primary);
}
form input[type="radio"]:focus {
  border-color: var(--primary);
}
form fieldset.form-columns-2 > div {
  width: 100%!important;
}
form fieldset .input {
  margin-right: 0!important;
}

@media (min-width: 481px) {
  form .hs-form-field {
    margin: 0 0 31px;
  }

  form fieldset.form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}


/* Inputs - checkbox/radio */
form .hs-fieldtype-radio .hs-form-radio-display,
form .hs-fieldtype-checkbox .hs-form-checkbox-display {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 5px;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"],
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"] {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  margin: 4px 0 0;
  width: 16px !important;
  height: 16px !important;
  border-radius: 3px;
  border: 2px solid var(--form-border-color);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"] {
  border-radius: 50%;
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:hover,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:hover {
  background-color: var(--secondary);
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:checked,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked {
  background-color: var(--body);
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: var(--white);
  position: absolute;
  top: 1px;
  left: 2.6px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s;
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

form .hs-fieldtype-radio .hs-form-radio-display span,
form .hs-fieldtype-checkbox .hs-form-checkbox-display span {
  font-size: 1rem;
}

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 16px 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.hs_error_rollup {
  display: none;
}
.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;
  border: initial;
  padding: initial;
  color:transparent !important;
}

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

.hs-input.invalid.error {
  border-color: var(--help-color);
}

form .inputs-list.hs-error-msgs > li {
  margin: 0;
}

.hs-error-msg {
  color: var(--help-color);
  margin-top: 0.35rem;
}

/* Submit button */
form .hs-submit {
  margin-top: 0;
}

form input[type=submit],
form .hs-button {
  font-family: 'Rubik', sans-serif;
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0px;
  background: var(--secondary);
  border: 0;
  padding: 18px 42px;
  color:var(--white);
  text-align: center;
  text-decoration: none;
  /*   -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; */
  white-space: normal;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  
  border-radius: 100px;
  
}

form input[type=submit]:hover,
form .hs-button:hover,
form input[type=submit]:focus,
form .hs-button:focus{
  text-decoration: none;
  background: linear-gradient(151.58deg, #FFC702 -13.43%, var(--secondary) 82.44%);
}

.hs-error-msgs li label{
  color:var(--error-text-color);
}


/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}




@media screen and (max-width:767px){
  form fieldset.form-columns-2 {
    margin: 0 -5px;
    max-width: unset !important;
    display: flex !important;
    flex-wrap: wrap;
    column-gap: unset !important;
  }
  form fieldset.form-columns-2>div {
    width: 50% !important;
    padding: 0 5px;
    display: block;
  }
}
@media screen and (max-width:550px){
  form fieldset.form-columns-2 {
    flex-direction: column;
  }
  form fieldset.form-columns-2>div {
    width: 100% !important;
  }
}





/* popup styling */

html.scroll-blocked{
  overflow: hidden;
}
.form-popup__wrapper{
  display: none;
  position: fixed;
inset: 0;
  min-height: 100dvh;
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
  background-color: rgba(0,0,0,0.40)
}
.form-popup__wrapper.open{
  display: flex;
}

.form-popup{
  min-height: 400px;
  max-width: 660px;
  background-color: #fff;
  border-radius: 32px;
  z-index: 1;
  position: relative;
  padding: 46px 46px 64px;
  margin: 30px 0;
}
.form-popup__close{
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #961914;
  cursor: pointer;
}
.form-popup__close svg{
  width: 13px;
  fill: #fff;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.added-scroll {
  background: rgb(118,31,26);
}
.main-header {
  transition: all ease 350ms;}

.header {
  background:var(--header-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9999;
}
.column-inner.dis-flex { position: relative; max-width: 272px; width: 100%; }
.column-inner.dis-flex a.link-overlay { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.header .inner-header .top-bar {
  background: #761F1A;
  padding:5px 0;
}
.header .main-header {
  padding: 15px 0;
}
.header .main-header .main-header-inner {
  align-items: center;
  margin: 0 -15px;
}
.header .main-header .main-header-inner .logo-wrap {
  width: 30%;
  padding: 0 15px;
}
.header .main-header .main-header-inner .menu-wrap {
  width: 70%;
  padding: 0 15px;
}
.header .main-header .main-header-inner .logo-wrap a {
  display: block;
  width: 208px;
}
.header .main-header .main-header-inner .logo-wrap a img {
  display: block;
  width: 100%;
}
.header .main-header .main-header-inner .logo-wrap .dark-logo {
  display: none;
}
body.dark-header .header .main-header .main-header-inner .logo-wrap .dark-logo {
  display: block;
}
body.dark-header .header .main-header .main-header-inner .logo-wrap .light-logo {
  display: none;
}
.header .menu-wrap .column-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul  li.hs-menu-depth-1 {
  margin: 0 15px;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li a {
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
  color:var(--header-link-color);
  position: relative;
  padding:25px 0;
}
.dark-header .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li a {
  color: #313131;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul  li.hs-menu-depth-1 a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: all 500ms ease-in-out;
  opacity: 0;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul  li.hs-menu-depth-1 a:hover:after {
  bottom:20px;
  opacity: 1;
}
.header .inner-header .top-bar .top-bar-left,header.header .inner-header .top-bar .top-bar-right {
  width: 50%;
  padding: 0 15px;
}
.header .inner-header .top-bar .top-bar-inner {
  margin: 0 -15px;
}
.header .inner-header .top-bar .top-bar-right .column-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .inner-header .simple-menu-wrap ul li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color:var(--header-link-color);
}
.header .inner-header .simple-menu-wrap ul li {
  margin: 0 12px;
}
.header .inner-header .simple-menu-wrap {
  margin-right: 12px;
}
.header .inner-header .top-bar .top-bar-left .review-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}
.header .inner-header .top-bar .top-bar-left .review-star {
  margin-right: 7px;
  display: flex;
  align-items: center;
}
.header .inner-header .top-bar .top-bar-left .review-star img {
  display: block;
  width: 16px;
  height: 16px !important;
  object-fit: contain;
}
.header .main-header .main-header-inner .menu-wrap .cta-wrap {
  margin-left: 3px;
}
.header .main-header .main-header-inner .menu-wrap .cta-wrap .cta-items:not(:last-child) {
  margin-right: 16px;
}

.popup-wrap {
  z-index: 999 !important; /* actually very important. !NO touchy! */
}

.popup-blackground {
  z-index: 1 !important;
}

.popup-wrap.open /* .popup-wrap-inner */ {
  /* display: flex !important; */
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999 !important;
}

.popup-wrap.open .popup-wrap-inner {
  display: flex;
  scale: 0.79;
}

.popup-wrap .popup-wrap-inner {
  width: fit-content;
  display: none;
  align-items: flex-start;
  justify-content: center;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid {
  max-width: 660px;
  background: #FFFFFF;
  width: 100%;
  padding: 46px 46px 64px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
}
.popup-wrap .popup-wrap-overlay {
  background: rgba(0,0,0,.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .popup-wrap-title * {
  margin: 0;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .popup-wrap-title {
  margin-bottom: 16px;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .popup-wrap-content {
  margin-bottom: 12px;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .popup-wrap-content p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #80949F;
}
.open {
  display: block;
}
.header .menu-wrap .column-inner .header-toggle-btn {
  display: none;
}
.header .header-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.added-class .main-header {
  background: #761F1A;
  animation: fadeIn 5s;
}
header.header.added-class { 
  box-shadow: 0 2px 11px rgba(0,0,0,0.1);
}
.mobile-open {
  overflow: hidden;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .btn-close-wrap {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .btn-close-wrap .btn-close {
  color: #fff;
  font-size: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrap .popup-wrap-inner .popup-wrap-mid .btn-close-wrap .btn-close svg {
  width: 13px;
  fill: #ffffff;
}

.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper {
  background: #ffffff;
  width: 185px;
  padding: 15px;
  top: 35px;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper li a {
  color: var(--primary);
  font-size: 16px;
  padding: 0;
  transition: all 500ms ease-in-out;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper li:not(:last-child) {
  margin-bottom: 10px;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper li a:after {
  display: none;
}
.header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper li a:hover {
  color: var(--secondary);
}
.globe_class .lang_list_class {
  width: 150px;
}
.lang_switcher_class .globe_class {
  background: transparent;
  width: auto;
  height: auto;
}
.lang_switcher_class:hover .lang_list_class {
  display: block;
}
.lang_switcher_class span#selectedLanguage a{
  background: url('https://20377429.fs1.hubspotusercontent-na1.net/hubfs/20377429/HAC-2023/images/arrow-c-down.svg') #961914;
  border-radius: 100px;
  padding: 4px 27px 4px 28px;
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  position: relative;
}
.lang_switcher_class span#selectedLanguage a:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.globe_class .lang_list_class li {
  text-align: left;
}
.globe_class .lang_list_class li a.lang_switcher_link {
  display: block;
  width: 100%;
  padding-left: 15px;
  position: relative;
}
.globe_class .lang_list_class li a.lang_switcher_link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

@media screen and (max-width:1100px) and (min-width:992px){
  .header .main-header .main-header-inner .logo-wrap a {
    width: 150px;
  }
  .header .main-header .main-header-inner .logo-wrap {
    width: 30%;
  }
  .header .main-header .main-header-inner .menu-wrap {
    width: 70%;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li a {
    font-size: 16px;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul>li {
    margin: 0 10px;
  }
}
@media screen and (min-width:992px){
  body.dark-header .added-class .main-header {
    background:var(--white);
  }
}


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

  .header .inner-header .top-bar{
    display:none;
  }
  .header .main-header .main-header-inner .logo-wrap {
    width: 50%;
  }
  .header .main-header .main-header-inner .menu-wrap {
    width: 50%;
  }
  .header .menu-wrap .column-inner .header-toggle-btn {
    display: block;
    height: 16px
  }
  html,body {
    overflow-x: hidden;
  }
  .header .header-menu {
    background: var(--white);
    display: none;
    height:calc(100dvh - 60px);
    left: 0;
    overflow: auto;
    padding: 25px 16px;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 3;
  }
  .header {
    background: #761F1A;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li a {
    color: var(--primary);
    padding: 0 0 25px
  }
  .header .main-header .main-header-inner .logo-wrap a {
    width: 120px;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li.hs-menu-depth-1 {
    margin: 0 0 25px;
  }
  .header .main-header .main-header-inner .menu-wrap .cta-wrap .cta-items-inner {
    flex-direction: column;
  }
  .header .main-header .main-header-inner .menu-wrap .cta-wrap .cta-items {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .popup-wrap .popup-wrap-inner .popup-wrap-mid {
    padding: 25px;
  }
  .popup-wrap {
    overflow: auto;
    padding: 30px 16px;
  }
  .popup-wrap .popup-wrap-inner {
    align-items: flex-start;
    height: auto;
  }
  body.dark-header .header .main-header .main-header-inner .logo-wrap .dark-logo {
    display: none;
  }
  body.dark-header .header .main-header .main-header-inner .logo-wrap .light-logo {
    display: block;
  }
  .header .main-header {
    padding: 8px 16px;
  }
  .header .menu-wrap .column-inner .header-toggle-btn .cross {
    display: none;
  }
  .header .menu-wrap .column-inner .header-toggle-btn.active-re .normal {
    display: none;
  }
  .header .menu-wrap .column-inner .header-toggle-btn.active-re .cross {
    display: block;
  }
  .popup-wrap .popup-wrap-overlay {
    position: fixed;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper {
    display: none;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li.hs-menu-depth-1 .child-trigger {
    position: absolute;
    top: 3px;
    right: 0;
    width: 15px;
    height: 15px;
    background:url('https://20377429.fs1.hubspotusercontent-na1.net/hubfs/20377429/HAC-2023/images/angle-bottom-icon.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 300ms ease-in-out;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul .hs-menu-children-wrapper {
    top: 0;
    padding-bottom: 0;
    left: 0;
    opacity: 1;
    position: relative;
  }
  .header .main-header .main-header-inner .menu-wrap .menu-inner-wrap ul li.hs-menu-depth-1 .child-trigger.open {
    transform: rotate(-180deg);
  }

  .popup-wrap {
    padding: 0;
  }

  .header-menu>.cta-wrap>.cta-items-inner>.cta-items>div.btn>a {
    width: 250px;
    text-align: center;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

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