/* 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 {
	--c-white: #ffffff;
	--c-black: #000000;
	--c-grey: #D9D9D9;
	--c-black-gradient: linear-gradient(90deg, var(--c-black) 0%, #252525 100%) no-repeat;
	--pink: #D33C71;
	--pink-gradient: linear-gradient(90deg, var(--pink) 0%, #DE53A2 100%) no-repeat;
	--dpink: #E563C5;
	--dpink-gradient: linear-gradient(90deg, var(--dpink) 0%, #7F376D 100%) no-repeat;
	--lpurple: #CB63BE;
	--purple: #8062AC;
	--purple-gradient: linear-gradient(90deg, #C163BD 0%, #8363AD 100%) no-repeat;
/* 	 */
	--gradient2: linear-gradient(90deg, #82EEFE 0%, #a66ff9 50%, #F647EC 100%) 100%/cover no-repeat;
	--gradient: linear-gradient(90deg, var(--pink) 0%, var(--dpink) 50%, var(--purple) 100%) 100%/cover no-repeat;
	--gradient-rev: linear-gradient(270deg, var(--pink) 0%, var(--dpink) 50%, var(--purple) 100%) 100%/cover no-repeat;
	--gradient-bg: linear-gradient(90deg, color(from var(--pink) srgb r g b / .15) 0%, color(from var(--dpink) srgb r g b / .15) 50%, color(from var(--purple) srgb r g b / .15) 100%) 100%/cover no-repeat;
	
	--gradient-fixed: linear-gradient(90deg, var(--pink) 0%, var(--dpink) 50%, var(--purple) 100%) 100%/cover no-repeat fixed;
	--gradient-bg-fixed: linear-gradient(90deg, color(from var(--pink) srgb r g b / .15) 0%, color(from var(--dpink) srgb r g b / .15) 50%, color(from var(--purple) srgb r g b / .15) 100%) 100%/cover no-repeat fixed;
	
	--gradient-vertical: linear-gradient(var(--pink) 0%, var(--dpink) 50%, var(--purple) 100%) 100%/cover no-repeat fixed;

	--c-secondary-one: ;
	--c-secondary-two: ;
	--c-secondary-three: ;

	--f-primary: 'Inter';
	--f-secondary: 'Clash';

	--tr: 0.2s ease-in-out;
	--bs: 0px 20px 80px 0px rgba(0,0,0,.2);

	--s-xsmall: 1rem;
	--s-small: 2rem;
	--s-medium: 3rem;
	--s-normal: 4rem;
	--s-large: 8rem;
	--s-xlarge: 12rem;
	
	--l-normal: 1300px;
	--l-full: 100%;
	--l-large: 1600px;
	--l-medium: 1200px;
	--l-small: 900px;
	--l-xsmall: 600px;
		
}







 

body {
/* 	accent-color: var(--highlight); */
}
*, *:before, *:after {
  box-sizing: border-box;
}


.hide-desktop {display: none;}
.show-desktop {display: block;}

@media (max-width: 767px) { 
	.hide-desktop {display: block !important;}
	.show-desktop {display: none !important;}
}
/*! 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, html {
	margin: 0;
	scroll-padding-top: 250px;
	scroll-behavior: smooth;
}
body:has(.header.show),
html:has(.header.show){
	scroll-padding-top: 350px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

.section {
	position: relative;
}

.content_wrapper {
	padding-inline: 1rem;
}

.section_column--top {
	align-self: flex-start;
}
.section_column--bottom {
	align-self: flex-end;
}
.section_column--center {
	align-self: center;
}

.section__row {
	width: min(var(--l-normal), 100%);
	margin-inline: auto;
	position: relative;
	isolation: isolate;
}
.section__row--normal {
	width: min(var(--l-normal), 100%);
}
.section__row--full {
	width: min(var(--l-full), 100%);
}
.section__row--large {
	width: min(var(--l-large), 100%);
}
.section__row--medium {
	width: min(var(--l-medium), 100%);
}
.section__row--small {
	width: min(var(--l-small), 100%);
}
.section__row--xsmall {
	width: min(var(--l-xsmall), 100%);
}

/* Mobile layout */

.row-fluid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--column-gap);
}




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

	
	.row-fluid .span1 {
		width: calc(var(--column-width-multiplier) * 1% * 1);
	}
	
	.row-fluid .span2 {
		width: calc(var(--column-width-multiplier) * 1% * 2);
	}
	
	.row-fluid .span3 {
		width: calc(var(--column-width-multiplier) * 1% * 3);
	}
	
	.row-fluid .span4 {
		width: calc(var(--column-width-multiplier) * 1% * 4);
	}
	
	.row-fluid .span5 {
		width: calc(var(--column-width-multiplier) * 1% * 5);
	}
	
	.row-fluid .span6 {
		width: calc(var(--column-width-multiplier) * 1% * 6);
	}
	
	.row-fluid .span7 {
		width: calc(var(--column-width-multiplier) * 1% * 7);
	}
	
	.row-fluid .span8 {
		width: calc(var(--column-width-multiplier) * 1% * 8);
	}
	
	.row-fluid .span9 {
		width: calc(var(--column-width-multiplier) * 1% * 9);
	}
	
	.row-fluid .span10 {
		width: calc(var(--column-width-multiplier) * 1% * 10);
	}
	
	.row-fluid .span11 {
		width: calc(var(--column-width-multiplier) * 1% * 11);
	}
	
}

@media (max-width: 768px) {
	.pull_up_down--top {
		margin-top: 0 !important;
	}
	.pull_up_down--bottom {
		margin-bottom: 0 !important;
	}
}

.column__row--image--fill img {
	object-fit: cover;
	width: 100% !important;
	height: 100% !important
}

.retro-shadow {
	box-shadow: var(--bs);
}

.row-wrapper {
	padding: 1rem;
}
.row-wrapper--well {
    padding: 0;	
}
@media screen and (min-width: 1380px) {
  .content-wrapper {
	  padding: 0;
	  margin: 0;
	  min-height: 0;
  }
}

.dnd-section > .row-fluid {
	margin: 0;
	padding: 0;
	min-height: 0;
}

.dnd-section .dnd-column {
	padding: 0;
	margin: 0;
	min-height: 0;
}

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


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

.well,
.well--normal {
	background: var(--c-white);
	padding: clamp(1.5rem, calc(1rem + 1.333vw), 2rem); /* min: 24px, max: 32px */
	background: #FFFFFF;
	box-shadow: 
		0px 0px 30px rgba(0, 0, 0, 0.05), 
		0px 20px 80px #D33C7126;
	border-radius: 20px;
}


.well--large {
	padding: clamp(3rem, calc(2rem + 2.667vw), 4rem);
	border-radius: 16px;
}


.well--medium {
	padding: clamp(1rem, calc(0.5rem + 1.333vw), 1.5rem);
	border-radius: 16px;
}

.well--small {
	padding: 1rem;
	border-radius: 16px;
}

.well--none {
	padding: 0 !important;
	overflow: hidden;
}	
.bg {
	position: absolute;
	z-index: -1;
	inset: 0;
	overflow: hidden;
}
.bg--gradient {
	z-index: -1;
}
.bg--color {
    z-index: -2;
}
.bg--image {
    z-index: -3;
}
.bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
	object-position: var(--position, center);
}
.bg--color + .bg--image img,
.bg--gradient + .bg--image img {
    filter: grayscale(1)
}

.image {
	isolation: isolate;
	position: relative;
	z-index: 3;
}

.gradient {
	background: var(--bg);
}
/* 
 *

position: absolute;
width: 714px;
height: 714px;
left: 540px;
top: -213px;

background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
opacity: 0.2;
transform: matrix(-1, 0, 0, 1, 0, 0);

 * 
 *  */
.graph-paper {
	background: var(--c-black) conic-gradient(from 90deg at 1px 1px, var(--c-black) 90deg, color(from var(--c-grey) srgb r g b / .25) 0) 0 0/20px 20px ;
	background-attachment: fixed;
	position: relative;
}

.graph-paper:not(.graph-paper--white):before {
	content:'';
	position: absolute;
	width: 714px;
	height: 714px;
	left: 0;
	top: -213px;

	background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
	opacity: 0.2;
	transform: matrix(-1, 0, 0, 1, 0, 0);
}

.graph-paper--white {
	background: var(--c-white) conic-gradient(from 90deg at 1px 1px, var(--c-white) 90deg, color(from var(--c-grey) srgb r g b / .35) 0) 0 0/20px 20px;
}	
/**
* @license
*
* Font Family: Clash Display
* Designed by: Indian Type Foundry
* URL: https://www.fontshare.com/fonts/clash-display
* © 2024 Indian Type Foundry
*
* Clash Display Extralight 
* Clash Display Light 
* Clash Display Regular 
* Clash Display Medium 
* Clash Display Semibold 
* Clash Display Bold 
* Clash Display Variable (Variable font)

*
*/

@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Extralight.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Extralight.woff) format('woff');
	font-weight: 200;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Light.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Light.woff) format('woff');
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Regular.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Regular.woff) format('woff');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Medium.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Medium.woff) format('woff');
	font-weight: 500;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Semibold.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Semibold.woff) format('woff');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Clash';
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Bold.woff2) format('woff2'),
		url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/ClashDisplay-Bold.woff) format('woff');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-300.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
	src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-300italic.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-regular.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-italic.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-700.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url(//203330.fs1.hubspotusercontent-na1.net/hubfs/203330/raw_assets/public/Workamajig%20Retro-Future%202024/fonts/inter/inter-v18-latin-700italic.woff2) format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



body, html {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	font-style: normal;
	padding: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	color: var(--c-black);
	font-family: var(--f-primary);
}

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

/* Anchors */

a {
	cursor: pointer;
	color: var(--pink);
}
a:where(:hover,:focus,:active) {
	text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1.4rem;
	font-family: var(--f-secondary);
	font-stretch: condensed;
	line-height: 1.2;
}

h1 {
	leading-trim: both;
	text-edge: cap;
	font-size: clamp(46px, 5vw, 80px);
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 5rem */
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

@media (max-width:1024px) {
	h1 > br {
		display: none;
	}
}

h2 {
	font-size: clamp(36px, 5vw, 50px);
	letter-spacing: 0px;
}


h3 {
	font-size: clamp(26px, 3vw, 40px);
}

h4 {
	font-size: clamp(20px, 3vw, 30px);
	font-weight: 600;
}

h5 {
	font-size: clamp(18px, 3vw, 25px);
	font-weight: 500;
}

h6 {
	font-family: var(--f-primary);
	font-size: clamp(16px, 3vw, 18px);
	font-weight: 400;
}

.text-gradient {
	background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
	color: transparent;
	display: inline-block;
}

.text-gradient--fixed {
	background: var(--gradient-fixed);
    -webkit-background-clip: text;
    background-clip: text;
	color: transparent;
	
}

.text-gradient2 {
	background: var(--gradient2);
    -webkit-background-clip: text;
    background-clip: text;
	color: transparent;
	display: inline-block;
}

@supports (-moz-appearance: none) {
	.text-gradient {
		background-attachment: unset !important;
	}	
}

h7 {
	font-family: var(--f-secondary);
	font-size: clamp(16px, 3vw, 18px);
	font-weight: 400:
}

/* Lists */

.body-container-wrapper ul,
.body-container-wrapper ol {
	margin: 0 0 1.4rem;
	font-size: 1.2rem
}

.body-container-wrapper ul > li,
.body-container-wrapper ol > li {
	margin: 0 0 .5rem 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
	margin: 0;
}
/*.custom-ul ul li {
	padding-left: 10px;
}
.custom-ul ul li::marker {
	content:  var(--bullet);
	font-size: 1.5rem;
}*/

.custom-ul ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Align list properly */
}

.custom-ul ul li {
	padding-left: calc(var(--bullet-size) * 2); /* Add spacing for custom bullets */
	position: relative;
		
}

.custom-ul ul li::before {
	content: "";
    background-image: var(--bullet);
    background-size: contain;
    background-repeat: no-repeat;
    flex: 0 var(--bullet-size);
    height: var(--bullet-size);
    width: var(--bullet-size);
    display: inline-block;
    margin: 0 5px -3px -25px;
    margin-right: 5px;
    position: absolute;
    left: calc(var(--bullet-size)* 1.75);
}



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

ul h1,
ul h2,
ul h3,
ul h4,
ul h5,
ul h6 {
	margin-bottom: 0;
}

/* Code blocks */

pre {
	overflow: auto;
}

code {
	vertical-align: bottom;
}

/* Blockquotes */

blockquote {
	border-left: 2px solid var(--pink);
	margin: 0 0 1.4rem;
	padding-left: 0.7rem;
	line-height: 23px;
	font-size: 20px;
	font-style: italic;
}

/* Horizontal rules */

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

/* Image alt text */

img {
	font-size: 0.583rem;
	word-break: normal;
}

.text--white {
	color: var(--c-white);
}

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

.super-title {
	background: var(--c-white);
	display: inline-block;
	font-family: Clash;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 5px 12px;
	text-transform: uppercase;
	line-height: 1.1; 
	margin-block-end: 1rem;
}

.super-title--alt {
	color: var(--highlight);
	background: var(--c-white);
}
.buttons {
	display: flex;
	flex-flow: row wrap;
	gap: .5rem;
} 
.button--center {
	justify-content: center;
}

.center-button .hs-button {
	margin-inline: auto;
}

.hs-button,
.hs-button--primary,
.hs-search-results__prev-page,
.hs-search-results__next-page {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	white-space: normal;
	padding: 14px 25px;
	font-size: 1.375rem;
	text-decoration: none;
	font-style: normal;
	font-weight: 700;
	border-radius: 15px;
}

.hs-button--arrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.hs-button--arrow::after {
	content: url('data:image/svg+xml,%3Csvg viewBox="0 0 55 58" fill="%23D33C71" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20.4533 50.2133L28.0003 57.7603L53.1043 32.6509C54.1095 31.6509 54.672 30.2968 54.672 28.8801C54.672 27.4635 54.1095 26.1093 53.1043 25.1093L28.0003 0L20.4533 7.54693L36.4533 23.5469H0V34.2136H36.4533L20.4533 50.2133Z"/%3E%3C/svg%3E%0A');
	width: 15px; 
}

.secondary.hs-button--arrow::after {
	content: ' \2192';
}

.primary {
	background: var(--dpink);
	box-shadow: 0px 10px 40px var(--dpink);
	border-radius: 15px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px 40px;
	gap: 25px;
	color: var(--c-white);
	border: 2px solid var(--c-white);
}

.primary:where(:hover, :focus) {
	background: var(--gradient);
}

.secondary {
	background: var(--gradient-fixed);
	color: var(--c-white);
	font-family: var(--f-secondary);
	padding: 1rem 2rem;
	border-radius: 15px;
	border: 2px solid var(--c-white);
	font-size: 1.5rem;
	font-weight: 500;
	justify-content: center;
	align-items: center;
	transition: none;
	box-shadow: 0px 10px 40px var(--dpink);
}

.secondary:hover {
	background: var(--c-white);
	color: var(--dpink);
}

.terciary {
	color: var(--c-white);
	font-family: var(--f-secondary);
	font-weight: 600;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px 40px;
	gap: 25px;
	background: var(--c-black);
	border:  2px solid var(--dpink);
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
    
}

.terciary:where(:hover, :focus) {
	background: var(--pink);
	color: var(--c-white);
}

.fourth {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: .25rem 1.5rem;
	gap: 10px;
	font-family: var(--f-secondary);
	font-weight: 600;
	background: var(--c-white);
	border: solid 0 var(--gradient-fixed);
	border-radius: 100px;
    position: relative;
}

.fourth::before {
	content: '';
    position: absolute;
    inset: 2px;
    z-index: 0;
    border-radius: inherit; /* !importanté */
    
}

.fourth:where(:hover, :focus) {
	color: var(--c-white);
}

.fourth span{
	position: relative;
	z-index: 1;
}


/* .hs-button:where(:hover, :focus) {
	background: var(--gradient-fixed);
	color: var(--c-white);
} */

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

/* No button */

.hs-button--link {
	background: none;
	border: none;
	border-radius: 0;
	color: var(--c-four);
	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: underline;
	transition: none;
}

.hs-button--link:hover,
.hs-button--link:focus,
.hs-button--link:active {
	text-decoration: none;
}

.hs-button--card,
.hs-button__cta {
	background: var(--highlight);
	color: var(--c-white);
	border-radius: 10px;
}

.hs-button__cta {
	text-decoration: none;
}

.button-container {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem;
}
.buttons_centered {
	justify-content: center;
}

.hs-search-results__pagination {
	margin-block-start: 3rem;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	
}

.hs-search-results__prev-page,
.hs-search-results__next-page {
	float: none !important; 
}
/* Fields */

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

/* Labels */

form label:not(.hs-form-booleancheckbox-display) {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 0.35rem;
	color: var(--c-black);
	font-weight: 600;
	text-align: left;
}

.text--white form label:not(.hs-form-booleancheckbox-display) {
	color: var(--c-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 {
	display: inline-block ;
	font-size: 0.875rem ;
	padding: 1rem .75rem !important;
    background: var(--c-white) ;
	border: 1px solid var(--c-grey) ;
	color: var(--c-black) ;
	width: 100% ;
	-webkit-appearance: none;
}

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;
	text-align: left;
}

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

.hs-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 {
	color: var(--c-black);
}
.text--white .legal-consent-container {
	color: var(--c-white);
}

.legal-consent-container .hs-form-booleancheckbox-display {
    display: grid;
    grid-template-columns: 1fr 15fr;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
	margin-left: .5rem !important;
}
.legal-consent-container .hs-form-booleancheckbox-display p {
	color: var(--c-black);
}
.text--white .legal-consent-container .hs-form-booleancheckbox-display p {
	color: var(--c-white);
}

.legal-consent-container .hs-richtext {
	margin-bottom: 10px;
}

.legal-consent-container .hs-richtext > *,
.legal-consent-container .hs-form-booleancheckbox p {
	font-size: 11px;
	line-height: 14px;
	font-style: italic;
	margin-bottom: 10px;
}


/* button */
.hs-form .hs-button {
	margin-top: 1rem;
	margin-top: 1rem;
    padding: .9rem 1.4rem;
    font-family: var(--f-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
	box-shadow: 0px 1px 15px var(--dpink);
    border-radius: 5px;
    border: 0px;
}

.hs-form .legal-consent-container {
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}

.hs-form:focus-within .legal-consent-container { max-height:1000px; }

/* Validation */

.hs-form-required {
	color: #EF6B51;
}



.hs-input.invalid.error {
	border-color: #EF6B51 !important;
}
.hs-error-msgs li {
	margin: 0 0 .25rem 0 !important;
}
.hs-error-msg {
	color: #EF6B51  !important;
	margin-top: 0.35rem !important;
	font-family: var(--f-primary) !important;
	font-weight: 400 !important;
	font-size: .8rem !important;
}

/* Submit button */

/* Captcha */

.grecaptcha-badge {
	margin: 0 auto;
}


/* 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;
}
.hero {
	background: var(--h-background);
	padding-top: var(--h-padding-top);
	padding-bottom: var(--h-padding-bottom) ;
	isolation: isolate;
	position: relative;
}


.hero-column {
	width: 100% !important;
	display: flex;
}

.hero__super {
	width: max-content;
	text-align: center;
	color: var(--super-color);
}

.hero-content__image__wrapper {
	background: var(--c-white);
	padding: 1rem 3rem;
	border-radius: 20px;
	margin-bottom: 2rem;
}

.hero-content__image {
	
}

.hero-content__title {
	text-align: center;
}

.hero-content__text {
	text-align: center;
	margin-bottom: 1rem;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero--white .hero-content {
	color: var(--c-black);
}

.hero__body {
	background: rgba(42, 12, 23, 0.5);
	border-radius: 20px;
	padding-top: 3rem;
	padding-bottom: .5rem;
	width: min(1000px, 100%);
	margin-bottom: 1rem;
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: .5rem;
}

.hero__benefits {
    display: flex;
	gap: 2rem;
	justify-content: center;
	flex-flow: row wrap;
	width: 80%;
}

.hero__benefit {
    align-items: center;
    display: flex;
	flex: 1;
    flex-direction: column;
    gap: 1rem;
}

.hero__benefit__icon {
	width: 24px;
	height: 24px;
}


.hero__benefit__content {
	text-align: center;
	font-weight: 600;
	font-size: 22px;
}

.hero-image img {
	object-fit: contain;
}

.hero__button {
    padding: .85rem 2.5rem;
}


.hero__button {
	margin-top: 1.5rem;
    padding: .85rem 2.5rem;
}

.hero__under-button {
    Font-weight: 300;
    font-size: 17.5px;
    font-style: italic;
    padding-top: 2rem;
}

.hero--white .hero__under-button {
    color: var(--c-white);
}

@media (width < 1023px) {
	.hero-column {
		align-items: center;
		text-align: center;
		justify-content: center;
	}
	
	.hero-content {
		margin-bottom: 1rem;
	}
}

.hero-content__centered {
	align-items: center;
	text-align: center;
}

.hero--white .hero-content__title {
    color: var(--highlight);
}

.hero__bg {
    position: absolute;
    inset:  0;
	z-index: -1;
}
.hero__bg img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset:  0;
    background-image: linear-gradient(to top, var(--overlay) 0%, var(--overlay) var(--overlay-height), transparent 50%,  transparent 70%)
}
.hs-embed-wrapper[data-service="youtube"], 
.hs-embed-wrapper[data-service="wistia"] {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05), 0 20px 50px #d33c7126;
}
/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.main-header .dnd-section {
	padding: 0;
	min-height: 0;
}
.main-header {
	isolation: isolate;
	position: relative;
	z-index: 1000;
	top: 0px;
	left: 0;
	right: 0;
	position: fixed;
}
.main-header.hide {
	transform: translateY(-100%);
	will-change: transform;
	transition: transform var(--tr); 
}
.main-header.show {
	position: fixed;
	transform: translateY(0%);
	will-change: transform;
	transition: transform var(--tr); 
}

/* Header container */

.header__container {
	align-items: center;
	display: flex;
	gap: 0;
	margin: 10px auto;
	padding: 0 1.5rem;
	position: relative;
	width: min(var(--l-normal), 100% - 2rem);
	background: var(--c-black);
	box-shadow: 0;
	border-radius: 20px;
	transition: box-shadow .25s ease;
}

.main-header.show .header__container {
	box-shadow:
		0px 0px 30px color(from var(--c-black) srgb r g b / .25),
		0px 20px 80px color(from var(--c-black) srgb r g b / .25);
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
	align-items: center;
	display: flex;
	height: auto;
	margin-right: auto;
	max-width: 200px;
	overflow: hidden;
	padding: 0;
}


.header__logo svg {
	width: 100%;
}

.header__email a {
	color: var(--c-white)
}
/* Navigation */
.menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--c-white);
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: center;
}
.menu li.menu__item {
	list-style: none;
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 0;
}
.menu li.menu__item > a {
	color: var(--c-white);
	text-decoration: none;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}
.menu__item--phone > a {
	font-size: 1.6rem;
}
.menu > li.menu__item:where(:hover) > a:not(.menu__link--button)::before,
.menu > li.menu__item > a.active::before {
	content: '';
	position: absolute;
	width: 100%;
	background: var(--gradient);
	height: 3px;
	bottom: -5px;
}

.menu__link:has(i) {
	display: flex;
	align-items: center;
}
.menu__link > i {
	margin-left: 0.5rem;
}



.menu li.menu__item--has-children {
	position: relative;
}

.menu ul.menu__child {
	padding: 10px 1rem;
}
.menu ul.menu__child li.menu__item > a {
	color: var(--c-black);
	padding: 10px 0px;
	
}
.menu ul.menu__child li.menu__item:where(:hover, :focus) > a {
	color: var(--gradient);
	padding: 10px 0px;
}

.menu li.menu__item--has-children > ul.menu__child,
.mega-menu {
	position: absolute;
	top: 100%;
	right: -135%;
	width: max(100%, 580px);
	background: var(--c-white);
	display: none;
	color: var(--c-black); 
	border-radius: 20px;
	box-shadow: var(--bs);
	z-index: 1;
}

.menu li.menu__item--has-children:hover > ul.menu__child, 
.menu li.menu__item--has-children:hover > .mega-menu {
	display: block;
	box-shadow: var(--bs);
}

.menu__item--has-children > a:after {
	content: "";
	font-size: .325rem;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	margin-left: .5rem;
	border: 2px solid transparent;
	border-left-color: var(--c-white);
	border-bottom-color: var(--c-white);
	transform: rotate(.88turn);
    
}

.menu__link--button {
	border-radius: .5rem;
	font-size: 1rem;
	padding: 5px 15px;
	transition: all 0.2s ease-in-out;
	font-family: var(--f-primary);
	border-radius: 5px;
	box-shadow: none;
	background: var(--pink);
	border: 1px solid var(--c-white);
}

.menu__link--button:hover {
	background: var(--gradient);
}


/* Mega Menu */
.mega-menu.mega-menu--call {
	background: var(--c-white);
	box-shadow: var(--bs);
	padding: 0;
	width: 500px;
}

.mega-menu__row {
	padding: 1.5rem;
}

.mega-menu__row__call--help {
	padding: 1rem 1.5rem;
	background: #eee;
}

.mega-menu__heading {
	--f-secondary: var(--f-primary);
	margin-bottom: 0 !important;
	font-size: 1.2rem;
}
.mega-menu__row__call--help .mega-menu__heading {
	font-size: 1rem;
}

.mega-menu__heading > a  {
	color: rgba(36,59,77,0.61);
	text-decoration: none;
}

.mega-menu__header {
	display: flex;
	flex-flow: column nowrap;
	padding: 2rem 2rem 0;
	position: relative;
	color: var(--c-black);
	align-items: center;
}

.mega-menu__header-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 105%;
	margin-bottom: 0.25rem;
}

.mega-menu__header-subtitle {
	font-size: 0.875rem;
	line-height: 105%;
	margin-bottom: 0.75rem;
}

.mega-menu__header-button {
	color: var(--highlight);
	font-family: 'Clash';
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	border: 2px solid;
	border-radius: 0.875rem;
	padding: .025rem .875rem;
	background: var(--c-white);
	z-index: 1;
}

.menu__sub-menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 1.5rem;
	gap: 1rem;
}

.mega-menu.mega-menu--v2 {
    width: 600px;
}

.sub-link--v2 {
	display: grid;
	grid-template-columns: 1fr 2px 1fr;
	grid-template-areas:
		'item1 border item2';
	align-items: center;
	flex: 1;
	margin: auto;
	text-align: center;
	padding: .5rem;
}

.sub-link__divider-v2 {
	background: linear-gradient(0deg, #E058AC 0%, #C663BE 100%);
	grid-area: border;
	height: calc(100% - 3rem);
}

.sub-link__text-v2 {
	padding: 1.5rem;
	grid-area: item1;
}

.sub-link__text-v2:nth-child(2n) {
	grid-area: item2;
}

.sub-link__title-v2 {
	margin-bottom: 1rem;
	font-weight: 600;
}

.sub-link__desc-v2 {
	margin-bottom: 1rem;
}

.sub-link__text-v2 a {
	font-size: 16px;
	font-weight: 600;
}

.sub-menu__item {
	list-style: none;
}

.sub-menu__item a:hover {
	background: rgba(217, 217, 217, .2);
}

.sub-menu__link {
	display: flex;
	gap: .5rem;
	color: var(--c-black);
	text-decoration: none;
	padding: .5rem;
	border-radius: 10px;
}

.sub-link__text {
    flex: 1;
}

.sub-menu__link:hover {
	background:var(--gradient-bg);
}

.sub-link__title {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Clash';
    line-height: 105%;
	margin-bottom: .5rem;
}

.sub-link__desc {
    font-size: 0.875rem;
    line-height: 105%;
}

.header__trigger,
.mobile-menu {
	display: none;
}

.menu__sub-toggle {
	display: none;
}

@media (max-width: 1024px) {
	.menu {
	display: none;
}
.header__trigger {
	color: var(--c-white);
	background: transparent;
	border: 0;
	text-decoration: none;
	padding: 20px;
	display: flex;
	font-size: 1.6rem;
}
.mobile-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: auto;
	width: min(600px, calc(100% - 2rem));
	right: 1rem;
	overflow: hidden;
	background: var(--c-black);
	height: 0;
	box-shadow: 0 20px 30px rgba(0,0,0,.2);
	border-radius: 0 0 20px 20px
}

.mobile-menu__root {
	margin: 0;
	list-style: none;
	padding: 1rem;
}
.mobile-menu__item__wrapper {
	display: flex;
}
.mobile-menu__link {
	flex: 1;
	padding: 10px; 
	color: var(--c-white);
	text-decoration: none;
}
.mobile-menu__sub-toggle {
	width: 40px;
	margin-left: auto;
	background: transparent;
	border: 0;
	font-size: 1.6rem;
	color: var(--c-white);
}
.mobile-menu__child {
	padding: 0 0 0 1rem;
	margin: 0;
	list-style: none;
	display: block;
	height: 0;
	overflow: hidden;
}	
}
/* 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 */

.center-image {
	margin-inline: auto;
}

.sr-only {
  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) {
  .sr-only--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;
  }
}