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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

.content-wrapper {
  margin: 0 auto;
	max-width: var(--content-width);
  padding: 30px 20px;
}

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

.dnd-section {
  position: relative;
  z-index: 3;
}

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

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

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

/* Structure */

.row {
  align-items: center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.multi-column {
	margin-left: 0;
	margin-right: 0;
}

@media screen and (min-width: 1400px) {
  .multi-column {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.row.center {
	justify-content: center;
  text-align: center;
}

.row.top {
  align-items: flex-start;
}
.stretch {
  align-items: stretch;
}

.module-wrapper {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.module-wrapper.top {
	align-items: flex-start;
}

.module-wrapper.left {
	flex-flow: row-reverse nowrap;
}

.module__2-column {
	flex: 0 0 calc(100% / 2);
}

.module__3-column {
	flex: 0 0 calc(100% / 3);
}

.module__3-column--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   
}

.module__4-column {
	flex: 0 1 calc(100% / 4);
}

.module__5-column {
	flex: 0 0 calc(100% / 5);
}

.module__6-column {
	flex: 0 0 calc(100% / 6);
}

.module__30 {
	flex: 0 1 27%;
}

.module__40 {
	flex: 0 1 37%;
}

.module__50 {
	flex: 0 1 47%;
}

.module__60 {
	flex: 0 1 57%;
}

.module__70 {
	flex: 0 1 67%;
}

@media (max-width: 1024px) {
	.module__30,
  .module__40,
  .module__50,
  .module__60,
  .module__70 {
		flex: 0 0 48%;
	}
}

@media (max-width: 767px) {
  .row {
    align-items: center;
    flex-flow: column wrap;
    justify-content: center;
  }
  .multi-column {
    margin-left: 0;
    margin-right: 0;
  }
	.module-wrapper,
	.module-wrapper.left {
		flex-flow: column wrap;
		justify-content: flex-start;
	}
	.module__30,
  .module__40,
  .module__50,
  .module__60,
  .module__70 {
		flex: 1 0 100%;
	}
}

/* Background image */

.background-image__wrapper {
  position: relative;
  z-index: 0;
}

.background-image {
  background-image: url("https://6414105.fs1.hubspotusercontent-na1.net/hubfs/6414105/gl-2023/backgrounds/gl-bg-footer-light.jpg");
  background-color: #fafbff;
  background-position: center bottom; 
  background-repeat: no-repeat; 
  background-size: cover;
  bottom: 0;
  height: 1000px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  color: var(--colors-text);
  font-family: var(--fonts-paragraph);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}

p.subheading {
	color: var(--colors-blue);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

p.small-text {
  font-size: 14px;
}

/* Anchors */

a {
  cursor: pointer;
 font-family: var(--fonts-paragraph);  
}

/* Headings */

h1, h1 a,
h2, h2 a,
h3, h3 a,
h4, h4 a,
h5, h5 a,
h6, h6 a {
  color: var(--colors-text);
  font-family: var(--fonts-headings);
  font-weight: 600;
  margin: 0 0 1.4rem;
}

h1, h1 a {
  font-size: var(--font-size-h1);
  line-height: 1.1;
}

h2, h2 a {
  font-size: var(--font-size-h2);
  line-height: 1.2;  
}

h3, h3 a {
  font-size: var(--font-size-h3);
  line-height: 1.4;
}

h4, h4 a {
  font-size: var(--font-size-h4);
	line-height: 1.3;
}

h4 a {
	text-decoration: none;
}

h5, h5 a {
  font-size: var(--font-size-h5);
}

h6, h6 a {
  font-size: var(--font-size-h6);
}

:is(h1, h1 a, h2, h2 a, h3, h3 a) span {
  color: var(--colors-blue);
}

@media screen and (max-width: 1024px) {
  h1, h1 a {
    font-size: calc(var(--font-size-h1) * 0.75);
    line-height: 1.1;
  }
  h2, h2 a {
    font-size: calc(var(--font-size-h2) * 0.75);
  }
  h3, h3 a {
    font-size: calc(var(--font-size-h3) * 0.75);
  }
  h4, h4 a {
    font-size: calc(var(--font-size-h4) * 0.75);
  }
  h5, h5 a {
    font-size: calc(var(--font-size-h5) * 0.75);
  }
  h6, h6 a {
    font-size: calc(var(--font-size-h6) * 0.75);
  }
}

@media screen and (max-width: 500px) {
  h1, h1 a {
    font-size: calc(var(--font-size-h1) * 0.65);
    line-height: 1.1;
  }
  h2, h2 a {
    font-size: calc(var(--font-size-h2) * 0.65);
  }
}

/* Lists */

ul,
ol {
  color: var(--colors-text);
  font-family: var(--fonts-paragraph);
  font-size: 18px;
  line-height: 1.8;	
  margin: 0 0 1.4rem;
}

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

ul li {
  margin: 0 0 1rem;
}

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;
}
button,
.button,
.btn-solid,
.btn-outline {
  cursor: pointer;
	font-family: var(--fonts-paragraph);
	font-size: 16px;
	font-weight: 400;
  display: inline-block;
	padding: 0.85rem 1.75rem;
  text-align: center;
  text-decoration: none;
  text-transform: none;
	transition: var(--transition);
  white-space: normal;
}

.secondary-btn {
	margin-left: 15px !important;
}

.btn {
	border-radius: 7px;	
	margin-top: 20px;
	text-decoration: none;	
}

.btn-black {
	background-color: var(--colors-black);
	border: 1px solid var(--colors-black);
  color: var(--colors-white);	
}

.btn-black:hover {
	background-color: var(--colors-light-violet);
	border: 1px solid var(--colors-light-violet);
  color: var(--colors-blue);	
}

.btn-blue {
	background-color: var(--colors-blue);
	border: 1px solid var(--colors-blue);	
  color: var(--colors-white);
}

.btn-blue:hover {
	background-color: var(--colors-light-violet);
	border: 1px solid var(--colors-light-violet);	
  color: var(--colors-blue);	
}

.btn-white {
	background-color: var(--colors-white);
	border: 1px solid var(--colors-white);
	color: var(--colors-blue);
}

.btn-white:hover {
	background-color: var(--colors-light-violet);
	border: 1px solid var(--colors-light-violet);	
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--colors-blue);
	color: var(--colors-blue);	
}

.btn-outline:hover {
	background-color: var(--colors-light-violet);
	border: 1px solid var(--colors-light-violet);
}

.btn-outline--white {
	background-color: transparent;
	border: 1px solid var(--colors-white);
	color: var(--colors-white);
}

.btn-outline--white:hover {
	background-color: var(--colors-light-violet);
	border: 1px solid var(--colors-light-violet);
  color: var(--colors-blue);	
}

.btn-simple {
	background-color: transparent;
	border: none;
	color: var(--colors-blue);
  font-family: var(--fonts-paragraph);	
}

.btn-simple:hover {
  background-color: transparent;
	border: none;	
	color: var(--colors-blue);
}

.btn-simple--white {
	background-color: transparent;
	color: var(--colors-white);
}

.btn-simple--white:hover {
	color: var(--colors-violet);
}

.btn-simple--black {
	background-color: transparent;
	color: var(--colors-black);
}

.btn-simple--white:hover {
	color: var(--colors-blue);
}

.btn-solid svg {
  height: 12px;
  width: 12px;
  position: relative;
  top: 1px;
  margin-left: 7px;
	-webkit-transition: var(--transition);
  transition: var(--transition);
	transform: translateX(0);
  fill: var(--colors-white);
}

.btn-solid:hover svg {
	fill: var(--colors-blue);
  transform: translateX(5px);
}

.btn-outline svg,
.btn-simple svg,
.btn-white svg {
  height: 12px;
  width: 12px;
  position: relative;
  top: 1px;
  margin-left: 7px;
	-webkit-transition: var(--transition);
  transition: var(--transition);
	transform: translateX(0);
  fill: var(--colors-blue);
}

.btn-outline:hover svg,
.btn-simple:hover svg,
.btn-white:hover svg {
  transform: translateX(5px);
}

.btn-solid.btn-black svg,
.btn-outline--white svg,
.btn-simple--white svg {
  height: 12px;
  width: 12px;
  position: relative;
  top: 1px;
  margin-left: 7px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .4s cubic-bezier(0, 0, 0.41, 1);
	transform: translateX(0);
  fill: var(--colors-white);
}

.btn-simple--black svg {
  height: 12px;
  width: 12px;
  position: relative;
  top: 1px;
  margin-left: 7px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .4s cubic-bezier(0, 0, 0.41, 1);
	transform: translateX(0);
  fill: var(--colors-black);
}

.btn-outline--white:hover svg,
.btn-simple--white:hover svg,
.btn-simple--black:hover svg{
  transform: translateX(5px);
}

.btn-black:hover svg {
  fill: var(--colors-blue);
  transform: translateX(5px);	
}

button:disabled,
.button:disabled {
  background-color: #D0D0CC;
  border-color: #D0D0CC;
	color: ;
}

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

@media screen and (max-width: 767px) {
	
	.button:not(footer .button),
	.btn-solid:not(footer .btn-solid),
	.btn-outline:not(footer .btn-outline) {
		clear: both;
		display: inline-block;
		float: left;
	}
	.btn {
		margin-top: 15px;
	}
}
form {
  color: var(--colors-text);
  font-family: var(--fonts-paragraph);
}

/* Fields */

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

/* Labels */

form label {
  color: var(--colors-text);  
  display: block;
  font-family: var(--fonts-paragraph);
  font-size: 16px;
  margin-bottom: 0.35rem;
}

.white-text form label {
  color: var(--colors-white);  
}

/* 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 {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--colors-blue);
  color: var(--colors-black);
  display: inline-block;
  font-family: var(--fonts-paragraph);
  font-size: 18px;
  padding: 0.7rem;
  width: 100%;
}

.white-text form :is(input[type]:not([type=submit],[type=checkbox]), select, textarea) {
  border-bottom: 1px solid var(--colors-white);  
  color: var(--colors-white);  
}

form textarea {
  resize: vertical;
}

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

input:focus {
  border-color: var(--colors-blue) !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;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
}

input[type=checkbox] {
  appearance: none;
  background-color: var(--colors-light-violet);
  margin: 0;
  font: inherit;
  color: var(--colors-blue);
  width: 1.15em;
  height: 1.15em;
  border: 1px solid var(--colors-black);
  border-radius: 0;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;  
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--colors-blue);
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

/* 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: 14px;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container > .hs-richtext {
  color: var(--colors-black);
  font-size: 14px;
}

.legal-consent-container .hs-form-booleancheckbox-display {
  align-items: center;
  display: flex;
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p,
.legal-consent-container .hs-form-booleancheckbox-display > span p a {
  color: var(--colors-black);
  font-size: 14px;
  margin-left: 5px !important;
  vertical-align: center;
}

.white-text .legal-consent-container > .hs-richtext,
.white-text .legal-consent-container .hs-form-booleancheckbox-display > :where(span, span p, span a, p) {
  color: var(--colors-white);
}

.legal-consent-container .hs-error-msgs label {
  color: var(--colors-pink);
}

.white-text .legal-consent-container .hs-error-msgs label {
  color: var(--colors-white);
}

/* Validation */

.hs-form-required {
  color: var(--colors-pink);
}

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

.hs-error-msg {
  color: var(--colors-pink);
  font-family: var(--fonts-paragraph);
  font-size: 14px;
  margin-top: 0.35rem;
}

.white-text :where(.hs-form-required, .hs-error-msg, .hs-input.invalid.error) {
  color: var(--colors-white);
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: var(--colors-blue);
  border: none;
  border-radius: var(--border-radius-buttons);
  color: var(--colors-white);
  cursor: pointer;
  display: inline-block;
  font-family: var(--fonts-paragraph);
  margin-top: 10px;
  padding: 12px 24px;
  text-align: center;
  transition: var(--transition);
  white-space: normal;
}

.white-text form input[type=submit],
.white-text form .hs-button {
  background-color: var(--colors-white);
  color: var(--colors-blue);
}

form input[type=submit]:hover,
form .hs-button:hover,
.white-text form input[type=submit]:hover,
.white-text form .hs-button:hover {
  background-color: var(--colors-hover);
  color: var(--colors-blue);
}

/* 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: var(--colors-blue);
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: var(--colors-blue);
    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;
}
:root {
  --colors-black: #050B2D;
	--colors-light-grey: #F6F7F9;
  --colors-white: #ffffff;
  --colors-blue: #1432F3;
  --colors-light-blue: #6F80EE;
  --colors-pink: #F5005B;
  --colors-yellow: #fae004;
  --colors-latte: #E5DED6;
  --colors-violet: #BF81EE;
  --colors-light-violet: #F2E6FC;
  --colors-dark-violet: #1e006e;
	--colors-global-bg-color: #fafbff;
  --colors-text: #050B2D;
  --colors-hover: #F2E6FC;
  --colors-footer-headings: #5E627D;
  --gradients-blue-violet: linear-gradient(165deg, rgba(20,50,243,1) 0%, rgba(191,129,238,1) 100%);
  --fonts-paragraph: "aktiv-grotesk", sans-serif;
  --fonts-headings: "termina", sans-serif;
  --font-size-h1: 48px;
  --font-size-h2: 40px;
  --font-size-h3: 30px;
  --font-size-h4: 22px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --content-width: 1360px;
  --transition: all 0.25s linear;
  --border-radius-buttons: 7px;
  --border-radius-images: 7px;
  --border-radius-boxes: 15px;
}

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

.main-navigation {
  display: block;
}

header {
	background-color: transparent;
	height: 90px;
	padding-top: 20px;
	position: fixed;
	top: 0;
	transition: top 0.3s;
	width: 100%;
	z-index: 999;
}

header.header--background {	
	background-color: var(--colors-white);
	box-shadow: 0 5px 50px rgba(5, 11, 45, 0.05);
}

.header__wrapper {
	align-items: center;	
	display: flex;
	flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 auto !important;
	max-width: var(--content-width);
  padding: 0 20px;
}

@media screen and (min-width: 1400px) {
  .header__wrapper {
    padding: 0 0;
  }
}

.header__inner--logo {
	flex: 0 1 auto;
}

.header__inner--navigation {
	flex: 0 1 auto;	
}

.header__inner--mobile {
	display: none;
}

header .hs-menu-wrapper ul li {
  text-align: center;
}

header ul li {
	position: relative;
}

header ul li a {
  color: var(--colors-dark-violet);
  font-size: 15px;
  font-weight: 400;
	text-decoration: none;
}

header .hs-menu-wrapper > ul > li a {
	margin: 0 15px;
  transition: var(--transition);
}

header .hs-menu-wrapper > ul:not(ul li ul) > li a {
	position: relative;
	top: 5px;
}

header .hs-menu-wrapper > ul > li a:hover {
	color: var(--colors-blue);
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  padding-bottom: 10px;
}

header .hs-menu-wrapper > ul > li:last-child a {
	background-color: var(--colors-black);
  border-radius: 7px;	
  color: var(--colors-white);
  padding: 12px 24px;
	transition: var(--transition);
}

header .hs-menu-wrapper > ul > li:last-child > a:hover {
  background-color: var(--colors-blue);
	color: var(--colors-white);
}

header .hs-menu-wrapper ul li ul {
	background: var(--colors-white);
  border-radius: 7px;
  box-shadow: -7px 3px 40px rgb(0 0 0 / 10%);	
  margin-left: 15px;		
	padding: 5px 20px !important;
}

header .hs-menu-wrapper ul li ul li {
  padding: 15px 0;
  text-align: left;	
}

header .hs-menu-wrapper ul li ul li:not(:last-child) {
	border-bottom: 1px solid var(--colors-blue);
}

header .hs-menu-wrapper ul li ul li a{
	color: var(--colors-black);
	margin: 0;
}

header .hs-menu-wrapper ul li ul li a:hover{
	color: var(--colors-blue);
}

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

	header .hs-menu-wrapper > ul > li a {
		font-size: 0.90rem;
		margin: 0 10px;
	}
	
	header .hs-menu-wrapper > ul > li:last-child > a {
		margin: 0 0 0 10px;
	}
}

/* Mobile navigation */

@media screen and (max-width: 1023px) {
  
  .header__wrapper {
    padding: 20px;
  }

	header .hs-menu-wrapper ul {
		display: block;
	}
	
	.main-navigation {
    background-color: var(--colors-white);
		display: none;
    transition: var(--transition);
	}
	
	.main-navigation.responsive {
		border-bottom: 1px solid var(--colors-blue);
    display: block;
		float: none;
		position: absolute;
		left: 0;
		padding: 0 20px 10px;
		top: 130px;
		width: 100%;
		z-index: 999;
	}
	
	header {
    background-color: var(--colors-white);
		flex-flow: row nowrap;
    height: 130px;
  	position: fixed;
		width: 100%;
	}
	
	.header__inner--mobile {
		display: inline-block;
	}

	header .hs-menu-wrapper ul:not(ul li ul) {
	  border-top: 1px solid var(--colors-blue);		
		width: 100%;
	}
	
	header .hs-menu-wrapper ul li {
		border-bottom: 1px solid var(--colors-blue);
		padding: 10px 0;
		text-align: left;
	}
  
  header .hs-menu-wrapper ul li:nth-last-child(2) {
		border-bottom: none;
	}
  
	header .hs-menu-wrapper ul li:not(ul li ul li):last-child {
    border: none;
		border-bottom: none;
    margin: 15px 0; 
    padding: 10px;
    text-align: center;
	}
  
  header .hs-menu-wrapper ul li:last-child:not(ul li ul li) {
    background-color: var(--colors-black);
    border-radius: var(--border-radius-buttons);
	}
  
  header .hs-menu-wrapper ul li:last-child:hover {
    color: var(--colors-white) !important;   
    border: none;
		border-bottom: none;
	}

	header .hs-menu-wrapper > ul > li:last-child > a {
    background-color: transparent  !important;
    color: var(--colors-white);
    border: none;
		padding: 0;
	}
  
  header .hs-menu-wrapper > ul > li:last-child > a:hover {
    background-color: transparent !important;
    border: none;
    color: var(--colors-white) !important;      
	}
	
	header .hs-menu-wrapper>ul>li a {
	  font-size: 18px;
    margin: 0;
	}
	
	/* 2nd level */
	header .hs-menu-wrapper ul li ul {
		background: transparent;
		box-shadow: none;	
		margin-left: 0;		
		padding: 5px 0 !important;
	}
	
	header .hs-menu-wrapper ul li ul li {
		border-bottom: none !important;
    padding: 10px 0 0 15px;
	}
	
	header .hs-menu-wrapper ul li ul li a:hover{
		color: var(--colors-blue);
	}
	
	header .hs-menu-wrapper > ul:not(ul li ul) > li a {
		top: 0;
	}
	
	/* Underline on hover */
	header ul li:not(:last-child, header ul li ul li):after {
    display: none;
	}
}

/* Hamburger icon */

#nav-icon {
  display: inline-block;
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
	float: left;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
	background: var(--colors-blue);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

@media screen and (min-width: 1024px) {
	#nav-icon {
		display: none;
	}
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.footer {
  background-color: var(--colors-black);
  padding: 100px 20px 30px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1400px) {
  .footer {
    padding: 100px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 100px 20px 30px;
  }
}

.footer :where(p, a, li) {
  color: var(--colors-white);
}

.footer a {
  transition: var(--transition);
}

.footer a:hover {
  color: var(--colors-footer-headings);
}

.footer-wrapper {
  margin: 0 auto;
	max-width: var(--content-width);
}

.footer__row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer__row {
    flex-flow: column wrap;
  }
}

.row-1 {
  align-items: stretch;
}

.row-1 :where(p, a) {
  font-size: 15px;
}

.row-1 p:first-child {
  color: var(--colors-footer-headings);
  font-size: 16px;
  letter-spacing: 1px;
}

.row-1 a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: underline;
}

.row-1 p:nth-child(2) {
  padding-bottom: 10px;
}

.row-1 p:nth-child(3) {
  display: inline-block;
  letter-spacing: 2px;
  margin-right: 10px;
}

.row-2 {
  align-items: flex-end;
  border-top: 1px solid var(--colors-footer-headings);
  display: flex;
  margin-top: 50px;
  padding: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .row-2 {
    align-items: center;
    text-align: center;
  }
}

.row-2 :where(p, a) {
  font-size: 14px;
  margin: 0;
}

.row-2 span {
  color: var(--colors-footer-headings);
  display: inline-block;
  margin: 0;
  padding: 0 10px;
}

.footer__column-1 {
  flex: 0 0 40%
}

.footer__column-1 img {
  margin-bottom: 50px;
}

.footer__column-2 {
	align-items: stretch;
  display: flex;
	flex-flow: column wrap;
}

.footer__column-row-1 {
  display: flex;
  justify-content: flex-end;
}

.footer__column-row-2 {
  display: flex;
  justify-content: flex-end;
	margin-top: auto;
}

@media screen and (max-width: 767px) {
  .footer__column-row-1,
  .footer__column-row-2 {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer__column-1,
  .footer__column-2 {
    flex: 0 1 100%
  }
}

/* Footer menu */

.footer .hs-menu-depth-1 {
  margin-left: 50px;
}

.footer ul li a {
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer ul li a:not( ul li ul li a) {
  color: var(--colors-footer-headings);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .footer .hs-menu-depth-1 {
    margin-left: 0;
  }
}

/* Footer banner */

.footer-banner {
  align-items: flex-end;
  background-color: var(--colors-white);
  border-radius: var(--border-radius-boxes);
	box-shadow: 0 5px 50px rgba(5, 11, 45, 0.08);  
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 50px;
  position: relative;
  top: -150px;
  z-index: 999;
}

.footer-banner .btn {
  margin-top: 0;
}

.footer-banner .btn-blue:hover {
  color: var(--colors-white);
  background-color: var(--colors-light-blue);
}

.footer-banner .btn-blue:hover svg {
  fill: var(--colors-white);
} 

.footer-banner h3 {
  color: var(--colors-blue);
  margin: 0;
}

.footer-banner h3:nth-child(2) {
  color: var(--colors-light-blue);
}

@media screen and (max-width: 767px) {
  .footer-banner {
    align-items: flex-start;
    flex-flow: column wrap;
    justify-content: flex-start;
    text-align: left;
  }
  .footer-banner .btn {
    margin-top: 20px;
  }
}
/* 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;
  }
}