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



:root {
	
	--color-white: #ffffff;
	--color-black: #000000;
	
	--color-gray-light: #f5f2ef;
	--color-gray: #7e7e7e;
	--color-gray-dark: #24272a;

	--color-green: #7af495;
	--color-green-light: #d2f0d9;
	--color-pink: #fb1982;
	--color-purple: #6752c7;
	--color-blue: #beebff;
	--color-yellow: #f6e556;
	--color-maroon: #53002a;


	--body-font: "Inter", sans-serif;
	--body-font-size: 16px;
	--body-background: var(--color-gray-light);
	

	--header-height: 85px;
	--header-height-mobile: 80px;
	--header-border-radius: 1rem;
	--header-container-spacing: 1.5rem;
	--header-bg: rgba(255,255,255,0.8);
	--header-bg-scrolled: rgba(255,255,255,1);
	--header-menu-item-text: var(--color-black);

	--submenu-header-font-size: 1.7rem;
	--submenu-item-x-padding: 0.9rem;
	--submenu-item-y-padding: 0.7rem;
	--submenu-column-count: 4;

	--container-padding-mobile: 1.5rem;
	--container-padding-tablet: 2.5rem;
	--container-padding-desktop: 4rem;
	/* Base padding for containers, updates depending on screen size */
	--container-padding: var(--container-padding-mobile);	
	--minus-container-padding: calc(var(--container-padding) * -1);

	--heading-font: "Uxum Grotesque", sans-serif;
	
	--card-rounded: 1rem;
	--card-padding: 1.5rem;
	--card-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);

	--button-rounded: 10rem;
	--button-font-weight: 500;

	--section-padding: var(--container-padding) ;
	--section-rounded: 1.5rem;

	/* --main-text-width: 900px; */
	--main-width-clamp: 1140px;

	--footer-section-spacing: 1.5rem;

	--decoration-border: 2px solid #000;
	--decoration-size: 55px;

	--icon-arrow-left: "\e907";
	--icon-arrow-right: "\e90a";
	--icon-plus: "\e90b";


}

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

*, *: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 */
  overflow-x: hidden;
}

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

address {
  font-style: normal;
}
.hide.hide.hide {
  display: none;
}

.number-count {
  display: flex;
  width: var(--decoration-size);
  height: var(--decoration-size);
  justify-content: center;
  align-items: center;
  border: var(--decoration-border);
  border-radius: 10rem;
  font-size: 1.75rem;
  font-weight: bold;
  font-family: var(--heading-font);
}

.accent-circle {
  border: 2px solid #000;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 10rem;
  width: 20px;
  height: 20px;
}

:root {
  --margin-xs: 1rem;
  --margin-sm: 2rem;
  --margin-md: 3rem;
  --margin-lg: 4rem;
  --margin-xl: 5rem;
}

/* Margins */
.mt-none {
  margin-top: 0;
}

.mt-auto {
  margin-top: auto;
}

.mt-xs {
  margin-top: var(--margin-xs);
}

.mt-sm {
  margin-top: var(--margin-sm);
}

.mt-md {
  margin-top: var(--margin-md);
}

.mt-lg {
  margin-top: var(--margin-lg);
}

.mt-xl {
  margin-top: var(--margin-xl);
}

.mb-none {
  margin-bottom: 0;
}

.mb-auto {
  margin-bottom: auto;
}

.mb-xs {
  margin-bottom: var(--margin-xs);
}

.mb-sm {
  margin-bottom: var(--margin-sm);
}

.mb-md {
  margin-bottom: var(--margin-md);
}

.mb-lg {
  margin-bottom: var(--margin-lg);
}

.mb-xl {
  margin-bottom: var(--margin-xl);
}


/* Accent colors */
.bg-and-color.accent-green {
	background-color: var(--color-green);
	color: #000;
}

.bg-and-color.accent-black {
  background-color: #000;
  color: #fff;
}

.bg-and-color.accent-pink {
  background-color: var(--color-pink);
  color: #fff;
}

.bg-and-color.accent-purple {
  background-color: var(--color-purple);
  color: #fff;
}

.bg-and-color.accent-yellow {
  background-color: var(--color-yellow);
  color: #000;
}

.bg-and-color.accent-blue {
  background-color: var(--color-blue);
  color: #000;
}


.border-and-inner {
  border-width: 1px;
  border-style: solid;
}

.border-and-inner.accent-green {
  border-color: var(--color-green);
    .inner {
      background-color: var(--color-green);
    }
}

.border-and-inner.accent-none {
  border-color: transparent;
    .inner {
      background-color: transparent;
    }
}

.border-and-inner.accent-black {
  border-color: #000;
    .inner {
      background-color: #000;
    }
}

.border-and-inner.accent-pink {
  border-color: var(--color-pink);
    .inner {
      background-color: var(--color-pink);
    }
}

.border-and-inner.accent-purple {
  border-color: var(--color-purple);
    .inner {
      background-color: var(--color-purple);
    }
}

.border-and-inner.accent-yellow {
  border-color: var(--color-yellow);
    .inner {
      background-color: var(--color-yellow);
    }
}

.border-and-inner.accent-blue {
  border-color: var(--color-blue);
    .inner {
      background-color: var(--color-blue);
    }
}



.bg-green {
  background-color: var(--color-green);
}

.bg-black {
  background-color: #000;
}

.bg-pink {
  background-color: var(--color-pink);
}

.bg-purple {
  background-color: var(--color-purple);
}

.bg-gray {
  background-color: var(--color-gray-light);
}

/* 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%;
  gap: 1rem;
}

.dnd-section > .row-fluid > .widget-span {
  position: relative;
}


  .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;
  }
}
[class*="bottom-waves-"] {
	position: relative;

	&:after {
		pointer-events: none;
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		margin-bottom: -5px;
		width: 100%;
		z-index: 9;
		height: 320px;
		mask-size: cover;
		mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkyMCIgaGVpZ2h0PSI1NTAiIHZpZXdCb3g9IjAgMCAxOTIwIDUxOS4wNTgiPg0KICA8ZGVmcz4NCiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+DQogICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlXzI0MiIgZGF0YS1uYW1lPSJSZWN0YW5nbGUgMjQyIiB3aWR0aD0iMTkyMCIgaGVpZ2h0PSI3NzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgNDI0MCkiIGZpbGw9Im5vbmUiPjwvcmVjdD4NCiAgICA8L2NsaXBQYXRoPg0KICA8L2RlZnM+DQogIDxnIGlkPSJNYXNrX0dyb3VwXzciIGRhdGEtbmFtZT0iTWFzayBHcm91cCA3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC00MjQwKSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzI1NiIgZGF0YS1uYW1lPSJQYXRoIDI1NiIgZD0iTTY2MzcuODE4LDE1MC4yNmMtNTYuMTM1LDIxLjY4OS0yMjMuNjc2LDc0LjIxLTUyNi41OTIsNzQuMjEtMzgyLjE0OCwwLTY4NS44OC0xNTMuOTU1LTExMTAuMTI1LTE1My45NTUtMzM4LjY4MiwwLTQ5Ny45NjgsNTMuMTYxLTU0MC44OTQsNzAuMTc2bC0yNi45MDgsNy45NGExOS40MzUsMTkuNDM1LDAsMCwwLTcuMjEyLDEuMjIyYy0zLjQ4OCwxLjMzOC03LjQsMi44MTEtMTEuNzU0LDQuMzczbC0xMi41MDcsMy42ODR2LjY1OWMtNzIuODA2LDI0LjUtMjM0LjcsNjUuNDkzLTUwMi4zMzIsNjUuNDkzLTM4Mi4xNDYsMC02ODUuODc5LTE1My45NTUtMTExMC4xMjQtMTUzLjk1NS0zMzguNjY4LDAtNDk3Ljk2Nyw1My4xNjEtNTQwLjg5Myw3MC4xNjZMMjE5MC4wOTUsMTU3LjVjLTUzLjY1MSwxOS43NzktMjEzLjc2Niw2Ni41Ni01MzEuMjYsNjYuNTZDMTIzNC41OSwyMjQuMDYyLDkzMC44NTcsNzAuMTA3LDU0OC43LDcwLjEwN2MtMzIzLjU0LDAtNDkyLjQ3Myw1OS43NTMtNTM2LjUsNzguMjUzQzQuNzgxLDE1MS4zMzYuMzc4LDE1Ny4wNzYuMzc4LDE2My40NTZWNjQ2LjM4MWMwLDguNzE3LDExLjU1MywxNC4wMjksMjEuNzM5LDEwLjIsNTYuMTIzLTIxLjY4OSwyMjMuNjc2LTc0LjIxLDUyNi41ODEtNzQuMjEsMzgyLjE1OSwwLDY4NS44OTIsMTUzLjk1NiwxMTEwLjEzNywxNTMuOTU2LDMxNy4xMywwLDQ3Ni45NjktNDYuNjE3LDUzMS4yNi02Ni41MTJsNjguMDE0LTIwLjg4NGM1My42MzktMTkuNzc5LDIxMy43NjYtNjYuNTYxLDUzMS4yNi02Ni41NjEsNDI0LjI0NSwwLDcyNy45NzgsMTUzLjk1NiwxMTEwLjEyNCwxNTMuOTU2LDI4Ni4xNzEsMCw0NTEuMy00Ni43MjMsNTE2LjExOC03MC4zMzJsNTQuMjI5LTE2LjY1N2M1My42NTItMTkuNzY5LDIxMy43NjYtNjYuNTYsNTMxLjI2LTY2LjU2LDQyNC4yNDUsMCw3MjcuOTc3LDE1My45NTYsMTExMC4xMjUsMTUzLjk1NiwzMjMuNTQsMCw0OTIuNDU5LTU5Ljc1Myw1MzYuNS03OC4yNTMsNy40MTItMi45NzcsMTEuODE2LTguNzE2LDExLjgxNi0xNS4xVjE2MC40NjljMC04LjcyNi0xMS41NTMtMTQuMDM5LTIxLjcyNy0xMC4yMDkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNTYyLjU4IDQyMDAuMzM4KSIgc3R5bGU9ImZpbGw6IHJnYigyNTUsIDI1NSwgMjU1KTsiPjwvcGF0aD4NCiAgPC9nPg0KPC9zdmc+);
	}
}

@media only screen and (max-width: 900px) {
	[class*="bottom-waves-"]:after {
		height: 280px;
	}
}

@media only screen and (max-width: 767px) {
	[class*="bottom-waves-"]:after {
		height: 160px;
	}
}

.bottom-waves-white:after {
	background: white;
}

.bottom-waves-gray-light:after {
	background: var(--color-gray-light);
}

.bottom-waves-pink:after {
	background: var(--color-pink);
}

.bottom-waves-green:after {
	background: var(--color-green);
}

.bottom-waves-gray-dark:after {
	background: var(--color-gray-dark);
}

[class^="custom-"]>.row-fluid>.widget-span,
[class*="custom-"]>.row-fluid>.widget-span {
	padding: var(--section-padding);
	border-radius: var(--section-rounded);
	overflow: hidden;
}

.custom-white-section>.row-fluid>.widget-span {
	background: #fff;
}

.custom-pink-section>.row-fluid>.widget-span {
	background: var(--color-pink);
}

.custom-gray-light-section>.row-fluid>.widget-span {
	background: var(--color-gray-light);
}

.hero-section {
	position: relative;
	overflow: hidden;

	.content-heading, .content-richtext {
		text-shadow: 0px 0px 8px rgba(0,0,0,0.3);
		i {
			text-shadow: none;
		}
	}

}

.hero-section .row-fluid .span12 {
 position: static !important;
}

@media (max-width: 768px) {
	.section-with-right-image > .row-fluid {
	flex-direction: column-reverse;
	}
}

/* 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-black);
}

/* Headings */

.style-em,
h1,
.style-h1, 
h2,
.style-h2, 
h3,
.style-h3, 
h4,
.style-h4, 
h5,
.style-h5, 
h6,
.style-h6 {
   font-weight: bold;
   margin: 0;
}

.content-title, .title-font {
    font-family: var(--heading-font);
}

.style-em {
  font-size: 110px;
  line-height: 118px;
}

h1, .style-h1 {
  font-size: 70px; 
  line-height: 75px;
}

h2, .style-h2 {
  font-size: 54px;
  line-height: 60px;
}

h3, .style-h3 {
  font-size: 48px;
  line-height: 52px;
}

h4, .style-h4 {
  font-size: 30px;
  line-height: 35px;
}

h5, .style-h5 {
  font-size: 22px;
  line-height: 26px;
}

h6, .style-h6 {
  font-size: 16px;
}

@media (max-width: 980px) {

.style-em {
  font-size: 70px;
  line-height: 75px;
}

h1, .style-h1 {
  font-size: 54px;
  line-height: 60px;
}

h2, .style-h2 {
  font-size: 48px;
  line-height: 52px;
}

h3, .style-h3 {
  font-size: 42px;
  line-height: 46px;
}

}

@media (max-width: 600px) {

  .style-em {
    font-size: 55px;
    line-height: 60px;
  }

  h1, .style-h1 {
    font-size: 36px;
    line-height: 40px;
  }
  
  h2, .style-h2 {
    font-size: 32px;
    line-height: 36px;
  }

  h3, .style-h3 {
    font-size: 28px;
    line-height: 32px;
  }

  h4, .style-h4 {
    font-size: 20px;
    line-height: 24px;
  }

  h5, .style-h5 {
    font-size: 18px;
  }

  h6, .style-h6 {
    font-size: 16px;
  }
}


.text-width-clamp {
  max-width: var(--main-width-clamp);
  margin: 0 auto;
  width: 100%;
}

.text-left {
  text-align: left;
}


.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}


/* 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;
}


.content-richtext {
  em {
    font-style: italic;
  }
  a {
    text-decoration: underline;
  }
}
.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;
}

.buttons-wrapper.layout-stacked {
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
}

.button,
.hs-button,
.hs-blog-post-listing__post-button {
  border-radius: var(--button-rounded);
  color: #000;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--button-font-weight);
  line-height: initial;
  border-style: solid;
  gap: 0.75rem;
}

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 {
  text-decoration: none;
}


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


/* Button Sizes */
.button.button-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-width: 1px;
  gap: 0.45rem;
}

.button.button-md {
  padding: 0.55rem 1rem;
  font-size: 1rem;
  border-width: 2px;
}

.button.button-lg {
  padding: 0.8rem 1.2rem;
  font-size: 1.125rem;
  border-width: 3px;
}

.button.button-xl {
  padding: 1rem 1.6rem;
  font-size: 1.25rem;
  border-width: 3px;
}

@media (max-width: 768px) {
  .button.button-xl {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    border-width: 2px;
  }
}


/* Button Colors */
.button-gray {
  background-color: var(--color-gray-light);
  border-color: var(--color-gray-light);
}

.button-white {
  background-color: #fff;
  border-color: #fff;
}

.button-transparent {
  background-color: transparent;
  border-color: transparent;
}

.button-transparent-white {
  background-color: transparent;
  color: #fff;
  border-color: transparent;
}

.button-pink {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}

.button-purple {
  background-color: var(--color-purple);
  color: #fff;
  border-color: var(--color-purple);
}

.button-green {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.button-black{
  background-color: black;
  color: #fff;
  border-color: black;
}

/* Button Border */
.button.border-black {
  border-color: black;
}

.button.border-white {
  border-color: #fff;
}

.button.border-green {
  border-color: var(--color-green);
}


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


.button-icon {
	font-size: 115%;
	line-height: 0;
}
/* 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);
  }

  .card-icons {
	padding: 0.8rem;
	border: var(--decoration-border);
	border-radius: 10rem;
	aspect-ratio: 1/1;
	height: var(--decoration-size);
	width: var(--decoration-size);
	display: flex;
	align-items: center;
	justify-content: center;

	.card-image {
		width: 100%;
	}
  }
  
  .image-wrapper img {
	height: auto;
	max-width: 100%;
}

  .card-image-rounded {
	img {
	  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 {
	background: var(--color-gray-light);
	border-radius: var(--card-rounded);
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 1px 1px 17px 0px rgba(0,0,0,0.2);
}

.blog-card.multi-color:nth-child(6n+2), .blog-card.multi-color:nth-child(6n+3) {
	.blog-card-title-link, .blog-card-date, .read-now-text, .blog-card-footer::after, .blog-card-summary, .blog-card-author-name, .blog-card-tags .blog-card-tag{
		color: #fff;
	}
}

.blog-card.multi-color:nth-child(6n+1),.blog-card.multi-color:nth-child(6n+5) {
	background-color: var(--color-green);
}

.blog-card.multi-color:nth-child(6n+2) {
	background-color: var(--color-purple);
}

.blog-card.multi-color:nth-child(6n+3) {
	background-color: var(--color-pink);
}

.blog-card.multi-color:nth-child(6n+4) {
	background-color: var(--color-blue);
}

.blog-card.multi-color:nth-child(6n+6) {
	background-color: var(--color-yellow);
}



.blog-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.blog-card-head-section {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.blog-card-main-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: var(--card-padding);
}


.blog-card-title,
.blog-card-summary {
	margin-bottom: 0;
}

.blog-card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: var(--card-padding);

	.read-now-icon {
		font-size: 1.25rem;
		background: var(--color-gray-dark);
		border-radius: 10rem;
		color: #fff;
		aspect-ratio: 1 / 1;
		height: 40px;
		width: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

}

.blog-card-footer::after {
	 position: absolute;
	 content: "";
	 top: 0;
	 left: var(--card-padding);
	 right: 80px;
	 background: currentcolor;
	 height: 1px;
}

.blog-card-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}


.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;
}
.hs-pagination__link--number {
	background-color: #fff;
	height: 38px;
	width: 38px;
	display: flex;
	font-size: 1.5rem;
	align-items: center;
	justify-content: center;
	border-radius: var(--button-rounded);
	font-family: var(--heading-font);
}

.hs-pagination__link--number.hs-pagination__link--active {
	font-weight: bold;
}

.hs-pagination__link--next, 
.hs-pagination__link--prev {
	.hs-pagination__link-icon, .hs-pagination__link-text {
		display: none;
	}
}

.hs-pagination__link.hs-pagination__link--first, 
.hs-pagination__link.hs-pagination__link--last {
	display: none;
}

.hs-pagination__link--next, 
.hs-pagination__link--prev {
	&:after {
		font-family: "icomoon";
		display: inline-block;
		font-size: 1.5rem;
	}
}

.hs-pagination__link--prev:after {
	content: var(--icon-arrow-left);
}

.hs-pagination__link--next:after {
	content: var(--icon-arrow-right);
}

/* 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-left: var(--container-padding);
  padding-right: var(--container-padding);
  color: var(--color-black);
  height: var(--header-height);
  backdrop-filter: blur(10px);
}

.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 0.5rem;
}

.header__container:after {
  background: var(--header-bg);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin-left: calc(var(--container-padding) * -1);
  margin-right: calc(var(--container-padding) * -1);
  transition: 0.3s ease-in-out;
}

.header.header-scrolled .header__container:after {
  background: var(--header-bg-scrolled);
}


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

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

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

@media (max-width: 1109px) {
  .header-section #hs_cos_wrapper_navigation-primary {
    display: block;
    width: 100%;
  }
}

/* Navigation skipper (accessibility) */
.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;
}

/* Buttons */
.header__buttons .buttons-wrapper {
  flex-wrap: nowrap;
  gap: 0.5rem;
}

@media (max-width: 1109px) {
  .header__buttons {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    background: var(--color-gray-light);

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

  }
}

.mobile-section {
  display: none;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}


@media (max-width: 1109px) {
  .mobile-section {
    display: flex;
  }
}


.header-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}




.header__navigation {
  margin: 0 auto;
}

/* Menu and Navigation */
.header__navigation .menu,
.header__navigation .menu__wrapper,
.header__navigation .menu__item,
.header__navigation .menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__navigation .menu__wrapper {
  row-gap: 1rem;
  column-gap: 2.2rem;
  flex-direction: row;
}


@media (max-width: 1350px) {
.header__navigation .menu__wrapper {
  column-gap: 1.25rem;
}
}


@media (max-width: 1109px) {
  .header-navigation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: calc(var(--header-height) + 20px);
    background: white;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    overflow: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .header-navigation-wrapper.open {
    opacity: 1;
    visibility: visible;
  }

  .header__navigation {
    width: 100%;
    overflow-x: hidden;
  }

  .header__navigation .menu,
  .header__navigation .menu__wrapper,
  .header__navigation .menu__item,
  .header__navigation .menu__link {
    display: block;
    height: auto;
    width: 100%;
  }

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

  .header__navigation .menu__item--depth-1 {
    position: relative;
  }

}

/* Menu item styles */
.header__navigation .menu__link,
.header__navigation .menu__link:hover,
.header__navigation .menu__link:focus,
.header__navigation .menu__link:active {
  text-decoration: none;
  color: var(--header-menu-item-text);
}

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

@media (max-width: 1350px) { 
  .header__navigation .menu__item.menu__item--depth-1 > .menu__item-label .menu__link  {
    font-size: 0.9rem;
  }
}

@media (max-width: 1109px) { 
  .header__navigation .menu__item > .menu__item-label {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.header__navigation .menu,
.header__navigation .menu__wrapper,
.header__navigation .menu__item.menu__item--depth-1,
.header__navigation .menu__item.menu__item--depth-1> .menu__item-label .menu__link {
  height: 100%;
}

@media (max-width: 1109px) {
  .header__navigation .menu,
  .header__navigation .menu__wrapper,
  .header__navigation .menu__item.menu__item--depth-1,
  .header__navigation .menu__item.menu__item--depth-1> .menu__item-label .menu__link {
    height: auto;
  }

  .header__navigation .menu__item.menu__item--depth-1 {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

/* Menu icons */
.header__navigation .menu__item> .menu__item-label .menu__child-toggle .menu__child-toggle-icon {
  display: block;
  transition: transform 0.4s;
  position: relative;
  font-size: 80%;
  line-height: 0;
}

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

@media (max-width: 1109px) {
  .header__navigation .menu__item> .menu__item-label .menu__child-toggle {
      transform: rotate(-90deg);
      padding: 8px;
      background: var(--color-gray-light);
      border-radius: 10rem;
  }
}

/* First submenu */
.header__navigation .menu__submenu--level-2 {
  background: var(--color-green);
  padding: 2rem var(--container-padding);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--card-rounded);
  display: grid;
  grid-template-columns: repeat(var(--submenu-column-count), minmax(0, 1fr));
  gap: 1rem;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-200%);
  width: 100%;
  text-align: left;
  text-transform: none;
  z-index: -1;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.header__navigation .menu__item--open>.menu__submenu--level-2 {
  visibility: visible;
  transform: translateY(0);
}

.header__navigation .menu__item > .menu__submenu--level-2 > .menu__item  {
  transform: translateY(-25px);
}

.header__navigation .menu__item--open>.menu__submenu--level-2 > .menu__item  {
  transform: translateY(0);
}

.header__navigation .menu__item > .menu__submenu--level-2 > .menu__item  {
        &:nth-child(1) {
          transition: all 0.4s ease-in-out;
        }
        &:nth-child(2) {
          transition: all 0.5s ease-in-out;
        }
        &:nth-child(3) {
          transition: all 0.6s ease-in-out;
        }
        &:nth-child(4) {
          transition: all 0.7s ease-in-out;
        }
        &:nth-child(5) {
          transition: all 0.8s ease-in-out;
        }
        &:nth-child(6) {
          transition: all 0.9s ease-in-out;
        }
        &:nth-child(7) {
          transition: all 1s ease-in-out;
        }
        &:nth-child(8) {
          transition: all 1.1s ease-in-out;
        } 
        &:nth-child(9) {
          transition: all 1.2s ease-in-out;
        } 
        &:nth-child(10) {
          transition: all 1.3s ease-in-out;
        } 
        &:nth-child(11) {
          transition: all 1.4s ease-in-out;
        } 
        &:nth-child(12) {
          transition: all 1.5s ease-in-out;
        } 
}


.header__navigation .menu__submenu--level-2 > .menu__item > .menu__item-label .menu__child-toggle {
  display: none;
}

@media (max-width: 1109px) {
.header__navigation .menu__submenu--level-2 {
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  transform: translateY(0) translateX(100%);
  gap: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__navigation .menu__item--open>.menu__submenu--level-2 {
  transform: translateX(0);
}

.header__navigation .menu__submenu--level-2> .menu__item.menu__item > .menu__item-label .menu__link {
  font-size: inherit;
}

.header__navigation .menu__submenu--level-2 > .menu__item > .menu__item-label .menu__child-toggle {
  display: block;
}

}

.header__navigation .menu__submenu--level-2>.menu__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.header__navigation .menu__submenu--level-2>.menu__item> .menu__item-label .menu__link {
  font-size: var(--submenu-header-font-size);
  font-family: var(--heading-font);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (max-width: 1350px) {
  .header__navigation .menu__submenu--level-2>.menu__item> .menu__item-label .menu__link {
    font-size: calc(--submenu-header-font-size * 0.8);
    margin-bottom: 0.25rem;
  }
}

/* Levels three menu styles */
.header__navigation .menu__submenu--level-3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: start;
  align-items: start;
}

@media (max-width: 1109px) {
.header__navigation .menu__submenu--level-3 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.menu__item--open >.menu__submenu--level-3 {
  max-height: 100rem;
}
}
.header__navigation--toggle {
	display: none; 
	position: relative;
	height: 32px;
	width: 32px;
	background: none;
	border: none;
	outline: none;
	border-radius: 10rem;
	background-color: var(--color-green);
	transition: all 0.3s ease-in-out;
  }
  
  .header__navigation--toggle .bar {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 7px;
	height: 2px;
	background-color: #000;
	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%);
	margin-left: 9px;
  }
  
  .header__navigation--toggle .bar:nth-child(3) {
	bottom: 9px;
	margin-left: 12px;
  }
  

  .header__navigation--toggle.open .bar {
 	margin-left: 7px;
  }
  
  .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 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: var(--footer-section-spacing);
}

.footer-menu .menu__wrapper  {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));  
  gap: 1rem;
}

@media (max-width: 980px) {
  .footer-menu .menu__wrapper  {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}

@media (max-width: 680px) {
  .footer-menu .menu__wrapper {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

.footer-menu .menu__wrapper > .menu__item.menu__item--depth-1 {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.footer-menu .menu__wrapper .menu__item.menu__item--depth-1 > .menu__item-label .menu__link {
  font-size: 1.2rem;
  font-weight: bold;
}


.footer-logo-section {
  padding: var(--footer-section-spacing) 0;
  border-top: 3px solid var(--color-green);
  border-bottom: 3px solid var(--color-green);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 520px) {
  .footer-logo-section {
    flex-direction: column;
  }
}

/* Footer content */
.footer-dark {
  a,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  label,
  span,
  li {
    color: var(--color-white);
  }
}
/* 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 {
	color: #fff;
	text-shadow: 0 0 3px #000;
	font-size: 3rem;
}

@media (max-width: 768px) {
.swiper-button-prev,
.swiper-button-next {
	font-size: 2.5rem;
  }
}


.swiper-button-disabled {
	color: var(--color-gray-light);
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}

.swiper-slide {
	height: auto;
}
.animatable-part {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.3s ease-in-out 0.2s;
  will-change: opacity, transform;
}

.animatable-part.animates-delayed {
    transition: 0.4s ease-in-out 0.6s;
}

.animatable-part.animate-in {
  opacity: 1;
  transform: translate(0, 0);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'Uxum Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/fonts/uxum-grotesque/UxumGrotesque-Bold.ttf) format('truetype');
}


@font-face {
  font-family: 'Uxum Grotesque';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/fonts/uxum-grotesque/UxumGrotesque-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'Uxum Grotesque';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/fonts/uxum-grotesque/UxumGrotesque-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Uxum Grotesque';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/fonts/uxum-grotesque/UxumGrotesque-Light.ttf) format('truetype');
}

@font-face {
  font-family: 'Uxum Grotesque';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/fonts/uxum-grotesque/UxumGrotesque-UltraLight.ttf) format('truetype');
}
@font-face {
  font-family: 'icomoon';
  font-weight: normal;
  font-style: normal;
  font-display: block;
  src: url(//242365804.fs1.hubspotusercontent-na2.net/hubfs/242365804/raw_assets/public/community-theme/icons/icomoon.woff) format('truetype');

}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cross:before {
  content: "\e909";
}
.icon-dots:before {
  content: "\e908";
}
.icon-brand:before {
  content: "\e903";
}
.icon-chevron-down:before {
  content: "\e904";
}
.icon-arrow-down:before {
  content: "\e905";
}
.icon-arrow-up:before {
  content: "\e906";
}
.icon-arrow-left:before {
  content: "\e907";
}
.icon-arrow-right:before {
  content: "\e90a";
}
.icon-plus:before {
  content: "\e90b";
}
.icon-play:before {
  content: "\e90c";
}
.icon-message:before {
  content: "\e900";
}
.icon-whatsapp:before {
  content: "\e902";
}
.icon-filter:before {
  content: "\e901";
}
.icon-check:before {
  content: "\e90d";
}
.icon-copy:before {
  content: "\e90e";
}
.icon-grid:before {
  content: "\e910";
}
.oembed_container {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

.iframe_wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}

.oembed_container_iframe {
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.oembed_custom-thumbnail,
.oembed_custom-thumbnail:hover,
.oembed_custom-thumbnail:focus,
.oembed_custom-thumbnail:active {
  align-items: center;
  appearance: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  border: none;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.oembed_custom-thumbnail_icon {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 100%;
}

.oembed_custom-thumbnail_icon svg {
  display: block;
  height: auto;
  width: 12%;
}

/* SVGs in IE11 require the max-width to be set to non in order to display scaling properly */
_:-ms-fullscreen, :root .oembed_custom-thumbnail_icon svg {
  max-width: none;
}

.oembed_custom-thumbnail--hide {
  display: none;
}

.embed_container {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

.embed_container iframe {
  left: 0;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.oembed-info {
  height:1px;
  left:-10000px;
  overflow:hidden;
  position:absolute;
  top:auto;
  width:1px;
}

/* Placeholder styles */
:not(.hs-inline-edit) .hs-video-placeholder {
  display: none;
}

.hs-inline-edit .hs-video-placeholder {
  background-color: #f5f8fa !important;
  border: 1px dashed #516f90 !important;
  display: block !important;
  font-size: 14px !important;
  margin: 2px 1px !important;
  outline: 1px dashed #fff !important;
  text-align: center !important;
}

.hs-video-placeholder > * {
  box-sizing: border-box !important;
  display: block !important;
  margin: 1px !important;
  padding: 12px !important;
  width: calc(100% - 2px) !important;  
}

p.hs-video-placeholder__title {
  color: #7c98b6 !important;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
  font-size: 14px !important;
  font-style: italic !important;
  font-weight: 700 !important;
  line-height: initial !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
  padding: 0 !important;  
  text-shadow: 0 -1px 0 hsla(0,0%,100%,.5) !important;
}

p.hs-video-placeholder__description {
  color: #7c98b6 !important;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin: 0 !important;  
  text-shadow: 0 -1px 0 hsla(0,0%,100%,.5) !important;
}