/* Theme base styles */

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

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {

	--body-font: "Poppins", sans-serif;
	--body-font-size: 16px;

	--color-white: #ffffff;
	--color-black: #000000;

	--color-gray-light-alt: #E2E2E2;
	--color-gray-light: #F2F3F3;
	--color-gray: #38504c;
	--color-gray-dark: #2b3c39;

	--color-green: #40c1ac;
	--color-pink: #da1884;
	--color-orange: #e6490b;
	--color-yellow: #e1e43c;
	--color-blue: #baf4eb;

	--header-height: 95px;
	--header-height-mobile: 80px;
	--header-border-radius: 1rem;
	--header-container-spacing: 1.5rem;

	--submenu-item-x-padding: 0.9rem;
	--submenu-item-y-padding: 0.7rem;

	--container-padding-mobile: 1.5rem;
	--container-padding-tablet: 2rem;
	--container-padding-desktop: 3rem;
	--container-padding: var(--container-padding-mobile);	

	--card-rounded: 1rem;
	--card-padding: 1.25rem;
	--card-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);

	--button-rounded: 0.85rem;
	--button-padding: 0.45rem 0.8rem;
}

@media (min-width: 600px) {
	:root {
	  --container-padding: var(--container-padding-tablet);
	}
  }
  
  @media (min-width: 1200px) {
	:root {
		--container-padding: var(--container-padding-desktop);
	}
  }
  

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

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

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

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: 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;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

address {
  font-style: normal;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {

  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 var(--container-padding);
}


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

.dnd-section .dnd-column {
  padding: 0 1rem;
}

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

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

html {
  font-size: var(--body-font-size);
}


body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: var(--body-font);
  font-size: var(--body-font-size);
}



/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  font-family: var(--body-font);
  text-decoration: none;
  color: var(--color-pink);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  font-weight: bold;
}

h1,
.h1, 
h2,
.h2, 
h3,
.h3, 
h4,
.h4, 
h5,
.h5, 
h6,
.h6 {
  font-family: var(--body-font);
}

h1 {
  font-size: 60px; 
  line-height: 65px;
}

h2 {
  font-size: 54px;
  line-height: 60px;
}

h3 {
  font-size: 34px;
  line-height: 40px;
}

h4 {
  font-size: 25px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}


@media (max-width: 1300px) {
  h1 {
    font-size: 50px;
    line-height: 55px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media (max-width: 1150px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 34px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

/* Lists */

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

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.buttons-wrapper.align-center {
  justify-content: center;
}

.buttons-wrapper.align-right {
  justify-content: end;
}


.button,
.button-gray,
.button-pink,
.hs-button,
.hs-blog-post-listing__post-button {
  background: var(--color-gray);
  border-radius: var(--button-rounded);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  padding: var(--button-padding);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: initial;
}

.button:not(.button-gray):first-child,
.hs-button:first-child,
.hs-blog-post-listing__post-button:first-child {
  background-color: var(--color-pink);
}


button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:focus {
  color: #fff;
  text-decoration: none;
}


button:disabled,
.button:disabled,
.hs-button:disabled {
  opacity: 0.7;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  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;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.oembed_container.oembed_container {
	display: block;
	margin: 0 auto;
}
.card-link {
    text-decoration: none;
	transition: all 0.2s ease-in-out;
	filter: brightness(100%);
}

.card-link:hover {
	text-decoration: none;
	filter: brightness(97%);
}

.card {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
	position: relative;
	max-width: 100%;
	height: 100%;
	border-radius: var(--card-rounded);
	padding: var(--card-padding);
	margin-top: 1rem;
  }
  
  .card-image {
	height: auto;
	max-width: 100%;
  }

  .card-image-rounded {
	border-radius: var(--card-rounded);
  }
  
  .card-text {
	width: 100%;
  }

  .card-text p:last-of-type {
	margin: 0;
  }
.posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(250px, 1fr));
	gap: 2rem;
}

@media screen and (max-width: 1150px) {
	.posts {
		grid-template-columns: repeat(2, minmax(250px, 1fr));
	}
}

@media screen and (max-width: 650px) {
	.posts {
		grid-template-columns: repeat(1, minmax(250px, 1fr));
	}
}

.blog-card-wrapper {
	position: relative;
	height: 100%;
}

.blog-card-wrapper::after {
	bottom: 0;
	box-shadow: 1px 5px 17px rgba(0, 0, 0, .4);
	content: "";
	height: 10px;
	position: absolute;
	left: var(--card-rounded);
	z-index: 0;
	right: 8%;
}


.blog-card {
	background: #fff;
	width: 100%;
	height: 100%;
	border-radius: var(--card-rounded);
	padding: var(--card-padding);
	clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
	z-index: 1;
}

.blog-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--card-rounded);
}

.blog-card-head-section {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.blog-card-main-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}


.blog-card-title-link {
	color: #000;
}

.blog-card-title,
.blog-card-summary {
	margin-bottom: 0;
}

.blog-card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-gray-light-alt);
}

.blog-card-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-card-author-name {
	color: #000;
}

.blog-card-author-image {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	overflow: hidden;
	border-radius: 0.5rem;
	width: 40px;
}


.blog-card-tags {
	display: flex;
	gap: 0.35rem;
}

.blog-card-tag {
	display: inline-block;
	background: var(--color-gray-light);
	color: var(--color-pink);
	padding: 0.45rem 1.75rem 0.45rem 0.5rem;
	clip-path: polygon(0 0,100% 0,75% 100%,0 100%);
}

/* Head blog card */

.head-blog-card {
	grid-column: 1/-1;
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(2, minmax(250px, 1fr));
	padding-bottom: 3rem;
	border-bottom: 2px solid var(--color-green);
	margin-bottom: 2rem;
}

@media screen and (max-width: 650px) {
	.head-blog-card {
		grid-template-columns: repeat(1, minmax(250px, 1fr));
	}
}

.head-blog-card-main-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
}
.hs-pagination__link--number {
	background-color: #fff;
	height: 38px;
	width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--button-rounded);
}

.hs-pagination__link--number.hs-pagination__link--active {
 background: var(--color-pink);
 color: #fff;
}

.hs-pagination__link.hs-pagination__link--text-and-icon {
	color: var(--color-pink);
	background-color: #fff;
	padding: 8px 15px;
	border-radius: var(--button-rounded);

}

.hs-pagination__link--text-and-icon .hs-pagination__link-icon {
	display: none;
}

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

/* Header DND sections */

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

/* Header container */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: var(--header-container-spacing);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  color: #fff;
  transition: 0.3s ease-in-out;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--header-container-spacing);
  padding-right: var(--header-container-spacing);
  border-radius: var(--header-border-radius);
  background: var(--color-gray-dark);
  height: var(--header-height);
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1109px) {
  .header__container {
    height: var(--header-height-mobile);
  }
}

/* When header is scrolled  */
.header.header-scrolled {
  padding-top: 0;
}

.header.header-scrolled .header__container {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}



.header-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Logo */

.header__logo img {
  max-width: 100%;
  max-height: 80px;
}

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


.header-section #hs_cos_wrapper_navigation-primary {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


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


@media (max-width: 1109px) {
  .header__navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: calc(var(--header-height) + 40px);
    background: var(--color-gray);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    overflow: auto;
  }

  .header__navigation.open {
    opacity: 1;
    visibility: visible;
  }

  .header-section #hs_cos_wrapper_navigation-primary {
    display: block;
    width: 100%;
  }

  .header__navigation .menu__wrapper {
    flex-direction: column;
  }
}

.header__buttons .buttons-wrapper {
  flex-wrap: nowrap;
}


@media (max-width: 1109px) { 
.header__buttons {
  display: none;
}
}

/* Menu */

.header__navigation .menu,
.header__navigation .menu__wrapper,
.header__navigation .menu__item,
.header__navigation .menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 1109px) {
  .header__navigation .menu,
  .header__navigation .menu__wrapper,
  .header__navigation .menu__item,
  .header__navigation .menu__link {
    display: flex;
    height: auto;
    width: 100%;
  }
}

.header__navigation .menu__wrapper {
  row-gap: 1rem;
  column-gap: 1.75rem;
}

/* Menu items */

.header__navigation .menu__item {
  position: relative;
}

.header__navigation .menu__link,
.header__navigation .menu__link:hover,
.header__navigation .menu__link:focus,
.header__navigation .menu__link:active {
  text-decoration: none;
  color: #fff;
}


@media (max-width: 1109px) {
  .header__navigation .menu__item {
    display: block;
    width: 100%;
  }

  .header__navigation .menu__link {
    display: block;
  }
}

/* Menu items - top level */

.header__navigation .menu__item--depth-1 {
  display: inline-block;
  padding: 0.7rem 0;
  display: flex;
  gap: 0.25rem;
}

.header__navigation .menu__item--depth-1>.menu__link::after {
  bottom: 0px;
  content: '';
  height: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: 0.3s;
  background: var(--color-pink);
}

.header__navigation .menu__item--depth-1 > .menu__link:hover::after,
.header__navigation .menu__item--depth-1 > .menu__link.menu__link--active-link::after {
  height: 4px;
}

@media (max-width: 1109px) {
  .header__navigation .menu__item--depth-1 {
    padding: 0;
    display: block;
  }

  .header__navigation .menu__item--depth-1>.menu__link,
  .header__navigation .menu__child-toggle {
    padding: 0.5rem var(--container-padding);
  }

  .header__navigation .menu__item--depth-1>.menu__link:after {
    display: none;
  }

  .header__navigation .menu__item--depth-1>.menu__link--active-link:after {
    content: none;
  }
}

/* Menu items - submenus */

.header__navigation .menu__submenu {
  background: linear-gradient(to bottom, black, var(--color-gray-dark));
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 var(--card-rounded) var(--card-rounded);
  display: none;
  left: 0;
  position: absolute;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 270px;
  z-index: 99;
}

.header__navigation .menu__item--open>.menu__submenu {
  display: block;
}

/* Keeps the first menu item's drop down menu aligned to the left of the top level menu item */

.header__navigation .menu__item--depth-1:first-child .menu__submenu--level-2 {
  transform: unset;
}

.header__navigation .menu__submenu .menu__item {
  padding: 0;
  width: 100%;
}

.header__navigation .menu__submenu .menu__item:nth-child(2n) {
  background-color: var(--color-gray-dark);
}

.header__navigation .menu__submenu .menu__item:last-child {
  border-radius: 0 0 var(--card-rounded) var(--card-rounded);
}


.header__navigation .menu__submenu .menu__link {
  display: block;
  padding: var(--submenu-item-y-padding) var(--submenu-item-x-padding);
  transition: background-color 0.3s;
  width: 100%;
}

.header__navigation .menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */

.header__navigation .menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */

.header__navigation .menu__submenu .menu__item--has-submenu>.menu__link {
  padding-right: 3rem;
}

/* Creates the triangle at the top of the submenu drop down */

@media (min-width: 1110px) {
  .header__navigation .menu__submenu--level-2>.menu__item:first-child:before {
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 20%);
    content: '';
    display: block;
    height: 30px;
    left: 125px;
    margin-left: 1rem;
    overflow: hidden;
    position: absolute;
    top: -12px;
    transform: rotate(45deg);
    transition: background-color .3s;
    width: 30px;
    z-index: 2;
  }

  /* Keeps triangle to the left for the first menu item's drop down menu */

  .header__navigation .menu__item--depth-1:first-child>.menu__submenu--level-2>.menu__item:first-child:before {
    left: 0;
  }

  .header__navigation .menu__submenu--level-2>.menu__item:first-child>.menu__link {
    position: relative;
    z-index: 2;
  }

  .header__navigation .menu__item--depth-1 > .menu__submenu--level-2 > .menu__item .menu__child-toggle {
    transform: rotate(-90deg);
    margin: 0 var(--submenu-item-x-padding);
  }

}

@media (max-width: 1109px) {
  .header__navigation .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
  }

  .header__navigation .menu__submenu .menu__item {
    border-bottom: none;
    border-top: 2px solid #EBEFF3;
    padding: 0;
  }

  .header__navigation .menu__submenu .menu__link {
    display: block;
    padding: 0.7rem 2rem;
    transition: none;
    width: 100%;
  }

  .header__navigation .menu__submenu .menu__item .menu__link:hover,
  .header__navigation .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .header__navigation .menu__item--has-submenu>.menu__link {
    width: 70%;
  }

  .header__navigation .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }
}

/* Menu icons */

  .header__navigation .menu__child-toggle-icon {
    display: block;               
    margin-left: 0.25rem;
    height: 8px;
    width: 7px;
    transition: transform 0.4s;
    position: relative;
  }

  .header__navigation .menu__child-toggle-icon::after,
  .header__navigation .menu__child-toggle-icon::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
  }

  .header__navigation .menu__child-toggle-icon::before {
    left: 0;
    transform: rotate(-45deg);
  }

  .header__navigation .menu__child-toggle-icon::after {
    right: 0;
    transform: rotate(45deg);
  }

  .header__navigation .menu__item--open>.menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(180deg);
    transition: transform 0.4s;
  }

  @media (max-width: 1109px) {
    .header__navigation .menu__child-toggle {
      position: absolute;
      right: 0;
      top: 0;
      width: 30%;
      height: 38px;
    }

    .header__navigation .menu__child-toggle-icon {
    height: 12px;
    margin-left: auto;
    width: 10px;
    }
  }
.header__navigation--toggle {
	display: none; 
	position: relative;
	height: 32px;
	width: 32px;
	background: none;
	border: none;
	outline: none;
	border-radius: 10rem;
	background-color: var(--color-pink);
	transition: all 0.3s ease-in-out;
  }
  
  .header__navigation--toggle .bar {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 7px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
  }

  
  .header__navigation--toggle .bar:nth-child(1) {
	top: 9px;
  }
  
  .header__navigation--toggle .bar:nth-child(2) {
	top: 50%;
	transform: translate(0, -50%);
  }
  
  .header__navigation--toggle .bar:nth-child(3) {
	bottom: 9px;
  }
  
  
  .header__navigation--toggle.open .bar:nth-child(1) {
	top: 50%;
	transform: translate(0, -50%) rotate(-45deg);
  }
  
  .header__navigation--toggle.open .bar:nth-child(2) {
	opacity: 0;
  }
  
  .header__navigation--toggle.open .bar:nth-child(3) {
	bottom: 50%;
	transform: translate(0, 50%) rotate(45deg);
  }
  
  @media (max-width: 1109px) {
	.header__navigation--toggle {
	  display: block;
	}
  }
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 { 
  font-weight: 600;
  margin-bottom: 0;
  }


.footer-dark {
  background-color: var(--color-black);
  padding: 3.5rem 0; 
}

.footer-light {
  padding: 1.5rem 0; 
}

.footer-main-inner {
 display: grid;
 grid-template-columns: repeat(4,minmax(0,1fr));
 width: 100%;
}

.footer-main-inner .menu__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media (max-width: 768px) {
  .footer-main-inner {
    gap: 2rem;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 480px) {
  .footer-main-inner {
    grid-template-columns: repeat(1,minmax(0,1fr));
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section.footer-section-has-title {
  gap: 0.8rem;
}

.footer-secondary-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
 }

 @media screen and (max-width: 768px) {
  .footer-secondary-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
 }

 .footer-disclaimer {
  display: flex;
  align-items: center;
 }

 .footer-image-row {
  display: flex;
 }

 .footer-dark .hs-social-follow {
  margin-left: -11px;
 }

/* Footer content */

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

.footer-light a,
.footer-light p,
.footer-light h1,
.footer-light h2,
.footer-light h3,
.footer-light h4,
.footer-light h5,
.footer-light h6,
.footer-light label,
.footer-light span,
.footer-light li,
.footer-light img {
  color: var(--color-black);
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

/* CTA, logo, and rich text images */

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

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

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

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
.swiper-outer {
	padding: 0 3rem;
	position: relative;
}

.swiper {
	position: static;
}

.swiper-button-prev,
.swiper-button-next {
	background: var(--color-pink);
	border-radius: 0.8rem;
	color: #fff;
	font-size: 1.5rem;
	padding: 0.2rem 0.85rem;
	height: auto;
	width: auto;
	text-align: center;
}

.swiper-button-disabled {
 color: var(--color-gray-light);
 background-color: var(--color-gray);
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}
.body-container--home .animatable-part {
  opacity: 0;
  transform: translate(0, 10px);
  transition: 0.3s ease-in-out;
  will-change: opacity, transform;
  animation-duration: 0.2s;
}

.body-container--home .animatable-part.animate-in {
  opacity: 1;
  transform: translate(0, 0);
}