/* Theme base styles */

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

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
	cursor: default; /* 1 */
	line-height: 1.5; /* 2 */
	overflow-wrap: break-word; /* 3 */
	-moz-tab-size: 4; /* 4 */
	tab-size: 4; /* 4 */
	-webkit-tap-highlight-color: transparent; /* 5 */
	-webkit-text-size-adjust: 100%; /* 6 */
	text-size-adjust: 100%; /* 6 */
}

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

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
	margin: 0;
}

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

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

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

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
	margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
	color: inherit; /* 1 */
	height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
	list-style-type: none;
	padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
	content: "\200B";
	float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
	overflow: auto; /* 3 */
}

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

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
	text-decoration: underline;
	text-decoration: underline dotted;
}

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

:where(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.
 */

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

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

:where(small) {
	font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
	vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
	fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
	border-collapse: collapse; /* 1 */
	border-color: currentColor; /* 2 */
	text-indent: 0; /* 3 */
}

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

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
	margin: 0;
}

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

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

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
	border: 1px solid #a0a0a0;
}

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

:where(progress) {
	vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
	margin: 0; /* 1 */
	resize: vertical; /* 3 */
}

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

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

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

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

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

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons 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 styles in Safari.
 */

:where(dialog) {
	background-color: white;
	border: solid;
	color: black;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -moz-fit-content;
	width: fit-content;
}

:where(dialog:not([open])) {
	display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
	display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
	cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
	cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
	display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

:where(button, input, select, textarea) {
	background-color: transparent; /* 1 */
	border: 1px solid WindowFrame; /* 1 */
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	letter-spacing: inherit; /* 2 */
	padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(select) {
	-webkit-appearance: none;
	appearance: none;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E")
		no-repeat right center / 1em;
	border-radius: 0;
	padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */

:where(select[multiple]) {
	background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

:where([type="color" i], [type="range" i]) {
	border-width: 0;
	padding: 0;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */

:where(iframe, img, input, video, select, textarea) {
	height: auto;
	max-width: 100%;
}


/* DND Grid */
:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}
.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%;
}

@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));
    }
  
}

/* Overall header / body / footer layout */
.body-wrapper {
	min-width: 0;
}
.body-container--dark {
  background: black;
  color: white;
  padding: 1px 0;
}

.header-wrapper {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #010405;
	color: white;
	padding: 2rem 3rem;
}
.header-wrapper > div {
	position: sticky;
	top: 1rem;
}

.header-wrapper-new {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #010405;
	color: white;
	padding: 2rem 3rem;
}
.header-wrapper-new > div {
	position: sticky;
	top: 1rem;
}

.footer-wrapper {
	grid-column: span 2;
}

button.header-trigger {
  display: none;
  position: absolute;
  top: 2rem;
  right: 0;
}
@media (max-width: 1160px) {
  body {
    display: block;
  }
  button.header-trigger {
    margin: 0;
    margin-left: auto;
    background: none;
    padding: 0;
    border: 0 none;
    -webkit-appearance: none;
    display: block;
  }
  .header > .hs_cos_wrapper_type_module {
    display: none;
  }
  .header > .hs_cos_wrapper_type_module.active {
    display: block;
  }
  .header-wrapper {
    padding: 1rem 2rem;
  }
}




/*.has-gradient-border {
  background: linear-gradient(to top, #000 40%, #015d7e 75%, #1cc7e8 100%);
  padding: 2rem 2rem 0 2rem;
}

.has-gradient-border > .row-fluid-wrapper {
  background: black url("//40068920.fs1.hubspotusercontent-na1.net/hubfs/40068920/raw_assets/public/Elev8-2024/images/Chevron-Dot-BG-Texture.svg") no-repeat 0 0;
  min-height: 800px;
  color: white;
}
*/


.body-container-wrapper {
  overflow: hidden;
}

.border--none {
  padding: 0rem;
}

.border--blue {
  background: linear-gradient(to top, #000 40%, #015d7e 75%, #4C8AE5 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--light-blue {
  background: linear-gradient(to top, #000 40%, #005778 75%, #00A6FF 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--yellow {
  background: linear-gradient(to top, #000 40%, #F0A139 75%, #FFD800 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--pink {
  background: linear-gradient(to top, #000 40%, #7D4473 75%, #D8569C 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--orange {
  background: linear-gradient(to top, #000 40%, #EB5D45 75%, #F0A139 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--brown {
  background: linear-gradient(to top, #000 40%, #5C4442 75%, #8E6864 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--green {
  background: linear-gradient(to top, #000 40%, #59B176 75%, #74DC96 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--purple {
  background: linear-gradient(to top, #000 40%, #594178 75%, #915AE1 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--red {
  background: linear-gradient(to top, #000 40%, #D04d3d 75%, #EB5D45 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--gray {
  background: linear-gradient(to top, #000 40%, #87888a 75%, #b1b1b1 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--white {
  background: linear-gradient(to top, #000 40%, #fff 75%, #fff 100%);
  padding: 1rem 1rem 0 1rem;
}

.border--teal {
  background: linear-gradient(to top, #000 40%, var(--teal) 75%, var(--teal) 100%);
  padding: 1rem 1rem 0 1rem;
}

.black_background > .body-container {
  background: black;
  min-height: 800px;
  color: white;
}

@media screen and (max-width: 900px) {
  .border--blue, .border--yellow, .border--pink, .border--orange, .border--brown, .border--green, .border--purple {
    padding: .5rem .5rem 0 .5rem
  }
      
}

@media (min-width: 1161px) {
#main-content:before {
    content: "";
    background: linear-gradient(45deg, #00a6ff1a, transparent 25%);
    position: fixed;
    bottom: 0;
    left: 20%;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}
}

.go1632949049 {
    background: var(--light-blue) !important;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

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

/* @link https://utopia.fyi/type/calculator?c=400,14,1.125,1400,14,1.333,9,0,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  /* Step 0: 14px → 14px */
  --step-0: clamp(0.875rem, 0.875rem + 0vi, 0.875rem);
  /* Step 1: 15.75px → 18.662px */
  --step-1: clamp(0.9844rem, 0.9116rem + 0.2912vi, 1.1664rem);
  /* Step 2: 17.7188px → 24.8764px */
  --step-2: clamp(1.1074rem, 0.9285rem + 0.7158vi, 1.5548rem);
  /* Step 3: 19.9336px → 33.1603px */
  --step-3: clamp(1.2458rem, 0.9152rem + 1.3227vi, 2.0725rem);
  /* Step 4: 22.4253px → 44.2027px */
  --step-4: clamp(1.4016rem, 0.8571rem + 2.1777vi, 2.7627rem);
  /* Step 5: 25.2285px → 58.9222px */
  --step-5: clamp(1.5768rem, 0.7344rem + 3.3694vi, 3.6826rem);
  /* Step 6: 28.382px → 78.5433px */
  --step-6: clamp(1.7739rem, 0.5198rem + 5.0161vi, 4.909rem);
  /* Step 7: 31.9298px → 104.6982px */
  --step-7: clamp(1.9956rem, 0.1764rem + 7.2768vi, 6.5436rem);
  /* Step 8: 35.921px → 139.5627px */
  --step-8: clamp(2.2451rem, -0.346rem + 10.3642vi, 8.7227rem);
  /* Step 9: 40.4111px → 186.037px */
  --step-9: clamp(2.5257rem, -1.115rem + 14.5626vi, 11.6273rem);
}

body {
  line-height: 2;
  font-size: var(--step-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--purple);
}
a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: var(--step-8);
  line-height: 0.9;
}

h2,
.h2 {
  font-size: var(--step-6);
  line-height: 0.9;
}

h3,
.h3 {
  font-size: var(--step-4);
  line-height: 1.1;
}

h4,
.h4 {
  font-size: var(--step-2);
  line-height: 1.2;
}

h5,
.h5 {
  font-size: var(--step-1);
}

h6,
.h6 {
  font-size: var(--step-0);
}

@media (max-width: 1160px) {
  h1,
  .h1 {
    font-size: calc(var(--step-8) + 32px);
    line-height: 0.9;
  }

  h2,
  .h2 {
    font-size: calc(var(--step-6) + 24px);
    line-height: 0.9;
  }

  h3,
  .h3 {
    font-size: calc(var(--step-4) + 32px);
    line-height: 1.1;
  }

  h4,
  .h4 {
    font-size: calc(var(--step-2) + 16px);
    line-height: 1.2;
  }

  h5,
  .h5 {
    font-size: calc(var(--step-1) + 32px);
  }

  h6,
  .h6 {
    font-size: calc(var(--step-0) + 32px);
  }
}

.hs_cos_wrapper_type_header > * {
  margin: 1rem 0;
  padding: 0.5rem 0;
}

/* Lists */
ul,
ol {

}

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 */
.hs_cos_wrapper_type_rich_text > hr {
  border: none;
  width: 3rem;
  height: 3px;
  margin: 0;
}

main em {
  font-style: normal;
}

::selection {
  background: var(--yellow);
}
.button,
.hs-button {
  cursor: pointer;
  display: inline-flex;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border-radius: 2rem; 
  background-color: var(--light-blue);
  padding: .75rem 2.25rem .6rem 2.25rem;
  line-height: 1.25;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "din-2014", sans-serif;
  letter-spacing: 0.04em;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

.button--yellow {
  border-color: var(--yellow);
  background: var(--yellow);
}
.button--purple {
  border-color: var(--purple);
  background: var(--purple);
}
.button--pink {
  border-color: var(--pink);
  background: var(--pink);
}
.button--blue {
  border-color: var(--light-blue);
  background: var(--light-blue);
}
.button--green {
  border-color: var(--green);
  background: var(--green);
}

.button--white {
  background: white;
  border-color: white;reat
}
.button--white:hover,
.button--white:focus {
  text-decoration: none;
  background: var(--yellow);
  border-color: var(--yellow);
}

.button--ghost {
  color: white;
  background: none;
  border: 2px solid var(--light-blue);
}
.button--ghost:hover,
.button--ghost:focus {
  text-decoration: none;
  background-color: var(--light-blue);
  color: var(--black);
}

.button--yellow.button--ghost {
  border-color: var(--yellow);
}
.button--yellow.button--ghost:hover,
.button--yellow.button--ghost:focus,
.button--yellow.button--ghost.active {
  background: var(--yellow);
}

.button--purple.button--ghost {
  border-color: var(--purple);
}
.button--purple.button--ghost:hover,
.button--purple.button--ghost:focus,
.button--purple.button--ghost.active {
  background: var(--purple);
}
.button--pink.button--ghost {
  border-color: var(--pink);
}
.button--pink.button--ghost:hover,
.button--pink.button--ghost:focus,
.button--pink.button--ghost.active {
  background: var(--pink);
}
.button--green.button--ghost {
  border-color: var(--green);
}
.button--green.button--ghost:hover,
.button--green.button--ghost:focus,
.button--green.button--ghost.active {
  background: var(--green);
}
.button--red.button--ghost {
  border-color: var(--red);
}
.button--red.button--ghost:hover,
.button--red.button--ghost:focus,
.button--red.button--ghost.active {
  background: var(--red);
}
.button--orange.button--ghost {
  border-color: var(--orange);
}
.button--orange.button--ghost:hover,
.button--orange.button--ghost:focus,
.button--orange.button--ghost.active {
  background: var(--orange);
}

.button--blue.button--ghost:hover,
.button--blue.button--ghost:focus,
.button--blue.button--ghost.active {
  background: var(--light-blue);
}


/* 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.splide__arrow {
  background: none !important;
  border: 2px solid var(--light-blue) !important;
  width: 40px!important;
  height: 40px!important;
  opacity: 1 !important;
}
button.splide__arrow svg {
  margin: 0 !important;
  fill: var(--yellow)!important;
  height: 2rem !important;
  width: 2rem !important;
}
/* Fields */

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

/* Labels */

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

/* 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% !important;
  background-color: white;
  color: black;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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;
  border-radius: 20px;
  background: var(--light-blue);
  border: none;
}

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

.post-footer {
  max-width: 1000px;
  margin: auto;
}

/* 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__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .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;
}
.tease {
  position: relative;
}
.tease-image {
  position: relative;
  border: 3px solid white;
  border-radius: 10px;
  height: 192px;
  overflow: hidden;
}

.tease-image img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  transition: 500ms ease;
}
.tease:hover .tease-image img {
  transform: scale(1.1);
}
.tease-image-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0;
  background: black;
  border: 3px solid var(--light-blue);
  border-bottom: 0 none;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  padding: 0.325rem 0.75rem 0.2rem 0.75rem;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  font-family: din-2014;
  color: white;
}



.tease-text h3 {
  margin: 1rem 0 0 0;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 22px;
  color: #fff;
  text-transform: unset;
}
.tease-text h3 a {
  color: #fff;
}
.tease-text h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.tease-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  line-height: 22px;
  color: #fff;
}
.tease-text strong {
  font-weight: bold;
  text-decoration: underline;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 26px;
  color: #fff;
  font-family: din-2014;
}
/* 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%;
}

:root {
  --light-blue: #00A6FF;
  --yellow: #ffd800;
  --red: #ff4f38;
  --orange: #ff9d00;
  --green: #3fe090;
  --pink: #eb48a0;
  --purple: #9b57ea;
  --black: #000000;
  --navy: #163243;
  --gray: #B1B1B1;
  --light-grey: #efefef;
  --white: #fff;
  --cyan: #00E2FF;
  --brown: #8e6864;
  --blue: #4C8AE5;
  --teal: #00E2FF;
  accent-color: var(--light-blue);
}

a {
  color: var(--yellow);
  text-decoration: underline;
}


.wrapper {
  max-width: 981px;
  margin-left: auto;
  margin-right: auto;
}

/* For content that needs to be visually hidden but stay visible for screenreaders */
.show-for-sr,
.screen-reader-text {
  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;
  }
}


/**
* Skip to content link
*/
.header__skip {
  color: #fff;
  font-weight: 700;
  left: 50%;
  padding: 4px;
  position: absolute;
  transform: translateY(-100%);
  transition: 200ms ease;
  display: block;
  background: black;
}
.header__skip:focus {
  transform: translateY(0%);
  z-index: 100;
}