/* Theme base styles */

/* INCLUDE THE VARIABLES AT THE TOP OF THE FILE, AS IT'S USED IN ALL STYLESHEETS BELOW */



:root {
  --container-width: 1240px;
  --container-width-desktop: 1240px;
  --dnd-section-vertical-padding-desktop: 120px;
  --dnd-section-vertical-padding-tablet: 90px;
  --dnd-section-vertical-padding-mobile: 60px;
}








:root {
  --blue-color: #4143e7;
  --pale-blue-color: #f2f2ff;
  --dark-blue-color: #002337;
  --mandarin-color: #ff6729;
  --mint-color: #01ffb1;
  --white-color: #ffffff;

  --blue-color-rgb: 65, 67, 231;
  --pale-blue-color-rgb: 242, 242, 255;
  --dark-blue-color-rgb: 0, 35, 55;
  --mandarin-color-rgb: 255, 103, 41;
  --mint-color-rgb: 1, 255, 177;
  --white-color-rgb: 255, 255, 255;

  --blue-transparent-left-right-gradient: linear-gradient(90deg, var(--blue-color) 0%, var(--blue-color) 25%, transparent 75%);
  --blue-green-gradient-left-to-right: linear-gradient(90deg, var(--blue-color) 0%, var(--mint-color) 75%);
  --blue-green-diagonal-gradient: linear-gradient(124deg, var(--blue-color) 31.25%, var(--mint-color) 100%);
  --pale-blue-white-top-gradient: linear-gradient(180deg, var(--pale-blue-color) 0%, var(--white-color) 100%);
  --white-pale-blue-bottom-gradient: linear-gradient(180deg, var(--white-color) 0%, var(--pale-blue-color) 100%);
}



















  



:root {
  --secondary-font: font-family: sigmund-pro, serif; font-style: normal; font-weight: normal; text-decoration: none
}









:root {
  --button-border-radius: 10px;
}



















:root {
  --header-height: 80px;
  --header-background-color: 

  
  
    
  


  rgba(0, 35, 55, 1.0)

;
}










/*  Generic
    This is where reset, normalize & box-sizing styles go.
*/
/*! 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;
}

/**
 * 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: bold;
}

/**
 * 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;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*  Components
    Specific pieces of UI that are stylized. Typically used for global partial styling
*/
.bg-primary,
.bg-primary-hover:hover,
.bg-primary-active.active,
.icon-bg-primary svg {
  background-color: #4143e7;
}

.bg-secondary,
.bg-secondary-hover:hover,
.bg-secondary-active.active,
.icon-bg-secondary svg {
  background-color: #ff6729;
}

.bg-dark,
.bg-dark-hover:hover,
.bg-dark-active.active,
.icon-bg-dark svg {
  background-color: #002337;
}

.bg-light,
.bg-light-hover:hover,
.bg-light-active.active,
.icon-bg-light svg {
  background-color: #f2f2ff;
}

.bg-white,
.bg-white-hover:hover,
.bg-white-active.active,
.icon-bg-white svg  {
  background-color: #ffffff;
}

.bg-white_10 {
  background-color: rgba(255, 255, 255, .1);
}

.s-gradient-background {
  position: relative;
}

.s-overflow-hidden {
  overflow: hidden;
}

.s-gradient-background:after {
  bottom: 0;
  content:"";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.s-gradient-blue-to-transparent-background:after {
  background: var(--blue-transparent-left-right-gradient);
}

.s-gradient-background--blue-green-diagonal:after {
  background: var(--blue-green-diagonal-gradient);
}

.s-gradient-background--pale-blue-white-top:after {
  background: var(--pale-blue-white-top-gradient);
  background-position: top;
}

.s-gradient-background--white-pale-blue-bottom:after {
  background: var(--white-pale-blue-bottom-gradient);
  background-position: bottom;
}

.s-solid-background--blue-left-edge:after {
  background: var(--blue-color);
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  right: 15vw;
  z-index: 1;
}

.s-gradient-background--bg-dark:after {
  background: var(--dark-blue-color);
}

.s-solid-background--blue-left-edge .c-rich-text {
	position: relative;
	z-index: 10;
}

.s-gradient-background--pale-blue-white-top:after,
.s-gradient-background--white-pale-blue-bottom:after {
  background-size: 100% 20%;
  background-repeat: no-repeat;
}

.text-primary,
.text-primary-hover:hover,
.text-primary-hover:hover h1,
.text-primary-hover:hover h2,
.text-primary-hover:hover h3,
.text-primary-hover:hover h4,
.text-primary-hover:hover h5,
.text-primary-hover:hover h6,
.text-primary-hover:hover p,
.text-primary-hover:hover ul,
.text-primary-hover:hover li,
.text-primary-hover:hover a,
.text-primary-hover:hover i,
.text-primary-active.active,
.text-primary-active.active h1,
.text-primary-active.active h2,
.text-primary-active.active h3,
.text-primary-active.active h4,
.text-primary-active.active h5,
.text-primary-active.active h6,
.text-primary-active.active p,
.text-primary-active.active ul,
.text-primary-active.active li,
.text-primary-active.active a,
.text-primary-active.active i,
.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h5,
.text-primary h6,
.text-primary p,
.text-primary ul,
.text-primary li,
.text-primary a,
.text-primary i,
h1.text-primary,
h2.text-primary,
h3.text-primary,
h4.text-primary,
h5.text-primary,
h6.text-primary,
p.text-primary,
ul.text-primary,
li.text-primary,
a.text-primary,
i.text-primary {
  color: #4143e7;
}

.text-primary svg,
.text-primary-hover:hover svg,
.text-primary-active.active svg,
svg.text-primary {
  fill: #4143e7;
}

.text-secondary,
.text-secondary-hover:hover,
.text-secondary-hover:hover h1,
.text-secondary-hover:hover h2,
.text-secondary-hover:hover h3,
.text-secondary-hover:hover h4,
.text-secondary-hover:hover h5,
.text-secondary-hover:hover h6,
.text-secondary-hover:hover p,
.text-secondary-hover:hover ul,
.text-secondary-hover:hover li,
.text-secondary-hover:hover a,
.text-secondary-hover:hover i,
.text-secondary-active.active,
.text-secondary-active.active h1,
.text-secondary-active.active h2,
.text-secondary-active.active h3,
.text-secondary-active.active h4,
.text-secondary-active.active h5,
.text-secondary-active.active h6,
.text-secondary-active.active p,
.text-secondary-active.active ul,
.text-secondary-active.active li,
.text-secondary-active.active a,
.text-secondary-active.active i,
.text-secondary h1,
.text-secondary h2,
.text-secondary h3,
.text-secondary h4,
.text-secondary h5,
.text-secondary h6,
.text-secondary p,
.text-secondary ul,
.text-secondary li,
.text-secondary a,
.text-secondary i,
h1.text-secondary,
h2.text-secondary,
h3.text-secondary,
h4.text-secondary,
h5.text-secondary,
h6.text-secondary,
p.text-secondary,
ul.text-secondary,
li.text-secondary,
a.text-secondary,
i.text-secondary {
  color: #ff6729;
}

.text-secondary svg,
.text-secondary-hover:hover svg,
.text-secondary-active.active svg,
svg.text-secondary {
  fill: #ff6729;
}

.text-dark,
.text-dark-hover:hover,
.text-dark-hover:hover h1,
.text-dark-hover:hover h2,
.text-dark-hover:hover h3,
.text-dark-hover:hover h4,
.text-dark-hover:hover h5,
.text-dark-hover:hover h6,
.text-dark-hover:hover p,
.text-dark-hover:hover ul,
.text-dark-hover:hover li,
.text-dark-hover:hover a,
.text-dark-hover:hover i,
.text-dark-active.active,
.text-dark-active.active h1,
.text-dark-active.active h2,
.text-dark-active.active h3,
.text-dark-active.active h4,
.text-dark-active.active h5,
.text-dark-active.active h6,
.text-dark-active.active p,
.text-dark-active.active ul,
.text-dark-active.active li,
.text-dark-active.active a,
.text-dark-active.active i,
.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6,
.text-dark p,
.text-dark ul,
.text-dark li,
.text-dark a,
.text-dark i,
h1.text-dark,
h2.text-dark,
h3.text-dark,
h4.text-dark,
h5.text-dark,
h6.text-dark,
p.text-dark,
ul.text-dark,
li.text-dark,
a.text-dark,
i.text-dark {
  color: #002337;
}

.text-dark svg,
.text-dark-hover:hover svg,
.text-dark-active.active svg,
svg.text-dark {
  fill: #002337;
}

.text-light,
.text-light-hover:hover,
.text-light-hover:hover h1,
.text-light-hover:hover h2,
.text-light-hover:hover h3,
.text-light-hover:hover h4,
.text-light-hover:hover h5,
.text-light-hover:hover h6,
.text-light-hover:hover p,
.text-light-hover:hover ul,
.text-light-hover:hover li,
.text-light-hover:hover a,
.text-light-hover:hover i,
.text-light-active.active,
.text-light-active.active h1,
.text-light-active.active h2,
.text-light-active.active h3,
.text-light-active.active h4,
.text-light-active.active h5,
.text-light-active.active h6,
.text-light-active.active p,
.text-light-active.active ul,
.text-light-active.active li,
.text-light-active.active a,
.text-light-active.active i,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light ul,
.text-light li,
.text-light a,
.text-light i,
h1.text-light,
h2.text-light,
h3.text-light,
h4.text-light,
h5.text-light,
h6.text-light,
p.text-light,
ul.text-light,
li.text-light,
a.text-light,
i.text-light {
  color: #f2f2ff;
}

.text-light svg,
.text-light-hover:hover svg,
.text-light-active.active svg,
svg.text-light {
  fill: #f2f2ff;
}

.text-white,
.text-white-hover:hover,
.text-white-hover:hover h1,
.text-white-hover:hover h2,
.text-white-hover:hover h3,
.text-white-hover:hover h4,
.text-white-hover:hover h5,
.text-white-hover:hover h6,
.text-white-hover:hover p,
.text-white-hover:hover ul,
.text-white-hover:hover li,
.text-white-hover:hover a,
.text-white-hover:hover i,
.text-white-active.active,
.text-white-active.active h1,
.text-white-active.active h2,
.text-white-active.active h3,
.text-white-active.active h4,
.text-white-active.active h5,
.text-white-active.active h6,
.text-white-active.active p,
.text-white-active.active ul,
.text-white-active.active li,
.text-white-active.active a,
.text-white-active.active i,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white ul,
.text-white li,
.text-white a,
.text-white i,
h1.text-white,
h2.text-white,
h3.text-white,
h4.text-white,
h5.text-white,
h6.text-white,
p.text-white,
ul.text-white,
li.text-white,
a.text-white,
i.text-white {
  color: #ffffff;
}

.text-white li::before {
  filter: brightness(0) invert(1);
}


.text-white svg,
.text-white-hover:hover svg,
.text-white-active.active svg,
svg.text-white {
  fill: #ffffff;
}

.text-mint,
.text-mint-hover:hover,
.text-mint-hover:hover h1,
.text-mint-hover:hover h2,
.text-mint-hover:hover h3,
.text-mint-hover:hover h4,
.text-mint-hover:hover h5,
.text-mint-hover:hover h6,
.text-mint-hover:hover p,
.text-mint-hover:hover ul,
.text-mint-hover:hover li,
.text-mint-hover:hover a,
.text-mint-hover:hover i,
.text-mint-active.active,
.text-mint-active.active h1,
.text-mint-active.active h2,
.text-mint-active.active h3,
.text-mint-active.active h4,
.text-mint-active.active h5,
.text-mint-active.active h6,
.text-mint-active.active p,
.text-mint-active.active ul,
.text-mint-active.active li,
.text-mint-active.active a,
.text-mint-active.active i,
.text-mint h1,
.text-mint h2,
.text-mint h3,
.text-mint h4,
.text-mint h5,
.text-mint h6,
.text-mint p,
.text-mint ul,
.text-mint li,
.text-mint a,
.text-mint i,
h1.text-mint,
h2.text-mint,
h3.text-mint,
h4.text-mint,
h5.text-mint,
h6.text-mint,
p.text-mint,
ul.text-mint,
li.text-mint,
a.text-mint,
i.text-mint {
  color: #01ffb1;
}

.text-mint svg,
.text-mint-hover:hover svg,
.text-mint-active.active svg,
svg.text-mint {
  fill: #01ffb1;
}

@media (max-width: 480px) {
  .s-solid-background--blue-left-edge::after {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    right: 0;
  }
}
/* 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%;
}

/* In-page editor UI */

.in-editor-ui-label {
  background: #fff;
  border: 1px dotted blue;
  color:  !important;
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 300;
  padding: 10px 15px;
}

/* Tools/Utility classes */

.negative-scroll-position,
a[data-hs-anchor="true"] {
  display: block;
  height: 1px;
  position: relative;
  top: -150px;
  width: 1px;
  z-index: -9999;
}
.footer .footer__container {
  background-color: 

  
  
    
  


  rgba(0, 35, 55, 1)

;
  padding: 0 20px;
}

.footer .footer__bottom {
  background-color: var(--white-color);
}

/* Footer Content */
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #ffffff;
}

.footer h3, .footer h4 {
  color: var(--mint-color);
  font-size: 1em;
}

.footer h3 {
  font-size: 1.2em;
}

.footer p {
  font-size: 0.8em;
  line-height: 1.4em;
  font-weight: 400;
}

/* Footer Navigation */
.footer .hs-menu-wrapper ul {
  justify-content: flex-start;
}

.footer .hs-menu-wrapper ul li.hs-menu-item {
  margin-right: 20px;
  padding: 0;
}

.footer .hs-menu-wrapper > ul li:before {
  display: none !important;
}

.footer .hs-menu-wrapper.hs-menu-flow-vertical ul li.hs-menu-item {
  margin: 0;
  padding: 0 0 0.5em 0;
  line-height: 1em;
}

.footer .hs-menu-wrapper ul li.hs-menu-item a, .footer a {
  color: #ffffff;
  font-family: usual, sans-serif;
  font-weight: 400;
} 

.footer__bottom a, .footer__bottom .hs-menu-wrapper ul li.hs-menu-item a {
  color: var(--dark-blue-color);
}

.footer__top .c-cta-button:hover, .footer__top .c-cta-button:active, .footer__top .c-cta-button:focus {
  color: var(--dark-blue-color);
}

.footer__top .l-cta-button-wrapper {
  margin-bottom: 1em;
}

.footer .hs-menu-wrapper.hs-menu-flow-vertical ul li.hs-menu-item a {
  font-size: 0.8em;
  line-height: 1.2em;
  font-weight: 400;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal {
  padding-top: 1em;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-menu-item {
  font-size: 0.8em;
  line-height: 1.4em;
}

.footer .hs-menu-wrapper ul li.hs-menu-item a:hover,
.footer .hs-menu-wrapper ul li.hs-menu-item a:focus,
.footer a:hover, .footer a:focus {
  text-decoration: none;
  color: var(--mint-color);
}

.footer .hs-menu-wrapper.hs-menu-flow-vertical ul ul {
  padding-bottom: 0.5em;
}

.footer .hs-menu-wrapper.hs-menu-flow-vertical ul ul li.hs-menu-item a {
  font-size: 0.65em;
  vertical-align: middle;
  padding-left: 1em;
  font-weight: 300;
}

.footer .hs-menu-wrapper.hs-menu-flow-vertical ul ul > li:before {
  background-image: none;
  content: "-";
  display: inline-block !important;
  top: 0.05rem;
}

.footer .span2 {
  padding-top: 0.5em !important;
}

.footer__top .span2 {
  padding-top: 0 !important;
}

.footer .span4, .footer .span8 {
  width: auto;
  margin: 0;
}

.footer .row-fluid .span8 {
  width: 100%;
  margin: 0;
}

.footer__top .row-fluid .span3 {
  width: auto;
  margin: 0;
  padding: 0;
}

.footer__top .row-fluid .span9 {
  width: 100%;
  margin: 0;
}

.footer__top .span9 .row-fluid {
    display: flex;
    flex-wrap: wrap;
  }

  .footer__top .span9 .dnd-column {
    flex-basis: 50%;
    margin-left: 0;
    padding-bottom: 2em;
  }

.footer .span8 .row-fluid  {
  display: flex;
  flex-wrap: wrap;
}

.footer .span8 .row-fluid .span3 {
  width: 50%;
  padding: 0.5em 1em !important;
  margin: 0;
}

.footer .span8 .row-fluid .span3:first-child, .footer .span8 .row-fluid .span3:nth-child(3) {
  padding-left: 0 !important;
}

.footer .span8 .row-fluid .span3:last-child {
  padding-right: 0 !important;
}

.footer .row-number-1 > .row-fluid {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 576px) {
  .footer .span8 .row-fluid  {
    flex-wrap:nowrap;
  }
}

@media (min-width: 992px) {
  .footer .row-number-1 > .row-fluid {
    flex-direction: row;
  }

  .footer .span4 {
    width: 31.623931624%;
    *width: 31.5707401346383%;
  }

  .footer .row-fluid .span8 {
    width: 65.81196581200001%;
    *width: 65.7587743226383%;
    padding-left: 1em !important;
    margin-left: 2.564102564%;
    *margin-left: 2.510911074638298%;
  }

  .footer__top .span9 .row-fluid {
    flex-wrap: nowrap;
    padding-bottom: 0;
  }

  .footer__top .span9 .dnd-column {
    flex-basis: 20%;
    margin-left: 1em !important;
  }

  .footer .span4 {
    border-right: solid 1px #ffffff;
    padding-right: 1em !important;
  }

  .footer__top .span3 {
    border-right: solid 1px #ffffff;
    flex-basis: 30%;
    margin-right: 1em !important;
    padding-left: 20px !important;
    padding-right: 1em !important;
  }

  .footer__top .span4, .footer__top .span9 .span3 {
    border: none;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .footer .c-social-sharing__item {
    margin-left: 20px;
  }

  .footer__top .c-cta-button {
    width: 100%;
  }
}
body.no-scroll {
  overflow: hidden;
}

main {
  padding-top: var(--header-height);
}

.body-container-wrapper--no-header {
  padding-top: 0;
}

.l-header {
  background-color: var(--header-background-color);
  border-bottom: 4px solid transparent;
  border-image: var(--blue-green-gradient-left-to-right);
  border-image-slice: 1;
  color: var(--white-color);
  height: var(--header-height);
  position: fixed;
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  height: var(--header-height);
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
}

.search-icon {
  cursor: pointer;
  height: 20px;
  margin-left: 1em;
  width: 20px;
  position: absolute;
  right: 60px;
  margin-bottom: 5px;
}

.close-search-icon {
  cursor: pointer;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 30px;
  top: 34px;
}

.c-header__search {
  display: none;
  margin: 0 auto;
  max-width: 1240px;
  opacity: 0;
  transition: all ease .35s;
  padding: 1em 20px;
  position: relative;
  width: 100%;
}

.c-header__search.active {
  display: block;
  opacity: 1;
}

.hs-search-field__input {
  font-size: 1em !important;
  font-weight: 400;
  padding: 1em !important;
}

.hs-search-field__suggestions {
  background-color: var(--white-color);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: var(--dark-blue-color);
  padding: 0 1em !important;
  width: 100%;
}

.hs-search-field__suggestions li a {
  padding: 0.5em 0 0 0;
}

.hs-search-field__suggestions li:last-child a {
  padding-bottom: 0.5em;
}

.hs-search-field__suggestions li#results-for {
  padding-top: 0.5em;
}

.hs-search-field__suggestions a:focus, .hs-search-field__suggestions a:hover {
  background-color: transparent !important;
  outline: none;
}

.c-header__logo {
  max-width: 220px;
  overflow: hidden;
}

.c-header__menu, .c-header__cta {
  flex-grow: 1;
  height: var(--header-height);
}

.c-header__cta {
  display: none !important;
}

.hs-landing-page .c-header__cta .l-cta-button-wrapper {
  margin-bottom: 4px;
  margin-top: 0;
}

/* Navigation skipper */
.c-header__skip {
  background-color: var(--white-color);
  border-radius: 6px;
  color: var(--dark-blue-color) !important;
  font-weight: 500;
  height: 1px;
  left: -1000px;
  overflow: hidden;
  padding: 10px 15px;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.c-header__skip:hover,
.c-header__skip:focus,
.c-header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Search bar */
.header-search {
  margin-bottom: 3px;
}

.header-search i {
  font-size: 1.2em;
  margin: 0.5em 0.5em 0 0;
}

#site-search-modal {
  margin-top: 150px;
  max-width: 960px;
  vertical-align: top;
}

#site-search-modal .site-search-modal__inner {
  padding: 2em;
}

/* Breadcrumb */
#l-breadcrumb {
  left: 0;
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 20px;
  position: absolute;
  right: 0;
  transition: all ease .35s;
  width: 100%;
}

.l-header.scrolled #l-breadcrumb {
  opacity: 0;
}

.c-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  padding-top:1em;
}

a.c-breadcrumb__link {
  color: var(--white-color);
  margin-right: 20px;
}

a.c-breadcrumb__link:hover, a.c-breadcrumb__link:active, a.c-breadcrumb__link:focus, .c-breadcrumb__link--active {
  color: var(--mint-color) !important;
  opacity: 1 !important;
}

.c-breadcrumb__link--active {
  margin-right: 0;
  opacity: 1;
}

body.s-breadcrumb--white a.c-breadcrumb__link,
body.s-breadcrumb--white a.c-breadcrumb__link:hover,
body.s-breadcrumb--white .c-breadcrumb__link--active {
  color: var(--white-color) !important;
}

body.s-breadcrumb--white a.c-breadcrumb__link {
  opacity: .6;
}

body.s-breadcrumb--white a.c-breadcrumb__link:hover {
  opacity: 1;
}

@media (min-width: 576px) {
  .c-header__cta {
    display: inherit !important;
  }
}

@media (min-width: 1200px) {
  .search-icon {
    position: relative;
    right: 0;
    margin-right:0;
    margin-bottom: 0;
  }
}




@media (min-width: 1600px) {
  .l-header__inner {
    max-width: 1240px;
  }
}

/* Language Switcher */
.c-language-switcher {
  border-left: 1px solid var(--white-color);
  cursor: pointer;
  padding: 25px;
}

.c-language-switcher:hover .lang_list_class,
.c-language-switcher:focus .lang_list_class,
.c-language-switcher:focus-within .lang_list_class {
  display: block;
}

.c-language-switcher .lang_list_class {
  width: 100px;
}

.c-language-switcher .lang_list_class li:first-child {
  border-top: none;
  padding-top: unset;
}

.c-language-switcher .lang_list_class li:first-child,
.c-language-switcher .lang_list_class li:first-child a {
  border-radius: 5px 5px 0 0;
}

.c-language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c-language-switcher .lang_list_class li:last-child,
.c-language-switcher .lang_list_class li:last-child a {
  border-radius: 0 0 5px 5px;
}

.c-language-switcher .lang_list_class li {
  border: none;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: left;
}

.c-language-switcher .lang_list_class li a {
  display: flex;
  padding: 0.5rem 1rem;
}

.c-language-switcher .lang_list_class li a:hover,
.c-language-switcher .lang_list_class li a:focus,
.c-language-switcher .lang_list_class li a:focus-within {
  background-color: var(--mint-color);
  color: var(--dark-blue-color);
}

.c-language-switcher .lang_list_class li::before {
  display: none !important;
}

.hs_cos_wrapper_type_language_switcher {
  height: 22px;
}

.globe_class {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-globe2" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7 0 0 1 .597-.933A7.01 7.01 0 0 0 3.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9.124 9.124 0 0 1-1.565-.667A6.964 6.964 0 0 0 1.018 7.5h2.49zm1.4-2.741a12.344 12.344 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612 0 0 1 7.5 10.91V8.5H4.51zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696 0 0 1-.598-.933 8.853 8.853 0 0 1-.481-1.079 8.38 8.38 0 0 0-1.198.49 7.01 7.01 0 0 0 2.276 1.522zm-1.383-2.964A13.36 13.36 0 0 1 3.508 8.5h-2.49a6.963 6.963 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009 0 0 0 2.275-1.521 8.376 8.376 0 0 0-1.197-.49 8.853 8.853 0 0 1-.481 1.078 6.688 6.688 0 0 1-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963 0 0 0 14.982 8.5h-2.49a13.36 13.36 0 0 1-.437 3.008zM14.982 7.5a6.963 6.963 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368 0 0 0 1.196-.49 7.01 7.01 0 0 0-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z"/></svg>') !important;
}

.c-language-switcher__label-current {
  font-size: .8rem;
  font-weight: 400;
  margin-left: 5px;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .stickycta .c-header__cta {
    display: block !important;
    height: auto;
    position: absolute;
    top: calc(100vh - 51px);
    width: 100%;
  }

  .stickycta .c-header__cta .c-cta-button {
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
  }
}

/*  Elements
    Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/
/* Normal state styles */
button:not(.uiButton):not(.CybotCookiebotDialogDetailBodyContentCookieContainerButton):not(.CookiebotWidget-logo):not(.CybotCookiebotDialogBodyButton):not(.CookiebotWidget-show-consent-details):not(.CookiebotWidget-close):not(.private-button--unstyled):not(.c-dialog__close-icon):not([class*="ToolbarIconButton"]):not([class*="PrivateButton"]),
.c-cta-button {
  background-color: 

  
  
    
  


  rgba(255, 103, 41, 1.0)

;
  border: 0px solid #ff6729;
  border-radius: 10px;
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: .9rem;
  font-weight: 400;
  max-width: ;
  padding: 12px 35px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  width: auto;
}

/* Custom button styles */

.c-cta-button--mandarin {
  background-color: var(--mandarin-color);
}

.c-cta-button--mint {
  background-color: var(--mint-color);
  color: var(--dark-blue-color);
}

.c-cta-button--pale-blue {
  background-color: var(--pale-blue-color);
  color: var(--dark-blue-color) !important;
}

.c-cta-button--dark-blue {
  background-color: var(--dark-blue-color);
  color: var(--white-color);
}

/* Hover, focus and active state styles */
.c-cta-button--mandarin:hover, .c-cta-button--mandarin:focus, .c-cta-button--mandarin:active {
  background-color: var(--mint-color);
  box-shadow: 0px 0px 8px var(--mint-color);
  color:var(--dark-blue-color);
}

.c-cta-button--dark-blue:hover, .c-cta-button--dark-blue:focus, .c-cta-button--dark-blue:active {
  box-shadow: 0px 0px 8px var(--dark-blue-color);
  color:var(--mint-color);
}

.c-cta-button--mint:hover, .c-cta-button--mint:focus, .c-cta-button--mint:active {
  background-color: var(--dark-blue-color);
  box-shadow: 0px 0px 8px var(--dark-blue-color);
  color: var(--mint-color);
}

.c-cta-button--pale-blue:hover, .c-cta-button--pale-blue:focus, .c-cta-button--pale-blue:active {
  box-shadow: 0px 0px 8px var(--blue-color);
  color: var(--blue-color);
}

@media (min-width: 992px) {
  button:not(.uiButton):not(.CybotCookiebotDialogDetailBodyContentCookieContainerButton):not(.CookiebotWidget-logo):not(.CybotCookiebotDialogBodyButton):not(.c-dialog__close-icon), .c-cta-button {
    font-size: 1rem;
    padding: 12px 50px;
  }
}
.video-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

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

.cookiebot-privacy-wrapper .hs-embed-wrapper {
  max-height: 100% !important;
  max-width: 100vw !important;
  width: 100%;
}

.CookieDeclarationType {
  border: none !important;
  padding: unset !important;
}
form,
.submitted-message {
  font-family: usual, sans-serif; font-style: normal; font-weight: 300; text-decoration: none;
}

/* Form title */
.form-title {
  background-color: 

  
  
    
  


  rgba(242, 242, 255, 1)

;
  color: #002337;
}

/* Form fields */
.hs-form-field {
  margin-bottom: 1rem;
}

/* Labels */
form label {
  color: #002337;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  padding-bottom: 0.5em;
}

.text-white form label, .text-white form legend {
  color: var(--white-color);
}

/* Help text - legends */
form legend {
  color: #002337;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

/* 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 {
  background-color: #FFF;
  border: 1px solid;
  border-radius: 6px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100% !important;
  border-color: #4143e7;
  color: #002337;
}

.bg-transparent form input, .bg-transparent form select, .bg-transparent form textarea {
  border: none;
}

form textarea {
  min-height: 150px;
}

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: #4143e7;
}

form select {
  /** Replace the dropdown arrow indicator */
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.hs-fieldtype-select label {
  padding-right: .5em;
}

form fieldset {
  max-width: 100% !important;
}

/* Form placeholder text */
::-webkit-input-placeholder {
  color: #002337;
  opacity: 0.5;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: #002337;
  opacity: 0.5;
}

/* 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;
  margin-right: 0.35rem;
}

/* 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;
  background: #4143e7;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
  background-color: #4143e7 !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #4143e7;
}

/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
  font-size: 0.6rem;
  line-height: 1.4em;
  margin: 0 0 0.5rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.hs-form-booleancheckbox-display {
  display: flex;
}

.hs-form-booleancheckbox-display label {
  padding-bottom: 0;
}

.hs-form-booleancheckbox {
  margin: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: 0.6rem;
  margin-left: 5px !important;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 0 !important;
}

.hs-form-booleancheckbox {
  margin-left: unset !important;
  padding-left: unset;
}

/* Validation */

.hs-recaptcha {
  height: 0;
  margin-bottom: 0;
  margin-top: 1em;
  visibility: hidden;
}

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

.hs-error-msgs li {
  margin-left: 0;
  padding-left: 0;
}

.hs-error-msgs li::before {
  display: none !important;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  background-color: 

  
  
    
  


  rgba(255, 103, 41, 1.0)

;
  border: 0px solid #ff6729;
  border-radius: 10px;
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: sigmund-pro, serif; font-style: normal; font-weight: normal; text-decoration: none;
  font-family: usual, sans-serif;
  max-width: ;
  padding: 12px 50px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  white-space: normal;
  width: auto;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form input[type=submit]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  box-shadow: 0px 0px 8px var(--mandarin-color);
  color:var(--white-color);
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: rgba(255, 143, 81, 1.0);
  border-color: #ff8f51;
  color: #ffffff;
}

/* Captcha */
/*
.grecaptcha-badge {
  margin: 0 auto;
}
*/
.social-icon-link {
  margin-right: 1em;
}

.social-icon-link i,
.social-icon-link svg {
  color: #4143e7;
  fill: #4143e7;
  height: 1.2em;
}

.social-icon-link:hover i,
.social-icon-link:hover svg {
  color: #ff6729;
  fill: #ff6729;
}
/* Table */
table {
  border: 1px solid;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  width: 100%;
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  border-color: #002337;
}

/* Table Cells */
th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
  border-color: #002337;
  color: #002337;
}

/* Table Header */
thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
  background-color: 

  
  
    
  


  rgba(242, 242, 255, 1)

;
  border-bottom-color: #002337;
  color: #002337;
}

/* Table Footer */
tfoot td {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #002337;
}
html {
  scroll-behavior: smooth;
  font-size: 17px;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

body {
  line-height: 1.5;
  word-break: break-word;
  font-family: usual, sans-serif; font-style: normal; font-weight: 300; text-decoration: none;
  color: #002337;
}

/* Paragraphs */
p {
  font-family: usual, sans-serif; font-style: normal; font-weight: 300; text-decoration: none;
  font-size: 1rem;
  margin: 1rem 0;
}

/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease-in-out;
  color: #002337;
}

a:hover,
a:focus {
  color: #ff6729;
}

a:active {
  color: #ff6729;
}

/* Headings */
h1,
h2,
h3, 
h4,
h5,
h6 {
  margin: 0 0 .5rem 0;
}

h1 {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  color: #4143e7;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

h2, .h2 {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  color: #4143e7;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

h2.s-cta-header--normal {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2.s-cta-header--large {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h3, .h3 {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  color: #4143e7;
  font-size: 1.76rem;
  line-height: 1.1;
}

h4 {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  color: #4143e7;
  font-size: 1.4rem;
  line-height: 1.1;
}

h5 {
  font-weight: 300; text-decoration: none; font-family: sigmund-pro, serif; font-style: normal;
  color: #4143e7;
  font-size: 1.18rem;
  line-height: 1.1;
}

h6 {
  font-weight: 300; text-decoration: none; line-height: 1.333rem; font-family: usual, sans-serif; font-style: normal;
  color: #4143e7;
  font-size: 0.95rem;
  line-height: 1.1;
}

small, .text_small {font-size: 0.8rem;}

/* Lists */
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

li {
  margin-bottom: .5rem;
  padding-left: 1.25rem;
  position: relative;
}

ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.c-icon-list ul {
  margin-top: 0;
}

ul li:not(.uiListItem):not(.hs-search-results__listing li):not(.hs-search-field__suggestions li):not(.hs-form-booleancheckbox):not(.CookieCard):not(.CybotCookiebotDialogDetailBodyContentCookieGroup)::before {
  background-image: url('https://info.activpayroll.com/hubfs/new-website-2023/Assets/ap-bullet.svg');
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1rem;
  left:0;
  margin-right: 0.5rem;
  position: absolute;
  top: 0.25rem;
  width: 1rem;
}

.c-icon-list.tick ul li {
  padding-left: 2rem;
}

.c-icon-list.tick ul li:before {
  background-image: url('https://www.activpayroll.com/hubfs/new-website-2023/Icons/ap-tick-bullet.svg') !important;
  height: 1.5rem !important;
  top: 0 !important;
  width: 1.5rem !important;
}

.hs-tools-menu li::before, 
ul.multi-container li::before,
#CookiebotWidget  li::before {
  display: none !important;
}

ul.multi-container li {
  padding-left: 0;
}

ol {
  counter-reset:item;
  list-style-type:none;
  padding-left: 0;
}
ol>li {
  counter-increment:item;
  display:table;
}
ol>li:before {
  content:counters(item,".") ". ";
  display:table-cell;
  padding-right:.6em;
  word-break:normal;
}
li ol li ol>li:before,
li ol>li:before {
  content:counters(item,".") " ";
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  background-color: #eee;
  display: block;
  padding: 1rem;
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  margin: 0 0 3rem;
}

blockquote p {
  font-family: sigmund-pro, serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #4143e7;
  font-style: italic;
  font-weight: 600;
}

p.larger {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Horizontal rules */
hr {
  background-color: #ff6729;
  border: none;
  color: #ff6729;
  height: 2px;
  margin-bottom: 1.2rem;
}

/* Image alt text */
img {
  font-size: .9rem;
  word-break: normal;
}

@media (min-width: 992px) {
  p {
    font-size: 1rem;
  }
  h1 {
    font-size: 3.9rem;
  }

  h2, .h2 {
    font-size: 2.7rem;
  }

  h2.s-cta-header--normal {
    font-size: 4.12rem;
    margin-bottom: 1.8rem;
  }

  h2.s-cta-header--large {
    font-size: 5.88rem;
    margin-bottom: 1.8rem;
  }
}
.content-card {
    /*box-shadow: 0 2px 5px 2px rgb(0 0 0 / 10%);*/
    margin-bottom: 2em;
    overflow: hidden;
    position: relative;
    transition: box-shadow .4s ease;
  }
  
  .content-card:hover {
    /*box-shadow: 0 20px 40px -10px rgb(0 0 0 / 30%);*/
  }
  
  .content-card-image {
    /* max-height: 250px; */
    border-radius: 10px;
    box-shadow: -3px 3px 15px 1px rgba(0,0,0,.2);
    display:block;
    overflow: hidden;
    margin-bottom: 22px;
    width: 100%;
  }
  
  .content-card-image img {
    max-width: 100%;
    transition: all .3s ease-in-out;
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
  }

  .blog-card .content-card-image, .blog-post .content-card-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height:340px;
  }

  .blog-post .blog-post__full-width-header .content-card-image {
    height:540px;
    margin-bottom: -60px;
  }

  .blog-card .content-card-image img {
   /* height: 100%; */
  }
  
  .content-card:hover .content-card-image img {
    transform: scale(1.1);
  }
  
  .content-card-content {
    padding: 0 1em 5em 1em;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    position: relative;
  }

  .content-card-title a {
    color: #002337;
  }
  
  .content-card-title h3 {
    position: relative;
    color: #002337;
  }
    
  .content-card-meta-item {
    margin-bottom: .75em;
  }
  
  .content-card-meta-item i {
    margin-right: .4em;
    text-align: center;
    width: 18px;
  }
  
  .content-card-tag {
    border: 0 solid #ff6729;
    color: #4143e7;
    display: inline-block;
    padding: 8px 24px 8px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 100px;
    background-color: #F5F7FA;
    margin-bottom: 16px;
  }
  
  .content-card-date-time {
    color: #4143e7;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: sigmund-pro, serif; font-style: normal; font-weight: normal; text-decoration: none;
    font-style: italic !important;
  }

  .content-card-description p {
    margin-bottom: 0;
  }
  
  .content-card-full-link {
    color: #4143e7;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  
  .content-card-full-link:hover {
    color: #4143e7;
  }
  
  .content-card-button {
    margin-top: 1.5em;
    position: relative;
    z-index: 1;
  }
  
  .content-card-button .button {
    font-size: .9em;
  }
  
  .content-card.event-card {
    background-color: #fff;
  }
  
  .content-card.event-facilitator-card {
    margin: 0 auto;
    max-width: 500px;
  }
  
  .content-card-event-facilitator-section {
    background-color: #fff;
    padding: 1.5em;
  }
  
  .content-card-event-facilitator {
    display: flex;
  }
  
  .content-card-event-facilitator-image {
    width: 27%;
    margin-right: 3%;
    overflow: hidden;
  }
  
  .content-card-event-facilitator-image img {
    width: 100%;
  }
  
  .content-card-event-facilitator-name {
    width: 70%;
  }
  
  .content-card-event-facilitator-short-bio {
    margin-top: 1em;
  }
  
  .content-card-event-facilitator-short-bio .read-more-link {
    margin-bottom: .4em;
  }

  .content-card .l-cta-button-wrapper {
    bottom: 0;
    margin-bottom: 0;
    position: absolute;
  }

  @media only screen and (max-width: 480px) {

  .content-card-image img {
    width: auto;
    margin: 0 auto;
  }

  .blog-card .content-card-image img, .blog-post .content-card-image {
    width: 100%;
    margin: 0;
  }

}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.c-event{
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--pale-blue-color);
  padding-bottom: 60px;
  position: relative;
}
.c-event__image{
  height: 200px;
}
.c-event__image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-event__content{
  padding: 20px 20px 0 20px;
}

.c-event__region{
  font-size: 14px;
  line-height: 16px;
  font-style: italic;
  font-weight: 500;
  padding: 4px 25px;
  background-color: var(--mint-color);
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  color: var(--dark-blue-color);
}
.c-event__meta{
  margin-bottom: 20px;
}
.c-event__type{
  font-size: 14px;
  line-height: 16px;
  font-style: italic;
  font-weight: 500;
  padding: 4px 25px;
  background-color: var(--mint-color);
  border-radius: 4px;
  color: var(--dark-blue-color);
}
.c-event__date{
  font-size: 16px;
  line-height: 1;
  margin-left: auto;
  color: var(--dark-blue-color);
}
.c-event__title{
  color: inherit;
  margin-bottom: 20px;
}

.c-event__title a{
  color: var(--dark-blue-color);
}
.c-event__button{
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}
.c-event__button a{
  width: 100%;
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media(min-width: 768px){
  .c-event__meta{
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .c-event__date{
    margin-left: 0;
  }
}
@media(min-width: 992px){
  .c-event__image{
    height: 300px;
  }
  .c-event__meta{
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .c-event__date{
    margin-left: auto;
  }
}

/*  Objects
    Non-cosmetic design patterns including grid and layout classes)
*/
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 60px 20px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 1240px;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

.footer .dnd-section {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 90px 20px;
  }
}

@media (min-width: 992px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 120px 20px;
  }
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

@media (min-width: 1600px) {
  .content-wrapper {
    max-width: 1240px;
  }

  .dnd-section > .row-fluid {
    max-width: 1240px;
  }
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
} 
.l-flex {
  display: flex;
}

/*******************************************
  Direction
*******************************************/
.l-flex--direction-row {
  flex-direction: row;
}

.l-flex--direction-row-reverse {
  flex-direction: row-reverse;
}

.l-flex--direction-column {
  flex-direction: column;
}

.l-flex--direction-column-reverse {
  flex-direction: column-reverse;
}

/*******************************************
  Wrap
*******************************************/
.l-flex--nowrap {
  flex-wrap: nowrap;
}

.l-flex--wrap {
  flex-wrap: wrap;
}

.l-flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}

/*******************************************
  Justify Content
*******************************************/
.l-flex--justify-content-flex-start {
  justify-content: flex-start;
}

.l-flex--justify-content-flex-end {
  justify-content: flex-end;
}

.l-flex--justify-content-center {
  justify-content: center;
}

.l-flex--justify-content-space-between {
  justify-content: space-between;
}

.l-flex--justify-content-space-around {
  justify-content: space-around;
}

.l-flex--justify-content-space-evenly {
  justify-content: space-evenly;
}

.l-flex--justify-content-start {
  justify-content: start;
}

.l-flex--justify-content-end {
  justify-content: end;
}

.l-flex--justify-content-left {
  justify-content: left;
}

.l-flex--justify-content-right {
  justify-content: right;
}

/*******************************************
  Align Items
*******************************************/
.l-flex--align-items-stretch {
  align-items: stretch;
}

.l-flex--align-items-flex-start {
  align-items: flex-start;
}

.l-flex--align-items-flex-end {
  align-items: flex-end;
}

.l-flex--align-items-center {
  align-items: center;
}

.l-flex--align-items-baseline {
  align-items: baseline;
}

.l-flex--align-items-first-baseline {
  align-items: first baseline;
}

.l-flex--align-items-last-baseline {
  align-items: last baseline;
}

.l-flex--align-items-start {
  align-items: start;
}

.l-flex--align-items-end {
  align-items: end;
}

.l-flex--align-items-self-start {
  align-items: self-start;
}

.l-flex--align-items-self-end {
  align-items: self-end;
}

/*******************************************
  Align Content
*******************************************/
.l-flex--align-content-flex-start {
  align-content: flex-start;
}

.l-flex--align-content-flex-end {
  align-content: flex-end;
}

.l-flex--align-content-center {
  align-content: center;
}

.l-flex--align-content-space-between {
  align-content: space-between;
}

.l-flex--align-content-space-around {
  align-content: space-around;
}

.l-flex--align-content-space-evenly {
  align-content: space-evenly;
}

.l-flex--align-content-stretch {
  align-content: start;
}

.l-flex--align-content-start {
  align-content: start;
}

.l-flex--align-content-end {
  align-content: end;
}

.l-flex--align-content-baseline {
  align-content: baseline;
}

.l-flex--align-content-first-baseline {
  align-content: first baseline;
}

.l-flex--align-content-last-baseline {
  align-content: last baseline;
}

/*******************************************
  Align Self
*******************************************/
.l-flex--align-self-auto {
  align-self: auto;
}

.l-flex--align-self-flex-start {
  align-self: flex-start;
}

.l-flex--align-self-flex-end {
  align-self: flex-end;
}

.l-flex--align-self-center {
  align-self: center;
}

.l-flex--align-self-baseline {
  align-self: baseline;
}

.l-flex--align-self-stretch {
  align-self: stretch;
}
/* Responsive Grid */
.body-wrapper {
    /* overflow: hidden; */
}

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

.s-border-radius .row-fluid-wrapper {
	border-radius: 10px;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}


@media (max-width: 980px) {
  .reverse-row-order .row-fluid {
    display: flex;
    flex-direction: row-reverse !important;
  }
  
  .stack .row-fluid {
    align-items: flex-start !important;
    flex-direction: column !important;
    flex-wrap: wrap; 
  }

  .stack .row-fluid [class*="span"] {
    width: 100% !important;
  }

  .stack .row-fluid .dnd-column {
    margin: 1em 0 !important;
    width: 100% !important;
  }

  .stack .row-fluid .dnd-column:last-child {
    margin: 0 !important;
  }

  .reverse-row-order.stack .row-fluid .dnd-column:first-child {
    margin: 0 !important;
  }
  
  .reverse-row-order.stack .row-fluid {
    align-items: flex-start !important;
    display: flex;
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 480px) {
  .reverse-row-order-mob .row-fluid {
    display: flex;
    flex-direction: row-reverse !important;
  }
  
  .stack-mob .row-fluid {
    align-items: flex-start !important;
    flex-direction: column !important;
    flex-wrap: wrap; 
  }

  .stack-mob .row-fluid [class*="span"] {
    width: 100% !important;
  }

  .stack-mob .row-fluid .dnd-column {
    margin: 1em 0 !important;
    width: 100% !important;
  }

  .stack-mob .row-fluid .dnd-column:last-child {
    margin: 0 !important;
  }

  .reverse-row-order-mob.stack-mob .row-fluid .dnd-column:first-child {
    margin: 0 !important;
  }
  
  .reverse-row-order-mob.stack-mob .row-fluid {
    align-items: flex-start !important;
    display: flex;
    flex-direction: column-reverse !important;
  }
}

/*  Tools
    Any animations, or functions used throughout the theme
    Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
    Note: _variables.css can be ignored, it's already included at the top of this file
*/
/* 
  Animation Styles 
*/
.text-animation-wrapper,
.reveal {
  opacity: 0;
}

.in-view-port.text-animation-wrapper {
  opacity: 1;
  transition: opacity .8s cubic-bezier(.77,0,.175,1);
}

.reveal {
  animation-fill-mode: forwards !important;
  opacity: 0;
  visibility: hidden;
  -webkit-animation-fill-mode: forwards !important;
}

:-webkit-full-screen-ancestor .reveal {
  animation-fill-mode: none !important;
}

.fade-in {
  animation: 1s ease fadeIn;
}

.fade-up {
  animation: 1s ease fadeUp;
}

.fade-down {
  animation: 1s ease fadeDown;
}

.fade-right {
  animation: 1s ease fadeRight;
}

.fade-left {
  animation: 1s ease fadeLeft;
}

.expand-left {
  animation: 1s ease expandLeft;
}

.expand-right {
  animation: 1s ease expandRight;
}

.bubble-up {
  animation: 1s ease bubbleUp;
}

.bubble-down {
  animation: 1s ease bubbleDown;
}

.bubble-left {
  animation: 1s ease bubbleLeft;
}

.bubble-right {
  animation: 1s ease bubbleRight;
}

.zoom-in {
  animation: 1s ease zoomIn;
}

.zoom-out {
  animation: 1s ease zoomOut;
}

/* 
  Keyframes 
*/

/* Fade In */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Fade Up */
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Fade Down */
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Fade Right */
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Fade Left */
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Expand Left */
@-webkit-keyframes expandLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2,1);
    transform: scale(.2,1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
}
@keyframes expandLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2,1);
    transform: scale(.2,1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
}

/* Expand Right */
@-webkit-keyframes expandRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2,1);
    transform: scale(.2,1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
@keyframes expandRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2,1);
    transform: scale(.2,1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

/* Bubble Up */
@-webkit-keyframes bubbleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateY(10px);
    transform: scale(.2, .2) translateY(10px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateY(-5px);
    transform: scale(1.2, 1.2) translateY(-5px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes bubbleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateY(10px);
    transform: scale(.2, .2) translateY(10px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateY(-5px);
    transform: scale(1.2, 1.2) translateY(-5px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

/* Bubble Down */
@-webkit-keyframes bubbleDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateY(-10px);
    transform: scale(.2, .2) translateY(-10px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateY(5px);
    transform: scale(1.2, 1.2) translateY(5px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes bubbleDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateY(-10px);
    transform: scale(.2, .2) translateY(-10px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateY(5px);
    transform: scale(1.2, 1.2) translateY(5px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

/* Bubble Left */
@-webkit-keyframes bubbleLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateX(10px);
    transform: scale(.2, .2) translateX(10px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateX(-5px);
    transform: scale(1.2, 1.2) translateX(-5px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes bubbleLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateX(10px);
    transform: scale(.2, .2) translateX(10px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateX(-5px);
    transform: scale(1.2, 1.2) translateX(-5px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

/* Bubble Right */
@-webkit-keyframes bubbleRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateX(-10px);
    transform: scale(.2, .2) translateX(-10px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateX(5px);
    transform: scale(1.2, 1.2) translateX(5px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes bubbleRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.2, .2) translateX(-10px);
    transform: scale(.2, .2) translateX(-10px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  60% {
    -webkit-transform: scale(1.2, 1.2) translateX(5px);
    transform: scale(1.2, 1.2) translateX(5px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1) translateY(0);
    transform: scale(1,1) translateY(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

/* Zoom In */
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5,.5);
    transform: scale(.5,.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.5,.5);
    transform: scale(.5,.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
  }
}

/* Zoom Out */
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(.5,.5);
    transform: scale(.5,.5);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(.5,.5);
    transform: scale(.5,.5);
  }
}
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.padding-top-0,
.s-padding-top-0 {
  padding-top: 0 !important;
}

.s-padding-bottom-0 {
  padding-bottom: 0 !important;
}

.s-negative-position {
  position: relative;
  top: -200px !important;
}

/*  Responsive
    Leave this file to be the last one in the file, so that the responsive styles take precedence
*/
/*************************************************************
  X-Small devices (portrait phones, less than 576px)
  No media query for `xs` since this is the default
************************************************************/


/************************************************************
  Small devices (landscape phones, 576px and up)
************************************************************/
@media (min-width: 576px) {
 
}


/************************************************************
  Medium devices (tablets, 768px and up)
************************************************************/
@media (min-width: 768px) {

  
}


/************************************************************
  Large devices (desktops, 992px and up)
************************************************************/
@media (min-width: 992px) {

}


/************************************************************
  X-Large devices (large desktops, 1200px and up)
************************************************************/
@media (min-width: 1200px) {
}


/************************************************************
  XX-Large devices (larger desktops, 1600px and up)
************************************************************/
@media (min-width: 1600px) {
  
}


/************************************************************
  Max width
************************************************************/
@media (max-width: 992px) {
}