/* Theme base styles */

@tailwind base;
@tailwind components;
@tailwind utilities;


@layer base {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    @apply m-0 mb-1 lg:mb-2 font-sans;
  }

  h1,
  .h1 {
    @apply text-[40px] lg:text-h1;
  }

  h2,
  .h2 {
    @apply text-3xl lg:text-h2 font-bold;
  }

  h3,
  .h3 {
    @apply text-[26px] lg:text-h3 font-bold leading-1 sm:leading-3;
  }

  h4,
  .h4 {
    @apply font-normal text-xl leading-3 lg:text-h4;
  }

  h5,
  .h5 {
    @apply text-lg lg:text-h5;
  }

  h6,
  .h6 {
    @apply text-base lg:text-h6;
  }

  p, ul {
    @apply font-sans text-xs font-light leading-snug lg:text-p;
  }

  .subheading {
    @apply font-light text-lg xl:text-3xl mb-2;
  }

  .hero-title {
    @apply font-bold text-4xl md:text-[50px] md:leading-none lg:text-[56px] 2xl:text-[68px];
  }

  .hero-subtitle {
    @apply text-sm md:text-base lg:text-lg font-normal;
  }

  .hs_cos_wrapper_type_rich_text a {
    @apply font-bold text-darkPurple;
  }

  .blog-post__body * {
    @apply m-0 font-sans mb-0.5;
  }

  .blog-post__body a {
    @apply font-bold text-darkPurple cursor-pointer;
  }

  .blog-post__body h2,
  .blog-post__body h3,
  .blog-post__body h5,
  .blog-post__body h6 {
    @apply relative after:absolute after:w-full after:h-[4px] sm:after:w-[30%] sm:after:h-[5px] after:left-0 after:-bottom-1 after:bg-purpleGradient;
  }

  .blog-post__body h2 {
    @apply text-2xl lg:text-h2 font-normal lg:font-normal leading-1;
  }

  .blog-post__body h3 {
    @apply text-xl lg:text-h4 font-normal;
  }

  .blog-post__body h4 {
    @apply text-lg lg:text-xl font-normal leading-1;
  }

}

@layer components {
  button,
  .button {
    @apply px-[25px] py-1 font-sans font-medium tracking-wide uppercase text-white text-xs w-fit bg-pink border-2 border-pink hover:border-pinkDark transition-all text-center;
  }

  .button-secondary {
    @apply px-[25px] py-1 font-sans font-medium tracking-wide uppercase text-grey text-xs w-fit bg-white border-2 border-white text-center;
  }

  .button-tertiary {
    @apply px-[25px] py-1 font-sans font-medium tracking-wide uppercase text-greyLight text-xs w-fit bg-transparent border-2 border-pink hover:bg-pink/30 transition-all text-center;
  }

  button:hover,
  button:focus,
  .button:hover,
  .button:focus,
  button:active,
  .button:active {
    @apply bg-pinkDark;
  }

  .button-secondary:hover,
  .button-secondary:focus,
  .button-secondary:active {
    @apply bg-[#f8f8f8];
  }

  .menu__link {
    @apply py-1 px-0 block text-[26px] text-left text-white font-bold uppercase;
    @apply relative lg:font-medium lg:text-sm lg:leading-3 lg:text-grey lg:px-1 lg:py-2 lg:normal-case lg:hover:bg-transparent;
    @apply lg:after:absolute lg:after:content-[''] lg:after:bottom-[18px] lg:after:left-1 lg:after:w-0 lg:after:h-[2px] lg:after:bg-pink lg:after:transition-all lg:after:duration-300 lg:hover:after:w-[calc(100%-20px)];
    text-decoration: none;
  }
 
  .menu__item--open .menu__submenu {
    @apply flex;
  }

  .menu__item--open .menu__child-toggle-icon {
    @apply rotate-180;
  }

  .menu__submenu .menu__item {
    @apply hover:bg-[#F0F3F5] p-0 w-full;
  }

  .menu__submenu .menu__link {
    @apply block text-center lg:text-left py-[7px] px-1 text-[14px] lg:text-[12px] text-grey font-medium w-full uppercase lg:after:bottom-0 lg:after:left-0 lg:hover:after:w-full;
  }

  .footer_menu__link {
    @apply text-xs font-medium;
  }

  .blog-post__body ul {
    @apply list-disc list-inside;
  }
}

@layer utilities {
  /* 
    From Safari 13, only display: none works with this pseudo-element. Other styles have no effect. 
    https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-scrollbar#browser_compatibility
  */
  
  /* width */
  #scroll-navigation::-webkit-scrollbar {
      height: 3px;
      width: 0;
  }

  /* Track */
  /* Bed of the slider */
  #scroll-navigation::-webkit-scrollbar-track {
      background: transparent;
  }

  /* Handle */
  /* Slider */
  #scroll-navigation::-webkit-scrollbar-thumb {
      background: #D7B4F3;
      border-radius: 5px;
  }
}

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
   -webkit-font-smoothing: antialiased;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

/*****************************************/
/***** Containers / Grid / DnD Areas *****/
/*****************************************/

.content-wrapper {
  max-width: 100%;
}

/*.dnd-section,*/
.content-wrapper--vertical-spacing {
  padding: 80px 20px;
}

.dnd-section > .row-fluid {
  max-width: var(--container-max-width);
}

.container-alt-module  {
  max-width: var(--container-alt-max-width);
}

.dnd-section.container-mini > .row-fluid {
  max-width: var(--container-mini-max-width);
}

/* Responsive grid */ 

.row-fluid {
  width: 100%;
}

.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: var(--column-gutter-sm);

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

.row-fluid .span11 {
  width: calc(100% / var(--columns) * 11 - var(--column-gutter-sm));
}

.row-fluid .span10 {
  width: calc(100% / var(--columns) * 10 - var(--column-gutter-sm));
}

.row-fluid .span9 {
  width: calc(100% / var(--columns) * 9 - var(--column-gutter-sm));
}

.row-fluid .span8 {
  width: calc(100% / var(--columns) * 8 - var(--column-gutter-sm));
}

.row-fluid .span7 {
  width: calc(100% / var(--columns) * 7 - var(--column-gutter-sm));
}

.row-fluid .span6 {
  width: calc(100% / var(--columns) * 6 - var(--column-gutter-sm));
}

.row-fluid .span5 {
  width: calc(100% / var(--columns) * 5 - var(--column-gutter-sm));
}

.row-fluid .span4 {
  width: calc(100% / var(--columns) * 4 - var(--column-gutter-sm));
}

.row-fluid .span3 {
  width: calc(100% / var(--columns) * 3 - var(--column-gutter-sm));
}

.row-fluid .span2 {
  width: calc(100% / var(--columns) * 2 - var(--column-gutter-sm));
}

.row-fluid .span1 {
  width: calc(100% / var(--columns) - var(--column-gutter-sm));
}

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

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

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

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

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

  .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: var(--column-gutter-md);

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

  .row-fluid .span11 {
    width: calc(100% / var(--columns) * 11 - var(--column-gutter-md));
  }

  .row-fluid .span10 {
    width: calc(100% / var(--columns) * 10 - var(--column-gutter-md));
  }

  .row-fluid .span9 {
    width: calc(100% / var(--columns) * 9 - var(--column-gutter-md));
  }

  .row-fluid .span8 {
    width: calc(100% / var(--columns) * 8 - var(--column-gutter-md));
  }

  .row-fluid .span7 {
    width: calc(100% / var(--columns) * 7 - var(--column-gutter-md));
  }

  .row-fluid .span6 {
    width: calc(100% / var(--columns) * 6 - var(--column-gutter-md));
  }

  .row-fluid .span5 {
    width: calc(100% / var(--columns) * 5 - var(--column-gutter-md));
  }

  .row-fluid .span4 {
    width: calc(100% / var(--columns) * 4 - var(--column-gutter-md));
  }

  .row-fluid .span3 {
    width: calc(100% / var(--columns) * 3 - var(--column-gutter-md));
  }

  .row-fluid .span2 {
    width: calc(100% / var(--columns) * 2 - var(--column-gutter-md));
  }

  .row-fluid .span1 {
    width: calc(100% / var(--columns) - var(--column-gutter-md));
  }
}

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

  .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: var(--column-gutter-lg);

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

  .row-fluid .span11 {
    width: calc(100% / var(--columns) * 11 - var(--column-gutter-lg));
  }

  .row-fluid .span10 {
    width: calc(100% / var(--columns) * 10 - var(--column-gutter-lg));
  }

  .row-fluid .span9 {
    width: calc(100% / var(--columns) * 9 - var(--column-gutter-lg));
  }

  .row-fluid .span8 {
    width: calc(100% / var(--columns) * 8 - var(--column-gutter-lg));
  }

  .row-fluid .span7 {
    width: calc(100% / var(--columns) * 7 - var(--column-gutter-lg));
  }

  .row-fluid .span6 {
    width: calc(100% / var(--columns) * 6 - var(--column-gutter-lg));
  }

  .row-fluid .span5 {
    width: calc(100% / var(--columns) * 5 - var(--column-gutter-lg));
  }

  .row-fluid .span4 {
    width: calc(100% / var(--columns) * 4 - var(--column-gutter-lg));
  }

  .row-fluid .span3 {
    width: calc(100% / var(--columns) * 3 - var(--column-gutter-lg));
  }

  .row-fluid .span2 {
    width: calc(100% / var(--columns) * 2 - var(--column-gutter-lg));
  }

  .row-fluid .span1 {
    width: calc(100% / var(--columns) - var(--column-gutter-lg));
  }
}

/* Clearfix */

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

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}


/* Responsive visibilty classes */

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

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

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

@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: 1024px) {
  .visible-tablet {
    display: inherit !important;
  }

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

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

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 var(--content-px);
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0 var(--content-px);
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

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

html[lang^="en"] body,
html[lang^="sr"] body {
  word-break: keep-all;
}

body {
  color: var(--color-text);
  background-color: var(--body-bg-color);
  -webkit-font-smoothing: antialiased;
}

/*****************************************/
/*************** Buttons *****************/
/*****************************************/

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}
.hs-form,
form {
  line-height: 1.625;
  font-family: var(--font-family);
  font-weight: var(--font-weight-light);
}

.form-title {
  line-height: 1.2;
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: 48px;
  margin-bottom: 25px;
  color: var(--color-dark-purple)
}

/* Fields */

.simple-form-section .hs-fieldtype-text,
.simple-form-section .hs-fieldtype-textarea {
  width: 60%;
}

@media(max-width: 768px) {
  .simple-form-section .hs-fieldtype-text,
  .simple-form-section .hs-fieldtype-textarea {
    width: 100%;
  }
}

.hs-form-field {
  margin-bottom: 20px;
}

/* Labels */

form label {
  display: block;
  font-size: 16px;
  color: var(--color-black)
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

/*form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,*/
.hs-input {
  display: inline-block;
  font-size: 14px;
  padding: 10px;
  width: 100% !important;
  background-color: var(--color-white);
  border: none;
  color: #373738;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

.hs-fieldtype-checkbox .inputs-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.hs-fieldtype-checkbox .inputs-list li label:hover {
  cursor: pointer;
  background-color: rgba(15, 22, 28, 0.7);
  color: var(--color-white);
}

.hs-fieldtype-checkbox .inputs-list li label {
  border: 2px solid rgba(15, 22, 28, 0.7);
  border-radius: 100px;
  background-color: var(--color-white);
  line-height: 1.625;
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark-purple);
  padding: 8px 38px;
  margin: 0;
}

@media (max-width: 768px) {
  .hs-fieldtype-checkbox .inputs-list li label {
    padding: 6px 12px;
  }
}

.hs-fieldtype-checkbox .inputs-list li .checked {
  background-color: rgba(15, 22, 28, 0.7);
  color: var(--color-white);
}

.hs-fieldtype-checkbox .inputs-list li input[type=checkbox] {
  display: none;
}

.hs-fieldtype-checkbox .inputs-list li input[type=checkbox]:checked .hs-fieldtype-checkbox .inputs-list li label{
  background-color: rgba(15, 22, 28, 0.7);
  color: var(--color-white);
}


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 - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background-color: #B8D0FC;
  padding: 10px 48px;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
}

form .hs-button:hover,
form input[type=submit]:hover {
  background-color: #ACC8FB;
}

.hbspt-form input[type=submit].hs-button {
  /* all: unset !important; */
  padding: 10px 25px;
  font-family: 'Poppins';
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) /* #ffffff */;
  font-size: 14px;
  line-height: 1rem;
  width: fit-content;
  background-color:  rgb(215 180 243 / var(--tw-bg-opacity, 1));
  border-color: rgb(215 180 243 / var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hbspt-form input[type=submit].hs-button:hover {
  background-color: rgb(197 152 234 / var(--tw-border-opacity, 1));
  border-color: rgb(197 152 234 / var(--tw-border-opacity, 1))
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

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

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

/*****************************************/
/**************** Header *****************/
/*****************************************/

.header {
  /*position: relative;*/
  z-index: 50;
}

body .navigation-primary a,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  color: var(--color-black);
  font-size: 12px;
  font-family: var(--font-family);
}

body .navigation-primary a:hover,
body .navigation-primary a:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  color: #21222a;
}

body .navigation-primary a:active,
.header__language-switcher-label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: #71727a;
}

body .navigation-primary .submenu.level-1 > li > a.active-item:after {
  background-color: #494a52;
}

body .submenu.level-2,
.header__language-switcher .lang_list_class {
  background-color: #f8fafc;
  border-color: #494a52;
}

body .submenu.level-2 > li:first-child:before {
  border-color: #494a52;
}

.header__language-switcher .lang_list_class:before {
  border-bottom-color: #494a52;
}

body .submenu.level-2 .menu-item .menu-link:hover,
body .submenu.level-2 .menu-item .menu-link:focus,
.header__language-switcher .lang_list_class li:hover,
body .submenu.level-2 > li:first-child:hover:before,
body .submenu.level-2 > li:first-child.focus:before {
  background-color: #f8fafc;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: #f8fafc;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  font-family: var(--font-family);
}

.header__language-switcher-label-current:after {
  border-top-color: #494a52;
}

@media (max-width: 767px) {
  .header__navigation {
    background-color: #f8fafc;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #494a52;
  }
}

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  position: relative;
  display: flex;
  max-width: calc(var(--container-max-width) + 2 * var(--content-px));
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--color-white);
  height: 80px;
  z-index: 99;
  transition: 0.5s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
}

.header__container-small {
  height: 60px;
}

.header__container-white {
  background-color: white;
}

.header-logo-wrapper{
  display: flex;
  align-items: center;
  z-index: 999;
}

.header__navigation {
  display: flex;
  align-items: center;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header__column {
  display: flex;
}

.header-hat-wrapper {
  position: relative;
  padding: 6px 40px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}

.header-hat-wrapper-small {
  max-height: 0px;
  padding: 0 40px;
}

.header-hat-wrapper .header-hat-link {
  color: var(--color-dark-purple);
  margin-left: 20px;
  font-size: 12px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  display: flex;
}

.header-hat-wrapper .border-link {
  border: 1px solid var(--color-dark-purple);
  border-radius: 100px;
  padding: 3px 16px;
}

.header-hat-wrapper .border-link:hover {
  background-color: var(--color-dark-purple);
  color: var(--color-white);
}


@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 1024px) {

  .header__container {
    flex-direction: column;
    justify-content: center;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
  }

  .header-hat-wrapper{
    display: none;
  }

  .header__logo {
    width: 100%;
  }

}

@media (max-width: 767px){
  .header-secondary-navigation-wrapper{
    display: none;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  height: auto;
  margin-right: auto;
  max-width: 130px;
  overflow: hidden;
}

.header__logo a {
  display: block;
  font-size: 0;
}

/*.header__logo img {
  max-width: 100%;
}*/

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
  color: #373738;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 1024px) {
  .header__language-switcher {
    /*border-top: 2px solid #CED4DB;*/
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  /*.header__language-switcher--label-current {
    display: none;
  }*/

  /*.header__language-switcher .globe_class {
    background-image: none;
  }*/

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1024px) {
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  /*.header__language-switcher {
    display: none;
    width: 100%;
  }*/

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #D7B4F3;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    min-width: 100vw;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle .burger-bar{
    height: 2px;
    width: 18px;
    display: block;
    transition: 0.4s;
  }

  .header__navigation--toggle .burger-bar-middle{
    margin: 6px 0;
  }

  .open .burger-bar-top {
    /*-webkit-transform: rotate(-45deg) translate(-6px, 7px);*/
    transform: rotate(45deg) translate(6px, 7px);
    width: 25px;
  }

  .open .burger-bar-middle {opacity: 0;}

  .open .burger-bar-bottom {
    /*-webkit-transform: rotate(45deg) translate(-7px, -8px);*/
    transform: rotate(-45deg) translate(4px, -6px);
    width: 25px;
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

@media (max-width: 768px){
  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    min-height: 100vh;
  }
}
/*****************************************/
/**************** Footer *****************/
/*****************************************/

.footer {
  background-color: var(--footer-bg-color);
}


.footer-title-container img {
  max-width: 250px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons img {
  max-width: 20px;
}

/*.footer-fine-print {
  grid-area: fineprint;
}*/

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: var(--footer-text-color);
}

.footer-fine-print {
  display: flex;
  flex-direction: row;
  padding-top: 120px;
}

.footer-fine-print-item-wrapper {
  display: flex;
  flex-direction: row;
}

.footer-fine-print-item {
  padding-right: 30px;
}

.footer-title {
  font-size: 52px !important;
}

.footer-logo img {
  max-width: 100%;
}


@media (max-width: 1024px) {
  .footer-title-container {
    padding: 0 100px;
  }

  .footer-title-container img{
    margin: auto;
  }

  .footer-description  {
    text-align: center;
  }

  /* .footer-navigation {
    padding-top: 100px;
    padding-bottom: 90px;
  } */
 
  .footer-fine-print {
    flex-direction: column;
    padding-top: 18px;
    width: 60%;
  }
  .footer-fine-print-item-wrapper {
    padding-top: 10px;
  }

  .footer-logo {
    padding-top: 100px;
  }
}

@media (max-width: 700px) {

  .footer-title-container {
    padding: 0;
  }

   .footer-title {
    font-size: 28px !important;
    line-height: 1 !important;
    letter-spacing: -0.28px !important;
    margin-bottom: 20px !important;
  }

  .footer-description {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.18px;
  }


  .footer-logo {
    padding-top: 0;
  }

  .footer-logo img {
    max-width: 155px;
  }

  .footer-logo-description .paragraph-small {
    font-weight: var(--font-weight-light) !important;
  }

  .footer-fine-print {
    width: 90%;
    padding-top: 40px;
  }
}
/* 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 {
  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 */

:root {
  --spacing: 10px;

  --container-max-width: 1520px;
  --container-alt-max-width: 1260px;
  --container-mini-max-width: 1000px;

  --content-px: calc(var(--spacing) * 4);

  --columns: 12;
  --column-gutter-lg: calc(var(--spacing) * 3);
  --column-gutter-md: calc(var(--spacing) * 3);
  --column-gutter-sm: calc(var(--spacing) * 3);

  --color-white: #fff;
  --color-dark-purple: #0f161c;
  --color-black: #000;


  --color-text: var(--color-black);
  --body-bg-color: var(--color-white); 

  --footer-bg-color: var(--color-dark-purple);
  --footer-text-color: var(--color-white);

  /* Fonts */
  --font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --font-weight-light: 300;
  --font-weight-regular: normal;
  --font-weight-medium: 500;
  --font-weight-bold: bold;
}


/* Sections
Specific modules of UI that are stylized for sections.
*/

.hero-overlay {
  position: relative;
}

.hero-overlay > *,
.hero-2 > * {
  position: relative;
  z-index: 1;
}

.hero-2 .row-fluid-wrapper {
  width: calc(50% + 40px);
}

@media(max-width: 1280px) {
  .hero-2 .row-fluid-wrapper {
    width: calc(75% + 40px);
  }
}

@media(max-width: 1024px) {
  .hero-2 .row-fluid-wrapper {
    width: calc(65% + 40px);
  }
}

@media(max-width: 768px) {
  .hero-2 .row-fluid-wrapper {
    width: 100%;
  }
}

.hero-overlay::after {
  content: "";
  width: 100%;
  height: 238px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(15, 22, 28, 0), rgb(15, 22, 28));
}

.hero-overlay::before {
  content: "";
  width: 100%;
  height: 238px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(15, 22, 28, 1) 35%, rgba(15, 22, 28, 0));
}
.cover-promo-title {
	font-weight: var(--font-weight-light) !important;
}

@media (max-width: 767px) {
  .cover-promo-title{
  	font-size: 32px !important;
  }
}
.promotion-section > .row-fluid{
  display: flex !important;
}

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

.promotion-section .row-fluid .span6 {
  width: 50%;
}

@media (max-width: 1024px) {
  .promotion-section .row-fluid .span6 {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .promotion-section .row-fluid .span6 {
    width: 50%;
  }
}
.background-video > .row-fluid {
    max-width: unset !important;
}

.swiper-pagination-bullet {
  width: 50px !important; 
  height: 4px !important;
  margin-right: 20px !important;
  background-color: #c0c0c0 !important;
  border-radius: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: #B8D0FC !important;
}

.featured-services .swiper-button-next,
.featured-services .swiper-button-prev {
  color: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #B8D0FC !important;
}

.swiper-button-disabled {
  color: #c0c0c0 !important;
}